./PaxHeaders.21776/elk-7.2.420000644000000000000000000000013214061636525012214 xustar0030 mtime=1623670101.157096698 30 atime=1623670090.110106952 30 ctime=1623670101.157096698 elk-7.2.42/0000755002504400250440000000000014061636525014171 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/PaxHeaders.21776/src0000644000000000000000000000013114061636517012646 xustar0030 mtime=1623670095.997101488 29 atime=1623670092.98910428 30 ctime=1623670095.997101488 elk-7.2.42/src/0000755002504400250440000000000014061636517014761 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/PaxHeaders.21776/BLAS0000644000000000000000000000013214061636515013366 xustar0030 mtime=1623670093.105104172 30 atime=1623670092.996104273 30 ctime=1623670093.105104172 elk-7.2.42/src/BLAS/0000755002504400250440000000000014061636515015500 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/BLAS/PaxHeaders.21776/zdotc.f0000644000000000000000000000012714061636514014740 xustar0029 mtime=1623670092.99910427 29 atime=1623670092.99910427 29 ctime=1623670092.99910427 elk-7.2.42/src/BLAS/zdotc.f0000644002504400250440000000564414061636514017002 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZDOTC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * COMPLEX*16 FUNCTION ZDOTC(N,ZX,INCX,ZY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*),ZY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZDOTC forms the dot product of two complex vectors *> ZDOTC = X^H * Y *> *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZX *> \verbatim *> ZX is REAL array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim *> *> \param[in] ZY *> \verbatim *> ZY is REAL array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of ZY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== COMPLEX*16 FUNCTION ZDOTC(N,ZX,INCX,ZY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*),ZY(*) * .. * * ===================================================================== * * .. Local Scalars .. COMPLEX*16 ZTEMP INTEGER I,IX,IY * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. ZTEMP = (0.0d0,0.0d0) ZDOTC = (0.0d0,0.0d0) IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N ZTEMP = ZTEMP + DCONJG(ZX(I))*ZY(I) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N ZTEMP = ZTEMP + DCONJG(ZX(IX))*ZY(IY) IX = IX + INCX IY = IY + INCY END DO END IF ZDOTC = ZTEMP RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zgerc.f0000644000000000000000000000013214061636515014724 xustar0030 mtime=1623670093.001104268 30 atime=1623670093.001104268 30 ctime=1623670093.001104268 elk-7.2.42/src/BLAS/zgerc.f0000644002504400250440000001304714061636515016766 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGERC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZGERC(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGERC performs the rank 1 operation *> *> A := alpha*x*y**H + A, *> *> where alpha is a scalar, x is an m element vector, y is an n element *> vector and A is an m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix A. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( m - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the m *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry, the leading m by n part of the array A must *> contain the matrix of coefficients. On exit, A is *> overwritten by the updated matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZGERC(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JY,KX * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (M.LT.0) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 ELSE IF (LDA.LT.MAX(1,M)) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZGERC ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (INCY.GT.0) THEN JY = 1 ELSE JY = 1 - (N-1)*INCY END IF IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*DCONJG(Y(JY)) DO 10 I = 1,M A(I,J) = A(I,J) + X(I)*TEMP 10 CONTINUE END IF JY = JY + INCY 20 CONTINUE ELSE IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (M-1)*INCX END IF DO 40 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*DCONJG(Y(JY)) IX = KX DO 30 I = 1,M A(I,J) = A(I,J) + X(IX)*TEMP IX = IX + INCX 30 CONTINUE END IF JY = JY + INCY 40 CONTINUE END IF * RETURN * * End of ZGERC . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dzasum.f0000644000000000000000000000013214061636515015115 xustar0030 mtime=1623670093.004104266 30 atime=1623670093.004104266 30 ctime=1623670093.004104266 elk-7.2.42/src/BLAS/dzasum.f0000644002504400250440000000507314061636515017157 0ustar00dewhurstdewhurst00000000000000*> \brief \b DZASUM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DZASUM(N,ZX,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DZASUM takes the sum of the (|Re(.)| + |Im(.)|)'s of a complex vector and *> returns a single precision result. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in,out] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== DOUBLE PRECISION FUNCTION DZASUM(N,ZX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION STEMP INTEGER I,NINCX * .. * .. External Functions .. DOUBLE PRECISION DCABS1 EXTERNAL DCABS1 * .. DZASUM = 0.0d0 STEMP = 0.0d0 IF (N.LE.0 .OR. INCX.LE.0) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * DO I = 1,N STEMP = STEMP + DCABS1(ZX(I)) END DO ELSE * * code for increment not equal to 1 * NINCX = N*INCX DO I = 1,NINCX,INCX STEMP = STEMP + DCABS1(ZX(I)) END DO END IF DZASUM = STEMP RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zherk.f0000644000000000000000000000013214061636515014735 xustar0030 mtime=1623670093.007104263 30 atime=1623670093.006104264 30 ctime=1623670093.007104263 elk-7.2.42/src/BLAS/zherk.f0000644002504400250440000002770214061636515017002 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHERK * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHERK(UPLO,TRANS,N,K,ALPHA,A,LDA,BETA,C,LDC) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER K,LDA,LDC,N * CHARACTER TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHERK performs one of the hermitian rank k operations *> *> C := alpha*A*A**H + beta*C, *> *> or *> *> C := alpha*A**H*A + beta*C, *> *> where alpha and beta are real scalars, C is an n by n hermitian *> matrix and A is an n by k matrix in the first case and a k by n *> matrix in the second case. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array C is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of C *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of C *> is to be referenced. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' C := alpha*A*A**H + beta*C. *> *> TRANS = 'C' or 'c' C := alpha*A**H*A + beta*C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry with TRANS = 'N' or 'n', K specifies the number *> of columns of the matrix A, and on entry with *> TRANS = 'C' or 'c', K specifies the number of rows of the *> matrix A. K must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION . *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array A must contain the matrix A, otherwise *> the leading k by n part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDA must be at least max( 1, n ), otherwise LDA must *> be at least max( 1, k ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension ( LDC, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array C must contain the upper *> triangular part of the hermitian matrix and the strictly *> lower triangular part of C is not referenced. On exit, the *> upper triangular part of the array C is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array C must contain the lower *> triangular part of the hermitian matrix and the strictly *> upper triangular part of C is not referenced. On exit, the *> lower triangular part of the array C is overwritten by the *> lower triangular part of the updated matrix. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero, and on exit they *> are set to zero. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> *> -- Modified 8-Nov-93 to set C(J,J) to DBLE( C(J,J) ) when BETA = 1. *> Ed Anderson, Cray Research Inc. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHERK(UPLO,TRANS,N,K,ALPHA,A,LDA,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER K,LDA,LDC,N CHARACTER TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCMPLX,DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP DOUBLE PRECISION RTEMP INTEGER I,INFO,J,L,NROWA LOGICAL UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Test the input parameters. * IF (LSAME(TRANS,'N')) THEN NROWA = N ELSE NROWA = K END IF UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 1 ELSE IF ((.NOT.LSAME(TRANS,'N')) .AND. + (.NOT.LSAME(TRANS,'C'))) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (K.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDC.LT.MAX(1,N)) THEN INFO = 10 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHERK ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (((ALPHA.EQ.ZERO).OR. + (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (UPPER) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,J C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,J - 1 C(I,J) = BETA*C(I,J) 30 CONTINUE C(J,J) = BETA*DBLE(C(J,J)) 40 CONTINUE END IF ELSE IF (BETA.EQ.ZERO) THEN DO 60 J = 1,N DO 50 I = J,N C(I,J) = ZERO 50 CONTINUE 60 CONTINUE ELSE DO 80 J = 1,N C(J,J) = BETA*DBLE(C(J,J)) DO 70 I = J + 1,N C(I,J) = BETA*C(I,J) 70 CONTINUE 80 CONTINUE END IF END IF RETURN END IF * * Start the operations. * IF (LSAME(TRANS,'N')) THEN * * Form C := alpha*A*A**H + beta*C. * IF (UPPER) THEN DO 130 J = 1,N IF (BETA.EQ.ZERO) THEN DO 90 I = 1,J C(I,J) = ZERO 90 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 100 I = 1,J - 1 C(I,J) = BETA*C(I,J) 100 CONTINUE C(J,J) = BETA*DBLE(C(J,J)) ELSE C(J,J) = DBLE(C(J,J)) END IF DO 120 L = 1,K IF (A(J,L).NE.DCMPLX(ZERO)) THEN TEMP = ALPHA*DCONJG(A(J,L)) DO 110 I = 1,J - 1 C(I,J) = C(I,J) + TEMP*A(I,L) 110 CONTINUE C(J,J) = DBLE(C(J,J)) + DBLE(TEMP*A(I,L)) END IF 120 CONTINUE 130 CONTINUE ELSE DO 180 J = 1,N IF (BETA.EQ.ZERO) THEN DO 140 I = J,N C(I,J) = ZERO 140 CONTINUE ELSE IF (BETA.NE.ONE) THEN C(J,J) = BETA*DBLE(C(J,J)) DO 150 I = J + 1,N C(I,J) = BETA*C(I,J) 150 CONTINUE ELSE C(J,J) = DBLE(C(J,J)) END IF DO 170 L = 1,K IF (A(J,L).NE.DCMPLX(ZERO)) THEN TEMP = ALPHA*DCONJG(A(J,L)) C(J,J) = DBLE(C(J,J)) + DBLE(TEMP*A(J,L)) DO 160 I = J + 1,N C(I,J) = C(I,J) + TEMP*A(I,L) 160 CONTINUE END IF 170 CONTINUE 180 CONTINUE END IF ELSE * * Form C := alpha*A**H*A + beta*C. * IF (UPPER) THEN DO 220 J = 1,N DO 200 I = 1,J - 1 TEMP = ZERO DO 190 L = 1,K TEMP = TEMP + DCONJG(A(L,I))*A(L,J) 190 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 200 CONTINUE RTEMP = ZERO DO 210 L = 1,K RTEMP = RTEMP + DCONJG(A(L,J))*A(L,J) 210 CONTINUE IF (BETA.EQ.ZERO) THEN C(J,J) = ALPHA*RTEMP ELSE C(J,J) = ALPHA*RTEMP + BETA*DBLE(C(J,J)) END IF 220 CONTINUE ELSE DO 260 J = 1,N RTEMP = ZERO DO 230 L = 1,K RTEMP = RTEMP + DCONJG(A(L,J))*A(L,J) 230 CONTINUE IF (BETA.EQ.ZERO) THEN C(J,J) = ALPHA*RTEMP ELSE C(J,J) = ALPHA*RTEMP + BETA*DBLE(C(J,J)) END IF DO 250 I = J + 1,N TEMP = ZERO DO 240 L = 1,K TEMP = TEMP + DCONJG(A(L,I))*A(L,J) 240 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 250 CONTINUE 260 CONTINUE END IF END IF * RETURN * * End of ZHERK . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zhpr.f0000644000000000000000000000013014061636515014573 xustar0029 mtime=1623670093.01010426 30 atime=1623670093.009104261 29 ctime=1623670093.01010426 elk-7.2.42/src/BLAS/zhpr.f0000644002504400250440000001767214061636515016647 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHPR(UPLO,N,ALPHA,X,INCX,AP) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER INCX,N * CHARACTER UPLO * .. * .. Array Arguments .. * COMPLEX*16 AP(*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPR performs the hermitian rank 1 operation *> *> A := alpha*x*x**H + A, *> *> where alpha is a real scalar, x is an n element vector and A is an *> n by n hermitian matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the matrix A is supplied in the packed *> array AP as follows: *> *> UPLO = 'U' or 'u' The upper triangular part of A is *> supplied in AP. *> *> UPLO = 'L' or 'l' The lower triangular part of A is *> supplied in AP. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) *> and a( 2, 2 ) respectively, and so on. On exit, the array *> AP is overwritten by the upper triangular part of the *> updated matrix. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) *> and a( 3, 1 ) respectively, and so on. On exit, the array *> AP is overwritten by the lower triangular part of the *> updated matrix. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero, and on exit they *> are set to zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHPR(UPLO,N,ALPHA,X,INCX,AP) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER INCX,N CHARACTER UPLO * .. * .. Array Arguments .. COMPLEX*16 AP(*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,K,KK,KX * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHPR ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (ALPHA.EQ.DBLE(ZERO))) RETURN * * Set the start point in X if the increment is not unity. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of the array AP * are accessed sequentially with one pass through AP. * KK = 1 IF (LSAME(UPLO,'U')) THEN * * Form A when upper triangle is stored in AP. * IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (X(J).NE.ZERO) THEN TEMP = ALPHA*DCONJG(X(J)) K = KK DO 10 I = 1,J - 1 AP(K) = AP(K) + X(I)*TEMP K = K + 1 10 CONTINUE AP(KK+J-1) = DBLE(AP(KK+J-1)) + DBLE(X(J)*TEMP) ELSE AP(KK+J-1) = DBLE(AP(KK+J-1)) END IF KK = KK + J 20 CONTINUE ELSE JX = KX DO 40 J = 1,N IF (X(JX).NE.ZERO) THEN TEMP = ALPHA*DCONJG(X(JX)) IX = KX DO 30 K = KK,KK + J - 2 AP(K) = AP(K) + X(IX)*TEMP IX = IX + INCX 30 CONTINUE AP(KK+J-1) = DBLE(AP(KK+J-1)) + DBLE(X(JX)*TEMP) ELSE AP(KK+J-1) = DBLE(AP(KK+J-1)) END IF JX = JX + INCX KK = KK + J 40 CONTINUE END IF ELSE * * Form A when lower triangle is stored in AP. * IF (INCX.EQ.1) THEN DO 60 J = 1,N IF (X(J).NE.ZERO) THEN TEMP = ALPHA*DCONJG(X(J)) AP(KK) = DBLE(AP(KK)) + DBLE(TEMP*X(J)) K = KK + 1 DO 50 I = J + 1,N AP(K) = AP(K) + X(I)*TEMP K = K + 1 50 CONTINUE ELSE AP(KK) = DBLE(AP(KK)) END IF KK = KK + N - J + 1 60 CONTINUE ELSE JX = KX DO 80 J = 1,N IF (X(JX).NE.ZERO) THEN TEMP = ALPHA*DCONJG(X(JX)) AP(KK) = DBLE(AP(KK)) + DBLE(TEMP*X(JX)) IX = JX DO 70 K = KK + 1,KK + N - J IX = IX + INCX AP(K) = AP(K) + X(IX)*TEMP 70 CONTINUE ELSE AP(KK) = DBLE(AP(KK)) END IF JX = JX + INCX KK = KK + N - J + 1 80 CONTINUE END IF END IF * RETURN * * End of ZHPR . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dcabs1.f0000644000000000000000000000013214061636515014747 xustar0030 mtime=1623670093.012104258 30 atime=1623670093.012104258 30 ctime=1623670093.012104258 elk-7.2.42/src/BLAS/dcabs1.f0000644002504400250440000000256514061636515017014 0ustar00dewhurstdewhurst00000000000000*> \brief \b DCABS1 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DCABS1(Z) * * .. Scalar Arguments .. * COMPLEX*16 Z * .. * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DCABS1 computes |Re(.)| + |Im(.)| of a double complex number *> \endverbatim * * Arguments: * ========== * *> \param[in] Z *> \verbatim *> Z is COMPLEX*16 *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * * ===================================================================== DOUBLE PRECISION FUNCTION DCABS1(Z) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. COMPLEX*16 Z * .. * .. * ===================================================================== * * .. Intrinsic Functions .. INTRINSIC ABS,DBLE,DIMAG * DCABS1 = ABS(DBLE(Z)) + ABS(DIMAG(Z)) RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/xerbla.f0000644000000000000000000000013214061636515015067 xustar0030 mtime=1623670093.015104255 30 atime=1623670093.014104256 30 ctime=1623670093.015104255 elk-7.2.42/src/BLAS/xerbla.f0000644002504400250440000000415014061636515017124 0ustar00dewhurstdewhurst00000000000000*> \brief \b XERBLA * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE XERBLA( SRNAME, INFO ) * * .. Scalar Arguments .. * CHARACTER*(*) SRNAME * INTEGER INFO * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> XERBLA is an error handler for the LAPACK routines. *> It is called by an LAPACK routine if an input parameter has an *> invalid value. A message is printed and execution stops. *> *> Installers may consider modifying the STOP statement in order to *> call system-specific exception-handling facilities. *> \endverbatim * * Arguments: * ========== * *> \param[in] SRNAME *> \verbatim *> SRNAME is CHARACTER*(*) *> The name of the routine which called XERBLA. *> \endverbatim *> *> \param[in] INFO *> \verbatim *> INFO is INTEGER *> The position of the invalid parameter in the parameter list *> of the calling routine. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup aux_blas * * ===================================================================== SUBROUTINE XERBLA( SRNAME, INFO ) * * -- Reference BLAS level1 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER*(*) SRNAME INTEGER INFO * .. * * ===================================================================== * * .. Intrinsic Functions .. INTRINSIC LEN_TRIM * .. * .. Executable Statements .. * WRITE( *, FMT = 9999 )SRNAME( 1:LEN_TRIM( SRNAME ) ), INFO * STOP * 9999 FORMAT( ' ** On entry to ', A, ' parameter number ', I2, ' had ', $ 'an illegal value' ) * * End of XERBLA * END elk-7.2.42/src/BLAS/PaxHeaders.21776/Makefile0000644000000000000000000000013214061636515015103 xustar0030 mtime=1623670093.017104254 30 atime=1623670093.017104254 30 ctime=1623670093.017104254 elk-7.2.42/src/BLAS/Makefile0000644002504400250440000000215214061636515017140 0ustar00dewhurstdewhurst00000000000000 AR = ar include ../../make.inc #------------------------------------------------------------------------------- # Suffix Rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f .f.o: $(F77) $(F77_OPTS) -c $< #------------------------------------------------------------------------------- # File dependencies #------------------------------------------------------------------------------- SRC = \ cdotc.f daxpy.f dcabs1.f dcopy.f ddot.f dgemm.f dgemv.f dger.f \ dnrm2.f drot.f dscal.f dspmv.f dspr2.f dswap.f dsymm.f dsymv.f \ dsyr2.f dsyr2k.f dsyrk.f dtrmm.f dtrmv.f dtrsm.f dtrsv.f dzasum.f \ dznrm2.f idamax.f izamax.f lsame.f zaxpy.f zcopy.f zdotc.f zdotu.f \ zdrot.f zdscal.f zgemm.f zgemv.f zgerc.f zgeru.f zhemm.f zhemv.f \ zher2.f zher2k.f zherk.f zhpmv.f zhpr2.f zhpr.f zscal.f zswap.f \ ztbsv.f ztpmv.f ztpsv.f ztrmm.f ztrmv.f ztrsm.f ztrsv.f OBJ = $(SRC:.f=.o) blas: $(OBJ) $(AR) -rc blas.a $(OBJ) clean: rm -f *.o *.mod *~ *.a ifc* *.gcno gmon.out ls: ls -x --tabsize=0 --width=80 *.f elk-7.2.42/src/BLAS/PaxHeaders.21776/zgemm.f0000644000000000000000000000013214061636515014731 xustar0030 mtime=1623670093.020104251 30 atime=1623670093.019104252 30 ctime=1623670093.020104251 elk-7.2.42/src/BLAS/zgemm.f0000644002504400250440000003377514061636515017005 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA,BETA * INTEGER K,LDA,LDB,LDC,M,N * CHARACTER TRANSA,TRANSB * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEMM performs one of the matrix-matrix operations *> *> C := alpha*op( A )*op( B ) + beta*C, *> *> where op( X ) is one of *> *> op( X ) = X or op( X ) = X**T or op( X ) = X**H, *> *> alpha and beta are scalars, and A, B and C are matrices, with op( A ) *> an m by k matrix, op( B ) a k by n matrix and C an m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n', op( A ) = A. *> *> TRANSA = 'T' or 't', op( A ) = A**T. *> *> TRANSA = 'C' or 'c', op( A ) = A**H. *> \endverbatim *> *> \param[in] TRANSB *> \verbatim *> TRANSB is CHARACTER*1 *> On entry, TRANSB specifies the form of op( B ) to be used in *> the matrix multiplication as follows: *> *> TRANSB = 'N' or 'n', op( B ) = B. *> *> TRANSB = 'T' or 't', op( B ) = B**T. *> *> TRANSB = 'C' or 'c', op( B ) = B**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix *> op( A ) and of the matrix C. M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix *> op( B ) and the number of columns of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry, K specifies the number of columns of the matrix *> op( A ) and the number of rows of the matrix op( B ). K must *> be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is *> k when TRANSA = 'N' or 'n', and is m otherwise. *> Before entry with TRANSA = 'N' or 'n', the leading m by k *> part of the array A must contain the matrix A, otherwise *> the leading k by m part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANSA = 'N' or 'n' then *> LDA must be at least max( 1, m ), otherwise LDA must be at *> least max( 1, k ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is COMPLEX*16 array, dimension ( LDB, kb ), where kb is *> n when TRANSB = 'N' or 'n', and is k otherwise. *> Before entry with TRANSB = 'N' or 'n', the leading k by n *> part of the array B must contain the matrix B, otherwise *> the leading n by k part of the array B must contain the *> matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. When TRANSB = 'N' or 'n' then *> LDB must be at least max( 1, k ), otherwise LDB must be at *> least max( 1, n ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then C need not be set on input. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension ( LDC, N ) *> Before entry, the leading m by n part of the array C must *> contain the matrix C, except when beta is zero, in which *> case C need not be set on entry. *> On exit, the array C is overwritten by the m by n matrix *> ( alpha*op( A )*op( B ) + beta*C ). *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA,BETA INTEGER K,LDA,LDB,LDC,M,N CHARACTER TRANSA,TRANSB * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,J,L,NCOLA,NROWA,NROWB LOGICAL CONJA,CONJB,NOTA,NOTB * .. * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * * Set NOTA and NOTB as true if A and B respectively are not * conjugated or transposed, set CONJA and CONJB as true if A and * B respectively are to be transposed but not conjugated and set * NROWA, NCOLA and NROWB as the number of rows and columns of A * and the number of rows of B respectively. * NOTA = LSAME(TRANSA,'N') NOTB = LSAME(TRANSB,'N') CONJA = LSAME(TRANSA,'C') CONJB = LSAME(TRANSB,'C') IF (NOTA) THEN NROWA = M NCOLA = K ELSE NROWA = K NCOLA = M END IF IF (NOTB) THEN NROWB = K ELSE NROWB = N END IF * * Test the input parameters. * INFO = 0 IF ((.NOT.NOTA) .AND. (.NOT.CONJA) .AND. + (.NOT.LSAME(TRANSA,'T'))) THEN INFO = 1 ELSE IF ((.NOT.NOTB) .AND. (.NOT.CONJB) .AND. + (.NOT.LSAME(TRANSB,'T'))) THEN INFO = 2 ELSE IF (M.LT.0) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (K.LT.0) THEN INFO = 5 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 8 ELSE IF (LDB.LT.MAX(1,NROWB)) THEN INFO = 10 ELSE IF (LDC.LT.MAX(1,M)) THEN INFO = 13 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZGEMM ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + (((ALPHA.EQ.ZERO).OR. (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,M C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF RETURN END IF * * Start the operations. * IF (NOTB) THEN IF (NOTA) THEN * * Form C := alpha*A*B + beta*C. * DO 90 J = 1,N IF (BETA.EQ.ZERO) THEN DO 50 I = 1,M C(I,J) = ZERO 50 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 60 I = 1,M C(I,J) = BETA*C(I,J) 60 CONTINUE END IF DO 80 L = 1,K TEMP = ALPHA*B(L,J) DO 70 I = 1,M C(I,J) = C(I,J) + TEMP*A(I,L) 70 CONTINUE 80 CONTINUE 90 CONTINUE ELSE IF (CONJA) THEN * * Form C := alpha*A**H*B + beta*C. * DO 120 J = 1,N DO 110 I = 1,M TEMP = ZERO DO 100 L = 1,K TEMP = TEMP + DCONJG(A(L,I))*B(L,J) 100 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 110 CONTINUE 120 CONTINUE ELSE * * Form C := alpha*A**T*B + beta*C * DO 150 J = 1,N DO 140 I = 1,M TEMP = ZERO DO 130 L = 1,K TEMP = TEMP + A(L,I)*B(L,J) 130 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 140 CONTINUE 150 CONTINUE END IF ELSE IF (NOTA) THEN IF (CONJB) THEN * * Form C := alpha*A*B**H + beta*C. * DO 200 J = 1,N IF (BETA.EQ.ZERO) THEN DO 160 I = 1,M C(I,J) = ZERO 160 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 170 I = 1,M C(I,J) = BETA*C(I,J) 170 CONTINUE END IF DO 190 L = 1,K TEMP = ALPHA*DCONJG(B(J,L)) DO 180 I = 1,M C(I,J) = C(I,J) + TEMP*A(I,L) 180 CONTINUE 190 CONTINUE 200 CONTINUE ELSE * * Form C := alpha*A*B**T + beta*C * DO 250 J = 1,N IF (BETA.EQ.ZERO) THEN DO 210 I = 1,M C(I,J) = ZERO 210 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 220 I = 1,M C(I,J) = BETA*C(I,J) 220 CONTINUE END IF DO 240 L = 1,K TEMP = ALPHA*B(J,L) DO 230 I = 1,M C(I,J) = C(I,J) + TEMP*A(I,L) 230 CONTINUE 240 CONTINUE 250 CONTINUE END IF ELSE IF (CONJA) THEN IF (CONJB) THEN * * Form C := alpha*A**H*B**H + beta*C. * DO 280 J = 1,N DO 270 I = 1,M TEMP = ZERO DO 260 L = 1,K TEMP = TEMP + DCONJG(A(L,I))*DCONJG(B(J,L)) 260 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 270 CONTINUE 280 CONTINUE ELSE * * Form C := alpha*A**H*B**T + beta*C * DO 310 J = 1,N DO 300 I = 1,M TEMP = ZERO DO 290 L = 1,K TEMP = TEMP + DCONJG(A(L,I))*B(J,L) 290 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 300 CONTINUE 310 CONTINUE END IF ELSE IF (CONJB) THEN * * Form C := alpha*A**T*B**H + beta*C * DO 340 J = 1,N DO 330 I = 1,M TEMP = ZERO DO 320 L = 1,K TEMP = TEMP + A(L,I)*DCONJG(B(J,L)) 320 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 330 CONTINUE 340 CONTINUE ELSE * * Form C := alpha*A**T*B**T + beta*C * DO 370 J = 1,N DO 360 I = 1,M TEMP = ZERO DO 350 L = 1,K TEMP = TEMP + A(L,I)*B(J,L) 350 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 360 CONTINUE 370 CONTINUE END IF END IF * RETURN * * End of ZGEMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ddot.f0000644000000000000000000000013214061636515014544 xustar0030 mtime=1623670093.022104249 30 atime=1623670093.022104249 30 ctime=1623670093.022104249 elk-7.2.42/src/BLAS/ddot.f0000644002504400250440000000652314061636515016607 0ustar00dewhurstdewhurst00000000000000*> \brief \b DDOT * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DDOT(N,DX,INCX,DY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*),DY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DDOT forms the dot product of two vectors. *> uses unrolled loops for increments equal to one. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim *> *> \param[in] DY *> \verbatim *> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of DY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== DOUBLE PRECISION FUNCTION DDOT(N,DX,INCX,DY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*),DY(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION DTEMP INTEGER I,IX,IY,M,MP1 * .. * .. Intrinsic Functions .. INTRINSIC MOD * .. DDOT = 0.0d0 DTEMP = 0.0d0 IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * * * clean-up loop * M = MOD(N,5) IF (M.NE.0) THEN DO I = 1,M DTEMP = DTEMP + DX(I)*DY(I) END DO IF (N.LT.5) THEN DDOT=DTEMP RETURN END IF END IF MP1 = M + 1 DO I = MP1,N,5 DTEMP = DTEMP + DX(I)*DY(I) + DX(I+1)*DY(I+1) + $ DX(I+2)*DY(I+2) + DX(I+3)*DY(I+3) + DX(I+4)*DY(I+4) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N DTEMP = DTEMP + DX(IX)*DY(IY) IX = IX + INCX IY = IY + INCY END DO END IF DDOT = DTEMP RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zgemv.f0000644000000000000000000000013214061636515014742 xustar0030 mtime=1623670093.025104246 30 atime=1623670093.025104246 30 ctime=1623670093.025104246 elk-7.2.42/src/BLAS/zgemv.f0000644002504400250440000002224014061636515016777 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA,BETA * INTEGER INCX,INCY,LDA,M,N * CHARACTER TRANS * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEMV performs one of the matrix-vector operations *> *> y := alpha*A*x + beta*y, or y := alpha*A**T*x + beta*y, or *> *> y := alpha*A**H*x + beta*y, *> *> where alpha and beta are scalars, x and y are vectors and A is an *> m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' y := alpha*A*x + beta*y. *> *> TRANS = 'T' or 't' y := alpha*A**T*x + beta*y. *> *> TRANS = 'C' or 'c' y := alpha*A**H*x + beta*y. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix A. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry, the leading m by n part of the array A must *> contain the matrix of coefficients. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, m ). *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n' *> and at least *> ( 1 + ( m - 1 )*abs( INCX ) ) otherwise. *> Before entry, the incremented array X must contain the *> vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n' *> and at least *> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise. *> Before entry with BETA non-zero, the incremented array Y *> must contain the vector y. On exit, Y is overwritten by the *> updated vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA,BETA INTEGER INCX,INCY,LDA,M,N CHARACTER TRANS * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY,LENX,LENY LOGICAL NOCONJ * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 1 ELSE IF (M.LT.0) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (LDA.LT.MAX(1,M)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 ELSE IF (INCY.EQ.0) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZGEMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * NOCONJ = LSAME(TRANS,'T') * * Set LENX and LENY, the lengths of the vectors x and y, and set * up the start points in X and Y. * IF (LSAME(TRANS,'N')) THEN LENX = N LENY = M ELSE LENX = M LENY = N END IF IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (LENX-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (LENY-1)*INCY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,LENY Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,LENY Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,LENY Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,LENY Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN IF (LSAME(TRANS,'N')) THEN * * Form y := alpha*A*x + y. * JX = KX IF (INCY.EQ.1) THEN DO 60 J = 1,N TEMP = ALPHA*X(JX) DO 50 I = 1,M Y(I) = Y(I) + TEMP*A(I,J) 50 CONTINUE JX = JX + INCX 60 CONTINUE ELSE DO 80 J = 1,N TEMP = ALPHA*X(JX) IY = KY DO 70 I = 1,M Y(IY) = Y(IY) + TEMP*A(I,J) IY = IY + INCY 70 CONTINUE JX = JX + INCX 80 CONTINUE END IF ELSE * * Form y := alpha*A**T*x + y or y := alpha*A**H*x + y. * JY = KY IF (INCX.EQ.1) THEN DO 110 J = 1,N TEMP = ZERO IF (NOCONJ) THEN DO 90 I = 1,M TEMP = TEMP + A(I,J)*X(I) 90 CONTINUE ELSE DO 100 I = 1,M TEMP = TEMP + DCONJG(A(I,J))*X(I) 100 CONTINUE END IF Y(JY) = Y(JY) + ALPHA*TEMP JY = JY + INCY 110 CONTINUE ELSE DO 140 J = 1,N TEMP = ZERO IX = KX IF (NOCONJ) THEN DO 120 I = 1,M TEMP = TEMP + A(I,J)*X(IX) IX = IX + INCX 120 CONTINUE ELSE DO 130 I = 1,M TEMP = TEMP + DCONJG(A(I,J))*X(IX) IX = IX + INCX 130 CONTINUE END IF Y(JY) = Y(JY) + ALPHA*TEMP JY = JY + INCY 140 CONTINUE END IF END IF * RETURN * * End of ZGEMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zhemv.f0000644000000000000000000000013214061636515014743 xustar0030 mtime=1623670093.028104243 30 atime=1623670093.028104243 30 ctime=1623670093.028104243 elk-7.2.42/src/BLAS/zhemv.f0000644002504400250440000002255414061636515017010 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHEMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA,BETA * INTEGER INCX,INCY,LDA,N * CHARACTER UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEMV performs the matrix-vector operation *> *> y := alpha*A*x + beta*y, *> *> where alpha and beta are scalars, x and y are n element vectors and *> A is an n by n hermitian matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array A is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of A *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of A *> is to be referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular part of the hermitian matrix and the strictly *> lower triangular part of A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular part of the hermitian matrix and the strictly *> upper triangular part of A is not referenced. *> Note that the imaginary parts of the diagonal elements need *> not be set and are assumed to be zero. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. On exit, Y is overwritten by the updated *> vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHEMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA,BETA INTEGER INCX,INCY,LDA,N CHARACTER UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 5 ELSE IF (INCX.EQ.0) THEN INFO = 7 ELSE IF (INCY.EQ.0) THEN INFO = 10 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHEMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * Set up the start points in X and Y. * IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through the triangular part * of A. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,N Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,N Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,N Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,N Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN IF (LSAME(UPLO,'U')) THEN * * Form y when A is stored in upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO DO 50 I = 1,J - 1 Y(I) = Y(I) + TEMP1*A(I,J) TEMP2 = TEMP2 + DCONJG(A(I,J))*X(I) 50 CONTINUE Y(J) = Y(J) + TEMP1*DBLE(A(J,J)) + ALPHA*TEMP2 60 CONTINUE ELSE JX = KX JY = KY DO 80 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO IX = KX IY = KY DO 70 I = 1,J - 1 Y(IY) = Y(IY) + TEMP1*A(I,J) TEMP2 = TEMP2 + DCONJG(A(I,J))*X(IX) IX = IX + INCX IY = IY + INCY 70 CONTINUE Y(JY) = Y(JY) + TEMP1*DBLE(A(J,J)) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY 80 CONTINUE END IF ELSE * * Form y when A is stored in lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 100 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO Y(J) = Y(J) + TEMP1*DBLE(A(J,J)) DO 90 I = J + 1,N Y(I) = Y(I) + TEMP1*A(I,J) TEMP2 = TEMP2 + DCONJG(A(I,J))*X(I) 90 CONTINUE Y(J) = Y(J) + ALPHA*TEMP2 100 CONTINUE ELSE JX = KX JY = KY DO 120 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO Y(JY) = Y(JY) + TEMP1*DBLE(A(J,J)) IX = JX IY = JY DO 110 I = J + 1,N IX = IX + INCX IY = IY + INCY Y(IY) = Y(IY) + TEMP1*A(I,J) TEMP2 = TEMP2 + DCONJG(A(I,J))*X(IX) 110 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY 120 CONTINUE END IF END IF * RETURN * * End of ZHEMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zaxpy.f0000644000000000000000000000013214061636515014765 xustar0030 mtime=1623670093.031104241 30 atime=1623670093.031104241 30 ctime=1623670093.031104241 elk-7.2.42/src/BLAS/zaxpy.f0000644002504400250440000000600414061636515017022 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZAXPY * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZAXPY(N,ZA,ZX,INCX,ZY,INCY) * * .. Scalar Arguments .. * COMPLEX*16 ZA * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*),ZY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZAXPY constant times a vector plus a vector. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZA *> \verbatim *> ZA is COMPLEX*16 *> On entry, ZA specifies the scalar alpha. *> \endverbatim *> *> \param[in] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim *> *> \param[in,out] ZY *> \verbatim *> ZY is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of ZY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE ZAXPY(N,ZA,ZX,INCX,ZY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. COMPLEX*16 ZA INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*),ZY(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,IX,IY * .. * .. External Functions .. DOUBLE PRECISION DCABS1 EXTERNAL DCABS1 * .. IF (N.LE.0) RETURN IF (DCABS1(ZA).EQ.0.0d0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N ZY(I) = ZY(I) + ZA*ZX(I) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N ZY(IY) = ZY(IY) + ZA*ZX(IX) IX = IX + INCX IY = IY + INCY END DO END IF * RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/daxpy.f0000644000000000000000000000013214061636515014737 xustar0030 mtime=1623670093.033104239 30 atime=1623670093.033104239 30 ctime=1623670093.033104239 elk-7.2.42/src/BLAS/daxpy.f0000644002504400250440000000664514061636515017007 0ustar00dewhurstdewhurst00000000000000*> \brief \b DAXPY * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DAXPY(N,DA,DX,INCX,DY,INCY) * * .. Scalar Arguments .. * DOUBLE PRECISION DA * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*),DY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DAXPY constant times a vector plus a vector. *> uses unrolled loops for increments equal to one. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DA *> \verbatim *> DA is DOUBLE PRECISION *> On entry, DA specifies the scalar alpha. *> \endverbatim *> *> \param[in] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim *> *> \param[in,out] DY *> \verbatim *> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of DY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE DAXPY(N,DA,DX,INCX,DY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. DOUBLE PRECISION DA INTEGER INCX,INCY,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*),DY(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,IX,IY,M,MP1 * .. * .. Intrinsic Functions .. INTRINSIC MOD * .. IF (N.LE.0) RETURN IF (DA.EQ.0.0d0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * * * clean-up loop * M = MOD(N,4) IF (M.NE.0) THEN DO I = 1,M DY(I) = DY(I) + DA*DX(I) END DO END IF IF (N.LT.4) RETURN MP1 = M + 1 DO I = MP1,N,4 DY(I) = DY(I) + DA*DX(I) DY(I+1) = DY(I+1) + DA*DX(I+1) DY(I+2) = DY(I+2) + DA*DX(I+2) DY(I+3) = DY(I+3) + DA*DX(I+3) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N DY(IY) = DY(IY) + DA*DX(IX) IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zdotu.f0000644000000000000000000000013214061636515014757 xustar0030 mtime=1623670093.035104237 30 atime=1623670093.035104237 30 ctime=1623670093.035104237 elk-7.2.42/src/BLAS/zdotu.f0000644002504400250440000000552414061636515017022 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZDOTU * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * COMPLEX*16 FUNCTION ZDOTU(N,ZX,INCX,ZY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*),ZY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZDOTU forms the dot product of two complex vectors *> ZDOTU = X^T * Y *> *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZX *> \verbatim *> ZX is REAL array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim *> *> \param[in] ZY *> \verbatim *> ZY is REAL array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of ZY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== COMPLEX*16 FUNCTION ZDOTU(N,ZX,INCX,ZY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*),ZY(*) * .. * * ===================================================================== * * .. Local Scalars .. COMPLEX*16 ZTEMP INTEGER I,IX,IY * .. ZTEMP = (0.0d0,0.0d0) ZDOTU = (0.0d0,0.0d0) IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N ZTEMP = ZTEMP + ZX(I)*ZY(I) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N ZTEMP = ZTEMP + ZX(IX)*ZY(IY) IX = IX + INCX IY = IY + INCY END DO END IF ZDOTU = ZTEMP RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zcopy.f0000644000000000000000000000013214061636515014756 xustar0030 mtime=1623670093.036104236 30 atime=1623670093.036104236 30 ctime=1623670093.036104236 elk-7.2.42/src/BLAS/zcopy.f0000644002504400250440000000526614061636515017024 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZCOPY * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZCOPY(N,ZX,INCX,ZY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*),ZY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZCOPY copies a vector, x, to a vector, y. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim *> *> \param[out] ZY *> \verbatim *> ZY is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of ZY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 4/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE ZCOPY(N,ZX,INCX,ZY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*),ZY(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,IX,IY * .. IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N ZY(I) = ZX(I) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N ZY(IY) = ZX(IX) IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/dscal.f0000644000000000000000000000013214061636515014700 xustar0030 mtime=1623670093.038104234 30 atime=1623670093.038104234 30 ctime=1623670093.038104234 elk-7.2.42/src/BLAS/dscal.f0000644002504400250440000000566414061636515016750 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSCAL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSCAL(N,DA,DX,INCX) * * .. Scalar Arguments .. * DOUBLE PRECISION DA * INTEGER INCX,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSCAL scales a vector by a constant. *> uses unrolled loops for increment equal to 1. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DA *> \verbatim *> DA is DOUBLE PRECISION *> On entry, DA specifies the scalar alpha. *> \endverbatim *> *> \param[in,out] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE DSCAL(N,DA,DX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. DOUBLE PRECISION DA INTEGER INCX,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,M,MP1,NINCX * .. * .. Intrinsic Functions .. INTRINSIC MOD * .. IF (N.LE.0 .OR. INCX.LE.0) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * * * clean-up loop * M = MOD(N,5) IF (M.NE.0) THEN DO I = 1,M DX(I) = DA*DX(I) END DO IF (N.LT.5) RETURN END IF MP1 = M + 1 DO I = MP1,N,5 DX(I) = DA*DX(I) DX(I+1) = DA*DX(I+1) DX(I+2) = DA*DX(I+2) DX(I+3) = DA*DX(I+3) DX(I+4) = DA*DX(I+4) END DO ELSE * * code for increment not equal to 1 * NINCX = N*INCX DO I = 1,NINCX,INCX DX(I) = DA*DX(I) END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/cdotc.f0000644000000000000000000000013214061636515014706 xustar0030 mtime=1623670093.040104232 30 atime=1623670093.039104233 30 ctime=1623670093.040104232 elk-7.2.42/src/BLAS/cdotc.f0000644002504400250440000000562214061636515016750 0ustar00dewhurstdewhurst00000000000000*> \brief \b CDOTC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX CX(*),CY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> CDOTC forms the dot product of two complex vectors *> CDOTC = X^H * Y *> *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] CX *> \verbatim *> CX is REAL array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of CX *> \endverbatim *> *> \param[in] CY *> \verbatim *> CY is REAL array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of CY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX CX(*),CY(*) * .. * * ===================================================================== * * .. Local Scalars .. COMPLEX CTEMP INTEGER I,IX,IY * .. * .. Intrinsic Functions .. INTRINSIC CONJG * .. CTEMP = (0.0,0.0) CDOTC = (0.0,0.0) IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N CTEMP = CTEMP + CONJG(CX(I))*CY(I) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N CTEMP = CTEMP + CONJG(CX(IX))*CY(IY) IX = IX + INCX IY = IY + INCY END DO END IF CDOTC = CTEMP RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/dznrm2.f0000644000000000000000000000013214061636515015026 xustar0030 mtime=1623670093.041104231 30 atime=1623670093.041104231 30 ctime=1623670093.041104231 elk-7.2.42/src/BLAS/dznrm2.f0000644002504400250440000000646414061636515017075 0ustar00dewhurstdewhurst00000000000000*> \brief \b DZNRM2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DZNRM2(N,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * .. * .. Array Arguments .. * COMPLEX*16 X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DZNRM2 returns the euclidean norm of a vector via the function *> name, so that *> *> DZNRM2 := sqrt( x**H*x ) *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension (N) *> complex vector with N elements *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of X *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> -- This version written on 25-October-1982. *> Modified on 14-October-1993 to inline the call to ZLASSQ. *> Sven Hammarling, Nag Ltd. *> \endverbatim *> * ===================================================================== DOUBLE PRECISION FUNCTION DZNRM2(N,X,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX*16 X(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION NORM,SCALE,SSQ,TEMP INTEGER IX * .. * .. Intrinsic Functions .. INTRINSIC ABS,DBLE,DIMAG,SQRT * .. IF (N.LT.1 .OR. INCX.LT.1) THEN NORM = ZERO ELSE SCALE = ZERO SSQ = ONE * The following loop is equivalent to this call to the LAPACK * auxiliary routine: * CALL ZLASSQ( N, X, INCX, SCALE, SSQ ) * DO 10 IX = 1,1 + (N-1)*INCX,INCX IF (DBLE(X(IX)).NE.ZERO) THEN TEMP = ABS(DBLE(X(IX))) IF (SCALE.LT.TEMP) THEN SSQ = ONE + SSQ* (SCALE/TEMP)**2 SCALE = TEMP ELSE SSQ = SSQ + (TEMP/SCALE)**2 END IF END IF IF (DIMAG(X(IX)).NE.ZERO) THEN TEMP = ABS(DIMAG(X(IX))) IF (SCALE.LT.TEMP) THEN SSQ = ONE + SSQ* (SCALE/TEMP)**2 SCALE = TEMP ELSE SSQ = SSQ + (TEMP/SCALE)**2 END IF END IF 10 CONTINUE NORM = SCALE*SQRT(SSQ) END IF * DZNRM2 = NORM RETURN * * End of DZNRM2. * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dnrm2.f0000644000000000000000000000012714061636515014640 xustar0029 mtime=1623670093.04310423 29 atime=1623670093.04210423 29 ctime=1623670093.04310423 elk-7.2.42/src/BLAS/dnrm2.f0000644002504400250440000000600114061636515016666 0ustar00dewhurstdewhurst00000000000000*> \brief \b DNRM2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DNRM2(N,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * .. * .. Array Arguments .. * DOUBLE PRECISION X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DNRM2 returns the euclidean norm of a vector via the function *> name, so that *> *> DNRM2 := sqrt( x'*x ) *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> -- This version written on 25-October-1982. *> Modified on 14-October-1993 to inline the call to DLASSQ. *> Sven Hammarling, Nag Ltd. *> \endverbatim *> * ===================================================================== DOUBLE PRECISION FUNCTION DNRM2(N,X,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. DOUBLE PRECISION X(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION ABSXI,NORM,SCALE,SSQ INTEGER IX * .. * .. Intrinsic Functions .. INTRINSIC ABS,SQRT * .. IF (N.LT.1 .OR. INCX.LT.1) THEN NORM = ZERO ELSE IF (N.EQ.1) THEN NORM = ABS(X(1)) ELSE SCALE = ZERO SSQ = ONE * The following loop is equivalent to this call to the LAPACK * auxiliary routine: * CALL DLASSQ( N, X, INCX, SCALE, SSQ ) * DO 10 IX = 1,1 + (N-1)*INCX,INCX IF (X(IX).NE.ZERO) THEN ABSXI = ABS(X(IX)) IF (SCALE.LT.ABSXI) THEN SSQ = ONE + SSQ* (SCALE/ABSXI)**2 SCALE = ABSXI ELSE SSQ = SSQ + (ABSXI/SCALE)**2 END IF END IF 10 CONTINUE NORM = SCALE*SQRT(SSQ) END IF * DNRM2 = NORM RETURN * * End of DNRM2. * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dcopy.f0000644000000000000000000000013214061636515014730 xustar0030 mtime=1623670093.044104228 30 atime=1623670093.044104228 30 ctime=1623670093.044104228 elk-7.2.42/src/BLAS/dcopy.f0000644002504400250440000000632314061636515016771 0ustar00dewhurstdewhurst00000000000000*> \brief \b DCOPY * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DCOPY(N,DX,INCX,DY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*),DY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DCOPY copies a vector, x, to a vector, y. *> uses unrolled loops for increments equal to 1. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim *> *> \param[out] DY *> \verbatim *> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of DY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE DCOPY(N,DX,INCX,DY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*),DY(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,IX,IY,M,MP1 * .. * .. Intrinsic Functions .. INTRINSIC MOD * .. IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * * * clean-up loop * M = MOD(N,7) IF (M.NE.0) THEN DO I = 1,M DY(I) = DX(I) END DO IF (N.LT.7) RETURN END IF MP1 = M + 1 DO I = MP1,N,7 DY(I) = DX(I) DY(I+1) = DX(I+1) DY(I+2) = DX(I+2) DY(I+3) = DX(I+3) DY(I+4) = DX(I+4) DY(I+5) = DX(I+5) DY(I+6) = DX(I+6) END DO ELSE * * code for unequal increments or equal increments * not equal to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N DY(IY) = DX(IX) IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/dgemm.f0000644000000000000000000000013214061636515014703 xustar0030 mtime=1623670093.046104227 30 atime=1623670093.045104228 30 ctime=1623670093.046104227 elk-7.2.42/src/BLAS/dgemm.f0000644002504400250440000002555714061636515016756 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGEMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER K,LDA,LDB,LDC,M,N * CHARACTER TRANSA,TRANSB * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGEMM performs one of the matrix-matrix operations *> *> C := alpha*op( A )*op( B ) + beta*C, *> *> where op( X ) is one of *> *> op( X ) = X or op( X ) = X**T, *> *> alpha and beta are scalars, and A, B and C are matrices, with op( A ) *> an m by k matrix, op( B ) a k by n matrix and C an m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n', op( A ) = A. *> *> TRANSA = 'T' or 't', op( A ) = A**T. *> *> TRANSA = 'C' or 'c', op( A ) = A**T. *> \endverbatim *> *> \param[in] TRANSB *> \verbatim *> TRANSB is CHARACTER*1 *> On entry, TRANSB specifies the form of op( B ) to be used in *> the matrix multiplication as follows: *> *> TRANSB = 'N' or 'n', op( B ) = B. *> *> TRANSB = 'T' or 't', op( B ) = B**T. *> *> TRANSB = 'C' or 'c', op( B ) = B**T. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix *> op( A ) and of the matrix C. M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix *> op( B ) and the number of columns of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry, K specifies the number of columns of the matrix *> op( A ) and the number of rows of the matrix op( B ). K must *> be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, ka ), where ka is *> k when TRANSA = 'N' or 'n', and is m otherwise. *> Before entry with TRANSA = 'N' or 'n', the leading m by k *> part of the array A must contain the matrix A, otherwise *> the leading k by m part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANSA = 'N' or 'n' then *> LDA must be at least max( 1, m ), otherwise LDA must be at *> least max( 1, k ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension ( LDB, kb ), where kb is *> n when TRANSB = 'N' or 'n', and is k otherwise. *> Before entry with TRANSB = 'N' or 'n', the leading k by n *> part of the array B must contain the matrix B, otherwise *> the leading n by k part of the array B must contain the *> matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. When TRANSB = 'N' or 'n' then *> LDB must be at least max( 1, k ), otherwise LDB must be at *> least max( 1, n ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then C need not be set on input. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension ( LDC, N ) *> Before entry, the leading m by n part of the array C must *> contain the matrix C, except when beta is zero, in which *> case C need not be set on entry. *> On exit, the array C is overwritten by the m by n matrix *> ( alpha*op( A )*op( B ) + beta*C ). *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER K,LDA,LDB,LDC,M,N CHARACTER TRANSA,TRANSB * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,J,L,NCOLA,NROWA,NROWB LOGICAL NOTA,NOTB * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Set NOTA and NOTB as true if A and B respectively are not * transposed and set NROWA, NCOLA and NROWB as the number of rows * and columns of A and the number of rows of B respectively. * NOTA = LSAME(TRANSA,'N') NOTB = LSAME(TRANSB,'N') IF (NOTA) THEN NROWA = M NCOLA = K ELSE NROWA = K NCOLA = M END IF IF (NOTB) THEN NROWB = K ELSE NROWB = N END IF * * Test the input parameters. * INFO = 0 IF ((.NOT.NOTA) .AND. (.NOT.LSAME(TRANSA,'C')) .AND. + (.NOT.LSAME(TRANSA,'T'))) THEN INFO = 1 ELSE IF ((.NOT.NOTB) .AND. (.NOT.LSAME(TRANSB,'C')) .AND. + (.NOT.LSAME(TRANSB,'T'))) THEN INFO = 2 ELSE IF (M.LT.0) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (K.LT.0) THEN INFO = 5 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 8 ELSE IF (LDB.LT.MAX(1,NROWB)) THEN INFO = 10 ELSE IF (LDC.LT.MAX(1,M)) THEN INFO = 13 END IF IF (INFO.NE.0) THEN CALL XERBLA('DGEMM ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + (((ALPHA.EQ.ZERO).OR. (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And if alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,M C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF RETURN END IF * * Start the operations. * IF (NOTB) THEN IF (NOTA) THEN * * Form C := alpha*A*B + beta*C. * DO 90 J = 1,N IF (BETA.EQ.ZERO) THEN DO 50 I = 1,M C(I,J) = ZERO 50 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 60 I = 1,M C(I,J) = BETA*C(I,J) 60 CONTINUE END IF DO 80 L = 1,K TEMP = ALPHA*B(L,J) DO 70 I = 1,M C(I,J) = C(I,J) + TEMP*A(I,L) 70 CONTINUE 80 CONTINUE 90 CONTINUE ELSE * * Form C := alpha*A**T*B + beta*C * DO 120 J = 1,N DO 110 I = 1,M TEMP = ZERO DO 100 L = 1,K TEMP = TEMP + A(L,I)*B(L,J) 100 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 110 CONTINUE 120 CONTINUE END IF ELSE IF (NOTA) THEN * * Form C := alpha*A*B**T + beta*C * DO 170 J = 1,N IF (BETA.EQ.ZERO) THEN DO 130 I = 1,M C(I,J) = ZERO 130 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 140 I = 1,M C(I,J) = BETA*C(I,J) 140 CONTINUE END IF DO 160 L = 1,K TEMP = ALPHA*B(J,L) DO 150 I = 1,M C(I,J) = C(I,J) + TEMP*A(I,L) 150 CONTINUE 160 CONTINUE 170 CONTINUE ELSE * * Form C := alpha*A**T*B**T + beta*C * DO 200 J = 1,N DO 190 I = 1,M TEMP = ZERO DO 180 L = 1,K TEMP = TEMP + A(L,I)*B(J,L) 180 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 190 CONTINUE 200 CONTINUE END IF END IF * RETURN * * End of DGEMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/lsame.f0000644000000000000000000000013214061636515014713 xustar0030 mtime=1623670093.047104226 30 atime=1623670093.047104226 30 ctime=1623670093.047104226 elk-7.2.42/src/BLAS/lsame.f0000644002504400250440000000610114061636515016746 0ustar00dewhurstdewhurst00000000000000*> \brief \b LSAME * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * LOGICAL FUNCTION LSAME(CA,CB) * * .. Scalar Arguments .. * CHARACTER CA,CB * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> LSAME returns .TRUE. if CA is the same letter as CB regardless of *> case. *> \endverbatim * * Arguments: * ========== * *> \param[in] CA *> \verbatim *> CA is CHARACTER*1 *> \endverbatim *> *> \param[in] CB *> \verbatim *> CB is CHARACTER*1 *> CA and CB specify the single characters to be compared. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup aux_blas * * ===================================================================== LOGICAL FUNCTION LSAME(CA,CB) * * -- Reference BLAS level1 routine (version 3.1) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER CA,CB * .. * * ===================================================================== * * .. Intrinsic Functions .. INTRINSIC ICHAR * .. * .. Local Scalars .. INTEGER INTA,INTB,ZCODE * .. * * Test if the characters are equal * LSAME = CA .EQ. CB IF (LSAME) RETURN * * Now test for equivalence if both characters are alphabetic. * ZCODE = ICHAR('Z') * * Use 'Z' rather than 'A' so that ASCII can be detected on Prime * machines, on which ICHAR returns a value with bit 8 set. * ICHAR('A') on Prime machines returns 193 which is the same as * ICHAR('A') on an EBCDIC machine. * INTA = ICHAR(CA) INTB = ICHAR(CB) * IF (ZCODE.EQ.90 .OR. ZCODE.EQ.122) THEN * * ASCII is assumed - ZCODE is the ASCII code of either lower or * upper case 'Z'. * IF (INTA.GE.97 .AND. INTA.LE.122) INTA = INTA - 32 IF (INTB.GE.97 .AND. INTB.LE.122) INTB = INTB - 32 * ELSE IF (ZCODE.EQ.233 .OR. ZCODE.EQ.169) THEN * * EBCDIC is assumed - ZCODE is the EBCDIC code of either lower or * upper case 'Z'. * IF (INTA.GE.129 .AND. INTA.LE.137 .OR. + INTA.GE.145 .AND. INTA.LE.153 .OR. + INTA.GE.162 .AND. INTA.LE.169) INTA = INTA + 64 IF (INTB.GE.129 .AND. INTB.LE.137 .OR. + INTB.GE.145 .AND. INTB.LE.153 .OR. + INTB.GE.162 .AND. INTB.LE.169) INTB = INTB + 64 * ELSE IF (ZCODE.EQ.218 .OR. ZCODE.EQ.250) THEN * * ASCII is assumed, on Prime machines - ZCODE is the ASCII code * plus 128 of either lower or upper case 'Z'. * IF (INTA.GE.225 .AND. INTA.LE.250) INTA = INTA - 32 IF (INTB.GE.225 .AND. INTB.LE.250) INTB = INTB - 32 END IF LSAME = INTA .EQ. INTB * * RETURN * * End of LSAME * END elk-7.2.42/src/BLAS/PaxHeaders.21776/drot.f0000644000000000000000000000013214061636515014562 xustar0030 mtime=1623670093.049104224 30 atime=1623670093.049104224 30 ctime=1623670093.049104224 elk-7.2.42/src/BLAS/drot.f0000644002504400250440000000614014061636515016620 0ustar00dewhurstdewhurst00000000000000*> \brief \b DROT * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DROT(N,DX,INCX,DY,INCY,C,S) * * .. Scalar Arguments .. * DOUBLE PRECISION C,S * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*),DY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DROT applies a plane rotation. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in,out] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim *> *> \param[in,out] DY *> \verbatim *> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of DY *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> \endverbatim *> *> \param[in] S *> \verbatim *> S is DOUBLE PRECISION *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE DROT(N,DX,INCX,DY,INCY,C,S) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. DOUBLE PRECISION C,S INTEGER INCX,INCY,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*),DY(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION DTEMP INTEGER I,IX,IY * .. IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * DO I = 1,N DTEMP = C*DX(I) + S*DY(I) DY(I) = C*DY(I) - S*DX(I) DX(I) = DTEMP END DO ELSE * * code for unequal increments or equal increments not equal * to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N DTEMP = C*DX(IX) + S*DY(IY) DY(IY) = C*DY(IY) - S*DX(IX) DX(IX) = DTEMP IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/dswap.f0000644000000000000000000000013214061636515014730 xustar0030 mtime=1623670093.050104223 30 atime=1623670093.050104223 30 ctime=1623670093.050104223 elk-7.2.42/src/BLAS/dswap.f0000644002504400250440000000660514061636515016774 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSWAP * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSWAP(N,DX,INCX,DY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*),DY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSWAP interchanges two vectors. *> uses unrolled loops for increments equal to 1. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in,out] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim *> *> \param[in,out] DY *> \verbatim *> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of DY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup double_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE DSWAP(N,DX,INCX,DY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*),DY(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION DTEMP INTEGER I,IX,IY,M,MP1 * .. * .. Intrinsic Functions .. INTRINSIC MOD * .. IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 * * * clean-up loop * M = MOD(N,3) IF (M.NE.0) THEN DO I = 1,M DTEMP = DX(I) DX(I) = DY(I) DY(I) = DTEMP END DO IF (N.LT.3) RETURN END IF MP1 = M + 1 DO I = MP1,N,3 DTEMP = DX(I) DX(I) = DY(I) DY(I) = DTEMP DTEMP = DX(I+1) DX(I+1) = DY(I+1) DY(I+1) = DTEMP DTEMP = DX(I+2) DX(I+2) = DY(I+2) DY(I+2) = DTEMP END DO ELSE * * code for unequal increments or equal increments not equal * to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N DTEMP = DX(IX) DX(IX) = DY(IY) DY(IY) = DTEMP IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/idamax.f0000644000000000000000000000013214061636515015055 xustar0030 mtime=1623670093.052104221 30 atime=1623670093.052104221 30 ctime=1623670093.052104221 elk-7.2.42/src/BLAS/idamax.f0000644002504400250440000000534314061636515017117 0ustar00dewhurstdewhurst00000000000000*> \brief \b IDAMAX * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * INTEGER FUNCTION IDAMAX(N,DX,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * .. * .. Array Arguments .. * DOUBLE PRECISION DX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> IDAMAX finds the index of the first element having maximum absolute value. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DX *> \verbatim *> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of DX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup aux_blas * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, linpack, 3/11/78. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== INTEGER FUNCTION IDAMAX(N,DX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. DOUBLE PRECISION DX(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION DMAX INTEGER I,IX * .. * .. Intrinsic Functions .. INTRINSIC DABS * .. IDAMAX = 0 IF (N.LT.1 .OR. INCX.LE.0) RETURN IDAMAX = 1 IF (N.EQ.1) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * DMAX = DABS(DX(1)) DO I = 2,N IF (DABS(DX(I)).GT.DMAX) THEN IDAMAX = I DMAX = DABS(DX(I)) END IF END DO ELSE * * code for increment not equal to 1 * IX = 1 DMAX = DABS(DX(1)) IX = IX + INCX DO I = 2,N IF (DABS(DX(IX)).GT.DMAX) THEN IDAMAX = I DMAX = DABS(DX(IX)) END IF IX = IX + INCX END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/dtrsm.f0000644000000000000000000000012714061636515014747 xustar0029 mtime=1623670093.05310422 29 atime=1623670093.05310422 29 ctime=1623670093.05310422 elk-7.2.42/src/BLAS/dtrsm.f0000644002504400250440000003273414061636515017011 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRSM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DTRSM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER LDA,LDB,M,N * CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),B(LDB,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRSM solves one of the matrix equations *> *> op( A )*X = alpha*B, or X*op( A ) = alpha*B, *> *> where alpha is a scalar, X and B are m by n matrices, A is a unit, or *> non-unit, upper or lower triangular matrix and op( A ) is one of *> *> op( A ) = A or op( A ) = A**T. *> *> The matrix X is overwritten on B. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether op( A ) appears on the left *> or right of X as follows: *> *> SIDE = 'L' or 'l' op( A )*X = alpha*B. *> *> SIDE = 'R' or 'r' X*op( A ) = alpha*B. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix A is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n' op( A ) = A. *> *> TRANSA = 'T' or 't' op( A ) = A**T. *> *> TRANSA = 'C' or 'c' op( A ) = A**T. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit triangular *> as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of B. M must be at *> least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of B. N must be *> at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. When alpha is *> zero then A is not referenced and B need not be set before *> entry. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, k ), *> where k is m when SIDE = 'L' or 'l' *> and k is n when SIDE = 'R' or 'r'. *> Before entry with UPLO = 'U' or 'u', the leading k by k *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading k by k *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' *> then LDA must be at least max( 1, n ). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension ( LDB, N ) *> Before entry, the leading m by n part of the array B must *> contain the right-hand side matrix B, and on exit is *> overwritten by the solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DTRSM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER LDA,LDB,M,N CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),B(LDB,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,J,K,NROWA LOGICAL LSIDE,NOUNIT,UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Test the input parameters. * LSIDE = LSAME(SIDE,'L') IF (LSIDE) THEN NROWA = M ELSE NROWA = N END IF NOUNIT = LSAME(DIAG,'N') UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.LSIDE) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF ((.NOT.LSAME(TRANSA,'N')) .AND. + (.NOT.LSAME(TRANSA,'T')) .AND. + (.NOT.LSAME(TRANSA,'C'))) THEN INFO = 3 ELSE IF ((.NOT.LSAME(DIAG,'U')) .AND. (.NOT.LSAME(DIAG,'N'))) THEN INFO = 4 ELSE IF (M.LT.0) THEN INFO = 5 ELSE IF (N.LT.0) THEN INFO = 6 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('DTRSM ',INFO) RETURN END IF * * Quick return if possible. * IF (M.EQ.0 .OR. N.EQ.0) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M B(I,J) = ZERO 10 CONTINUE 20 CONTINUE RETURN END IF * * Start the operations. * IF (LSIDE) THEN IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*inv( A )*B. * IF (UPPER) THEN DO 60 J = 1,N IF (ALPHA.NE.ONE) THEN DO 30 I = 1,M B(I,J) = ALPHA*B(I,J) 30 CONTINUE END IF DO 50 K = M,1,-1 IF (B(K,J).NE.ZERO) THEN IF (NOUNIT) B(K,J) = B(K,J)/A(K,K) DO 40 I = 1,K - 1 B(I,J) = B(I,J) - B(K,J)*A(I,K) 40 CONTINUE END IF 50 CONTINUE 60 CONTINUE ELSE DO 100 J = 1,N IF (ALPHA.NE.ONE) THEN DO 70 I = 1,M B(I,J) = ALPHA*B(I,J) 70 CONTINUE END IF DO 90 K = 1,M IF (B(K,J).NE.ZERO) THEN IF (NOUNIT) B(K,J) = B(K,J)/A(K,K) DO 80 I = K + 1,M B(I,J) = B(I,J) - B(K,J)*A(I,K) 80 CONTINUE END IF 90 CONTINUE 100 CONTINUE END IF ELSE * * Form B := alpha*inv( A**T )*B. * IF (UPPER) THEN DO 130 J = 1,N DO 120 I = 1,M TEMP = ALPHA*B(I,J) DO 110 K = 1,I - 1 TEMP = TEMP - A(K,I)*B(K,J) 110 CONTINUE IF (NOUNIT) TEMP = TEMP/A(I,I) B(I,J) = TEMP 120 CONTINUE 130 CONTINUE ELSE DO 160 J = 1,N DO 150 I = M,1,-1 TEMP = ALPHA*B(I,J) DO 140 K = I + 1,M TEMP = TEMP - A(K,I)*B(K,J) 140 CONTINUE IF (NOUNIT) TEMP = TEMP/A(I,I) B(I,J) = TEMP 150 CONTINUE 160 CONTINUE END IF END IF ELSE IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*B*inv( A ). * IF (UPPER) THEN DO 210 J = 1,N IF (ALPHA.NE.ONE) THEN DO 170 I = 1,M B(I,J) = ALPHA*B(I,J) 170 CONTINUE END IF DO 190 K = 1,J - 1 IF (A(K,J).NE.ZERO) THEN DO 180 I = 1,M B(I,J) = B(I,J) - A(K,J)*B(I,K) 180 CONTINUE END IF 190 CONTINUE IF (NOUNIT) THEN TEMP = ONE/A(J,J) DO 200 I = 1,M B(I,J) = TEMP*B(I,J) 200 CONTINUE END IF 210 CONTINUE ELSE DO 260 J = N,1,-1 IF (ALPHA.NE.ONE) THEN DO 220 I = 1,M B(I,J) = ALPHA*B(I,J) 220 CONTINUE END IF DO 240 K = J + 1,N IF (A(K,J).NE.ZERO) THEN DO 230 I = 1,M B(I,J) = B(I,J) - A(K,J)*B(I,K) 230 CONTINUE END IF 240 CONTINUE IF (NOUNIT) THEN TEMP = ONE/A(J,J) DO 250 I = 1,M B(I,J) = TEMP*B(I,J) 250 CONTINUE END IF 260 CONTINUE END IF ELSE * * Form B := alpha*B*inv( A**T ). * IF (UPPER) THEN DO 310 K = N,1,-1 IF (NOUNIT) THEN TEMP = ONE/A(K,K) DO 270 I = 1,M B(I,K) = TEMP*B(I,K) 270 CONTINUE END IF DO 290 J = 1,K - 1 IF (A(J,K).NE.ZERO) THEN TEMP = A(J,K) DO 280 I = 1,M B(I,J) = B(I,J) - TEMP*B(I,K) 280 CONTINUE END IF 290 CONTINUE IF (ALPHA.NE.ONE) THEN DO 300 I = 1,M B(I,K) = ALPHA*B(I,K) 300 CONTINUE END IF 310 CONTINUE ELSE DO 360 K = 1,N IF (NOUNIT) THEN TEMP = ONE/A(K,K) DO 320 I = 1,M B(I,K) = TEMP*B(I,K) 320 CONTINUE END IF DO 340 J = K + 1,N IF (A(J,K).NE.ZERO) THEN TEMP = A(J,K) DO 330 I = 1,M B(I,J) = B(I,J) - TEMP*B(I,K) 330 CONTINUE END IF 340 CONTINUE IF (ALPHA.NE.ONE) THEN DO 350 I = 1,M B(I,K) = ALPHA*B(I,K) 350 CONTINUE END IF 360 CONTINUE END IF END IF END IF * RETURN * * End of DTRSM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dgemv.f0000644000000000000000000000013214061636515014714 xustar0030 mtime=1623670093.055104218 30 atime=1623670093.055104218 30 ctime=1623670093.055104218 elk-7.2.42/src/BLAS/dgemv.f0000644002504400250440000002107314061636515016754 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGEMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER INCX,INCY,LDA,M,N * CHARACTER TRANS * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGEMV performs one of the matrix-vector operations *> *> y := alpha*A*x + beta*y, or y := alpha*A**T*x + beta*y, *> *> where alpha and beta are scalars, x and y are vectors and A is an *> m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' y := alpha*A*x + beta*y. *> *> TRANS = 'T' or 't' y := alpha*A**T*x + beta*y. *> *> TRANS = 'C' or 'c' y := alpha*A**T*x + beta*y. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix A. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry, the leading m by n part of the array A must *> contain the matrix of coefficients. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, m ). *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n' *> and at least *> ( 1 + ( m - 1 )*abs( INCX ) ) otherwise. *> Before entry, the incremented array X must contain the *> vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n' *> and at least *> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise. *> Before entry with BETA non-zero, the incremented array Y *> must contain the vector y. On exit, Y is overwritten by the *> updated vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER INCX,INCY,LDA,M,N CHARACTER TRANS * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY,LENX,LENY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 1 ELSE IF (M.LT.0) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (LDA.LT.MAX(1,M)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 ELSE IF (INCY.EQ.0) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('DGEMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * Set LENX and LENY, the lengths of the vectors x and y, and set * up the start points in X and Y. * IF (LSAME(TRANS,'N')) THEN LENX = N LENY = M ELSE LENX = M LENY = N END IF IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (LENX-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (LENY-1)*INCY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,LENY Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,LENY Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,LENY Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,LENY Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN IF (LSAME(TRANS,'N')) THEN * * Form y := alpha*A*x + y. * JX = KX IF (INCY.EQ.1) THEN DO 60 J = 1,N TEMP = ALPHA*X(JX) DO 50 I = 1,M Y(I) = Y(I) + TEMP*A(I,J) 50 CONTINUE JX = JX + INCX 60 CONTINUE ELSE DO 80 J = 1,N TEMP = ALPHA*X(JX) IY = KY DO 70 I = 1,M Y(IY) = Y(IY) + TEMP*A(I,J) IY = IY + INCY 70 CONTINUE JX = JX + INCX 80 CONTINUE END IF ELSE * * Form y := alpha*A**T*x + y. * JY = KY IF (INCX.EQ.1) THEN DO 100 J = 1,N TEMP = ZERO DO 90 I = 1,M TEMP = TEMP + A(I,J)*X(I) 90 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP JY = JY + INCY 100 CONTINUE ELSE DO 120 J = 1,N TEMP = ZERO IX = KX DO 110 I = 1,M TEMP = TEMP + A(I,J)*X(IX) IX = IX + INCX 110 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP JY = JY + INCY 120 CONTINUE END IF END IF * RETURN * * End of DGEMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dtrmm.f0000644000000000000000000000013214061636515014735 xustar0030 mtime=1623670093.057104216 30 atime=1623670093.057104216 30 ctime=1623670093.057104216 elk-7.2.42/src/BLAS/dtrmm.f0000644002504400250440000003100714061636515016773 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER LDA,LDB,M,N * CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),B(LDB,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRMM performs one of the matrix-matrix operations *> *> B := alpha*op( A )*B, or B := alpha*B*op( A ), *> *> where alpha is a scalar, B is an m by n matrix, A is a unit, or *> non-unit, upper or lower triangular matrix and op( A ) is one of *> *> op( A ) = A or op( A ) = A**T. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether op( A ) multiplies B from *> the left or right as follows: *> *> SIDE = 'L' or 'l' B := alpha*op( A )*B. *> *> SIDE = 'R' or 'r' B := alpha*B*op( A ). *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix A is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n' op( A ) = A. *> *> TRANSA = 'T' or 't' op( A ) = A**T. *> *> TRANSA = 'C' or 'c' op( A ) = A**T. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit triangular *> as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of B. M must be at *> least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of B. N must be *> at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. When alpha is *> zero then A is not referenced and B need not be set before *> entry. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, k ), where k is m *> when SIDE = 'L' or 'l' and is n when SIDE = 'R' or 'r'. *> Before entry with UPLO = 'U' or 'u', the leading k by k *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading k by k *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' *> then LDA must be at least max( 1, n ). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension ( LDB, N ) *> Before entry, the leading m by n part of the array B must *> contain the matrix B, and on exit is overwritten by the *> transformed matrix. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER LDA,LDB,M,N CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),B(LDB,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,J,K,NROWA LOGICAL LSIDE,NOUNIT,UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Test the input parameters. * LSIDE = LSAME(SIDE,'L') IF (LSIDE) THEN NROWA = M ELSE NROWA = N END IF NOUNIT = LSAME(DIAG,'N') UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.LSIDE) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF ((.NOT.LSAME(TRANSA,'N')) .AND. + (.NOT.LSAME(TRANSA,'T')) .AND. + (.NOT.LSAME(TRANSA,'C'))) THEN INFO = 3 ELSE IF ((.NOT.LSAME(DIAG,'U')) .AND. (.NOT.LSAME(DIAG,'N'))) THEN INFO = 4 ELSE IF (M.LT.0) THEN INFO = 5 ELSE IF (N.LT.0) THEN INFO = 6 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('DTRMM ',INFO) RETURN END IF * * Quick return if possible. * IF (M.EQ.0 .OR. N.EQ.0) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M B(I,J) = ZERO 10 CONTINUE 20 CONTINUE RETURN END IF * * Start the operations. * IF (LSIDE) THEN IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*A*B. * IF (UPPER) THEN DO 50 J = 1,N DO 40 K = 1,M IF (B(K,J).NE.ZERO) THEN TEMP = ALPHA*B(K,J) DO 30 I = 1,K - 1 B(I,J) = B(I,J) + TEMP*A(I,K) 30 CONTINUE IF (NOUNIT) TEMP = TEMP*A(K,K) B(K,J) = TEMP END IF 40 CONTINUE 50 CONTINUE ELSE DO 80 J = 1,N DO 70 K = M,1,-1 IF (B(K,J).NE.ZERO) THEN TEMP = ALPHA*B(K,J) B(K,J) = TEMP IF (NOUNIT) B(K,J) = B(K,J)*A(K,K) DO 60 I = K + 1,M B(I,J) = B(I,J) + TEMP*A(I,K) 60 CONTINUE END IF 70 CONTINUE 80 CONTINUE END IF ELSE * * Form B := alpha*A**T*B. * IF (UPPER) THEN DO 110 J = 1,N DO 100 I = M,1,-1 TEMP = B(I,J) IF (NOUNIT) TEMP = TEMP*A(I,I) DO 90 K = 1,I - 1 TEMP = TEMP + A(K,I)*B(K,J) 90 CONTINUE B(I,J) = ALPHA*TEMP 100 CONTINUE 110 CONTINUE ELSE DO 140 J = 1,N DO 130 I = 1,M TEMP = B(I,J) IF (NOUNIT) TEMP = TEMP*A(I,I) DO 120 K = I + 1,M TEMP = TEMP + A(K,I)*B(K,J) 120 CONTINUE B(I,J) = ALPHA*TEMP 130 CONTINUE 140 CONTINUE END IF END IF ELSE IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*B*A. * IF (UPPER) THEN DO 180 J = N,1,-1 TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(J,J) DO 150 I = 1,M B(I,J) = TEMP*B(I,J) 150 CONTINUE DO 170 K = 1,J - 1 IF (A(K,J).NE.ZERO) THEN TEMP = ALPHA*A(K,J) DO 160 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 160 CONTINUE END IF 170 CONTINUE 180 CONTINUE ELSE DO 220 J = 1,N TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(J,J) DO 190 I = 1,M B(I,J) = TEMP*B(I,J) 190 CONTINUE DO 210 K = J + 1,N IF (A(K,J).NE.ZERO) THEN TEMP = ALPHA*A(K,J) DO 200 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 200 CONTINUE END IF 210 CONTINUE 220 CONTINUE END IF ELSE * * Form B := alpha*B*A**T. * IF (UPPER) THEN DO 260 K = 1,N DO 240 J = 1,K - 1 IF (A(J,K).NE.ZERO) THEN TEMP = ALPHA*A(J,K) DO 230 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 230 CONTINUE END IF 240 CONTINUE TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(K,K) IF (TEMP.NE.ONE) THEN DO 250 I = 1,M B(I,K) = TEMP*B(I,K) 250 CONTINUE END IF 260 CONTINUE ELSE DO 300 K = N,1,-1 DO 280 J = K + 1,N IF (A(J,K).NE.ZERO) THEN TEMP = ALPHA*A(J,K) DO 270 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 270 CONTINUE END IF 280 CONTINUE TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(K,K) IF (TEMP.NE.ONE) THEN DO 290 I = 1,M B(I,K) = TEMP*B(I,K) 290 CONTINUE END IF 300 CONTINUE END IF END IF END IF * RETURN * * End of DTRMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dger.f0000644000000000000000000000013214061636515014533 xustar0030 mtime=1623670093.059104215 30 atime=1623670093.058104216 30 ctime=1623670093.059104215 elk-7.2.42/src/BLAS/dger.f0000644002504400250440000001307514061636515016576 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGER * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DGER(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGER performs the rank 1 operation *> *> A := alpha*x*y**T + A, *> *> where alpha is a scalar, x is an m element vector, y is an n element *> vector and A is an m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix A. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( m - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the m *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry, the leading m by n part of the array A must *> contain the matrix of coefficients. On exit, A is *> overwritten by the updated matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DGER(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER (ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,IX,J,JY,KX * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (M.LT.0) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 ELSE IF (LDA.LT.MAX(1,M)) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('DGER ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (INCY.GT.0) THEN JY = 1 ELSE JY = 1 - (N-1)*INCY END IF IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*Y(JY) DO 10 I = 1,M A(I,J) = A(I,J) + X(I)*TEMP 10 CONTINUE END IF JY = JY + INCY 20 CONTINUE ELSE IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (M-1)*INCX END IF DO 40 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*Y(JY) IX = KX DO 30 I = 1,M A(I,J) = A(I,J) + X(IX)*TEMP IX = IX + INCX 30 CONTINUE END IF JY = JY + INCY 40 CONTINUE END IF * RETURN * * End of DGER . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dtrmv.f0000644000000000000000000000013214061636515014746 xustar0030 mtime=1623670093.060104214 30 atime=1623670093.060104214 30 ctime=1623670093.060104214 elk-7.2.42/src/BLAS/dtrmv.f0000644002504400250440000002362014061636515017006 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DTRMV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,LDA,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRMV performs one of the matrix-vector operations *> *> x := A*x, or x := A**T*x, *> *> where x is an n element vector and A is an n by n unit, or non-unit, *> upper or lower triangular matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' x := A*x. *> *> TRANS = 'T' or 't' x := A**T*x. *> *> TRANS = 'C' or 'c' x := A**T*x. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. On exit, X is overwritten with the *> transformed vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DTRMV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,LDA,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER (ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,IX,J,JX,KX LOGICAL NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 END IF IF (INFO.NE.0) THEN CALL XERBLA('DTRMV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (LSAME(TRANS,'N')) THEN * * Form x := A*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (X(J).NE.ZERO) THEN TEMP = X(J) DO 10 I = 1,J - 1 X(I) = X(I) + TEMP*A(I,J) 10 CONTINUE IF (NOUNIT) X(J) = X(J)*A(J,J) END IF 20 CONTINUE ELSE JX = KX DO 40 J = 1,N IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 30 I = 1,J - 1 X(IX) = X(IX) + TEMP*A(I,J) IX = IX + INCX 30 CONTINUE IF (NOUNIT) X(JX) = X(JX)*A(J,J) END IF JX = JX + INCX 40 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 60 J = N,1,-1 IF (X(J).NE.ZERO) THEN TEMP = X(J) DO 50 I = N,J + 1,-1 X(I) = X(I) + TEMP*A(I,J) 50 CONTINUE IF (NOUNIT) X(J) = X(J)*A(J,J) END IF 60 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 80 J = N,1,-1 IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 70 I = N,J + 1,-1 X(IX) = X(IX) + TEMP*A(I,J) IX = IX - INCX 70 CONTINUE IF (NOUNIT) X(JX) = X(JX)*A(J,J) END IF JX = JX - INCX 80 CONTINUE END IF END IF ELSE * * Form x := A**T*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 100 J = N,1,-1 TEMP = X(J) IF (NOUNIT) TEMP = TEMP*A(J,J) DO 90 I = J - 1,1,-1 TEMP = TEMP + A(I,J)*X(I) 90 CONTINUE X(J) = TEMP 100 CONTINUE ELSE JX = KX + (N-1)*INCX DO 120 J = N,1,-1 TEMP = X(JX) IX = JX IF (NOUNIT) TEMP = TEMP*A(J,J) DO 110 I = J - 1,1,-1 IX = IX - INCX TEMP = TEMP + A(I,J)*X(IX) 110 CONTINUE X(JX) = TEMP JX = JX - INCX 120 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 140 J = 1,N TEMP = X(J) IF (NOUNIT) TEMP = TEMP*A(J,J) DO 130 I = J + 1,N TEMP = TEMP + A(I,J)*X(I) 130 CONTINUE X(J) = TEMP 140 CONTINUE ELSE JX = KX DO 160 J = 1,N TEMP = X(JX) IX = JX IF (NOUNIT) TEMP = TEMP*A(J,J) DO 150 I = J + 1,N IX = IX + INCX TEMP = TEMP + A(I,J)*X(IX) 150 CONTINUE X(JX) = TEMP JX = JX + INCX 160 CONTINUE END IF END IF END IF * RETURN * * End of DTRMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dsymv.f0000644000000000000000000000013214061636515014754 xustar0030 mtime=1623670093.062104212 30 atime=1623670093.062104212 30 ctime=1623670093.062104212 elk-7.2.42/src/BLAS/dsymv.f0000644002504400250440000002226514061636515017020 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER INCX,INCY,LDA,N * CHARACTER UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYMV performs the matrix-vector operation *> *> y := alpha*A*x + beta*y, *> *> where alpha and beta are scalars, x and y are n element vectors and *> A is an n by n symmetric matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array A is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of A *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of A *> is to be referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular part of the symmetric matrix and the strictly *> lower triangular part of A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular part of the symmetric matrix and the strictly *> upper triangular part of A is not referenced. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. On exit, Y is overwritten by the updated *> vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DSYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER INCX,INCY,LDA,N CHARACTER UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 5 ELSE IF (INCX.EQ.0) THEN INFO = 7 ELSE IF (INCY.EQ.0) THEN INFO = 10 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSYMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * Set up the start points in X and Y. * IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through the triangular part * of A. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,N Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,N Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,N Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,N Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN IF (LSAME(UPLO,'U')) THEN * * Form y when A is stored in upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO DO 50 I = 1,J - 1 Y(I) = Y(I) + TEMP1*A(I,J) TEMP2 = TEMP2 + A(I,J)*X(I) 50 CONTINUE Y(J) = Y(J) + TEMP1*A(J,J) + ALPHA*TEMP2 60 CONTINUE ELSE JX = KX JY = KY DO 80 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO IX = KX IY = KY DO 70 I = 1,J - 1 Y(IY) = Y(IY) + TEMP1*A(I,J) TEMP2 = TEMP2 + A(I,J)*X(IX) IX = IX + INCX IY = IY + INCY 70 CONTINUE Y(JY) = Y(JY) + TEMP1*A(J,J) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY 80 CONTINUE END IF ELSE * * Form y when A is stored in lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 100 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO Y(J) = Y(J) + TEMP1*A(J,J) DO 90 I = J + 1,N Y(I) = Y(I) + TEMP1*A(I,J) TEMP2 = TEMP2 + A(I,J)*X(I) 90 CONTINUE Y(J) = Y(J) + ALPHA*TEMP2 100 CONTINUE ELSE JX = KX JY = KY DO 120 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO Y(JY) = Y(JY) + TEMP1*A(J,J) IX = JX IY = JY DO 110 I = J + 1,N IX = IX + INCX IY = IY + INCY Y(IY) = Y(IY) + TEMP1*A(I,J) TEMP2 = TEMP2 + A(I,J)*X(IX) 110 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY 120 CONTINUE END IF END IF * RETURN * * End of DSYMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dsyrk.f0000644000000000000000000000013014061636515014744 xustar0029 mtime=1623670093.06410421 30 atime=1623670093.063104211 29 ctime=1623670093.06410421 elk-7.2.42/src/BLAS/dsyrk.f0000644002504400250440000002505614061636515017013 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYRK * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSYRK(UPLO,TRANS,N,K,ALPHA,A,LDA,BETA,C,LDC) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER K,LDA,LDC,N * CHARACTER TRANS,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYRK performs one of the symmetric rank k operations *> *> C := alpha*A*A**T + beta*C, *> *> or *> *> C := alpha*A**T*A + beta*C, *> *> where alpha and beta are scalars, C is an n by n symmetric matrix *> and A is an n by k matrix in the first case and a k by n matrix *> in the second case. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array C is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of C *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of C *> is to be referenced. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' C := alpha*A*A**T + beta*C. *> *> TRANS = 'T' or 't' C := alpha*A**T*A + beta*C. *> *> TRANS = 'C' or 'c' C := alpha*A**T*A + beta*C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry with TRANS = 'N' or 'n', K specifies the number *> of columns of the matrix A, and on entry with *> TRANS = 'T' or 't' or 'C' or 'c', K specifies the number *> of rows of the matrix A. K must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, ka ), where ka is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array A must contain the matrix A, otherwise *> the leading k by n part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDA must be at least max( 1, n ), otherwise LDA must *> be at least max( 1, k ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension ( LDC, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array C must contain the upper *> triangular part of the symmetric matrix and the strictly *> lower triangular part of C is not referenced. On exit, the *> upper triangular part of the array C is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array C must contain the lower *> triangular part of the symmetric matrix and the strictly *> upper triangular part of C is not referenced. On exit, the *> lower triangular part of the array C is overwritten by the *> lower triangular part of the updated matrix. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DSYRK(UPLO,TRANS,N,K,ALPHA,A,LDA,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER K,LDA,LDC,N CHARACTER TRANS,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,J,L,NROWA LOGICAL UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Test the input parameters. * IF (LSAME(TRANS,'N')) THEN NROWA = N ELSE NROWA = K END IF UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 1 ELSE IF ((.NOT.LSAME(TRANS,'N')) .AND. + (.NOT.LSAME(TRANS,'T')) .AND. + (.NOT.LSAME(TRANS,'C'))) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (K.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDC.LT.MAX(1,N)) THEN INFO = 10 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSYRK ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (((ALPHA.EQ.ZERO).OR. + (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (UPPER) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,J C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,J C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF ELSE IF (BETA.EQ.ZERO) THEN DO 60 J = 1,N DO 50 I = J,N C(I,J) = ZERO 50 CONTINUE 60 CONTINUE ELSE DO 80 J = 1,N DO 70 I = J,N C(I,J) = BETA*C(I,J) 70 CONTINUE 80 CONTINUE END IF END IF RETURN END IF * * Start the operations. * IF (LSAME(TRANS,'N')) THEN * * Form C := alpha*A*A**T + beta*C. * IF (UPPER) THEN DO 130 J = 1,N IF (BETA.EQ.ZERO) THEN DO 90 I = 1,J C(I,J) = ZERO 90 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 100 I = 1,J C(I,J) = BETA*C(I,J) 100 CONTINUE END IF DO 120 L = 1,K IF (A(J,L).NE.ZERO) THEN TEMP = ALPHA*A(J,L) DO 110 I = 1,J C(I,J) = C(I,J) + TEMP*A(I,L) 110 CONTINUE END IF 120 CONTINUE 130 CONTINUE ELSE DO 180 J = 1,N IF (BETA.EQ.ZERO) THEN DO 140 I = J,N C(I,J) = ZERO 140 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 150 I = J,N C(I,J) = BETA*C(I,J) 150 CONTINUE END IF DO 170 L = 1,K IF (A(J,L).NE.ZERO) THEN TEMP = ALPHA*A(J,L) DO 160 I = J,N C(I,J) = C(I,J) + TEMP*A(I,L) 160 CONTINUE END IF 170 CONTINUE 180 CONTINUE END IF ELSE * * Form C := alpha*A**T*A + beta*C. * IF (UPPER) THEN DO 210 J = 1,N DO 200 I = 1,J TEMP = ZERO DO 190 L = 1,K TEMP = TEMP + A(L,I)*A(L,J) 190 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 200 CONTINUE 210 CONTINUE ELSE DO 240 J = 1,N DO 230 I = J,N TEMP = ZERO DO 220 L = 1,K TEMP = TEMP + A(L,I)*A(L,J) 220 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP ELSE C(I,J) = ALPHA*TEMP + BETA*C(I,J) END IF 230 CONTINUE 240 CONTINUE END IF END IF * RETURN * * End of DSYRK . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dspmv.f0000644000000000000000000000013214061636515014743 xustar0030 mtime=1623670093.066104208 30 atime=1623670093.065104209 30 ctime=1623670093.066104208 elk-7.2.42/src/BLAS/dspmv.f0000644002504400250440000002237214061636515017006 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSPMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER INCX,INCY,N * CHARACTER UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION AP(*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSPMV performs the matrix-vector operation *> *> y := alpha*A*x + beta*y, *> *> where alpha and beta are scalars, x and y are n element vectors and *> A is an n by n symmetric matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the matrix A is supplied in the packed *> array AP as follows: *> *> UPLO = 'U' or 'u' The upper triangular part of A is *> supplied in AP. *> *> UPLO = 'L' or 'l' The lower triangular part of A is *> supplied in AP. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is DOUBLE PRECISION array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular part of the symmetric matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) *> and a( 2, 2 ) respectively, and so on. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular part of the symmetric matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) *> and a( 3, 1 ) respectively, and so on. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. On exit, Y is overwritten by the updated *> vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DSPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER INCX,INCY,N CHARACTER UPLO * .. * .. Array Arguments .. DOUBLE PRECISION AP(*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,K,KK,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 6 ELSE IF (INCY.EQ.0) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSPMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * Set up the start points in X and Y. * IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF * * Start the operations. In this version the elements of the array AP * are accessed sequentially with one pass through AP. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,N Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,N Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,N Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,N Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN KK = 1 IF (LSAME(UPLO,'U')) THEN * * Form y when AP contains the upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO K = KK DO 50 I = 1,J - 1 Y(I) = Y(I) + TEMP1*AP(K) TEMP2 = TEMP2 + AP(K)*X(I) K = K + 1 50 CONTINUE Y(J) = Y(J) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 KK = KK + J 60 CONTINUE ELSE JX = KX JY = KY DO 80 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO IX = KX IY = KY DO 70 K = KK,KK + J - 2 Y(IY) = Y(IY) + TEMP1*AP(K) TEMP2 = TEMP2 + AP(K)*X(IX) IX = IX + INCX IY = IY + INCY 70 CONTINUE Y(JY) = Y(JY) + TEMP1*AP(KK+J-1) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY KK = KK + J 80 CONTINUE END IF ELSE * * Form y when AP contains the lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 100 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO Y(J) = Y(J) + TEMP1*AP(KK) K = KK + 1 DO 90 I = J + 1,N Y(I) = Y(I) + TEMP1*AP(K) TEMP2 = TEMP2 + AP(K)*X(I) K = K + 1 90 CONTINUE Y(J) = Y(J) + ALPHA*TEMP2 KK = KK + (N-J+1) 100 CONTINUE ELSE JX = KX JY = KY DO 120 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO Y(JY) = Y(JY) + TEMP1*AP(KK) IX = JX IY = JY DO 110 K = KK + 1,KK + N - J IX = IX + INCX IY = IY + INCY Y(IY) = Y(IY) + TEMP1*AP(K) TEMP2 = TEMP2 + AP(K)*X(IX) 110 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY KK = KK + (N-J+1) 120 CONTINUE END IF END IF * RETURN * * End of DSPMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dspr2.f0000644000000000000000000000013214061636515014644 xustar0030 mtime=1623670093.067104207 30 atime=1623670093.067104207 30 ctime=1623670093.067104207 elk-7.2.42/src/BLAS/dspr2.f0000644002504400250440000002064614061636515016711 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSPR2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER INCX,INCY,N * CHARACTER UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION AP(*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSPR2 performs the symmetric rank 2 operation *> *> A := alpha*x*y**T + alpha*y*x**T + A, *> *> where alpha is a scalar, x and y are n element vectors and A is an *> n by n symmetric matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the matrix A is supplied in the packed *> array AP as follows: *> *> UPLO = 'U' or 'u' The upper triangular part of A is *> supplied in AP. *> *> UPLO = 'L' or 'l' The lower triangular part of A is *> supplied in AP. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is DOUBLE PRECISION array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular part of the symmetric matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) *> and a( 2, 2 ) respectively, and so on. On exit, the array *> AP is overwritten by the upper triangular part of the *> updated matrix. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular part of the symmetric matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) *> and a( 3, 1 ) respectively, and so on. On exit, the array *> AP is overwritten by the lower triangular part of the *> updated matrix. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DSPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER INCX,INCY,N CHARACTER UPLO * .. * .. Array Arguments .. DOUBLE PRECISION AP(*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER (ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,K,KK,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSPR2 ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Set up the start points in X and Y if the increments are not both * unity. * IF ((INCX.NE.1) .OR. (INCY.NE.1)) THEN IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF JX = KX JY = KY END IF * * Start the operations. In this version the elements of the array AP * are accessed sequentially with one pass through AP. * KK = 1 IF (LSAME(UPLO,'U')) THEN * * Form A when upper triangle is stored in AP. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 20 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*Y(J) TEMP2 = ALPHA*X(J) K = KK DO 10 I = 1,J AP(K) = AP(K) + X(I)*TEMP1 + Y(I)*TEMP2 K = K + 1 10 CONTINUE END IF KK = KK + J 20 CONTINUE ELSE DO 40 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*Y(JY) TEMP2 = ALPHA*X(JX) IX = KX IY = KY DO 30 K = KK,KK + J - 1 AP(K) = AP(K) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 30 CONTINUE END IF JX = JX + INCX JY = JY + INCY KK = KK + J 40 CONTINUE END IF ELSE * * Form A when lower triangle is stored in AP. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*Y(J) TEMP2 = ALPHA*X(J) K = KK DO 50 I = J,N AP(K) = AP(K) + X(I)*TEMP1 + Y(I)*TEMP2 K = K + 1 50 CONTINUE END IF KK = KK + N - J + 1 60 CONTINUE ELSE DO 80 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*Y(JY) TEMP2 = ALPHA*X(JX) IX = JX IY = JY DO 70 K = KK,KK + N - J AP(K) = AP(K) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 70 CONTINUE END IF JX = JX + INCX JY = JY + INCY KK = KK + N - J + 1 80 CONTINUE END IF END IF * RETURN * * End of DSPR2 . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dsyr2.f0000644000000000000000000000013214061636515014655 xustar0030 mtime=1623670093.069104205 30 atime=1623670093.069104205 30 ctime=1623670093.069104205 elk-7.2.42/src/BLAS/dsyr2.f0000644002504400250440000002062214061636515016714 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYR2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA * INTEGER INCX,INCY,LDA,N * CHARACTER UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYR2 performs the symmetric rank 2 operation *> *> A := alpha*x*y**T + alpha*y*x**T + A, *> *> where alpha is a scalar, x and y are n element vectors and A is an n *> by n symmetric matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array A is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of A *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of A *> is to be referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular part of the symmetric matrix and the strictly *> lower triangular part of A is not referenced. On exit, the *> upper triangular part of the array A is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular part of the symmetric matrix and the strictly *> upper triangular part of A is not referenced. On exit, the *> lower triangular part of the array A is overwritten by the *> lower triangular part of the updated matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE DSYR2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA INTEGER INCX,INCY,LDA,N CHARACTER UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER (ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSYR2 ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Set up the start points in X and Y if the increments are not both * unity. * IF ((INCX.NE.1) .OR. (INCY.NE.1)) THEN IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF JX = KX JY = KY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through the triangular part * of A. * IF (LSAME(UPLO,'U')) THEN * * Form A when A is stored in the upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 20 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*Y(J) TEMP2 = ALPHA*X(J) DO 10 I = 1,J A(I,J) = A(I,J) + X(I)*TEMP1 + Y(I)*TEMP2 10 CONTINUE END IF 20 CONTINUE ELSE DO 40 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*Y(JY) TEMP2 = ALPHA*X(JX) IX = KX IY = KY DO 30 I = 1,J A(I,J) = A(I,J) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 30 CONTINUE END IF JX = JX + INCX JY = JY + INCY 40 CONTINUE END IF ELSE * * Form A when A is stored in the lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*Y(J) TEMP2 = ALPHA*X(J) DO 50 I = J,N A(I,J) = A(I,J) + X(I)*TEMP1 + Y(I)*TEMP2 50 CONTINUE END IF 60 CONTINUE ELSE DO 80 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*Y(JY) TEMP2 = ALPHA*X(JX) IX = JX IY = JY DO 70 I = J,N A(I,J) = A(I,J) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 70 CONTINUE END IF JX = JX + INCX JY = JY + INCY 80 CONTINUE END IF END IF * RETURN * * End of DSYR2 . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dtrsv.f0000644000000000000000000000013214061636515014754 xustar0030 mtime=1623670093.071104203 30 atime=1623670093.071104203 30 ctime=1623670093.071104203 elk-7.2.42/src/BLAS/dtrsv.f0000644002504400250440000002361414061636515017017 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRSV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DTRSV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,LDA,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRSV solves one of the systems of equations *> *> A*x = b, or A**T*x = b, *> *> where b and x are n element vectors and A is an n by n unit, or *> non-unit, upper or lower triangular matrix. *> *> No test for singularity or near-singularity is included in this *> routine. Such tests must be performed before calling this routine. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the equations to be solved as *> follows: *> *> TRANS = 'N' or 'n' A*x = b. *> *> TRANS = 'T' or 't' A**T*x = b. *> *> TRANS = 'C' or 'c' A**T*x = b. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is DOUBLE PRECISION array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element right-hand side vector b. On exit, X is overwritten *> with the solution vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level1 * * ===================================================================== SUBROUTINE DTRSV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * -- Reference BLAS level1 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,LDA,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),X(*) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER (ZERO=0.0D+0) * .. * .. Local Scalars .. DOUBLE PRECISION TEMP INTEGER I,INFO,IX,J,JX,KX LOGICAL NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 END IF IF (INFO.NE.0) THEN CALL XERBLA('DTRSV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (LSAME(TRANS,'N')) THEN * * Form x := inv( A )*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 20 J = N,1,-1 IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/A(J,J) TEMP = X(J) DO 10 I = J - 1,1,-1 X(I) = X(I) - TEMP*A(I,J) 10 CONTINUE END IF 20 CONTINUE ELSE JX = KX + (N-1)*INCX DO 40 J = N,1,-1 IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/A(J,J) TEMP = X(JX) IX = JX DO 30 I = J - 1,1,-1 IX = IX - INCX X(IX) = X(IX) - TEMP*A(I,J) 30 CONTINUE END IF JX = JX - INCX 40 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 60 J = 1,N IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/A(J,J) TEMP = X(J) DO 50 I = J + 1,N X(I) = X(I) - TEMP*A(I,J) 50 CONTINUE END IF 60 CONTINUE ELSE JX = KX DO 80 J = 1,N IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/A(J,J) TEMP = X(JX) IX = JX DO 70 I = J + 1,N IX = IX + INCX X(IX) = X(IX) - TEMP*A(I,J) 70 CONTINUE END IF JX = JX + INCX 80 CONTINUE END IF END IF ELSE * * Form x := inv( A**T )*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 100 J = 1,N TEMP = X(J) DO 90 I = 1,J - 1 TEMP = TEMP - A(I,J)*X(I) 90 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) X(J) = TEMP 100 CONTINUE ELSE JX = KX DO 120 J = 1,N TEMP = X(JX) IX = KX DO 110 I = 1,J - 1 TEMP = TEMP - A(I,J)*X(IX) IX = IX + INCX 110 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) X(JX) = TEMP JX = JX + INCX 120 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 140 J = N,1,-1 TEMP = X(J) DO 130 I = N,J + 1,-1 TEMP = TEMP - A(I,J)*X(I) 130 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) X(J) = TEMP 140 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 160 J = N,1,-1 TEMP = X(JX) IX = KX DO 150 I = N,J + 1,-1 TEMP = TEMP - A(I,J)*X(IX) IX = IX - INCX 150 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) X(JX) = TEMP JX = JX - INCX 160 CONTINUE END IF END IF END IF * RETURN * * End of DTRSV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dsymm.f0000644000000000000000000000013214061636515014743 xustar0030 mtime=1623670093.073104202 30 atime=1623670093.072104203 30 ctime=1623670093.073104202 elk-7.2.42/src/BLAS/dsymm.f0000644002504400250440000002565514061636515017015 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER LDA,LDB,LDC,M,N * CHARACTER SIDE,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYMM performs one of the matrix-matrix operations *> *> C := alpha*A*B + beta*C, *> *> or *> *> C := alpha*B*A + beta*C, *> *> where alpha and beta are scalars, A is a symmetric matrix and B and *> C are m by n matrices. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether the symmetric matrix A *> appears on the left or right in the operation as follows: *> *> SIDE = 'L' or 'l' C := alpha*A*B + beta*C, *> *> SIDE = 'R' or 'r' C := alpha*B*A + beta*C, *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the symmetric matrix A is to be *> referenced as follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of the *> symmetric matrix is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of the *> symmetric matrix is to be referenced. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix C. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix C. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, ka ), where ka is *> m when SIDE = 'L' or 'l' and is n otherwise. *> Before entry with SIDE = 'L' or 'l', the m by m part of *> the array A must contain the symmetric matrix, such that *> when UPLO = 'U' or 'u', the leading m by m upper triangular *> part of the array A must contain the upper triangular part *> of the symmetric matrix and the strictly lower triangular *> part of A is not referenced, and when UPLO = 'L' or 'l', *> the leading m by m lower triangular part of the array A *> must contain the lower triangular part of the symmetric *> matrix and the strictly upper triangular part of A is not *> referenced. *> Before entry with SIDE = 'R' or 'r', the n by n part of *> the array A must contain the symmetric matrix, such that *> when UPLO = 'U' or 'u', the leading n by n upper triangular *> part of the array A must contain the upper triangular part *> of the symmetric matrix and the strictly lower triangular *> part of A is not referenced, and when UPLO = 'L' or 'l', *> the leading n by n lower triangular part of the array A *> must contain the lower triangular part of the symmetric *> matrix and the strictly upper triangular part of A is not *> referenced. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), otherwise LDA must be at *> least max( 1, n ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension ( LDB, N ) *> Before entry, the leading m by n part of the array B must *> contain the matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then C need not be set on input. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension ( LDC, N ) *> Before entry, the leading m by n part of the array C must *> contain the matrix C, except when beta is zero, in which *> case C need not be set on entry. *> On exit, the array C is overwritten by the m by n updated *> matrix. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DSYMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER LDA,LDB,LDC,M,N CHARACTER SIDE,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,J,K,NROWA LOGICAL UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Set NROWA as the number of rows of A. * IF (LSAME(SIDE,'L')) THEN NROWA = M ELSE NROWA = N END IF UPPER = LSAME(UPLO,'U') * * Test the input parameters. * INFO = 0 IF ((.NOT.LSAME(SIDE,'L')) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF (M.LT.0) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 9 ELSE IF (LDC.LT.MAX(1,M)) THEN INFO = 12 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSYMM ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,M C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF RETURN END IF * * Start the operations. * IF (LSAME(SIDE,'L')) THEN * * Form C := alpha*A*B + beta*C. * IF (UPPER) THEN DO 70 J = 1,N DO 60 I = 1,M TEMP1 = ALPHA*B(I,J) TEMP2 = ZERO DO 50 K = 1,I - 1 C(K,J) = C(K,J) + TEMP1*A(K,I) TEMP2 = TEMP2 + B(K,J)*A(K,I) 50 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = TEMP1*A(I,I) + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + TEMP1*A(I,I) + + ALPHA*TEMP2 END IF 60 CONTINUE 70 CONTINUE ELSE DO 100 J = 1,N DO 90 I = M,1,-1 TEMP1 = ALPHA*B(I,J) TEMP2 = ZERO DO 80 K = I + 1,M C(K,J) = C(K,J) + TEMP1*A(K,I) TEMP2 = TEMP2 + B(K,J)*A(K,I) 80 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = TEMP1*A(I,I) + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + TEMP1*A(I,I) + + ALPHA*TEMP2 END IF 90 CONTINUE 100 CONTINUE END IF ELSE * * Form C := alpha*B*A + beta*C. * DO 170 J = 1,N TEMP1 = ALPHA*A(J,J) IF (BETA.EQ.ZERO) THEN DO 110 I = 1,M C(I,J) = TEMP1*B(I,J) 110 CONTINUE ELSE DO 120 I = 1,M C(I,J) = BETA*C(I,J) + TEMP1*B(I,J) 120 CONTINUE END IF DO 140 K = 1,J - 1 IF (UPPER) THEN TEMP1 = ALPHA*A(K,J) ELSE TEMP1 = ALPHA*A(J,K) END IF DO 130 I = 1,M C(I,J) = C(I,J) + TEMP1*B(I,K) 130 CONTINUE 140 CONTINUE DO 160 K = J + 1,N IF (UPPER) THEN TEMP1 = ALPHA*A(J,K) ELSE TEMP1 = ALPHA*A(K,J) END IF DO 150 I = 1,M C(I,J) = C(I,J) + TEMP1*B(I,K) 150 CONTINUE 160 CONTINUE 170 CONTINUE END IF * RETURN * * End of DSYMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/dsyr2k.f0000644000000000000000000000012614061636515015033 xustar0028 mtime=1623670093.0751042 30 atime=1623670093.074104201 28 ctime=1623670093.0751042 elk-7.2.42/src/BLAS/dsyr2k.f0000644002504400250440000003031614061636515017070 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYR2K * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE DSYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * DOUBLE PRECISION ALPHA,BETA * INTEGER K,LDA,LDB,LDC,N * CHARACTER TRANS,UPLO * .. * .. Array Arguments .. * DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYR2K performs one of the symmetric rank 2k operations *> *> C := alpha*A*B**T + alpha*B*A**T + beta*C, *> *> or *> *> C := alpha*A**T*B + alpha*B**T*A + beta*C, *> *> where alpha and beta are scalars, C is an n by n symmetric matrix *> and A and B are n by k matrices in the first case and k by n *> matrices in the second case. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array C is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of C *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of C *> is to be referenced. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' C := alpha*A*B**T + alpha*B*A**T + *> beta*C. *> *> TRANS = 'T' or 't' C := alpha*A**T*B + alpha*B**T*A + *> beta*C. *> *> TRANS = 'C' or 'c' C := alpha*A**T*B + alpha*B**T*A + *> beta*C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry with TRANS = 'N' or 'n', K specifies the number *> of columns of the matrices A and B, and on entry with *> TRANS = 'T' or 't' or 'C' or 'c', K specifies the number *> of rows of the matrices A and B. K must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION. *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension ( LDA, ka ), where ka is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array A must contain the matrix A, otherwise *> the leading k by n part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDA must be at least max( 1, n ), otherwise LDA must *> be at least max( 1, k ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension ( LDB, kb ), where kb is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array B must contain the matrix B, otherwise *> the leading k by n part of the array B must contain the *> matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDB must be at least max( 1, n ), otherwise LDB must *> be at least max( 1, k ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION. *> On entry, BETA specifies the scalar beta. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension ( LDC, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array C must contain the upper *> triangular part of the symmetric matrix and the strictly *> lower triangular part of C is not referenced. On exit, the *> upper triangular part of the array C is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array C must contain the lower *> triangular part of the symmetric matrix and the strictly *> upper triangular part of C is not referenced. On exit, the *> lower triangular part of the array C is overwritten by the *> lower triangular part of the updated matrix. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup double_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE DSYR2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION ALPHA,BETA INTEGER K,LDA,LDB,LDC,N CHARACTER TRANS,UPLO * .. * .. Array Arguments .. DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Local Scalars .. DOUBLE PRECISION TEMP1,TEMP2 INTEGER I,INFO,J,L,NROWA LOGICAL UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE,ZERO PARAMETER (ONE=1.0D+0,ZERO=0.0D+0) * .. * * Test the input parameters. * IF (LSAME(TRANS,'N')) THEN NROWA = N ELSE NROWA = K END IF UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 1 ELSE IF ((.NOT.LSAME(TRANS,'N')) .AND. + (.NOT.LSAME(TRANS,'T')) .AND. + (.NOT.LSAME(TRANS,'C'))) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (K.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDB.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDC.LT.MAX(1,N)) THEN INFO = 12 END IF IF (INFO.NE.0) THEN CALL XERBLA('DSYR2K',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (((ALPHA.EQ.ZERO).OR. + (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (UPPER) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,J C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,J C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF ELSE IF (BETA.EQ.ZERO) THEN DO 60 J = 1,N DO 50 I = J,N C(I,J) = ZERO 50 CONTINUE 60 CONTINUE ELSE DO 80 J = 1,N DO 70 I = J,N C(I,J) = BETA*C(I,J) 70 CONTINUE 80 CONTINUE END IF END IF RETURN END IF * * Start the operations. * IF (LSAME(TRANS,'N')) THEN * * Form C := alpha*A*B**T + alpha*B*A**T + C. * IF (UPPER) THEN DO 130 J = 1,N IF (BETA.EQ.ZERO) THEN DO 90 I = 1,J C(I,J) = ZERO 90 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 100 I = 1,J C(I,J) = BETA*C(I,J) 100 CONTINUE END IF DO 120 L = 1,K IF ((A(J,L).NE.ZERO) .OR. (B(J,L).NE.ZERO)) THEN TEMP1 = ALPHA*B(J,L) TEMP2 = ALPHA*A(J,L) DO 110 I = 1,J C(I,J) = C(I,J) + A(I,L)*TEMP1 + + B(I,L)*TEMP2 110 CONTINUE END IF 120 CONTINUE 130 CONTINUE ELSE DO 180 J = 1,N IF (BETA.EQ.ZERO) THEN DO 140 I = J,N C(I,J) = ZERO 140 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 150 I = J,N C(I,J) = BETA*C(I,J) 150 CONTINUE END IF DO 170 L = 1,K IF ((A(J,L).NE.ZERO) .OR. (B(J,L).NE.ZERO)) THEN TEMP1 = ALPHA*B(J,L) TEMP2 = ALPHA*A(J,L) DO 160 I = J,N C(I,J) = C(I,J) + A(I,L)*TEMP1 + + B(I,L)*TEMP2 160 CONTINUE END IF 170 CONTINUE 180 CONTINUE END IF ELSE * * Form C := alpha*A**T*B + alpha*B**T*A + C. * IF (UPPER) THEN DO 210 J = 1,N DO 200 I = 1,J TEMP1 = ZERO TEMP2 = ZERO DO 190 L = 1,K TEMP1 = TEMP1 + A(L,I)*B(L,J) TEMP2 = TEMP2 + B(L,I)*A(L,J) 190 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP1 + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + ALPHA*TEMP1 + + ALPHA*TEMP2 END IF 200 CONTINUE 210 CONTINUE ELSE DO 240 J = 1,N DO 230 I = J,N TEMP1 = ZERO TEMP2 = ZERO DO 220 L = 1,K TEMP1 = TEMP1 + A(L,I)*B(L,J) TEMP2 = TEMP2 + B(L,I)*A(L,J) 220 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = ALPHA*TEMP1 + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + ALPHA*TEMP1 + + ALPHA*TEMP2 END IF 230 CONTINUE 240 CONTINUE END IF END IF * RETURN * * End of DSYR2K. * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zdrot.f0000644000000000000000000000013214061636515014754 xustar0030 mtime=1623670093.076104199 30 atime=1623670093.076104199 30 ctime=1623670093.076104199 elk-7.2.42/src/BLAS/zdrot.f0000644002504400250440000000753214061636515017020 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZDROT * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZDROT( N, CX, INCX, CY, INCY, C, S ) * * .. Scalar Arguments .. * INTEGER INCX, INCY, N * DOUBLE PRECISION C, S * .. * .. Array Arguments .. * COMPLEX*16 CX( * ), CY( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> Applies a plane rotation, where the cos and sin (c and s) are real *> and the vectors cx and cy are complex. *> jack dongarra, linpack, 3/11/78. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the vectors cx and cy. *> N must be at least zero. *> \endverbatim *> *> \param[in,out] CX *> \verbatim *> CX is COMPLEX*16 array, dimension at least *> ( 1 + ( N - 1 )*abs( INCX ) ). *> Before entry, the incremented array CX must contain the n *> element vector cx. On exit, CX is overwritten by the updated *> vector cx. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> CX. INCX must not be zero. *> \endverbatim *> *> \param[in,out] CY *> \verbatim *> CY is COMPLEX*16 array, dimension at least *> ( 1 + ( N - 1 )*abs( INCY ) ). *> Before entry, the incremented array CY must contain the n *> element vector cy. On exit, CY is overwritten by the updated *> vector cy. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> CY. INCY must not be zero. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> On entry, C specifies the cosine, cos. *> \endverbatim *> *> \param[in] S *> \verbatim *> S is DOUBLE PRECISION *> On entry, S specifies the sine, sin. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level1 * * ===================================================================== SUBROUTINE ZDROT( N, CX, INCX, CY, INCY, C, S ) * * -- Reference BLAS level1 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX, INCY, N DOUBLE PRECISION C, S * .. * .. Array Arguments .. COMPLEX*16 CX( * ), CY( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, IX, IY COMPLEX*16 CTEMP * .. * .. Executable Statements .. * IF( N.LE.0 ) $ RETURN IF( INCX.EQ.1 .AND. INCY.EQ.1 ) THEN * * code for both increments equal to 1 * DO I = 1, N CTEMP = C*CX( I ) + S*CY( I ) CY( I ) = C*CY( I ) - S*CX( I ) CX( I ) = CTEMP END DO ELSE * * code for unequal increments or equal increments not equal * to 1 * IX = 1 IY = 1 IF( INCX.LT.0 ) $ IX = ( -N+1 )*INCX + 1 IF( INCY.LT.0 ) $ IY = ( -N+1 )*INCY + 1 DO I = 1, N CTEMP = C*CX( IX ) + S*CY( IY ) CY( IY ) = C*CY( IY ) - S*CX( IX ) CX( IX ) = CTEMP IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zdscal.f0000644000000000000000000000013214061636515015072 xustar0030 mtime=1623670093.078104197 30 atime=1623670093.078104197 30 ctime=1623670093.078104197 elk-7.2.42/src/BLAS/zdscal.f0000644002504400250440000000504414061636515017132 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZDSCAL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZDSCAL(N,DA,ZX,INCX) * * .. Scalar Arguments .. * DOUBLE PRECISION DA * INTEGER INCX,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZDSCAL scales a vector by a constant. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] DA *> \verbatim *> DA is DOUBLE PRECISION *> On entry, DA specifies the scalar alpha. *> \endverbatim *> *> \param[in,out] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE ZDSCAL(N,DA,ZX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. DOUBLE PRECISION DA INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,NINCX * .. * .. Intrinsic Functions .. INTRINSIC DCMPLX * .. IF (N.LE.0 .OR. INCX.LE.0) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * DO I = 1,N ZX(I) = DCMPLX(DA,0.0d0)*ZX(I) END DO ELSE * * code for increment not equal to 1 * NINCX = N*INCX DO I = 1,NINCX,INCX ZX(I) = DCMPLX(DA,0.0d0)*ZX(I) END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zswap.f0000644000000000000000000000013214061636515014756 xustar0030 mtime=1623670093.079104196 30 atime=1623670093.079104196 30 ctime=1623670093.079104196 elk-7.2.42/src/BLAS/zswap.f0000644002504400250440000000545014061636515017017 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZSWAP * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZSWAP(N,ZX,INCX,ZY,INCY) * * .. Scalar Arguments .. * INTEGER INCX,INCY,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*),ZY(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZSWAP interchanges two vectors. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in,out] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim *> *> \param[in,out] ZY *> \verbatim *> ZY is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> storage spacing between elements of ZY *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE ZSWAP(N,ZX,INCX,ZY,INCY) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,INCY,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*),ZY(*) * .. * * ===================================================================== * * .. Local Scalars .. COMPLEX*16 ZTEMP INTEGER I,IX,IY * .. IF (N.LE.0) RETURN IF (INCX.EQ.1 .AND. INCY.EQ.1) THEN * * code for both increments equal to 1 DO I = 1,N ZTEMP = ZX(I) ZX(I) = ZY(I) ZY(I) = ZTEMP END DO ELSE * * code for unequal increments or equal increments not equal * to 1 * IX = 1 IY = 1 IF (INCX.LT.0) IX = (-N+1)*INCX + 1 IF (INCY.LT.0) IY = (-N+1)*INCY + 1 DO I = 1,N ZTEMP = ZX(IX) ZX(IX) = ZY(IY) ZY(IY) = ZTEMP IX = IX + INCX IY = IY + INCY END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/izamax.f0000644000000000000000000000013214061636515015103 xustar0030 mtime=1623670093.081104194 30 atime=1623670093.081104194 30 ctime=1623670093.081104194 elk-7.2.42/src/BLAS/izamax.f0000644002504400250440000000536414061636515017150 0ustar00dewhurstdewhurst00000000000000*> \brief \b IZAMAX * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * INTEGER FUNCTION IZAMAX(N,ZX,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> IZAMAX finds the index of the first element having maximum |Re(.)| + |Im(.)| *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup aux_blas * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 1/15/85. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== INTEGER FUNCTION IZAMAX(N,ZX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*) * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION DMAX INTEGER I,IX * .. * .. External Functions .. DOUBLE PRECISION DCABS1 EXTERNAL DCABS1 * .. IZAMAX = 0 IF (N.LT.1 .OR. INCX.LE.0) RETURN IZAMAX = 1 IF (N.EQ.1) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * DMAX = DCABS1(ZX(1)) DO I = 2,N IF (DCABS1(ZX(I)).GT.DMAX) THEN IZAMAX = I DMAX = DCABS1(ZX(I)) END IF END DO ELSE * * code for increment not equal to 1 * IX = 1 DMAX = DCABS1(ZX(1)) IX = IX + INCX DO I = 2,N IF (DCABS1(ZX(IX)).GT.DMAX) THEN IZAMAX = I DMAX = DCABS1(ZX(IX)) END IF IX = IX + INCX END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zscal.f0000644000000000000000000000013214061636515014726 xustar0030 mtime=1623670093.082104193 30 atime=1623670093.082104193 30 ctime=1623670093.082104193 elk-7.2.42/src/BLAS/zscal.f0000644002504400250440000000466214061636515016773 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZSCAL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZSCAL(N,ZA,ZX,INCX) * * .. Scalar Arguments .. * COMPLEX*16 ZA * INTEGER INCX,N * .. * .. Array Arguments .. * COMPLEX*16 ZX(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZSCAL scales a vector by a constant. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> number of elements in input vector(s) *> \endverbatim *> *> \param[in] ZA *> \verbatim *> ZA is COMPLEX*16 *> On entry, ZA specifies the scalar alpha. *> \endverbatim *> *> \param[in,out] ZX *> \verbatim *> ZX is COMPLEX*16 array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> storage spacing between elements of ZX *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16_blas_level1 * *> \par Further Details: * ===================== *> *> \verbatim *> *> jack dongarra, 3/11/78. *> modified 3/93 to return if incx .le. 0. *> modified 12/3/93, array(1) declarations changed to array(*) *> \endverbatim *> * ===================================================================== SUBROUTINE ZSCAL(N,ZA,ZX,INCX) * * -- Reference BLAS level1 routine (version 3.8.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. COMPLEX*16 ZA INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX*16 ZX(*) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I,NINCX * .. IF (N.LE.0 .OR. INCX.LE.0) RETURN IF (INCX.EQ.1) THEN * * code for increment equal to 1 * DO I = 1,N ZX(I) = ZA*ZX(I) END DO ELSE * * code for increment not equal to 1 * NINCX = N*INCX DO I = 1,NINCX,INCX ZX(I) = ZA*ZX(I) END DO END IF RETURN END elk-7.2.42/src/BLAS/PaxHeaders.21776/zgeru.f0000644000000000000000000000013214061636515014746 xustar0030 mtime=1623670093.084104191 30 atime=1623670093.084104191 30 ctime=1623670093.084104191 elk-7.2.42/src/BLAS/zgeru.f0000644002504400250440000001302014061636515016777 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGERU * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZGERU(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGERU performs the rank 1 operation *> *> A := alpha*x*y**T + A, *> *> where alpha is a scalar, x is an m element vector, y is an n element *> vector and A is an m by n matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix A. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( m - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the m *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry, the leading m by n part of the array A must *> contain the matrix of coefficients. On exit, A is *> overwritten by the updated matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZGERU(M,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER INCX,INCY,LDA,M,N * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JY,KX * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * * Test the input parameters. * INFO = 0 IF (M.LT.0) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 ELSE IF (LDA.LT.MAX(1,M)) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZGERU ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (INCY.GT.0) THEN JY = 1 ELSE JY = 1 - (N-1)*INCY END IF IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*Y(JY) DO 10 I = 1,M A(I,J) = A(I,J) + X(I)*TEMP 10 CONTINUE END IF JY = JY + INCY 20 CONTINUE ELSE IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (M-1)*INCX END IF DO 40 J = 1,N IF (Y(JY).NE.ZERO) THEN TEMP = ALPHA*Y(JY) IX = KX DO 30 I = 1,M A(I,J) = A(I,J) + X(IX)*TEMP IX = IX + INCX 30 CONTINUE END IF JY = JY + INCY 40 CONTINUE END IF * RETURN * * End of ZGERU . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztrsm.f0000644000000000000000000000013214061636515014771 xustar0030 mtime=1623670093.085104191 30 atime=1623670093.085104191 30 ctime=1623670093.085104191 elk-7.2.42/src/BLAS/ztrsm.f0000644002504400250440000003574714061636515017046 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRSM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTRSM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER LDA,LDB,M,N * CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),B(LDB,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRSM solves one of the matrix equations *> *> op( A )*X = alpha*B, or X*op( A ) = alpha*B, *> *> where alpha is a scalar, X and B are m by n matrices, A is a unit, or *> non-unit, upper or lower triangular matrix and op( A ) is one of *> *> op( A ) = A or op( A ) = A**T or op( A ) = A**H. *> *> The matrix X is overwritten on B. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether op( A ) appears on the left *> or right of X as follows: *> *> SIDE = 'L' or 'l' op( A )*X = alpha*B. *> *> SIDE = 'R' or 'r' X*op( A ) = alpha*B. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix A is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n' op( A ) = A. *> *> TRANSA = 'T' or 't' op( A ) = A**T. *> *> TRANSA = 'C' or 'c' op( A ) = A**H. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit triangular *> as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of B. M must be at *> least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of B. N must be *> at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. When alpha is *> zero then A is not referenced and B need not be set before *> entry. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, k ), *> where k is m when SIDE = 'L' or 'l' *> and k is n when SIDE = 'R' or 'r'. *> Before entry with UPLO = 'U' or 'u', the leading k by k *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading k by k *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' *> then LDA must be at least max( 1, n ). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension ( LDB, N ) *> Before entry, the leading m by n part of the array B must *> contain the right-hand side matrix B, and on exit is *> overwritten by the solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTRSM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER LDA,LDB,M,N CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),B(LDB,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,J,K,NROWA LOGICAL LSIDE,NOCONJ,NOUNIT,UPPER * .. * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * * Test the input parameters. * LSIDE = LSAME(SIDE,'L') IF (LSIDE) THEN NROWA = M ELSE NROWA = N END IF NOCONJ = LSAME(TRANSA,'T') NOUNIT = LSAME(DIAG,'N') UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.LSIDE) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF ((.NOT.LSAME(TRANSA,'N')) .AND. + (.NOT.LSAME(TRANSA,'T')) .AND. + (.NOT.LSAME(TRANSA,'C'))) THEN INFO = 3 ELSE IF ((.NOT.LSAME(DIAG,'U')) .AND. (.NOT.LSAME(DIAG,'N'))) THEN INFO = 4 ELSE IF (M.LT.0) THEN INFO = 5 ELSE IF (N.LT.0) THEN INFO = 6 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTRSM ',INFO) RETURN END IF * * Quick return if possible. * IF (M.EQ.0 .OR. N.EQ.0) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M B(I,J) = ZERO 10 CONTINUE 20 CONTINUE RETURN END IF * * Start the operations. * IF (LSIDE) THEN IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*inv( A )*B. * IF (UPPER) THEN DO 60 J = 1,N IF (ALPHA.NE.ONE) THEN DO 30 I = 1,M B(I,J) = ALPHA*B(I,J) 30 CONTINUE END IF DO 50 K = M,1,-1 IF (B(K,J).NE.ZERO) THEN IF (NOUNIT) B(K,J) = B(K,J)/A(K,K) DO 40 I = 1,K - 1 B(I,J) = B(I,J) - B(K,J)*A(I,K) 40 CONTINUE END IF 50 CONTINUE 60 CONTINUE ELSE DO 100 J = 1,N IF (ALPHA.NE.ONE) THEN DO 70 I = 1,M B(I,J) = ALPHA*B(I,J) 70 CONTINUE END IF DO 90 K = 1,M IF (B(K,J).NE.ZERO) THEN IF (NOUNIT) B(K,J) = B(K,J)/A(K,K) DO 80 I = K + 1,M B(I,J) = B(I,J) - B(K,J)*A(I,K) 80 CONTINUE END IF 90 CONTINUE 100 CONTINUE END IF ELSE * * Form B := alpha*inv( A**T )*B * or B := alpha*inv( A**H )*B. * IF (UPPER) THEN DO 140 J = 1,N DO 130 I = 1,M TEMP = ALPHA*B(I,J) IF (NOCONJ) THEN DO 110 K = 1,I - 1 TEMP = TEMP - A(K,I)*B(K,J) 110 CONTINUE IF (NOUNIT) TEMP = TEMP/A(I,I) ELSE DO 120 K = 1,I - 1 TEMP = TEMP - DCONJG(A(K,I))*B(K,J) 120 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(I,I)) END IF B(I,J) = TEMP 130 CONTINUE 140 CONTINUE ELSE DO 180 J = 1,N DO 170 I = M,1,-1 TEMP = ALPHA*B(I,J) IF (NOCONJ) THEN DO 150 K = I + 1,M TEMP = TEMP - A(K,I)*B(K,J) 150 CONTINUE IF (NOUNIT) TEMP = TEMP/A(I,I) ELSE DO 160 K = I + 1,M TEMP = TEMP - DCONJG(A(K,I))*B(K,J) 160 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(I,I)) END IF B(I,J) = TEMP 170 CONTINUE 180 CONTINUE END IF END IF ELSE IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*B*inv( A ). * IF (UPPER) THEN DO 230 J = 1,N IF (ALPHA.NE.ONE) THEN DO 190 I = 1,M B(I,J) = ALPHA*B(I,J) 190 CONTINUE END IF DO 210 K = 1,J - 1 IF (A(K,J).NE.ZERO) THEN DO 200 I = 1,M B(I,J) = B(I,J) - A(K,J)*B(I,K) 200 CONTINUE END IF 210 CONTINUE IF (NOUNIT) THEN TEMP = ONE/A(J,J) DO 220 I = 1,M B(I,J) = TEMP*B(I,J) 220 CONTINUE END IF 230 CONTINUE ELSE DO 280 J = N,1,-1 IF (ALPHA.NE.ONE) THEN DO 240 I = 1,M B(I,J) = ALPHA*B(I,J) 240 CONTINUE END IF DO 260 K = J + 1,N IF (A(K,J).NE.ZERO) THEN DO 250 I = 1,M B(I,J) = B(I,J) - A(K,J)*B(I,K) 250 CONTINUE END IF 260 CONTINUE IF (NOUNIT) THEN TEMP = ONE/A(J,J) DO 270 I = 1,M B(I,J) = TEMP*B(I,J) 270 CONTINUE END IF 280 CONTINUE END IF ELSE * * Form B := alpha*B*inv( A**T ) * or B := alpha*B*inv( A**H ). * IF (UPPER) THEN DO 330 K = N,1,-1 IF (NOUNIT) THEN IF (NOCONJ) THEN TEMP = ONE/A(K,K) ELSE TEMP = ONE/DCONJG(A(K,K)) END IF DO 290 I = 1,M B(I,K) = TEMP*B(I,K) 290 CONTINUE END IF DO 310 J = 1,K - 1 IF (A(J,K).NE.ZERO) THEN IF (NOCONJ) THEN TEMP = A(J,K) ELSE TEMP = DCONJG(A(J,K)) END IF DO 300 I = 1,M B(I,J) = B(I,J) - TEMP*B(I,K) 300 CONTINUE END IF 310 CONTINUE IF (ALPHA.NE.ONE) THEN DO 320 I = 1,M B(I,K) = ALPHA*B(I,K) 320 CONTINUE END IF 330 CONTINUE ELSE DO 380 K = 1,N IF (NOUNIT) THEN IF (NOCONJ) THEN TEMP = ONE/A(K,K) ELSE TEMP = ONE/DCONJG(A(K,K)) END IF DO 340 I = 1,M B(I,K) = TEMP*B(I,K) 340 CONTINUE END IF DO 360 J = K + 1,N IF (A(J,K).NE.ZERO) THEN IF (NOCONJ) THEN TEMP = A(J,K) ELSE TEMP = DCONJG(A(J,K)) END IF DO 350 I = 1,M B(I,J) = B(I,J) - TEMP*B(I,K) 350 CONTINUE END IF 360 CONTINUE IF (ALPHA.NE.ONE) THEN DO 370 I = 1,M B(I,K) = ALPHA*B(I,K) 370 CONTINUE END IF 380 CONTINUE END IF END IF END IF * RETURN * * End of ZTRSM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztbsv.f0000644000000000000000000000013214061636515014762 xustar0030 mtime=1623670093.087104189 30 atime=1623670093.087104189 30 ctime=1623670093.087104189 elk-7.2.42/src/BLAS/ztbsv.f0000644002504400250440000003351614061636515017027 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTBSV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTBSV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,K,LDA,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTBSV solves one of the systems of equations *> *> A*x = b, or A**T*x = b, or A**H*x = b, *> *> where b and x are n element vectors and A is an n by n unit, or *> non-unit, upper or lower triangular band matrix, with ( k + 1 ) *> diagonals. *> *> No test for singularity or near-singularity is included in this *> routine. Such tests must be performed before calling this routine. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the equations to be solved as *> follows: *> *> TRANS = 'N' or 'n' A*x = b. *> *> TRANS = 'T' or 't' A**T*x = b. *> *> TRANS = 'C' or 'c' A**H*x = b. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry with UPLO = 'U' or 'u', K specifies the number of *> super-diagonals of the matrix A. *> On entry with UPLO = 'L' or 'l', K specifies the number of *> sub-diagonals of the matrix A. *> K must satisfy 0 .le. K. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading ( k + 1 ) *> by n part of the array A must contain the upper triangular *> band part of the matrix of coefficients, supplied column by *> column, with the leading diagonal of the matrix in row *> ( k + 1 ) of the array, the first super-diagonal starting at *> position 2 in row k, and so on. The top left k by k triangle *> of the array A is not referenced. *> The following program segment will transfer an upper *> triangular band matrix from conventional full matrix storage *> to band storage: *> *> DO 20, J = 1, N *> M = K + 1 - J *> DO 10, I = MAX( 1, J - K ), J *> A( M + I, J ) = matrix( I, J ) *> 10 CONTINUE *> 20 CONTINUE *> *> Before entry with UPLO = 'L' or 'l', the leading ( k + 1 ) *> by n part of the array A must contain the lower triangular *> band part of the matrix of coefficients, supplied column by *> column, with the leading diagonal of the matrix in row 1 of *> the array, the first sub-diagonal starting at position 1 in *> row 2, and so on. The bottom right k by k triangle of the *> array A is not referenced. *> The following program segment will transfer a lower *> triangular band matrix from conventional full matrix storage *> to band storage: *> *> DO 20, J = 1, N *> M = 1 - J *> DO 10, I = J, MIN( N, J + K ) *> A( M + I, J ) = matrix( I, J ) *> 10 CONTINUE *> 20 CONTINUE *> *> Note that when DIAG = 'U' or 'u' the elements of the array A *> corresponding to the diagonal elements of the matrix are not *> referenced, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> ( k + 1 ). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element right-hand side vector b. On exit, X is overwritten *> with the solution vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTBSV(UPLO,TRANS,DIAG,N,K,A,LDA,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,K,LDA,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,KPLUS1,KX,L LOGICAL NOCONJ,NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX,MIN * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (K.LT.0) THEN INFO = 5 ELSE IF (LDA.LT. (K+1)) THEN INFO = 7 ELSE IF (INCX.EQ.0) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTBSV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOCONJ = LSAME(TRANS,'T') NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of A are * accessed by sequentially with one pass through A. * IF (LSAME(TRANS,'N')) THEN * * Form x := inv( A )*x. * IF (LSAME(UPLO,'U')) THEN KPLUS1 = K + 1 IF (INCX.EQ.1) THEN DO 20 J = N,1,-1 IF (X(J).NE.ZERO) THEN L = KPLUS1 - J IF (NOUNIT) X(J) = X(J)/A(KPLUS1,J) TEMP = X(J) DO 10 I = J - 1,MAX(1,J-K),-1 X(I) = X(I) - TEMP*A(L+I,J) 10 CONTINUE END IF 20 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 40 J = N,1,-1 KX = KX - INCX IF (X(JX).NE.ZERO) THEN IX = KX L = KPLUS1 - J IF (NOUNIT) X(JX) = X(JX)/A(KPLUS1,J) TEMP = X(JX) DO 30 I = J - 1,MAX(1,J-K),-1 X(IX) = X(IX) - TEMP*A(L+I,J) IX = IX - INCX 30 CONTINUE END IF JX = JX - INCX 40 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 60 J = 1,N IF (X(J).NE.ZERO) THEN L = 1 - J IF (NOUNIT) X(J) = X(J)/A(1,J) TEMP = X(J) DO 50 I = J + 1,MIN(N,J+K) X(I) = X(I) - TEMP*A(L+I,J) 50 CONTINUE END IF 60 CONTINUE ELSE JX = KX DO 80 J = 1,N KX = KX + INCX IF (X(JX).NE.ZERO) THEN IX = KX L = 1 - J IF (NOUNIT) X(JX) = X(JX)/A(1,J) TEMP = X(JX) DO 70 I = J + 1,MIN(N,J+K) X(IX) = X(IX) - TEMP*A(L+I,J) IX = IX + INCX 70 CONTINUE END IF JX = JX + INCX 80 CONTINUE END IF END IF ELSE * * Form x := inv( A**T )*x or x := inv( A**H )*x. * IF (LSAME(UPLO,'U')) THEN KPLUS1 = K + 1 IF (INCX.EQ.1) THEN DO 110 J = 1,N TEMP = X(J) L = KPLUS1 - J IF (NOCONJ) THEN DO 90 I = MAX(1,J-K),J - 1 TEMP = TEMP - A(L+I,J)*X(I) 90 CONTINUE IF (NOUNIT) TEMP = TEMP/A(KPLUS1,J) ELSE DO 100 I = MAX(1,J-K),J - 1 TEMP = TEMP - DCONJG(A(L+I,J))*X(I) 100 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(KPLUS1,J)) END IF X(J) = TEMP 110 CONTINUE ELSE JX = KX DO 140 J = 1,N TEMP = X(JX) IX = KX L = KPLUS1 - J IF (NOCONJ) THEN DO 120 I = MAX(1,J-K),J - 1 TEMP = TEMP - A(L+I,J)*X(IX) IX = IX + INCX 120 CONTINUE IF (NOUNIT) TEMP = TEMP/A(KPLUS1,J) ELSE DO 130 I = MAX(1,J-K),J - 1 TEMP = TEMP - DCONJG(A(L+I,J))*X(IX) IX = IX + INCX 130 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(KPLUS1,J)) END IF X(JX) = TEMP JX = JX + INCX IF (J.GT.K) KX = KX + INCX 140 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 170 J = N,1,-1 TEMP = X(J) L = 1 - J IF (NOCONJ) THEN DO 150 I = MIN(N,J+K),J + 1,-1 TEMP = TEMP - A(L+I,J)*X(I) 150 CONTINUE IF (NOUNIT) TEMP = TEMP/A(1,J) ELSE DO 160 I = MIN(N,J+K),J + 1,-1 TEMP = TEMP - DCONJG(A(L+I,J))*X(I) 160 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(1,J)) END IF X(J) = TEMP 170 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 200 J = N,1,-1 TEMP = X(JX) IX = KX L = 1 - J IF (NOCONJ) THEN DO 180 I = MIN(N,J+K),J + 1,-1 TEMP = TEMP - A(L+I,J)*X(IX) IX = IX - INCX 180 CONTINUE IF (NOUNIT) TEMP = TEMP/A(1,J) ELSE DO 190 I = MIN(N,J+K),J + 1,-1 TEMP = TEMP - DCONJG(A(L+I,J))*X(IX) IX = IX - INCX 190 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(1,J)) END IF X(JX) = TEMP JX = JX - INCX IF ((N-J).GE.K) KX = KX - INCX 200 CONTINUE END IF END IF END IF * RETURN * * End of ZTBSV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztrmm.f0000644000000000000000000000013214061636515014763 xustar0030 mtime=1623670093.089104187 30 atime=1623670093.089104187 30 ctime=1623670093.089104187 elk-7.2.42/src/BLAS/ztrmm.f0000644002504400250440000003416614061636515017032 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER LDA,LDB,M,N * CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),B(LDB,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRMM performs one of the matrix-matrix operations *> *> B := alpha*op( A )*B, or B := alpha*B*op( A ) *> *> where alpha is a scalar, B is an m by n matrix, A is a unit, or *> non-unit, upper or lower triangular matrix and op( A ) is one of *> *> op( A ) = A or op( A ) = A**T or op( A ) = A**H. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether op( A ) multiplies B from *> the left or right as follows: *> *> SIDE = 'L' or 'l' B := alpha*op( A )*B. *> *> SIDE = 'R' or 'r' B := alpha*B*op( A ). *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix A is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANSA *> \verbatim *> TRANSA is CHARACTER*1 *> On entry, TRANSA specifies the form of op( A ) to be used in *> the matrix multiplication as follows: *> *> TRANSA = 'N' or 'n' op( A ) = A. *> *> TRANSA = 'T' or 't' op( A ) = A**T. *> *> TRANSA = 'C' or 'c' op( A ) = A**H. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit triangular *> as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of B. M must be at *> least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of B. N must be *> at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. When alpha is *> zero then A is not referenced and B need not be set before *> entry. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, k ), where k is m *> when SIDE = 'L' or 'l' and is n when SIDE = 'R' or 'r'. *> Before entry with UPLO = 'U' or 'u', the leading k by k *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading k by k *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), when SIDE = 'R' or 'r' *> then LDA must be at least max( 1, n ). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension ( LDB, N ). *> Before entry, the leading m by n part of the array B must *> contain the matrix B, and on exit is overwritten by the *> transformed matrix. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTRMM(SIDE,UPLO,TRANSA,DIAG,M,N,ALPHA,A,LDA,B,LDB) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER LDA,LDB,M,N CHARACTER DIAG,SIDE,TRANSA,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),B(LDB,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,J,K,NROWA LOGICAL LSIDE,NOCONJ,NOUNIT,UPPER * .. * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * * Test the input parameters. * LSIDE = LSAME(SIDE,'L') IF (LSIDE) THEN NROWA = M ELSE NROWA = N END IF NOCONJ = LSAME(TRANSA,'T') NOUNIT = LSAME(DIAG,'N') UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.LSIDE) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF ((.NOT.LSAME(TRANSA,'N')) .AND. + (.NOT.LSAME(TRANSA,'T')) .AND. + (.NOT.LSAME(TRANSA,'C'))) THEN INFO = 3 ELSE IF ((.NOT.LSAME(DIAG,'U')) .AND. (.NOT.LSAME(DIAG,'N'))) THEN INFO = 4 ELSE IF (M.LT.0) THEN INFO = 5 ELSE IF (N.LT.0) THEN INFO = 6 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 11 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTRMM ',INFO) RETURN END IF * * Quick return if possible. * IF (M.EQ.0 .OR. N.EQ.0) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M B(I,J) = ZERO 10 CONTINUE 20 CONTINUE RETURN END IF * * Start the operations. * IF (LSIDE) THEN IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*A*B. * IF (UPPER) THEN DO 50 J = 1,N DO 40 K = 1,M IF (B(K,J).NE.ZERO) THEN TEMP = ALPHA*B(K,J) DO 30 I = 1,K - 1 B(I,J) = B(I,J) + TEMP*A(I,K) 30 CONTINUE IF (NOUNIT) TEMP = TEMP*A(K,K) B(K,J) = TEMP END IF 40 CONTINUE 50 CONTINUE ELSE DO 80 J = 1,N DO 70 K = M,1,-1 IF (B(K,J).NE.ZERO) THEN TEMP = ALPHA*B(K,J) B(K,J) = TEMP IF (NOUNIT) B(K,J) = B(K,J)*A(K,K) DO 60 I = K + 1,M B(I,J) = B(I,J) + TEMP*A(I,K) 60 CONTINUE END IF 70 CONTINUE 80 CONTINUE END IF ELSE * * Form B := alpha*A**T*B or B := alpha*A**H*B. * IF (UPPER) THEN DO 120 J = 1,N DO 110 I = M,1,-1 TEMP = B(I,J) IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(I,I) DO 90 K = 1,I - 1 TEMP = TEMP + A(K,I)*B(K,J) 90 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(I,I)) DO 100 K = 1,I - 1 TEMP = TEMP + DCONJG(A(K,I))*B(K,J) 100 CONTINUE END IF B(I,J) = ALPHA*TEMP 110 CONTINUE 120 CONTINUE ELSE DO 160 J = 1,N DO 150 I = 1,M TEMP = B(I,J) IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(I,I) DO 130 K = I + 1,M TEMP = TEMP + A(K,I)*B(K,J) 130 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(I,I)) DO 140 K = I + 1,M TEMP = TEMP + DCONJG(A(K,I))*B(K,J) 140 CONTINUE END IF B(I,J) = ALPHA*TEMP 150 CONTINUE 160 CONTINUE END IF END IF ELSE IF (LSAME(TRANSA,'N')) THEN * * Form B := alpha*B*A. * IF (UPPER) THEN DO 200 J = N,1,-1 TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(J,J) DO 170 I = 1,M B(I,J) = TEMP*B(I,J) 170 CONTINUE DO 190 K = 1,J - 1 IF (A(K,J).NE.ZERO) THEN TEMP = ALPHA*A(K,J) DO 180 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 180 CONTINUE END IF 190 CONTINUE 200 CONTINUE ELSE DO 240 J = 1,N TEMP = ALPHA IF (NOUNIT) TEMP = TEMP*A(J,J) DO 210 I = 1,M B(I,J) = TEMP*B(I,J) 210 CONTINUE DO 230 K = J + 1,N IF (A(K,J).NE.ZERO) THEN TEMP = ALPHA*A(K,J) DO 220 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 220 CONTINUE END IF 230 CONTINUE 240 CONTINUE END IF ELSE * * Form B := alpha*B*A**T or B := alpha*B*A**H. * IF (UPPER) THEN DO 280 K = 1,N DO 260 J = 1,K - 1 IF (A(J,K).NE.ZERO) THEN IF (NOCONJ) THEN TEMP = ALPHA*A(J,K) ELSE TEMP = ALPHA*DCONJG(A(J,K)) END IF DO 250 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 250 CONTINUE END IF 260 CONTINUE TEMP = ALPHA IF (NOUNIT) THEN IF (NOCONJ) THEN TEMP = TEMP*A(K,K) ELSE TEMP = TEMP*DCONJG(A(K,K)) END IF END IF IF (TEMP.NE.ONE) THEN DO 270 I = 1,M B(I,K) = TEMP*B(I,K) 270 CONTINUE END IF 280 CONTINUE ELSE DO 320 K = N,1,-1 DO 300 J = K + 1,N IF (A(J,K).NE.ZERO) THEN IF (NOCONJ) THEN TEMP = ALPHA*A(J,K) ELSE TEMP = ALPHA*DCONJG(A(J,K)) END IF DO 290 I = 1,M B(I,J) = B(I,J) + TEMP*B(I,K) 290 CONTINUE END IF 300 CONTINUE TEMP = ALPHA IF (NOUNIT) THEN IF (NOCONJ) THEN TEMP = TEMP*A(K,K) ELSE TEMP = TEMP*DCONJG(A(K,K)) END IF END IF IF (TEMP.NE.ONE) THEN DO 310 I = 1,M B(I,K) = TEMP*B(I,K) 310 CONTINUE END IF 320 CONTINUE END IF END IF END IF * RETURN * * End of ZTRMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zher2.f0000644000000000000000000000013214061636515014644 xustar0030 mtime=1623670093.091104185 30 atime=1623670093.091104185 30 ctime=1623670093.091104185 elk-7.2.42/src/BLAS/zher2.f0000644002504400250440000002245114061636515016705 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHER2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHER2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER INCX,INCY,LDA,N * CHARACTER UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHER2 performs the hermitian rank 2 operation *> *> A := alpha*x*y**H + conjg( alpha )*y*x**H + A, *> *> where alpha is a scalar, x and y are n element vectors and A is an n *> by n hermitian matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array A is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of A *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of A *> is to be referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular part of the hermitian matrix and the strictly *> lower triangular part of A is not referenced. On exit, the *> upper triangular part of the array A is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular part of the hermitian matrix and the strictly *> upper triangular part of A is not referenced. On exit, the *> lower triangular part of the array A is overwritten by the *> lower triangular part of the updated matrix. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero, and on exit they *> are set to zero. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHER2(UPLO,N,ALPHA,X,INCX,Y,INCY,A,LDA) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER INCX,INCY,LDA,N CHARACTER UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHER2 ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Set up the start points in X and Y if the increments are not both * unity. * IF ((INCX.NE.1) .OR. (INCY.NE.1)) THEN IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF JX = KX JY = KY END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through the triangular part * of A. * IF (LSAME(UPLO,'U')) THEN * * Form A when A is stored in the upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 20 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(J)) TEMP2 = DCONJG(ALPHA*X(J)) DO 10 I = 1,J - 1 A(I,J) = A(I,J) + X(I)*TEMP1 + Y(I)*TEMP2 10 CONTINUE A(J,J) = DBLE(A(J,J)) + + DBLE(X(J)*TEMP1+Y(J)*TEMP2) ELSE A(J,J) = DBLE(A(J,J)) END IF 20 CONTINUE ELSE DO 40 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(JY)) TEMP2 = DCONJG(ALPHA*X(JX)) IX = KX IY = KY DO 30 I = 1,J - 1 A(I,J) = A(I,J) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 30 CONTINUE A(J,J) = DBLE(A(J,J)) + + DBLE(X(JX)*TEMP1+Y(JY)*TEMP2) ELSE A(J,J) = DBLE(A(J,J)) END IF JX = JX + INCX JY = JY + INCY 40 CONTINUE END IF ELSE * * Form A when A is stored in the lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(J)) TEMP2 = DCONJG(ALPHA*X(J)) A(J,J) = DBLE(A(J,J)) + + DBLE(X(J)*TEMP1+Y(J)*TEMP2) DO 50 I = J + 1,N A(I,J) = A(I,J) + X(I)*TEMP1 + Y(I)*TEMP2 50 CONTINUE ELSE A(J,J) = DBLE(A(J,J)) END IF 60 CONTINUE ELSE DO 80 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(JY)) TEMP2 = DCONJG(ALPHA*X(JX)) A(J,J) = DBLE(A(J,J)) + + DBLE(X(JX)*TEMP1+Y(JY)*TEMP2) IX = JX IY = JY DO 70 I = J + 1,N IX = IX + INCX IY = IY + INCY A(I,J) = A(I,J) + X(IX)*TEMP1 + Y(IY)*TEMP2 70 CONTINUE ELSE A(J,J) = DBLE(A(J,J)) END IF JX = JX + INCX JY = JY + INCY 80 CONTINUE END IF END IF * RETURN * * End of ZHER2 . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztrsv.f0000644000000000000000000000013214061636515015002 xustar0030 mtime=1623670093.093104183 30 atime=1623670093.093104183 30 ctime=1623670093.093104183 elk-7.2.42/src/BLAS/ztrsv.f0000644002504400250440000002661514061636515017051 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRSV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTRSV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,LDA,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRSV solves one of the systems of equations *> *> A*x = b, or A**T*x = b, or A**H*x = b, *> *> where b and x are n element vectors and A is an n by n unit, or *> non-unit, upper or lower triangular matrix. *> *> No test for singularity or near-singularity is included in this *> routine. Such tests must be performed before calling this routine. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the equations to be solved as *> follows: *> *> TRANS = 'N' or 'n' A*x = b. *> *> TRANS = 'T' or 't' A**T*x = b. *> *> TRANS = 'C' or 'c' A**H*x = b. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element right-hand side vector b. On exit, X is overwritten *> with the solution vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTRSV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,LDA,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,KX LOGICAL NOCONJ,NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTRSV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOCONJ = LSAME(TRANS,'T') NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (LSAME(TRANS,'N')) THEN * * Form x := inv( A )*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 20 J = N,1,-1 IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/A(J,J) TEMP = X(J) DO 10 I = J - 1,1,-1 X(I) = X(I) - TEMP*A(I,J) 10 CONTINUE END IF 20 CONTINUE ELSE JX = KX + (N-1)*INCX DO 40 J = N,1,-1 IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/A(J,J) TEMP = X(JX) IX = JX DO 30 I = J - 1,1,-1 IX = IX - INCX X(IX) = X(IX) - TEMP*A(I,J) 30 CONTINUE END IF JX = JX - INCX 40 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 60 J = 1,N IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/A(J,J) TEMP = X(J) DO 50 I = J + 1,N X(I) = X(I) - TEMP*A(I,J) 50 CONTINUE END IF 60 CONTINUE ELSE JX = KX DO 80 J = 1,N IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/A(J,J) TEMP = X(JX) IX = JX DO 70 I = J + 1,N IX = IX + INCX X(IX) = X(IX) - TEMP*A(I,J) 70 CONTINUE END IF JX = JX + INCX 80 CONTINUE END IF END IF ELSE * * Form x := inv( A**T )*x or x := inv( A**H )*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 110 J = 1,N TEMP = X(J) IF (NOCONJ) THEN DO 90 I = 1,J - 1 TEMP = TEMP - A(I,J)*X(I) 90 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) ELSE DO 100 I = 1,J - 1 TEMP = TEMP - DCONJG(A(I,J))*X(I) 100 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(J,J)) END IF X(J) = TEMP 110 CONTINUE ELSE JX = KX DO 140 J = 1,N IX = KX TEMP = X(JX) IF (NOCONJ) THEN DO 120 I = 1,J - 1 TEMP = TEMP - A(I,J)*X(IX) IX = IX + INCX 120 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) ELSE DO 130 I = 1,J - 1 TEMP = TEMP - DCONJG(A(I,J))*X(IX) IX = IX + INCX 130 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(J,J)) END IF X(JX) = TEMP JX = JX + INCX 140 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 170 J = N,1,-1 TEMP = X(J) IF (NOCONJ) THEN DO 150 I = N,J + 1,-1 TEMP = TEMP - A(I,J)*X(I) 150 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) ELSE DO 160 I = N,J + 1,-1 TEMP = TEMP - DCONJG(A(I,J))*X(I) 160 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(J,J)) END IF X(J) = TEMP 170 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 200 J = N,1,-1 IX = KX TEMP = X(JX) IF (NOCONJ) THEN DO 180 I = N,J + 1,-1 TEMP = TEMP - A(I,J)*X(IX) IX = IX - INCX 180 CONTINUE IF (NOUNIT) TEMP = TEMP/A(J,J) ELSE DO 190 I = N,J + 1,-1 TEMP = TEMP - DCONJG(A(I,J))*X(IX) IX = IX - INCX 190 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(A(J,J)) END IF X(JX) = TEMP JX = JX - INCX 200 CONTINUE END IF END IF END IF * RETURN * * End of ZTRSV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztrmv.f0000644000000000000000000000013214061636515014774 xustar0030 mtime=1623670093.095104181 30 atime=1623670093.094104182 30 ctime=1623670093.095104181 elk-7.2.42/src/BLAS/ztrmv.f0000644002504400250440000002646714061636515017050 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTRMV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,LDA,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRMV performs one of the matrix-vector operations *> *> x := A*x, or x := A**T*x, or x := A**H*x, *> *> where x is an n element vector and A is an n by n unit, or non-unit, *> upper or lower triangular matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' x := A*x. *> *> TRANS = 'T' or 't' x := A**T*x. *> *> TRANS = 'C' or 'c' x := A**H*x. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, N ). *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array A must contain the upper *> triangular matrix and the strictly lower triangular part of *> A is not referenced. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array A must contain the lower *> triangular matrix and the strictly upper triangular part of *> A is not referenced. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced either, but are assumed to be unity. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. LDA must be at least *> max( 1, n ). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. On exit, X is overwritten with the *> transformed vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTRMV(UPLO,TRANS,DIAG,N,A,LDA,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,LDA,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,KX LOGICAL NOCONJ,NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG,MAX * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,N)) THEN INFO = 6 ELSE IF (INCX.EQ.0) THEN INFO = 8 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTRMV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOCONJ = LSAME(TRANS,'T') NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of A are * accessed sequentially with one pass through A. * IF (LSAME(TRANS,'N')) THEN * * Form x := A*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (X(J).NE.ZERO) THEN TEMP = X(J) DO 10 I = 1,J - 1 X(I) = X(I) + TEMP*A(I,J) 10 CONTINUE IF (NOUNIT) X(J) = X(J)*A(J,J) END IF 20 CONTINUE ELSE JX = KX DO 40 J = 1,N IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 30 I = 1,J - 1 X(IX) = X(IX) + TEMP*A(I,J) IX = IX + INCX 30 CONTINUE IF (NOUNIT) X(JX) = X(JX)*A(J,J) END IF JX = JX + INCX 40 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 60 J = N,1,-1 IF (X(J).NE.ZERO) THEN TEMP = X(J) DO 50 I = N,J + 1,-1 X(I) = X(I) + TEMP*A(I,J) 50 CONTINUE IF (NOUNIT) X(J) = X(J)*A(J,J) END IF 60 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 80 J = N,1,-1 IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 70 I = N,J + 1,-1 X(IX) = X(IX) + TEMP*A(I,J) IX = IX - INCX 70 CONTINUE IF (NOUNIT) X(JX) = X(JX)*A(J,J) END IF JX = JX - INCX 80 CONTINUE END IF END IF ELSE * * Form x := A**T*x or x := A**H*x. * IF (LSAME(UPLO,'U')) THEN IF (INCX.EQ.1) THEN DO 110 J = N,1,-1 TEMP = X(J) IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(J,J) DO 90 I = J - 1,1,-1 TEMP = TEMP + A(I,J)*X(I) 90 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(J,J)) DO 100 I = J - 1,1,-1 TEMP = TEMP + DCONJG(A(I,J))*X(I) 100 CONTINUE END IF X(J) = TEMP 110 CONTINUE ELSE JX = KX + (N-1)*INCX DO 140 J = N,1,-1 TEMP = X(JX) IX = JX IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(J,J) DO 120 I = J - 1,1,-1 IX = IX - INCX TEMP = TEMP + A(I,J)*X(IX) 120 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(J,J)) DO 130 I = J - 1,1,-1 IX = IX - INCX TEMP = TEMP + DCONJG(A(I,J))*X(IX) 130 CONTINUE END IF X(JX) = TEMP JX = JX - INCX 140 CONTINUE END IF ELSE IF (INCX.EQ.1) THEN DO 170 J = 1,N TEMP = X(J) IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(J,J) DO 150 I = J + 1,N TEMP = TEMP + A(I,J)*X(I) 150 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(J,J)) DO 160 I = J + 1,N TEMP = TEMP + DCONJG(A(I,J))*X(I) 160 CONTINUE END IF X(J) = TEMP 170 CONTINUE ELSE JX = KX DO 200 J = 1,N TEMP = X(JX) IX = JX IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*A(J,J) DO 180 I = J + 1,N IX = IX + INCX TEMP = TEMP + A(I,J)*X(IX) 180 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(A(J,J)) DO 190 I = J + 1,N IX = IX + INCX TEMP = TEMP + DCONJG(A(I,J))*X(IX) 190 CONTINUE END IF X(JX) = TEMP JX = JX + INCX 200 CONTINUE END IF END IF END IF * RETURN * * End of ZTRMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zhemm.f0000644000000000000000000000013114061636515014731 xustar0030 mtime=1623670093.097104179 29 atime=1623670093.09610418 30 ctime=1623670093.097104179 elk-7.2.42/src/BLAS/zhemm.f0000644002504400250440000002615314061636515016776 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEMM * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHEMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA,BETA * INTEGER LDA,LDB,LDC,M,N * CHARACTER SIDE,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEMM performs one of the matrix-matrix operations *> *> C := alpha*A*B + beta*C, *> *> or *> *> C := alpha*B*A + beta*C, *> *> where alpha and beta are scalars, A is an hermitian matrix and B and *> C are m by n matrices. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether the hermitian matrix A *> appears on the left or right in the operation as follows: *> *> SIDE = 'L' or 'l' C := alpha*A*B + beta*C, *> *> SIDE = 'R' or 'r' C := alpha*B*A + beta*C, *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the hermitian matrix A is to be *> referenced as follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of the *> hermitian matrix is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of the *> hermitian matrix is to be referenced. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of the matrix C. *> M must be at least zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of the matrix C. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is *> m when SIDE = 'L' or 'l' and is n otherwise. *> Before entry with SIDE = 'L' or 'l', the m by m part of *> the array A must contain the hermitian matrix, such that *> when UPLO = 'U' or 'u', the leading m by m upper triangular *> part of the array A must contain the upper triangular part *> of the hermitian matrix and the strictly lower triangular *> part of A is not referenced, and when UPLO = 'L' or 'l', *> the leading m by m lower triangular part of the array A *> must contain the lower triangular part of the hermitian *> matrix and the strictly upper triangular part of A is not *> referenced. *> Before entry with SIDE = 'R' or 'r', the n by n part of *> the array A must contain the hermitian matrix, such that *> when UPLO = 'U' or 'u', the leading n by n upper triangular *> part of the array A must contain the upper triangular part *> of the hermitian matrix and the strictly lower triangular *> part of A is not referenced, and when UPLO = 'L' or 'l', *> the leading n by n lower triangular part of the array A *> must contain the lower triangular part of the hermitian *> matrix and the strictly upper triangular part of A is not *> referenced. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When SIDE = 'L' or 'l' then *> LDA must be at least max( 1, m ), otherwise LDA must be at *> least max( 1, n ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is COMPLEX*16 array, dimension ( LDB, N ) *> Before entry, the leading m by n part of the array B must *> contain the matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. LDB must be at least *> max( 1, m ). *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then C need not be set on input. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension ( LDC, N ) *> Before entry, the leading m by n part of the array C must *> contain the matrix C, except when beta is zero, in which *> case C need not be set on entry. *> On exit, the array C is overwritten by the m by n updated *> matrix. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, m ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHEMM(SIDE,UPLO,M,N,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA,BETA INTEGER LDA,LDB,LDC,M,N CHARACTER SIDE,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,J,K,NROWA LOGICAL UPPER * .. * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * * Set NROWA as the number of rows of A. * IF (LSAME(SIDE,'L')) THEN NROWA = M ELSE NROWA = N END IF UPPER = LSAME(UPLO,'U') * * Test the input parameters. * INFO = 0 IF ((.NOT.LSAME(SIDE,'L')) .AND. (.NOT.LSAME(SIDE,'R'))) THEN INFO = 1 ELSE IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 2 ELSE IF (M.LT.0) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDB.LT.MAX(1,M)) THEN INFO = 9 ELSE IF (LDC.LT.MAX(1,M)) THEN INFO = 12 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHEMM ',INFO) RETURN END IF * * Quick return if possible. * IF ((M.EQ.0) .OR. (N.EQ.0) .OR. + ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (BETA.EQ.ZERO) THEN DO 20 J = 1,N DO 10 I = 1,M C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,M C(I,J) = BETA*C(I,J) 30 CONTINUE 40 CONTINUE END IF RETURN END IF * * Start the operations. * IF (LSAME(SIDE,'L')) THEN * * Form C := alpha*A*B + beta*C. * IF (UPPER) THEN DO 70 J = 1,N DO 60 I = 1,M TEMP1 = ALPHA*B(I,J) TEMP2 = ZERO DO 50 K = 1,I - 1 C(K,J) = C(K,J) + TEMP1*A(K,I) TEMP2 = TEMP2 + B(K,J)*DCONJG(A(K,I)) 50 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = TEMP1*DBLE(A(I,I)) + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + TEMP1*DBLE(A(I,I)) + + ALPHA*TEMP2 END IF 60 CONTINUE 70 CONTINUE ELSE DO 100 J = 1,N DO 90 I = M,1,-1 TEMP1 = ALPHA*B(I,J) TEMP2 = ZERO DO 80 K = I + 1,M C(K,J) = C(K,J) + TEMP1*A(K,I) TEMP2 = TEMP2 + B(K,J)*DCONJG(A(K,I)) 80 CONTINUE IF (BETA.EQ.ZERO) THEN C(I,J) = TEMP1*DBLE(A(I,I)) + ALPHA*TEMP2 ELSE C(I,J) = BETA*C(I,J) + TEMP1*DBLE(A(I,I)) + + ALPHA*TEMP2 END IF 90 CONTINUE 100 CONTINUE END IF ELSE * * Form C := alpha*B*A + beta*C. * DO 170 J = 1,N TEMP1 = ALPHA*DBLE(A(J,J)) IF (BETA.EQ.ZERO) THEN DO 110 I = 1,M C(I,J) = TEMP1*B(I,J) 110 CONTINUE ELSE DO 120 I = 1,M C(I,J) = BETA*C(I,J) + TEMP1*B(I,J) 120 CONTINUE END IF DO 140 K = 1,J - 1 IF (UPPER) THEN TEMP1 = ALPHA*A(K,J) ELSE TEMP1 = ALPHA*DCONJG(A(J,K)) END IF DO 130 I = 1,M C(I,J) = C(I,J) + TEMP1*B(I,K) 130 CONTINUE 140 CONTINUE DO 160 K = J + 1,N IF (UPPER) THEN TEMP1 = ALPHA*DCONJG(A(J,K)) ELSE TEMP1 = ALPHA*A(K,J) END IF DO 150 I = 1,M C(I,J) = C(I,J) + TEMP1*B(I,K) 150 CONTINUE 160 CONTINUE 170 CONTINUE END IF * RETURN * * End of ZHEMM . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zher2k.f0000644000000000000000000000013214061636515015017 xustar0030 mtime=1623670093.098104178 30 atime=1623670093.098104178 30 ctime=1623670093.098104178 elk-7.2.42/src/BLAS/zher2k.f0000644002504400250440000003453014061636515017061 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHER2K * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * DOUBLE PRECISION BETA * INTEGER K,LDA,LDB,LDC,N * CHARACTER TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHER2K performs one of the hermitian rank 2k operations *> *> C := alpha*A*B**H + conjg( alpha )*B*A**H + beta*C, *> *> or *> *> C := alpha*A**H*B + conjg( alpha )*B**H*A + beta*C, *> *> where alpha and beta are scalars with beta real, C is an n by n *> hermitian matrix and A and B are n by k matrices in the first case *> and k by n matrices in the second case. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the array C is to be referenced as *> follows: *> *> UPLO = 'U' or 'u' Only the upper triangular part of C *> is to be referenced. *> *> UPLO = 'L' or 'l' Only the lower triangular part of C *> is to be referenced. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' C := alpha*A*B**H + *> conjg( alpha )*B*A**H + *> beta*C. *> *> TRANS = 'C' or 'c' C := alpha*A**H*B + *> conjg( alpha )*B**H*A + *> beta*C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix C. N must be *> at least zero. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> On entry with TRANS = 'N' or 'n', K specifies the number *> of columns of the matrices A and B, and on entry with *> TRANS = 'C' or 'c', K specifies the number of rows of the *> matrices A and B. K must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 . *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array A must contain the matrix A, otherwise *> the leading k by n part of the array A must contain the *> matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> On entry, LDA specifies the first dimension of A as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDA must be at least max( 1, n ), otherwise LDA must *> be at least max( 1, k ). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is COMPLEX*16 array, dimension ( LDB, kb ), where kb is *> k when TRANS = 'N' or 'n', and is n otherwise. *> Before entry with TRANS = 'N' or 'n', the leading n by k *> part of the array B must contain the matrix B, otherwise *> the leading k by n part of the array B must contain the *> matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> On entry, LDB specifies the first dimension of B as declared *> in the calling (sub) program. When TRANS = 'N' or 'n' *> then LDB must be at least max( 1, n ), otherwise LDB must *> be at least max( 1, k ). *> Unchanged on exit. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION . *> On entry, BETA specifies the scalar beta. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension ( LDC, N ) *> Before entry with UPLO = 'U' or 'u', the leading n by n *> upper triangular part of the array C must contain the upper *> triangular part of the hermitian matrix and the strictly *> lower triangular part of C is not referenced. On exit, the *> upper triangular part of the array C is overwritten by the *> upper triangular part of the updated matrix. *> Before entry with UPLO = 'L' or 'l', the leading n by n *> lower triangular part of the array C must contain the lower *> triangular part of the hermitian matrix and the strictly *> upper triangular part of C is not referenced. On exit, the *> lower triangular part of the array C is overwritten by the *> lower triangular part of the updated matrix. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero, and on exit they *> are set to zero. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> On entry, LDC specifies the first dimension of C as declared *> in the calling (sub) program. LDC must be at least *> max( 1, n ). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level3 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 3 Blas routine. *> *> -- Written on 8-February-1989. *> Jack Dongarra, Argonne National Laboratory. *> Iain Duff, AERE Harwell. *> Jeremy Du Croz, Numerical Algorithms Group Ltd. *> Sven Hammarling, Numerical Algorithms Group Ltd. *> *> -- Modified 8-Nov-93 to set C(J,J) to DBLE( C(J,J) ) when BETA = 1. *> Ed Anderson, Cray Research Inc. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) * * -- Reference BLAS level3 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA DOUBLE PRECISION BETA INTEGER K,LDA,LDB,LDC,N CHARACTER TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) * .. * * ===================================================================== * * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG,MAX * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,J,L,NROWA LOGICAL UPPER * .. * .. Parameters .. DOUBLE PRECISION ONE PARAMETER (ONE=1.0D+0) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * * Test the input parameters. * IF (LSAME(TRANS,'N')) THEN NROWA = N ELSE NROWA = K END IF UPPER = LSAME(UPLO,'U') * INFO = 0 IF ((.NOT.UPPER) .AND. (.NOT.LSAME(UPLO,'L'))) THEN INFO = 1 ELSE IF ((.NOT.LSAME(TRANS,'N')) .AND. + (.NOT.LSAME(TRANS,'C'))) THEN INFO = 2 ELSE IF (N.LT.0) THEN INFO = 3 ELSE IF (K.LT.0) THEN INFO = 4 ELSE IF (LDA.LT.MAX(1,NROWA)) THEN INFO = 7 ELSE IF (LDB.LT.MAX(1,NROWA)) THEN INFO = 9 ELSE IF (LDC.LT.MAX(1,N)) THEN INFO = 12 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHER2K',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (((ALPHA.EQ.ZERO).OR. + (K.EQ.0)).AND. (BETA.EQ.ONE))) RETURN * * And when alpha.eq.zero. * IF (ALPHA.EQ.ZERO) THEN IF (UPPER) THEN IF (BETA.EQ.DBLE(ZERO)) THEN DO 20 J = 1,N DO 10 I = 1,J C(I,J) = ZERO 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1,N DO 30 I = 1,J - 1 C(I,J) = BETA*C(I,J) 30 CONTINUE C(J,J) = BETA*DBLE(C(J,J)) 40 CONTINUE END IF ELSE IF (BETA.EQ.DBLE(ZERO)) THEN DO 60 J = 1,N DO 50 I = J,N C(I,J) = ZERO 50 CONTINUE 60 CONTINUE ELSE DO 80 J = 1,N C(J,J) = BETA*DBLE(C(J,J)) DO 70 I = J + 1,N C(I,J) = BETA*C(I,J) 70 CONTINUE 80 CONTINUE END IF END IF RETURN END IF * * Start the operations. * IF (LSAME(TRANS,'N')) THEN * * Form C := alpha*A*B**H + conjg( alpha )*B*A**H + * C. * IF (UPPER) THEN DO 130 J = 1,N IF (BETA.EQ.DBLE(ZERO)) THEN DO 90 I = 1,J C(I,J) = ZERO 90 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 100 I = 1,J - 1 C(I,J) = BETA*C(I,J) 100 CONTINUE C(J,J) = BETA*DBLE(C(J,J)) ELSE C(J,J) = DBLE(C(J,J)) END IF DO 120 L = 1,K IF ((A(J,L).NE.ZERO) .OR. (B(J,L).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(B(J,L)) TEMP2 = DCONJG(ALPHA*A(J,L)) DO 110 I = 1,J - 1 C(I,J) = C(I,J) + A(I,L)*TEMP1 + + B(I,L)*TEMP2 110 CONTINUE C(J,J) = DBLE(C(J,J)) + + DBLE(A(J,L)*TEMP1+B(J,L)*TEMP2) END IF 120 CONTINUE 130 CONTINUE ELSE DO 180 J = 1,N IF (BETA.EQ.DBLE(ZERO)) THEN DO 140 I = J,N C(I,J) = ZERO 140 CONTINUE ELSE IF (BETA.NE.ONE) THEN DO 150 I = J + 1,N C(I,J) = BETA*C(I,J) 150 CONTINUE C(J,J) = BETA*DBLE(C(J,J)) ELSE C(J,J) = DBLE(C(J,J)) END IF DO 170 L = 1,K IF ((A(J,L).NE.ZERO) .OR. (B(J,L).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(B(J,L)) TEMP2 = DCONJG(ALPHA*A(J,L)) DO 160 I = J + 1,N C(I,J) = C(I,J) + A(I,L)*TEMP1 + + B(I,L)*TEMP2 160 CONTINUE C(J,J) = DBLE(C(J,J)) + + DBLE(A(J,L)*TEMP1+B(J,L)*TEMP2) END IF 170 CONTINUE 180 CONTINUE END IF ELSE * * Form C := alpha*A**H*B + conjg( alpha )*B**H*A + * C. * IF (UPPER) THEN DO 210 J = 1,N DO 200 I = 1,J TEMP1 = ZERO TEMP2 = ZERO DO 190 L = 1,K TEMP1 = TEMP1 + DCONJG(A(L,I))*B(L,J) TEMP2 = TEMP2 + DCONJG(B(L,I))*A(L,J) 190 CONTINUE IF (I.EQ.J) THEN IF (BETA.EQ.DBLE(ZERO)) THEN C(J,J) = DBLE(ALPHA*TEMP1+ + DCONJG(ALPHA)*TEMP2) ELSE C(J,J) = BETA*DBLE(C(J,J)) + + DBLE(ALPHA*TEMP1+ + DCONJG(ALPHA)*TEMP2) END IF ELSE IF (BETA.EQ.DBLE(ZERO)) THEN C(I,J) = ALPHA*TEMP1 + DCONJG(ALPHA)*TEMP2 ELSE C(I,J) = BETA*C(I,J) + ALPHA*TEMP1 + + DCONJG(ALPHA)*TEMP2 END IF END IF 200 CONTINUE 210 CONTINUE ELSE DO 240 J = 1,N DO 230 I = J,N TEMP1 = ZERO TEMP2 = ZERO DO 220 L = 1,K TEMP1 = TEMP1 + DCONJG(A(L,I))*B(L,J) TEMP2 = TEMP2 + DCONJG(B(L,I))*A(L,J) 220 CONTINUE IF (I.EQ.J) THEN IF (BETA.EQ.DBLE(ZERO)) THEN C(J,J) = DBLE(ALPHA*TEMP1+ + DCONJG(ALPHA)*TEMP2) ELSE C(J,J) = BETA*DBLE(C(J,J)) + + DBLE(ALPHA*TEMP1+ + DCONJG(ALPHA)*TEMP2) END IF ELSE IF (BETA.EQ.DBLE(ZERO)) THEN C(I,J) = ALPHA*TEMP1 + DCONJG(ALPHA)*TEMP2 ELSE C(I,J) = BETA*C(I,J) + ALPHA*TEMP1 + + DCONJG(ALPHA)*TEMP2 END IF END IF 230 CONTINUE 240 CONTINUE END IF END IF * RETURN * * End of ZHER2K. * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztpsv.f0000644000000000000000000000013214061636515015000 xustar0030 mtime=1623670093.100104177 30 atime=1623670093.100104177 30 ctime=1623670093.100104177 elk-7.2.42/src/BLAS/ztpsv.f0000644002504400250440000003011714061636515017037 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTPSV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTPSV(UPLO,TRANS,DIAG,N,AP,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 AP(*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTPSV solves one of the systems of equations *> *> A*x = b, or A**T*x = b, or A**H*x = b, *> *> where b and x are n element vectors and A is an n by n unit, or *> non-unit, upper or lower triangular matrix, supplied in packed form. *> *> No test for singularity or near-singularity is included in this *> routine. Such tests must be performed before calling this routine. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the equations to be solved as *> follows: *> *> TRANS = 'N' or 'n' A*x = b. *> *> TRANS = 'T' or 't' A**T*x = b. *> *> TRANS = 'C' or 'c' A**H*x = b. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular matrix packed sequentially, *> column by column, so that AP( 1 ) contains a( 1, 1 ), *> AP( 2 ) and AP( 3 ) contain a( 1, 2 ) and a( 2, 2 ) *> respectively, and so on. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular matrix packed sequentially, *> column by column, so that AP( 1 ) contains a( 1, 1 ), *> AP( 2 ) and AP( 3 ) contain a( 2, 1 ) and a( 3, 1 ) *> respectively, and so on. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced, but are assumed to be unity. *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element right-hand side vector b. On exit, X is overwritten *> with the solution vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTPSV(UPLO,TRANS,DIAG,N,AP,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 AP(*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,K,KK,KX LOGICAL NOCONJ,NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (INCX.EQ.0) THEN INFO = 7 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTPSV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOCONJ = LSAME(TRANS,'T') NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of AP are * accessed sequentially with one pass through AP. * IF (LSAME(TRANS,'N')) THEN * * Form x := inv( A )*x. * IF (LSAME(UPLO,'U')) THEN KK = (N* (N+1))/2 IF (INCX.EQ.1) THEN DO 20 J = N,1,-1 IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/AP(KK) TEMP = X(J) K = KK - 1 DO 10 I = J - 1,1,-1 X(I) = X(I) - TEMP*AP(K) K = K - 1 10 CONTINUE END IF KK = KK - J 20 CONTINUE ELSE JX = KX + (N-1)*INCX DO 40 J = N,1,-1 IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/AP(KK) TEMP = X(JX) IX = JX DO 30 K = KK - 1,KK - J + 1,-1 IX = IX - INCX X(IX) = X(IX) - TEMP*AP(K) 30 CONTINUE END IF JX = JX - INCX KK = KK - J 40 CONTINUE END IF ELSE KK = 1 IF (INCX.EQ.1) THEN DO 60 J = 1,N IF (X(J).NE.ZERO) THEN IF (NOUNIT) X(J) = X(J)/AP(KK) TEMP = X(J) K = KK + 1 DO 50 I = J + 1,N X(I) = X(I) - TEMP*AP(K) K = K + 1 50 CONTINUE END IF KK = KK + (N-J+1) 60 CONTINUE ELSE JX = KX DO 80 J = 1,N IF (X(JX).NE.ZERO) THEN IF (NOUNIT) X(JX) = X(JX)/AP(KK) TEMP = X(JX) IX = JX DO 70 K = KK + 1,KK + N - J IX = IX + INCX X(IX) = X(IX) - TEMP*AP(K) 70 CONTINUE END IF JX = JX + INCX KK = KK + (N-J+1) 80 CONTINUE END IF END IF ELSE * * Form x := inv( A**T )*x or x := inv( A**H )*x. * IF (LSAME(UPLO,'U')) THEN KK = 1 IF (INCX.EQ.1) THEN DO 110 J = 1,N TEMP = X(J) K = KK IF (NOCONJ) THEN DO 90 I = 1,J - 1 TEMP = TEMP - AP(K)*X(I) K = K + 1 90 CONTINUE IF (NOUNIT) TEMP = TEMP/AP(KK+J-1) ELSE DO 100 I = 1,J - 1 TEMP = TEMP - DCONJG(AP(K))*X(I) K = K + 1 100 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(AP(KK+J-1)) END IF X(J) = TEMP KK = KK + J 110 CONTINUE ELSE JX = KX DO 140 J = 1,N TEMP = X(JX) IX = KX IF (NOCONJ) THEN DO 120 K = KK,KK + J - 2 TEMP = TEMP - AP(K)*X(IX) IX = IX + INCX 120 CONTINUE IF (NOUNIT) TEMP = TEMP/AP(KK+J-1) ELSE DO 130 K = KK,KK + J - 2 TEMP = TEMP - DCONJG(AP(K))*X(IX) IX = IX + INCX 130 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(AP(KK+J-1)) END IF X(JX) = TEMP JX = JX + INCX KK = KK + J 140 CONTINUE END IF ELSE KK = (N* (N+1))/2 IF (INCX.EQ.1) THEN DO 170 J = N,1,-1 TEMP = X(J) K = KK IF (NOCONJ) THEN DO 150 I = N,J + 1,-1 TEMP = TEMP - AP(K)*X(I) K = K - 1 150 CONTINUE IF (NOUNIT) TEMP = TEMP/AP(KK-N+J) ELSE DO 160 I = N,J + 1,-1 TEMP = TEMP - DCONJG(AP(K))*X(I) K = K - 1 160 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(AP(KK-N+J)) END IF X(J) = TEMP KK = KK - (N-J+1) 170 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 200 J = N,1,-1 TEMP = X(JX) IX = KX IF (NOCONJ) THEN DO 180 K = KK,KK - (N- (J+1)),-1 TEMP = TEMP - AP(K)*X(IX) IX = IX - INCX 180 CONTINUE IF (NOUNIT) TEMP = TEMP/AP(KK-N+J) ELSE DO 190 K = KK,KK - (N- (J+1)),-1 TEMP = TEMP - DCONJG(AP(K))*X(IX) IX = IX - INCX 190 CONTINUE IF (NOUNIT) TEMP = TEMP/DCONJG(AP(KK-N+J)) END IF X(JX) = TEMP JX = JX - INCX KK = KK - (N-J+1) 200 CONTINUE END IF END IF END IF * RETURN * * End of ZTPSV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zhpmv.f0000644000000000000000000000013214061636515014756 xustar0030 mtime=1623670093.102104175 30 atime=1623670093.102104175 30 ctime=1623670093.102104175 elk-7.2.42/src/BLAS/zhpmv.f0000644002504400250440000002275214061636515017023 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA,BETA * INTEGER INCX,INCY,N * CHARACTER UPLO * .. * .. Array Arguments .. * COMPLEX*16 AP(*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPMV performs the matrix-vector operation *> *> y := alpha*A*x + beta*y, *> *> where alpha and beta are scalars, x and y are n element vectors and *> A is an n by n hermitian matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the matrix A is supplied in the packed *> array AP as follows: *> *> UPLO = 'U' or 'u' The upper triangular part of A is *> supplied in AP. *> *> UPLO = 'L' or 'l' The lower triangular part of A is *> supplied in AP. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) *> and a( 2, 2 ) respectively, and so on. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) *> and a( 3, 1 ) respectively, and so on. *> Note that the imaginary parts of the diagonal elements need *> not be set and are assumed to be zero. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> On entry, BETA specifies the scalar beta. When BETA is *> supplied as zero then Y need not be set on input. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. On exit, Y is overwritten by the updated *> vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHPMV(UPLO,N,ALPHA,AP,X,INCX,BETA,Y,INCY) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA,BETA INTEGER INCX,INCY,N CHARACTER UPLO * .. * .. Array Arguments .. COMPLEX*16 AP(*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER (ONE= (1.0D+0,0.0D+0)) COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,K,KK,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 6 ELSE IF (INCY.EQ.0) THEN INFO = 9 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHPMV ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN * * Set up the start points in X and Y. * IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF * * Start the operations. In this version the elements of the array AP * are accessed sequentially with one pass through AP. * * First form y := beta*y. * IF (BETA.NE.ONE) THEN IF (INCY.EQ.1) THEN IF (BETA.EQ.ZERO) THEN DO 10 I = 1,N Y(I) = ZERO 10 CONTINUE ELSE DO 20 I = 1,N Y(I) = BETA*Y(I) 20 CONTINUE END IF ELSE IY = KY IF (BETA.EQ.ZERO) THEN DO 30 I = 1,N Y(IY) = ZERO IY = IY + INCY 30 CONTINUE ELSE DO 40 I = 1,N Y(IY) = BETA*Y(IY) IY = IY + INCY 40 CONTINUE END IF END IF END IF IF (ALPHA.EQ.ZERO) RETURN KK = 1 IF (LSAME(UPLO,'U')) THEN * * Form y when AP contains the upper triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO K = KK DO 50 I = 1,J - 1 Y(I) = Y(I) + TEMP1*AP(K) TEMP2 = TEMP2 + DCONJG(AP(K))*X(I) K = K + 1 50 CONTINUE Y(J) = Y(J) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 KK = KK + J 60 CONTINUE ELSE JX = KX JY = KY DO 80 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO IX = KX IY = KY DO 70 K = KK,KK + J - 2 Y(IY) = Y(IY) + TEMP1*AP(K) TEMP2 = TEMP2 + DCONJG(AP(K))*X(IX) IX = IX + INCX IY = IY + INCY 70 CONTINUE Y(JY) = Y(JY) + TEMP1*DBLE(AP(KK+J-1)) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY KK = KK + J 80 CONTINUE END IF ELSE * * Form y when AP contains the lower triangle. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 100 J = 1,N TEMP1 = ALPHA*X(J) TEMP2 = ZERO Y(J) = Y(J) + TEMP1*DBLE(AP(KK)) K = KK + 1 DO 90 I = J + 1,N Y(I) = Y(I) + TEMP1*AP(K) TEMP2 = TEMP2 + DCONJG(AP(K))*X(I) K = K + 1 90 CONTINUE Y(J) = Y(J) + ALPHA*TEMP2 KK = KK + (N-J+1) 100 CONTINUE ELSE JX = KX JY = KY DO 120 J = 1,N TEMP1 = ALPHA*X(JX) TEMP2 = ZERO Y(JY) = Y(JY) + TEMP1*DBLE(AP(KK)) IX = JX IY = JY DO 110 K = KK + 1,KK + N - J IX = IX + INCX IY = IY + INCY Y(IY) = Y(IY) + TEMP1*AP(K) TEMP2 = TEMP2 + DCONJG(AP(K))*X(IX) 110 CONTINUE Y(JY) = Y(JY) + ALPHA*TEMP2 JX = JX + INCX JY = JY + INCY KK = KK + (N-J+1) 120 CONTINUE END IF END IF * RETURN * * End of ZHPMV . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/zhpr2.f0000644000000000000000000000013214061636515014657 xustar0030 mtime=1623670093.104104173 30 atime=1623670093.103104174 30 ctime=1623670093.104104173 elk-7.2.42/src/BLAS/zhpr2.f0000644002504400250440000002263614061636515016725 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPR2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZHPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP) * * .. Scalar Arguments .. * COMPLEX*16 ALPHA * INTEGER INCX,INCY,N * CHARACTER UPLO * .. * .. Array Arguments .. * COMPLEX*16 AP(*),X(*),Y(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPR2 performs the hermitian rank 2 operation *> *> A := alpha*x*y**H + conjg( alpha )*y*x**H + A, *> *> where alpha is a scalar, x and y are n element vectors and A is an *> n by n hermitian matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the upper or lower *> triangular part of the matrix A is supplied in the packed *> array AP as follows: *> *> UPLO = 'U' or 'u' The upper triangular part of A is *> supplied in AP. *> *> UPLO = 'L' or 'l' The lower triangular part of A is *> supplied in AP. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, ALPHA specifies the scalar alpha. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCY ) ). *> Before entry, the incremented array Y must contain the n *> element vector y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> On entry, INCY specifies the increment for the elements of *> Y. INCY must not be zero. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 1, 2 ) *> and a( 2, 2 ) respectively, and so on. On exit, the array *> AP is overwritten by the upper triangular part of the *> updated matrix. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular part of the hermitian matrix *> packed sequentially, column by column, so that AP( 1 ) *> contains a( 1, 1 ), AP( 2 ) and AP( 3 ) contain a( 2, 1 ) *> and a( 3, 1 ) respectively, and so on. On exit, the array *> AP is overwritten by the lower triangular part of the *> updated matrix. *> Note that the imaginary parts of the diagonal elements need *> not be set, they are assumed to be zero, and on exit they *> are set to zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZHPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 ALPHA INTEGER INCX,INCY,N CHARACTER UPLO * .. * .. Array Arguments .. COMPLEX*16 AP(*),X(*),Y(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP1,TEMP2 INTEGER I,INFO,IX,IY,J,JX,JY,K,KK,KX,KY * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE,DCONJG * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (N.LT.0) THEN INFO = 2 ELSE IF (INCX.EQ.0) THEN INFO = 5 ELSE IF (INCY.EQ.0) THEN INFO = 7 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZHPR2 ',INFO) RETURN END IF * * Quick return if possible. * IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN * * Set up the start points in X and Y if the increments are not both * unity. * IF ((INCX.NE.1) .OR. (INCY.NE.1)) THEN IF (INCX.GT.0) THEN KX = 1 ELSE KX = 1 - (N-1)*INCX END IF IF (INCY.GT.0) THEN KY = 1 ELSE KY = 1 - (N-1)*INCY END IF JX = KX JY = KY END IF * * Start the operations. In this version the elements of the array AP * are accessed sequentially with one pass through AP. * KK = 1 IF (LSAME(UPLO,'U')) THEN * * Form A when upper triangle is stored in AP. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 20 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(J)) TEMP2 = DCONJG(ALPHA*X(J)) K = KK DO 10 I = 1,J - 1 AP(K) = AP(K) + X(I)*TEMP1 + Y(I)*TEMP2 K = K + 1 10 CONTINUE AP(KK+J-1) = DBLE(AP(KK+J-1)) + + DBLE(X(J)*TEMP1+Y(J)*TEMP2) ELSE AP(KK+J-1) = DBLE(AP(KK+J-1)) END IF KK = KK + J 20 CONTINUE ELSE DO 40 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(JY)) TEMP2 = DCONJG(ALPHA*X(JX)) IX = KX IY = KY DO 30 K = KK,KK + J - 2 AP(K) = AP(K) + X(IX)*TEMP1 + Y(IY)*TEMP2 IX = IX + INCX IY = IY + INCY 30 CONTINUE AP(KK+J-1) = DBLE(AP(KK+J-1)) + + DBLE(X(JX)*TEMP1+Y(JY)*TEMP2) ELSE AP(KK+J-1) = DBLE(AP(KK+J-1)) END IF JX = JX + INCX JY = JY + INCY KK = KK + J 40 CONTINUE END IF ELSE * * Form A when lower triangle is stored in AP. * IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN DO 60 J = 1,N IF ((X(J).NE.ZERO) .OR. (Y(J).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(J)) TEMP2 = DCONJG(ALPHA*X(J)) AP(KK) = DBLE(AP(KK)) + + DBLE(X(J)*TEMP1+Y(J)*TEMP2) K = KK + 1 DO 50 I = J + 1,N AP(K) = AP(K) + X(I)*TEMP1 + Y(I)*TEMP2 K = K + 1 50 CONTINUE ELSE AP(KK) = DBLE(AP(KK)) END IF KK = KK + N - J + 1 60 CONTINUE ELSE DO 80 J = 1,N IF ((X(JX).NE.ZERO) .OR. (Y(JY).NE.ZERO)) THEN TEMP1 = ALPHA*DCONJG(Y(JY)) TEMP2 = DCONJG(ALPHA*X(JX)) AP(KK) = DBLE(AP(KK)) + + DBLE(X(JX)*TEMP1+Y(JY)*TEMP2) IX = JX IY = JY DO 70 K = KK + 1,KK + N - J IX = IX + INCX IY = IY + INCY AP(K) = AP(K) + X(IX)*TEMP1 + Y(IY)*TEMP2 70 CONTINUE ELSE AP(KK) = DBLE(AP(KK)) END IF JX = JX + INCX JY = JY + INCY KK = KK + N - J + 1 80 CONTINUE END IF END IF * RETURN * * End of ZHPR2 . * END elk-7.2.42/src/BLAS/PaxHeaders.21776/ztpmv.f0000644000000000000000000000013214061636515014772 xustar0030 mtime=1623670093.106104171 30 atime=1623670093.105104172 30 ctime=1623670093.106104171 elk-7.2.42/src/BLAS/ztpmv.f0000644002504400250440000002775214061636515017044 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTPMV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZTPMV(UPLO,TRANS,DIAG,N,AP,X,INCX) * * .. Scalar Arguments .. * INTEGER INCX,N * CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. * COMPLEX*16 AP(*),X(*) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTPMV performs one of the matrix-vector operations *> *> x := A*x, or x := A**T*x, or x := A**H*x, *> *> where x is an n element vector and A is an n by n unit, or non-unit, *> upper or lower triangular matrix, supplied in packed form. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> On entry, UPLO specifies whether the matrix is an upper or *> lower triangular matrix as follows: *> *> UPLO = 'U' or 'u' A is an upper triangular matrix. *> *> UPLO = 'L' or 'l' A is a lower triangular matrix. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: *> *> TRANS = 'N' or 'n' x := A*x. *> *> TRANS = 'T' or 't' x := A**T*x. *> *> TRANS = 'C' or 'c' x := A**H*x. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> On entry, DIAG specifies whether or not A is unit *> triangular as follows: *> *> DIAG = 'U' or 'u' A is assumed to be unit triangular. *> *> DIAG = 'N' or 'n' A is not assumed to be unit *> triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the order of the matrix A. *> N must be at least zero. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension at least *> ( ( n*( n + 1 ) )/2 ). *> Before entry with UPLO = 'U' or 'u', the array AP must *> contain the upper triangular matrix packed sequentially, *> column by column, so that AP( 1 ) contains a( 1, 1 ), *> AP( 2 ) and AP( 3 ) contain a( 1, 2 ) and a( 2, 2 ) *> respectively, and so on. *> Before entry with UPLO = 'L' or 'l', the array AP must *> contain the lower triangular matrix packed sequentially, *> column by column, so that AP( 1 ) contains a( 1, 1 ), *> AP( 2 ) and AP( 3 ) contain a( 2, 1 ) and a( 3, 1 ) *> respectively, and so on. *> Note that when DIAG = 'U' or 'u', the diagonal elements of *> A are not referenced, but are assumed to be unity. *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. On exit, X is overwritten with the *> transformed vector x. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> On entry, INCX specifies the increment for the elements of *> X. INCX must not be zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16_blas_level2 * *> \par Further Details: * ===================== *> *> \verbatim *> *> Level 2 Blas routine. *> The vector and matrix arguments are not referenced when N = 0, or M = 0 *> *> -- Written on 22-October-1986. *> Jack Dongarra, Argonne National Lab. *> Jeremy Du Croz, Nag Central Office. *> Sven Hammarling, Nag Central Office. *> Richard Hanson, Sandia National Labs. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTPMV(UPLO,TRANS,DIAG,N,AP,X,INCX) * * -- Reference BLAS level2 routine (version 3.7.0) -- * -- Reference BLAS is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX,N CHARACTER DIAG,TRANS,UPLO * .. * .. Array Arguments .. COMPLEX*16 AP(*),X(*) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER (ZERO= (0.0D+0,0.0D+0)) * .. * .. Local Scalars .. COMPLEX*16 TEMP INTEGER I,INFO,IX,J,JX,K,KK,KX LOGICAL NOCONJ,NOUNIT * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. * * Test the input parameters. * INFO = 0 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN INFO = 1 ELSE IF (.NOT.LSAME(TRANS,'N') .AND. .NOT.LSAME(TRANS,'T') .AND. + .NOT.LSAME(TRANS,'C')) THEN INFO = 2 ELSE IF (.NOT.LSAME(DIAG,'U') .AND. .NOT.LSAME(DIAG,'N')) THEN INFO = 3 ELSE IF (N.LT.0) THEN INFO = 4 ELSE IF (INCX.EQ.0) THEN INFO = 7 END IF IF (INFO.NE.0) THEN CALL XERBLA('ZTPMV ',INFO) RETURN END IF * * Quick return if possible. * IF (N.EQ.0) RETURN * NOCONJ = LSAME(TRANS,'T') NOUNIT = LSAME(DIAG,'N') * * Set up the start point in X if the increment is not unity. This * will be ( N - 1 )*INCX too small for descending loops. * IF (INCX.LE.0) THEN KX = 1 - (N-1)*INCX ELSE IF (INCX.NE.1) THEN KX = 1 END IF * * Start the operations. In this version the elements of AP are * accessed sequentially with one pass through AP. * IF (LSAME(TRANS,'N')) THEN * * Form x:= A*x. * IF (LSAME(UPLO,'U')) THEN KK = 1 IF (INCX.EQ.1) THEN DO 20 J = 1,N IF (X(J).NE.ZERO) THEN TEMP = X(J) K = KK DO 10 I = 1,J - 1 X(I) = X(I) + TEMP*AP(K) K = K + 1 10 CONTINUE IF (NOUNIT) X(J) = X(J)*AP(KK+J-1) END IF KK = KK + J 20 CONTINUE ELSE JX = KX DO 40 J = 1,N IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 30 K = KK,KK + J - 2 X(IX) = X(IX) + TEMP*AP(K) IX = IX + INCX 30 CONTINUE IF (NOUNIT) X(JX) = X(JX)*AP(KK+J-1) END IF JX = JX + INCX KK = KK + J 40 CONTINUE END IF ELSE KK = (N* (N+1))/2 IF (INCX.EQ.1) THEN DO 60 J = N,1,-1 IF (X(J).NE.ZERO) THEN TEMP = X(J) K = KK DO 50 I = N,J + 1,-1 X(I) = X(I) + TEMP*AP(K) K = K - 1 50 CONTINUE IF (NOUNIT) X(J) = X(J)*AP(KK-N+J) END IF KK = KK - (N-J+1) 60 CONTINUE ELSE KX = KX + (N-1)*INCX JX = KX DO 80 J = N,1,-1 IF (X(JX).NE.ZERO) THEN TEMP = X(JX) IX = KX DO 70 K = KK,KK - (N- (J+1)),-1 X(IX) = X(IX) + TEMP*AP(K) IX = IX - INCX 70 CONTINUE IF (NOUNIT) X(JX) = X(JX)*AP(KK-N+J) END IF JX = JX - INCX KK = KK - (N-J+1) 80 CONTINUE END IF END IF ELSE * * Form x := A**T*x or x := A**H*x. * IF (LSAME(UPLO,'U')) THEN KK = (N* (N+1))/2 IF (INCX.EQ.1) THEN DO 110 J = N,1,-1 TEMP = X(J) K = KK - 1 IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*AP(KK) DO 90 I = J - 1,1,-1 TEMP = TEMP + AP(K)*X(I) K = K - 1 90 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(AP(KK)) DO 100 I = J - 1,1,-1 TEMP = TEMP + DCONJG(AP(K))*X(I) K = K - 1 100 CONTINUE END IF X(J) = TEMP KK = KK - J 110 CONTINUE ELSE JX = KX + (N-1)*INCX DO 140 J = N,1,-1 TEMP = X(JX) IX = JX IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*AP(KK) DO 120 K = KK - 1,KK - J + 1,-1 IX = IX - INCX TEMP = TEMP + AP(K)*X(IX) 120 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(AP(KK)) DO 130 K = KK - 1,KK - J + 1,-1 IX = IX - INCX TEMP = TEMP + DCONJG(AP(K))*X(IX) 130 CONTINUE END IF X(JX) = TEMP JX = JX - INCX KK = KK - J 140 CONTINUE END IF ELSE KK = 1 IF (INCX.EQ.1) THEN DO 170 J = 1,N TEMP = X(J) K = KK + 1 IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*AP(KK) DO 150 I = J + 1,N TEMP = TEMP + AP(K)*X(I) K = K + 1 150 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(AP(KK)) DO 160 I = J + 1,N TEMP = TEMP + DCONJG(AP(K))*X(I) K = K + 1 160 CONTINUE END IF X(J) = TEMP KK = KK + (N-J+1) 170 CONTINUE ELSE JX = KX DO 200 J = 1,N TEMP = X(JX) IX = JX IF (NOCONJ) THEN IF (NOUNIT) TEMP = TEMP*AP(KK) DO 180 K = KK + 1,KK + N - J IX = IX + INCX TEMP = TEMP + AP(K)*X(IX) 180 CONTINUE ELSE IF (NOUNIT) TEMP = TEMP*DCONJG(AP(KK)) DO 190 K = KK + 1,KK + N - J IX = IX + INCX TEMP = TEMP + DCONJG(AP(K))*X(IX) 190 CONTINUE END IF X(JX) = TEMP JX = JX + INCX KK = KK + (N-J+1) 200 CONTINUE END IF END IF END IF * RETURN * * End of ZTPMV . * END elk-7.2.42/src/PaxHeaders.21776/LAPACK0000644000000000000000000000013214061636515013600 xustar0030 mtime=1623670093.464103839 30 atime=1623670093.112104166 30 ctime=1623670093.464103839 elk-7.2.42/src/LAPACK/0000755002504400250440000000000014061636515015712 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaisnan.f0000644000000000000000000000013214061636515015615 xustar0030 mtime=1623670093.113104164 30 atime=1623670093.113104164 30 ctime=1623670093.113104164 elk-7.2.42/src/LAPACK/dlaisnan.f0000644002504400250440000000506014061636515017653 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAISNAN tests input for NaN by comparing two arguments for inequality. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAISNAN + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * LOGICAL FUNCTION DLAISNAN( DIN1, DIN2 ) * * .. Scalar Arguments .. * DOUBLE PRECISION, INTENT(IN) :: DIN1, DIN2 * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> This routine is not for general use. It exists solely to avoid *> over-optimization in DISNAN. *> *> DLAISNAN checks for NaNs by comparing its two arguments for *> inequality. NaN is the only floating-point value where NaN != NaN *> returns .TRUE. To check for NaNs, pass the same variable as both *> arguments. *> *> A compiler must assume that the two arguments are *> not the same variable, and the test will not be optimized away. *> Interprocedural or whole-program optimization may delete this *> test. The ISNAN functions will be replaced by the correct *> Fortran 03 intrinsic once the intrinsic is widely available. *> \endverbatim * * Arguments: * ========== * *> \param[in] DIN1 *> \verbatim *> DIN1 is DOUBLE PRECISION *> \endverbatim *> *> \param[in] DIN2 *> \verbatim *> DIN2 is DOUBLE PRECISION *> Two numbers to compare for inequality. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup OTHERauxiliary * * ===================================================================== LOGICAL FUNCTION DLAISNAN( DIN1, DIN2 ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. DOUBLE PRECISION, INTENT(IN) :: DIN1, DIN2 * .. * * ===================================================================== * * .. Executable Statements .. DLAISNAN = (DIN1.NE.DIN2) RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/disnan.f0000644000000000000000000000013214061636515015300 xustar0030 mtime=1623670093.115104163 30 atime=1623670093.115104163 30 ctime=1623670093.115104163 elk-7.2.42/src/LAPACK/disnan.f0000644002504400250440000000372714061636515017346 0ustar00dewhurstdewhurst00000000000000*> \brief \b DISNAN tests input for NaN. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DISNAN + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * LOGICAL FUNCTION DISNAN( DIN ) * * .. Scalar Arguments .. * DOUBLE PRECISION, INTENT(IN) :: DIN * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DISNAN returns .TRUE. if its argument is NaN, and .FALSE. *> otherwise. To be replaced by the Fortran 2003 intrinsic in the *> future. *> \endverbatim * * Arguments: * ========== * *> \param[in] DIN *> \verbatim *> DIN is DOUBLE PRECISION *> Input to test for NaN. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup OTHERauxiliary * * ===================================================================== LOGICAL FUNCTION DISNAN( DIN ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. DOUBLE PRECISION, INTENT(IN) :: DIN * .. * * ===================================================================== * * .. External Functions .. LOGICAL DLAISNAN EXTERNAL DLAISNAN * .. * .. Executable Statements .. DISNAN = DLAISNAN(DIN,DIN) RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsyev.f0000644000000000000000000000013214061636515015156 xustar0030 mtime=1623670093.117104161 30 atime=1623670093.116104162 30 ctime=1623670093.117104161 elk-7.2.42/src/LAPACK/dsyev.f0000644002504400250440000002036414061636515017220 0ustar00dewhurstdewhurst00000000000000*> \brief DSYEV computes the eigenvalues and, optionally, the left and/or right eigenvectors for SY matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYEV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), W( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYEV computes all eigenvalues and, optionally, eigenvectors of a *> real symmetric matrix A. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA, N) *> On entry, the symmetric matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> On exit, if JOBZ = 'V', then if INFO = 0, A contains the *> orthonormal eigenvectors of the matrix A. *> If JOBZ = 'N', then on exit the lower triangle (if UPLO='L') *> or the upper triangle (if UPLO='U') of A, including the *> diagonal, is destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> If INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,3*N-1). *> For optimal efficiency, LWORK >= (NB+2)*N, *> where NB is the blocksize for DSYTRD returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the algorithm failed to converge; i *> off-diagonal elements of an intermediate tridiagonal *> form did not converge to zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYeigen * * ===================================================================== SUBROUTINE DSYEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), W( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. LOGICAL LOWER, LQUERY, WANTZ INTEGER IINFO, IMAX, INDE, INDTAU, INDWRK, ISCALE, $ LLWORK, LWKOPT, NB DOUBLE PRECISION ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, SIGMA, $ SMLNUM * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, DLANSY EXTERNAL LSAME, ILAENV, DLAMCH, DLANSY * .. * .. External Subroutines .. EXTERNAL DLASCL, DORGTR, DSCAL, DSTEQR, DSTERF, DSYTRD, $ XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) LOWER = LSAME( UPLO, 'L' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF * IF( INFO.EQ.0 ) THEN NB = ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) LWKOPT = MAX( 1, ( NB+2 )*N ) WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, 3*N-1 ) .AND. .NOT.LQUERY ) $ INFO = -8 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYEV ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN RETURN END IF * IF( N.EQ.1 ) THEN W( 1 ) = A( 1, 1 ) WORK( 1 ) = 2 IF( WANTZ ) $ A( 1, 1 ) = ONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = SQRT( BIGNUM ) * * Scale matrix to allowable range, if necessary. * ANRM = DLANSY( 'M', UPLO, N, A, LDA, WORK ) ISCALE = 0 IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) $ CALL DLASCL( UPLO, 0, 0, ONE, SIGMA, N, N, A, LDA, INFO ) * * Call DSYTRD to reduce symmetric matrix to tridiagonal form. * INDE = 1 INDTAU = INDE + N INDWRK = INDTAU + N LLWORK = LWORK - INDWRK + 1 CALL DSYTRD( UPLO, N, A, LDA, W, WORK( INDE ), WORK( INDTAU ), $ WORK( INDWRK ), LLWORK, IINFO ) * * For eigenvalues only, call DSTERF. For eigenvectors, first call * DORGTR to generate the orthogonal matrix, then call DSTEQR. * IF( .NOT.WANTZ ) THEN CALL DSTERF( N, W, WORK( INDE ), INFO ) ELSE CALL DORGTR( UPLO, N, A, LDA, WORK( INDTAU ), WORK( INDWRK ), $ LLWORK, IINFO ) CALL DSTEQR( JOBZ, N, W, WORK( INDE ), A, LDA, WORK( INDTAU ), $ INFO ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = N ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * * Set WORK(1) to optimal workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of DSYEV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsygvx.f0000644000000000000000000000013114061636515015347 xustar0030 mtime=1623670093.119104159 29 atime=1623670093.11810416 30 ctime=1623670093.119104159 elk-7.2.42/src/LAPACK/dsygvx.f0000644002504400250440000003556114061636515017417 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYGVX * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYGVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYGVX( ITYPE, JOBZ, RANGE, UPLO, N, A, LDA, B, LDB, * VL, VU, IL, IU, ABSTOL, M, W, Z, LDZ, WORK, * LWORK, IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, ITYPE, IU, LDA, LDB, LDZ, LWORK, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION A( LDA, * ), B( LDB, * ), W( * ), WORK( * ), * $ Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYGVX computes selected eigenvalues, and optionally, eigenvectors *> of a real generalized symmetric-definite eigenproblem, of the form *> A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A *> and B are assumed to be symmetric and B is also positive definite. *> Eigenvalues and eigenvectors can be selected by specifying either a *> range of values or a range of indices for the desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> Specifies the problem type to be solved: *> = 1: A*x = (lambda)*B*x *> = 2: A*B*x = (lambda)*x *> = 3: B*A*x = (lambda)*x *> \endverbatim *> *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found. *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found. *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A and B are stored; *> = 'L': Lower triangle of A and B are stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix pencil (A,B). N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA, N) *> On entry, the symmetric matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> *> On exit, the lower triangle (if UPLO='L') or the upper *> triangle (if UPLO='U') of A, including the diagonal, is *> destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB, N) *> On entry, the symmetric matrix B. If UPLO = 'U', the *> leading N-by-N upper triangular part of B contains the *> upper triangular part of the matrix B. If UPLO = 'L', *> the leading N-by-N lower triangular part of B contains *> the lower triangular part of the matrix B. *> *> On exit, if INFO <= N, the part of B containing the matrix is *> overwritten by the triangular factor U or L from the Cholesky *> factorization B = U**T*U or B = L*L**T. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing C to tridiagonal form, where C is the symmetric *> matrix of the standard symmetric problem to which the *> generalized problem is transformed. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> On normal exit, the first M elements contain the selected *> eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (LDZ, max(1,M)) *> If JOBZ = 'N', then Z is not referenced. *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> The eigenvectors are normalized as follows: *> if ITYPE = 1 or 2, Z**T*B*Z = I; *> if ITYPE = 3, Z**T*inv(B)*Z = I. *> *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and the *> index of the eigenvector is returned in IFAIL. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,8*N). *> For optimal efficiency, LWORK >= (NB+3)*N, *> where NB is the blocksize for DSYTRD returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: DPOTRF or DSYEVX returned an error code: *> <= N: if INFO = i, DSYEVX failed to converge; *> i eigenvectors failed to converge. Their indices *> are stored in array IFAIL. *> > N: if INFO = N + i, for 1 <= i <= N, then the leading *> minor of order i of B is not positive definite. *> The factorization of B could not be completed and *> no eigenvalues or eigenvectors were computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup doubleSYeigen * *> \par Contributors: * ================== *> *> Mark Fahey, Department of Mathematics, Univ. of Kentucky, USA * * ===================================================================== SUBROUTINE DSYGVX( ITYPE, JOBZ, RANGE, UPLO, N, A, LDA, B, LDB, $ VL, VU, IL, IU, ABSTOL, M, W, Z, LDZ, WORK, $ LWORK, IWORK, IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, ITYPE, IU, LDA, LDB, LDZ, LWORK, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION A( LDA, * ), B( LDB, * ), W( * ), WORK( * ), $ Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, LQUERY, UPPER, VALEIG, WANTZ CHARACTER TRANS INTEGER LWKMIN, LWKOPT, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DPOTRF, DSYEVX, DSYGST, DTRMM, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * UPPER = LSAME( UPLO, 'U' ) WANTZ = LSAME( JOBZ, 'V' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -2 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -3 ELSE IF( .NOT.( UPPER .OR. LSAME( UPLO, 'L' ) ) ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -7 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -9 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) $ INFO = -11 ELSE IF( INDEIG ) THEN IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN INFO = -12 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -13 END IF END IF END IF IF (INFO.EQ.0) THEN IF (LDZ.LT.1 .OR. (WANTZ .AND. LDZ.LT.N)) THEN INFO = -18 END IF END IF * IF( INFO.EQ.0 ) THEN LWKMIN = MAX( 1, 8*N ) NB = ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) LWKOPT = MAX( LWKMIN, ( NB + 3 )*N ) WORK( 1 ) = LWKOPT * IF( LWORK.LT.LWKMIN .AND. .NOT.LQUERY ) THEN INFO = -20 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYGVX', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * M = 0 IF( N.EQ.0 ) THEN RETURN END IF * * Form a Cholesky factorization of B. * CALL DPOTRF( UPLO, N, B, LDB, INFO ) IF( INFO.NE.0 ) THEN INFO = N + INFO RETURN END IF * * Transform problem to standard eigenvalue problem and solve. * CALL DSYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) CALL DSYEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, ABSTOL, $ M, W, Z, LDZ, WORK, LWORK, IWORK, IFAIL, INFO ) * IF( WANTZ ) THEN * * Backtransform eigenvectors to the original problem. * IF( INFO.GT.0 ) $ M = INFO - 1 IF( ITYPE.EQ.1 .OR. ITYPE.EQ.2 ) THEN * * For A*x=(lambda)*B*x and A*B*x=(lambda)*x; * backtransform eigenvectors: x = inv(L)**T*y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' ELSE TRANS = 'T' END IF * CALL DTRSM( 'Left', UPLO, TRANS, 'Non-unit', N, M, ONE, B, $ LDB, Z, LDZ ) * ELSE IF( ITYPE.EQ.3 ) THEN * * For B*A*x=(lambda)*x; * backtransform eigenvectors: x = L*y or U**T*y * IF( UPPER ) THEN TRANS = 'T' ELSE TRANS = 'N' END IF * CALL DTRMM( 'Left', UPLO, TRANS, 'Non-unit', N, M, ONE, B, $ LDB, Z, LDZ ) END IF END IF * * Set WORK(1) to optimal workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of DSYGVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlamch.f0000644000000000000000000000013214061636515015254 xustar0030 mtime=1623670093.120104158 30 atime=1623670093.120104158 30 ctime=1623670093.120104158 elk-7.2.42/src/LAPACK/dlamch.f0000644002504400250440000000672314061636515017321 0ustar00dewhurstdewhurst00000000000000 FUNCTION DLAMCH ( CMACH ) RESULT(RMACH) ! ! -- LAPACK auxiliary routine Replacement for DLAMCH.f ! use Fortran 90 Machine Parameter built-in functions. ! character(len=1) :: CMACH real(kind(1.d0)) :: xdbl, ydbl, RMACH ! ! Purpose ! ======= ! ! ! DLAMCH determines double precision machine parameters. ! ! Arguments ! ========= ! ! CMACH (input) CHARACTER*1 ! Specifies the value to be returned by DLAMCH: ! = 'E' or 'e', DLAMCH := eps ! = 'S' or 's , DLAMCH := sfmin ! = 'B' or 'b', DLAMCH := base ! = 'P' or 'p', DLAMCH := eps*base ! = 'N' or 'n', DLAMCH := t ! = 'R' or 'r', DLAMCH := rnd ! = 'M' or 'm', DLAMCH := emin ! = 'U' or 'u', DLAMCH := rmin ! = 'L' or 'l', DLAMCH := emax ! = 'O' or 'o', DLAMCH := rmax ! ! where ! ! ! ===================================================================== xdbl=1.d0 IF( CMACH == 'E' .or. CMACH == 'e' ) THEN ! eps = relative machine precision RMACH = Epsilon(xdbl) ELSE IF( CMACH == 'S' .or. CMACH == 's' ) THEN ! sfmin = safe minimum, such that 1/sfmin does not overflow RMACH = Tiny(xdbl) ELSE IF( CMACH == 'B' .or. CMACH == 'b' ) THEN ! base = base of the machine RMACH = Radix(xdbl) ELSE IF( CMACH == 'P' .or. CMACH == 'p' ) THEN ! prec = eps*base RMACH = Radix(xdbl)*Epsilon(xdbl) ELSE IF( CMACH == 'N' .or. CMACH == 'n' ) THEN ! t = number of (base) digits in the mantissa RMACH = Digits(xdbl) ELSE IF( CMACH == 'R' .or. CMACH == 'r' ) THEN ! rnd = 1.0 when rounding occurs in addition, 0.0 otherwise ! Assume rounding (IEEE). RMACH = 1.0 ELSE IF( CMACH == 'M' .or. CMACH == 'm' ) THEN ! emin = minimum exponent before (gradual) underflow RMACH = Minexponent(xdbl) ELSE IF( CMACH == 'U' .or. CMACH == 'u' ) THEN ! rmin = underflow threshold - base**(emin-1) RMACH = Tiny(xdbl) ELSE IF( CMACH == 'L' .or. CMACH == 'l' ) THEN ! emax = largest exponent before overflow RMACH = Maxexponent(xdbl) ELSE IF( CMACH == 'O' .or. CMACH == 'o' ) THEN ! rmax = overflow threshold - (base**emax)*(1-eps) RMACH = Huge(xdbl) END IF ! END * ************************************************************************ * DOUBLE PRECISION FUNCTION DLAMC3( A, B ) * * -- LAPACK auxiliary routine (version 3.1) -- * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. * November 2006 * * .. Scalar Arguments .. DOUBLE PRECISION A, B * * .. Local variables .. INTEGER I DOUBLE PRECISION X(10),Y(10) * .. * * Purpose * ======= * * DLAMC3 is intended to force A and B to be stored prior to doing * the addition of A and B , for use in situations where optimizers * might hold one of these in a register. * * Arguments * ========= * * A (input) DOUBLE PRECISION * B (input) DOUBLE PRECISION * The values A and B. * * ===================================================================== * * .. Executable Statements .. * * DLAMC3 = A + B * Modification by JKD to ensure variables are flushed to memory DO I=1,10 X(I)=A END DO DO I=1,10 Y(I)=X(I)+B END DO DLAMC3=Y(10) * RETURN * * End of DLAMC3 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhpgvx.f0000644000000000000000000000013214061636515015352 xustar0030 mtime=1623670093.122104156 30 atime=1623670093.122104156 30 ctime=1623670093.122104156 elk-7.2.42/src/LAPACK/zhpgvx.f0000644002504400250440000003221414061636515017411 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPGVX * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHPGVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHPGVX( ITYPE, JOBZ, RANGE, UPLO, N, AP, BP, VL, VU, * IL, IU, ABSTOL, M, W, Z, LDZ, WORK, RWORK, * IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, ITYPE, IU, LDZ, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 AP( * ), BP( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPGVX computes selected eigenvalues and, optionally, eigenvectors *> of a complex generalized Hermitian-definite eigenproblem, of the form *> A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A and *> B are assumed to be Hermitian, stored in packed format, and B is also *> positive definite. Eigenvalues and eigenvectors can be selected by *> specifying either a range of values or a range of indices for the *> desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> Specifies the problem type to be solved: *> = 1: A*x = (lambda)*B*x *> = 2: A*B*x = (lambda)*x *> = 3: B*A*x = (lambda)*x *> \endverbatim *> *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found; *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found; *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangles of A and B are stored; *> = 'L': Lower triangles of A and B are stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> A, packed columnwise in a linear array. The j-th column of A *> is stored in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. *> *> On exit, the contents of AP are destroyed. *> \endverbatim *> *> \param[in,out] BP *> \verbatim *> BP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> B, packed columnwise in a linear array. The j-th column of B *> is stored in the array BP as follows: *> if UPLO = 'U', BP(i + (j-1)*j/2) = B(i,j) for 1<=i<=j; *> if UPLO = 'L', BP(i + (j-1)*(2*n-j)/2) = B(i,j) for j<=i<=n. *> *> On exit, the triangular factor U or L from the Cholesky *> factorization B = U**H*U or B = L*L**H, in the same storage *> format as B. *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing AP to tridiagonal form. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> On normal exit, the first M elements contain the selected *> eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, N) *> If JOBZ = 'N', then Z is not referenced. *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> The eigenvectors are normalized as follows: *> if ITYPE = 1 or 2, Z**H*B*Z = I; *> if ITYPE = 3, Z**H*inv(B)*Z = I. *> *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and the *> index of the eigenvector is returned in IFAIL. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (2*N) *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (7*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: ZPPTRF or ZHPEVX returned an error code: *> <= N: if INFO = i, ZHPEVX failed to converge; *> i eigenvectors failed to converge. Their indices *> are stored in array IFAIL. *> > N: if INFO = N + i, for 1 <= i <= n, then the leading *> minor of order i of B is not positive definite. *> The factorization of B could not be completed and *> no eigenvalues or eigenvectors were computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHEReigen * *> \par Contributors: * ================== *> *> Mark Fahey, Department of Mathematics, Univ. of Kentucky, USA * * ===================================================================== SUBROUTINE ZHPGVX( ITYPE, JOBZ, RANGE, UPLO, N, AP, BP, VL, VU, $ IL, IU, ABSTOL, M, W, Z, LDZ, WORK, RWORK, $ IWORK, IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, ITYPE, IU, LDZ, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 AP( * ), BP( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, UPPER, VALEIG, WANTZ CHARACTER TRANS INTEGER J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZHPEVX, ZHPGST, ZPPTRF, ZTPMV, ZTPSV * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) UPPER = LSAME( UPLO, 'U' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) * INFO = 0 IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -2 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -3 ELSE IF( .NOT.( UPPER .OR. LSAME( UPLO, 'L' ) ) ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) THEN INFO = -9 END IF ELSE IF( INDEIG ) THEN IF( IL.LT.1 ) THEN INFO = -10 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -11 END IF END IF END IF IF( INFO.EQ.0 ) THEN IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.N ) ) THEN INFO = -16 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHPGVX', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Form a Cholesky factorization of B. * CALL ZPPTRF( UPLO, N, BP, INFO ) IF( INFO.NE.0 ) THEN INFO = N + INFO RETURN END IF * * Transform problem to standard eigenvalue problem and solve. * CALL ZHPGST( ITYPE, UPLO, N, AP, BP, INFO ) CALL ZHPEVX( JOBZ, RANGE, UPLO, N, AP, VL, VU, IL, IU, ABSTOL, M, $ W, Z, LDZ, WORK, RWORK, IWORK, IFAIL, INFO ) * IF( WANTZ ) THEN * * Backtransform eigenvectors to the original problem. * IF( INFO.GT.0 ) $ M = INFO - 1 IF( ITYPE.EQ.1 .OR. ITYPE.EQ.2 ) THEN * * For A*x=(lambda)*B*x and A*B*x=(lambda)*x; * backtransform eigenvectors: x = inv(L)**H *y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' ELSE TRANS = 'C' END IF * DO 10 J = 1, M CALL ZTPSV( UPLO, TRANS, 'Non-unit', N, BP, Z( 1, J ), $ 1 ) 10 CONTINUE * ELSE IF( ITYPE.EQ.3 ) THEN * * For B*A*x=(lambda)*x; * backtransform eigenvectors: x = L*y or U**H *y * IF( UPPER ) THEN TRANS = 'C' ELSE TRANS = 'N' END IF * DO 20 J = 1, M CALL ZTPMV( UPLO, TRANS, 'Non-unit', N, BP, Z( 1, J ), $ 1 ) 20 CONTINUE END IF END IF * RETURN * * End of ZHPGVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/iparam2stage.f0000644000000000000000000000013214061636515016403 xustar0030 mtime=1623670093.124104154 30 atime=1623670093.124104154 30 ctime=1623670093.124104154 elk-7.2.42/src/LAPACK/iparam2stage.f0000644002504400250440000003000414061636515020435 0ustar00dewhurstdewhurst00000000000000*> \brief \b IPARAM2STAGE * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download IPARAM2STAGE + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION IPARAM2STAGE( ISPEC, NAME, OPTS, * NI, NBI, IBI, NXI ) * #if defined(_OPENMP) * use omp_lib * #endif * IMPLICIT NONE * * .. Scalar Arguments .. * CHARACTER*( * ) NAME, OPTS * INTEGER ISPEC, NI, NBI, IBI, NXI * *> \par Purpose: * ============= *> *> \verbatim *> *> This program sets problem and machine dependent parameters *> useful for xHETRD_2STAGE, xHETRD_HE2HB, xHETRD_HB2ST, *> xGEBRD_2STAGE, xGEBRD_GE2GB, xGEBRD_GB2BD *> and related subroutines for eigenvalue problems. *> It is called whenever ILAENV is called with 17 <= ISPEC <= 21. *> It is called whenever ILAENV2STAGE is called with 1 <= ISPEC <= 5 *> with a direct conversion ISPEC + 16. *> \endverbatim * * Arguments: * ========== * *> \param[in] ISPEC *> \verbatim *> ISPEC is integer scalar *> ISPEC specifies which tunable parameter IPARAM2STAGE should *> return. *> *> ISPEC=17: the optimal blocksize nb for the reduction to *> BAND *> *> ISPEC=18: the optimal blocksize ib for the eigenvectors *> singular vectors update routine *> *> ISPEC=19: The length of the array that store the Housholder *> representation for the second stage *> Band to Tridiagonal or Bidiagonal *> *> ISPEC=20: The workspace needed for the routine in input. *> *> ISPEC=21: For future release. *> \endverbatim *> *> \param[in] NAME *> \verbatim *> NAME is character string *> Name of the calling subroutine *> \endverbatim *> *> \param[in] OPTS *> \verbatim *> OPTS is CHARACTER*(*) *> The character options to the subroutine NAME, concatenated *> into a single character string. For example, UPLO = 'U', *> TRANS = 'T', and DIAG = 'N' for a triangular routine would *> be specified as OPTS = 'UTN'. *> \endverbatim *> *> \param[in] NI *> \verbatim *> NI is INTEGER which is the size of the matrix *> \endverbatim *> *> \param[in] NBI *> \verbatim *> NBI is INTEGER which is the used in the reduciton, *> (e.g., the size of the band), needed to compute workspace *> and LHOUS2. *> \endverbatim *> *> \param[in] IBI *> \verbatim *> IBI is INTEGER which represent the IB of the reduciton, *> needed to compute workspace and LHOUS2. *> \endverbatim *> *> \param[in] NXI *> \verbatim *> NXI is INTEGER needed in the future release. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Implemented by Azzam Haidar. *> *> All detail are available on technical report, SC11, SC13 papers. *> *> Azzam Haidar, Hatem Ltaief, and Jack Dongarra. *> Parallel reduction to condensed forms for symmetric eigenvalue problems *> using aggregated fine-grained and memory-aware kernels. In Proceedings *> of 2011 International Conference for High Performance Computing, *> Networking, Storage and Analysis (SC '11), New York, NY, USA, *> Article 8 , 11 pages. *> http://doi.acm.org/10.1145/2063384.2063394 *> *> A. Haidar, J. Kurzak, P. Luszczek, 2013. *> An improved parallel singular value algorithm and its implementation *> for multicore hardware, In Proceedings of 2013 International Conference *> for High Performance Computing, Networking, Storage and Analysis (SC '13). *> Denver, Colorado, USA, 2013. *> Article 90, 12 pages. *> http://doi.acm.org/10.1145/2503210.2503292 *> *> A. Haidar, R. Solca, S. Tomov, T. Schulthess and J. Dongarra. *> A novel hybrid CPU-GPU generalized eigensolver for electronic structure *> calculations based on fine-grained memory aware tasks. *> International Journal of High Performance Computing Applications. *> Volume 28 Issue 2, Pages 196-209, May 2014. *> http://hpc.sagepub.com/content/28/2/196 *> *> \endverbatim *> * ===================================================================== INTEGER FUNCTION IPARAM2STAGE( ISPEC, NAME, OPTS, $ NI, NBI, IBI, NXI ) #if defined(_OPENMP) use omp_lib #endif IMPLICIT NONE * * -- LAPACK auxiliary routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER*( * ) NAME, OPTS INTEGER ISPEC, NI, NBI, IBI, NXI * * ================================================================ * .. * .. Local Scalars .. INTEGER I, IC, IZ, KD, IB, LHOUS, LWORK, NTHREADS, $ FACTOPTNB, QROPTNB, LQOPTNB LOGICAL RPREC, CPREC CHARACTER PREC*1, ALGO*3, STAG*5, SUBNAM*12, VECT*1 * .. * .. Intrinsic Functions .. INTRINSIC CHAR, ICHAR, MAX * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Invalid value for ISPEC * IF( (ISPEC.LT.17).OR.(ISPEC.GT.21) ) THEN IPARAM2STAGE = -1 RETURN ENDIF * * Get the number of threads * NTHREADS = 1 #if defined(_OPENMP) !$OMP PARALLEL NTHREADS = OMP_GET_NUM_THREADS() !$OMP END PARALLEL #endif * WRITE(*,*) 'IPARAM VOICI NTHREADS ISPEC ',NTHREADS, ISPEC * IF( ISPEC .NE. 19 ) THEN * * Convert NAME to upper case if the first character is lower case. * IPARAM2STAGE = -1 SUBNAM = NAME IC = ICHAR( SUBNAM( 1: 1 ) ) IZ = ICHAR( 'Z' ) IF( IZ.EQ.90 .OR. IZ.EQ.122 ) THEN * * ASCII character set * IF( IC.GE.97 .AND. IC.LE.122 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO 100 I = 2, 12 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.97 .AND. IC.LE.122 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) 100 CONTINUE END IF * ELSE IF( IZ.EQ.233 .OR. IZ.EQ.169 ) THEN * * EBCDIC character set * IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) ) THEN SUBNAM( 1: 1 ) = CHAR( IC+64 ) DO 110 I = 2, 12 IC = ICHAR( SUBNAM( I: I ) ) IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) )SUBNAM( I: $ I ) = CHAR( IC+64 ) 110 CONTINUE END IF * ELSE IF( IZ.EQ.218 .OR. IZ.EQ.250 ) THEN * * Prime machines: ASCII+128 * IF( IC.GE.225 .AND. IC.LE.250 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO 120 I = 2, 12 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.225 .AND. IC.LE.250 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) 120 CONTINUE END IF END IF * PREC = SUBNAM( 1: 1 ) ALGO = SUBNAM( 4: 6 ) STAG = SUBNAM( 8:12 ) RPREC = PREC.EQ.'S' .OR. PREC.EQ.'D' CPREC = PREC.EQ.'C' .OR. PREC.EQ.'Z' * * Invalid value for PRECISION * IF( .NOT.( RPREC .OR. CPREC ) ) THEN IPARAM2STAGE = -1 RETURN ENDIF ENDIF * WRITE(*,*),'RPREC,CPREC ',RPREC,CPREC, * $ ' ALGO ',ALGO,' STAGE ',STAG * * IF (( ISPEC .EQ. 17 ) .OR. ( ISPEC .EQ. 18 )) THEN * * ISPEC = 17, 18: block size KD, IB * Could be also dependent from N but for now it * depend only on sequential or parallel * IF( NTHREADS.GT.4 ) THEN IF( CPREC ) THEN KD = 128 IB = 32 ELSE KD = 160 IB = 40 ENDIF ELSE IF( NTHREADS.GT.1 ) THEN IF( CPREC ) THEN KD = 64 IB = 32 ELSE KD = 64 IB = 32 ENDIF ELSE IF( CPREC ) THEN KD = 16 IB = 16 ELSE KD = 32 IB = 16 ENDIF ENDIF IF( ISPEC.EQ.17 ) IPARAM2STAGE = KD IF( ISPEC.EQ.18 ) IPARAM2STAGE = IB * ELSE IF ( ISPEC .EQ. 19 ) THEN * * ISPEC = 19: * LHOUS length of the Houselholder representation * matrix (V,T) of the second stage. should be >= 1. * * Will add the VECT OPTION HERE next release VECT = OPTS(1:1) IF( VECT.EQ.'N' ) THEN LHOUS = MAX( 1, 4*NI ) ELSE * This is not correct, it need to call the ALGO and the stage2 LHOUS = MAX( 1, 4*NI ) + IBI ENDIF IF( LHOUS.GE.0 ) THEN IPARAM2STAGE = LHOUS ELSE IPARAM2STAGE = -1 ENDIF * ELSE IF ( ISPEC .EQ. 20 ) THEN * * ISPEC = 20: (21 for future use) * LWORK length of the workspace for * either or both stages for TRD and BRD. should be >= 1. * TRD: * TRD_stage 1: = LT + LW + LS1 + LS2 * = LDT*KD + N*KD + N*MAX(KD,FACTOPTNB) + LDS2*KD * where LDT=LDS2=KD * = N*KD + N*max(KD,FACTOPTNB) + 2*KD*KD * TRD_stage 2: = (2NB+1)*N + KD*NTHREADS * TRD_both : = max(stage1,stage2) + AB ( AB=(KD+1)*N ) * = N*KD + N*max(KD+1,FACTOPTNB) * + max(2*KD*KD, KD*NTHREADS) * + (KD+1)*N LWORK = -1 SUBNAM(1:1) = PREC SUBNAM(2:6) = 'GEQRF' QROPTNB = ILAENV( 1, SUBNAM, ' ', NI, NBI, -1, -1 ) SUBNAM(2:6) = 'GELQF' LQOPTNB = ILAENV( 1, SUBNAM, ' ', NBI, NI, -1, -1 ) * Could be QR or LQ for TRD and the max for BRD FACTOPTNB = MAX(QROPTNB, LQOPTNB) IF( ALGO.EQ.'TRD' ) THEN IF( STAG.EQ.'2STAG' ) THEN LWORK = NI*NBI + NI*MAX(NBI+1,FACTOPTNB) $ + MAX(2*NBI*NBI, NBI*NTHREADS) $ + (NBI+1)*NI ELSE IF( (STAG.EQ.'HE2HB').OR.(STAG.EQ.'SY2SB') ) THEN LWORK = NI*NBI + NI*MAX(NBI,FACTOPTNB) + 2*NBI*NBI ELSE IF( (STAG.EQ.'HB2ST').OR.(STAG.EQ.'SB2ST') ) THEN LWORK = (2*NBI+1)*NI + NBI*NTHREADS ENDIF ELSE IF( ALGO.EQ.'BRD' ) THEN IF( STAG.EQ.'2STAG' ) THEN LWORK = 2*NI*NBI + NI*MAX(NBI+1,FACTOPTNB) $ + MAX(2*NBI*NBI, NBI*NTHREADS) $ + (NBI+1)*NI ELSE IF( STAG.EQ.'GE2GB' ) THEN LWORK = NI*NBI + NI*MAX(NBI,FACTOPTNB) + 2*NBI*NBI ELSE IF( STAG.EQ.'GB2BD' ) THEN LWORK = (3*NBI+1)*NI + NBI*NTHREADS ENDIF ENDIF LWORK = MAX ( 1, LWORK ) IF( LWORK.GT.0 ) THEN IPARAM2STAGE = LWORK ELSE IPARAM2STAGE = -1 ENDIF * ELSE IF ( ISPEC .EQ. 21 ) THEN * * ISPEC = 21 for future use IPARAM2STAGE = NXI ENDIF * * ==== End of IPARAM2STAGE ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhegv.f0000644000000000000000000000013214061636515015147 xustar0030 mtime=1623670093.126104152 30 atime=1623670093.126104152 30 ctime=1623670093.126104152 elk-7.2.42/src/LAPACK/zhegv.f0000644002504400250440000002306714061636515017214 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEGV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEGV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK, * LWORK, RWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, UPLO * INTEGER INFO, ITYPE, LDA, LDB, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 A( LDA, * ), B( LDB, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEGV computes all the eigenvalues, and optionally, the eigenvectors *> of a complex generalized Hermitian-definite eigenproblem, of the form *> A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. *> Here A and B are assumed to be Hermitian and B is also *> positive definite. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> Specifies the problem type to be solved: *> = 1: A*x = (lambda)*B*x *> = 2: A*B*x = (lambda)*x *> = 3: B*A*x = (lambda)*x *> \endverbatim *> *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangles of A and B are stored; *> = 'L': Lower triangles of A and B are stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> *> On exit, if JOBZ = 'V', then if INFO = 0, A contains the *> matrix Z of eigenvectors. The eigenvectors are normalized *> as follows: *> if ITYPE = 1 or 2, Z**H*B*Z = I; *> if ITYPE = 3, Z**H*inv(B)*Z = I. *> If JOBZ = 'N', then on exit the upper triangle (if UPLO='U') *> or the lower triangle (if UPLO='L') of A, including the *> diagonal, is destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB, N) *> On entry, the Hermitian positive definite matrix B. *> If UPLO = 'U', the leading N-by-N upper triangular part of B *> contains the upper triangular part of the matrix B. *> If UPLO = 'L', the leading N-by-N lower triangular part of B *> contains the lower triangular part of the matrix B. *> *> On exit, if INFO <= N, the part of B containing the matrix is *> overwritten by the triangular factor U or L from the Cholesky *> factorization B = U**H*U or B = L*L**H. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> If INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,2*N-1). *> For optimal efficiency, LWORK >= (NB+1)*N, *> where NB is the blocksize for ZHETRD returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (max(1, 3*N-2)) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: ZPOTRF or ZHEEV returned an error code: *> <= N: if INFO = i, ZHEEV failed to converge; *> i off-diagonal elements of an intermediate *> tridiagonal form did not converge to zero; *> > N: if INFO = N + i, for 1 <= i <= N, then the leading *> minor of order i of B is not positive definite. *> The factorization of B could not be completed and *> no eigenvalues or eigenvectors were computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEeigen * * ===================================================================== SUBROUTINE ZHEGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK, $ LWORK, RWORK, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, UPLO INTEGER INFO, ITYPE, LDA, LDB, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 A( LDA, * ), B( LDB, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY, UPPER, WANTZ CHARACTER TRANS INTEGER LWKOPT, NB, NEIG * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZHEEV, ZHEGST, ZPOTRF, ZTRMM, ZTRSM * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) UPPER = LSAME( UPLO, 'U' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -2 ELSE IF( .NOT.( UPPER .OR. LSAME( UPLO, 'L' ) ) ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -8 END IF * IF( INFO.EQ.0 ) THEN NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) LWKOPT = MAX( 1, ( NB + 1 )*N ) WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, 2*N - 1 ) .AND. .NOT.LQUERY ) THEN INFO = -11 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEGV ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Form a Cholesky factorization of B. * CALL ZPOTRF( UPLO, N, B, LDB, INFO ) IF( INFO.NE.0 ) THEN INFO = N + INFO RETURN END IF * * Transform problem to standard eigenvalue problem and solve. * CALL ZHEGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) CALL ZHEEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, RWORK, INFO ) * IF( WANTZ ) THEN * * Backtransform eigenvectors to the original problem. * NEIG = N IF( INFO.GT.0 ) $ NEIG = INFO - 1 IF( ITYPE.EQ.1 .OR. ITYPE.EQ.2 ) THEN * * For A*x=(lambda)*B*x and A*B*x=(lambda)*x; * backtransform eigenvectors: x = inv(L)**H *y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' ELSE TRANS = 'C' END IF * CALL ZTRSM( 'Left', UPLO, TRANS, 'Non-unit', N, NEIG, ONE, $ B, LDB, A, LDA ) * ELSE IF( ITYPE.EQ.3 ) THEN * * For B*A*x=(lambda)*x; * backtransform eigenvectors: x = L*y or U**H *y * IF( UPPER ) THEN TRANS = 'C' ELSE TRANS = 'N' END IF * CALL ZTRMM( 'Left', UPLO, TRANS, 'Non-unit', N, NEIG, ONE, $ B, LDB, A, LDA ) END IF END IF * WORK( 1 ) = LWKOPT * RETURN * * End of ZHEGV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dgesv.f0000644000000000000000000000013214061636515015134 xustar0030 mtime=1623670093.128104151 30 atime=1623670093.127104151 30 ctime=1623670093.128104151 elk-7.2.42/src/LAPACK/dgesv.f0000644002504400250440000001202714061636515017173 0ustar00dewhurstdewhurst00000000000000*> \brief DGESV computes the solution to system of linear equations A * X = B for GE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DGESV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DGESV( N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGESV computes the solution to a real system of linear equations *> A * X = B, *> where A is an N-by-N matrix and X and B are N-by-NRHS matrices. *> *> The LU decomposition with partial pivoting and row interchanges is *> used to factor A as *> A = P * L * U, *> where P is a permutation matrix, L is unit lower triangular, and U is *> upper triangular. The factored form of A is then used to solve the *> system of equations A * X = B. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of linear equations, i.e., the order of the *> matrix A. N >= 0. *> \endverbatim *> *> \param[in] NRHS *> \verbatim *> NRHS is INTEGER *> The number of right hand sides, i.e., the number of columns *> of the matrix B. NRHS >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the N-by-N coefficient matrix A. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices that define the permutation matrix P; *> row i of the matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB,NRHS) *> On entry, the N-by-NRHS matrix of right hand side matrix B. *> On exit, if INFO = 0, the N-by-NRHS solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, so the solution could not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleGEsolve * * ===================================================================== SUBROUTINE DGESV( N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. External Subroutines .. EXTERNAL DGETRF, DGETRS, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 IF( N.LT.0 ) THEN INFO = -1 ELSE IF( NRHS.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DGESV ', -INFO ) RETURN END IF * * Compute the LU factorization of A. * CALL DGETRF( N, N, A, LDA, IPIV, INFO ) IF( INFO.EQ.0 ) THEN * * Solve the system A*X = B, overwriting B with X. * CALL DGETRS( 'No transpose', N, NRHS, A, LDA, IPIV, B, LDB, $ INFO ) END IF RETURN * * End of DGESV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhegvx.f0000644000000000000000000000012714061636515015343 xustar0029 mtime=1623670093.12910415 29 atime=1623670093.12910415 29 ctime=1623670093.12910415 elk-7.2.42/src/LAPACK/zhegvx.f0000644002504400250440000003606414061636515017405 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEGVX * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEGVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEGVX( ITYPE, JOBZ, RANGE, UPLO, N, A, LDA, B, LDB, * VL, VU, IL, IU, ABSTOL, M, W, Z, LDZ, WORK, * LWORK, RWORK, IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, ITYPE, IU, LDA, LDB, LDZ, LWORK, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 A( LDA, * ), B( LDB, * ), WORK( * ), * $ Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEGVX computes selected eigenvalues, and optionally, eigenvectors *> of a complex generalized Hermitian-definite eigenproblem, of the form *> A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A and *> B are assumed to be Hermitian and B is also positive definite. *> Eigenvalues and eigenvectors can be selected by specifying either a *> range of values or a range of indices for the desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> Specifies the problem type to be solved: *> = 1: A*x = (lambda)*B*x *> = 2: A*B*x = (lambda)*x *> = 3: B*A*x = (lambda)*x *> \endverbatim *> *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found. *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found. *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangles of A and B are stored; *> = 'L': Lower triangles of A and B are stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> *> On exit, the lower triangle (if UPLO='L') or the upper *> triangle (if UPLO='U') of A, including the diagonal, is *> destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB, N) *> On entry, the Hermitian matrix B. If UPLO = 'U', the *> leading N-by-N upper triangular part of B contains the *> upper triangular part of the matrix B. If UPLO = 'L', *> the leading N-by-N lower triangular part of B contains *> the lower triangular part of the matrix B. *> *> On exit, if INFO <= N, the part of B containing the matrix is *> overwritten by the triangular factor U or L from the Cholesky *> factorization B = U**H*U or B = L*L**H. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing C to tridiagonal form, where C is the symmetric *> matrix of the standard symmetric problem to which the *> generalized problem is transformed. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> The first M elements contain the selected *> eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, max(1,M)) *> If JOBZ = 'N', then Z is not referenced. *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> The eigenvectors are normalized as follows: *> if ITYPE = 1 or 2, Z**T*B*Z = I; *> if ITYPE = 3, Z**T*inv(B)*Z = I. *> *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and the *> index of the eigenvector is returned in IFAIL. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,2*N). *> For optimal efficiency, LWORK >= (NB+1)*N, *> where NB is the blocksize for ZHETRD returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (7*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: ZPOTRF or ZHEEVX returned an error code: *> <= N: if INFO = i, ZHEEVX failed to converge; *> i eigenvectors failed to converge. Their indices *> are stored in array IFAIL. *> > N: if INFO = N + i, for 1 <= i <= N, then the leading *> minor of order i of B is not positive definite. *> The factorization of B could not be completed and *> no eigenvalues or eigenvectors were computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16HEeigen * *> \par Contributors: * ================== *> *> Mark Fahey, Department of Mathematics, Univ. of Kentucky, USA * * ===================================================================== SUBROUTINE ZHEGVX( ITYPE, JOBZ, RANGE, UPLO, N, A, LDA, B, LDB, $ VL, VU, IL, IU, ABSTOL, M, W, Z, LDZ, WORK, $ LWORK, RWORK, IWORK, IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, ITYPE, IU, LDA, LDB, LDZ, LWORK, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 A( LDA, * ), B( LDB, * ), WORK( * ), $ Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, LQUERY, UPPER, VALEIG, WANTZ CHARACTER TRANS INTEGER LWKOPT, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZHEEVX, ZHEGST, ZPOTRF, ZTRMM, ZTRSM * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) UPPER = LSAME( UPLO, 'U' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -2 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -3 ELSE IF( .NOT.( UPPER .OR. LSAME( UPLO, 'L' ) ) ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -7 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -9 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) $ INFO = -11 ELSE IF( INDEIG ) THEN IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN INFO = -12 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -13 END IF END IF END IF IF (INFO.EQ.0) THEN IF (LDZ.LT.1 .OR. (WANTZ .AND. LDZ.LT.N)) THEN INFO = -18 END IF END IF * IF( INFO.EQ.0 ) THEN NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) LWKOPT = MAX( 1, ( NB + 1 )*N ) WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, 2*N ) .AND. .NOT.LQUERY ) THEN INFO = -20 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEGVX', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * M = 0 IF( N.EQ.0 ) THEN RETURN END IF * * Form a Cholesky factorization of B. * CALL ZPOTRF( UPLO, N, B, LDB, INFO ) IF( INFO.NE.0 ) THEN INFO = N + INFO RETURN END IF * * Transform problem to standard eigenvalue problem and solve. * CALL ZHEGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) CALL ZHEEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, ABSTOL, $ M, W, Z, LDZ, WORK, LWORK, RWORK, IWORK, IFAIL, $ INFO ) * IF( WANTZ ) THEN * * Backtransform eigenvectors to the original problem. * IF( INFO.GT.0 ) $ M = INFO - 1 IF( ITYPE.EQ.1 .OR. ITYPE.EQ.2 ) THEN * * For A*x=(lambda)*B*x and A*B*x=(lambda)*x; * backtransform eigenvectors: x = inv(L)**H *y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' ELSE TRANS = 'C' END IF * CALL ZTRSM( 'Left', UPLO, TRANS, 'Non-unit', N, M, CONE, B, $ LDB, Z, LDZ ) * ELSE IF( ITYPE.EQ.3 ) THEN * * For B*A*x=(lambda)*x; * backtransform eigenvectors: x = L*y or U**H *y * IF( UPPER ) THEN TRANS = 'C' ELSE TRANS = 'N' END IF * CALL ZTRMM( 'Left', UPLO, TRANS, 'Non-unit', N, M, CONE, B, $ LDB, Z, LDZ ) END IF END IF * * Set WORK(1) to optimal complex workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of ZHEGVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgeev.f0000644000000000000000000000013214061636515015144 xustar0030 mtime=1623670093.131104148 30 atime=1623670093.131104148 30 ctime=1623670093.131104148 elk-7.2.42/src/LAPACK/zgeev.f0000644002504400250440000003727614061636515017220 0ustar00dewhurstdewhurst00000000000000*> \brief ZGEEV computes the eigenvalues and, optionally, the left and/or right eigenvectors for GE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEEV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEEV( JOBVL, JOBVR, N, A, LDA, W, VL, LDVL, VR, LDVR, * WORK, LWORK, RWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBVL, JOBVR * INTEGER INFO, LDA, LDVL, LDVR, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION RWORK( * ) * COMPLEX*16 A( LDA, * ), VL( LDVL, * ), VR( LDVR, * ), * $ W( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEEV computes for an N-by-N complex nonsymmetric matrix A, the *> eigenvalues and, optionally, the left and/or right eigenvectors. *> *> The right eigenvector v(j) of A satisfies *> A * v(j) = lambda(j) * v(j) *> where lambda(j) is its eigenvalue. *> The left eigenvector u(j) of A satisfies *> u(j)**H * A = lambda(j) * u(j)**H *> where u(j)**H denotes the conjugate transpose of u(j). *> *> The computed eigenvectors are normalized to have Euclidean norm *> equal to 1 and largest component real. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBVL *> \verbatim *> JOBVL is CHARACTER*1 *> = 'N': left eigenvectors of A are not computed; *> = 'V': left eigenvectors of are computed. *> \endverbatim *> *> \param[in] JOBVR *> \verbatim *> JOBVR is CHARACTER*1 *> = 'N': right eigenvectors of A are not computed; *> = 'V': right eigenvectors of A are computed. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the N-by-N matrix A. *> On exit, A has been overwritten. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (N) *> W contains the computed eigenvalues. *> \endverbatim *> *> \param[out] VL *> \verbatim *> VL is COMPLEX*16 array, dimension (LDVL,N) *> If JOBVL = 'V', the left eigenvectors u(j) are stored one *> after another in the columns of VL, in the same order *> as their eigenvalues. *> If JOBVL = 'N', VL is not referenced. *> u(j) = VL(:,j), the j-th column of VL. *> \endverbatim *> *> \param[in] LDVL *> \verbatim *> LDVL is INTEGER *> The leading dimension of the array VL. LDVL >= 1; if *> JOBVL = 'V', LDVL >= N. *> \endverbatim *> *> \param[out] VR *> \verbatim *> VR is COMPLEX*16 array, dimension (LDVR,N) *> If JOBVR = 'V', the right eigenvectors v(j) are stored one *> after another in the columns of VR, in the same order *> as their eigenvalues. *> If JOBVR = 'N', VR is not referenced. *> v(j) = VR(:,j), the j-th column of VR. *> \endverbatim *> *> \param[in] LDVR *> \verbatim *> LDVR is INTEGER *> The leading dimension of the array VR. LDVR >= 1; if *> JOBVR = 'V', LDVR >= N. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,2*N). *> For good performance, LWORK must generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (2*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = i, the QR algorithm failed to compute all the *> eigenvalues, and no eigenvectors have been computed; *> elements i+1:N of W contain eigenvalues which have *> converged. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * * @precisions fortran z -> c * *> \ingroup complex16GEeigen * * ===================================================================== SUBROUTINE ZGEEV( JOBVL, JOBVR, N, A, LDA, W, VL, LDVL, VR, LDVR, $ WORK, LWORK, RWORK, INFO ) implicit none * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBVL, JOBVR INTEGER INFO, LDA, LDVL, LDVR, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION RWORK( * ) COMPLEX*16 A( LDA, * ), VL( LDVL, * ), VR( LDVR, * ), $ W( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. LOGICAL LQUERY, SCALEA, WANTVL, WANTVR CHARACTER SIDE INTEGER HSWORK, I, IBAL, IERR, IHI, ILO, IRWORK, ITAU, $ IWRK, K, LWORK_TREVC, MAXWRK, MINWRK, NOUT DOUBLE PRECISION ANRM, BIGNUM, CSCALE, EPS, SCL, SMLNUM COMPLEX*16 TMP * .. * .. Local Arrays .. LOGICAL SELECT( 1 ) DOUBLE PRECISION DUM( 1 ) * .. * .. External Subroutines .. EXTERNAL DLABAD, XERBLA, ZDSCAL, ZGEBAK, ZGEBAL, ZGEHRD, $ ZHSEQR, ZLACPY, ZLASCL, ZSCAL, ZTREVC3, ZUNGHR * .. * .. External Functions .. LOGICAL LSAME INTEGER IDAMAX, ILAENV DOUBLE PRECISION DLAMCH, DZNRM2, ZLANGE EXTERNAL LSAME, IDAMAX, ILAENV, DLAMCH, DZNRM2, ZLANGE * .. * .. Intrinsic Functions .. INTRINSIC DBLE, DCMPLX, CONJG, AIMAG, MAX, SQRT * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) WANTVL = LSAME( JOBVL, 'V' ) WANTVR = LSAME( JOBVR, 'V' ) IF( ( .NOT.WANTVL ) .AND. ( .NOT.LSAME( JOBVL, 'N' ) ) ) THEN INFO = -1 ELSE IF( ( .NOT.WANTVR ) .AND. ( .NOT.LSAME( JOBVR, 'N' ) ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDVL.LT.1 .OR. ( WANTVL .AND. LDVL.LT.N ) ) THEN INFO = -8 ELSE IF( LDVR.LT.1 .OR. ( WANTVR .AND. LDVR.LT.N ) ) THEN INFO = -10 END IF * * Compute workspace * (Note: Comments in the code beginning "Workspace:" describe the * minimal amount of workspace needed at that point in the code, * as well as the preferred amount for good performance. * CWorkspace refers to complex workspace, and RWorkspace to real * workspace. NB refers to the optimal block size for the * immediately following subroutine, as returned by ILAENV. * HSWORK refers to the workspace preferred by ZHSEQR, as * calculated below. HSWORK is computed assuming ILO=1 and IHI=N, * the worst case.) * IF( INFO.EQ.0 ) THEN IF( N.EQ.0 ) THEN MINWRK = 1 MAXWRK = 1 ELSE MAXWRK = N + N*ILAENV( 1, 'ZGEHRD', ' ', N, 1, N, 0 ) MINWRK = 2*N IF( WANTVL ) THEN MAXWRK = MAX( MAXWRK, N + ( N - 1 )*ILAENV( 1, 'ZUNGHR', $ ' ', N, 1, N, -1 ) ) CALL ZTREVC3( 'L', 'B', SELECT, N, A, LDA, $ VL, LDVL, VR, LDVR, $ N, NOUT, WORK, -1, RWORK, -1, IERR ) LWORK_TREVC = INT( WORK(1) ) MAXWRK = MAX( MAXWRK, N + LWORK_TREVC ) CALL ZHSEQR( 'S', 'V', N, 1, N, A, LDA, W, VL, LDVL, $ WORK, -1, INFO ) ELSE IF( WANTVR ) THEN MAXWRK = MAX( MAXWRK, N + ( N - 1 )*ILAENV( 1, 'ZUNGHR', $ ' ', N, 1, N, -1 ) ) CALL ZTREVC3( 'R', 'B', SELECT, N, A, LDA, $ VL, LDVL, VR, LDVR, $ N, NOUT, WORK, -1, RWORK, -1, IERR ) LWORK_TREVC = INT( WORK(1) ) MAXWRK = MAX( MAXWRK, N + LWORK_TREVC ) CALL ZHSEQR( 'S', 'V', N, 1, N, A, LDA, W, VR, LDVR, $ WORK, -1, INFO ) ELSE CALL ZHSEQR( 'E', 'N', N, 1, N, A, LDA, W, VR, LDVR, $ WORK, -1, INFO ) END IF HSWORK = INT( WORK(1) ) MAXWRK = MAX( MAXWRK, HSWORK, MINWRK ) END IF WORK( 1 ) = MAXWRK * IF( LWORK.LT.MINWRK .AND. .NOT.LQUERY ) THEN INFO = -12 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEEV ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Get machine constants * EPS = DLAMCH( 'P' ) SMLNUM = DLAMCH( 'S' ) BIGNUM = ONE / SMLNUM CALL DLABAD( SMLNUM, BIGNUM ) SMLNUM = SQRT( SMLNUM ) / EPS BIGNUM = ONE / SMLNUM * * Scale A if max element outside range [SMLNUM,BIGNUM] * ANRM = ZLANGE( 'M', N, N, A, LDA, DUM ) SCALEA = .FALSE. IF( ANRM.GT.ZERO .AND. ANRM.LT.SMLNUM ) THEN SCALEA = .TRUE. CSCALE = SMLNUM ELSE IF( ANRM.GT.BIGNUM ) THEN SCALEA = .TRUE. CSCALE = BIGNUM END IF IF( SCALEA ) $ CALL ZLASCL( 'G', 0, 0, ANRM, CSCALE, N, N, A, LDA, IERR ) * * Balance the matrix * (CWorkspace: none) * (RWorkspace: need N) * IBAL = 1 CALL ZGEBAL( 'B', N, A, LDA, ILO, IHI, RWORK( IBAL ), IERR ) * * Reduce to upper Hessenberg form * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: none) * ITAU = 1 IWRK = ITAU + N CALL ZGEHRD( N, ILO, IHI, A, LDA, WORK( ITAU ), WORK( IWRK ), $ LWORK-IWRK+1, IERR ) * IF( WANTVL ) THEN * * Want left eigenvectors * Copy Householder vectors to VL * SIDE = 'L' CALL ZLACPY( 'L', N, N, A, LDA, VL, LDVL ) * * Generate unitary matrix in VL * (CWorkspace: need 2*N-1, prefer N+(N-1)*NB) * (RWorkspace: none) * CALL ZUNGHR( N, ILO, IHI, VL, LDVL, WORK( ITAU ), WORK( IWRK ), $ LWORK-IWRK+1, IERR ) * * Perform QR iteration, accumulating Schur vectors in VL * (CWorkspace: need 1, prefer HSWORK (see comments) ) * (RWorkspace: none) * IWRK = ITAU CALL ZHSEQR( 'S', 'V', N, ILO, IHI, A, LDA, W, VL, LDVL, $ WORK( IWRK ), LWORK-IWRK+1, INFO ) * IF( WANTVR ) THEN * * Want left and right eigenvectors * Copy Schur vectors to VR * SIDE = 'B' CALL ZLACPY( 'F', N, N, VL, LDVL, VR, LDVR ) END IF * ELSE IF( WANTVR ) THEN * * Want right eigenvectors * Copy Householder vectors to VR * SIDE = 'R' CALL ZLACPY( 'L', N, N, A, LDA, VR, LDVR ) * * Generate unitary matrix in VR * (CWorkspace: need 2*N-1, prefer N+(N-1)*NB) * (RWorkspace: none) * CALL ZUNGHR( N, ILO, IHI, VR, LDVR, WORK( ITAU ), WORK( IWRK ), $ LWORK-IWRK+1, IERR ) * * Perform QR iteration, accumulating Schur vectors in VR * (CWorkspace: need 1, prefer HSWORK (see comments) ) * (RWorkspace: none) * IWRK = ITAU CALL ZHSEQR( 'S', 'V', N, ILO, IHI, A, LDA, W, VR, LDVR, $ WORK( IWRK ), LWORK-IWRK+1, INFO ) * ELSE * * Compute eigenvalues only * (CWorkspace: need 1, prefer HSWORK (see comments) ) * (RWorkspace: none) * IWRK = ITAU CALL ZHSEQR( 'E', 'N', N, ILO, IHI, A, LDA, W, VR, LDVR, $ WORK( IWRK ), LWORK-IWRK+1, INFO ) END IF * * If INFO .NE. 0 from ZHSEQR, then quit * IF( INFO.NE.0 ) $ GO TO 50 * IF( WANTVL .OR. WANTVR ) THEN * * Compute left and/or right eigenvectors * (CWorkspace: need 2*N, prefer N + 2*N*NB) * (RWorkspace: need 2*N) * IRWORK = IBAL + N CALL ZTREVC3( SIDE, 'B', SELECT, N, A, LDA, VL, LDVL, VR, LDVR, $ N, NOUT, WORK( IWRK ), LWORK-IWRK+1, $ RWORK( IRWORK ), N, IERR ) END IF * IF( WANTVL ) THEN * * Undo balancing of left eigenvectors * (CWorkspace: none) * (RWorkspace: need N) * CALL ZGEBAK( 'B', 'L', N, ILO, IHI, RWORK( IBAL ), N, VL, LDVL, $ IERR ) * * Normalize left eigenvectors and make largest component real * DO 20 I = 1, N SCL = ONE / DZNRM2( N, VL( 1, I ), 1 ) CALL ZDSCAL( N, SCL, VL( 1, I ), 1 ) DO 10 K = 1, N RWORK( IRWORK+K-1 ) = DBLE( VL( K, I ) )**2 + $ AIMAG( VL( K, I ) )**2 10 CONTINUE K = IDAMAX( N, RWORK( IRWORK ), 1 ) TMP = CONJG( VL( K, I ) ) / SQRT( RWORK( IRWORK+K-1 ) ) CALL ZSCAL( N, TMP, VL( 1, I ), 1 ) VL( K, I ) = DCMPLX( DBLE( VL( K, I ) ), ZERO ) 20 CONTINUE END IF * IF( WANTVR ) THEN * * Undo balancing of right eigenvectors * (CWorkspace: none) * (RWorkspace: need N) * CALL ZGEBAK( 'B', 'R', N, ILO, IHI, RWORK( IBAL ), N, VR, LDVR, $ IERR ) * * Normalize right eigenvectors and make largest component real * DO 40 I = 1, N SCL = ONE / DZNRM2( N, VR( 1, I ), 1 ) CALL ZDSCAL( N, SCL, VR( 1, I ), 1 ) DO 30 K = 1, N RWORK( IRWORK+K-1 ) = DBLE( VR( K, I ) )**2 + $ AIMAG( VR( K, I ) )**2 30 CONTINUE K = IDAMAX( N, RWORK( IRWORK ), 1 ) TMP = CONJG( VR( K, I ) ) / SQRT( RWORK( IRWORK+K-1 ) ) CALL ZSCAL( N, TMP, VR( 1, I ), 1 ) VR( K, I ) = DCMPLX( DBLE( VR( K, I ) ), ZERO ) 40 CONTINUE END IF * * Undo scaling if necessary * 50 CONTINUE IF( SCALEA ) THEN CALL ZLASCL( 'G', 0, 0, CSCALE, ANRM, N-INFO, 1, W( INFO+1 ), $ MAX( N-INFO, 1 ), IERR ) IF( INFO.GT.0 ) THEN CALL ZLASCL( 'G', 0, 0, CSCALE, ANRM, ILO-1, 1, W, N, IERR ) END IF END IF * WORK( 1 ) = MAXWRK RETURN * * End of ZGEEV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zheevd.f0000644000000000000000000000013214061636515015311 xustar0030 mtime=1623670093.133104146 30 atime=1623670093.133104146 30 ctime=1623670093.133104146 elk-7.2.42/src/LAPACK/zheevd.f0000644002504400250440000003133714061636515017355 0ustar00dewhurstdewhurst00000000000000*> \brief ZHEEVD computes the eigenvalues and, optionally, the left and/or right eigenvectors for HE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEEVD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEEVD( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, RWORK, * LRWORK, IWORK, LIWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, UPLO * INTEGER INFO, LDA, LIWORK, LRWORK, LWORK, N * .. * .. Array Arguments .. * INTEGER IWORK( * ) * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEEVD computes all eigenvalues and, optionally, eigenvectors of a *> complex Hermitian matrix A. If eigenvectors are desired, it uses a *> divide and conquer algorithm. *> *> The divide and conquer algorithm makes very mild assumptions about *> floating point arithmetic. It will work on machines with a guard *> digit in add/subtract, or on those binary machines without guard *> digits which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or *> Cray-2. It could conceivably fail on hexadecimal or decimal machines *> without guard digits, but we know of none. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> On exit, if JOBZ = 'V', then if INFO = 0, A contains the *> orthonormal eigenvectors of the matrix A. *> If JOBZ = 'N', then on exit the lower triangle (if UPLO='L') *> or the upper triangle (if UPLO='U') of A, including the *> diagonal, is destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> If INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. *> If N <= 1, LWORK must be at least 1. *> If JOBZ = 'N' and N > 1, LWORK must be at least N + 1. *> If JOBZ = 'V' and N > 1, LWORK must be at least 2*N + N**2. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal sizes of the WORK, RWORK and *> IWORK arrays, returns these values as the first entries of *> the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, *> dimension (LRWORK) *> On exit, if INFO = 0, RWORK(1) returns the optimal LRWORK. *> \endverbatim *> *> \param[in] LRWORK *> \verbatim *> LRWORK is INTEGER *> The dimension of the array RWORK. *> If N <= 1, LRWORK must be at least 1. *> If JOBZ = 'N' and N > 1, LRWORK must be at least N. *> If JOBZ = 'V' and N > 1, LRWORK must be at least *> 1 + 5*N + 2*N**2. *> *> If LRWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal sizes of the WORK, RWORK *> and IWORK arrays, returns these values as the first entries *> of the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (MAX(1,LIWORK)) *> On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK. *> \endverbatim *> *> \param[in] LIWORK *> \verbatim *> LIWORK is INTEGER *> The dimension of the array IWORK. *> If N <= 1, LIWORK must be at least 1. *> If JOBZ = 'N' and N > 1, LIWORK must be at least 1. *> If JOBZ = 'V' and N > 1, LIWORK must be at least 3 + 5*N. *> *> If LIWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal sizes of the WORK, RWORK *> and IWORK arrays, returns these values as the first entries *> of the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i and JOBZ = 'N', then the algorithm failed *> to converge; i off-diagonal elements of an intermediate *> tridiagonal form did not converge to zero; *> if INFO = i and JOBZ = 'V', then the algorithm failed *> to compute an eigenvalue while working on the submatrix *> lying in rows and columns INFO/(N+1) through *> mod(INFO,N+1). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEeigen * *> \par Further Details: * ===================== *> *> Modified description of INFO. Sven, 16 Feb 05. * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA *> * ===================================================================== SUBROUTINE ZHEEVD( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, RWORK, $ LRWORK, IWORK, LIWORK, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, UPLO INTEGER INFO, LDA, LIWORK, LRWORK, LWORK, N * .. * .. Array Arguments .. INTEGER IWORK( * ) DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D0, 0.0D0 ) ) * .. * .. Local Scalars .. LOGICAL LOWER, LQUERY, WANTZ INTEGER IINFO, IMAX, INDE, INDRWK, INDTAU, INDWK2, $ INDWRK, ISCALE, LIOPT, LIWMIN, LLRWK, LLWORK, $ LLWRK2, LOPT, LROPT, LRWMIN, LWMIN DOUBLE PRECISION ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, SIGMA, $ SMLNUM * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, ZLANHE EXTERNAL LSAME, ILAENV, DLAMCH, ZLANHE * .. * .. External Subroutines .. EXTERNAL DSCAL, DSTERF, XERBLA, ZHETRD, ZLACPY, ZLASCL, $ ZSTEDC, ZUNMTR * .. * .. Intrinsic Functions .. INTRINSIC MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) LOWER = LSAME( UPLO, 'L' ) LQUERY = ( LWORK.EQ.-1 .OR. LRWORK.EQ.-1 .OR. LIWORK.EQ.-1 ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF * IF( INFO.EQ.0 ) THEN IF( N.LE.1 ) THEN LWMIN = 1 LRWMIN = 1 LIWMIN = 1 LOPT = LWMIN LROPT = LRWMIN LIOPT = LIWMIN ELSE IF( WANTZ ) THEN LWMIN = 2*N + N*N LRWMIN = 1 + 5*N + 2*N**2 LIWMIN = 3 + 5*N ELSE LWMIN = N + 1 LRWMIN = N LIWMIN = 1 END IF LOPT = MAX( LWMIN, N + $ ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) ) LROPT = LRWMIN LIOPT = LIWMIN END IF WORK( 1 ) = LOPT RWORK( 1 ) = LROPT IWORK( 1 ) = LIOPT * IF( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) THEN INFO = -8 ELSE IF( LRWORK.LT.LRWMIN .AND. .NOT.LQUERY ) THEN INFO = -10 ELSE IF( LIWORK.LT.LIWMIN .AND. .NOT.LQUERY ) THEN INFO = -12 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEEVD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( N.EQ.1 ) THEN W( 1 ) = A( 1, 1 ) IF( WANTZ ) $ A( 1, 1 ) = CONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = SQRT( BIGNUM ) * * Scale matrix to allowable range, if necessary. * ANRM = ZLANHE( 'M', UPLO, N, A, LDA, RWORK ) ISCALE = 0 IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) $ CALL ZLASCL( UPLO, 0, 0, ONE, SIGMA, N, N, A, LDA, INFO ) * * Call ZHETRD to reduce Hermitian matrix to tridiagonal form. * INDE = 1 INDTAU = 1 INDWRK = INDTAU + N INDRWK = INDE + N INDWK2 = INDWRK + N*N LLWORK = LWORK - INDWRK + 1 LLWRK2 = LWORK - INDWK2 + 1 LLRWK = LRWORK - INDRWK + 1 CALL ZHETRD( UPLO, N, A, LDA, W, RWORK( INDE ), WORK( INDTAU ), $ WORK( INDWRK ), LLWORK, IINFO ) * * For eigenvalues only, call DSTERF. For eigenvectors, first call * ZSTEDC to generate the eigenvector matrix, WORK(INDWRK), of the * tridiagonal matrix, then call ZUNMTR to multiply it to the * Householder transformations represented as Householder vectors in * A. * IF( .NOT.WANTZ ) THEN CALL DSTERF( N, W, RWORK( INDE ), INFO ) ELSE CALL ZSTEDC( 'I', N, W, RWORK( INDE ), WORK( INDWRK ), N, $ WORK( INDWK2 ), LLWRK2, RWORK( INDRWK ), LLRWK, $ IWORK, LIWORK, INFO ) CALL ZUNMTR( 'L', UPLO, 'N', N, N, A, LDA, WORK( INDTAU ), $ WORK( INDWRK ), N, WORK( INDWK2 ), LLWRK2, IINFO ) CALL ZLACPY( 'A', N, N, WORK( INDWRK ), N, A, LDA ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = N ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * WORK( 1 ) = LOPT RWORK( 1 ) = LROPT IWORK( 1 ) = LIOPT * RETURN * * End of ZHEEVD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zheev.f0000644000000000000000000000013214061636515015145 xustar0030 mtime=1623670093.135104144 30 atime=1623670093.135104144 30 ctime=1623670093.135104144 elk-7.2.42/src/LAPACK/zheev.f0000644002504400250440000002114614061636515017206 0ustar00dewhurstdewhurst00000000000000*> \brief ZHEEV computes the eigenvalues and, optionally, the left and/or right eigenvectors for HE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEEV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, RWORK, * INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEEV computes all eigenvalues and, optionally, eigenvectors of a *> complex Hermitian matrix A. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> On exit, if JOBZ = 'V', then if INFO = 0, A contains the *> orthonormal eigenvectors of the matrix A. *> If JOBZ = 'N', then on exit the lower triangle (if UPLO='L') *> or the upper triangle (if UPLO='U') of A, including the *> diagonal, is destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> If INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,2*N-1). *> For optimal efficiency, LWORK >= (NB+1)*N, *> where NB is the blocksize for ZHETRD returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (max(1, 3*N-2)) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the algorithm failed to converge; i *> off-diagonal elements of an intermediate tridiagonal *> form did not converge to zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEeigen * * ===================================================================== SUBROUTINE ZHEEV( JOBZ, UPLO, N, A, LDA, W, WORK, LWORK, RWORK, $ INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D0, 0.0D0 ) ) * .. * .. Local Scalars .. LOGICAL LOWER, LQUERY, WANTZ INTEGER IINFO, IMAX, INDE, INDTAU, INDWRK, ISCALE, $ LLWORK, LWKOPT, NB DOUBLE PRECISION ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, SIGMA, $ SMLNUM * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, ZLANHE EXTERNAL LSAME, ILAENV, DLAMCH, ZLANHE * .. * .. External Subroutines .. EXTERNAL DSCAL, DSTERF, XERBLA, ZHETRD, ZLASCL, ZSTEQR, $ ZUNGTR * .. * .. Intrinsic Functions .. INTRINSIC MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) LOWER = LSAME( UPLO, 'L' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF * IF( INFO.EQ.0 ) THEN NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) LWKOPT = MAX( 1, ( NB+1 )*N ) WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, 2*N-1 ) .AND. .NOT.LQUERY ) $ INFO = -8 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEEV ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN RETURN END IF * IF( N.EQ.1 ) THEN W( 1 ) = A( 1, 1 ) WORK( 1 ) = 1 IF( WANTZ ) $ A( 1, 1 ) = CONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = SQRT( BIGNUM ) * * Scale matrix to allowable range, if necessary. * ANRM = ZLANHE( 'M', UPLO, N, A, LDA, RWORK ) ISCALE = 0 IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) $ CALL ZLASCL( UPLO, 0, 0, ONE, SIGMA, N, N, A, LDA, INFO ) * * Call ZHETRD to reduce Hermitian matrix to tridiagonal form. * INDE = 1 INDTAU = 1 INDWRK = INDTAU + N LLWORK = LWORK - INDWRK + 1 CALL ZHETRD( UPLO, N, A, LDA, W, RWORK( INDE ), WORK( INDTAU ), $ WORK( INDWRK ), LLWORK, IINFO ) * * For eigenvalues only, call DSTERF. For eigenvectors, first call * ZUNGTR to generate the unitary matrix, then call ZSTEQR. * IF( .NOT.WANTZ ) THEN CALL DSTERF( N, W, RWORK( INDE ), INFO ) ELSE CALL ZUNGTR( UPLO, N, A, LDA, WORK( INDTAU ), WORK( INDWRK ), $ LLWORK, IINFO ) INDWRK = INDE + N CALL ZSTEQR( JOBZ, N, W, RWORK( INDE ), A, LDA, $ RWORK( INDWRK ), INFO ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = N ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * * Set WORK(1) to optimal complex workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of ZHEEV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgesv.f0000644000000000000000000000013214061636515015162 xustar0030 mtime=1623670093.137104142 30 atime=1623670093.136104143 30 ctime=1623670093.137104142 elk-7.2.42/src/LAPACK/zgesv.f0000644002504400250440000001203214061636515017215 0ustar00dewhurstdewhurst00000000000000*> \brief ZGESV computes the solution to system of linear equations A * X = B for GE matrices (simple driver) * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGESV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGESV( N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGESV computes the solution to a complex system of linear equations *> A * X = B, *> where A is an N-by-N matrix and X and B are N-by-NRHS matrices. *> *> The LU decomposition with partial pivoting and row interchanges is *> used to factor A as *> A = P * L * U, *> where P is a permutation matrix, L is unit lower triangular, and U is *> upper triangular. The factored form of A is then used to solve the *> system of equations A * X = B. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of linear equations, i.e., the order of the *> matrix A. N >= 0. *> \endverbatim *> *> \param[in] NRHS *> \verbatim *> NRHS is INTEGER *> The number of right hand sides, i.e., the number of columns *> of the matrix B. NRHS >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the N-by-N coefficient matrix A. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices that define the permutation matrix P; *> row i of the matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB,NRHS) *> On entry, the N-by-NRHS matrix of right hand side matrix B. *> On exit, if INFO = 0, the N-by-NRHS solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, so the solution could not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16GEsolve * * ===================================================================== SUBROUTINE ZGESV( N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * -- LAPACK driver routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. External Subroutines .. EXTERNAL XERBLA, ZGETRF, ZGETRS * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 IF( N.LT.0 ) THEN INFO = -1 ELSE IF( NRHS.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGESV ', -INFO ) RETURN END IF * * Compute the LU factorization of A. * CALL ZGETRF( N, N, A, LDA, IPIV, INFO ) IF( INFO.EQ.0 ) THEN * * Solve the system A*X = B, overwriting B with X. * CALL ZGETRS( 'No transpose', N, NRHS, A, LDA, IPIV, B, LDB, $ INFO ) END IF RETURN * * End of ZGESV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dgetrf.f0000644000000000000000000000013214061636515015277 xustar0030 mtime=1623670093.138104141 30 atime=1623670093.138104141 30 ctime=1623670093.138104141 elk-7.2.42/src/LAPACK/dgetrf.f0000644002504400250440000001422614061636515017341 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGETRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DGETRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DGETRF( M, N, A, LDA, IPIV, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGETRF computes an LU factorization of a general M-by-N matrix A *> using partial pivoting with row interchanges. *> *> The factorization has the form *> A = P * L * U *> where P is a permutation matrix, L is lower triangular with unit *> diagonal elements (lower trapezoidal if m > n), and U is upper *> triangular (upper trapezoidal if m < n). *> *> This is the right-looking Level 3 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the M-by-N matrix to be factored. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (min(M,N)) *> The pivot indices; for 1 <= i <= min(M,N), row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, and division by zero will occur if it is used *> to solve a system of equations. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleGEcomputational * * ===================================================================== SUBROUTINE DGETRF( M, N, A, LDA, IPIV, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. INTEGER I, IINFO, J, JB, NB * .. * .. External Subroutines .. EXTERNAL DGEMM, DGETRF2, DLASWP, DTRSM, XERBLA * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DGETRF', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'DGETRF', ' ', M, N, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.MIN( M, N ) ) THEN * * Use unblocked code. * CALL DGETRF2( M, N, A, LDA, IPIV, INFO ) ELSE * * Use blocked code. * DO 20 J = 1, MIN( M, N ), NB JB = MIN( MIN( M, N )-J+1, NB ) * * Factor diagonal and subdiagonal blocks and test for exact * singularity. * CALL DGETRF2( M-J+1, JB, A( J, J ), LDA, IPIV( J ), IINFO ) * * Adjust INFO and the pivot indices. * IF( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO + J - 1 DO 10 I = J, MIN( M, J+JB-1 ) IPIV( I ) = J - 1 + IPIV( I ) 10 CONTINUE * * Apply interchanges to columns 1:J-1. * CALL DLASWP( J-1, A, LDA, J, J+JB-1, IPIV, 1 ) * IF( J+JB.LE.N ) THEN * * Apply interchanges to columns J+JB:N. * CALL DLASWP( N-J-JB+1, A( 1, J+JB ), LDA, J, J+JB-1, $ IPIV, 1 ) * * Compute block row of U. * CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', JB, $ N-J-JB+1, ONE, A( J, J ), LDA, A( J, J+JB ), $ LDA ) IF( J+JB.LE.M ) THEN * * Update trailing submatrix. * CALL DGEMM( 'No transpose', 'No transpose', M-J-JB+1, $ N-J-JB+1, JB, -ONE, A( J+JB, J ), LDA, $ A( J, J+JB ), LDA, ONE, A( J+JB, J+JB ), $ LDA ) END IF END IF 20 CONTINUE END IF RETURN * * End of DGETRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dgetri.f0000644000000000000000000000013214061636515015302 xustar0030 mtime=1623670093.140104139 30 atime=1623670093.140104139 30 ctime=1623670093.140104139 elk-7.2.42/src/LAPACK/dgetri.f0000644002504400250440000001631514061636515017345 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGETRI * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DGETRI + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGETRI computes the inverse of a matrix using the LU factorization *> computed by DGETRF. *> *> This method inverts U and then computes inv(A) by solving the system *> inv(A)*L = inv(U) for inv(A). *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the factors L and U from the factorization *> A = P*L*U as computed by DGETRF. *> On exit, if INFO = 0, the inverse of the original matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices from DGETRF; for 1<=i<=N, row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO=0, then WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimal performance LWORK >= N*NB, where NB is *> the optimal blocksize returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero; the matrix is *> singular and its inverse could not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleGEcomputational * * ===================================================================== SUBROUTINE DGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IWS, J, JB, JJ, JP, LDWORK, LWKOPT, NB, $ NBMIN, NN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. External Subroutines .. EXTERNAL DGEMM, DGEMV, DSWAP, DTRSM, DTRTRI, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 NB = ILAENV( 1, 'DGETRI', ' ', N, -1, -1, -1 ) LWKOPT = N*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( N.LT.0 ) THEN INFO = -1 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -3 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DGETRI', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Form inv(U). If INFO > 0 from DTRTRI, then U is singular, * and the inverse is not computed. * CALL DTRTRI( 'Upper', 'Non-unit', N, A, LDA, INFO ) IF( INFO.GT.0 ) $ RETURN * NBMIN = 2 LDWORK = N IF( NB.GT.1 .AND. NB.LT.N ) THEN IWS = MAX( LDWORK*NB, 1 ) IF( LWORK.LT.IWS ) THEN NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'DGETRI', ' ', N, -1, -1, -1 ) ) END IF ELSE IWS = N END IF * * Solve the equation inv(A)*L = inv(U) for inv(A). * IF( NB.LT.NBMIN .OR. NB.GE.N ) THEN * * Use unblocked code. * DO 20 J = N, 1, -1 * * Copy current column of L to WORK and replace with zeros. * DO 10 I = J + 1, N WORK( I ) = A( I, J ) A( I, J ) = ZERO 10 CONTINUE * * Compute current column of inv(A). * IF( J.LT.N ) $ CALL DGEMV( 'No transpose', N, N-J, -ONE, A( 1, J+1 ), $ LDA, WORK( J+1 ), 1, ONE, A( 1, J ), 1 ) 20 CONTINUE ELSE * * Use blocked code. * NN = ( ( N-1 ) / NB )*NB + 1 DO 50 J = NN, 1, -NB JB = MIN( NB, N-J+1 ) * * Copy current block column of L to WORK and replace with * zeros. * DO 40 JJ = J, J + JB - 1 DO 30 I = JJ + 1, N WORK( I+( JJ-J )*LDWORK ) = A( I, JJ ) A( I, JJ ) = ZERO 30 CONTINUE 40 CONTINUE * * Compute current block column of inv(A). * IF( J+JB.LE.N ) $ CALL DGEMM( 'No transpose', 'No transpose', N, JB, $ N-J-JB+1, -ONE, A( 1, J+JB ), LDA, $ WORK( J+JB ), LDWORK, ONE, A( 1, J ), LDA ) CALL DTRSM( 'Right', 'Lower', 'No transpose', 'Unit', N, JB, $ ONE, WORK( J ), LDWORK, A( 1, J ), LDA ) 50 CONTINUE END IF * * Apply column interchanges. * DO 60 J = N - 1, 1, -1 JP = IPIV( J ) IF( JP.NE.J ) $ CALL DSWAP( N, A( 1, J ), 1, A( 1, JP ), 1 ) 60 CONTINUE * WORK( 1 ) = IWS RETURN * * End of DGETRI * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgesvd.f0000644000000000000000000000013214061636515015326 xustar0030 mtime=1623670093.143104137 30 atime=1623670093.141104139 30 ctime=1623670093.143104137 elk-7.2.42/src/LAPACK/zgesvd.f0000644002504400250440000042645314061636515017401 0ustar00dewhurstdewhurst00000000000000*> \brief ZGESVD computes the singular value decomposition (SVD) for GE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGESVD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGESVD( JOBU, JOBVT, M, N, A, LDA, S, U, LDU, VT, LDVT, * WORK, LWORK, RWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBU, JOBVT * INTEGER INFO, LDA, LDU, LDVT, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION RWORK( * ), S( * ) * COMPLEX*16 A( LDA, * ), U( LDU, * ), VT( LDVT, * ), * $ WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGESVD computes the singular value decomposition (SVD) of a complex *> M-by-N matrix A, optionally computing the left and/or right singular *> vectors. The SVD is written *> *> A = U * SIGMA * conjugate-transpose(V) *> *> where SIGMA is an M-by-N matrix which is zero except for its *> min(m,n) diagonal elements, U is an M-by-M unitary matrix, and *> V is an N-by-N unitary matrix. The diagonal elements of SIGMA *> are the singular values of A; they are real and non-negative, and *> are returned in descending order. The first min(m,n) columns of *> U and V are the left and right singular vectors of A. *> *> Note that the routine returns V**H, not V. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBU *> \verbatim *> JOBU is CHARACTER*1 *> Specifies options for computing all or part of the matrix U: *> = 'A': all M columns of U are returned in array U: *> = 'S': the first min(m,n) columns of U (the left singular *> vectors) are returned in the array U; *> = 'O': the first min(m,n) columns of U (the left singular *> vectors) are overwritten on the array A; *> = 'N': no columns of U (no left singular vectors) are *> computed. *> \endverbatim *> *> \param[in] JOBVT *> \verbatim *> JOBVT is CHARACTER*1 *> Specifies options for computing all or part of the matrix *> V**H: *> = 'A': all N rows of V**H are returned in the array VT; *> = 'S': the first min(m,n) rows of V**H (the right singular *> vectors) are returned in the array VT; *> = 'O': the first min(m,n) rows of V**H (the right singular *> vectors) are overwritten on the array A; *> = 'N': no rows of V**H (no right singular vectors) are *> computed. *> *> JOBVT and JOBU cannot both be 'O'. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the input matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the input matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix A. *> On exit, *> if JOBU = 'O', A is overwritten with the first min(m,n) *> columns of U (the left singular vectors, *> stored columnwise); *> if JOBVT = 'O', A is overwritten with the first min(m,n) *> rows of V**H (the right singular vectors, *> stored rowwise); *> if JOBU .ne. 'O' and JOBVT .ne. 'O', the contents of A *> are destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] S *> \verbatim *> S is DOUBLE PRECISION array, dimension (min(M,N)) *> The singular values of A, sorted so that S(i) >= S(i+1). *> \endverbatim *> *> \param[out] U *> \verbatim *> U is COMPLEX*16 array, dimension (LDU,UCOL) *> (LDU,M) if JOBU = 'A' or (LDU,min(M,N)) if JOBU = 'S'. *> If JOBU = 'A', U contains the M-by-M unitary matrix U; *> if JOBU = 'S', U contains the first min(m,n) columns of U *> (the left singular vectors, stored columnwise); *> if JOBU = 'N' or 'O', U is not referenced. *> \endverbatim *> *> \param[in] LDU *> \verbatim *> LDU is INTEGER *> The leading dimension of the array U. LDU >= 1; if *> JOBU = 'S' or 'A', LDU >= M. *> \endverbatim *> *> \param[out] VT *> \verbatim *> VT is COMPLEX*16 array, dimension (LDVT,N) *> If JOBVT = 'A', VT contains the N-by-N unitary matrix *> V**H; *> if JOBVT = 'S', VT contains the first min(m,n) rows of *> V**H (the right singular vectors, stored rowwise); *> if JOBVT = 'N' or 'O', VT is not referenced. *> \endverbatim *> *> \param[in] LDVT *> \verbatim *> LDVT is INTEGER *> The leading dimension of the array VT. LDVT >= 1; if *> JOBVT = 'A', LDVT >= N; if JOBVT = 'S', LDVT >= min(M,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> LWORK >= MAX(1,2*MIN(M,N)+MAX(M,N)). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (5*min(M,N)) *> On exit, if INFO > 0, RWORK(1:MIN(M,N)-1) contains the *> unconverged superdiagonal elements of an upper bidiagonal *> matrix B whose diagonal is in S (not necessarily sorted). *> B satisfies A = U * B * VT, so it has the same singular *> values as A, and singular vectors related by U and VT. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if ZBDSQR did not converge, INFO specifies how many *> superdiagonals of an intermediate bidiagonal form B *> did not converge to zero. See the description of RWORK *> above for details. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date April 2012 * *> \ingroup complex16GEsing * * ===================================================================== SUBROUTINE ZGESVD( JOBU, JOBVT, M, N, A, LDA, S, U, LDU, $ VT, LDVT, WORK, LWORK, RWORK, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * April 2012 * * .. Scalar Arguments .. CHARACTER JOBU, JOBVT INTEGER INFO, LDA, LDU, LDVT, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION RWORK( * ), S( * ) COMPLEX*16 A( LDA, * ), U( LDU, * ), VT( LDVT, * ), $ WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 CZERO, CONE PARAMETER ( CZERO = ( 0.0D0, 0.0D0 ), $ CONE = ( 1.0D0, 0.0D0 ) ) DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. LOGICAL LQUERY, WNTUA, WNTUAS, WNTUN, WNTUO, WNTUS, $ WNTVA, WNTVAS, WNTVN, WNTVO, WNTVS INTEGER BLK, CHUNK, I, IE, IERR, IR, IRWORK, ISCL, $ ITAU, ITAUP, ITAUQ, IU, IWORK, LDWRKR, LDWRKU, $ MAXWRK, MINMN, MINWRK, MNTHR, NCU, NCVT, NRU, $ NRVT, WRKBL INTEGER LWORK_ZGEQRF, LWORK_ZUNGQR_N, LWORK_ZUNGQR_M, $ LWORK_ZGEBRD, LWORK_ZUNGBR_P, LWORK_ZUNGBR_Q, $ LWORK_ZGELQF, LWORK_ZUNGLQ_N, LWORK_ZUNGLQ_M DOUBLE PRECISION ANRM, BIGNUM, EPS, SMLNUM * .. * .. Local Arrays .. DOUBLE PRECISION DUM( 1 ) COMPLEX*16 CDUM( 1 ) * .. * .. External Subroutines .. EXTERNAL DLASCL, XERBLA, ZBDSQR, ZGEBRD, ZGELQF, ZGEMM, $ ZGEQRF, ZLACPY, ZLASCL, ZLASET, ZUNGBR, ZUNGLQ, $ ZUNGQR, ZUNMBR * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, ZLANGE EXTERNAL LSAME, ILAENV, DLAMCH, ZLANGE * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 MINMN = MIN( M, N ) WNTUA = LSAME( JOBU, 'A' ) WNTUS = LSAME( JOBU, 'S' ) WNTUAS = WNTUA .OR. WNTUS WNTUO = LSAME( JOBU, 'O' ) WNTUN = LSAME( JOBU, 'N' ) WNTVA = LSAME( JOBVT, 'A' ) WNTVS = LSAME( JOBVT, 'S' ) WNTVAS = WNTVA .OR. WNTVS WNTVO = LSAME( JOBVT, 'O' ) WNTVN = LSAME( JOBVT, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * IF( .NOT.( WNTUA .OR. WNTUS .OR. WNTUO .OR. WNTUN ) ) THEN INFO = -1 ELSE IF( .NOT.( WNTVA .OR. WNTVS .OR. WNTVO .OR. WNTVN ) .OR. $ ( WNTVO .AND. WNTUO ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -6 ELSE IF( LDU.LT.1 .OR. ( WNTUAS .AND. LDU.LT.M ) ) THEN INFO = -9 ELSE IF( LDVT.LT.1 .OR. ( WNTVA .AND. LDVT.LT.N ) .OR. $ ( WNTVS .AND. LDVT.LT.MINMN ) ) THEN INFO = -11 END IF * * Compute workspace * (Note: Comments in the code beginning "Workspace:" describe the * minimal amount of workspace needed at that point in the code, * as well as the preferred amount for good performance. * CWorkspace refers to complex workspace, and RWorkspace to * real workspace. NB refers to the optimal block size for the * immediately following subroutine, as returned by ILAENV.) * IF( INFO.EQ.0 ) THEN MINWRK = 1 MAXWRK = 1 IF( M.GE.N .AND. MINMN.GT.0 ) THEN * * Space needed for ZBDSQR is BDSPAC = 5*N * MNTHR = ILAENV( 6, 'ZGESVD', JOBU // JOBVT, M, N, 0, 0 ) * Compute space needed for ZGEQRF CALL ZGEQRF( M, N, A, LDA, CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGEQRF = INT( CDUM(1) ) * Compute space needed for ZUNGQR CALL ZUNGQR( M, N, N, A, LDA, CDUM(1), CDUM(1), -1, IERR ) LWORK_ZUNGQR_N = INT( CDUM(1) ) CALL ZUNGQR( M, M, N, A, LDA, CDUM(1), CDUM(1), -1, IERR ) LWORK_ZUNGQR_M = INT( CDUM(1) ) * Compute space needed for ZGEBRD CALL ZGEBRD( N, N, A, LDA, S, DUM(1), CDUM(1), $ CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGEBRD = INT( CDUM(1) ) * Compute space needed for ZUNGBR CALL ZUNGBR( 'P', N, N, N, A, LDA, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_P = INT( CDUM(1) ) CALL ZUNGBR( 'Q', N, N, N, A, LDA, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_Q = INT( CDUM(1) ) * IF( M.GE.MNTHR ) THEN IF( WNTUN ) THEN * * Path 1 (M much larger than N, JOBU='N') * MAXWRK = N + LWORK_ZGEQRF MAXWRK = MAX( MAXWRK, 2*N+LWORK_ZGEBRD ) IF( WNTVO .OR. WNTVAS ) $ MAXWRK = MAX( MAXWRK, 2*N+LWORK_ZUNGBR_P ) MINWRK = 3*N ELSE IF( WNTUO .AND. WNTVN ) THEN * * Path 2 (M much larger than N, JOBU='O', JOBVT='N') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_N ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) MAXWRK = MAX( N*N+WRKBL, N*N+M*N ) MINWRK = 2*N + M ELSE IF( WNTUO .AND. WNTVAS ) THEN * * Path 3 (M much larger than N, JOBU='O', JOBVT='S' or * 'A') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_N ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_P ) MAXWRK = MAX( N*N+WRKBL, N*N+M*N ) MINWRK = 2*N + M ELSE IF( WNTUS .AND. WNTVN ) THEN * * Path 4 (M much larger than N, JOBU='S', JOBVT='N') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_N ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) MAXWRK = N*N + WRKBL MINWRK = 2*N + M ELSE IF( WNTUS .AND. WNTVO ) THEN * * Path 5 (M much larger than N, JOBU='S', JOBVT='O') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_N ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_P ) MAXWRK = 2*N*N + WRKBL MINWRK = 2*N + M ELSE IF( WNTUS .AND. WNTVAS ) THEN * * Path 6 (M much larger than N, JOBU='S', JOBVT='S' or * 'A') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_N ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_P ) MAXWRK = N*N + WRKBL MINWRK = 2*N + M ELSE IF( WNTUA .AND. WNTVN ) THEN * * Path 7 (M much larger than N, JOBU='A', JOBVT='N') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_M ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) MAXWRK = N*N + WRKBL MINWRK = 2*N + M ELSE IF( WNTUA .AND. WNTVO ) THEN * * Path 8 (M much larger than N, JOBU='A', JOBVT='O') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_M ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_P ) MAXWRK = 2*N*N + WRKBL MINWRK = 2*N + M ELSE IF( WNTUA .AND. WNTVAS ) THEN * * Path 9 (M much larger than N, JOBU='A', JOBVT='S' or * 'A') * WRKBL = N + LWORK_ZGEQRF WRKBL = MAX( WRKBL, N+LWORK_ZUNGQR_M ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_Q ) WRKBL = MAX( WRKBL, 2*N+LWORK_ZUNGBR_P ) MAXWRK = N*N + WRKBL MINWRK = 2*N + M END IF ELSE * * Path 10 (M at least N, but not much larger) * CALL ZGEBRD( M, N, A, LDA, S, DUM(1), CDUM(1), $ CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGEBRD = INT( CDUM(1) ) MAXWRK = 2*N + LWORK_ZGEBRD IF( WNTUS .OR. WNTUO ) THEN CALL ZUNGBR( 'Q', M, N, N, A, LDA, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_Q = INT( CDUM(1) ) MAXWRK = MAX( MAXWRK, 2*N+LWORK_ZUNGBR_Q ) END IF IF( WNTUA ) THEN CALL ZUNGBR( 'Q', M, M, N, A, LDA, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_Q = INT( CDUM(1) ) MAXWRK = MAX( MAXWRK, 2*N+LWORK_ZUNGBR_Q ) END IF IF( .NOT.WNTVN ) THEN MAXWRK = MAX( MAXWRK, 2*N+LWORK_ZUNGBR_P ) END IF MINWRK = 2*N + M END IF ELSE IF( MINMN.GT.0 ) THEN * * Space needed for ZBDSQR is BDSPAC = 5*M * MNTHR = ILAENV( 6, 'ZGESVD', JOBU // JOBVT, M, N, 0, 0 ) * Compute space needed for ZGELQF CALL ZGELQF( M, N, A, LDA, CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGELQF = INT( CDUM(1) ) * Compute space needed for ZUNGLQ CALL ZUNGLQ( N, N, M, CDUM(1), N, CDUM(1), CDUM(1), -1, $ IERR ) LWORK_ZUNGLQ_N = INT( CDUM(1) ) CALL ZUNGLQ( M, N, M, A, LDA, CDUM(1), CDUM(1), -1, IERR ) LWORK_ZUNGLQ_M = INT( CDUM(1) ) * Compute space needed for ZGEBRD CALL ZGEBRD( M, M, A, LDA, S, DUM(1), CDUM(1), $ CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGEBRD = INT( CDUM(1) ) * Compute space needed for ZUNGBR P CALL ZUNGBR( 'P', M, M, M, A, N, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_P = INT( CDUM(1) ) * Compute space needed for ZUNGBR Q CALL ZUNGBR( 'Q', M, M, M, A, N, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_Q = INT( CDUM(1) ) IF( N.GE.MNTHR ) THEN IF( WNTVN ) THEN * * Path 1t(N much larger than M, JOBVT='N') * MAXWRK = M + LWORK_ZGELQF MAXWRK = MAX( MAXWRK, 2*M+LWORK_ZGEBRD ) IF( WNTUO .OR. WNTUAS ) $ MAXWRK = MAX( MAXWRK, 2*M+LWORK_ZUNGBR_Q ) MINWRK = 3*M ELSE IF( WNTVO .AND. WNTUN ) THEN * * Path 2t(N much larger than M, JOBU='N', JOBVT='O') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_M ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) MAXWRK = MAX( M*M+WRKBL, M*M+M*N ) MINWRK = 2*M + N ELSE IF( WNTVO .AND. WNTUAS ) THEN * * Path 3t(N much larger than M, JOBU='S' or 'A', * JOBVT='O') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_M ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_Q ) MAXWRK = MAX( M*M+WRKBL, M*M+M*N ) MINWRK = 2*M + N ELSE IF( WNTVS .AND. WNTUN ) THEN * * Path 4t(N much larger than M, JOBU='N', JOBVT='S') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_M ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) MAXWRK = M*M + WRKBL MINWRK = 2*M + N ELSE IF( WNTVS .AND. WNTUO ) THEN * * Path 5t(N much larger than M, JOBU='O', JOBVT='S') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_M ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_Q ) MAXWRK = 2*M*M + WRKBL MINWRK = 2*M + N ELSE IF( WNTVS .AND. WNTUAS ) THEN * * Path 6t(N much larger than M, JOBU='S' or 'A', * JOBVT='S') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_M ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_Q ) MAXWRK = M*M + WRKBL MINWRK = 2*M + N ELSE IF( WNTVA .AND. WNTUN ) THEN * * Path 7t(N much larger than M, JOBU='N', JOBVT='A') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_N ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) MAXWRK = M*M + WRKBL MINWRK = 2*M + N ELSE IF( WNTVA .AND. WNTUO ) THEN * * Path 8t(N much larger than M, JOBU='O', JOBVT='A') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_N ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_Q ) MAXWRK = 2*M*M + WRKBL MINWRK = 2*M + N ELSE IF( WNTVA .AND. WNTUAS ) THEN * * Path 9t(N much larger than M, JOBU='S' or 'A', * JOBVT='A') * WRKBL = M + LWORK_ZGELQF WRKBL = MAX( WRKBL, M+LWORK_ZUNGLQ_N ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZGEBRD ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_P ) WRKBL = MAX( WRKBL, 2*M+LWORK_ZUNGBR_Q ) MAXWRK = M*M + WRKBL MINWRK = 2*M + N END IF ELSE * * Path 10t(N greater than M, but not much larger) * CALL ZGEBRD( M, N, A, LDA, S, DUM(1), CDUM(1), $ CDUM(1), CDUM(1), -1, IERR ) LWORK_ZGEBRD = INT( CDUM(1) ) MAXWRK = 2*M + LWORK_ZGEBRD IF( WNTVS .OR. WNTVO ) THEN * Compute space needed for ZUNGBR P CALL ZUNGBR( 'P', M, N, M, A, N, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_P = INT( CDUM(1) ) MAXWRK = MAX( MAXWRK, 2*M+LWORK_ZUNGBR_P ) END IF IF( WNTVA ) THEN CALL ZUNGBR( 'P', N, N, M, A, N, CDUM(1), $ CDUM(1), -1, IERR ) LWORK_ZUNGBR_P = INT( CDUM(1) ) MAXWRK = MAX( MAXWRK, 2*M+LWORK_ZUNGBR_P ) END IF IF( .NOT.WNTUN ) THEN MAXWRK = MAX( MAXWRK, 2*M+LWORK_ZUNGBR_Q ) END IF MINWRK = 2*M + N END IF END IF MAXWRK = MAX( MAXWRK, MINWRK ) WORK( 1 ) = MAXWRK * IF( LWORK.LT.MINWRK .AND. .NOT.LQUERY ) THEN INFO = -13 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGESVD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) THEN RETURN END IF * * Get machine constants * EPS = DLAMCH( 'P' ) SMLNUM = SQRT( DLAMCH( 'S' ) ) / EPS BIGNUM = ONE / SMLNUM * * Scale A if max element outside range [SMLNUM,BIGNUM] * ANRM = ZLANGE( 'M', M, N, A, LDA, DUM ) ISCL = 0 IF( ANRM.GT.ZERO .AND. ANRM.LT.SMLNUM ) THEN ISCL = 1 CALL ZLASCL( 'G', 0, 0, ANRM, SMLNUM, M, N, A, LDA, IERR ) ELSE IF( ANRM.GT.BIGNUM ) THEN ISCL = 1 CALL ZLASCL( 'G', 0, 0, ANRM, BIGNUM, M, N, A, LDA, IERR ) END IF * IF( M.GE.N ) THEN * * A has at least as many rows as columns. If A has sufficiently * more rows than columns, first reduce using the QR * decomposition (if sufficient workspace available) * IF( M.GE.MNTHR ) THEN * IF( WNTUN ) THEN * * Path 1 (M much larger than N, JOBU='N') * No left singular vectors to be computed * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: need 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Zero out below R * IF( N .GT. 1 ) THEN CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, A( 2, 1 ), $ LDA ) END IF IE = 1 ITAUQ = 1 ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in A * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, A, LDA, S, RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, $ IERR ) NCVT = 0 IF( WNTVO .OR. WNTVAS ) THEN * * If right singular vectors desired, generate P'. * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) NCVT = N END IF IRWORK = IE + N * * Perform bidiagonal QR iteration, computing right * singular vectors of A in A if desired * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, NCVT, 0, 0, S, RWORK( IE ), A, LDA, $ CDUM, 1, CDUM, 1, RWORK( IRWORK ), INFO ) * * If right singular vectors desired in VT, copy them there * IF( WNTVAS ) $ CALL ZLACPY( 'F', N, N, A, LDA, VT, LDVT ) * ELSE IF( WNTUO .AND. WNTVN ) THEN * * Path 2 (M much larger than N, JOBU='O', JOBVT='N') * N left singular vectors to be overwritten on A and * no right singular vectors to be computed * IF( LWORK.GE.N*N+3*N ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.MAX( WRKBL, LDA*N )+LDA*N ) THEN * * WORK(IU) is LDA by N, WORK(IR) is LDA by N * LDWRKU = LDA LDWRKR = LDA ELSE IF( LWORK.GE.MAX( WRKBL, LDA*N )+N*N ) THEN * * WORK(IU) is LDA by N, WORK(IR) is N by N * LDWRKU = LDA LDWRKR = N ELSE * * WORK(IU) is LDWRKU by N, WORK(IR) is N by N * LDWRKU = ( LWORK-N*N ) / N LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IR) and zero out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IR ), LDWRKR ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IR+1 ), LDWRKR ) * * Generate Q in A * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IR ), LDWRKR, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left vectors bidiagonalizing R * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: need 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IR) * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, N, 0, S, RWORK( IE ), CDUM, 1, $ WORK( IR ), LDWRKR, CDUM, 1, $ RWORK( IRWORK ), INFO ) IU = ITAUQ * * Multiply Q in A by left singular vectors of R in * WORK(IR), storing result in WORK(IU) and copying to A * (CWorkspace: need N*N+N, prefer N*N+M*N) * (RWorkspace: 0) * DO 10 I = 1, M, LDWRKU CHUNK = MIN( M-I+1, LDWRKU ) CALL ZGEMM( 'N', 'N', CHUNK, N, N, CONE, A( I, 1 ), $ LDA, WORK( IR ), LDWRKR, CZERO, $ WORK( IU ), LDWRKU ) CALL ZLACPY( 'F', CHUNK, N, WORK( IU ), LDWRKU, $ A( I, 1 ), LDA ) 10 CONTINUE * ELSE * * Insufficient workspace for a fast algorithm * IE = 1 ITAUQ = 1 ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize A * (CWorkspace: need 2*N+M, prefer 2*N+(M+N)*NB) * (RWorkspace: N) * CALL ZGEBRD( M, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left vectors bidiagonalizing A * (CWorkspace: need 3*N, prefer 2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, N, N, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in A * (CWorkspace: need 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, M, 0, S, RWORK( IE ), CDUM, 1, $ A, LDA, CDUM, 1, RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTUO .AND. WNTVAS ) THEN * * Path 3 (M much larger than N, JOBU='O', JOBVT='S' or 'A') * N left singular vectors to be overwritten on A and * N right singular vectors to be computed in VT * IF( LWORK.GE.N*N+3*N ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.MAX( WRKBL, LDA*N )+LDA*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is LDA by N * LDWRKU = LDA LDWRKR = LDA ELSE IF( LWORK.GE.MAX( WRKBL, LDA*N )+N*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is N by N * LDWRKU = LDA LDWRKR = N ELSE * * WORK(IU) is LDWRKU by N and WORK(IR) is N by N * LDWRKU = ( LWORK-N*N ) / N LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to VT, zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, VT, LDVT ) IF( N.GT.1 ) $ CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ VT( 2, 1 ), LDVT ) * * Generate Q in A * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in VT, copying result to WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, VT, LDVT, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', N, N, VT, LDVT, WORK( IR ), LDWRKR ) * * Generate left vectors bidiagonalizing R in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing R in VT * (CWorkspace: need N*N+3*N-1, prefer N*N+2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IR) and computing right * singular vectors of R in VT * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, N, 0, S, RWORK( IE ), VT, $ LDVT, WORK( IR ), LDWRKR, CDUM, 1, $ RWORK( IRWORK ), INFO ) IU = ITAUQ * * Multiply Q in A by left singular vectors of R in * WORK(IR), storing result in WORK(IU) and copying to A * (CWorkspace: need N*N+N, prefer N*N+M*N) * (RWorkspace: 0) * DO 20 I = 1, M, LDWRKU CHUNK = MIN( M-I+1, LDWRKU ) CALL ZGEMM( 'N', 'N', CHUNK, N, N, CONE, A( I, 1 ), $ LDA, WORK( IR ), LDWRKR, CZERO, $ WORK( IU ), LDWRKU ) CALL ZLACPY( 'F', CHUNK, N, WORK( IU ), LDWRKU, $ A( I, 1 ), LDA ) 20 CONTINUE * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to VT, zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, VT, LDVT ) IF( N.GT.1 ) $ CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ VT( 2, 1 ), LDVT ) * * Generate Q in A * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in VT * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: N) * CALL ZGEBRD( N, N, VT, LDVT, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in A by left vectors bidiagonalizing R * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, VT, LDVT, $ WORK( ITAUQ ), A, LDA, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing R in VT * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in A and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, M, 0, S, RWORK( IE ), VT, $ LDVT, A, LDA, CDUM, 1, RWORK( IRWORK ), $ INFO ) * END IF * ELSE IF( WNTUS ) THEN * IF( WNTVN ) THEN * * Path 4 (M much larger than N, JOBU='S', JOBVT='N') * N left singular vectors to be computed in U and * no right singular vectors to be computed * IF( LWORK.GE.N*N+3*N ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.WRKBL+LDA*N ) THEN * * WORK(IR) is LDA by N * LDWRKR = LDA ELSE * * WORK(IR) is N by N * LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IR), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IR ), $ LDWRKR ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IR+1 ), LDWRKR ) * * Generate Q in A * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IR ), LDWRKR, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left vectors bidiagonalizing R in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IR) * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, N, 0, S, RWORK( IE ), CDUM, $ 1, WORK( IR ), LDWRKR, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply Q in A by left singular vectors of R in * WORK(IR), storing result in U * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, A, LDA, $ WORK( IR ), LDWRKR, CZERO, U, LDU ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Zero out below R in A * IF( N .GT. 1 ) THEN CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ A( 2, 1 ), LDA ) END IF * * Bidiagonalize R in A * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left vectors bidiagonalizing R * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, A, LDA, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, M, 0, S, RWORK( IE ), CDUM, $ 1, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * END IF * ELSE IF( WNTVO ) THEN * * Path 5 (M much larger than N, JOBU='S', JOBVT='O') * N left singular vectors to be computed in U and * N right singular vectors to be overwritten on A * IF( LWORK.GE.2*N*N+3*N ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+2*LDA*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is LDA by N * LDWRKU = LDA IR = IU + LDWRKU*N LDWRKR = LDA ELSE IF( LWORK.GE.WRKBL+( LDA+N )*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is N by N * LDWRKU = LDA IR = IU + LDWRKU*N LDWRKR = N ELSE * * WORK(IU) is N by N and WORK(IR) is N by N * LDWRKU = N IR = IU + LDWRKU*N LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need 2*N*N+2*N, prefer 2*N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IU), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IU+1 ), LDWRKU ) * * Generate Q in A * (CWorkspace: need 2*N*N+2*N, prefer 2*N*N+N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IU), copying result to * WORK(IR) * (CWorkspace: need 2*N*N+3*N, * prefer 2*N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', N, N, WORK( IU ), LDWRKU, $ WORK( IR ), LDWRKR ) * * Generate left bidiagonalizing vectors in WORK(IU) * (CWorkspace: need 2*N*N+3*N, prefer 2*N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IU ), LDWRKU, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in WORK(IR) * (CWorkspace: need 2*N*N+3*N-1, * prefer 2*N*N+2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IU) and computing * right singular vectors of R in WORK(IR) * (CWorkspace: need 2*N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, N, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, WORK( IU ), $ LDWRKU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * * Multiply Q in A by left singular vectors of R in * WORK(IU), storing result in U * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, A, LDA, $ WORK( IU ), LDWRKU, CZERO, U, LDU ) * * Copy right singular vectors of R to A * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZLACPY( 'F', N, N, WORK( IR ), LDWRKR, A, $ LDA ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Zero out below R in A * IF( N .GT. 1 ) THEN CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ A( 2, 1 ), LDA ) END IF * * Bidiagonalize R in A * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left vectors bidiagonalizing R * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, A, LDA, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing R in A * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, M, 0, S, RWORK( IE ), A, $ LDA, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * END IF * ELSE IF( WNTVAS ) THEN * * Path 6 (M much larger than N, JOBU='S', JOBVT='S' * or 'A') * N left singular vectors to be computed in U and * N right singular vectors to be computed in VT * IF( LWORK.GE.N*N+3*N ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+LDA*N ) THEN * * WORK(IU) is LDA by N * LDWRKU = LDA ELSE * * WORK(IU) is N by N * LDWRKU = N END IF ITAU = IU + LDWRKU*N IWORK = ITAU + N * * Compute A=Q*R * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IU), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IU+1 ), LDWRKU ) * * Generate Q in A * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IU), copying result to VT * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', N, N, WORK( IU ), LDWRKU, VT, $ LDVT ) * * Generate left bidiagonalizing vectors in WORK(IU) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IU ), LDWRKU, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in VT * (CWorkspace: need N*N+3*N-1, * prefer N*N+2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IU) and computing * right singular vectors of R in VT * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, N, 0, S, RWORK( IE ), VT, $ LDVT, WORK( IU ), LDWRKU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply Q in A by left singular vectors of R in * WORK(IU), storing result in U * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, A, LDA, $ WORK( IU ), LDWRKU, CZERO, U, LDU ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, N, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to VT, zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, VT, LDVT ) IF( N.GT.1 ) $ CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ VT( 2, 1 ), LDVT ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in VT * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, VT, LDVT, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left bidiagonalizing vectors * in VT * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, VT, LDVT, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in VT * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, M, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * END IF * ELSE IF( WNTUA ) THEN * IF( WNTVN ) THEN * * Path 7 (M much larger than N, JOBU='A', JOBVT='N') * M left singular vectors to be computed in U and * no right singular vectors to be computed * IF( LWORK.GE.N*N+MAX( N+M, 3*N ) ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.WRKBL+LDA*N ) THEN * * WORK(IR) is LDA by N * LDWRKR = LDA ELSE * * WORK(IR) is N by N * LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Copy R to WORK(IR), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IR ), $ LDWRKR ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IR+1 ), LDWRKR ) * * Generate Q in U * (CWorkspace: need N*N+N+M, prefer N*N+N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IR ), LDWRKR, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in WORK(IR) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IR) * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, N, 0, S, RWORK( IE ), CDUM, $ 1, WORK( IR ), LDWRKR, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply Q in U by left singular vectors of R in * WORK(IR), storing result in A * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, U, LDU, $ WORK( IR ), LDWRKR, CZERO, A, LDA ) * * Copy left singular vectors of A from A to U * CALL ZLACPY( 'F', M, N, A, LDA, U, LDU ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need N+M, prefer N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Zero out below R in A * IF( N .GT. 1 ) THEN CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ A( 2, 1 ), LDA ) END IF * * Bidiagonalize R in A * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left bidiagonalizing vectors * in A * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, A, LDA, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, 0, M, 0, S, RWORK( IE ), CDUM, $ 1, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * END IF * ELSE IF( WNTVO ) THEN * * Path 8 (M much larger than N, JOBU='A', JOBVT='O') * M left singular vectors to be computed in U and * N right singular vectors to be overwritten on A * IF( LWORK.GE.2*N*N+MAX( N+M, 3*N ) ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+2*LDA*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is LDA by N * LDWRKU = LDA IR = IU + LDWRKU*N LDWRKR = LDA ELSE IF( LWORK.GE.WRKBL+( LDA+N )*N ) THEN * * WORK(IU) is LDA by N and WORK(IR) is N by N * LDWRKU = LDA IR = IU + LDWRKU*N LDWRKR = N ELSE * * WORK(IU) is N by N and WORK(IR) is N by N * LDWRKU = N IR = IU + LDWRKU*N LDWRKR = N END IF ITAU = IR + LDWRKR*N IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N*N+2*N, prefer 2*N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need 2*N*N+N+M, prefer 2*N*N+N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IU), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IU+1 ), LDWRKU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IU), copying result to * WORK(IR) * (CWorkspace: need 2*N*N+3*N, * prefer 2*N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', N, N, WORK( IU ), LDWRKU, $ WORK( IR ), LDWRKR ) * * Generate left bidiagonalizing vectors in WORK(IU) * (CWorkspace: need 2*N*N+3*N, prefer 2*N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IU ), LDWRKU, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in WORK(IR) * (CWorkspace: need 2*N*N+3*N-1, * prefer 2*N*N+2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IU) and computing * right singular vectors of R in WORK(IR) * (CWorkspace: need 2*N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, N, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, WORK( IU ), $ LDWRKU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * * Multiply Q in U by left singular vectors of R in * WORK(IU), storing result in A * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, U, LDU, $ WORK( IU ), LDWRKU, CZERO, A, LDA ) * * Copy left singular vectors of A from A to U * CALL ZLACPY( 'F', M, N, A, LDA, U, LDU ) * * Copy right singular vectors of R from WORK(IR) to A * CALL ZLACPY( 'F', N, N, WORK( IR ), LDWRKR, A, $ LDA ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need N+M, prefer N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Zero out below R in A * IF( N .GT. 1 ) THEN CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ A( 2, 1 ), LDA ) END IF * * Bidiagonalize R in A * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left bidiagonalizing vectors * in A * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, A, LDA, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in A * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, M, 0, S, RWORK( IE ), A, $ LDA, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) * END IF * ELSE IF( WNTVAS ) THEN * * Path 9 (M much larger than N, JOBU='A', JOBVT='S' * or 'A') * M left singular vectors to be computed in U and * N right singular vectors to be computed in VT * IF( LWORK.GE.N*N+MAX( N+M, 3*N ) ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+LDA*N ) THEN * * WORK(IU) is LDA by N * LDWRKU = LDA ELSE * * WORK(IU) is N by N * LDWRKU = N END IF ITAU = IU + LDWRKU*N IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need N*N+2*N, prefer N*N+N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need N*N+N+M, prefer N*N+N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R to WORK(IU), zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ WORK( IU+1 ), LDWRKU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in WORK(IU), copying result to VT * (CWorkspace: need N*N+3*N, prefer N*N+2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', N, N, WORK( IU ), LDWRKU, VT, $ LDVT ) * * Generate left bidiagonalizing vectors in WORK(IU) * (CWorkspace: need N*N+3*N, prefer N*N+2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', N, N, N, WORK( IU ), LDWRKU, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in VT * (CWorkspace: need N*N+3*N-1, * prefer N*N+2*N+(N-1)*NB) * (RWorkspace: need 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of R in WORK(IU) and computing * right singular vectors of R in VT * (CWorkspace: need N*N) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, N, 0, S, RWORK( IE ), VT, $ LDVT, WORK( IU ), LDWRKU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply Q in U by left singular vectors of R in * WORK(IU), storing result in A * (CWorkspace: need N*N) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, N, CONE, U, LDU, $ WORK( IU ), LDWRKU, CZERO, A, LDA ) * * Copy left singular vectors of A from A to U * CALL ZLACPY( 'F', M, N, A, LDA, U, LDU ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + N * * Compute A=Q*R, copying result to U * (CWorkspace: need 2*N, prefer N+N*NB) * (RWorkspace: 0) * CALL ZGEQRF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) * * Generate Q in U * (CWorkspace: need N+M, prefer N+M*NB) * (RWorkspace: 0) * CALL ZUNGQR( M, M, N, U, LDU, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy R from A to VT, zeroing out below it * CALL ZLACPY( 'U', N, N, A, LDA, VT, LDVT ) IF( N.GT.1 ) $ CALL ZLASET( 'L', N-1, N-1, CZERO, CZERO, $ VT( 2, 1 ), LDVT ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize R in VT * (CWorkspace: need 3*N, prefer 2*N+2*N*NB) * (RWorkspace: need N) * CALL ZGEBRD( N, N, VT, LDVT, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply Q in U by left bidiagonalizing vectors * in VT * (CWorkspace: need 2*N+M, prefer 2*N+M*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'Q', 'R', 'N', M, N, N, VT, LDVT, $ WORK( ITAUQ ), U, LDU, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in VT * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + N * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, N, M, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * END IF * END IF * ELSE * * M .LT. MNTHR * * Path 10 (M at least N, but not much larger) * Reduce to bidiagonal form without QR decomposition * IE = 1 ITAUQ = 1 ITAUP = ITAUQ + N IWORK = ITAUP + N * * Bidiagonalize A * (CWorkspace: need 2*N+M, prefer 2*N+(M+N)*NB) * (RWorkspace: need N) * CALL ZGEBRD( M, N, A, LDA, S, RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, $ IERR ) IF( WNTUAS ) THEN * * If left singular vectors desired in U, copy result to U * and generate left bidiagonalizing vectors in U * (CWorkspace: need 2*N+NCU, prefer 2*N+NCU*NB) * (RWorkspace: 0) * CALL ZLACPY( 'L', M, N, A, LDA, U, LDU ) IF( WNTUS ) $ NCU = N IF( WNTUA ) $ NCU = M CALL ZUNGBR( 'Q', M, NCU, N, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTVAS ) THEN * * If right singular vectors desired in VT, copy result to * VT and generate right bidiagonalizing vectors in VT * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZLACPY( 'U', N, N, A, LDA, VT, LDVT ) CALL ZUNGBR( 'P', N, N, N, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTUO ) THEN * * If left singular vectors desired in A, generate left * bidiagonalizing vectors in A * (CWorkspace: need 3*N, prefer 2*N+N*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, N, N, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTVO ) THEN * * If right singular vectors desired in A, generate right * bidiagonalizing vectors in A * (CWorkspace: need 3*N-1, prefer 2*N+(N-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', N, N, N, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IRWORK = IE + N IF( WNTUAS .OR. WNTUO ) $ NRU = M IF( WNTUN ) $ NRU = 0 IF( WNTVAS .OR. WNTVO ) $ NCVT = N IF( WNTVN ) $ NCVT = 0 IF( ( .NOT.WNTUO ) .AND. ( .NOT.WNTVO ) ) THEN * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in U and computing right singular * vectors in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, NCVT, NRU, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) ELSE IF( ( .NOT.WNTUO ) .AND. WNTVO ) THEN * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in U and computing right singular * vectors in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, NCVT, NRU, 0, S, RWORK( IE ), A, $ LDA, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) ELSE * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in A and computing right singular * vectors in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', N, NCVT, NRU, 0, S, RWORK( IE ), VT, $ LDVT, A, LDA, CDUM, 1, RWORK( IRWORK ), $ INFO ) END IF * END IF * ELSE * * A has more columns than rows. If A has sufficiently more * columns than rows, first reduce using the LQ decomposition (if * sufficient workspace available) * IF( N.GE.MNTHR ) THEN * IF( WNTVN ) THEN * * Path 1t(N much larger than M, JOBVT='N') * No right singular vectors to be computed * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Zero out above L * CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, A( 1, 2 ), $ LDA ) IE = 1 ITAUQ = 1 ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in A * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, A, LDA, S, RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, $ IERR ) IF( WNTUO .OR. WNTUAS ) THEN * * If left singular vectors desired, generate Q * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IRWORK = IE + M NRU = 0 IF( WNTUO .OR. WNTUAS ) $ NRU = M * * Perform bidiagonal QR iteration, computing left singular * vectors of A in A if desired * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, 0, NRU, 0, S, RWORK( IE ), CDUM, 1, $ A, LDA, CDUM, 1, RWORK( IRWORK ), INFO ) * * If left singular vectors desired in U, copy them there * IF( WNTUAS ) $ CALL ZLACPY( 'F', M, M, A, LDA, U, LDU ) * ELSE IF( WNTVO .AND. WNTUN ) THEN * * Path 2t(N much larger than M, JOBU='N', JOBVT='O') * M right singular vectors to be overwritten on A and * no left singular vectors to be computed * IF( LWORK.GE.M*M+3*M ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.MAX( WRKBL, LDA*N )+LDA*M ) THEN * * WORK(IU) is LDA by N and WORK(IR) is LDA by M * LDWRKU = LDA CHUNK = N LDWRKR = LDA ELSE IF( LWORK.GE.MAX( WRKBL, LDA*N )+M*M ) THEN * * WORK(IU) is LDA by N and WORK(IR) is M by M * LDWRKU = LDA CHUNK = N LDWRKR = M ELSE * * WORK(IU) is M by CHUNK and WORK(IR) is M by M * LDWRKU = M CHUNK = ( LWORK-M*M ) / M LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IR) and zero out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IR ), LDWRKR ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IR+LDWRKR ), LDWRKR ) * * Generate Q in A * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IR) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IR ), LDWRKR, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing L * (CWorkspace: need M*M+3*M-1, prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of L in WORK(IR) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, 0, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, CDUM, 1, CDUM, 1, $ RWORK( IRWORK ), INFO ) IU = ITAUQ * * Multiply right singular vectors of L in WORK(IR) by Q * in A, storing result in WORK(IU) and copying to A * (CWorkspace: need M*M+M, prefer M*M+M*N) * (RWorkspace: 0) * DO 30 I = 1, N, CHUNK BLK = MIN( N-I+1, CHUNK ) CALL ZGEMM( 'N', 'N', M, BLK, M, CONE, WORK( IR ), $ LDWRKR, A( 1, I ), LDA, CZERO, $ WORK( IU ), LDWRKU ) CALL ZLACPY( 'F', M, BLK, WORK( IU ), LDWRKU, $ A( 1, I ), LDA ) 30 CONTINUE * ELSE * * Insufficient workspace for a fast algorithm * IE = 1 ITAUQ = 1 ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize A * (CWorkspace: need 2*M+N, prefer 2*M+(M+N)*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, N, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing A * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, N, M, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of A in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'L', M, N, 0, 0, S, RWORK( IE ), A, LDA, $ CDUM, 1, CDUM, 1, RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTVO .AND. WNTUAS ) THEN * * Path 3t(N much larger than M, JOBU='S' or 'A', JOBVT='O') * M right singular vectors to be overwritten on A and * M left singular vectors to be computed in U * IF( LWORK.GE.M*M+3*M ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.MAX( WRKBL, LDA*N )+LDA*M ) THEN * * WORK(IU) is LDA by N and WORK(IR) is LDA by M * LDWRKU = LDA CHUNK = N LDWRKR = LDA ELSE IF( LWORK.GE.MAX( WRKBL, LDA*N )+M*M ) THEN * * WORK(IU) is LDA by N and WORK(IR) is M by M * LDWRKU = LDA CHUNK = N LDWRKR = M ELSE * * WORK(IU) is M by CHUNK and WORK(IR) is M by M * LDWRKU = M CHUNK = ( LWORK-M*M ) / M LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to U, zeroing about above it * CALL ZLACPY( 'L', M, M, A, LDA, U, LDU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, U( 1, 2 ), $ LDU ) * * Generate Q in A * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in U, copying result to WORK(IR) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, U, LDU, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, M, U, LDU, WORK( IR ), LDWRKR ) * * Generate right vectors bidiagonalizing L in WORK(IR) * (CWorkspace: need M*M+3*M-1, prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left vectors bidiagonalizing L in U * (CWorkspace: need M*M+3*M, prefer M*M+2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of L in U, and computing right * singular vectors of L in WORK(IR) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, M, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) IU = ITAUQ * * Multiply right singular vectors of L in WORK(IR) by Q * in A, storing result in WORK(IU) and copying to A * (CWorkspace: need M*M+M, prefer M*M+M*N)) * (RWorkspace: 0) * DO 40 I = 1, N, CHUNK BLK = MIN( N-I+1, CHUNK ) CALL ZGEMM( 'N', 'N', M, BLK, M, CONE, WORK( IR ), $ LDWRKR, A( 1, I ), LDA, CZERO, $ WORK( IU ), LDWRKU ) CALL ZLACPY( 'F', M, BLK, WORK( IU ), LDWRKU, $ A( 1, I ), LDA ) 40 CONTINUE * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to U, zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, U, LDU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, U( 1, 2 ), $ LDU ) * * Generate Q in A * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in U * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, U, LDU, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right vectors bidiagonalizing L by Q in A * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, U, LDU, $ WORK( ITAUP ), A, LDA, WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left vectors bidiagonalizing L in U * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, M, 0, S, RWORK( IE ), A, LDA, $ U, LDU, CDUM, 1, RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTVS ) THEN * IF( WNTUN ) THEN * * Path 4t(N much larger than M, JOBU='N', JOBVT='S') * M right singular vectors to be computed in VT and * no left singular vectors to be computed * IF( LWORK.GE.M*M+3*M ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.WRKBL+LDA*M ) THEN * * WORK(IR) is LDA by M * LDWRKR = LDA ELSE * * WORK(IR) is M by M * LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IR), zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IR ), $ LDWRKR ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IR+LDWRKR ), LDWRKR ) * * Generate Q in A * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IR) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IR ), LDWRKR, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right vectors bidiagonalizing L in * WORK(IR) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of L in WORK(IR) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, 0, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, CDUM, 1, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply right singular vectors of L in WORK(IR) by * Q in A, storing result in VT * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IR ), $ LDWRKR, A, LDA, CZERO, VT, LDVT ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy result to VT * CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Zero out above L in A * CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ A( 1, 2 ), LDA ) * * Bidiagonalize L in A * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right vectors bidiagonalizing L by Q in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, A, LDA, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, 0, 0, S, RWORK( IE ), VT, $ LDVT, CDUM, 1, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTUO ) THEN * * Path 5t(N much larger than M, JOBU='O', JOBVT='S') * M right singular vectors to be computed in VT and * M left singular vectors to be overwritten on A * IF( LWORK.GE.2*M*M+3*M ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+2*LDA*M ) THEN * * WORK(IU) is LDA by M and WORK(IR) is LDA by M * LDWRKU = LDA IR = IU + LDWRKU*M LDWRKR = LDA ELSE IF( LWORK.GE.WRKBL+( LDA+M )*M ) THEN * * WORK(IU) is LDA by M and WORK(IR) is M by M * LDWRKU = LDA IR = IU + LDWRKU*M LDWRKR = M ELSE * * WORK(IU) is M by M and WORK(IR) is M by M * LDWRKU = M IR = IU + LDWRKU*M LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need 2*M*M+2*M, prefer 2*M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IU), zeroing out below it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IU+LDWRKU ), LDWRKU ) * * Generate Q in A * (CWorkspace: need 2*M*M+2*M, prefer 2*M*M+M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IU), copying result to * WORK(IR) * (CWorkspace: need 2*M*M+3*M, * prefer 2*M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, M, WORK( IU ), LDWRKU, $ WORK( IR ), LDWRKR ) * * Generate right bidiagonalizing vectors in WORK(IU) * (CWorkspace: need 2*M*M+3*M-1, * prefer 2*M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IU ), LDWRKU, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in WORK(IR) * (CWorkspace: need 2*M*M+3*M, prefer 2*M*M+2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of L in WORK(IR) and computing * right singular vectors of L in WORK(IU) * (CWorkspace: need 2*M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, M, 0, S, RWORK( IE ), $ WORK( IU ), LDWRKU, WORK( IR ), $ LDWRKR, CDUM, 1, RWORK( IRWORK ), $ INFO ) * * Multiply right singular vectors of L in WORK(IU) by * Q in A, storing result in VT * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IU ), $ LDWRKU, A, LDA, CZERO, VT, LDVT ) * * Copy left singular vectors of L to A * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZLACPY( 'F', M, M, WORK( IR ), LDWRKR, A, $ LDA ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Zero out above L in A * CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ A( 1, 2 ), LDA ) * * Bidiagonalize L in A * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right vectors bidiagonalizing L by Q in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, A, LDA, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors of L in A * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of A in A and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, M, 0, S, RWORK( IE ), VT, $ LDVT, A, LDA, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTUAS ) THEN * * Path 6t(N much larger than M, JOBU='S' or 'A', * JOBVT='S') * M right singular vectors to be computed in VT and * M left singular vectors to be computed in U * IF( LWORK.GE.M*M+3*M ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+LDA*M ) THEN * * WORK(IU) is LDA by N * LDWRKU = LDA ELSE * * WORK(IU) is LDA by M * LDWRKU = M END IF ITAU = IU + LDWRKU*M IWORK = ITAU + M * * Compute A=L*Q * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IU), zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IU+LDWRKU ), LDWRKU ) * * Generate Q in A * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IU), copying result to U * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, M, WORK( IU ), LDWRKU, U, $ LDU ) * * Generate right bidiagonalizing vectors in WORK(IU) * (CWorkspace: need M*M+3*M-1, * prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IU ), LDWRKU, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in U * (CWorkspace: need M*M+3*M, prefer M*M+2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of L in U and computing right * singular vectors of L in WORK(IU) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, M, 0, S, RWORK( IE ), $ WORK( IU ), LDWRKU, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply right singular vectors of L in WORK(IU) by * Q in A, storing result in VT * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IU ), $ LDWRKU, A, LDA, CZERO, VT, LDVT ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZUNGLQ( M, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to U, zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, U, LDU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ U( 1, 2 ), LDU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in U * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, U, LDU, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right bidiagonalizing vectors in U by Q * in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, U, LDU, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in U * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, M, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * END IF * ELSE IF( WNTVA ) THEN * IF( WNTUN ) THEN * * Path 7t(N much larger than M, JOBU='N', JOBVT='A') * N right singular vectors to be computed in VT and * no left singular vectors to be computed * IF( LWORK.GE.M*M+MAX( N+M, 3*M ) ) THEN * * Sufficient workspace for a fast algorithm * IR = 1 IF( LWORK.GE.WRKBL+LDA*M ) THEN * * WORK(IR) is LDA by M * LDWRKR = LDA ELSE * * WORK(IR) is M by M * LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Copy L to WORK(IR), zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IR ), $ LDWRKR ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IR+LDWRKR ), LDWRKR ) * * Generate Q in VT * (CWorkspace: need M*M+M+N, prefer M*M+M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IR) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IR ), LDWRKR, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate right bidiagonalizing vectors in WORK(IR) * (CWorkspace: need M*M+3*M-1, * prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of L in WORK(IR) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, 0, 0, S, RWORK( IE ), $ WORK( IR ), LDWRKR, CDUM, 1, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply right singular vectors of L in WORK(IR) by * Q in VT, storing result in A * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IR ), $ LDWRKR, VT, LDVT, CZERO, A, LDA ) * * Copy right singular vectors of A from A to VT * CALL ZLACPY( 'F', M, N, A, LDA, VT, LDVT ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need M+N, prefer M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Zero out above L in A * CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ A( 1, 2 ), LDA ) * * Bidiagonalize L in A * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right bidiagonalizing vectors in A by Q * in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, A, LDA, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, 0, 0, S, RWORK( IE ), VT, $ LDVT, CDUM, 1, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTUO ) THEN * * Path 8t(N much larger than M, JOBU='O', JOBVT='A') * N right singular vectors to be computed in VT and * M left singular vectors to be overwritten on A * IF( LWORK.GE.2*M*M+MAX( N+M, 3*M ) ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+2*LDA*M ) THEN * * WORK(IU) is LDA by M and WORK(IR) is LDA by M * LDWRKU = LDA IR = IU + LDWRKU*M LDWRKR = LDA ELSE IF( LWORK.GE.WRKBL+( LDA+M )*M ) THEN * * WORK(IU) is LDA by M and WORK(IR) is M by M * LDWRKU = LDA IR = IU + LDWRKU*M LDWRKR = M ELSE * * WORK(IU) is M by M and WORK(IR) is M by M * LDWRKU = M IR = IU + LDWRKU*M LDWRKR = M END IF ITAU = IR + LDWRKR*M IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M*M+2*M, prefer 2*M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need 2*M*M+M+N, prefer 2*M*M+M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IU), zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IU+LDWRKU ), LDWRKU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IU), copying result to * WORK(IR) * (CWorkspace: need 2*M*M+3*M, * prefer 2*M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, M, WORK( IU ), LDWRKU, $ WORK( IR ), LDWRKR ) * * Generate right bidiagonalizing vectors in WORK(IU) * (CWorkspace: need 2*M*M+3*M-1, * prefer 2*M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IU ), LDWRKU, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in WORK(IR) * (CWorkspace: need 2*M*M+3*M, prefer 2*M*M+2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, WORK( IR ), LDWRKR, $ WORK( ITAUQ ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of L in WORK(IR) and computing * right singular vectors of L in WORK(IU) * (CWorkspace: need 2*M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, M, 0, S, RWORK( IE ), $ WORK( IU ), LDWRKU, WORK( IR ), $ LDWRKR, CDUM, 1, RWORK( IRWORK ), $ INFO ) * * Multiply right singular vectors of L in WORK(IU) by * Q in VT, storing result in A * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IU ), $ LDWRKU, VT, LDVT, CZERO, A, LDA ) * * Copy right singular vectors of A from A to VT * CALL ZLACPY( 'F', M, N, A, LDA, VT, LDVT ) * * Copy left singular vectors of A from WORK(IR) to A * CALL ZLACPY( 'F', M, M, WORK( IR ), LDWRKR, A, $ LDA ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need M+N, prefer M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Zero out above L in A * CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ A( 1, 2 ), LDA ) * * Bidiagonalize L in A * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, A, LDA, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right bidiagonalizing vectors in A by Q * in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, A, LDA, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in A * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of A in A and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, M, 0, S, RWORK( IE ), VT, $ LDVT, A, LDA, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * ELSE IF( WNTUAS ) THEN * * Path 9t(N much larger than M, JOBU='S' or 'A', * JOBVT='A') * N right singular vectors to be computed in VT and * M left singular vectors to be computed in U * IF( LWORK.GE.M*M+MAX( N+M, 3*M ) ) THEN * * Sufficient workspace for a fast algorithm * IU = 1 IF( LWORK.GE.WRKBL+LDA*M ) THEN * * WORK(IU) is LDA by M * LDWRKU = LDA ELSE * * WORK(IU) is M by M * LDWRKU = M END IF ITAU = IU + LDWRKU*M IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need M*M+2*M, prefer M*M+M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need M*M+M+N, prefer M*M+M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to WORK(IU), zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, WORK( IU ), $ LDWRKU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ WORK( IU+LDWRKU ), LDWRKU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in WORK(IU), copying result to U * (CWorkspace: need M*M+3*M, prefer M*M+2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, WORK( IU ), LDWRKU, S, $ RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) CALL ZLACPY( 'L', M, M, WORK( IU ), LDWRKU, U, $ LDU ) * * Generate right bidiagonalizing vectors in WORK(IU) * (CWorkspace: need M*M+3*M, prefer M*M+2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, M, M, WORK( IU ), LDWRKU, $ WORK( ITAUP ), WORK( IWORK ), $ LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in U * (CWorkspace: need M*M+3*M, prefer M*M+2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of L in U and computing right * singular vectors of L in WORK(IU) * (CWorkspace: need M*M) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, M, M, 0, S, RWORK( IE ), $ WORK( IU ), LDWRKU, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * * Multiply right singular vectors of L in WORK(IU) by * Q in VT, storing result in A * (CWorkspace: need M*M) * (RWorkspace: 0) * CALL ZGEMM( 'N', 'N', M, N, M, CONE, WORK( IU ), $ LDWRKU, VT, LDVT, CZERO, A, LDA ) * * Copy right singular vectors of A from A to VT * CALL ZLACPY( 'F', M, N, A, LDA, VT, LDVT ) * ELSE * * Insufficient workspace for a fast algorithm * ITAU = 1 IWORK = ITAU + M * * Compute A=L*Q, copying result to VT * (CWorkspace: need 2*M, prefer M+M*NB) * (RWorkspace: 0) * CALL ZGELQF( M, N, A, LDA, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) * * Generate Q in VT * (CWorkspace: need M+N, prefer M+N*NB) * (RWorkspace: 0) * CALL ZUNGLQ( N, N, M, VT, LDVT, WORK( ITAU ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Copy L to U, zeroing out above it * CALL ZLACPY( 'L', M, M, A, LDA, U, LDU ) CALL ZLASET( 'U', M-1, M-1, CZERO, CZERO, $ U( 1, 2 ), LDU ) IE = 1 ITAUQ = ITAU ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize L in U * (CWorkspace: need 3*M, prefer 2*M+2*M*NB) * (RWorkspace: need M) * CALL ZGEBRD( M, M, U, LDU, S, RWORK( IE ), $ WORK( ITAUQ ), WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Multiply right bidiagonalizing vectors in U by Q * in VT * (CWorkspace: need 2*M+N, prefer 2*M+N*NB) * (RWorkspace: 0) * CALL ZUNMBR( 'P', 'L', 'C', M, N, M, U, LDU, $ WORK( ITAUP ), VT, LDVT, $ WORK( IWORK ), LWORK-IWORK+1, IERR ) * * Generate left bidiagonalizing vectors in U * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, M, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) IRWORK = IE + M * * Perform bidiagonal QR iteration, computing left * singular vectors of A in U and computing right * singular vectors of A in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'U', M, N, M, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, $ RWORK( IRWORK ), INFO ) * END IF * END IF * END IF * ELSE * * N .LT. MNTHR * * Path 10t(N greater than M, but not much larger) * Reduce to bidiagonal form without LQ decomposition * IE = 1 ITAUQ = 1 ITAUP = ITAUQ + M IWORK = ITAUP + M * * Bidiagonalize A * (CWorkspace: need 2*M+N, prefer 2*M+(M+N)*NB) * (RWorkspace: M) * CALL ZGEBRD( M, N, A, LDA, S, RWORK( IE ), WORK( ITAUQ ), $ WORK( ITAUP ), WORK( IWORK ), LWORK-IWORK+1, $ IERR ) IF( WNTUAS ) THEN * * If left singular vectors desired in U, copy result to U * and generate left bidiagonalizing vectors in U * (CWorkspace: need 3*M-1, prefer 2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZLACPY( 'L', M, M, A, LDA, U, LDU ) CALL ZUNGBR( 'Q', M, M, N, U, LDU, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTVAS ) THEN * * If right singular vectors desired in VT, copy result to * VT and generate right bidiagonalizing vectors in VT * (CWorkspace: need 2*M+NRVT, prefer 2*M+NRVT*NB) * (RWorkspace: 0) * CALL ZLACPY( 'U', M, N, A, LDA, VT, LDVT ) IF( WNTVA ) $ NRVT = N IF( WNTVS ) $ NRVT = M CALL ZUNGBR( 'P', NRVT, N, M, VT, LDVT, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTUO ) THEN * * If left singular vectors desired in A, generate left * bidiagonalizing vectors in A * (CWorkspace: need 3*M-1, prefer 2*M+(M-1)*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'Q', M, M, N, A, LDA, WORK( ITAUQ ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IF( WNTVO ) THEN * * If right singular vectors desired in A, generate right * bidiagonalizing vectors in A * (CWorkspace: need 3*M, prefer 2*M+M*NB) * (RWorkspace: 0) * CALL ZUNGBR( 'P', M, N, M, A, LDA, WORK( ITAUP ), $ WORK( IWORK ), LWORK-IWORK+1, IERR ) END IF IRWORK = IE + M IF( WNTUAS .OR. WNTUO ) $ NRU = M IF( WNTUN ) $ NRU = 0 IF( WNTVAS .OR. WNTVO ) $ NCVT = N IF( WNTVN ) $ NCVT = 0 IF( ( .NOT.WNTUO ) .AND. ( .NOT.WNTVO ) ) THEN * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in U and computing right singular * vectors in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'L', M, NCVT, NRU, 0, S, RWORK( IE ), VT, $ LDVT, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) ELSE IF( ( .NOT.WNTUO ) .AND. WNTVO ) THEN * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in U and computing right singular * vectors in A * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'L', M, NCVT, NRU, 0, S, RWORK( IE ), A, $ LDA, U, LDU, CDUM, 1, RWORK( IRWORK ), $ INFO ) ELSE * * Perform bidiagonal QR iteration, if desired, computing * left singular vectors in A and computing right singular * vectors in VT * (CWorkspace: 0) * (RWorkspace: need BDSPAC) * CALL ZBDSQR( 'L', M, NCVT, NRU, 0, S, RWORK( IE ), VT, $ LDVT, A, LDA, CDUM, 1, RWORK( IRWORK ), $ INFO ) END IF * END IF * END IF * * Undo scaling if necessary * IF( ISCL.EQ.1 ) THEN IF( ANRM.GT.BIGNUM ) $ CALL DLASCL( 'G', 0, 0, BIGNUM, ANRM, MINMN, 1, S, MINMN, $ IERR ) IF( INFO.NE.0 .AND. ANRM.GT.BIGNUM ) $ CALL DLASCL( 'G', 0, 0, BIGNUM, ANRM, MINMN-1, 1, $ RWORK( IE ), MINMN, IERR ) IF( ANRM.LT.SMLNUM ) $ CALL DLASCL( 'G', 0, 0, SMLNUM, ANRM, MINMN, 1, S, MINMN, $ IERR ) IF( INFO.NE.0 .AND. ANRM.LT.SMLNUM ) $ CALL DLASCL( 'G', 0, 0, SMLNUM, ANRM, MINMN-1, 1, $ RWORK( IE ), MINMN, IERR ) END IF * * Return optimal workspace in WORK(1) * WORK( 1 ) = MAXWRK * RETURN * * End of ZGESVD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgetrf.f0000644000000000000000000000013214061636515015325 xustar0030 mtime=1623670093.145104135 30 atime=1623670093.144104136 30 ctime=1623670093.145104135 elk-7.2.42/src/LAPACK/zgetrf.f0000644002504400250440000001423714061636515017371 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGETRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGETRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGETRF( M, N, A, LDA, IPIV, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGETRF computes an LU factorization of a general M-by-N matrix A *> using partial pivoting with row interchanges. *> *> The factorization has the form *> A = P * L * U *> where P is a permutation matrix, L is lower triangular with unit *> diagonal elements (lower trapezoidal if m > n), and U is upper *> triangular (upper trapezoidal if m < n). *> *> This is the right-looking Level 3 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix to be factored. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (min(M,N)) *> The pivot indices; for 1 <= i <= min(M,N), row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, and division by zero will occur if it is used *> to solve a system of equations. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * * ===================================================================== SUBROUTINE ZGETRF( M, N, A, LDA, IPIV, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, IINFO, J, JB, NB * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGEMM, ZGETRF2, ZLASWP, ZTRSM * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGETRF', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'ZGETRF', ' ', M, N, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.MIN( M, N ) ) THEN * * Use unblocked code. * CALL ZGETRF2( M, N, A, LDA, IPIV, INFO ) ELSE * * Use blocked code. * DO 20 J = 1, MIN( M, N ), NB JB = MIN( MIN( M, N )-J+1, NB ) * * Factor diagonal and subdiagonal blocks and test for exact * singularity. * CALL ZGETRF2( M-J+1, JB, A( J, J ), LDA, IPIV( J ), IINFO ) * * Adjust INFO and the pivot indices. * IF( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO + J - 1 DO 10 I = J, MIN( M, J+JB-1 ) IPIV( I ) = J - 1 + IPIV( I ) 10 CONTINUE * * Apply interchanges to columns 1:J-1. * CALL ZLASWP( J-1, A, LDA, J, J+JB-1, IPIV, 1 ) * IF( J+JB.LE.N ) THEN * * Apply interchanges to columns J+JB:N. * CALL ZLASWP( N-J-JB+1, A( 1, J+JB ), LDA, J, J+JB-1, $ IPIV, 1 ) * * Compute block row of U. * CALL ZTRSM( 'Left', 'Lower', 'No transpose', 'Unit', JB, $ N-J-JB+1, ONE, A( J, J ), LDA, A( J, J+JB ), $ LDA ) IF( J+JB.LE.M ) THEN * * Update trailing submatrix. * CALL ZGEMM( 'No transpose', 'No transpose', M-J-JB+1, $ N-J-JB+1, JB, -ONE, A( J+JB, J ), LDA, $ A( J, J+JB ), LDA, ONE, A( J+JB, J+JB ), $ LDA ) END IF END IF 20 CONTINUE END IF RETURN * * End of ZGETRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgetri.f0000644000000000000000000000013214061636515015330 xustar0030 mtime=1623670093.146104134 30 atime=1623670093.146104134 30 ctime=1623670093.146104134 elk-7.2.42/src/LAPACK/zgetri.f0000644002504400250440000001636514061636515017400 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGETRI * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGETRI + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGETRI computes the inverse of a matrix using the LU factorization *> computed by ZGETRF. *> *> This method inverts U and then computes inv(A) by solving the system *> inv(A)*L = inv(U) for inv(A). *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the factors L and U from the factorization *> A = P*L*U as computed by ZGETRF. *> On exit, if INFO = 0, the inverse of the original matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices from ZGETRF; for 1<=i<=N, row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO=0, then WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimal performance LWORK >= N*NB, where NB is *> the optimal blocksize returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero; the matrix is *> singular and its inverse could not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * * ===================================================================== SUBROUTINE ZGETRI( N, A, LDA, IPIV, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IWS, J, JB, JJ, JP, LDWORK, LWKOPT, NB, $ NBMIN, NN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGEMM, ZGEMV, ZSWAP, ZTRSM, ZTRTRI * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 NB = ILAENV( 1, 'ZGETRI', ' ', N, -1, -1, -1 ) LWKOPT = N*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( N.LT.0 ) THEN INFO = -1 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -3 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGETRI', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Form inv(U). If INFO > 0 from ZTRTRI, then U is singular, * and the inverse is not computed. * CALL ZTRTRI( 'Upper', 'Non-unit', N, A, LDA, INFO ) IF( INFO.GT.0 ) $ RETURN * NBMIN = 2 LDWORK = N IF( NB.GT.1 .AND. NB.LT.N ) THEN IWS = MAX( LDWORK*NB, 1 ) IF( LWORK.LT.IWS ) THEN NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZGETRI', ' ', N, -1, -1, -1 ) ) END IF ELSE IWS = N END IF * * Solve the equation inv(A)*L = inv(U) for inv(A). * IF( NB.LT.NBMIN .OR. NB.GE.N ) THEN * * Use unblocked code. * DO 20 J = N, 1, -1 * * Copy current column of L to WORK and replace with zeros. * DO 10 I = J + 1, N WORK( I ) = A( I, J ) A( I, J ) = ZERO 10 CONTINUE * * Compute current column of inv(A). * IF( J.LT.N ) $ CALL ZGEMV( 'No transpose', N, N-J, -ONE, A( 1, J+1 ), $ LDA, WORK( J+1 ), 1, ONE, A( 1, J ), 1 ) 20 CONTINUE ELSE * * Use blocked code. * NN = ( ( N-1 ) / NB )*NB + 1 DO 50 J = NN, 1, -NB JB = MIN( NB, N-J+1 ) * * Copy current block column of L to WORK and replace with * zeros. * DO 40 JJ = J, J + JB - 1 DO 30 I = JJ + 1, N WORK( I+( JJ-J )*LDWORK ) = A( I, JJ ) A( I, JJ ) = ZERO 30 CONTINUE 40 CONTINUE * * Compute current block column of inv(A). * IF( J+JB.LE.N ) $ CALL ZGEMM( 'No transpose', 'No transpose', N, JB, $ N-J-JB+1, -ONE, A( 1, J+JB ), LDA, $ WORK( J+JB ), LDWORK, ONE, A( 1, J ), LDA ) CALL ZTRSM( 'Right', 'Lower', 'No transpose', 'Unit', N, JB, $ ONE, WORK( J ), LDWORK, A( 1, J ), LDA ) 50 CONTINUE END IF * * Apply column interchanges. * DO 60 J = N - 1, 1, -1 JP = IPIV( J ) IF( JP.NE.J ) $ CALL ZSWAP( N, A( 1, J ), 1, A( 1, JP ), 1 ) 60 CONTINUE * WORK( 1 ) = IWS RETURN * * End of ZGETRI * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ilaenv.f0000644000000000000000000000013214061636515015302 xustar0030 mtime=1623670093.148104132 30 atime=1623670093.148104132 30 ctime=1623670093.148104132 elk-7.2.42/src/LAPACK/ilaenv.f0000644002504400250440000005051714061636515017347 0ustar00dewhurstdewhurst00000000000000*> \brief \b ILAENV * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ILAENV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION ILAENV( ISPEC, NAME, OPTS, N1, N2, N3, N4 ) * * .. Scalar Arguments .. * CHARACTER*( * ) NAME, OPTS * INTEGER ISPEC, N1, N2, N3, N4 * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ILAENV is called from the LAPACK routines to choose problem-dependent *> parameters for the local environment. See ISPEC for a description of *> the parameters. *> *> ILAENV returns an INTEGER *> if ILAENV >= 0: ILAENV returns the value of the parameter specified by ISPEC *> if ILAENV < 0: if ILAENV = -k, the k-th argument had an illegal value. *> *> This version provides a set of parameters which should give good, *> but not optimal, performance on many of the currently available *> computers. Users are encouraged to modify this subroutine to set *> the tuning parameters for their particular machine using the option *> and problem size information in the arguments. *> *> This routine will not function correctly if it is converted to all *> lower case. Converting it to all upper case is allowed. *> \endverbatim * * Arguments: * ========== * *> \param[in] ISPEC *> \verbatim *> ISPEC is INTEGER *> Specifies the parameter to be returned as the value of *> ILAENV. *> = 1: the optimal blocksize; if this value is 1, an unblocked *> algorithm will give the best performance. *> = 2: the minimum block size for which the block routine *> should be used; if the usable block size is less than *> this value, an unblocked routine should be used. *> = 3: the crossover point (in a block routine, for N less *> than this value, an unblocked routine should be used) *> = 4: the number of shifts, used in the nonsymmetric *> eigenvalue routines (DEPRECATED) *> = 5: the minimum column dimension for blocking to be used; *> rectangular blocks must have dimension at least k by m, *> where k is given by ILAENV(2,...) and m by ILAENV(5,...) *> = 6: the crossover point for the SVD (when reducing an m by n *> matrix to bidiagonal form, if max(m,n)/min(m,n) exceeds *> this value, a QR factorization is used first to reduce *> the matrix to a triangular form.) *> = 7: the number of processors *> = 8: the crossover point for the multishift QR method *> for nonsymmetric eigenvalue problems (DEPRECATED) *> = 9: maximum size of the subproblems at the bottom of the *> computation tree in the divide-and-conquer algorithm *> (used by xGELSD and xGESDD) *> =10: ieee NaN arithmetic can be trusted not to trap *> =11: infinity arithmetic can be trusted not to trap *> 12 <= ISPEC <= 16: *> xHSEQR or related subroutines, *> see IPARMQ for detailed explanation *> \endverbatim *> *> \param[in] NAME *> \verbatim *> NAME is CHARACTER*(*) *> The name of the calling subroutine, in either upper case or *> lower case. *> \endverbatim *> *> \param[in] OPTS *> \verbatim *> OPTS is CHARACTER*(*) *> The character options to the subroutine NAME, concatenated *> into a single character string. For example, UPLO = 'U', *> TRANS = 'T', and DIAG = 'N' for a triangular routine would *> be specified as OPTS = 'UTN'. *> \endverbatim *> *> \param[in] N1 *> \verbatim *> N1 is INTEGER *> \endverbatim *> *> \param[in] N2 *> \verbatim *> N2 is INTEGER *> \endverbatim *> *> \param[in] N3 *> \verbatim *> N3 is INTEGER *> \endverbatim *> *> \param[in] N4 *> \verbatim *> N4 is INTEGER *> Problem dimensions for the subroutine NAME; these may not all *> be required. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2019 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The following conventions have been used when calling ILAENV from the *> LAPACK routines: *> 1) OPTS is a concatenation of all of the character options to *> subroutine NAME, in the same order that they appear in the *> argument list for NAME, even if they are not used in determining *> the value of the parameter specified by ISPEC. *> 2) The problem dimensions N1, N2, N3, N4 are specified in the order *> that they appear in the argument list for NAME. N1 is used *> first, N2 second, and so on, and unused problem dimensions are *> passed a value of -1. *> 3) The parameter value returned by ILAENV is checked for validity in *> the calling subroutine. For example, ILAENV is used to retrieve *> the optimal blocksize for STRTRI as follows: *> *> NB = ILAENV( 1, 'STRTRI', UPLO // DIAG, N, -1, -1, -1 ) *> IF( NB.LE.1 ) NB = MAX( 1, N ) *> \endverbatim *> * ===================================================================== INTEGER FUNCTION ILAENV( ISPEC, NAME, OPTS, N1, N2, N3, N4 ) * * -- LAPACK auxiliary routine (version 3.9.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2019 * * .. Scalar Arguments .. CHARACTER*( * ) NAME, OPTS INTEGER ISPEC, N1, N2, N3, N4 * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, IC, IZ, NB, NBMIN, NX LOGICAL CNAME, SNAME, TWOSTAGE CHARACTER C1*1, C2*2, C4*2, C3*3, SUBNAM*16 * .. * .. Intrinsic Functions .. INTRINSIC CHAR, ICHAR, INT, MIN, REAL * .. * .. External Functions .. INTEGER IEEECK, IPARMQ, IPARAM2STAGE EXTERNAL IEEECK, IPARMQ, IPARAM2STAGE * .. * .. Executable Statements .. * GO TO ( 10, 10, 10, 80, 90, 100, 110, 120, $ 130, 140, 150, 160, 160, 160, 160, 160)ISPEC * * Invalid value for ISPEC * ILAENV = -1 RETURN * 10 CONTINUE * * Convert NAME to upper case if the first character is lower case. * ILAENV = 1 SUBNAM = NAME IC = ICHAR( SUBNAM( 1: 1 ) ) IZ = ICHAR( 'Z' ) IF( IZ.EQ.90 .OR. IZ.EQ.122 ) THEN * * ASCII character set * IF( IC.GE.97 .AND. IC.LE.122 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO 20 I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.97 .AND. IC.LE.122 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) 20 CONTINUE END IF * ELSE IF( IZ.EQ.233 .OR. IZ.EQ.169 ) THEN * * EBCDIC character set * IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) ) THEN SUBNAM( 1: 1 ) = CHAR( IC+64 ) DO 30 I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) )SUBNAM( I: $ I ) = CHAR( IC+64 ) 30 CONTINUE END IF * ELSE IF( IZ.EQ.218 .OR. IZ.EQ.250 ) THEN * * Prime machines: ASCII+128 * IF( IC.GE.225 .AND. IC.LE.250 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO 40 I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.225 .AND. IC.LE.250 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) 40 CONTINUE END IF END IF * C1 = SUBNAM( 1: 1 ) SNAME = C1.EQ.'S' .OR. C1.EQ.'D' CNAME = C1.EQ.'C' .OR. C1.EQ.'Z' IF( .NOT.( CNAME .OR. SNAME ) ) $ RETURN C2 = SUBNAM( 2: 3 ) C3 = SUBNAM( 4: 6 ) C4 = C3( 2: 3 ) TWOSTAGE = LEN( SUBNAM ).GE.11 $ .AND. SUBNAM( 11: 11 ).EQ.'2' * GO TO ( 50, 60, 70 )ISPEC * 50 CONTINUE * * ISPEC = 1: block size * * In these examples, separate code is provided for setting NB for * real and complex. We assume that NB will take the same value in * single or double precision. * NB = 1 * IF( SUBNAM(2:6).EQ.'LAORH' ) THEN * * This is for *LAORHR_GETRFNP routine * IF( SNAME ) THEN NB = 32 ELSE NB = 32 END IF ELSE IF( C2.EQ.'GE' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF ELSE IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. $ C3.EQ.'QLF' ) THEN IF( SNAME ) THEN NB = 32 ELSE NB = 32 END IF ELSE IF( C3.EQ.'QR ') THEN IF( N3 .EQ. 1) THEN IF( SNAME ) THEN * M*N IF ((N1*N2.LE.131072).OR.(N1.LE.8192)) THEN NB = N1 ELSE NB = 32768/N2 END IF ELSE IF ((N1*N2.LE.131072).OR.(N1.LE.8192)) THEN NB = N1 ELSE NB = 32768/N2 END IF END IF ELSE IF( SNAME ) THEN NB = 1 ELSE NB = 1 END IF END IF ELSE IF( C3.EQ.'LQ ') THEN IF( N3 .EQ. 2) THEN IF( SNAME ) THEN * M*N IF ((N1*N2.LE.131072).OR.(N1.LE.8192)) THEN NB = N1 ELSE NB = 32768/N2 END IF ELSE IF ((N1*N2.LE.131072).OR.(N1.LE.8192)) THEN NB = N1 ELSE NB = 32768/N2 END IF END IF ELSE IF( SNAME ) THEN NB = 1 ELSE NB = 1 END IF END IF ELSE IF( C3.EQ.'HRD' ) THEN IF( SNAME ) THEN NB = 32 ELSE NB = 32 END IF ELSE IF( C3.EQ.'BRD' ) THEN IF( SNAME ) THEN NB = 32 ELSE NB = 32 END IF ELSE IF( C3.EQ.'TRI' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF END IF ELSE IF( C2.EQ.'PO' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF END IF ELSE IF( C2.EQ.'SY' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN IF( TWOSTAGE ) THEN NB = 192 ELSE NB = 64 END IF ELSE IF( TWOSTAGE ) THEN NB = 192 ELSE NB = 64 END IF END IF ELSE IF( SNAME .AND. C3.EQ.'TRD' ) THEN NB = 32 ELSE IF( SNAME .AND. C3.EQ.'GST' ) THEN NB = 64 END IF ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN IF( C3.EQ.'TRF' ) THEN IF( TWOSTAGE ) THEN NB = 192 ELSE NB = 64 END IF ELSE IF( C3.EQ.'TRD' ) THEN NB = 32 ELSE IF( C3.EQ.'GST' ) THEN NB = 64 END IF ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NB = 32 END IF ELSE IF( C3( 1: 1 ).EQ.'M' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NB = 32 END IF END IF ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NB = 32 END IF ELSE IF( C3( 1: 1 ).EQ.'M' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NB = 32 END IF END IF ELSE IF( C2.EQ.'GB' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN IF( N4.LE.64 ) THEN NB = 1 ELSE NB = 32 END IF ELSE IF( N4.LE.64 ) THEN NB = 1 ELSE NB = 32 END IF END IF END IF ELSE IF( C2.EQ.'PB' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN IF( N2.LE.64 ) THEN NB = 1 ELSE NB = 32 END IF ELSE IF( N2.LE.64 ) THEN NB = 1 ELSE NB = 32 END IF END IF END IF ELSE IF( C2.EQ.'TR' ) THEN IF( C3.EQ.'TRI' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF ELSE IF ( C3.EQ.'EVC' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF END IF ELSE IF( C2.EQ.'LA' ) THEN IF( C3.EQ.'UUM' ) THEN IF( SNAME ) THEN NB = 64 ELSE NB = 64 END IF END IF ELSE IF( SNAME .AND. C2.EQ.'ST' ) THEN IF( C3.EQ.'EBZ' ) THEN NB = 1 END IF ELSE IF( C2.EQ.'GG' ) THEN NB = 32 IF( C3.EQ.'HD3' ) THEN IF( SNAME ) THEN NB = 32 ELSE NB = 32 END IF END IF END IF ILAENV = NB RETURN * 60 CONTINUE * * ISPEC = 2: minimum block size * NBMIN = 2 IF( C2.EQ.'GE' ) THEN IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. C3.EQ. $ 'QLF' ) THEN IF( SNAME ) THEN NBMIN = 2 ELSE NBMIN = 2 END IF ELSE IF( C3.EQ.'HRD' ) THEN IF( SNAME ) THEN NBMIN = 2 ELSE NBMIN = 2 END IF ELSE IF( C3.EQ.'BRD' ) THEN IF( SNAME ) THEN NBMIN = 2 ELSE NBMIN = 2 END IF ELSE IF( C3.EQ.'TRI' ) THEN IF( SNAME ) THEN NBMIN = 2 ELSE NBMIN = 2 END IF END IF ELSE IF( C2.EQ.'SY' ) THEN IF( C3.EQ.'TRF' ) THEN IF( SNAME ) THEN NBMIN = 8 ELSE NBMIN = 8 END IF ELSE IF( SNAME .AND. C3.EQ.'TRD' ) THEN NBMIN = 2 END IF ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN IF( C3.EQ.'TRD' ) THEN NBMIN = 2 END IF ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NBMIN = 2 END IF ELSE IF( C3( 1: 1 ).EQ.'M' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NBMIN = 2 END IF END IF ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NBMIN = 2 END IF ELSE IF( C3( 1: 1 ).EQ.'M' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NBMIN = 2 END IF END IF ELSE IF( C2.EQ.'GG' ) THEN NBMIN = 2 IF( C3.EQ.'HD3' ) THEN NBMIN = 2 END IF END IF ILAENV = NBMIN RETURN * 70 CONTINUE * * ISPEC = 3: crossover point * NX = 0 IF( C2.EQ.'GE' ) THEN IF( C3.EQ.'QRF' .OR. C3.EQ.'RQF' .OR. C3.EQ.'LQF' .OR. C3.EQ. $ 'QLF' ) THEN IF( SNAME ) THEN NX = 128 ELSE NX = 128 END IF ELSE IF( C3.EQ.'HRD' ) THEN IF( SNAME ) THEN NX = 128 ELSE NX = 128 END IF ELSE IF( C3.EQ.'BRD' ) THEN IF( SNAME ) THEN NX = 128 ELSE NX = 128 END IF END IF ELSE IF( C2.EQ.'SY' ) THEN IF( SNAME .AND. C3.EQ.'TRD' ) THEN NX = 32 END IF ELSE IF( CNAME .AND. C2.EQ.'HE' ) THEN IF( C3.EQ.'TRD' ) THEN NX = 32 END IF ELSE IF( SNAME .AND. C2.EQ.'OR' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NX = 128 END IF END IF ELSE IF( CNAME .AND. C2.EQ.'UN' ) THEN IF( C3( 1: 1 ).EQ.'G' ) THEN IF( C4.EQ.'QR' .OR. C4.EQ.'RQ' .OR. C4.EQ.'LQ' .OR. C4.EQ. $ 'QL' .OR. C4.EQ.'HR' .OR. C4.EQ.'TR' .OR. C4.EQ.'BR' ) $ THEN NX = 128 END IF END IF ELSE IF( C2.EQ.'GG' ) THEN NX = 128 IF( C3.EQ.'HD3' ) THEN NX = 128 END IF END IF ILAENV = NX RETURN * 80 CONTINUE * * ISPEC = 4: number of shifts (used by xHSEQR) * ILAENV = 6 RETURN * 90 CONTINUE * * ISPEC = 5: minimum column dimension (not used) * ILAENV = 2 RETURN * 100 CONTINUE * * ISPEC = 6: crossover point for SVD (used by xGELSS and xGESVD) * ILAENV = INT( REAL( MIN( N1, N2 ) )*1.6E0 ) RETURN * 110 CONTINUE * * ISPEC = 7: number of processors (not used) * ILAENV = 1 RETURN * 120 CONTINUE * * ISPEC = 8: crossover point for multishift (used by xHSEQR) * ILAENV = 50 RETURN * 130 CONTINUE * * ISPEC = 9: maximum size of the subproblems at the bottom of the * computation tree in the divide-and-conquer algorithm * (used by xGELSD and xGESDD) * ILAENV = 25 RETURN * 140 CONTINUE * * ISPEC = 10: ieee NaN arithmetic can be trusted not to trap * * ILAENV = 0 ILAENV = 1 IF( ILAENV.EQ.1 ) THEN ILAENV = IEEECK( 1, 0.0, 1.0 ) END IF RETURN * 150 CONTINUE * * ISPEC = 11: infinity arithmetic can be trusted not to trap * * ILAENV = 0 ILAENV = 1 IF( ILAENV.EQ.1 ) THEN ILAENV = IEEECK( 0, 0.0, 1.0 ) END IF RETURN * 160 CONTINUE * * 12 <= ISPEC <= 16: xHSEQR or related subroutines. * ILAENV = IPARMQ( ISPEC, NAME, OPTS, N1, N2, N3, N4 ) RETURN * * End of ILAENV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/xerbla.f0000644000000000000000000000012714061636515015305 xustar0029 mtime=1623670093.15010413 29 atime=1623670093.15010413 29 ctime=1623670093.15010413 elk-7.2.42/src/LAPACK/xerbla.f0000644002504400250440000000503114061636515017335 0ustar00dewhurstdewhurst00000000000000*> \brief \b XERBLA * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download XERBLA + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE XERBLA( SRNAME, INFO ) * * .. Scalar Arguments .. * CHARACTER*(*) SRNAME * INTEGER INFO * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> XERBLA is an error handler for the LAPACK routines. *> It is called by an LAPACK routine if an input parameter has an *> invalid value. A message is printed and execution stops. *> *> Installers may consider modifying the STOP statement in order to *> call system-specific exception-handling facilities. *> \endverbatim * * Arguments: * ========== * *> \param[in] SRNAME *> \verbatim *> SRNAME is CHARACTER*(*) *> The name of the routine which called XERBLA. *> \endverbatim *> *> \param[in] INFO *> \verbatim *> INFO is INTEGER *> The position of the invalid parameter in the parameter list *> of the calling routine. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE XERBLA( SRNAME, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER*(*) SRNAME INTEGER INFO * .. * * ===================================================================== * * .. Intrinsic Functions .. INTRINSIC LEN_TRIM * .. * .. Executable Statements .. * WRITE( *, FMT = 9999 )SRNAME( 1:LEN_TRIM( SRNAME ) ), INFO * STOP * 9999 FORMAT( ' ** On entry to ', A, ' parameter number ', I2, ' had ', $ 'an illegal value' ) * * End of XERBLA * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zpptrf.f0000644000000000000000000000013214061636515015351 xustar0030 mtime=1623670093.152104128 30 atime=1623670093.152104128 30 ctime=1623670093.152104128 elk-7.2.42/src/LAPACK/zpptrf.f0000644002504400250440000001447614061636515017422 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZPPTRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZPPTRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZPPTRF( UPLO, N, AP, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, N * .. * .. Array Arguments .. * COMPLEX*16 AP( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZPPTRF computes the Cholesky factorization of a complex Hermitian *> positive definite matrix A stored in packed format. *> *> The factorization has the form *> A = U**H * U, if UPLO = 'U', or *> A = L * L**H, if UPLO = 'L', *> where U is an upper triangular matrix and L is lower triangular. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> A, packed columnwise in a linear array. The j-th column of A *> is stored in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. *> See below for further details. *> *> On exit, if INFO = 0, the triangular factor U or L from the *> Cholesky factorization A = U**H*U or A = L*L**H, in the same *> storage format as A. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the leading minor of order i is not *> positive definite, and the factorization could not be *> completed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The packed storage scheme is illustrated by the following example *> when N = 4, UPLO = 'U': *> *> Two-dimensional storage of the Hermitian matrix A: *> *> a11 a12 a13 a14 *> a22 a23 a24 *> a33 a34 (aij = conjg(aji)) *> a44 *> *> Packed storage of the upper triangle of A: *> *> AP = [ a11, a12, a22, a13, a23, a33, a14, a24, a34, a44 ] *> \endverbatim *> * ===================================================================== SUBROUTINE ZPPTRF( UPLO, N, AP, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, N * .. * .. Array Arguments .. COMPLEX*16 AP( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER J, JC, JJ DOUBLE PRECISION AJJ * .. * .. External Functions .. LOGICAL LSAME COMPLEX*16 ZDOTC EXTERNAL LSAME, ZDOTC * .. * .. External Subroutines .. EXTERNAL XERBLA, ZDSCAL, ZHPR, ZTPSV * .. * .. Intrinsic Functions .. INTRINSIC DBLE, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZPPTRF', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( UPPER ) THEN * * Compute the Cholesky factorization A = U**H * U. * JJ = 0 DO 10 J = 1, N JC = JJ + 1 JJ = JJ + J * * Compute elements 1:J-1 of column J. * IF( J.GT.1 ) $ CALL ZTPSV( 'Upper', 'Conjugate transpose', 'Non-unit', $ J-1, AP, AP( JC ), 1 ) * * Compute U(J,J) and test for non-positive-definiteness. * AJJ = DBLE( AP( JJ ) ) - ZDOTC( J-1, AP( JC ), 1, AP( JC ), $ 1 ) IF( AJJ.LE.ZERO ) THEN AP( JJ ) = AJJ GO TO 30 END IF AP( JJ ) = SQRT( AJJ ) 10 CONTINUE ELSE * * Compute the Cholesky factorization A = L * L**H. * JJ = 1 DO 20 J = 1, N * * Compute L(J,J) and test for non-positive-definiteness. * AJJ = DBLE( AP( JJ ) ) IF( AJJ.LE.ZERO ) THEN AP( JJ ) = AJJ GO TO 30 END IF AJJ = SQRT( AJJ ) AP( JJ ) = AJJ * * Compute elements J+1:N of column J and update the trailing * submatrix. * IF( J.LT.N ) THEN CALL ZDSCAL( N-J, ONE / AJJ, AP( JJ+1 ), 1 ) CALL ZHPR( 'Lower', N-J, -ONE, AP( JJ+1 ), 1, $ AP( JJ+N-J+1 ) ) JJ = JJ + N - J + 1 END IF 20 CONTINUE END IF GO TO 40 * 30 CONTINUE INFO = J * 40 CONTINUE RETURN * * End of ZPPTRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhpgst.f0000644000000000000000000000013214061636515015343 xustar0030 mtime=1623670093.154104127 30 atime=1623670093.153104127 30 ctime=1623670093.154104127 elk-7.2.42/src/LAPACK/zhpgst.f0000644002504400250440000002054214061636515017403 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPGST * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHPGST + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHPGST( ITYPE, UPLO, N, AP, BP, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, ITYPE, N * .. * .. Array Arguments .. * COMPLEX*16 AP( * ), BP( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPGST reduces a complex Hermitian-definite generalized *> eigenproblem to standard form, using packed storage. *> *> If ITYPE = 1, the problem is A*x = lambda*B*x, *> and A is overwritten by inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H) *> *> If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or *> B*A*x = lambda*x, and A is overwritten by U*A*U**H or L**H*A*L. *> *> B must have been previously factorized as U**H*U or L*L**H by ZPPTRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> = 1: compute inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H); *> = 2 or 3: compute U*A*U**H or L**H*A*L. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored and B is factored as *> U**H*U; *> = 'L': Lower triangle of A is stored and B is factored as *> L*L**H. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> A, packed columnwise in a linear array. The j-th column of A *> is stored in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. *> *> On exit, if INFO = 0, the transformed matrix, stored in the *> same format as A. *> \endverbatim *> *> \param[in] BP *> \verbatim *> BP is COMPLEX*16 array, dimension (N*(N+1)/2) *> The triangular factor from the Cholesky factorization of B, *> stored in the same format as A, as returned by ZPPTRF. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZHPGST( ITYPE, UPLO, N, AP, BP, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, ITYPE, N * .. * .. Array Arguments .. COMPLEX*16 AP( * ), BP( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, HALF PARAMETER ( ONE = 1.0D+0, HALF = 0.5D+0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER J, J1, J1J1, JJ, K, K1, K1K1, KK DOUBLE PRECISION AJJ, AKK, BJJ, BKK COMPLEX*16 CT * .. * .. External Subroutines .. EXTERNAL XERBLA, ZAXPY, ZDSCAL, ZHPMV, ZHPR2, ZTPMV, $ ZTPSV * .. * .. Intrinsic Functions .. INTRINSIC DBLE * .. * .. External Functions .. LOGICAL LSAME COMPLEX*16 ZDOTC EXTERNAL LSAME, ZDOTC * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHPGST', -INFO ) RETURN END IF * IF( ITYPE.EQ.1 ) THEN IF( UPPER ) THEN * * Compute inv(U**H)*A*inv(U) * * J1 and JJ are the indices of A(1,j) and A(j,j) * JJ = 0 DO 10 J = 1, N J1 = JJ + 1 JJ = JJ + J * * Compute the j-th column of the upper triangle of A * AP( JJ ) = DBLE( AP( JJ ) ) BJJ = BP( JJ ) CALL ZTPSV( UPLO, 'Conjugate transpose', 'Non-unit', J, $ BP, AP( J1 ), 1 ) CALL ZHPMV( UPLO, J-1, -CONE, AP, BP( J1 ), 1, CONE, $ AP( J1 ), 1 ) CALL ZDSCAL( J-1, ONE / BJJ, AP( J1 ), 1 ) AP( JJ ) = ( AP( JJ )-ZDOTC( J-1, AP( J1 ), 1, BP( J1 ), $ 1 ) ) / BJJ 10 CONTINUE ELSE * * Compute inv(L)*A*inv(L**H) * * KK and K1K1 are the indices of A(k,k) and A(k+1,k+1) * KK = 1 DO 20 K = 1, N K1K1 = KK + N - K + 1 * * Update the lower triangle of A(k:n,k:n) * AKK = AP( KK ) BKK = BP( KK ) AKK = AKK / BKK**2 AP( KK ) = AKK IF( K.LT.N ) THEN CALL ZDSCAL( N-K, ONE / BKK, AP( KK+1 ), 1 ) CT = -HALF*AKK CALL ZAXPY( N-K, CT, BP( KK+1 ), 1, AP( KK+1 ), 1 ) CALL ZHPR2( UPLO, N-K, -CONE, AP( KK+1 ), 1, $ BP( KK+1 ), 1, AP( K1K1 ) ) CALL ZAXPY( N-K, CT, BP( KK+1 ), 1, AP( KK+1 ), 1 ) CALL ZTPSV( UPLO, 'No transpose', 'Non-unit', N-K, $ BP( K1K1 ), AP( KK+1 ), 1 ) END IF KK = K1K1 20 CONTINUE END IF ELSE IF( UPPER ) THEN * * Compute U*A*U**H * * K1 and KK are the indices of A(1,k) and A(k,k) * KK = 0 DO 30 K = 1, N K1 = KK + 1 KK = KK + K * * Update the upper triangle of A(1:k,1:k) * AKK = AP( KK ) BKK = BP( KK ) CALL ZTPMV( UPLO, 'No transpose', 'Non-unit', K-1, BP, $ AP( K1 ), 1 ) CT = HALF*AKK CALL ZAXPY( K-1, CT, BP( K1 ), 1, AP( K1 ), 1 ) CALL ZHPR2( UPLO, K-1, CONE, AP( K1 ), 1, BP( K1 ), 1, $ AP ) CALL ZAXPY( K-1, CT, BP( K1 ), 1, AP( K1 ), 1 ) CALL ZDSCAL( K-1, BKK, AP( K1 ), 1 ) AP( KK ) = AKK*BKK**2 30 CONTINUE ELSE * * Compute L**H *A*L * * JJ and J1J1 are the indices of A(j,j) and A(j+1,j+1) * JJ = 1 DO 40 J = 1, N J1J1 = JJ + N - J + 1 * * Compute the j-th column of the lower triangle of A * AJJ = AP( JJ ) BJJ = BP( JJ ) AP( JJ ) = AJJ*BJJ + ZDOTC( N-J, AP( JJ+1 ), 1, $ BP( JJ+1 ), 1 ) CALL ZDSCAL( N-J, BJJ, AP( JJ+1 ), 1 ) CALL ZHPMV( UPLO, N-J, CONE, AP( J1J1 ), BP( JJ+1 ), 1, $ CONE, AP( JJ+1 ), 1 ) CALL ZTPMV( UPLO, 'Conjugate transpose', 'Non-unit', $ N-J+1, BP( JJ ), AP( JJ ), 1 ) JJ = J1J1 40 CONTINUE END IF END IF RETURN * * End of ZHPGST * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhpevx.f0000644000000000000000000000013214061636515015350 xustar0030 mtime=1623670093.156104125 30 atime=1623670093.155104125 30 ctime=1623670093.156104125 elk-7.2.42/src/LAPACK/zhpevx.f0000644002504400250440000003762714061636515017424 0ustar00dewhurstdewhurst00000000000000*> \brief ZHPEVX computes the eigenvalues and, optionally, the left and/or right eigenvectors for OTHER matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHPEVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHPEVX( JOBZ, RANGE, UPLO, N, AP, VL, VU, IL, IU, * ABSTOL, M, W, Z, LDZ, WORK, RWORK, IWORK, * IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, IU, LDZ, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 AP( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPEVX computes selected eigenvalues and, optionally, eigenvectors *> of a complex Hermitian matrix A in packed storage. *> Eigenvalues/vectors can be selected by specifying either a range of *> values or a range of indices for the desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found; *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found; *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> A, packed columnwise in a linear array. The j-th column of A *> is stored in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. *> *> On exit, AP is overwritten by values generated during the *> reduction to tridiagonal form. If UPLO = 'U', the diagonal *> and first superdiagonal of the tridiagonal matrix T overwrite *> the corresponding elements of A, and if UPLO = 'L', the *> diagonal and first subdiagonal of T overwrite the *> corresponding elements of A. *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing AP to tridiagonal form. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> *> See "Computing Small Singular Values of Bidiagonal Matrices *> with Guaranteed High Relative Accuracy," by Demmel and *> Kahan, LAPACK Working Note #3. *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> If INFO = 0, the selected eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, max(1,M)) *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and *> the index of the eigenvector is returned in IFAIL. *> If JOBZ = 'N', then Z is not referenced. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (2*N) *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (7*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, then i eigenvectors failed to converge. *> Their indices are stored in array IFAIL. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHEReigen * * ===================================================================== SUBROUTINE ZHPEVX( JOBZ, RANGE, UPLO, N, AP, VL, VU, IL, IU, $ ABSTOL, M, W, Z, LDZ, WORK, RWORK, IWORK, $ IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, IU, LDZ, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 AP( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D0, 0.0D0 ) ) * .. * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, TEST, VALEIG, WANTZ CHARACTER ORDER INTEGER I, IINFO, IMAX, INDD, INDE, INDEE, INDIBL, $ INDISP, INDIWK, INDRWK, INDTAU, INDWRK, ISCALE, $ ITMP1, J, JJ, NSPLIT DOUBLE PRECISION ABSTLL, ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, $ SIGMA, SMLNUM, TMP1, VLL, VUU * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DLAMCH, ZLANHP EXTERNAL LSAME, DLAMCH, ZLANHP * .. * .. External Subroutines .. EXTERNAL DCOPY, DSCAL, DSTEBZ, DSTERF, XERBLA, ZDSCAL, $ ZHPTRD, ZSTEIN, ZSTEQR, ZSWAP, ZUPGTR, ZUPMTR * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * WANTZ = LSAME( JOBZ, 'V' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -2 ELSE IF( .NOT.( LSAME( UPLO, 'L' ) .OR. LSAME( UPLO, 'U' ) ) ) $ THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) $ INFO = -7 ELSE IF( INDEIG ) THEN IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN INFO = -8 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -9 END IF END IF END IF IF( INFO.EQ.0 ) THEN IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.N ) ) $ INFO = -14 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHPEVX', -INFO ) RETURN END IF * * Quick return if possible * M = 0 IF( N.EQ.0 ) $ RETURN * IF( N.EQ.1 ) THEN IF( ALLEIG .OR. INDEIG ) THEN M = 1 W( 1 ) = AP( 1 ) ELSE IF( VL.LT.DBLE( AP( 1 ) ) .AND. VU.GE.DBLE( AP( 1 ) ) ) THEN M = 1 W( 1 ) = AP( 1 ) END IF END IF IF( WANTZ ) $ Z( 1, 1 ) = CONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = MIN( SQRT( BIGNUM ), ONE / SQRT( SQRT( SAFMIN ) ) ) * * Scale matrix to allowable range, if necessary. * ISCALE = 0 ABSTLL = ABSTOL IF( VALEIG ) THEN VLL = VL VUU = VU ELSE VLL = ZERO VUU = ZERO END IF ANRM = ZLANHP( 'M', UPLO, N, AP, RWORK ) IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) THEN CALL ZDSCAL( ( N*( N+1 ) ) / 2, SIGMA, AP, 1 ) IF( ABSTOL.GT.0 ) $ ABSTLL = ABSTOL*SIGMA IF( VALEIG ) THEN VLL = VL*SIGMA VUU = VU*SIGMA END IF END IF * * Call ZHPTRD to reduce Hermitian packed matrix to tridiagonal form. * INDD = 1 INDE = INDD + N INDRWK = INDE + N INDTAU = 1 INDWRK = INDTAU + N CALL ZHPTRD( UPLO, N, AP, RWORK( INDD ), RWORK( INDE ), $ WORK( INDTAU ), IINFO ) * * If all eigenvalues are desired and ABSTOL is less than or equal * to zero, then call DSTERF or ZUPGTR and ZSTEQR. If this fails * for some eigenvalue, then try DSTEBZ. * TEST = .FALSE. IF (INDEIG) THEN IF (IL.EQ.1 .AND. IU.EQ.N) THEN TEST = .TRUE. END IF END IF IF ((ALLEIG .OR. TEST) .AND. (ABSTOL.LE.ZERO)) THEN CALL DCOPY( N, RWORK( INDD ), 1, W, 1 ) INDEE = INDRWK + 2*N IF( .NOT.WANTZ ) THEN CALL DCOPY( N-1, RWORK( INDE ), 1, RWORK( INDEE ), 1 ) CALL DSTERF( N, W, RWORK( INDEE ), INFO ) ELSE CALL ZUPGTR( UPLO, N, AP, WORK( INDTAU ), Z, LDZ, $ WORK( INDWRK ), IINFO ) CALL DCOPY( N-1, RWORK( INDE ), 1, RWORK( INDEE ), 1 ) CALL ZSTEQR( JOBZ, N, W, RWORK( INDEE ), Z, LDZ, $ RWORK( INDRWK ), INFO ) IF( INFO.EQ.0 ) THEN DO 10 I = 1, N IFAIL( I ) = 0 10 CONTINUE END IF END IF IF( INFO.EQ.0 ) THEN M = N GO TO 20 END IF INFO = 0 END IF * * Otherwise, call DSTEBZ and, if eigenvectors are desired, ZSTEIN. * IF( WANTZ ) THEN ORDER = 'B' ELSE ORDER = 'E' END IF INDIBL = 1 INDISP = INDIBL + N INDIWK = INDISP + N CALL DSTEBZ( RANGE, ORDER, N, VLL, VUU, IL, IU, ABSTLL, $ RWORK( INDD ), RWORK( INDE ), M, NSPLIT, W, $ IWORK( INDIBL ), IWORK( INDISP ), RWORK( INDRWK ), $ IWORK( INDIWK ), INFO ) * IF( WANTZ ) THEN CALL ZSTEIN( N, RWORK( INDD ), RWORK( INDE ), M, W, $ IWORK( INDIBL ), IWORK( INDISP ), Z, LDZ, $ RWORK( INDRWK ), IWORK( INDIWK ), IFAIL, INFO ) * * Apply unitary matrix used in reduction to tridiagonal * form to eigenvectors returned by ZSTEIN. * INDWRK = INDTAU + N CALL ZUPMTR( 'L', UPLO, 'N', N, M, AP, WORK( INDTAU ), Z, LDZ, $ WORK( INDWRK ), IINFO ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * 20 CONTINUE IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = M ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * * If eigenvalues are not in order, then sort them, along with * eigenvectors. * IF( WANTZ ) THEN DO 40 J = 1, M - 1 I = 0 TMP1 = W( J ) DO 30 JJ = J + 1, M IF( W( JJ ).LT.TMP1 ) THEN I = JJ TMP1 = W( JJ ) END IF 30 CONTINUE * IF( I.NE.0 ) THEN ITMP1 = IWORK( INDIBL+I-1 ) W( I ) = W( J ) IWORK( INDIBL+I-1 ) = IWORK( INDIBL+J-1 ) W( J ) = TMP1 IWORK( INDIBL+J-1 ) = ITMP1 CALL ZSWAP( N, Z( 1, I ), 1, Z( 1, J ), 1 ) IF( INFO.NE.0 ) THEN ITMP1 = IFAIL( I ) IFAIL( I ) = IFAIL( J ) IFAIL( J ) = ITMP1 END IF END IF 40 CONTINUE END IF * RETURN * * End of ZHPEVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dgetrs.f0000644000000000000000000000013214061636515015314 xustar0030 mtime=1623670093.157104124 30 atime=1623670093.157104124 30 ctime=1623670093.157104124 elk-7.2.42/src/LAPACK/dgetrs.f0000644002504400250440000001356414061636515017362 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGETRS * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DGETRS + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER TRANS * INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGETRS solves a system of linear equations *> A * X = B or A**T * X = B *> with a general N-by-N matrix A using the LU factorization computed *> by DGETRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> Specifies the form of the system of equations: *> = 'N': A * X = B (No transpose) *> = 'T': A**T* X = B (Transpose) *> = 'C': A**T* X = B (Conjugate transpose = Transpose) *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] NRHS *> \verbatim *> NRHS is INTEGER *> The number of right hand sides, i.e., the number of columns *> of the matrix B. NRHS >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The factors L and U from the factorization A = P*L*U *> as computed by DGETRF. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices from DGETRF; for 1<=i<=N, row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB,NRHS) *> On entry, the right hand side matrix B. *> On exit, the solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleGEcomputational * * ===================================================================== SUBROUTINE DGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER TRANS INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL NOTRAN * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL DLASWP, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 NOTRAN = LSAME( TRANS, 'N' ) IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) .AND. .NOT. $ LSAME( TRANS, 'C' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( NRHS.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DGETRS', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. NRHS.EQ.0 ) $ RETURN * IF( NOTRAN ) THEN * * Solve A * X = B. * * Apply row interchanges to the right hand sides. * CALL DLASWP( NRHS, B, LDB, 1, N, IPIV, 1 ) * * Solve L*X = B, overwriting B with X. * CALL DTRSM( 'Left', 'Lower', 'No transpose', 'Unit', N, NRHS, $ ONE, A, LDA, B, LDB ) * * Solve U*X = B, overwriting B with X. * CALL DTRSM( 'Left', 'Upper', 'No transpose', 'Non-unit', N, $ NRHS, ONE, A, LDA, B, LDB ) ELSE * * Solve A**T * X = B. * * Solve U**T *X = B, overwriting B with X. * CALL DTRSM( 'Left', 'Upper', 'Transpose', 'Non-unit', N, NRHS, $ ONE, A, LDA, B, LDB ) * * Solve L**T *X = B, overwriting B with X. * CALL DTRSM( 'Left', 'Lower', 'Transpose', 'Unit', N, NRHS, ONE, $ A, LDA, B, LDB ) * * Apply row interchanges to the solution vectors. * CALL DLASWP( NRHS, B, LDB, 1, N, IPIV, -1 ) END IF * RETURN * * End of DGETRS * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dgetrf2.f0000644000000000000000000000013214061636515015361 xustar0030 mtime=1623670093.159104122 30 atime=1623670093.159104122 30 ctime=1623670093.159104122 elk-7.2.42/src/LAPACK/dgetrf2.f0000644002504400250440000001560214061636515017422 0ustar00dewhurstdewhurst00000000000000*> \brief \b DGETRF2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * RECURSIVE SUBROUTINE DGETRF2( M, N, A, LDA, IPIV, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DGETRF2 computes an LU factorization of a general M-by-N matrix A *> using partial pivoting with row interchanges. *> *> The factorization has the form *> A = P * L * U *> where P is a permutation matrix, L is lower triangular with unit *> diagonal elements (lower trapezoidal if m > n), and U is upper *> triangular (upper trapezoidal if m < n). *> *> This is the recursive version of the algorithm. It divides *> the matrix into four submatrices: *> *> [ A11 | A12 ] where A11 is n1 by n1 and A22 is n2 by n2 *> A = [ -----|----- ] with n1 = min(m,n)/2 *> [ A21 | A22 ] n2 = n-n1 *> *> [ A11 ] *> The subroutine calls itself to factor [ --- ], *> [ A12 ] *> [ A12 ] *> do the swaps on [ --- ], solve A12, update A22, *> [ A22 ] *> *> then calls itself to factor A22 and do the swaps on A21. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the M-by-N matrix to be factored. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (min(M,N)) *> The pivot indices; for 1 <= i <= min(M,N), row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, and division by zero will occur if it is used *> to solve a system of equations. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup doubleGEcomputational * * ===================================================================== RECURSIVE SUBROUTINE DGETRF2( M, N, A, LDA, IPIV, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. DOUBLE PRECISION SFMIN, TEMP INTEGER I, IINFO, N1, N2 * .. * .. External Functions .. DOUBLE PRECISION DLAMCH INTEGER IDAMAX EXTERNAL DLAMCH, IDAMAX * .. * .. External Subroutines .. EXTERNAL DGEMM, DSCAL, DLASWP, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DGETRF2', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN IF ( M.EQ.1 ) THEN * * Use unblocked code for one row case * Just need to handle IPIV and INFO * IPIV( 1 ) = 1 IF ( A(1,1).EQ.ZERO ) $ INFO = 1 * ELSE IF( N.EQ.1 ) THEN * * Use unblocked code for one column case * * * Compute machine safe minimum * SFMIN = DLAMCH('S') * * Find pivot and test for singularity * I = IDAMAX( M, A( 1, 1 ), 1 ) IPIV( 1 ) = I IF( A( I, 1 ).NE.ZERO ) THEN * * Apply the interchange * IF( I.NE.1 ) THEN TEMP = A( 1, 1 ) A( 1, 1 ) = A( I, 1 ) A( I, 1 ) = TEMP END IF * * Compute elements 2:M of the column * IF( ABS(A( 1, 1 )) .GE. SFMIN ) THEN CALL DSCAL( M-1, ONE / A( 1, 1 ), A( 2, 1 ), 1 ) ELSE DO 10 I = 1, M-1 A( 1+I, 1 ) = A( 1+I, 1 ) / A( 1, 1 ) 10 CONTINUE END IF * ELSE INFO = 1 END IF * ELSE * * Use recursive code * N1 = MIN( M, N ) / 2 N2 = N-N1 * * [ A11 ] * Factor [ --- ] * [ A21 ] * CALL DGETRF2( M, N1, A, LDA, IPIV, IINFO ) IF ( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO * * [ A12 ] * Apply interchanges to [ --- ] * [ A22 ] * CALL DLASWP( N2, A( 1, N1+1 ), LDA, 1, N1, IPIV, 1 ) * * Solve A12 * CALL DTRSM( 'L', 'L', 'N', 'U', N1, N2, ONE, A, LDA, $ A( 1, N1+1 ), LDA ) * * Update A22 * CALL DGEMM( 'N', 'N', M-N1, N2, N1, -ONE, A( N1+1, 1 ), LDA, $ A( 1, N1+1 ), LDA, ONE, A( N1+1, N1+1 ), LDA ) * * Factor A22 * CALL DGETRF2( M-N1, N2, A( N1+1, N1+1 ), LDA, IPIV( N1+1 ), $ IINFO ) * * Adjust INFO and the pivot indices * IF ( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO + N1 DO 20 I = N1+1, MIN( M, N ) IPIV( I ) = IPIV( I ) + N1 20 CONTINUE * * Apply interchanges to A21 * CALL DLASWP( N1, A( 1, 1 ), LDA, N1+1, MIN( M, N), IPIV, 1 ) * END IF RETURN * * End of DGETRF2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaswp.f0000644000000000000000000000013214061636515015316 xustar0030 mtime=1623670093.160104121 30 atime=1623670093.160104121 30 ctime=1623670093.160104121 elk-7.2.42/src/LAPACK/dlaswp.f0000644002504400250440000001201014061636515017345 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASWP performs a series of row interchanges on a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASWP + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASWP( N, A, LDA, K1, K2, IPIV, INCX ) * * .. Scalar Arguments .. * INTEGER INCX, K1, K2, LDA, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASWP performs a series of row interchanges on the matrix A. *> One row interchange is initiated for each of rows K1 through K2 of A. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the matrix of column dimension N to which the row *> interchanges will be applied. *> On exit, the permuted matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> \endverbatim *> *> \param[in] K1 *> \verbatim *> K1 is INTEGER *> The first element of IPIV for which a row interchange will *> be done. *> \endverbatim *> *> \param[in] K2 *> \verbatim *> K2 is INTEGER *> (K2-K1+1) is the number of elements of IPIV for which a row *> interchange will be done. *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (K1+(K2-K1)*abs(INCX)) *> The vector of pivot indices. Only the elements in positions *> K1 through K1+(K2-K1)*abs(INCX) of IPIV are accessed. *> IPIV(K1+(K-K1)*abs(INCX)) = L implies rows K and L are to be *> interchanged. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between successive values of IPIV. If INCX *> is negative, the pivots are applied in reverse order. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup doubleOTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Modified by *> R. C. Whaley, Computer Science Dept., Univ. of Tenn., Knoxville, USA *> \endverbatim *> * ===================================================================== SUBROUTINE DLASWP( N, A, LDA, K1, K2, IPIV, INCX ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER INCX, K1, K2, LDA, N * .. * .. Array Arguments .. INTEGER IPIV( * ) DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, I1, I2, INC, IP, IX, IX0, J, K, N32 DOUBLE PRECISION TEMP * .. * .. Executable Statements .. * * Interchange row I with row IPIV(K1+(I-K1)*abs(INCX)) for each of rows * K1 through K2. * IF( INCX.GT.0 ) THEN IX0 = K1 I1 = K1 I2 = K2 INC = 1 ELSE IF( INCX.LT.0 ) THEN IX0 = K1 + ( K1-K2 )*INCX I1 = K2 I2 = K1 INC = -1 ELSE RETURN END IF * N32 = ( N / 32 )*32 IF( N32.NE.0 ) THEN DO 30 J = 1, N32, 32 IX = IX0 DO 20 I = I1, I2, INC IP = IPIV( IX ) IF( IP.NE.I ) THEN DO 10 K = J, J + 31 TEMP = A( I, K ) A( I, K ) = A( IP, K ) A( IP, K ) = TEMP 10 CONTINUE END IF IX = IX + INCX 20 CONTINUE 30 CONTINUE END IF IF( N32.NE.N ) THEN N32 = N32 + 1 IX = IX0 DO 50 I = I1, I2, INC IP = IPIV( IX ) IF( IP.NE.I ) THEN DO 40 K = N32, N TEMP = A( I, K ) A( I, K ) = A( IP, K ) A( IP, K ) = TEMP 40 CONTINUE END IF IX = IX + INCX 50 CONTINUE END IF * RETURN * * End of DLASWP * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dtrtri.f0000644000000000000000000000013214061636515015334 xustar0030 mtime=1623670093.162104119 30 atime=1623670093.162104119 30 ctime=1623670093.162104119 elk-7.2.42/src/LAPACK/dtrtri.f0000644002504400250440000001536714061636515017405 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRTRI * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DTRTRI + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DTRTRI( UPLO, DIAG, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER DIAG, UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRTRI computes the inverse of a real upper or lower triangular *> matrix A. *> *> This is the Level 3 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': A is upper triangular; *> = 'L': A is lower triangular. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> = 'N': A is non-unit triangular; *> = 'U': A is unit triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the triangular matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of the array A contains *> the upper triangular matrix, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of the array A contains *> the lower triangular matrix, and the strictly upper *> triangular part of A is not referenced. If DIAG = 'U', the *> diagonal elements of A are also not referenced and are *> assumed to be 1. *> On exit, the (triangular) inverse of the original matrix, in *> the same storage format. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, A(i,i) is exactly zero. The triangular *> matrix is singular and its inverse can not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DTRTRI( UPLO, DIAG, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIAG, UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. LOGICAL NOUNIT, UPPER INTEGER J, JB, NB, NN * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DTRMM, DTRSM, DTRTI2, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) NOUNIT = LSAME( DIAG, 'N' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DTRTRI', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Check for singularity if non-unit. * IF( NOUNIT ) THEN DO 10 INFO = 1, N IF( A( INFO, INFO ).EQ.ZERO ) $ RETURN 10 CONTINUE INFO = 0 END IF * * Determine the block size for this environment. * NB = ILAENV( 1, 'DTRTRI', UPLO // DIAG, N, -1, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code * CALL DTRTI2( UPLO, DIAG, N, A, LDA, INFO ) ELSE * * Use blocked code * IF( UPPER ) THEN * * Compute inverse of upper triangular matrix * DO 20 J = 1, N, NB JB = MIN( NB, N-J+1 ) * * Compute rows 1:j-1 of current block column * CALL DTRMM( 'Left', 'Upper', 'No transpose', DIAG, J-1, $ JB, ONE, A, LDA, A( 1, J ), LDA ) CALL DTRSM( 'Right', 'Upper', 'No transpose', DIAG, J-1, $ JB, -ONE, A( J, J ), LDA, A( 1, J ), LDA ) * * Compute inverse of current diagonal block * CALL DTRTI2( 'Upper', DIAG, JB, A( J, J ), LDA, INFO ) 20 CONTINUE ELSE * * Compute inverse of lower triangular matrix * NN = ( ( N-1 ) / NB )*NB + 1 DO 30 J = NN, 1, -NB JB = MIN( NB, N-J+1 ) IF( J+JB.LE.N ) THEN * * Compute rows j+jb:n of current block column * CALL DTRMM( 'Left', 'Lower', 'No transpose', DIAG, $ N-J-JB+1, JB, ONE, A( J+JB, J+JB ), LDA, $ A( J+JB, J ), LDA ) CALL DTRSM( 'Right', 'Lower', 'No transpose', DIAG, $ N-J-JB+1, JB, -ONE, A( J, J ), LDA, $ A( J+JB, J ), LDA ) END IF * * Compute inverse of current diagonal block * CALL DTRTI2( 'Lower', DIAG, JB, A( J, J ), LDA, INFO ) 30 CONTINUE END IF END IF * RETURN * * End of DTRTRI * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlansy.f0000644000000000000000000000013214061636515015316 xustar0030 mtime=1623670093.164104117 30 atime=1623670093.163104118 30 ctime=1623670093.164104117 elk-7.2.42/src/LAPACK/dlansy.f0000644002504400250440000001753414061636515017365 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLANSY returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a real symmetric matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLANSY + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DLANSY( NORM, UPLO, N, A, LDA, WORK ) * * .. Scalar Arguments .. * CHARACTER NORM, UPLO * INTEGER LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLANSY returns the value of the one norm, or the Frobenius norm, or *> the infinity norm, or the element of largest absolute value of a *> real symmetric matrix A. *> \endverbatim *> *> \return DLANSY *> \verbatim *> *> DLANSY = ( max(abs(A(i,j))), NORM = 'M' or 'm' *> ( *> ( norm1(A), NORM = '1', 'O' or 'o' *> ( *> ( normI(A), NORM = 'I' or 'i' *> ( *> ( normF(A), NORM = 'F', 'f', 'E' or 'e' *> *> where norm1 denotes the one norm of a matrix (maximum column sum), *> normI denotes the infinity norm of a matrix (maximum row sum) and *> normF denotes the Frobenius norm of a matrix (square root of sum of *> squares). Note that max(abs(A(i,j))) is not a consistent matrix norm. *> \endverbatim * * Arguments: * ========== * *> \param[in] NORM *> \verbatim *> NORM is CHARACTER*1 *> Specifies the value to be returned in DLANSY as described *> above. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> symmetric matrix A is to be referenced. *> = 'U': Upper triangular part of A is referenced *> = 'L': Lower triangular part of A is referenced *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. When N = 0, DLANSY is *> set to zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The symmetric matrix A. If UPLO = 'U', the leading n by n *> upper triangular part of A contains the upper triangular part *> of the matrix A, and the strictly lower triangular part of A *> is not referenced. If UPLO = 'L', the leading n by n lower *> triangular part of A contains the lower triangular part of *> the matrix A, and the strictly upper triangular part of A is *> not referenced. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(N,1). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)), *> where LWORK >= N when NORM = 'I' or '1' or 'O'; otherwise, *> WORK is not referenced. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION DLANSY( NORM, UPLO, N, A, LDA, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * IMPLICIT NONE * .. Scalar Arguments .. CHARACTER NORM, UPLO INTEGER LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J DOUBLE PRECISION ABSA, SUM, VALUE * .. * .. Local Arrays .. DOUBLE PRECISION SSQ( 2 ), COLSSQ( 2 ) * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL DLASSQ, DCOMBSSQ * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * IF( N.EQ.0 ) THEN VALUE = ZERO ELSE IF( LSAME( NORM, 'M' ) ) THEN * * Find max(abs(A(i,j))). * VALUE = ZERO IF( LSAME( UPLO, 'U' ) ) THEN DO 20 J = 1, N DO 10 I = 1, J SUM = ABS( A( I, J ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 10 CONTINUE 20 CONTINUE ELSE DO 40 J = 1, N DO 30 I = J, N SUM = ABS( A( I, J ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 30 CONTINUE 40 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'I' ) ) .OR. ( LSAME( NORM, 'O' ) ) .OR. $ ( NORM.EQ.'1' ) ) THEN * * Find normI(A) ( = norm1(A), since A is symmetric). * VALUE = ZERO IF( LSAME( UPLO, 'U' ) ) THEN DO 60 J = 1, N SUM = ZERO DO 50 I = 1, J - 1 ABSA = ABS( A( I, J ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA 50 CONTINUE WORK( J ) = SUM + ABS( A( J, J ) ) 60 CONTINUE DO 70 I = 1, N SUM = WORK( I ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 70 CONTINUE ELSE DO 80 I = 1, N WORK( I ) = ZERO 80 CONTINUE DO 100 J = 1, N SUM = WORK( J ) + ABS( A( J, J ) ) DO 90 I = J + 1, N ABSA = ABS( A( I, J ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA 90 CONTINUE IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 100 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN * * Find normF(A). * SSQ(1) is scale * SSQ(2) is sum-of-squares * For better accuracy, sum each column separately. * SSQ( 1 ) = ZERO SSQ( 2 ) = ONE * * Sum off-diagonals * IF( LSAME( UPLO, 'U' ) ) THEN DO 110 J = 2, N COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL DLASSQ( J-1, A( 1, J ), 1, COLSSQ(1), COLSSQ(2) ) CALL DCOMBSSQ( SSQ, COLSSQ ) 110 CONTINUE ELSE DO 120 J = 1, N - 1 COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL DLASSQ( N-J, A( J+1, J ), 1, COLSSQ(1), COLSSQ(2) ) CALL DCOMBSSQ( SSQ, COLSSQ ) 120 CONTINUE END IF SSQ( 2 ) = 2*SSQ( 2 ) * * Sum diagonal * COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL DLASSQ( N, A, LDA+1, COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) VALUE = SSQ( 1 )*SQRT( SSQ( 2 ) ) END IF * DLANSY = VALUE RETURN * * End of DLANSY * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlascl.f0000644000000000000000000000013214061636515015266 xustar0030 mtime=1623670093.165104116 30 atime=1623670093.165104116 30 ctime=1623670093.165104116 elk-7.2.42/src/LAPACK/dlascl.f0000644002504400250440000002342714061636515017333 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASCL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASCL( TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER TYPE * INTEGER INFO, KL, KU, LDA, M, N * DOUBLE PRECISION CFROM, CTO * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASCL multiplies the M by N real matrix A by the real scalar *> CTO/CFROM. This is done without over/underflow as long as the final *> result CTO*A(I,J)/CFROM does not over/underflow. TYPE specifies that *> A may be full, upper triangular, lower triangular, upper Hessenberg, *> or banded. *> \endverbatim * * Arguments: * ========== * *> \param[in] TYPE *> \verbatim *> TYPE is CHARACTER*1 *> TYPE indices the storage type of the input matrix. *> = 'G': A is a full matrix. *> = 'L': A is a lower triangular matrix. *> = 'U': A is an upper triangular matrix. *> = 'H': A is an upper Hessenberg matrix. *> = 'B': A is a symmetric band matrix with lower bandwidth KL *> and upper bandwidth KU and with the only the lower *> half stored. *> = 'Q': A is a symmetric band matrix with lower bandwidth KL *> and upper bandwidth KU and with the only the upper *> half stored. *> = 'Z': A is a band matrix with lower bandwidth KL and upper *> bandwidth KU. See DGBTRF for storage details. *> \endverbatim *> *> \param[in] KL *> \verbatim *> KL is INTEGER *> The lower bandwidth of A. Referenced only if TYPE = 'B', *> 'Q' or 'Z'. *> \endverbatim *> *> \param[in] KU *> \verbatim *> KU is INTEGER *> The upper bandwidth of A. Referenced only if TYPE = 'B', *> 'Q' or 'Z'. *> \endverbatim *> *> \param[in] CFROM *> \verbatim *> CFROM is DOUBLE PRECISION *> \endverbatim *> *> \param[in] CTO *> \verbatim *> CTO is DOUBLE PRECISION *> *> The matrix A is multiplied by CTO/CFROM. A(I,J) is computed *> without over/underflow if the final result CTO*A(I,J)/CFROM *> can be represented without over/underflow. CFROM must be *> nonzero. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The matrix to be multiplied by CTO/CFROM. See TYPE for the *> storage type. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If TYPE = 'G', 'L', 'U', 'H', LDA >= max(1,M); *> TYPE = 'B', LDA >= KL+1; *> TYPE = 'Q', LDA >= KU+1; *> TYPE = 'Z', LDA >= 2*KL+KU+1. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> 0 - successful exit *> <0 - if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLASCL( TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER TYPE INTEGER INFO, KL, KU, LDA, M, N DOUBLE PRECISION CFROM, CTO * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. LOGICAL DONE INTEGER I, ITYPE, J, K1, K2, K3, K4 DOUBLE PRECISION BIGNUM, CFROM1, CFROMC, CTO1, CTOC, MUL, SMLNUM * .. * .. External Functions .. LOGICAL LSAME, DISNAN DOUBLE PRECISION DLAMCH EXTERNAL LSAME, DLAMCH, DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 * IF( LSAME( TYPE, 'G' ) ) THEN ITYPE = 0 ELSE IF( LSAME( TYPE, 'L' ) ) THEN ITYPE = 1 ELSE IF( LSAME( TYPE, 'U' ) ) THEN ITYPE = 2 ELSE IF( LSAME( TYPE, 'H' ) ) THEN ITYPE = 3 ELSE IF( LSAME( TYPE, 'B' ) ) THEN ITYPE = 4 ELSE IF( LSAME( TYPE, 'Q' ) ) THEN ITYPE = 5 ELSE IF( LSAME( TYPE, 'Z' ) ) THEN ITYPE = 6 ELSE ITYPE = -1 END IF * IF( ITYPE.EQ.-1 ) THEN INFO = -1 ELSE IF( CFROM.EQ.ZERO .OR. DISNAN(CFROM) ) THEN INFO = -4 ELSE IF( DISNAN(CTO) ) THEN INFO = -5 ELSE IF( M.LT.0 ) THEN INFO = -6 ELSE IF( N.LT.0 .OR. ( ITYPE.EQ.4 .AND. N.NE.M ) .OR. $ ( ITYPE.EQ.5 .AND. N.NE.M ) ) THEN INFO = -7 ELSE IF( ITYPE.LE.3 .AND. LDA.LT.MAX( 1, M ) ) THEN INFO = -9 ELSE IF( ITYPE.GE.4 ) THEN IF( KL.LT.0 .OR. KL.GT.MAX( M-1, 0 ) ) THEN INFO = -2 ELSE IF( KU.LT.0 .OR. KU.GT.MAX( N-1, 0 ) .OR. $ ( ( ITYPE.EQ.4 .OR. ITYPE.EQ.5 ) .AND. KL.NE.KU ) ) $ THEN INFO = -3 ELSE IF( ( ITYPE.EQ.4 .AND. LDA.LT.KL+1 ) .OR. $ ( ITYPE.EQ.5 .AND. LDA.LT.KU+1 ) .OR. $ ( ITYPE.EQ.6 .AND. LDA.LT.2*KL+KU+1 ) ) THEN INFO = -9 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLASCL', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. M.EQ.0 ) $ RETURN * * Get machine parameters * SMLNUM = DLAMCH( 'S' ) BIGNUM = ONE / SMLNUM * CFROMC = CFROM CTOC = CTO * 10 CONTINUE CFROM1 = CFROMC*SMLNUM IF( CFROM1.EQ.CFROMC ) THEN ! CFROMC is an inf. Multiply by a correctly signed zero for ! finite CTOC, or a NaN if CTOC is infinite. MUL = CTOC / CFROMC DONE = .TRUE. CTO1 = CTOC ELSE CTO1 = CTOC / BIGNUM IF( CTO1.EQ.CTOC ) THEN ! CTOC is either 0 or an inf. In both cases, CTOC itself ! serves as the correct multiplication factor. MUL = CTOC DONE = .TRUE. CFROMC = ONE ELSE IF( ABS( CFROM1 ).GT.ABS( CTOC ) .AND. CTOC.NE.ZERO ) THEN MUL = SMLNUM DONE = .FALSE. CFROMC = CFROM1 ELSE IF( ABS( CTO1 ).GT.ABS( CFROMC ) ) THEN MUL = BIGNUM DONE = .FALSE. CTOC = CTO1 ELSE MUL = CTOC / CFROMC DONE = .TRUE. END IF END IF * IF( ITYPE.EQ.0 ) THEN * * Full matrix * DO 30 J = 1, N DO 20 I = 1, M A( I, J ) = A( I, J )*MUL 20 CONTINUE 30 CONTINUE * ELSE IF( ITYPE.EQ.1 ) THEN * * Lower triangular matrix * DO 50 J = 1, N DO 40 I = J, M A( I, J ) = A( I, J )*MUL 40 CONTINUE 50 CONTINUE * ELSE IF( ITYPE.EQ.2 ) THEN * * Upper triangular matrix * DO 70 J = 1, N DO 60 I = 1, MIN( J, M ) A( I, J ) = A( I, J )*MUL 60 CONTINUE 70 CONTINUE * ELSE IF( ITYPE.EQ.3 ) THEN * * Upper Hessenberg matrix * DO 90 J = 1, N DO 80 I = 1, MIN( J+1, M ) A( I, J ) = A( I, J )*MUL 80 CONTINUE 90 CONTINUE * ELSE IF( ITYPE.EQ.4 ) THEN * * Lower half of a symmetric band matrix * K3 = KL + 1 K4 = N + 1 DO 110 J = 1, N DO 100 I = 1, MIN( K3, K4-J ) A( I, J ) = A( I, J )*MUL 100 CONTINUE 110 CONTINUE * ELSE IF( ITYPE.EQ.5 ) THEN * * Upper half of a symmetric band matrix * K1 = KU + 2 K3 = KU + 1 DO 130 J = 1, N DO 120 I = MAX( K1-J, 1 ), K3 A( I, J ) = A( I, J )*MUL 120 CONTINUE 130 CONTINUE * ELSE IF( ITYPE.EQ.6 ) THEN * * Band matrix * K1 = KL + KU + 2 K2 = KL + 1 K3 = 2*KL + KU + 1 K4 = KL + KU + 1 + M DO 150 J = 1, N DO 140 I = MAX( K1-J, K2 ), MIN( K3, K4-J ) A( I, J ) = A( I, J )*MUL 140 CONTINUE 150 CONTINUE * END IF * IF( .NOT.DONE ) $ GO TO 10 * RETURN * * End of DLASCL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsytrd.f0000644000000000000000000000013214061636515015335 xustar0030 mtime=1623670093.167104114 30 atime=1623670093.167104114 30 ctime=1623670093.167104114 elk-7.2.42/src/LAPACK/dsytrd.f0000644002504400250440000002634614061636515017405 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYTRD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYTRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYTRD( UPLO, N, A, LDA, D, E, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAU( * ), * $ WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYTRD reduces a real symmetric matrix A to real symmetric *> tridiagonal form T by an orthogonal similarity transformation: *> Q**T * A * Q = T. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit, if UPLO = 'U', the diagonal and first superdiagonal *> of A are overwritten by the corresponding elements of the *> tridiagonal matrix T, and the elements above the first *> superdiagonal, with the array TAU, represent the orthogonal *> matrix Q as a product of elementary reflectors; if UPLO *> = 'L', the diagonal and first subdiagonal of A are over- *> written by the corresponding elements of the tridiagonal *> matrix T, and the elements below the first subdiagonal, with *> the array TAU, represent the orthogonal matrix Q as a product *> of elementary reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix T: *> E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= 1. *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n-1) . . . H(2) H(1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in *> A(1:i-1,i+1), and tau in TAU(i). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(n-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in A(i+2:n,i), *> and tau in TAU(i). *> *> The contents of A on exit are illustrated by the following examples *> with n = 5: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( d e v2 v3 v4 ) ( d ) *> ( d e v3 v4 ) ( e d ) *> ( d e v4 ) ( v1 e d ) *> ( d e ) ( v1 v2 e d ) *> ( d ) ( v1 v2 v3 e d ) *> *> where d and e denote diagonal and off-diagonal elements of T, and vi *> denotes an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE DSYTRD( UPLO, N, A, LDA, D, E, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAU( * ), $ WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LQUERY, UPPER INTEGER I, IINFO, IWS, J, KK, LDWORK, LWKOPT, NB, $ NBMIN, NX * .. * .. External Subroutines .. EXTERNAL DLATRD, DSYR2K, DSYTD2, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) LQUERY = ( LWORK.EQ.-1 ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LWORK.LT.1 .AND. .NOT.LQUERY ) THEN INFO = -9 END IF * IF( INFO.EQ.0 ) THEN * * Determine the block size. * NB = ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) LWKOPT = N*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYTRD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NX = N IWS = 1 IF( NB.GT.1 .AND. NB.LT.N ) THEN * * Determine when to cross over from blocked to unblocked code * (last block is always handled by unblocked code). * NX = MAX( NB, ILAENV( 3, 'DSYTRD', UPLO, N, -1, -1, -1 ) ) IF( NX.LT.N ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: determine the * minimum value of NB, and reduce NB or force use of * unblocked code by setting NX = N. * NB = MAX( LWORK / LDWORK, 1 ) NBMIN = ILAENV( 2, 'DSYTRD', UPLO, N, -1, -1, -1 ) IF( NB.LT.NBMIN ) $ NX = N END IF ELSE NX = N END IF ELSE NB = 1 END IF * IF( UPPER ) THEN * * Reduce the upper triangle of A. * Columns 1:kk are handled by the unblocked method. * KK = N - ( ( N-NX+NB-1 ) / NB )*NB DO 20 I = N - NB + 1, KK + 1, -NB * * Reduce columns i:i+nb-1 to tridiagonal form and form the * matrix W which is needed to update the unreduced part of * the matrix * CALL DLATRD( UPLO, I+NB-1, NB, A, LDA, E, TAU, WORK, $ LDWORK ) * * Update the unreduced submatrix A(1:i-1,1:i-1), using an * update of the form: A := A - V*W**T - W*V**T * CALL DSYR2K( UPLO, 'No transpose', I-1, NB, -ONE, A( 1, I ), $ LDA, WORK, LDWORK, ONE, A, LDA ) * * Copy superdiagonal elements back into A, and diagonal * elements into D * DO 10 J = I, I + NB - 1 A( J-1, J ) = E( J-1 ) D( J ) = A( J, J ) 10 CONTINUE 20 CONTINUE * * Use unblocked code to reduce the last or only block * CALL DSYTD2( UPLO, KK, A, LDA, D, E, TAU, IINFO ) ELSE * * Reduce the lower triangle of A * DO 40 I = 1, N - NX, NB * * Reduce columns i:i+nb-1 to tridiagonal form and form the * matrix W which is needed to update the unreduced part of * the matrix * CALL DLATRD( UPLO, N-I+1, NB, A( I, I ), LDA, E( I ), $ TAU( I ), WORK, LDWORK ) * * Update the unreduced submatrix A(i+ib:n,i+ib:n), using * an update of the form: A := A - V*W**T - W*V**T * CALL DSYR2K( UPLO, 'No transpose', N-I-NB+1, NB, -ONE, $ A( I+NB, I ), LDA, WORK( NB+1 ), LDWORK, ONE, $ A( I+NB, I+NB ), LDA ) * * Copy subdiagonal elements back into A, and diagonal * elements into D * DO 30 J = I, I + NB - 1 A( J+1, J ) = E( J ) D( J ) = A( J, J ) 30 CONTINUE 40 CONTINUE * * Use unblocked code to reduce the last or only block * CALL DSYTD2( UPLO, N-I+1, A( I, I ), LDA, D( I ), E( I ), $ TAU( I ), IINFO ) END IF * WORK( 1 ) = LWKOPT RETURN * * End of DSYTRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsterf.f0000644000000000000000000000013214061636515015313 xustar0030 mtime=1623670093.169104112 30 atime=1623670093.168104113 30 ctime=1623670093.169104112 elk-7.2.42/src/LAPACK/dsterf.f0000644002504400250440000002463114061636515017356 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSTERF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSTERF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSTERF( N, D, E, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSTERF computes all eigenvalues of a symmetric tridiagonal matrix *> using the Pal-Walker-Kahan variant of the QL or QR algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the n diagonal elements of the tridiagonal matrix. *> On exit, if INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the (n-1) subdiagonal elements of the tridiagonal *> matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: the algorithm failed to find all of the eigenvalues in *> a total of 30*N iterations; if INFO = i, then i *> elements of E have not converged to zero. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DSTERF( N, D, E, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO, THREE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ THREE = 3.0D0 ) INTEGER MAXIT PARAMETER ( MAXIT = 30 ) * .. * .. Local Scalars .. INTEGER I, ISCALE, JTOT, L, L1, LEND, LENDSV, LSV, M, $ NMAXIT DOUBLE PRECISION ALPHA, ANORM, BB, C, EPS, EPS2, GAMMA, OLDC, $ OLDGAM, P, R, RT1, RT2, RTE, S, SAFMAX, SAFMIN, $ SIGMA, SSFMAX, SSFMIN, RMAX * .. * .. External Functions .. DOUBLE PRECISION DLAMCH, DLANST, DLAPY2 EXTERNAL DLAMCH, DLANST, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DLAE2, DLASCL, DLASRT, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * * Quick return if possible * IF( N.LT.0 ) THEN INFO = -1 CALL XERBLA( 'DSTERF', -INFO ) RETURN END IF IF( N.LE.1 ) $ RETURN * * Determine the unit roundoff for this environment. * EPS = DLAMCH( 'E' ) EPS2 = EPS**2 SAFMIN = DLAMCH( 'S' ) SAFMAX = ONE / SAFMIN SSFMAX = SQRT( SAFMAX ) / THREE SSFMIN = SQRT( SAFMIN ) / EPS2 RMAX = DLAMCH( 'O' ) * * Compute the eigenvalues of the tridiagonal matrix. * NMAXIT = N*MAXIT SIGMA = ZERO JTOT = 0 * * Determine where the matrix splits and choose QL or QR iteration * for each block, according to whether top or bottom diagonal * element is smaller. * L1 = 1 * 10 CONTINUE IF( L1.GT.N ) $ GO TO 170 IF( L1.GT.1 ) $ E( L1-1 ) = ZERO DO 20 M = L1, N - 1 IF( ABS( E( M ) ).LE.( SQRT( ABS( D( M ) ) )*SQRT( ABS( D( M+ $ 1 ) ) ) )*EPS ) THEN E( M ) = ZERO GO TO 30 END IF 20 CONTINUE M = N * 30 CONTINUE L = L1 LSV = L LEND = M LENDSV = LEND L1 = M + 1 IF( LEND.EQ.L ) $ GO TO 10 * * Scale submatrix in rows and columns L to LEND * ANORM = DLANST( 'M', LEND-L+1, D( L ), E( L ) ) ISCALE = 0 IF( ANORM.EQ.ZERO ) $ GO TO 10 IF( (ANORM.GT.SSFMAX) ) THEN ISCALE = 1 CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L, 1, E( L ), N, $ INFO ) ELSE IF( ANORM.LT.SSFMIN ) THEN ISCALE = 2 CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L, 1, E( L ), N, $ INFO ) END IF * DO 40 I = L, LEND - 1 E( I ) = E( I )**2 40 CONTINUE * * Choose between QL and QR iteration * IF( ABS( D( LEND ) ).LT.ABS( D( L ) ) ) THEN LEND = LSV L = LENDSV END IF * IF( LEND.GE.L ) THEN * * QL Iteration * * Look for small subdiagonal element. * 50 CONTINUE IF( L.NE.LEND ) THEN DO 60 M = L, LEND - 1 IF( ABS( E( M ) ).LE.EPS2*ABS( D( M )*D( M+1 ) ) ) $ GO TO 70 60 CONTINUE END IF M = LEND * 70 CONTINUE IF( M.LT.LEND ) $ E( M ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 90 * * If remaining matrix is 2 by 2, use DLAE2 to compute its * eigenvalues. * IF( M.EQ.L+1 ) THEN RTE = SQRT( E( L ) ) CALL DLAE2( D( L ), RTE, D( L+1 ), RT1, RT2 ) D( L ) = RT1 D( L+1 ) = RT2 E( L ) = ZERO L = L + 2 IF( L.LE.LEND ) $ GO TO 50 GO TO 150 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 150 JTOT = JTOT + 1 * * Form shift. * RTE = SQRT( E( L ) ) SIGMA = ( D( L+1 )-P ) / ( TWO*RTE ) R = DLAPY2( SIGMA, ONE ) SIGMA = P - ( RTE / ( SIGMA+SIGN( R, SIGMA ) ) ) * C = ONE S = ZERO GAMMA = D( M ) - SIGMA P = GAMMA*GAMMA * * Inner loop * DO 80 I = M - 1, L, -1 BB = E( I ) R = P + BB IF( I.NE.M-1 ) $ E( I+1 ) = S*R OLDC = C C = P / R S = BB / R OLDGAM = GAMMA ALPHA = D( I ) GAMMA = C*( ALPHA-SIGMA ) - S*OLDGAM D( I+1 ) = OLDGAM + ( ALPHA-GAMMA ) IF( C.NE.ZERO ) THEN P = ( GAMMA*GAMMA ) / C ELSE P = OLDC*BB END IF 80 CONTINUE * E( L ) = S*P D( L ) = SIGMA + GAMMA GO TO 50 * * Eigenvalue found. * 90 CONTINUE D( L ) = P * L = L + 1 IF( L.LE.LEND ) $ GO TO 50 GO TO 150 * ELSE * * QR Iteration * * Look for small superdiagonal element. * 100 CONTINUE DO 110 M = L, LEND + 1, -1 IF( ABS( E( M-1 ) ).LE.EPS2*ABS( D( M )*D( M-1 ) ) ) $ GO TO 120 110 CONTINUE M = LEND * 120 CONTINUE IF( M.GT.LEND ) $ E( M-1 ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 140 * * If remaining matrix is 2 by 2, use DLAE2 to compute its * eigenvalues. * IF( M.EQ.L-1 ) THEN RTE = SQRT( E( L-1 ) ) CALL DLAE2( D( L ), RTE, D( L-1 ), RT1, RT2 ) D( L ) = RT1 D( L-1 ) = RT2 E( L-1 ) = ZERO L = L - 2 IF( L.GE.LEND ) $ GO TO 100 GO TO 150 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 150 JTOT = JTOT + 1 * * Form shift. * RTE = SQRT( E( L-1 ) ) SIGMA = ( D( L-1 )-P ) / ( TWO*RTE ) R = DLAPY2( SIGMA, ONE ) SIGMA = P - ( RTE / ( SIGMA+SIGN( R, SIGMA ) ) ) * C = ONE S = ZERO GAMMA = D( M ) - SIGMA P = GAMMA*GAMMA * * Inner loop * DO 130 I = M, L - 1 BB = E( I ) R = P + BB IF( I.NE.M ) $ E( I-1 ) = S*R OLDC = C C = P / R S = BB / R OLDGAM = GAMMA ALPHA = D( I+1 ) GAMMA = C*( ALPHA-SIGMA ) - S*OLDGAM D( I ) = OLDGAM + ( ALPHA-GAMMA ) IF( C.NE.ZERO ) THEN P = ( GAMMA*GAMMA ) / C ELSE P = OLDC*BB END IF 130 CONTINUE * E( L-1 ) = S*P D( L ) = SIGMA + GAMMA GO TO 100 * * Eigenvalue found. * 140 CONTINUE D( L ) = P * L = L - 1 IF( L.GE.LEND ) $ GO TO 100 GO TO 150 * END IF * * Undo scaling if necessary * 150 CONTINUE IF( ISCALE.EQ.1 ) $ CALL DLASCL( 'G', 0, 0, SSFMAX, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) IF( ISCALE.EQ.2 ) $ CALL DLASCL( 'G', 0, 0, SSFMIN, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) * * Check for no convergence to an eigenvalue after a total * of N*MAXIT iterations. * IF( JTOT.LT.NMAXIT ) $ GO TO 10 DO 160 I = 1, N - 1 IF( E( I ).NE.ZERO ) $ INFO = INFO + 1 160 CONTINUE GO TO 180 * * Sort eigenvalues in increasing order. * 170 CONTINUE CALL DLASRT( 'I', N, D, INFO ) * 180 CONTINUE RETURN * * End of DSTERF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorgtr.f0000644000000000000000000000013214061636515015325 xustar0030 mtime=1623670093.170104112 30 atime=1623670093.170104112 30 ctime=1623670093.170104112 elk-7.2.42/src/LAPACK/dorgtr.f0000644002504400250440000001562014061636515017366 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORGTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORGTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORGTR( UPLO, N, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORGTR generates a real orthogonal matrix Q which is defined as the *> product of n-1 elementary reflectors of order N, as returned by *> DSYTRD: *> *> if UPLO = 'U', Q = H(n-1) . . . H(2) H(1), *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(n-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A contains elementary reflectors *> from DSYTRD; *> = 'L': Lower triangle of A contains elementary reflectors *> from DSYTRD. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix Q. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the vectors which define the elementary reflectors, *> as returned by DSYTRD. *> On exit, the N-by-N orthogonal matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (N-1) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DSYTRD. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N-1). *> For optimum performance LWORK >= (N-1)*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORGTR( UPLO, N, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LQUERY, UPPER INTEGER I, IINFO, J, LWKOPT, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DORGQL, DORGQR, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LWORK.LT.MAX( 1, N-1 ) .AND. .NOT.LQUERY ) THEN INFO = -7 END IF * IF( INFO.EQ.0 ) THEN IF( UPPER ) THEN NB = ILAENV( 1, 'DORGQL', ' ', N-1, N-1, N-1, -1 ) ELSE NB = ILAENV( 1, 'DORGQR', ' ', N-1, N-1, N-1, -1 ) END IF LWKOPT = MAX( 1, N-1 )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORGTR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( UPPER ) THEN * * Q was determined by a call to DSYTRD with UPLO = 'U' * * Shift the vectors which define the elementary reflectors one * column to the left, and set the last row and column of Q to * those of the unit matrix * DO 20 J = 1, N - 1 DO 10 I = 1, J - 1 A( I, J ) = A( I, J+1 ) 10 CONTINUE A( N, J ) = ZERO 20 CONTINUE DO 30 I = 1, N - 1 A( I, N ) = ZERO 30 CONTINUE A( N, N ) = ONE * * Generate Q(1:n-1,1:n-1) * CALL DORGQL( N-1, N-1, N-1, A, LDA, TAU, WORK, LWORK, IINFO ) * ELSE * * Q was determined by a call to DSYTRD with UPLO = 'L'. * * Shift the vectors which define the elementary reflectors one * column to the right, and set the first row and column of Q to * those of the unit matrix * DO 50 J = N, 2, -1 A( 1, J ) = ZERO DO 40 I = J + 1, N A( I, J ) = A( I, J-1 ) 40 CONTINUE 50 CONTINUE A( 1, 1 ) = ONE DO 60 I = 2, N A( I, 1 ) = ZERO 60 CONTINUE IF( N.GT.1 ) THEN * * Generate Q(2:n,2:n) * CALL DORGQR( N-1, N-1, N-1, A( 2, 2 ), LDA, TAU, WORK, $ LWORK, IINFO ) END IF END IF WORK( 1 ) = LWKOPT RETURN * * End of DORGTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsteqr.f0000644000000000000000000000012714061636515015332 xustar0029 mtime=1623670093.17210411 29 atime=1623670093.17210411 29 ctime=1623670093.17210411 elk-7.2.42/src/LAPACK/dsteqr.f0000644002504400250440000003627614061636515017401 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSTEQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSTEQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER COMPZ * INTEGER INFO, LDZ, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSTEQR computes all eigenvalues and, optionally, eigenvectors of a *> symmetric tridiagonal matrix using the implicit QL or QR method. *> The eigenvectors of a full or band symmetric matrix can also be found *> if DSYTRD or DSPTRD or DSBTRD has been used to reduce this matrix to *> tridiagonal form. *> \endverbatim * * Arguments: * ========== * *> \param[in] COMPZ *> \verbatim *> COMPZ is CHARACTER*1 *> = 'N': Compute eigenvalues only. *> = 'V': Compute eigenvalues and eigenvectors of the original *> symmetric matrix. On entry, Z must contain the *> orthogonal matrix used to reduce the original matrix *> to tridiagonal form. *> = 'I': Compute eigenvalues and eigenvectors of the *> tridiagonal matrix. Z is initialized to the identity *> matrix. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the diagonal elements of the tridiagonal matrix. *> On exit, if INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the (n-1) subdiagonal elements of the tridiagonal *> matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (LDZ, N) *> On entry, if COMPZ = 'V', then Z contains the orthogonal *> matrix used in the reduction to tridiagonal form. *> On exit, if INFO = 0, then if COMPZ = 'V', Z contains the *> orthonormal eigenvectors of the original symmetric matrix, *> and if COMPZ = 'I', Z contains the orthonormal eigenvectors *> of the symmetric tridiagonal matrix. *> If COMPZ = 'N', then Z is not referenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> eigenvectors are desired, then LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (max(1,2*N-2)) *> If COMPZ = 'N', then WORK is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: the algorithm has failed to find all the eigenvalues in *> a total of 30*N iterations; if INFO = i, then i *> elements of E have not converged to zero; on exit, D *> and E contain the elements of a symmetric tridiagonal *> matrix which is orthogonally similar to the original *> matrix. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DSTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER COMPZ INTEGER INFO, LDZ, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO, THREE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ THREE = 3.0D0 ) INTEGER MAXIT PARAMETER ( MAXIT = 30 ) * .. * .. Local Scalars .. INTEGER I, ICOMPZ, II, ISCALE, J, JTOT, K, L, L1, LEND, $ LENDM1, LENDP1, LENDSV, LM1, LSV, M, MM, MM1, $ NM1, NMAXIT DOUBLE PRECISION ANORM, B, C, EPS, EPS2, F, G, P, R, RT1, RT2, $ S, SAFMAX, SAFMIN, SSFMAX, SSFMIN, TST * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DLAMCH, DLANST, DLAPY2 EXTERNAL LSAME, DLAMCH, DLANST, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DLAE2, DLAEV2, DLARTG, DLASCL, DLASET, DLASR, $ DLASRT, DSWAP, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( LSAME( COMPZ, 'N' ) ) THEN ICOMPZ = 0 ELSE IF( LSAME( COMPZ, 'V' ) ) THEN ICOMPZ = 1 ELSE IF( LSAME( COMPZ, 'I' ) ) THEN ICOMPZ = 2 ELSE ICOMPZ = -1 END IF IF( ICOMPZ.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( ( LDZ.LT.1 ) .OR. ( ICOMPZ.GT.0 .AND. LDZ.LT.MAX( 1, $ N ) ) ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSTEQR', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( N.EQ.1 ) THEN IF( ICOMPZ.EQ.2 ) $ Z( 1, 1 ) = ONE RETURN END IF * * Determine the unit roundoff and over/underflow thresholds. * EPS = DLAMCH( 'E' ) EPS2 = EPS**2 SAFMIN = DLAMCH( 'S' ) SAFMAX = ONE / SAFMIN SSFMAX = SQRT( SAFMAX ) / THREE SSFMIN = SQRT( SAFMIN ) / EPS2 * * Compute the eigenvalues and eigenvectors of the tridiagonal * matrix. * IF( ICOMPZ.EQ.2 ) $ CALL DLASET( 'Full', N, N, ZERO, ONE, Z, LDZ ) * NMAXIT = N*MAXIT JTOT = 0 * * Determine where the matrix splits and choose QL or QR iteration * for each block, according to whether top or bottom diagonal * element is smaller. * L1 = 1 NM1 = N - 1 * 10 CONTINUE IF( L1.GT.N ) $ GO TO 160 IF( L1.GT.1 ) $ E( L1-1 ) = ZERO IF( L1.LE.NM1 ) THEN DO 20 M = L1, NM1 TST = ABS( E( M ) ) IF( TST.EQ.ZERO ) $ GO TO 30 IF( TST.LE.( SQRT( ABS( D( M ) ) )*SQRT( ABS( D( M+ $ 1 ) ) ) )*EPS ) THEN E( M ) = ZERO GO TO 30 END IF 20 CONTINUE END IF M = N * 30 CONTINUE L = L1 LSV = L LEND = M LENDSV = LEND L1 = M + 1 IF( LEND.EQ.L ) $ GO TO 10 * * Scale submatrix in rows and columns L to LEND * ANORM = DLANST( 'M', LEND-L+1, D( L ), E( L ) ) ISCALE = 0 IF( ANORM.EQ.ZERO ) $ GO TO 10 IF( ANORM.GT.SSFMAX ) THEN ISCALE = 1 CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L, 1, E( L ), N, $ INFO ) ELSE IF( ANORM.LT.SSFMIN ) THEN ISCALE = 2 CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L, 1, E( L ), N, $ INFO ) END IF * * Choose between QL and QR iteration * IF( ABS( D( LEND ) ).LT.ABS( D( L ) ) ) THEN LEND = LSV L = LENDSV END IF * IF( LEND.GT.L ) THEN * * QL Iteration * * Look for small subdiagonal element. * 40 CONTINUE IF( L.NE.LEND ) THEN LENDM1 = LEND - 1 DO 50 M = L, LENDM1 TST = ABS( E( M ) )**2 IF( TST.LE.( EPS2*ABS( D( M ) ) )*ABS( D( M+1 ) )+ $ SAFMIN )GO TO 60 50 CONTINUE END IF * M = LEND * 60 CONTINUE IF( M.LT.LEND ) $ E( M ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 80 * * If remaining matrix is 2-by-2, use DLAE2 or SLAEV2 * to compute its eigensystem. * IF( M.EQ.L+1 ) THEN IF( ICOMPZ.GT.0 ) THEN CALL DLAEV2( D( L ), E( L ), D( L+1 ), RT1, RT2, C, S ) WORK( L ) = C WORK( N-1+L ) = S CALL DLASR( 'R', 'V', 'B', N, 2, WORK( L ), $ WORK( N-1+L ), Z( 1, L ), LDZ ) ELSE CALL DLAE2( D( L ), E( L ), D( L+1 ), RT1, RT2 ) END IF D( L ) = RT1 D( L+1 ) = RT2 E( L ) = ZERO L = L + 2 IF( L.LE.LEND ) $ GO TO 40 GO TO 140 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 140 JTOT = JTOT + 1 * * Form shift. * G = ( D( L+1 )-P ) / ( TWO*E( L ) ) R = DLAPY2( G, ONE ) G = D( M ) - P + ( E( L ) / ( G+SIGN( R, G ) ) ) * S = ONE C = ONE P = ZERO * * Inner loop * MM1 = M - 1 DO 70 I = MM1, L, -1 F = S*E( I ) B = C*E( I ) CALL DLARTG( G, F, C, S, R ) IF( I.NE.M-1 ) $ E( I+1 ) = R G = D( I+1 ) - P R = ( D( I )-G )*S + TWO*C*B P = S*R D( I+1 ) = G + P G = C*R - B * * If eigenvectors are desired, then save rotations. * IF( ICOMPZ.GT.0 ) THEN WORK( I ) = C WORK( N-1+I ) = -S END IF * 70 CONTINUE * * If eigenvectors are desired, then apply saved rotations. * IF( ICOMPZ.GT.0 ) THEN MM = M - L + 1 CALL DLASR( 'R', 'V', 'B', N, MM, WORK( L ), WORK( N-1+L ), $ Z( 1, L ), LDZ ) END IF * D( L ) = D( L ) - P E( L ) = G GO TO 40 * * Eigenvalue found. * 80 CONTINUE D( L ) = P * L = L + 1 IF( L.LE.LEND ) $ GO TO 40 GO TO 140 * ELSE * * QR Iteration * * Look for small superdiagonal element. * 90 CONTINUE IF( L.NE.LEND ) THEN LENDP1 = LEND + 1 DO 100 M = L, LENDP1, -1 TST = ABS( E( M-1 ) )**2 IF( TST.LE.( EPS2*ABS( D( M ) ) )*ABS( D( M-1 ) )+ $ SAFMIN )GO TO 110 100 CONTINUE END IF * M = LEND * 110 CONTINUE IF( M.GT.LEND ) $ E( M-1 ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 130 * * If remaining matrix is 2-by-2, use DLAE2 or SLAEV2 * to compute its eigensystem. * IF( M.EQ.L-1 ) THEN IF( ICOMPZ.GT.0 ) THEN CALL DLAEV2( D( L-1 ), E( L-1 ), D( L ), RT1, RT2, C, S ) WORK( M ) = C WORK( N-1+M ) = S CALL DLASR( 'R', 'V', 'F', N, 2, WORK( M ), $ WORK( N-1+M ), Z( 1, L-1 ), LDZ ) ELSE CALL DLAE2( D( L-1 ), E( L-1 ), D( L ), RT1, RT2 ) END IF D( L-1 ) = RT1 D( L ) = RT2 E( L-1 ) = ZERO L = L - 2 IF( L.GE.LEND ) $ GO TO 90 GO TO 140 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 140 JTOT = JTOT + 1 * * Form shift. * G = ( D( L-1 )-P ) / ( TWO*E( L-1 ) ) R = DLAPY2( G, ONE ) G = D( M ) - P + ( E( L-1 ) / ( G+SIGN( R, G ) ) ) * S = ONE C = ONE P = ZERO * * Inner loop * LM1 = L - 1 DO 120 I = M, LM1 F = S*E( I ) B = C*E( I ) CALL DLARTG( G, F, C, S, R ) IF( I.NE.M ) $ E( I-1 ) = R G = D( I ) - P R = ( D( I+1 )-G )*S + TWO*C*B P = S*R D( I ) = G + P G = C*R - B * * If eigenvectors are desired, then save rotations. * IF( ICOMPZ.GT.0 ) THEN WORK( I ) = C WORK( N-1+I ) = S END IF * 120 CONTINUE * * If eigenvectors are desired, then apply saved rotations. * IF( ICOMPZ.GT.0 ) THEN MM = L - M + 1 CALL DLASR( 'R', 'V', 'F', N, MM, WORK( M ), WORK( N-1+M ), $ Z( 1, M ), LDZ ) END IF * D( L ) = D( L ) - P E( LM1 ) = G GO TO 90 * * Eigenvalue found. * 130 CONTINUE D( L ) = P * L = L - 1 IF( L.GE.LEND ) $ GO TO 90 GO TO 140 * END IF * * Undo scaling if necessary * 140 CONTINUE IF( ISCALE.EQ.1 ) THEN CALL DLASCL( 'G', 0, 0, SSFMAX, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) CALL DLASCL( 'G', 0, 0, SSFMAX, ANORM, LENDSV-LSV, 1, E( LSV ), $ N, INFO ) ELSE IF( ISCALE.EQ.2 ) THEN CALL DLASCL( 'G', 0, 0, SSFMIN, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) CALL DLASCL( 'G', 0, 0, SSFMIN, ANORM, LENDSV-LSV, 1, E( LSV ), $ N, INFO ) END IF * * Check for no convergence to an eigenvalue after a total * of N*MAXIT iterations. * IF( JTOT.LT.NMAXIT ) $ GO TO 10 DO 150 I = 1, N - 1 IF( E( I ).NE.ZERO ) $ INFO = INFO + 1 150 CONTINUE GO TO 190 * * Order eigenvalues and eigenvectors. * 160 CONTINUE IF( ICOMPZ.EQ.0 ) THEN * * Use Quick Sort * CALL DLASRT( 'I', N, D, INFO ) * ELSE * * Use Selection Sort to minimize swaps of eigenvectors * DO 180 II = 2, N I = II - 1 K = I P = D( I ) DO 170 J = II, N IF( D( J ).LT.P ) THEN K = J P = D( J ) END IF 170 CONTINUE IF( K.NE.I ) THEN D( K ) = D( I ) D( I ) = P CALL DSWAP( N, Z( 1, I ), 1, Z( 1, K ), 1 ) END IF 180 CONTINUE END IF * 190 CONTINUE RETURN * * End of DSTEQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dpotrf.f0000644000000000000000000000013214061636515015322 xustar0030 mtime=1623670093.174104108 30 atime=1623670093.174104108 30 ctime=1623670093.174104108 elk-7.2.42/src/LAPACK/dpotrf.f0000644002504400250440000001604614061636515017366 0ustar00dewhurstdewhurst00000000000000*> \brief \b DPOTRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DPOTRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DPOTRF( UPLO, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DPOTRF computes the Cholesky factorization of a real symmetric *> positive definite matrix A. *> *> The factorization has the form *> A = U**T * U, if UPLO = 'U', or *> A = L * L**T, if UPLO = 'L', *> where U is an upper triangular matrix and L is lower triangular. *> *> This is the block version of the algorithm, calling Level 3 BLAS. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the factor U or L from the Cholesky *> factorization A = U**T*U or A = L*L**T. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the leading minor of order i is not *> positive definite, and the factorization could not be *> completed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doublePOcomputational * * ===================================================================== SUBROUTINE DPOTRF( UPLO, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER J, JB, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DGEMM, DPOTRF2, DSYRK, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DPOTRF', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'DPOTRF', UPLO, N, -1, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code. * CALL DPOTRF2( UPLO, N, A, LDA, INFO ) ELSE * * Use blocked code. * IF( UPPER ) THEN * * Compute the Cholesky factorization A = U**T*U. * DO 10 J = 1, N, NB * * Update and factorize the current diagonal block and test * for non-positive-definiteness. * JB = MIN( NB, N-J+1 ) CALL DSYRK( 'Upper', 'Transpose', JB, J-1, -ONE, $ A( 1, J ), LDA, ONE, A( J, J ), LDA ) CALL DPOTRF2( 'Upper', JB, A( J, J ), LDA, INFO ) IF( INFO.NE.0 ) $ GO TO 30 IF( J+JB.LE.N ) THEN * * Compute the current block row. * CALL DGEMM( 'Transpose', 'No transpose', JB, N-J-JB+1, $ J-1, -ONE, A( 1, J ), LDA, A( 1, J+JB ), $ LDA, ONE, A( J, J+JB ), LDA ) CALL DTRSM( 'Left', 'Upper', 'Transpose', 'Non-unit', $ JB, N-J-JB+1, ONE, A( J, J ), LDA, $ A( J, J+JB ), LDA ) END IF 10 CONTINUE * ELSE * * Compute the Cholesky factorization A = L*L**T. * DO 20 J = 1, N, NB * * Update and factorize the current diagonal block and test * for non-positive-definiteness. * JB = MIN( NB, N-J+1 ) CALL DSYRK( 'Lower', 'No transpose', JB, J-1, -ONE, $ A( J, 1 ), LDA, ONE, A( J, J ), LDA ) CALL DPOTRF2( 'Lower', JB, A( J, J ), LDA, INFO ) IF( INFO.NE.0 ) $ GO TO 30 IF( J+JB.LE.N ) THEN * * Compute the current block column. * CALL DGEMM( 'No transpose', 'Transpose', N-J-JB+1, JB, $ J-1, -ONE, A( J+JB, 1 ), LDA, A( J, 1 ), $ LDA, ONE, A( J+JB, J ), LDA ) CALL DTRSM( 'Right', 'Lower', 'Transpose', 'Non-unit', $ N-J-JB+1, JB, ONE, A( J, J ), LDA, $ A( J+JB, J ), LDA ) END IF 20 CONTINUE END IF END IF GO TO 40 * 30 CONTINUE INFO = INFO + J - 1 * 40 CONTINUE RETURN * * End of DPOTRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsygst.f0000644000000000000000000000013214061636515015341 xustar0030 mtime=1623670093.176104106 30 atime=1623670093.176104106 30 ctime=1623670093.176104106 elk-7.2.42/src/LAPACK/dsygst.f0000644002504400250440000002536014061636515017404 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYGST * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYGST + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYGST reduces a real symmetric-definite generalized eigenproblem *> to standard form. *> *> If ITYPE = 1, the problem is A*x = lambda*B*x, *> and A is overwritten by inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T) *> *> If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or *> B*A*x = lambda*x, and A is overwritten by U*A*U**T or L**T*A*L. *> *> B must have been previously factorized as U**T*U or L*L**T by DPOTRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> = 1: compute inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T); *> = 2 or 3: compute U*A*U**T or L**T*A*L. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored and B is factored as *> U**T*U; *> = 'L': Lower triangle of A is stored and B is factored as *> L*L**T. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the transformed matrix, stored in the *> same format as A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB,N) *> The triangular factor from the Cholesky factorization of B, *> as returned by DPOTRF. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYcomputational * * ===================================================================== SUBROUTINE DSYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, HALF PARAMETER ( ONE = 1.0D0, HALF = 0.5D0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER K, KB, NB * .. * .. External Subroutines .. EXTERNAL DSYGS2, DSYMM, DSYR2K, DTRMM, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYGST', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'DSYGST', UPLO, N, -1, -1, -1 ) * IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code * CALL DSYGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) ELSE * * Use blocked code * IF( ITYPE.EQ.1 ) THEN IF( UPPER ) THEN * * Compute inv(U**T)*A*inv(U) * DO 10 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the upper triangle of A(k:n,k:n) * CALL DSYGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) IF( K+KB.LE.N ) THEN CALL DTRSM( 'Left', UPLO, 'Transpose', 'Non-unit', $ KB, N-K-KB+1, ONE, B( K, K ), LDB, $ A( K, K+KB ), LDA ) CALL DSYMM( 'Left', UPLO, KB, N-K-KB+1, -HALF, $ A( K, K ), LDA, B( K, K+KB ), LDB, ONE, $ A( K, K+KB ), LDA ) CALL DSYR2K( UPLO, 'Transpose', N-K-KB+1, KB, -ONE, $ A( K, K+KB ), LDA, B( K, K+KB ), LDB, $ ONE, A( K+KB, K+KB ), LDA ) CALL DSYMM( 'Left', UPLO, KB, N-K-KB+1, -HALF, $ A( K, K ), LDA, B( K, K+KB ), LDB, ONE, $ A( K, K+KB ), LDA ) CALL DTRSM( 'Right', UPLO, 'No transpose', $ 'Non-unit', KB, N-K-KB+1, ONE, $ B( K+KB, K+KB ), LDB, A( K, K+KB ), $ LDA ) END IF 10 CONTINUE ELSE * * Compute inv(L)*A*inv(L**T) * DO 20 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the lower triangle of A(k:n,k:n) * CALL DSYGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) IF( K+KB.LE.N ) THEN CALL DTRSM( 'Right', UPLO, 'Transpose', 'Non-unit', $ N-K-KB+1, KB, ONE, B( K, K ), LDB, $ A( K+KB, K ), LDA ) CALL DSYMM( 'Right', UPLO, N-K-KB+1, KB, -HALF, $ A( K, K ), LDA, B( K+KB, K ), LDB, ONE, $ A( K+KB, K ), LDA ) CALL DSYR2K( UPLO, 'No transpose', N-K-KB+1, KB, $ -ONE, A( K+KB, K ), LDA, B( K+KB, K ), $ LDB, ONE, A( K+KB, K+KB ), LDA ) CALL DSYMM( 'Right', UPLO, N-K-KB+1, KB, -HALF, $ A( K, K ), LDA, B( K+KB, K ), LDB, ONE, $ A( K+KB, K ), LDA ) CALL DTRSM( 'Left', UPLO, 'No transpose', $ 'Non-unit', N-K-KB+1, KB, ONE, $ B( K+KB, K+KB ), LDB, A( K+KB, K ), $ LDA ) END IF 20 CONTINUE END IF ELSE IF( UPPER ) THEN * * Compute U*A*U**T * DO 30 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the upper triangle of A(1:k+kb-1,1:k+kb-1) * CALL DTRMM( 'Left', UPLO, 'No transpose', 'Non-unit', $ K-1, KB, ONE, B, LDB, A( 1, K ), LDA ) CALL DSYMM( 'Right', UPLO, K-1, KB, HALF, A( K, K ), $ LDA, B( 1, K ), LDB, ONE, A( 1, K ), LDA ) CALL DSYR2K( UPLO, 'No transpose', K-1, KB, ONE, $ A( 1, K ), LDA, B( 1, K ), LDB, ONE, A, $ LDA ) CALL DSYMM( 'Right', UPLO, K-1, KB, HALF, A( K, K ), $ LDA, B( 1, K ), LDB, ONE, A( 1, K ), LDA ) CALL DTRMM( 'Right', UPLO, 'Transpose', 'Non-unit', $ K-1, KB, ONE, B( K, K ), LDB, A( 1, K ), $ LDA ) CALL DSYGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) 30 CONTINUE ELSE * * Compute L**T*A*L * DO 40 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the lower triangle of A(1:k+kb-1,1:k+kb-1) * CALL DTRMM( 'Right', UPLO, 'No transpose', 'Non-unit', $ KB, K-1, ONE, B, LDB, A( K, 1 ), LDA ) CALL DSYMM( 'Left', UPLO, KB, K-1, HALF, A( K, K ), $ LDA, B( K, 1 ), LDB, ONE, A( K, 1 ), LDA ) CALL DSYR2K( UPLO, 'Transpose', K-1, KB, ONE, $ A( K, 1 ), LDA, B( K, 1 ), LDB, ONE, A, $ LDA ) CALL DSYMM( 'Left', UPLO, KB, K-1, HALF, A( K, K ), $ LDA, B( K, 1 ), LDB, ONE, A( K, 1 ), LDA ) CALL DTRMM( 'Left', UPLO, 'Transpose', 'Non-unit', KB, $ K-1, ONE, B( K, K ), LDB, A( K, 1 ), LDA ) CALL DSYGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) 40 CONTINUE END IF END IF END IF RETURN * * End of DSYGST * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsyevx.f0000644000000000000000000000013214061636515015346 xustar0030 mtime=1623670093.178104104 30 atime=1623670093.178104104 30 ctime=1623670093.178104104 elk-7.2.42/src/LAPACK/dsyevx.f0000644002504400250440000004261614061636515017414 0ustar00dewhurstdewhurst00000000000000*> \brief DSYEVX computes the eigenvalues and, optionally, the left and/or right eigenvectors for SY matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYEVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, * ABSTOL, M, W, Z, LDZ, WORK, LWORK, IWORK, * IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, IU, LDA, LDZ, LWORK, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION A( LDA, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYEVX computes selected eigenvalues and, optionally, eigenvectors *> of a real symmetric matrix A. Eigenvalues and eigenvectors can be *> selected by specifying either a range of values or a range of indices *> for the desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found. *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found. *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA, N) *> On entry, the symmetric matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> On exit, the lower triangle (if UPLO='L') or the upper *> triangle (if UPLO='U') of A, including the diagonal, is *> destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing A to tridiagonal form. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> *> See "Computing Small Singular Values of Bidiagonal Matrices *> with Guaranteed High Relative Accuracy," by Demmel and *> Kahan, LAPACK Working Note #3. *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> On normal exit, the first M elements contain the selected *> eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (LDZ, max(1,M)) *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and the *> index of the eigenvector is returned in IFAIL. *> If JOBZ = 'N', then Z is not referenced. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= 1, when N <= 1; *> otherwise 8*N. *> For optimal efficiency, LWORK >= (NB+3)*N, *> where NB is the max of the blocksize for DSYTRD and DORMTR *> returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, then i eigenvectors failed to converge. *> Their indices are stored in array IFAIL. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup doubleSYeigen * * ===================================================================== SUBROUTINE DSYEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, $ ABSTOL, M, W, Z, LDZ, WORK, LWORK, IWORK, $ IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, IU, LDA, LDZ, LWORK, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION A( LDA, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, LOWER, LQUERY, TEST, VALEIG, $ WANTZ CHARACTER ORDER INTEGER I, IINFO, IMAX, INDD, INDE, INDEE, INDIBL, $ INDISP, INDIWO, INDTAU, INDWKN, INDWRK, ISCALE, $ ITMP1, J, JJ, LLWORK, LLWRKN, LWKMIN, $ LWKOPT, NB, NSPLIT DOUBLE PRECISION ABSTLL, ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, $ SIGMA, SMLNUM, TMP1, VLL, VUU * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, DLANSY EXTERNAL LSAME, ILAENV, DLAMCH, DLANSY * .. * .. External Subroutines .. EXTERNAL DCOPY, DLACPY, DORGTR, DORMTR, DSCAL, DSTEBZ, $ DSTEIN, DSTEQR, DSTERF, DSWAP, DSYTRD, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * LOWER = LSAME( UPLO, 'L' ) WANTZ = LSAME( JOBZ, 'V' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -2 ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) $ INFO = -8 ELSE IF( INDEIG ) THEN IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN INFO = -9 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -10 END IF END IF END IF IF( INFO.EQ.0 ) THEN IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.N ) ) THEN INFO = -15 END IF END IF * IF( INFO.EQ.0 ) THEN IF( N.LE.1 ) THEN LWKMIN = 1 WORK( 1 ) = LWKMIN ELSE LWKMIN = 8*N NB = ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) NB = MAX( NB, ILAENV( 1, 'DORMTR', UPLO, N, -1, -1, -1 ) ) LWKOPT = MAX( LWKMIN, ( NB + 3 )*N ) WORK( 1 ) = LWKOPT END IF * IF( LWORK.LT.LWKMIN .AND. .NOT.LQUERY ) $ INFO = -17 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYEVX', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * M = 0 IF( N.EQ.0 ) THEN RETURN END IF * IF( N.EQ.1 ) THEN IF( ALLEIG .OR. INDEIG ) THEN M = 1 W( 1 ) = A( 1, 1 ) ELSE IF( VL.LT.A( 1, 1 ) .AND. VU.GE.A( 1, 1 ) ) THEN M = 1 W( 1 ) = A( 1, 1 ) END IF END IF IF( WANTZ ) $ Z( 1, 1 ) = ONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = MIN( SQRT( BIGNUM ), ONE / SQRT( SQRT( SAFMIN ) ) ) * * Scale matrix to allowable range, if necessary. * ISCALE = 0 ABSTLL = ABSTOL IF( VALEIG ) THEN VLL = VL VUU = VU END IF ANRM = DLANSY( 'M', UPLO, N, A, LDA, WORK ) IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) THEN IF( LOWER ) THEN DO 10 J = 1, N CALL DSCAL( N-J+1, SIGMA, A( J, J ), 1 ) 10 CONTINUE ELSE DO 20 J = 1, N CALL DSCAL( J, SIGMA, A( 1, J ), 1 ) 20 CONTINUE END IF IF( ABSTOL.GT.0 ) $ ABSTLL = ABSTOL*SIGMA IF( VALEIG ) THEN VLL = VL*SIGMA VUU = VU*SIGMA END IF END IF * * Call DSYTRD to reduce symmetric matrix to tridiagonal form. * INDTAU = 1 INDE = INDTAU + N INDD = INDE + N INDWRK = INDD + N LLWORK = LWORK - INDWRK + 1 CALL DSYTRD( UPLO, N, A, LDA, WORK( INDD ), WORK( INDE ), $ WORK( INDTAU ), WORK( INDWRK ), LLWORK, IINFO ) * * If all eigenvalues are desired and ABSTOL is less than or equal to * zero, then call DSTERF or DORGTR and SSTEQR. If this fails for * some eigenvalue, then try DSTEBZ. * TEST = .FALSE. IF( INDEIG ) THEN IF( IL.EQ.1 .AND. IU.EQ.N ) THEN TEST = .TRUE. END IF END IF IF( ( ALLEIG .OR. TEST ) .AND. ( ABSTOL.LE.ZERO ) ) THEN CALL DCOPY( N, WORK( INDD ), 1, W, 1 ) INDEE = INDWRK + 2*N IF( .NOT.WANTZ ) THEN CALL DCOPY( N-1, WORK( INDE ), 1, WORK( INDEE ), 1 ) CALL DSTERF( N, W, WORK( INDEE ), INFO ) ELSE CALL DLACPY( 'A', N, N, A, LDA, Z, LDZ ) CALL DORGTR( UPLO, N, Z, LDZ, WORK( INDTAU ), $ WORK( INDWRK ), LLWORK, IINFO ) CALL DCOPY( N-1, WORK( INDE ), 1, WORK( INDEE ), 1 ) CALL DSTEQR( JOBZ, N, W, WORK( INDEE ), Z, LDZ, $ WORK( INDWRK ), INFO ) IF( INFO.EQ.0 ) THEN DO 30 I = 1, N IFAIL( I ) = 0 30 CONTINUE END IF END IF IF( INFO.EQ.0 ) THEN M = N GO TO 40 END IF INFO = 0 END IF * * Otherwise, call DSTEBZ and, if eigenvectors are desired, SSTEIN. * IF( WANTZ ) THEN ORDER = 'B' ELSE ORDER = 'E' END IF INDIBL = 1 INDISP = INDIBL + N INDIWO = INDISP + N CALL DSTEBZ( RANGE, ORDER, N, VLL, VUU, IL, IU, ABSTLL, $ WORK( INDD ), WORK( INDE ), M, NSPLIT, W, $ IWORK( INDIBL ), IWORK( INDISP ), WORK( INDWRK ), $ IWORK( INDIWO ), INFO ) * IF( WANTZ ) THEN CALL DSTEIN( N, WORK( INDD ), WORK( INDE ), M, W, $ IWORK( INDIBL ), IWORK( INDISP ), Z, LDZ, $ WORK( INDWRK ), IWORK( INDIWO ), IFAIL, INFO ) * * Apply orthogonal matrix used in reduction to tridiagonal * form to eigenvectors returned by DSTEIN. * INDWKN = INDE LLWRKN = LWORK - INDWKN + 1 CALL DORMTR( 'L', UPLO, 'N', N, M, A, LDA, WORK( INDTAU ), Z, $ LDZ, WORK( INDWKN ), LLWRKN, IINFO ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * 40 CONTINUE IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = M ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * * If eigenvalues are not in order, then sort them, along with * eigenvectors. * IF( WANTZ ) THEN DO 60 J = 1, M - 1 I = 0 TMP1 = W( J ) DO 50 JJ = J + 1, M IF( W( JJ ).LT.TMP1 ) THEN I = JJ TMP1 = W( JJ ) END IF 50 CONTINUE * IF( I.NE.0 ) THEN ITMP1 = IWORK( INDIBL+I-1 ) W( I ) = W( J ) IWORK( INDIBL+I-1 ) = IWORK( INDIBL+J-1 ) W( J ) = TMP1 IWORK( INDIBL+J-1 ) = ITMP1 CALL DSWAP( N, Z( 1, I ), 1, Z( 1, J ), 1 ) IF( INFO.NE.0 ) THEN ITMP1 = IFAIL( I ) IFAIL( I ) = IFAIL( J ) IFAIL( J ) = ITMP1 END IF END IF 60 CONTINUE END IF * * Set WORK(1) to optimal workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of DSYEVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ieeeck.f0000644000000000000000000000013214061636515015251 xustar0030 mtime=1623670093.180104102 30 atime=1623670093.180104102 30 ctime=1623670093.180104102 elk-7.2.42/src/LAPACK/ieeeck.f0000644002504400250440000001072414061636515017312 0ustar00dewhurstdewhurst00000000000000*> \brief \b IEEECK * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download IEEECK + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION IEEECK( ISPEC, ZERO, ONE ) * * .. Scalar Arguments .. * INTEGER ISPEC * REAL ONE, ZERO * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> IEEECK is called from the ILAENV to verify that Infinity and *> possibly NaN arithmetic is safe (i.e. will not trap). *> \endverbatim * * Arguments: * ========== * *> \param[in] ISPEC *> \verbatim *> ISPEC is INTEGER *> Specifies whether to test just for inifinity arithmetic *> or whether to test for infinity and NaN arithmetic. *> = 0: Verify infinity arithmetic only. *> = 1: Verify infinity and NaN arithmetic. *> \endverbatim *> *> \param[in] ZERO *> \verbatim *> ZERO is REAL *> Must contain the value 0.0 *> This is passed to prevent the compiler from optimizing *> away this code. *> \endverbatim *> *> \param[in] ONE *> \verbatim *> ONE is REAL *> Must contain the value 1.0 *> This is passed to prevent the compiler from optimizing *> away this code. *> *> RETURN VALUE: INTEGER *> = 0: Arithmetic failed to produce the correct answers *> = 1: Arithmetic produced the correct answers *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== INTEGER FUNCTION IEEECK( ISPEC, ZERO, ONE ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER ISPEC REAL ONE, ZERO * .. * * ===================================================================== * * .. Local Scalars .. REAL NAN1, NAN2, NAN3, NAN4, NAN5, NAN6, NEGINF, $ NEGZRO, NEWZRO, POSINF * .. * .. Executable Statements .. IEEECK = 1 * POSINF = ONE / ZERO IF( POSINF.LE.ONE ) THEN IEEECK = 0 RETURN END IF * NEGINF = -ONE / ZERO IF( NEGINF.GE.ZERO ) THEN IEEECK = 0 RETURN END IF * NEGZRO = ONE / ( NEGINF+ONE ) IF( NEGZRO.NE.ZERO ) THEN IEEECK = 0 RETURN END IF * NEGINF = ONE / NEGZRO IF( NEGINF.GE.ZERO ) THEN IEEECK = 0 RETURN END IF * NEWZRO = NEGZRO + ZERO IF( NEWZRO.NE.ZERO ) THEN IEEECK = 0 RETURN END IF * POSINF = ONE / NEWZRO IF( POSINF.LE.ONE ) THEN IEEECK = 0 RETURN END IF * NEGINF = NEGINF*POSINF IF( NEGINF.GE.ZERO ) THEN IEEECK = 0 RETURN END IF * POSINF = POSINF*POSINF IF( POSINF.LE.ONE ) THEN IEEECK = 0 RETURN END IF * * * * * Return if we were only asked to check infinity arithmetic * IF( ISPEC.EQ.0 ) $ RETURN * NAN1 = POSINF + NEGINF * NAN2 = POSINF / NEGINF * NAN3 = POSINF / POSINF * NAN4 = POSINF*ZERO * NAN5 = NEGINF*NEGZRO * NAN6 = NAN5*ZERO * IF( NAN1.EQ.NAN1 ) THEN IEEECK = 0 RETURN END IF * IF( NAN2.EQ.NAN2 ) THEN IEEECK = 0 RETURN END IF * IF( NAN3.EQ.NAN3 ) THEN IEEECK = 0 RETURN END IF * IF( NAN4.EQ.NAN4 ) THEN IEEECK = 0 RETURN END IF * IF( NAN5.EQ.NAN5 ) THEN IEEECK = 0 RETURN END IF * IF( NAN6.EQ.NAN6 ) THEN IEEECK = 0 RETURN END IF * RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/iparmq.f0000644000000000000000000000012614061636515015320 xustar0028 mtime=1623670093.1821041 30 atime=1623670093.181104101 28 ctime=1623670093.1821041 elk-7.2.42/src/LAPACK/iparmq.f0000644002504400250440000003342614061636515017362 0ustar00dewhurstdewhurst00000000000000*> \brief \b IPARMQ * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download IPARMQ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION IPARMQ( ISPEC, NAME, OPTS, N, ILO, IHI, LWORK ) * * .. Scalar Arguments .. * INTEGER IHI, ILO, ISPEC, LWORK, N * CHARACTER NAME*( * ), OPTS*( * ) * * *> \par Purpose: * ============= *> *> \verbatim *> *> This program sets problem and machine dependent parameters *> useful for xHSEQR and related subroutines for eigenvalue *> problems. It is called whenever *> IPARMQ is called with 12 <= ISPEC <= 16 *> \endverbatim * * Arguments: * ========== * *> \param[in] ISPEC *> \verbatim *> ISPEC is INTEGER *> ISPEC specifies which tunable parameter IPARMQ should *> return. *> *> ISPEC=12: (INMIN) Matrices of order nmin or less *> are sent directly to xLAHQR, the implicit *> double shift QR algorithm. NMIN must be *> at least 11. *> *> ISPEC=13: (INWIN) Size of the deflation window. *> This is best set greater than or equal to *> the number of simultaneous shifts NS. *> Larger matrices benefit from larger deflation *> windows. *> *> ISPEC=14: (INIBL) Determines when to stop nibbling and *> invest in an (expensive) multi-shift QR sweep. *> If the aggressive early deflation subroutine *> finds LD converged eigenvalues from an order *> NW deflation window and LD > (NW*NIBBLE)/100, *> then the next QR sweep is skipped and early *> deflation is applied immediately to the *> remaining active diagonal block. Setting *> IPARMQ(ISPEC=14) = 0 causes TTQRE to skip a *> multi-shift QR sweep whenever early deflation *> finds a converged eigenvalue. Setting *> IPARMQ(ISPEC=14) greater than or equal to 100 *> prevents TTQRE from skipping a multi-shift *> QR sweep. *> *> ISPEC=15: (NSHFTS) The number of simultaneous shifts in *> a multi-shift QR iteration. *> *> ISPEC=16: (IACC22) IPARMQ is set to 0, 1 or 2 with the *> following meanings. *> 0: During the multi-shift QR/QZ sweep, *> blocked eigenvalue reordering, blocked *> Hessenberg-triangular reduction, *> reflections and/or rotations are not *> accumulated when updating the *> far-from-diagonal matrix entries. *> 1: During the multi-shift QR/QZ sweep, *> blocked eigenvalue reordering, blocked *> Hessenberg-triangular reduction, *> reflections and/or rotations are *> accumulated, and matrix-matrix *> multiplication is used to update the *> far-from-diagonal matrix entries. *> 2: During the multi-shift QR/QZ sweep, *> blocked eigenvalue reordering, blocked *> Hessenberg-triangular reduction, *> reflections and/or rotations are *> accumulated, and 2-by-2 block structure *> is exploited during matrix-matrix *> multiplies. *> (If xTRMM is slower than xGEMM, then *> IPARMQ(ISPEC=16)=1 may be more efficient than *> IPARMQ(ISPEC=16)=2 despite the greater level of *> arithmetic work implied by the latter choice.) *> \endverbatim *> *> \param[in] NAME *> \verbatim *> NAME is CHARACTER string *> Name of the calling subroutine *> \endverbatim *> *> \param[in] OPTS *> \verbatim *> OPTS is CHARACTER string *> This is a concatenation of the string arguments to *> TTQRE. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> N is the order of the Hessenberg matrix H. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> It is assumed that H is already upper triangular *> in rows and columns 1:ILO-1 and IHI+1:N. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The amount of workspace available. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Little is known about how best to choose these parameters. *> It is possible to use different values of the parameters *> for each of CHSEQR, DHSEQR, SHSEQR and ZHSEQR. *> *> It is probably best to choose different parameters for *> different matrices and different parameters at different *> times during the iteration, but this has not been *> implemented --- yet. *> *> *> The best choices of most of the parameters depend *> in an ill-understood way on the relative execution *> rate of xLAQR3 and xLAQR5 and on the nature of each *> particular eigenvalue problem. Experiment may be the *> only practical way to determine which choices are most *> effective. *> *> Following is a list of default values supplied by IPARMQ. *> These defaults may be adjusted in order to attain better *> performance in any particular computational environment. *> *> IPARMQ(ISPEC=12) The xLAHQR vs xLAQR0 crossover point. *> Default: 75. (Must be at least 11.) *> *> IPARMQ(ISPEC=13) Recommended deflation window size. *> This depends on ILO, IHI and NS, the *> number of simultaneous shifts returned *> by IPARMQ(ISPEC=15). The default for *> (IHI-ILO+1) <= 500 is NS. The default *> for (IHI-ILO+1) > 500 is 3*NS/2. *> *> IPARMQ(ISPEC=14) Nibble crossover point. Default: 14. *> *> IPARMQ(ISPEC=15) Number of simultaneous shifts, NS. *> a multi-shift QR iteration. *> *> If IHI-ILO+1 is ... *> *> greater than ...but less ... the *> or equal to ... than default is *> *> 0 30 NS = 2+ *> 30 60 NS = 4+ *> 60 150 NS = 10 *> 150 590 NS = ** *> 590 3000 NS = 64 *> 3000 6000 NS = 128 *> 6000 infinity NS = 256 *> *> (+) By default matrices of this order are *> passed to the implicit double shift routine *> xLAHQR. See IPARMQ(ISPEC=12) above. These *> values of NS are used only in case of a rare *> xLAHQR failure. *> *> (**) The asterisks (**) indicate an ad-hoc *> function increasing from 10 to 64. *> *> IPARMQ(ISPEC=16) Select structured matrix multiply. *> (See ISPEC=16 above for details.) *> Default: 3. *> \endverbatim *> * ===================================================================== INTEGER FUNCTION IPARMQ( ISPEC, NAME, OPTS, N, ILO, IHI, LWORK ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER IHI, ILO, ISPEC, LWORK, N CHARACTER NAME*( * ), OPTS*( * ) * * ================================================================ * .. Parameters .. INTEGER INMIN, INWIN, INIBL, ISHFTS, IACC22 PARAMETER ( INMIN = 12, INWIN = 13, INIBL = 14, $ ISHFTS = 15, IACC22 = 16 ) INTEGER NMIN, K22MIN, KACMIN, NIBBLE, KNWSWP PARAMETER ( NMIN = 75, K22MIN = 14, KACMIN = 14, $ NIBBLE = 14, KNWSWP = 500 ) REAL TWO PARAMETER ( TWO = 2.0 ) * .. * .. Local Scalars .. INTEGER NH, NS INTEGER I, IC, IZ CHARACTER SUBNAM*6 * .. * .. Intrinsic Functions .. INTRINSIC LOG, MAX, MOD, NINT, REAL * .. * .. Executable Statements .. IF( ( ISPEC.EQ.ISHFTS ) .OR. ( ISPEC.EQ.INWIN ) .OR. $ ( ISPEC.EQ.IACC22 ) ) THEN * * ==== Set the number simultaneous shifts ==== * NH = IHI - ILO + 1 NS = 2 IF( NH.GE.30 ) $ NS = 4 IF( NH.GE.60 ) $ NS = 10 IF( NH.GE.150 ) $ NS = MAX( 10, NH / NINT( LOG( REAL( NH ) ) / LOG( TWO ) ) ) IF( NH.GE.590 ) $ NS = 64 IF( NH.GE.3000 ) $ NS = 128 IF( NH.GE.6000 ) $ NS = 256 NS = MAX( 2, NS-MOD( NS, 2 ) ) END IF * IF( ISPEC.EQ.INMIN ) THEN * * * ===== Matrices of order smaller than NMIN get sent * . to xLAHQR, the classic double shift algorithm. * . This must be at least 11. ==== * IPARMQ = NMIN * ELSE IF( ISPEC.EQ.INIBL ) THEN * * ==== INIBL: skip a multi-shift qr iteration and * . whenever aggressive early deflation finds * . at least (NIBBLE*(window size)/100) deflations. ==== * IPARMQ = NIBBLE * ELSE IF( ISPEC.EQ.ISHFTS ) THEN * * ==== NSHFTS: The number of simultaneous shifts ===== * IPARMQ = NS * ELSE IF( ISPEC.EQ.INWIN ) THEN * * ==== NW: deflation window size. ==== * IF( NH.LE.KNWSWP ) THEN IPARMQ = NS ELSE IPARMQ = 3*NS / 2 END IF * ELSE IF( ISPEC.EQ.IACC22 ) THEN * * ==== IACC22: Whether to accumulate reflections * . before updating the far-from-diagonal elements * . and whether to use 2-by-2 block structure while * . doing it. A small amount of work could be saved * . by making this choice dependent also upon the * . NH=IHI-ILO+1. * * * Convert NAME to upper case if the first character is lower case. * IPARMQ = 0 SUBNAM = NAME IC = ICHAR( SUBNAM( 1: 1 ) ) IZ = ICHAR( 'Z' ) IF( IZ.EQ.90 .OR. IZ.EQ.122 ) THEN * * ASCII character set * IF( IC.GE.97 .AND. IC.LE.122 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.97 .AND. IC.LE.122 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) END DO END IF * ELSE IF( IZ.EQ.233 .OR. IZ.EQ.169 ) THEN * * EBCDIC character set * IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) ) THEN SUBNAM( 1: 1 ) = CHAR( IC+64 ) DO I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( ( IC.GE.129 .AND. IC.LE.137 ) .OR. $ ( IC.GE.145 .AND. IC.LE.153 ) .OR. $ ( IC.GE.162 .AND. IC.LE.169 ) )SUBNAM( I: $ I ) = CHAR( IC+64 ) END DO END IF * ELSE IF( IZ.EQ.218 .OR. IZ.EQ.250 ) THEN * * Prime machines: ASCII+128 * IF( IC.GE.225 .AND. IC.LE.250 ) THEN SUBNAM( 1: 1 ) = CHAR( IC-32 ) DO I = 2, 6 IC = ICHAR( SUBNAM( I: I ) ) IF( IC.GE.225 .AND. IC.LE.250 ) $ SUBNAM( I: I ) = CHAR( IC-32 ) END DO END IF END IF * IF( SUBNAM( 2:6 ).EQ.'GGHRD' .OR. $ SUBNAM( 2:6 ).EQ.'GGHD3' ) THEN IPARMQ = 1 IF( NH.GE.K22MIN ) $ IPARMQ = 2 ELSE IF ( SUBNAM( 4:6 ).EQ.'EXC' ) THEN IF( NH.GE.KACMIN ) $ IPARMQ = 1 IF( NH.GE.K22MIN ) $ IPARMQ = 2 ELSE IF ( SUBNAM( 2:6 ).EQ.'HSEQR' .OR. $ SUBNAM( 2:5 ).EQ.'LAQR' ) THEN IF( NS.GE.KACMIN ) $ IPARMQ = 1 IF( NS.GE.K22MIN ) $ IPARMQ = 2 END IF * ELSE * ===== invalid value of ispec ===== IPARMQ = -1 * END IF * * ==== End of IPARMQ ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ztrevc3.f0000644000000000000000000000013014061636515015422 xustar0030 mtime=1623670093.184104099 28 atime=1623670093.1831041 30 ctime=1623670093.184104099 elk-7.2.42/src/LAPACK/ztrevc3.f0000644002504400250440000005123714061636515017471 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTREVC3 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZTREVC3 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZTREVC3( SIDE, HOWMNY, SELECT, N, T, LDT, VL, LDVL, VR, * $ LDVR, MM, M, WORK, LWORK, RWORK, LRWORK, INFO) * * .. Scalar Arguments .. * CHARACTER HOWMNY, SIDE * INTEGER INFO, LDT, LDVL, LDVR, LWORK, M, MM, N * .. * .. Array Arguments .. * LOGICAL SELECT( * ) * DOUBLE PRECISION RWORK( * ) * COMPLEX*16 T( LDT, * ), VL( LDVL, * ), VR( LDVR, * ), * $ WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTREVC3 computes some or all of the right and/or left eigenvectors of *> a complex upper triangular matrix T. *> Matrices of this type are produced by the Schur factorization of *> a complex general matrix: A = Q*T*Q**H, as computed by ZHSEQR. *> *> The right eigenvector x and the left eigenvector y of T corresponding *> to an eigenvalue w are defined by: *> *> T*x = w*x, (y**H)*T = w*(y**H) *> *> where y**H denotes the conjugate transpose of the vector y. *> The eigenvalues are not input to this routine, but are read directly *> from the diagonal of T. *> *> This routine returns the matrices X and/or Y of right and left *> eigenvectors of T, or the products Q*X and/or Q*Y, where Q is an *> input matrix. If Q is the unitary factor that reduces a matrix A to *> Schur form T, then Q*X and Q*Y are the matrices of right and left *> eigenvectors of A. *> *> This uses a Level 3 BLAS version of the back transformation. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'R': compute right eigenvectors only; *> = 'L': compute left eigenvectors only; *> = 'B': compute both right and left eigenvectors. *> \endverbatim *> *> \param[in] HOWMNY *> \verbatim *> HOWMNY is CHARACTER*1 *> = 'A': compute all right and/or left eigenvectors; *> = 'B': compute all right and/or left eigenvectors, *> backtransformed using the matrices supplied in *> VR and/or VL; *> = 'S': compute selected right and/or left eigenvectors, *> as indicated by the logical array SELECT. *> \endverbatim *> *> \param[in] SELECT *> \verbatim *> SELECT is LOGICAL array, dimension (N) *> If HOWMNY = 'S', SELECT specifies the eigenvectors to be *> computed. *> The eigenvector corresponding to the j-th eigenvalue is *> computed if SELECT(j) = .TRUE.. *> Not referenced if HOWMNY = 'A' or 'B'. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix T. N >= 0. *> \endverbatim *> *> \param[in,out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,N) *> The upper triangular matrix T. T is modified, but restored *> on exit. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= max(1,N). *> \endverbatim *> *> \param[in,out] VL *> \verbatim *> VL is COMPLEX*16 array, dimension (LDVL,MM) *> On entry, if SIDE = 'L' or 'B' and HOWMNY = 'B', VL must *> contain an N-by-N matrix Q (usually the unitary matrix Q of *> Schur vectors returned by ZHSEQR). *> On exit, if SIDE = 'L' or 'B', VL contains: *> if HOWMNY = 'A', the matrix Y of left eigenvectors of T; *> if HOWMNY = 'B', the matrix Q*Y; *> if HOWMNY = 'S', the left eigenvectors of T specified by *> SELECT, stored consecutively in the columns *> of VL, in the same order as their *> eigenvalues. *> Not referenced if SIDE = 'R'. *> \endverbatim *> *> \param[in] LDVL *> \verbatim *> LDVL is INTEGER *> The leading dimension of the array VL. *> LDVL >= 1, and if SIDE = 'L' or 'B', LDVL >= N. *> \endverbatim *> *> \param[in,out] VR *> \verbatim *> VR is COMPLEX*16 array, dimension (LDVR,MM) *> On entry, if SIDE = 'R' or 'B' and HOWMNY = 'B', VR must *> contain an N-by-N matrix Q (usually the unitary matrix Q of *> Schur vectors returned by ZHSEQR). *> On exit, if SIDE = 'R' or 'B', VR contains: *> if HOWMNY = 'A', the matrix X of right eigenvectors of T; *> if HOWMNY = 'B', the matrix Q*X; *> if HOWMNY = 'S', the right eigenvectors of T specified by *> SELECT, stored consecutively in the columns *> of VR, in the same order as their *> eigenvalues. *> Not referenced if SIDE = 'L'. *> \endverbatim *> *> \param[in] LDVR *> \verbatim *> LDVR is INTEGER *> The leading dimension of the array VR. *> LDVR >= 1, and if SIDE = 'R' or 'B', LDVR >= N. *> \endverbatim *> *> \param[in] MM *> \verbatim *> MM is INTEGER *> The number of columns in the arrays VL and/or VR. MM >= M. *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The number of columns in the arrays VL and/or VR actually *> used to store the eigenvectors. *> If HOWMNY = 'A' or 'B', M is set to N. *> Each selected eigenvector occupies one column. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of array WORK. LWORK >= max(1,2*N). *> For optimum performance, LWORK >= N + 2*N*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (LRWORK) *> \endverbatim *> *> \param[in] LRWORK *> \verbatim *> LRWORK is INTEGER *> The dimension of array RWORK. LRWORK >= max(1,N). *> *> If LRWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the RWORK array, returns *> this value as the first entry of the RWORK array, and no error *> message related to LRWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * * @precisions fortran z -> c * *> \ingroup complex16OTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The algorithm used in this program is basically backward (forward) *> substitution, with scaling to make the the code robust against *> possible overflow. *> *> Each eigenvector is normalized so that the element of largest *> magnitude has magnitude 1; here the magnitude of a complex number *> (x,y) is taken to be |x| + |y|. *> \endverbatim *> * ===================================================================== SUBROUTINE ZTREVC3( SIDE, HOWMNY, SELECT, N, T, LDT, VL, LDVL, VR, $ LDVR, MM, M, WORK, LWORK, RWORK, LRWORK, INFO) IMPLICIT NONE * * -- LAPACK computational routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. CHARACTER HOWMNY, SIDE INTEGER INFO, LDT, LDVL, LDVR, LWORK, LRWORK, M, MM, N * .. * .. Array Arguments .. LOGICAL SELECT( * ) DOUBLE PRECISION RWORK( * ) COMPLEX*16 T( LDT, * ), VL( LDVL, * ), VR( LDVR, * ), $ WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) COMPLEX*16 CZERO, CONE PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ), $ CONE = ( 1.0D+0, 0.0D+0 ) ) INTEGER NBMIN, NBMAX PARAMETER ( NBMIN = 8, NBMAX = 128 ) * .. * .. Local Scalars .. LOGICAL ALLV, BOTHV, LEFTV, LQUERY, OVER, RIGHTV, SOMEV INTEGER I, II, IS, J, K, KI, IV, MAXWRK, NB DOUBLE PRECISION OVFL, REMAX, SCALE, SMIN, SMLNUM, ULP, UNFL COMPLEX*16 CDUM * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV, IZAMAX DOUBLE PRECISION DLAMCH, DZASUM EXTERNAL LSAME, ILAENV, IZAMAX, DLAMCH, DZASUM * .. * .. External Subroutines .. EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS, $ ZGEMM, DLABAD, ZLASET, ZLACPY * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, CONJG, AIMAG, MAX * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( AIMAG( CDUM ) ) * .. * .. Executable Statements .. * * Decode and test the input parameters * BOTHV = LSAME( SIDE, 'B' ) RIGHTV = LSAME( SIDE, 'R' ) .OR. BOTHV LEFTV = LSAME( SIDE, 'L' ) .OR. BOTHV * ALLV = LSAME( HOWMNY, 'A' ) OVER = LSAME( HOWMNY, 'B' ) SOMEV = LSAME( HOWMNY, 'S' ) * * Set M to the number of columns required to store the selected * eigenvectors. * IF( SOMEV ) THEN M = 0 DO 10 J = 1, N IF( SELECT( J ) ) $ M = M + 1 10 CONTINUE ELSE M = N END IF * INFO = 0 NB = ILAENV( 1, 'ZTREVC', SIDE // HOWMNY, N, -1, -1, -1 ) MAXWRK = N + 2*N*NB WORK(1) = MAXWRK RWORK(1) = N LQUERY = ( LWORK.EQ.-1 .OR. LRWORK.EQ.-1 ) IF( .NOT.RIGHTV .AND. .NOT.LEFTV ) THEN INFO = -1 ELSE IF( .NOT.ALLV .AND. .NOT.OVER .AND. .NOT.SOMEV ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( LDT.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( LDVL.LT.1 .OR. ( LEFTV .AND. LDVL.LT.N ) ) THEN INFO = -8 ELSE IF( LDVR.LT.1 .OR. ( RIGHTV .AND. LDVR.LT.N ) ) THEN INFO = -10 ELSE IF( MM.LT.M ) THEN INFO = -11 ELSE IF( LWORK.LT.MAX( 1, 2*N ) .AND. .NOT.LQUERY ) THEN INFO = -14 ELSE IF ( LRWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -16 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZTREVC3', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible. * IF( N.EQ.0 ) $ RETURN * * Use blocked version of back-transformation if sufficient workspace. * Zero-out the workspace to avoid potential NaN propagation. * IF( OVER .AND. LWORK .GE. N + 2*N*NBMIN ) THEN NB = (LWORK - N) / (2*N) NB = MIN( NB, NBMAX ) CALL ZLASET( 'F', N, 1+2*NB, CZERO, CZERO, WORK, N ) ELSE NB = 1 END IF * * Set the constants to control overflow. * UNFL = DLAMCH( 'Safe minimum' ) OVFL = ONE / UNFL CALL DLABAD( UNFL, OVFL ) ULP = DLAMCH( 'Precision' ) SMLNUM = UNFL*( N / ULP ) * * Store the diagonal elements of T in working array WORK. * DO 20 I = 1, N WORK( I ) = T( I, I ) 20 CONTINUE * * Compute 1-norm of each column of strictly upper triangular * part of T to control overflow in triangular solver. * RWORK( 1 ) = ZERO DO 30 J = 2, N RWORK( J ) = DZASUM( J-1, T( 1, J ), 1 ) 30 CONTINUE * IF( RIGHTV ) THEN * * ============================================================ * Compute right eigenvectors. * * IV is index of column in current block. * Non-blocked version always uses IV=NB=1; * blocked version starts with IV=NB, goes down to 1. * (Note the "0-th" column is used to store the original diagonal.) IV = NB IS = M DO 80 KI = N, 1, -1 IF( SOMEV ) THEN IF( .NOT.SELECT( KI ) ) $ GO TO 80 END IF SMIN = MAX( ULP*( CABS1( T( KI, KI ) ) ), SMLNUM ) * * -------------------------------------------------------- * Complex right eigenvector * WORK( KI + IV*N ) = CONE * * Form right-hand side. * DO 40 K = 1, KI - 1 WORK( K + IV*N ) = -T( K, KI ) 40 CONTINUE * * Solve upper triangular system: * [ T(1:KI-1,1:KI-1) - T(KI,KI) ]*X = SCALE*WORK. * DO 50 K = 1, KI - 1 T( K, K ) = T( K, K ) - T( KI, KI ) IF( CABS1( T( K, K ) ).LT.SMIN ) $ T( K, K ) = SMIN 50 CONTINUE * IF( KI.GT.1 ) THEN CALL ZLATRS( 'Upper', 'No transpose', 'Non-unit', 'Y', $ KI-1, T, LDT, WORK( 1 + IV*N ), SCALE, $ RWORK, INFO ) WORK( KI + IV*N ) = SCALE END IF * * Copy the vector x or Q*x to VR and normalize. * IF( .NOT.OVER ) THEN * ------------------------------ * no back-transform: copy x to VR and normalize. CALL ZCOPY( KI, WORK( 1 + IV*N ), 1, VR( 1, IS ), 1 ) * II = IZAMAX( KI, VR( 1, IS ), 1 ) REMAX = ONE / CABS1( VR( II, IS ) ) CALL ZDSCAL( KI, REMAX, VR( 1, IS ), 1 ) * DO 60 K = KI + 1, N VR( K, IS ) = CZERO 60 CONTINUE * ELSE IF( NB.EQ.1 ) THEN * ------------------------------ * version 1: back-transform each vector with GEMV, Q*x. IF( KI.GT.1 ) $ CALL ZGEMV( 'N', N, KI-1, CONE, VR, LDVR, $ WORK( 1 + IV*N ), 1, DCMPLX( SCALE ), $ VR( 1, KI ), 1 ) * II = IZAMAX( N, VR( 1, KI ), 1 ) REMAX = ONE / CABS1( VR( II, KI ) ) CALL ZDSCAL( N, REMAX, VR( 1, KI ), 1 ) * ELSE * ------------------------------ * version 2: back-transform block of vectors with GEMM * zero out below vector DO K = KI + 1, N WORK( K + IV*N ) = CZERO END DO * * Columns IV:NB of work are valid vectors. * When the number of vectors stored reaches NB, * or if this was last vector, do the GEMM IF( (IV.EQ.1) .OR. (KI.EQ.1) ) THEN CALL ZGEMM( 'N', 'N', N, NB-IV+1, KI+NB-IV, CONE, $ VR, LDVR, $ WORK( 1 + (IV)*N ), N, $ CZERO, $ WORK( 1 + (NB+IV)*N ), N ) * normalize vectors DO K = IV, NB II = IZAMAX( N, WORK( 1 + (NB+K)*N ), 1 ) REMAX = ONE / CABS1( WORK( II + (NB+K)*N ) ) CALL ZDSCAL( N, REMAX, WORK( 1 + (NB+K)*N ), 1 ) END DO CALL ZLACPY( 'F', N, NB-IV+1, $ WORK( 1 + (NB+IV)*N ), N, $ VR( 1, KI ), LDVR ) IV = NB ELSE IV = IV - 1 END IF END IF * * Restore the original diagonal elements of T. * DO 70 K = 1, KI - 1 T( K, K ) = WORK( K ) 70 CONTINUE * IS = IS - 1 80 CONTINUE END IF * IF( LEFTV ) THEN * * ============================================================ * Compute left eigenvectors. * * IV is index of column in current block. * Non-blocked version always uses IV=1; * blocked version starts with IV=1, goes up to NB. * (Note the "0-th" column is used to store the original diagonal.) IV = 1 IS = 1 DO 130 KI = 1, N * IF( SOMEV ) THEN IF( .NOT.SELECT( KI ) ) $ GO TO 130 END IF SMIN = MAX( ULP*( CABS1( T( KI, KI ) ) ), SMLNUM ) * * -------------------------------------------------------- * Complex left eigenvector * WORK( KI + IV*N ) = CONE * * Form right-hand side. * DO 90 K = KI + 1, N WORK( K + IV*N ) = -CONJG( T( KI, K ) ) 90 CONTINUE * * Solve conjugate-transposed triangular system: * [ T(KI+1:N,KI+1:N) - T(KI,KI) ]**H * X = SCALE*WORK. * DO 100 K = KI + 1, N T( K, K ) = T( K, K ) - T( KI, KI ) IF( CABS1( T( K, K ) ).LT.SMIN ) $ T( K, K ) = SMIN 100 CONTINUE * IF( KI.LT.N ) THEN CALL ZLATRS( 'Upper', 'Conjugate transpose', 'Non-unit', $ 'Y', N-KI, T( KI+1, KI+1 ), LDT, $ WORK( KI+1 + IV*N ), SCALE, RWORK, INFO ) WORK( KI + IV*N ) = SCALE END IF * * Copy the vector x or Q*x to VL and normalize. * IF( .NOT.OVER ) THEN * ------------------------------ * no back-transform: copy x to VL and normalize. CALL ZCOPY( N-KI+1, WORK( KI + IV*N ), 1, VL(KI,IS), 1 ) * II = IZAMAX( N-KI+1, VL( KI, IS ), 1 ) + KI - 1 REMAX = ONE / CABS1( VL( II, IS ) ) CALL ZDSCAL( N-KI+1, REMAX, VL( KI, IS ), 1 ) * DO 110 K = 1, KI - 1 VL( K, IS ) = CZERO 110 CONTINUE * ELSE IF( NB.EQ.1 ) THEN * ------------------------------ * version 1: back-transform each vector with GEMV, Q*x. IF( KI.LT.N ) $ CALL ZGEMV( 'N', N, N-KI, CONE, VL( 1, KI+1 ), LDVL, $ WORK( KI+1 + IV*N ), 1, DCMPLX( SCALE ), $ VL( 1, KI ), 1 ) * II = IZAMAX( N, VL( 1, KI ), 1 ) REMAX = ONE / CABS1( VL( II, KI ) ) CALL ZDSCAL( N, REMAX, VL( 1, KI ), 1 ) * ELSE * ------------------------------ * version 2: back-transform block of vectors with GEMM * zero out above vector * could go from KI-NV+1 to KI-1 DO K = 1, KI - 1 WORK( K + IV*N ) = CZERO END DO * * Columns 1:IV of work are valid vectors. * When the number of vectors stored reaches NB, * or if this was last vector, do the GEMM IF( (IV.EQ.NB) .OR. (KI.EQ.N) ) THEN CALL ZGEMM( 'N', 'N', N, IV, N-KI+IV, CONE, $ VL( 1, KI-IV+1 ), LDVL, $ WORK( KI-IV+1 + (1)*N ), N, $ CZERO, $ WORK( 1 + (NB+1)*N ), N ) * normalize vectors DO K = 1, IV II = IZAMAX( N, WORK( 1 + (NB+K)*N ), 1 ) REMAX = ONE / CABS1( WORK( II + (NB+K)*N ) ) CALL ZDSCAL( N, REMAX, WORK( 1 + (NB+K)*N ), 1 ) END DO CALL ZLACPY( 'F', N, IV, $ WORK( 1 + (NB+1)*N ), N, $ VL( 1, KI-IV+1 ), LDVL ) IV = 1 ELSE IV = IV + 1 END IF END IF * * Restore the original diagonal elements of T. * DO 120 K = KI + 1, N T( K, K ) = WORK( K ) 120 CONTINUE * IS = IS + 1 130 CONTINUE END IF * RETURN * * End of ZTREVC3 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhseqr.f0000644000000000000000000000013214061636515015340 xustar0030 mtime=1623670093.186104097 30 atime=1623670093.185104098 30 ctime=1623670093.186104097 elk-7.2.42/src/LAPACK/zhseqr.f0000644002504400250440000004275714061636515017414 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHSEQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHSEQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHSEQR( JOB, COMPZ, N, ILO, IHI, H, LDH, W, Z, LDZ, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, ILO, INFO, LDH, LDZ, LWORK, N * CHARACTER COMPZ, JOB * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHSEQR computes the eigenvalues of a Hessenberg matrix H *> and, optionally, the matrices T and Z from the Schur decomposition *> H = Z T Z**H, where T is an upper triangular matrix (the *> Schur form), and Z is the unitary matrix of Schur vectors. *> *> Optionally Z may be postmultiplied into an input unitary *> matrix Q so that this routine can give the Schur factorization *> of a matrix A which has been reduced to the Hessenberg form H *> by the unitary matrix Q: A = Q*H*Q**H = (QZ)*T*(QZ)**H. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOB *> \verbatim *> JOB is CHARACTER*1 *> = 'E': compute eigenvalues only; *> = 'S': compute eigenvalues and the Schur form T. *> \endverbatim *> *> \param[in] COMPZ *> \verbatim *> COMPZ is CHARACTER*1 *> = 'N': no Schur vectors are computed; *> = 'I': Z is initialized to the unit matrix and the matrix Z *> of Schur vectors of H is returned; *> = 'V': Z must contain an unitary matrix Q on entry, and *> the product Q*Z is returned. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> It is assumed that H is already upper triangular in rows *> and columns 1:ILO-1 and IHI+1:N. ILO and IHI are normally *> set by a previous call to ZGEBAL, and then passed to ZGEHRD *> when the matrix output by ZGEBAL is reduced to Hessenberg *> form. Otherwise ILO and IHI should be set to 1 and N *> respectively. If N > 0, then 1 <= ILO <= IHI <= N. *> If N = 0, then ILO = 1 and IHI = 0. *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On entry, the upper Hessenberg matrix H. *> On exit, if INFO = 0 and JOB = 'S', H contains the upper *> triangular matrix T from the Schur decomposition (the *> Schur form). If INFO = 0 and JOB = 'E', the contents of *> H are unspecified on exit. (The output value of H when *> INFO > 0 is given under the description of INFO below.) *> *> Unlike earlier versions of ZHSEQR, this subroutine may *> explicitly H(i,j) = 0 for i > j and j = 1, 2, ... ILO-1 *> or j = IHI+1, IHI+2, ... N. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> The leading dimension of the array H. LDH >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (N) *> The computed eigenvalues. If JOB = 'S', the eigenvalues are *> stored in the same order as on the diagonal of the Schur *> form returned in H, with W(i) = H(i,i). *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,N) *> If COMPZ = 'N', Z is not referenced. *> If COMPZ = 'I', on entry Z need not be set and on exit, *> if INFO = 0, Z contains the unitary matrix Z of the Schur *> vectors of H. If COMPZ = 'V', on entry Z must contain an *> N-by-N matrix Q, which is assumed to be equal to the unit *> matrix except for the submatrix Z(ILO:IHI,ILO:IHI). On exit, *> if INFO = 0, Z contains Q*Z. *> Normally Q is the unitary matrix generated by ZUNGHR *> after the call to ZGEHRD which formed the Hessenberg matrix *> H. (The output value of Z when INFO > 0 is given under *> the description of INFO below.) *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. if COMPZ = 'I' or *> COMPZ = 'V', then LDZ >= MAX(1,N). Otherwise, LDZ >= 1. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (LWORK) *> On exit, if INFO = 0, WORK(1) returns an estimate of *> the optimal value for LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N) *> is sufficient and delivers very good and sometimes *> optimal performance. However, LWORK as large as 11*N *> may be required for optimal performance. A workspace *> query is recommended to determine the optimal workspace *> size. *> *> If LWORK = -1, then ZHSEQR does a workspace query. *> In this case, ZHSEQR checks the input parameters and *> estimates the optimal workspace size for the given *> values of N, ILO and IHI. The estimate is returned *> in WORK(1). No error message related to LWORK is *> issued by XERBLA. Neither H nor Z are accessed. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal *> value *> > 0: if INFO = i, ZHSEQR failed to compute all of *> the eigenvalues. Elements 1:ilo-1 and i+1:n of W *> contain those eigenvalues which have been *> successfully computed. (Failures are rare.) *> *> If INFO > 0 and JOB = 'E', then on exit, the *> remaining unconverged eigenvalues are the eigen- *> values of the upper Hessenberg matrix rows and *> columns ILO through INFO of the final, output *> value of H. *> *> If INFO > 0 and JOB = 'S', then on exit *> *> (*) (initial value of H)*U = U*(final value of H) *> *> where U is a unitary matrix. The final *> value of H is upper Hessenberg and triangular in *> rows and columns INFO+1 through IHI. *> *> If INFO > 0 and COMPZ = 'V', then on exit *> *> (final value of Z) = (initial value of Z)*U *> *> where U is the unitary matrix in (*) (regard- *> less of the value of JOB.) *> *> If INFO > 0 and COMPZ = 'I', then on exit *> (final value of Z) = U *> where U is the unitary matrix in (*) (regard- *> less of the value of JOB.) *> *> If INFO > 0 and COMPZ = 'N', then Z is not *> accessed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA * *> \par Further Details: * ===================== *> *> \verbatim *> *> Default values supplied by *> ILAENV(ISPEC,'ZHSEQR',JOB(:1)//COMPZ(:1),N,ILO,IHI,LWORK). *> It is suggested that these defaults be adjusted in order *> to attain best performance in each particular *> computational environment. *> *> ISPEC=12: The ZLAHQR vs ZLAQR0 crossover point. *> Default: 75. (Must be at least 11.) *> *> ISPEC=13: Recommended deflation window size. *> This depends on ILO, IHI and NS. NS is the *> number of simultaneous shifts returned *> by ILAENV(ISPEC=15). (See ISPEC=15 below.) *> The default for (IHI-ILO+1) <= 500 is NS. *> The default for (IHI-ILO+1) > 500 is 3*NS/2. *> *> ISPEC=14: Nibble crossover point. (See IPARMQ for *> details.) Default: 14% of deflation window *> size. *> *> ISPEC=15: Number of simultaneous shifts in a multishift *> QR iteration. *> *> If IHI-ILO+1 is ... *> *> greater than ...but less ... the *> or equal to ... than default is *> *> 1 30 NS = 2(+) *> 30 60 NS = 4(+) *> 60 150 NS = 10(+) *> 150 590 NS = ** *> 590 3000 NS = 64 *> 3000 6000 NS = 128 *> 6000 infinity NS = 256 *> *> (+) By default some or all matrices of this order *> are passed to the implicit double shift routine *> ZLAHQR and this parameter is ignored. See *> ISPEC=12 above and comments in IPARMQ for *> details. *> *> (**) The asterisks (**) indicate an ad-hoc *> function of N increasing from 10 to 64. *> *> ISPEC=16: Select structured matrix multiply. *> If the number of simultaneous shifts (specified *> by ISPEC=15) is less than 14, then the default *> for ISPEC=16 is 0. Otherwise the default for *> ISPEC=16 is 2. *> \endverbatim * *> \par References: * ================ *> *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 *> Performance, SIAM Journal of Matrix Analysis, volume 23, pages *> 929--947, 2002. *> \n *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part II: Aggressive Early Deflation, SIAM Journal *> of Matrix Analysis, volume 23, pages 948--973, 2002. * * ===================================================================== SUBROUTINE ZHSEQR( JOB, COMPZ, N, ILO, IHI, H, LDH, W, Z, LDZ, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, ILO, INFO, LDH, LDZ, LWORK, N CHARACTER COMPZ, JOB * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. * * ==== Matrices of order NTINY or smaller must be processed by * . ZLAHQR because of insufficient subdiagonal scratch space. * . (This is a hard limit.) ==== INTEGER NTINY PARAMETER ( NTINY = 11 ) * * ==== NL allocates some local workspace to help small matrices * . through a rare ZLAHQR failure. NL > NTINY = 11 is * . required and NL <= NMIN = ILAENV(ISPEC=12,...) is recom- * . mended. (The default value of NMIN is 75.) Using NL = 49 * . allows up to six simultaneous shifts and a 16-by-16 * . deflation window. ==== INTEGER NL PARAMETER ( NL = 49 ) COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO PARAMETER ( RZERO = 0.0d0 ) * .. * .. Local Arrays .. COMPLEX*16 HL( NL, NL ), WORKL( NL ) * .. * .. Local Scalars .. INTEGER KBOT, NMIN LOGICAL INITZ, LQUERY, WANTT, WANTZ * .. * .. External Functions .. INTEGER ILAENV LOGICAL LSAME EXTERNAL ILAENV, LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZCOPY, ZLACPY, ZLAHQR, ZLAQR0, ZLASET * .. * .. Intrinsic Functions .. INTRINSIC DBLE, DCMPLX, MAX, MIN * .. * .. Executable Statements .. * * ==== Decode and check the input parameters. ==== * WANTT = LSAME( JOB, 'S' ) INITZ = LSAME( COMPZ, 'I' ) WANTZ = INITZ .OR. LSAME( COMPZ, 'V' ) WORK( 1 ) = DCMPLX( DBLE( MAX( 1, N ) ), RZERO ) LQUERY = LWORK.EQ.-1 * INFO = 0 IF( .NOT.LSAME( JOB, 'E' ) .AND. .NOT.WANTT ) THEN INFO = -1 ELSE IF( .NOT.LSAME( COMPZ, 'N' ) .AND. .NOT.WANTZ ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( IHI.LT.MIN( ILO, N ) .OR. IHI.GT.N ) THEN INFO = -5 ELSE IF( LDH.LT.MAX( 1, N ) ) THEN INFO = -7 ELSE IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.MAX( 1, N ) ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.NE.0 ) THEN * * ==== Quick return in case of invalid argument. ==== * CALL XERBLA( 'ZHSEQR', -INFO ) RETURN * ELSE IF( N.EQ.0 ) THEN * * ==== Quick return in case N = 0; nothing to do. ==== * RETURN * ELSE IF( LQUERY ) THEN * * ==== Quick return in case of a workspace query ==== * CALL ZLAQR0( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILO, IHI, Z, $ LDZ, WORK, LWORK, INFO ) * ==== Ensure reported workspace size is backward-compatible with * . previous LAPACK versions. ==== WORK( 1 ) = DCMPLX( MAX( DBLE( WORK( 1 ) ), DBLE( MAX( 1, $ N ) ) ), RZERO ) RETURN * ELSE * * ==== copy eigenvalues isolated by ZGEBAL ==== * IF( ILO.GT.1 ) $ CALL ZCOPY( ILO-1, H, LDH+1, W, 1 ) IF( IHI.LT.N ) $ CALL ZCOPY( N-IHI, H( IHI+1, IHI+1 ), LDH+1, W( IHI+1 ), 1 ) * * ==== Initialize Z, if requested ==== * IF( INITZ ) $ CALL ZLASET( 'A', N, N, ZERO, ONE, Z, LDZ ) * * ==== Quick return if possible ==== * IF( ILO.EQ.IHI ) THEN W( ILO ) = H( ILO, ILO ) RETURN END IF * * ==== ZLAHQR/ZLAQR0 crossover point ==== * NMIN = ILAENV( 12, 'ZHSEQR', JOB( : 1 ) // COMPZ( : 1 ), N, $ ILO, IHI, LWORK ) NMIN = MAX( NTINY, NMIN ) * * ==== ZLAQR0 for big matrices; ZLAHQR for small ones ==== * IF( N.GT.NMIN ) THEN CALL ZLAQR0( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILO, IHI, $ Z, LDZ, WORK, LWORK, INFO ) ELSE * * ==== Small matrix ==== * CALL ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILO, IHI, $ Z, LDZ, INFO ) * IF( INFO.GT.0 ) THEN * * ==== A rare ZLAHQR failure! ZLAQR0 sometimes succeeds * . when ZLAHQR fails. ==== * KBOT = INFO * IF( N.GE.NL ) THEN * * ==== Larger matrices have enough subdiagonal scratch * . space to call ZLAQR0 directly. ==== * CALL ZLAQR0( WANTT, WANTZ, N, ILO, KBOT, H, LDH, W, $ ILO, IHI, Z, LDZ, WORK, LWORK, INFO ) * ELSE * * ==== Tiny matrices don't have enough subdiagonal * . scratch space to benefit from ZLAQR0. Hence, * . tiny matrices must be copied into a larger * . array before calling ZLAQR0. ==== * CALL ZLACPY( 'A', N, N, H, LDH, HL, NL ) HL( N+1, N ) = ZERO CALL ZLASET( 'A', NL, NL-N, ZERO, ZERO, HL( 1, N+1 ), $ NL ) CALL ZLAQR0( WANTT, WANTZ, NL, ILO, KBOT, HL, NL, W, $ ILO, IHI, Z, LDZ, WORKL, NL, INFO ) IF( WANTT .OR. INFO.NE.0 ) $ CALL ZLACPY( 'A', N, N, HL, NL, H, LDH ) END IF END IF END IF * * ==== Clear out the trash, if necessary. ==== * IF( ( WANTT .OR. INFO.NE.0 ) .AND. N.GT.2 ) $ CALL ZLASET( 'L', N-2, N-2, ZERO, ZERO, H( 3, 1 ), LDH ) * * ==== Ensure reported workspace size is backward-compatible with * . previous LAPACK versions. ==== * WORK( 1 ) = DCMPLX( MAX( DBLE( MAX( 1, N ) ), $ DBLE( WORK( 1 ) ) ), RZERO ) END IF * * ==== End of ZHSEQR ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlabad.f0000644000000000000000000000013214061636515015233 xustar0030 mtime=1623670093.188104095 30 atime=1623670093.187104096 30 ctime=1623670093.188104095 elk-7.2.42/src/LAPACK/dlabad.f0000644002504400250440000000601514061636515017272 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLABAD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLABAD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLABAD( SMALL, LARGE ) * * .. Scalar Arguments .. * DOUBLE PRECISION LARGE, SMALL * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLABAD takes as input the values computed by DLAMCH for underflow and *> overflow, and returns the square root of each of these values if the *> log of LARGE is sufficiently large. This subroutine is intended to *> identify machines with a large exponent range, such as the Crays, and *> redefine the underflow and overflow limits to be the square roots of *> the values computed by DLAMCH. This subroutine is needed because *> DLAMCH does not compensate for poor arithmetic in the upper half of *> the exponent range, as is found on a Cray. *> \endverbatim * * Arguments: * ========== * *> \param[in,out] SMALL *> \verbatim *> SMALL is DOUBLE PRECISION *> On entry, the underflow threshold as computed by DLAMCH. *> On exit, if LOG10(LARGE) is sufficiently large, the square *> root of SMALL, otherwise unchanged. *> \endverbatim *> *> \param[in,out] LARGE *> \verbatim *> LARGE is DOUBLE PRECISION *> On entry, the overflow threshold as computed by DLAMCH. *> On exit, if LOG10(LARGE) is sufficiently large, the square *> root of LARGE, otherwise unchanged. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLABAD( SMALL, LARGE ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION LARGE, SMALL * .. * * ===================================================================== * * .. Intrinsic Functions .. INTRINSIC LOG10, SQRT * .. * .. Executable Statements .. * * If it looks like we're on a Cray, take the square root of * SMALL and LARGE to avoid overflow and underflow problems. * IF( LOG10( LARGE ).GT.2000.D0 ) THEN SMALL = SQRT( SMALL ) LARGE = SQRT( LARGE ) END IF * RETURN * * End of DLABAD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlange.f0000644000000000000000000000013214061636515015304 xustar0030 mtime=1623670093.189104094 30 atime=1623670093.189104094 30 ctime=1623670093.189104094 elk-7.2.42/src/LAPACK/zlange.f0000644002504400250440000001416014061636515017343 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLANGE returns the value of the 1-norm, Frobenius norm, infinity-norm, or the largest absolute value of any element of a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLANGE + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION ZLANGE( NORM, M, N, A, LDA, WORK ) * * .. Scalar Arguments .. * CHARACTER NORM * INTEGER LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION WORK( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLANGE returns the value of the one norm, or the Frobenius norm, or *> the infinity norm, or the element of largest absolute value of a *> complex matrix A. *> \endverbatim *> *> \return ZLANGE *> \verbatim *> *> ZLANGE = ( max(abs(A(i,j))), NORM = 'M' or 'm' *> ( *> ( norm1(A), NORM = '1', 'O' or 'o' *> ( *> ( normI(A), NORM = 'I' or 'i' *> ( *> ( normF(A), NORM = 'F', 'f', 'E' or 'e' *> *> where norm1 denotes the one norm of a matrix (maximum column sum), *> normI denotes the infinity norm of a matrix (maximum row sum) and *> normF denotes the Frobenius norm of a matrix (square root of sum of *> squares). Note that max(abs(A(i,j))) is not a consistent matrix norm. *> \endverbatim * * Arguments: * ========== * *> \param[in] NORM *> \verbatim *> NORM is CHARACTER*1 *> Specifies the value to be returned in ZLANGE as described *> above. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. When M = 0, *> ZLANGE is set to zero. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. When N = 0, *> ZLANGE is set to zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The m by n matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(M,1). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)), *> where LWORK >= M when NORM = 'I'; otherwise, WORK is not *> referenced. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION ZLANGE( NORM, M, N, A, LDA, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * IMPLICIT NONE * .. Scalar Arguments .. CHARACTER NORM INTEGER LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION WORK( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J DOUBLE PRECISION SUM, VALUE, TEMP * .. * .. Local Arrays .. DOUBLE PRECISION SSQ( 2 ), COLSSQ( 2 ) * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL ZLASSQ, DCOMBSSQ * .. * .. Intrinsic Functions .. INTRINSIC ABS, MIN, SQRT * .. * .. Executable Statements .. * IF( MIN( M, N ).EQ.0 ) THEN VALUE = ZERO ELSE IF( LSAME( NORM, 'M' ) ) THEN * * Find max(abs(A(i,j))). * VALUE = ZERO DO 20 J = 1, N DO 10 I = 1, M TEMP = ABS( A( I, J ) ) IF( VALUE.LT.TEMP .OR. DISNAN( TEMP ) ) VALUE = TEMP 10 CONTINUE 20 CONTINUE ELSE IF( ( LSAME( NORM, 'O' ) ) .OR. ( NORM.EQ.'1' ) ) THEN * * Find norm1(A). * VALUE = ZERO DO 40 J = 1, N SUM = ZERO DO 30 I = 1, M SUM = SUM + ABS( A( I, J ) ) 30 CONTINUE IF( VALUE.LT.SUM .OR. DISNAN( SUM ) ) VALUE = SUM 40 CONTINUE ELSE IF( LSAME( NORM, 'I' ) ) THEN * * Find normI(A). * DO 50 I = 1, M WORK( I ) = ZERO 50 CONTINUE DO 70 J = 1, N DO 60 I = 1, M WORK( I ) = WORK( I ) + ABS( A( I, J ) ) 60 CONTINUE 70 CONTINUE VALUE = ZERO DO 80 I = 1, M TEMP = WORK( I ) IF( VALUE.LT.TEMP .OR. DISNAN( TEMP ) ) VALUE = TEMP 80 CONTINUE ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN * * Find normF(A). * SSQ(1) is scale * SSQ(2) is sum-of-squares * For better accuracy, sum each column separately. * SSQ( 1 ) = ZERO SSQ( 2 ) = ONE DO 90 J = 1, N COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL ZLASSQ( M, A( 1, J ), 1, COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) 90 CONTINUE VALUE = SSQ( 1 )*SQRT( SSQ( 2 ) ) END IF * ZLANGE = VALUE RETURN * * End of ZLANGE * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlascl.f0000644000000000000000000000013214061636515015314 xustar0030 mtime=1623670093.191104092 30 atime=1623670093.191104092 30 ctime=1623670093.191104092 elk-7.2.42/src/LAPACK/zlascl.f0000644002504400250440000002343514061636515017360 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLASCL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLASCL( TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER TYPE * INTEGER INFO, KL, KU, LDA, M, N * DOUBLE PRECISION CFROM, CTO * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLASCL multiplies the M by N complex matrix A by the real scalar *> CTO/CFROM. This is done without over/underflow as long as the final *> result CTO*A(I,J)/CFROM does not over/underflow. TYPE specifies that *> A may be full, upper triangular, lower triangular, upper Hessenberg, *> or banded. *> \endverbatim * * Arguments: * ========== * *> \param[in] TYPE *> \verbatim *> TYPE is CHARACTER*1 *> TYPE indices the storage type of the input matrix. *> = 'G': A is a full matrix. *> = 'L': A is a lower triangular matrix. *> = 'U': A is an upper triangular matrix. *> = 'H': A is an upper Hessenberg matrix. *> = 'B': A is a symmetric band matrix with lower bandwidth KL *> and upper bandwidth KU and with the only the lower *> half stored. *> = 'Q': A is a symmetric band matrix with lower bandwidth KL *> and upper bandwidth KU and with the only the upper *> half stored. *> = 'Z': A is a band matrix with lower bandwidth KL and upper *> bandwidth KU. See ZGBTRF for storage details. *> \endverbatim *> *> \param[in] KL *> \verbatim *> KL is INTEGER *> The lower bandwidth of A. Referenced only if TYPE = 'B', *> 'Q' or 'Z'. *> \endverbatim *> *> \param[in] KU *> \verbatim *> KU is INTEGER *> The upper bandwidth of A. Referenced only if TYPE = 'B', *> 'Q' or 'Z'. *> \endverbatim *> *> \param[in] CFROM *> \verbatim *> CFROM is DOUBLE PRECISION *> \endverbatim *> *> \param[in] CTO *> \verbatim *> CTO is DOUBLE PRECISION *> *> The matrix A is multiplied by CTO/CFROM. A(I,J) is computed *> without over/underflow if the final result CTO*A(I,J)/CFROM *> can be represented without over/underflow. CFROM must be *> nonzero. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The matrix to be multiplied by CTO/CFROM. See TYPE for the *> storage type. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If TYPE = 'G', 'L', 'U', 'H', LDA >= max(1,M); *> TYPE = 'B', LDA >= KL+1; *> TYPE = 'Q', LDA >= KU+1; *> TYPE = 'Z', LDA >= 2*KL+KU+1. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> 0 - successful exit *> <0 - if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLASCL( TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER TYPE INTEGER INFO, KL, KU, LDA, M, N DOUBLE PRECISION CFROM, CTO * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. LOGICAL DONE INTEGER I, ITYPE, J, K1, K2, K3, K4 DOUBLE PRECISION BIGNUM, CFROM1, CFROMC, CTO1, CTOC, MUL, SMLNUM * .. * .. External Functions .. LOGICAL LSAME, DISNAN DOUBLE PRECISION DLAMCH EXTERNAL LSAME, DLAMCH, DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 * IF( LSAME( TYPE, 'G' ) ) THEN ITYPE = 0 ELSE IF( LSAME( TYPE, 'L' ) ) THEN ITYPE = 1 ELSE IF( LSAME( TYPE, 'U' ) ) THEN ITYPE = 2 ELSE IF( LSAME( TYPE, 'H' ) ) THEN ITYPE = 3 ELSE IF( LSAME( TYPE, 'B' ) ) THEN ITYPE = 4 ELSE IF( LSAME( TYPE, 'Q' ) ) THEN ITYPE = 5 ELSE IF( LSAME( TYPE, 'Z' ) ) THEN ITYPE = 6 ELSE ITYPE = -1 END IF * IF( ITYPE.EQ.-1 ) THEN INFO = -1 ELSE IF( CFROM.EQ.ZERO .OR. DISNAN(CFROM) ) THEN INFO = -4 ELSE IF( DISNAN(CTO) ) THEN INFO = -5 ELSE IF( M.LT.0 ) THEN INFO = -6 ELSE IF( N.LT.0 .OR. ( ITYPE.EQ.4 .AND. N.NE.M ) .OR. $ ( ITYPE.EQ.5 .AND. N.NE.M ) ) THEN INFO = -7 ELSE IF( ITYPE.LE.3 .AND. LDA.LT.MAX( 1, M ) ) THEN INFO = -9 ELSE IF( ITYPE.GE.4 ) THEN IF( KL.LT.0 .OR. KL.GT.MAX( M-1, 0 ) ) THEN INFO = -2 ELSE IF( KU.LT.0 .OR. KU.GT.MAX( N-1, 0 ) .OR. $ ( ( ITYPE.EQ.4 .OR. ITYPE.EQ.5 ) .AND. KL.NE.KU ) ) $ THEN INFO = -3 ELSE IF( ( ITYPE.EQ.4 .AND. LDA.LT.KL+1 ) .OR. $ ( ITYPE.EQ.5 .AND. LDA.LT.KU+1 ) .OR. $ ( ITYPE.EQ.6 .AND. LDA.LT.2*KL+KU+1 ) ) THEN INFO = -9 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLASCL', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. M.EQ.0 ) $ RETURN * * Get machine parameters * SMLNUM = DLAMCH( 'S' ) BIGNUM = ONE / SMLNUM * CFROMC = CFROM CTOC = CTO * 10 CONTINUE CFROM1 = CFROMC*SMLNUM IF( CFROM1.EQ.CFROMC ) THEN ! CFROMC is an inf. Multiply by a correctly signed zero for ! finite CTOC, or a NaN if CTOC is infinite. MUL = CTOC / CFROMC DONE = .TRUE. CTO1 = CTOC ELSE CTO1 = CTOC / BIGNUM IF( CTO1.EQ.CTOC ) THEN ! CTOC is either 0 or an inf. In both cases, CTOC itself ! serves as the correct multiplication factor. MUL = CTOC DONE = .TRUE. CFROMC = ONE ELSE IF( ABS( CFROM1 ).GT.ABS( CTOC ) .AND. CTOC.NE.ZERO ) THEN MUL = SMLNUM DONE = .FALSE. CFROMC = CFROM1 ELSE IF( ABS( CTO1 ).GT.ABS( CFROMC ) ) THEN MUL = BIGNUM DONE = .FALSE. CTOC = CTO1 ELSE MUL = CTOC / CFROMC DONE = .TRUE. END IF END IF * IF( ITYPE.EQ.0 ) THEN * * Full matrix * DO 30 J = 1, N DO 20 I = 1, M A( I, J ) = A( I, J )*MUL 20 CONTINUE 30 CONTINUE * ELSE IF( ITYPE.EQ.1 ) THEN * * Lower triangular matrix * DO 50 J = 1, N DO 40 I = J, M A( I, J ) = A( I, J )*MUL 40 CONTINUE 50 CONTINUE * ELSE IF( ITYPE.EQ.2 ) THEN * * Upper triangular matrix * DO 70 J = 1, N DO 60 I = 1, MIN( J, M ) A( I, J ) = A( I, J )*MUL 60 CONTINUE 70 CONTINUE * ELSE IF( ITYPE.EQ.3 ) THEN * * Upper Hessenberg matrix * DO 90 J = 1, N DO 80 I = 1, MIN( J+1, M ) A( I, J ) = A( I, J )*MUL 80 CONTINUE 90 CONTINUE * ELSE IF( ITYPE.EQ.4 ) THEN * * Lower half of a symmetric band matrix * K3 = KL + 1 K4 = N + 1 DO 110 J = 1, N DO 100 I = 1, MIN( K3, K4-J ) A( I, J ) = A( I, J )*MUL 100 CONTINUE 110 CONTINUE * ELSE IF( ITYPE.EQ.5 ) THEN * * Upper half of a symmetric band matrix * K1 = KU + 2 K3 = KU + 1 DO 130 J = 1, N DO 120 I = MAX( K1-J, 1 ), K3 A( I, J ) = A( I, J )*MUL 120 CONTINUE 130 CONTINUE * ELSE IF( ITYPE.EQ.6 ) THEN * * Band matrix * K1 = KL + KU + 2 K2 = KL + 1 K3 = 2*KL + KU + 1 K4 = KL + KU + 1 + M DO 150 J = 1, N DO 140 I = MAX( K1-J, K2 ), MIN( K3, K4-J ) A( I, J ) = A( I, J )*MUL 140 CONTINUE 150 CONTINUE * END IF * IF( .NOT.DONE ) $ GO TO 10 * RETURN * * End of ZLASCL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgebal.f0000644000000000000000000000012714061636515015274 xustar0029 mtime=1623670093.19310409 29 atime=1623670093.19310409 29 ctime=1623670093.19310409 elk-7.2.42/src/LAPACK/zgebal.f0000644002504400250440000002471614061636515017337 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEBAL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEBAL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEBAL( JOB, N, A, LDA, ILO, IHI, SCALE, INFO ) * * .. Scalar Arguments .. * CHARACTER JOB * INTEGER IHI, ILO, INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION SCALE( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEBAL balances a general complex matrix A. This involves, first, *> permuting A by a similarity transformation to isolate eigenvalues *> in the first 1 to ILO-1 and last IHI+1 to N elements on the *> diagonal; and second, applying a diagonal similarity transformation *> to rows and columns ILO to IHI to make the rows and columns as *> close in norm as possible. Both steps are optional. *> *> Balancing may reduce the 1-norm of the matrix, and improve the *> accuracy of the computed eigenvalues and/or eigenvectors. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOB *> \verbatim *> JOB is CHARACTER*1 *> Specifies the operations to be performed on A: *> = 'N': none: simply set ILO = 1, IHI = N, SCALE(I) = 1.0 *> for i = 1,...,N; *> = 'P': permute only; *> = 'S': scale only; *> = 'B': both permute and scale. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the input matrix A. *> On exit, A is overwritten by the balanced matrix. *> If JOB = 'N', A is not referenced. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[out] IHI *> \verbatim *> IHI is INTEGER *> ILO and IHI are set to INTEGER such that on exit *> A(i,j) = 0 if i > j and j = 1,...,ILO-1 or I = IHI+1,...,N. *> If JOB = 'N' or 'S', ILO = 1 and IHI = N. *> \endverbatim *> *> \param[out] SCALE *> \verbatim *> SCALE is DOUBLE PRECISION array, dimension (N) *> Details of the permutations and scaling factors applied to *> A. If P(j) is the index of the row and column interchanged *> with row and column j and D(j) is the scaling factor *> applied to row and column j, then *> SCALE(j) = P(j) for j = 1,...,ILO-1 *> = D(j) for j = ILO,...,IHI *> = P(j) for j = IHI+1,...,N. *> The order in which the interchanges are made is N to IHI+1, *> then 1 to ILO-1. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The permutations consist of row and column interchanges which put *> the matrix in the form *> *> ( T1 X Y ) *> P A P = ( 0 B Z ) *> ( 0 0 T2 ) *> *> where T1 and T2 are upper triangular matrices whose eigenvalues lie *> along the diagonal. The column indices ILO and IHI mark the starting *> and ending columns of the submatrix B. Balancing consists of applying *> a diagonal similarity transformation inv(D) * B * D to make the *> 1-norms of each row of B and its corresponding column nearly equal. *> The output matrix is *> *> ( T1 X*D Y ) *> ( 0 inv(D)*B*D inv(D)*Z ). *> ( 0 0 T2 ) *> *> Information about the permutations P and the diagonal matrix D is *> returned in the vector SCALE. *> *> This subroutine is based on the EISPACK routine CBAL. *> *> Modified by Tzu-Yi Chen, Computer Science Division, University of *> California at Berkeley, USA *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEBAL( JOB, N, A, LDA, ILO, IHI, SCALE, INFO ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. CHARACTER JOB INTEGER IHI, ILO, INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION SCALE( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) DOUBLE PRECISION SCLFAC PARAMETER ( SCLFAC = 2.0D+0 ) DOUBLE PRECISION FACTOR PARAMETER ( FACTOR = 0.95D+0 ) * .. * .. Local Scalars .. LOGICAL NOCONV INTEGER I, ICA, IEXC, IRA, J, K, L, M DOUBLE PRECISION C, CA, F, G, R, RA, S, SFMAX1, SFMAX2, SFMIN1, $ SFMIN2 * .. * .. External Functions .. LOGICAL DISNAN, LSAME INTEGER IZAMAX DOUBLE PRECISION DLAMCH, DZNRM2 EXTERNAL DISNAN, LSAME, IZAMAX, DLAMCH, DZNRM2 * .. * .. External Subroutines .. EXTERNAL XERBLA, ZDSCAL, ZSWAP * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DIMAG, MAX, MIN * * Test the input parameters * INFO = 0 IF( .NOT.LSAME( JOB, 'N' ) .AND. .NOT.LSAME( JOB, 'P' ) .AND. $ .NOT.LSAME( JOB, 'S' ) .AND. .NOT.LSAME( JOB, 'B' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEBAL', -INFO ) RETURN END IF * K = 1 L = N * IF( N.EQ.0 ) $ GO TO 210 * IF( LSAME( JOB, 'N' ) ) THEN DO 10 I = 1, N SCALE( I ) = ONE 10 CONTINUE GO TO 210 END IF * IF( LSAME( JOB, 'S' ) ) $ GO TO 120 * * Permutation to isolate eigenvalues if possible * GO TO 50 * * Row and column exchange. * 20 CONTINUE SCALE( M ) = J IF( J.EQ.M ) $ GO TO 30 * CALL ZSWAP( L, A( 1, J ), 1, A( 1, M ), 1 ) CALL ZSWAP( N-K+1, A( J, K ), LDA, A( M, K ), LDA ) * 30 CONTINUE GO TO ( 40, 80 )IEXC * * Search for rows isolating an eigenvalue and push them down. * 40 CONTINUE IF( L.EQ.1 ) $ GO TO 210 L = L - 1 * 50 CONTINUE DO 70 J = L, 1, -1 * DO 60 I = 1, L IF( I.EQ.J ) $ GO TO 60 IF( DBLE( A( J, I ) ).NE.ZERO .OR. DIMAG( A( J, I ) ).NE. $ ZERO )GO TO 70 60 CONTINUE * M = L IEXC = 1 GO TO 20 70 CONTINUE * GO TO 90 * * Search for columns isolating an eigenvalue and push them left. * 80 CONTINUE K = K + 1 * 90 CONTINUE DO 110 J = K, L * DO 100 I = K, L IF( I.EQ.J ) $ GO TO 100 IF( DBLE( A( I, J ) ).NE.ZERO .OR. DIMAG( A( I, J ) ).NE. $ ZERO )GO TO 110 100 CONTINUE * M = K IEXC = 2 GO TO 20 110 CONTINUE * 120 CONTINUE DO 130 I = K, L SCALE( I ) = ONE 130 CONTINUE * IF( LSAME( JOB, 'P' ) ) $ GO TO 210 * * Balance the submatrix in rows K to L. * * Iterative loop for norm reduction * SFMIN1 = DLAMCH( 'S' ) / DLAMCH( 'P' ) SFMAX1 = ONE / SFMIN1 SFMIN2 = SFMIN1*SCLFAC SFMAX2 = ONE / SFMIN2 140 CONTINUE NOCONV = .FALSE. * DO 200 I = K, L * C = DZNRM2( L-K+1, A( K, I ), 1 ) R = DZNRM2( L-K+1, A( I, K ), LDA ) ICA = IZAMAX( L, A( 1, I ), 1 ) CA = ABS( A( ICA, I ) ) IRA = IZAMAX( N-K+1, A( I, K ), LDA ) RA = ABS( A( I, IRA+K-1 ) ) * * Guard against zero C or R due to underflow. * IF( C.EQ.ZERO .OR. R.EQ.ZERO ) $ GO TO 200 G = R / SCLFAC F = ONE S = C + R 160 CONTINUE IF( C.GE.G .OR. MAX( F, C, CA ).GE.SFMAX2 .OR. $ MIN( R, G, RA ).LE.SFMIN2 )GO TO 170 IF( DISNAN( C+F+CA+R+G+RA ) ) THEN * * Exit if NaN to avoid infinite loop * INFO = -3 CALL XERBLA( 'ZGEBAL', -INFO ) RETURN END IF F = F*SCLFAC C = C*SCLFAC CA = CA*SCLFAC R = R / SCLFAC G = G / SCLFAC RA = RA / SCLFAC GO TO 160 * 170 CONTINUE G = C / SCLFAC 180 CONTINUE IF( G.LT.R .OR. MAX( R, RA ).GE.SFMAX2 .OR. $ MIN( F, C, G, CA ).LE.SFMIN2 )GO TO 190 F = F / SCLFAC C = C / SCLFAC G = G / SCLFAC CA = CA / SCLFAC R = R*SCLFAC RA = RA*SCLFAC GO TO 180 * * Now balance. * 190 CONTINUE IF( ( C+R ).GE.FACTOR*S ) $ GO TO 200 IF( F.LT.ONE .AND. SCALE( I ).LT.ONE ) THEN IF( F*SCALE( I ).LE.SFMIN1 ) $ GO TO 200 END IF IF( F.GT.ONE .AND. SCALE( I ).GT.ONE ) THEN IF( SCALE( I ).GE.SFMAX1 / F ) $ GO TO 200 END IF G = ONE / F SCALE( I ) = SCALE( I )*F NOCONV = .TRUE. * CALL ZDSCAL( N-K+1, G, A( I, K ), LDA ) CALL ZDSCAL( L, F, A( 1, I ), 1 ) * 200 CONTINUE * IF( NOCONV ) $ GO TO 140 * 210 CONTINUE ILO = K IHI = L * RETURN * * End of ZGEBAL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgehrd.f0000644000000000000000000000013214061636515015307 xustar0030 mtime=1623670093.195104088 30 atime=1623670093.195104088 30 ctime=1623670093.195104088 elk-7.2.42/src/LAPACK/zgehrd.f0000644002504400250440000002525514061636515017355 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEHRD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEHRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEHRD( N, ILO, IHI, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, ILO, INFO, LDA, LWORK, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEHRD reduces a complex general matrix A to upper Hessenberg form H by *> an unitary similarity transformation: Q**H * A * Q = H . *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> It is assumed that A is already upper triangular in rows *> and columns 1:ILO-1 and IHI+1:N. ILO and IHI are normally *> set by a previous call to ZGEBAL; otherwise they should be *> set to 1 and N respectively. See Further Details. *> 1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the N-by-N general matrix to be reduced. *> On exit, the upper triangle and the first subdiagonal of A *> are overwritten with the upper Hessenberg matrix H, and the *> elements below the first subdiagonal, with the array TAU, *> represent the unitary matrix Q as a product of elementary *> reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). Elements 1:ILO-1 and IHI:N-1 of TAU are set to *> zero. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (LWORK) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,N). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of (ihi-ilo) elementary *> reflectors *> *> Q = H(ilo) H(ilo+1) . . . H(ihi-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0, v(i+1) = 1 and v(ihi+1:n) = 0; v(i+2:ihi) is stored on *> exit in A(i+2:ihi,i), and tau in TAU(i). *> *> The contents of A are illustrated by the following example, with *> n = 7, ilo = 2 and ihi = 6: *> *> on entry, on exit, *> *> ( a a a a a a a ) ( a a h h h h a ) *> ( a a a a a a ) ( a h h h h a ) *> ( a a a a a a ) ( h h h h h h ) *> ( a a a a a a ) ( v2 h h h h h ) *> ( a a a a a a ) ( v2 v3 h h h h ) *> ( a a a a a a ) ( v2 v3 v4 h h h ) *> ( a ) ( a ) *> *> where a denotes an element of the original matrix A, h denotes a *> modified element of the upper Hessenberg matrix H, and vi denotes an *> element of the vector defining H(i). *> *> This file is a slight modification of LAPACK-3.0's DGEHRD *> subroutine incorporating improvements proposed by Quintana-Orti and *> Van de Geijn (2006). (See DLAHR2.) *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEHRD( N, ILO, IHI, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, ILO, INFO, LDA, LWORK, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWT, J, LDWORK, LWKOPT, NB, $ NBMIN, NH, NX COMPLEX*16 EI * .. * .. External Subroutines .. EXTERNAL ZAXPY, ZGEHD2, ZGEMM, ZLAHR2, ZLARFB, ZTRMM, $ XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) IF( N.LT.0 ) THEN INFO = -1 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, N ) ) THEN INFO = -2 ELSE IF( IHI.LT.MIN( ILO, N ) .OR. IHI.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * NB = MIN( NBMAX, ILAENV( 1, 'ZGEHRD', ' ', N, ILO, IHI, -1 ) ) LWKOPT = N*NB + TSIZE WORK( 1 ) = LWKOPT ENDIF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEHRD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Set elements 1:ILO-1 and IHI:N-1 of TAU to zero * DO 10 I = 1, ILO - 1 TAU( I ) = ZERO 10 CONTINUE DO 20 I = MAX( 1, IHI ), N - 1 TAU( I ) = ZERO 20 CONTINUE * * Quick return if possible * NH = IHI - ILO + 1 IF( NH.LE.1 ) THEN WORK( 1 ) = 1 RETURN END IF * * Determine the block size * NB = MIN( NBMAX, ILAENV( 1, 'ZGEHRD', ' ', N, ILO, IHI, -1 ) ) NBMIN = 2 IF( NB.GT.1 .AND. NB.LT.NH ) THEN * * Determine when to cross over from blocked to unblocked code * (last block is always handled by unblocked code) * NX = MAX( NB, ILAENV( 3, 'ZGEHRD', ' ', N, ILO, IHI, -1 ) ) IF( NX.LT.NH ) THEN * * Determine if workspace is large enough for blocked code * IF( LWORK.LT.N*NB+TSIZE ) THEN * * Not enough workspace to use optimal NB: determine the * minimum value of NB, and reduce NB or force use of * unblocked code * NBMIN = MAX( 2, ILAENV( 2, 'ZGEHRD', ' ', N, ILO, IHI, $ -1 ) ) IF( LWORK.GE.(N*NBMIN + TSIZE) ) THEN NB = (LWORK-TSIZE) / N ELSE NB = 1 END IF END IF END IF END IF LDWORK = N * IF( NB.LT.NBMIN .OR. NB.GE.NH ) THEN * * Use unblocked code below * I = ILO * ELSE * * Use blocked code * IWT = 1 + N*NB DO 40 I = ILO, IHI - 1 - NX, NB IB = MIN( NB, IHI-I ) * * Reduce columns i:i+ib-1 to Hessenberg form, returning the * matrices V and T of the block reflector H = I - V*T*V**H * which performs the reduction, and also the matrix Y = A*V*T * CALL ZLAHR2( IHI, I, IB, A( 1, I ), LDA, TAU( I ), $ WORK( IWT ), LDT, WORK, LDWORK ) * * Apply the block reflector H to A(1:ihi,i+ib:ihi) from the * right, computing A := A - Y * V**H. V(i+ib,ib-1) must be set * to 1 * EI = A( I+IB, I+IB-1 ) A( I+IB, I+IB-1 ) = ONE CALL ZGEMM( 'No transpose', 'Conjugate transpose', $ IHI, IHI-I-IB+1, $ IB, -ONE, WORK, LDWORK, A( I+IB, I ), LDA, ONE, $ A( 1, I+IB ), LDA ) A( I+IB, I+IB-1 ) = EI * * Apply the block reflector H to A(1:i,i+1:i+ib-1) from the * right * CALL ZTRMM( 'Right', 'Lower', 'Conjugate transpose', $ 'Unit', I, IB-1, $ ONE, A( I+1, I ), LDA, WORK, LDWORK ) DO 30 J = 0, IB-2 CALL ZAXPY( I, -ONE, WORK( LDWORK*J+1 ), 1, $ A( 1, I+J+1 ), 1 ) 30 CONTINUE * * Apply the block reflector H to A(i+1:ihi,i+ib:n) from the * left * CALL ZLARFB( 'Left', 'Conjugate transpose', 'Forward', $ 'Columnwise', $ IHI-I, N-I-IB+1, IB, A( I+1, I ), LDA, $ WORK( IWT ), LDT, A( I+1, I+IB ), LDA, $ WORK, LDWORK ) 40 CONTINUE END IF * * Use unblocked code to reduce the rest of the matrix * CALL ZGEHD2( N, I, IHI, A, LDA, TAU, WORK, IINFO ) WORK( 1 ) = LWKOPT * RETURN * * End of ZGEHRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlacpy.f0000644000000000000000000000013214061636515015326 xustar0030 mtime=1623670093.197104087 30 atime=1623670093.197104087 30 ctime=1623670093.197104087 elk-7.2.42/src/LAPACK/zlacpy.f0000644002504400250440000000775414061636515017400 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLACPY copies all or part of one two-dimensional array to another. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLACPY + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLACPY( UPLO, M, N, A, LDA, B, LDB ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, LDB, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLACPY copies all or part of a two-dimensional matrix A to another *> matrix B. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies the part of the matrix A to be copied to B. *> = 'U': Upper triangular part *> = 'L': Lower triangular part *> Otherwise: All of the matrix A *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The m by n matrix A. If UPLO = 'U', only the upper trapezium *> is accessed; if UPLO = 'L', only the lower trapezium is *> accessed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB,N) *> On exit, B = A in the locations specified by UPLO. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLACPY( UPLO, M, N, A, LDA, B, LDB ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, LDB, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( LSAME( UPLO, 'U' ) ) THEN DO 20 J = 1, N DO 10 I = 1, MIN( J, M ) B( I, J ) = A( I, J ) 10 CONTINUE 20 CONTINUE * ELSE IF( LSAME( UPLO, 'L' ) ) THEN DO 40 J = 1, N DO 30 I = J, M B( I, J ) = A( I, J ) 30 CONTINUE 40 CONTINUE * ELSE DO 60 J = 1, N DO 50 I = 1, M B( I, J ) = A( I, J ) 50 CONTINUE 60 CONTINUE END IF * RETURN * * End of ZLACPY * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunghr.f0000644000000000000000000000013214061636515015341 xustar0030 mtime=1623670093.199104085 30 atime=1623670093.198104086 30 ctime=1623670093.199104085 elk-7.2.42/src/LAPACK/zunghr.f0000644002504400250440000001470714061636515017407 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGHR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGHR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGHR( N, ILO, IHI, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, ILO, INFO, LDA, LWORK, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGHR generates a complex unitary matrix Q which is defined as the *> product of IHI-ILO elementary reflectors of order N, as returned by *> ZGEHRD: *> *> Q = H(ilo) H(ilo+1) . . . H(ihi-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix Q. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> ILO and IHI must have the same values as in the previous call *> of ZGEHRD. Q is equal to the unit matrix except in the *> submatrix Q(ilo+1:ihi,ilo+1:ihi). *> 1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the vectors which define the elementary reflectors, *> as returned by ZGEHRD. *> On exit, the N-by-N unitary matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEHRD. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= IHI-ILO. *> For optimum performance LWORK >= (IHI-ILO)*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGHR( N, ILO, IHI, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, ILO, INFO, LDA, LWORK, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IINFO, J, LWKOPT, NB, NH * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNGQR * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NH = IHI - ILO LQUERY = ( LWORK.EQ.-1 ) IF( N.LT.0 ) THEN INFO = -1 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, N ) ) THEN INFO = -2 ELSE IF( IHI.LT.MIN( ILO, N ) .OR. IHI.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LWORK.LT.MAX( 1, NH ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF * IF( INFO.EQ.0 ) THEN NB = ILAENV( 1, 'ZUNGQR', ' ', NH, NH, NH, -1 ) LWKOPT = MAX( 1, NH )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGHR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * * Shift the vectors which define the elementary reflectors one * column to the right, and set the first ilo and the last n-ihi * rows and columns to those of the unit matrix * DO 40 J = IHI, ILO + 1, -1 DO 10 I = 1, J - 1 A( I, J ) = ZERO 10 CONTINUE DO 20 I = J + 1, IHI A( I, J ) = A( I, J-1 ) 20 CONTINUE DO 30 I = IHI + 1, N A( I, J ) = ZERO 30 CONTINUE 40 CONTINUE DO 60 J = 1, ILO DO 50 I = 1, N A( I, J ) = ZERO 50 CONTINUE A( J, J ) = ONE 60 CONTINUE DO 80 J = IHI + 1, N DO 70 I = 1, N A( I, J ) = ZERO 70 CONTINUE A( J, J ) = ONE 80 CONTINUE * IF( NH.GT.0 ) THEN * * Generate Q(ilo+1:ihi,ilo+1:ihi) * CALL ZUNGQR( NH, NH, NH, A( ILO+1, ILO+1 ), LDA, TAU( ILO ), $ WORK, LWORK, IINFO ) END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNGHR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgebak.f0000644000000000000000000000013214061636515015267 xustar0030 mtime=1623670093.200104084 30 atime=1623670093.200104084 30 ctime=1623670093.200104084 elk-7.2.42/src/LAPACK/zgebak.f0000644002504400250440000001615714061636515017336 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEBAK * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEBAK + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, * INFO ) * * .. Scalar Arguments .. * CHARACTER JOB, SIDE * INTEGER IHI, ILO, INFO, LDV, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION SCALE( * ) * COMPLEX*16 V( LDV, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEBAK forms the right or left eigenvectors of a complex general *> matrix by backward transformation on the computed eigenvectors of the *> balanced matrix output by ZGEBAL. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOB *> \verbatim *> JOB is CHARACTER*1 *> Specifies the type of backward transformation required: *> = 'N': do nothing, return immediately; *> = 'P': do backward transformation for permutation only; *> = 'S': do backward transformation for scaling only; *> = 'B': do backward transformations for both permutation and *> scaling. *> JOB must be the same as the argument JOB supplied to ZGEBAL. *> \endverbatim *> *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'R': V contains right eigenvectors; *> = 'L': V contains left eigenvectors. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of rows of the matrix V. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> The integers ILO and IHI determined by ZGEBAL. *> 1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0. *> \endverbatim *> *> \param[in] SCALE *> \verbatim *> SCALE is DOUBLE PRECISION array, dimension (N) *> Details of the permutation and scaling factors, as returned *> by ZGEBAL. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of columns of the matrix V. M >= 0. *> \endverbatim *> *> \param[in,out] V *> \verbatim *> V is COMPLEX*16 array, dimension (LDV,M) *> On entry, the matrix of right or left eigenvectors to be *> transformed, as returned by ZHSEIN or ZTREVC. *> On exit, V is overwritten by the transformed eigenvectors. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. LDV >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * * ===================================================================== SUBROUTINE ZGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER JOB, SIDE INTEGER IHI, ILO, INFO, LDV, M, N * .. * .. Array Arguments .. DOUBLE PRECISION SCALE( * ) COMPLEX*16 V( LDV, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LEFTV, RIGHTV INTEGER I, II, K DOUBLE PRECISION S * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZDSCAL, ZSWAP * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Decode and Test the input parameters * RIGHTV = LSAME( SIDE, 'R' ) LEFTV = LSAME( SIDE, 'L' ) * INFO = 0 IF( .NOT.LSAME( JOB, 'N' ) .AND. .NOT.LSAME( JOB, 'P' ) .AND. $ .NOT.LSAME( JOB, 'S' ) .AND. .NOT.LSAME( JOB, 'B' ) ) THEN INFO = -1 ELSE IF( .NOT.RIGHTV .AND. .NOT.LEFTV ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( IHI.LT.MIN( ILO, N ) .OR. IHI.GT.N ) THEN INFO = -5 ELSE IF( M.LT.0 ) THEN INFO = -7 ELSE IF( LDV.LT.MAX( 1, N ) ) THEN INFO = -9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEBAK', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN IF( M.EQ.0 ) $ RETURN IF( LSAME( JOB, 'N' ) ) $ RETURN * IF( ILO.EQ.IHI ) $ GO TO 30 * * Backward balance * IF( LSAME( JOB, 'S' ) .OR. LSAME( JOB, 'B' ) ) THEN * IF( RIGHTV ) THEN DO 10 I = ILO, IHI S = SCALE( I ) CALL ZDSCAL( M, S, V( I, 1 ), LDV ) 10 CONTINUE END IF * IF( LEFTV ) THEN DO 20 I = ILO, IHI S = ONE / SCALE( I ) CALL ZDSCAL( M, S, V( I, 1 ), LDV ) 20 CONTINUE END IF * END IF * * Backward permutation * * For I = ILO-1 step -1 until 1, * IHI+1 step 1 until N do -- * 30 CONTINUE IF( LSAME( JOB, 'P' ) .OR. LSAME( JOB, 'B' ) ) THEN IF( RIGHTV ) THEN DO 40 II = 1, N I = II IF( I.GE.ILO .AND. I.LE.IHI ) $ GO TO 40 IF( I.LT.ILO ) $ I = ILO - II K = SCALE( I ) IF( K.EQ.I ) $ GO TO 40 CALL ZSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV ) 40 CONTINUE END IF * IF( LEFTV ) THEN DO 50 II = 1, N I = II IF( I.GE.ILO .AND. I.LE.IHI ) $ GO TO 50 IF( I.LT.ILO ) $ I = ILO - II K = SCALE( I ) IF( K.EQ.I ) $ GO TO 50 CALL ZSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV ) 50 CONTINUE END IF END IF * RETURN * * End of ZGEBAK * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgeqrf.f0000644000000000000000000000013214061636515015322 xustar0030 mtime=1623670093.202104082 30 atime=1623670093.202104082 30 ctime=1623670093.202104082 elk-7.2.42/src/LAPACK/zgeqrf.f0000644002504400250440000001712214061636515017362 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEQRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEQRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEQRF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEQRF computes a QR factorization of a complex M-by-N matrix A: *> *> A = Q * ( R ), *> ( 0 ) *> *> where: *> *> Q is a M-by-M orthogonal matrix; *> R is an upper-triangular N-by-N matrix; *> 0 is a (M-N)-by-N zero matrix, if M > N. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix A. *> On exit, the elements on and above the diagonal of the array *> contain the min(M,N)-by-N upper trapezoidal matrix R (R is *> upper triangular if m >= n); the elements below the diagonal, *> with the array TAU, represent the unitary matrix Q as a *> product of min(m,n) elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimum performance LWORK >= N*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2019 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of elementary reflectors *> *> Q = H(1) H(2) . . . H(k), where k = min(m,n). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(i+1:m,i), *> and tau in TAU(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEQRF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.9.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2019 * * .. Scalar Arguments .. INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, K, LDWORK, LWKOPT, NB, $ NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGEQR2, ZLARFB, ZLARFT * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NB = ILAENV( 1, 'ZGEQRF', ' ', M, N, -1, -1 ) LWKOPT = N*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEQRF', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * K = MIN( M, N ) IF( K.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 NX = 0 IWS = N IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'ZGEQRF', ' ', M, N, -1, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZGEQRF', ' ', M, N, -1, $ -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code initially * DO 10 I = 1, K - NX, NB IB = MIN( K-I+1, NB ) * * Compute the QR factorization of the current block * A(i:m,i:i+ib-1) * CALL ZGEQR2( M-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) IF( I+IB.LE.N ) THEN * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Columnwise', M-I+1, IB, $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) * * Apply H**H to A(i:m,i+ib:n) from the left * CALL ZLARFB( 'Left', 'Conjugate transpose', 'Forward', $ 'Columnwise', M-I+1, N-I-IB+1, IB, $ A( I, I ), LDA, WORK, LDWORK, A( I, I+IB ), $ LDA, WORK( IB+1 ), LDWORK ) END IF 10 CONTINUE ELSE I = 1 END IF * * Use unblocked code to factor the last or only block. * IF( I.LE.K ) $ CALL ZGEQR2( M-I+1, N-I+1, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) * WORK( 1 ) = IWS RETURN * * End of ZGEQRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zungqr.f0000644000000000000000000000012714061636515015356 xustar0029 mtime=1623670093.20410408 29 atime=1623670093.20410408 29 ctime=1623670093.20410408 elk-7.2.42/src/LAPACK/zungqr.f0000644002504400250440000001761014061636515017414 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGQR( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGQR generates an M-by-N complex matrix Q with orthonormal columns, *> which is defined as the first N columns of a product of K elementary *> reflectors of order M *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by ZGEQRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the i-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by ZGEQRF in the first k columns of its array *> argument A. *> On exit, the M-by-N matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQRF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGQR( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, J, KI, KK, L, LDWORK, $ LWKOPT, NB, NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNG2R * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NB = ILAENV( 1, 'ZUNGQR', ' ', M, N, K, -1 ) LWKOPT = MAX( 1, N )*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGQR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.LE.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 NX = 0 IWS = N IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'ZUNGQR', ' ', M, N, K, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNGQR', ' ', M, N, K, -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code after the last block. * The first kk columns are handled by the block method. * KI = ( ( K-NX-1 ) / NB )*NB KK = MIN( K, KI+NB ) * * Set A(1:kk,kk+1:n) to zero. * DO 20 J = KK + 1, N DO 10 I = 1, KK A( I, J ) = ZERO 10 CONTINUE 20 CONTINUE ELSE KK = 0 END IF * * Use unblocked code for the last or only block. * IF( KK.LT.N ) $ CALL ZUNG2R( M-KK, N-KK, K-KK, A( KK+1, KK+1 ), LDA, $ TAU( KK+1 ), WORK, IINFO ) * IF( KK.GT.0 ) THEN * * Use blocked code * DO 50 I = KI + 1, 1, -NB IB = MIN( NB, K-I+1 ) IF( I+IB.LE.N ) THEN * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Columnwise', M-I+1, IB, $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) * * Apply H to A(i:m,i+ib:n) from the left * CALL ZLARFB( 'Left', 'No transpose', 'Forward', $ 'Columnwise', M-I+1, N-I-IB+1, IB, $ A( I, I ), LDA, WORK, LDWORK, A( I, I+IB ), $ LDA, WORK( IB+1 ), LDWORK ) END IF * * Apply H to rows i:m of current block * CALL ZUNG2R( M-I+1, IB, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) * * Set rows 1:i-1 of current block to zero * DO 40 J = I, I + IB - 1 DO 30 L = 1, I - 1 A( L, J ) = ZERO 30 CONTINUE 40 CONTINUE 50 CONTINUE END IF * WORK( 1 ) = IWS RETURN * * End of ZUNGQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgebrd.f0000644000000000000000000000013214061636515015301 xustar0030 mtime=1623670093.206104078 30 atime=1623670093.205104079 30 ctime=1623670093.206104078 elk-7.2.42/src/LAPACK/zgebrd.f0000644002504400250440000002574014061636515017346 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEBRD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEBRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEBRD( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, LWORK, * INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEBRD reduces a general complex M-by-N matrix A to upper or lower *> bidiagonal form B by a unitary transformation: Q**H * A * P = B. *> *> If m >= n, B is upper bidiagonal; if m < n, B is lower bidiagonal. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows in the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns in the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N general matrix to be reduced. *> On exit, *> if m >= n, the diagonal and the first superdiagonal are *> overwritten with the upper bidiagonal matrix B; the *> elements below the diagonal, with the array TAUQ, represent *> the unitary matrix Q as a product of elementary *> reflectors, and the elements above the first superdiagonal, *> with the array TAUP, represent the unitary matrix P as *> a product of elementary reflectors; *> if m < n, the diagonal and the first subdiagonal are *> overwritten with the lower bidiagonal matrix B; the *> elements below the first subdiagonal, with the array TAUQ, *> represent the unitary matrix Q as a product of *> elementary reflectors, and the elements above the diagonal, *> with the array TAUP, represent the unitary matrix P as *> a product of elementary reflectors. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (min(M,N)) *> The diagonal elements of the bidiagonal matrix B: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (min(M,N)-1) *> The off-diagonal elements of the bidiagonal matrix B: *> if m >= n, E(i) = A(i,i+1) for i = 1,2,...,n-1; *> if m < n, E(i) = A(i+1,i) for i = 1,2,...,m-1. *> \endverbatim *> *> \param[out] TAUQ *> \verbatim *> TAUQ is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix Q. See Further Details. *> \endverbatim *> *> \param[out] TAUP *> \verbatim *> TAUP is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix P. See Further Details. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= max(1,M,N). *> For optimum performance LWORK >= (M+N)*NB, where NB *> is the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrices Q and P are represented as products of elementary *> reflectors: *> *> If m >= n, *> *> Q = H(1) H(2) . . . H(n) and P = G(1) G(2) . . . G(n-1) *> *> Each H(i) and G(i) has the form: *> *> H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H *> *> where tauq and taup are complex scalars, and v and u are complex *> vectors; v(1:i-1) = 0, v(i) = 1, and v(i+1:m) is stored on exit in *> A(i+1:m,i); u(1:i) = 0, u(i+1) = 1, and u(i+2:n) is stored on exit in *> A(i,i+2:n); tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> If m < n, *> *> Q = H(1) H(2) . . . H(m-1) and P = G(1) G(2) . . . G(m) *> *> Each H(i) and G(i) has the form: *> *> H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H *> *> where tauq and taup are complex scalars, and v and u are complex *> vectors; v(1:i) = 0, v(i+1) = 1, and v(i+2:m) is stored on exit in *> A(i+2:m,i); u(1:i-1) = 0, u(i) = 1, and u(i+1:n) is stored on exit in *> A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> The contents of A on exit are illustrated by the following examples: *> *> m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): *> *> ( d e u1 u1 u1 ) ( d u1 u1 u1 u1 u1 ) *> ( v1 d e u2 u2 ) ( e d u2 u2 u2 u2 ) *> ( v1 v2 d e u3 ) ( v1 e d u3 u3 u3 ) *> ( v1 v2 v3 d e ) ( v1 v2 e d u4 u4 ) *> ( v1 v2 v3 v4 d ) ( v1 v2 v3 e d u5 ) *> ( v1 v2 v3 v4 v5 ) *> *> where d and e denote diagonal and off-diagonal elements of B, vi *> denotes an element of the vector defining H(i), and ui an element of *> the vector defining G(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEBRD( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, LWORK, $ INFO ) * * -- LAPACK computational routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IINFO, J, LDWRKX, LDWRKY, LWKOPT, MINMN, NB, $ NBMIN, NX, WS * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGEBD2, ZGEMM, ZLABRD * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 NB = MAX( 1, ILAENV( 1, 'ZGEBRD', ' ', M, N, -1, -1 ) ) LWKOPT = ( M+N )*NB WORK( 1 ) = DBLE( LWKOPT ) LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 ELSE IF( LWORK.LT.MAX( 1, M, N ) .AND. .NOT.LQUERY ) THEN INFO = -10 END IF IF( INFO.LT.0 ) THEN CALL XERBLA( 'ZGEBRD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * MINMN = MIN( M, N ) IF( MINMN.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * WS = MAX( M, N ) LDWRKX = M LDWRKY = N * IF( NB.GT.1 .AND. NB.LT.MINMN ) THEN * * Set the crossover point NX. * NX = MAX( NB, ILAENV( 3, 'ZGEBRD', ' ', M, N, -1, -1 ) ) * * Determine when to switch from blocked to unblocked code. * IF( NX.LT.MINMN ) THEN WS = ( M+N )*NB IF( LWORK.LT.WS ) THEN * * Not enough work space for the optimal NB, consider using * a smaller block size. * NBMIN = ILAENV( 2, 'ZGEBRD', ' ', M, N, -1, -1 ) IF( LWORK.GE.( M+N )*NBMIN ) THEN NB = LWORK / ( M+N ) ELSE NB = 1 NX = MINMN END IF END IF END IF ELSE NX = MINMN END IF * DO 30 I = 1, MINMN - NX, NB * * Reduce rows and columns i:i+ib-1 to bidiagonal form and return * the matrices X and Y which are needed to update the unreduced * part of the matrix * CALL ZLABRD( M-I+1, N-I+1, NB, A( I, I ), LDA, D( I ), E( I ), $ TAUQ( I ), TAUP( I ), WORK, LDWRKX, $ WORK( LDWRKX*NB+1 ), LDWRKY ) * * Update the trailing submatrix A(i+ib:m,i+ib:n), using * an update of the form A := A - V*Y**H - X*U**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', M-I-NB+1, $ N-I-NB+1, NB, -ONE, A( I+NB, I ), LDA, $ WORK( LDWRKX*NB+NB+1 ), LDWRKY, ONE, $ A( I+NB, I+NB ), LDA ) CALL ZGEMM( 'No transpose', 'No transpose', M-I-NB+1, N-I-NB+1, $ NB, -ONE, WORK( NB+1 ), LDWRKX, A( I, I+NB ), LDA, $ ONE, A( I+NB, I+NB ), LDA ) * * Copy diagonal and off-diagonal elements of B back into A * IF( M.GE.N ) THEN DO 10 J = I, I + NB - 1 A( J, J ) = D( J ) A( J, J+1 ) = E( J ) 10 CONTINUE ELSE DO 20 J = I, I + NB - 1 A( J, J ) = D( J ) A( J+1, J ) = E( J ) 20 CONTINUE END IF 30 CONTINUE * * Use unblocked code to reduce the remainder of the matrix * CALL ZGEBD2( M-I+1, N-I+1, A( I, I ), LDA, D( I ), E( I ), $ TAUQ( I ), TAUP( I ), WORK, IINFO ) WORK( 1 ) = WS RETURN * * End of ZGEBRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zungbr.f0000644000000000000000000000013214061636515015333 xustar0030 mtime=1623670093.208104076 30 atime=1623670093.207104077 30 ctime=1623670093.208104076 elk-7.2.42/src/LAPACK/zungbr.f0000644002504400250440000002326614061636515017401 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGBR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGBR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGBR( VECT, M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER VECT * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGBR generates one of the complex unitary matrices Q or P**H *> determined by ZGEBRD when reducing a complex matrix A to bidiagonal *> form: A = Q * B * P**H. Q and P**H are defined as products of *> elementary reflectors H(i) or G(i) respectively. *> *> If VECT = 'Q', A is assumed to have been an M-by-K matrix, and Q *> is of order M: *> if m >= k, Q = H(1) H(2) . . . H(k) and ZUNGBR returns the first n *> columns of Q, where m >= n >= k; *> if m < k, Q = H(1) H(2) . . . H(m-1) and ZUNGBR returns Q as an *> M-by-M matrix. *> *> If VECT = 'P', A is assumed to have been a K-by-N matrix, and P**H *> is of order N: *> if k < n, P**H = G(k) . . . G(2) G(1) and ZUNGBR returns the first m *> rows of P**H, where n >= m >= k; *> if k >= n, P**H = G(n-1) . . . G(2) G(1) and ZUNGBR returns P**H as *> an N-by-N matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] VECT *> \verbatim *> VECT is CHARACTER*1 *> Specifies whether the matrix Q or the matrix P**H is *> required, as defined in the transformation applied by ZGEBRD: *> = 'Q': generate Q; *> = 'P': generate P**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q or P**H to be returned. *> M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q or P**H to be returned. *> N >= 0. *> If VECT = 'Q', M >= N >= min(M,K); *> if VECT = 'P', N >= M >= min(N,K). *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> If VECT = 'Q', the number of columns in the original M-by-K *> matrix reduced by ZGEBRD. *> If VECT = 'P', the number of rows in the original K-by-N *> matrix reduced by ZGEBRD. *> K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the vectors which define the elementary reflectors, *> as returned by ZGEBRD. *> On exit, the M-by-N matrix Q or P**H. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= M. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension *> (min(M,K)) if VECT = 'Q' *> (min(N,K)) if VECT = 'P' *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i) or G(i), which determines Q or P**H, as *> returned by ZGEBRD in its array argument TAUQ or TAUP. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,min(M,N)). *> For optimum performance LWORK >= min(M,N)*NB, where NB *> is the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date April 2012 * *> \ingroup complex16GBcomputational * * ===================================================================== SUBROUTINE ZUNGBR( VECT, M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * April 2012 * * .. Scalar Arguments .. CHARACTER VECT INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY, WANTQ INTEGER I, IINFO, J, LWKOPT, MN * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNGLQ, ZUNGQR * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 WANTQ = LSAME( VECT, 'Q' ) MN = MIN( M, N ) LQUERY = ( LWORK.EQ.-1 ) IF( .NOT.WANTQ .AND. .NOT.LSAME( VECT, 'P' ) ) THEN INFO = -1 ELSE IF( M.LT.0 ) THEN INFO = -2 ELSE IF( N.LT.0 .OR. ( WANTQ .AND. ( N.GT.M .OR. N.LT.MIN( M, $ K ) ) ) .OR. ( .NOT.WANTQ .AND. ( M.GT.N .OR. M.LT. $ MIN( N, K ) ) ) ) THEN INFO = -3 ELSE IF( K.LT.0 ) THEN INFO = -4 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -6 ELSE IF( LWORK.LT.MAX( 1, MN ) .AND. .NOT.LQUERY ) THEN INFO = -9 END IF * IF( INFO.EQ.0 ) THEN WORK( 1 ) = 1 IF( WANTQ ) THEN IF( M.GE.K ) THEN CALL ZUNGQR( M, N, K, A, LDA, TAU, WORK, -1, IINFO ) ELSE IF( M.GT.1 ) THEN CALL ZUNGQR( M-1, M-1, M-1, A( 2, 2 ), LDA, TAU, WORK, $ -1, IINFO ) END IF END IF ELSE IF( K.LT.N ) THEN CALL ZUNGLQ( M, N, K, A, LDA, TAU, WORK, -1, IINFO ) ELSE IF( N.GT.1 ) THEN CALL ZUNGLQ( N-1, N-1, N-1, A( 2, 2 ), LDA, TAU, WORK, $ -1, IINFO ) END IF END IF END IF LWKOPT = WORK( 1 ) LWKOPT = MAX (LWKOPT, MN) END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGBR', -INFO ) RETURN ELSE IF( LQUERY ) THEN WORK( 1 ) = LWKOPT RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( WANTQ ) THEN * * Form Q, determined by a call to ZGEBRD to reduce an m-by-k * matrix * IF( M.GE.K ) THEN * * If m >= k, assume m >= n >= k * CALL ZUNGQR( M, N, K, A, LDA, TAU, WORK, LWORK, IINFO ) * ELSE * * If m < k, assume m = n * * Shift the vectors which define the elementary reflectors one * column to the right, and set the first row and column of Q * to those of the unit matrix * DO 20 J = M, 2, -1 A( 1, J ) = ZERO DO 10 I = J + 1, M A( I, J ) = A( I, J-1 ) 10 CONTINUE 20 CONTINUE A( 1, 1 ) = ONE DO 30 I = 2, M A( I, 1 ) = ZERO 30 CONTINUE IF( M.GT.1 ) THEN * * Form Q(2:m,2:m) * CALL ZUNGQR( M-1, M-1, M-1, A( 2, 2 ), LDA, TAU, WORK, $ LWORK, IINFO ) END IF END IF ELSE * * Form P**H, determined by a call to ZGEBRD to reduce a k-by-n * matrix * IF( K.LT.N ) THEN * * If k < n, assume k <= m <= n * CALL ZUNGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, IINFO ) * ELSE * * If k >= n, assume m = n * * Shift the vectors which define the elementary reflectors one * row downward, and set the first row and column of P**H to * those of the unit matrix * A( 1, 1 ) = ONE DO 40 I = 2, N A( I, 1 ) = ZERO 40 CONTINUE DO 60 J = 2, N DO 50 I = J - 1, 2, -1 A( I, J ) = A( I-1, J ) 50 CONTINUE A( 1, J ) = ZERO 60 CONTINUE IF( N.GT.1 ) THEN * * Form P**H(2:n,2:n) * CALL ZUNGLQ( N-1, N-1, N-1, A( 2, 2 ), LDA, TAU, WORK, $ LWORK, IINFO ) END IF END IF END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNGBR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgelqf.f0000644000000000000000000000013214061636515015314 xustar0030 mtime=1623670093.210104075 30 atime=1623670093.210104075 30 ctime=1623670093.210104075 elk-7.2.42/src/LAPACK/zgelqf.f0000644002504400250440000001705614061636515017362 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGELQF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGELQF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGELQF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGELQF computes an LQ factorization of a complex M-by-N matrix A: *> *> A = ( L 0 ) * Q *> *> where: *> *> Q is a N-by-N orthogonal matrix; *> L is an lower-triangular M-by-M matrix; *> 0 is a M-by-(N-M) zero matrix, if M < N. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix A. *> On exit, the elements on and below the diagonal of the array *> contain the m-by-min(m,n) lower trapezoidal matrix L (L is *> lower triangular if m <= n); the elements above the diagonal, *> with the array TAU, represent the unitary matrix Q as a *> product of elementary reflectors (see Further Details). *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,M). *> For optimum performance LWORK >= M*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2019 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of elementary reflectors *> *> Q = H(k)**H . . . H(2)**H H(1)**H, where k = min(m,n). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i-1) = 0 and v(i) = 1; conjg(v(i+1:n)) is stored on exit in *> A(i,i+1:n), and tau in TAU(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGELQF( M, N, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.9.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2019 * * .. Scalar Arguments .. INTEGER INFO, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, K, LDWORK, LWKOPT, NB, $ NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGELQ2, ZLARFB, ZLARFT * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NB = ILAENV( 1, 'ZGELQF', ' ', M, N, -1, -1 ) LWKOPT = M*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 ELSE IF( LWORK.LT.MAX( 1, M ) .AND. .NOT.LQUERY ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGELQF', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * K = MIN( M, N ) IF( K.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 NX = 0 IWS = M IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'ZGELQF', ' ', M, N, -1, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = M IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZGELQF', ' ', M, N, -1, $ -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code initially * DO 10 I = 1, K - NX, NB IB = MIN( K-I+1, NB ) * * Compute the LQ factorization of the current block * A(i:i+ib-1,i:n) * CALL ZGELQ2( IB, N-I+1, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) IF( I+IB.LE.M ) THEN * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK, LDWORK ) * * Apply H to A(i+ib:m,i:n) from the right * CALL ZLARFB( 'Right', 'No transpose', 'Forward', $ 'Rowwise', M-I-IB+1, N-I+1, IB, A( I, I ), $ LDA, WORK, LDWORK, A( I+IB, I ), LDA, $ WORK( IB+1 ), LDWORK ) END IF 10 CONTINUE ELSE I = 1 END IF * * Use unblocked code to factor the last or only block. * IF( I.LE.K ) $ CALL ZGELQ2( M-I+1, N-I+1, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) * WORK( 1 ) = IWS RETURN * * End of ZGELQF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunglq.f0000644000000000000000000000013214061636515015344 xustar0030 mtime=1623670093.212104073 30 atime=1623670093.211104073 30 ctime=1623670093.212104073 elk-7.2.42/src/LAPACK/zunglq.f0000644002504400250440000001756514061636515017417 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGLQ * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGLQ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGLQ generates an M-by-N complex matrix Q with orthonormal rows, *> which is defined as the first M rows of a product of K elementary *> reflectors of order N *> *> Q = H(k)**H . . . H(2)**H H(1)**H *> *> as returned by ZGELQF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. N >= M. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. M >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the i-th row must contain the vector which defines *> the elementary reflector H(i), for i = 1,2,...,k, as returned *> by ZGELQF in the first k rows of its array argument A. *> On exit, the M-by-N matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGELQF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,M). *> For optimum performance LWORK >= M*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit; *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGLQ( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, J, KI, KK, L, LDWORK, $ LWKOPT, NB, NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNGL2 * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NB = ILAENV( 1, 'ZUNGLQ', ' ', M, N, K, -1 ) LWKOPT = MAX( 1, M )*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.M ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 ELSE IF( LWORK.LT.MAX( 1, M ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGLQ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.LE.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 NX = 0 IWS = M IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'ZUNGLQ', ' ', M, N, K, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = M IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNGLQ', ' ', M, N, K, -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code after the last block. * The first kk rows are handled by the block method. * KI = ( ( K-NX-1 ) / NB )*NB KK = MIN( K, KI+NB ) * * Set A(kk+1:m,1:kk) to zero. * DO 20 J = 1, KK DO 10 I = KK + 1, M A( I, J ) = ZERO 10 CONTINUE 20 CONTINUE ELSE KK = 0 END IF * * Use unblocked code for the last or only block. * IF( KK.LT.M ) $ CALL ZUNGL2( M-KK, N-KK, K-KK, A( KK+1, KK+1 ), LDA, $ TAU( KK+1 ), WORK, IINFO ) * IF( KK.GT.0 ) THEN * * Use blocked code * DO 50 I = KI + 1, 1, -NB IB = MIN( NB, K-I+1 ) IF( I+IB.LE.M ) THEN * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK, LDWORK ) * * Apply H**H to A(i+ib:m,i:n) from the right * CALL ZLARFB( 'Right', 'Conjugate transpose', 'Forward', $ 'Rowwise', M-I-IB+1, N-I+1, IB, A( I, I ), $ LDA, WORK, LDWORK, A( I+IB, I ), LDA, $ WORK( IB+1 ), LDWORK ) END IF * * Apply H**H to columns i:n of current block * CALL ZUNGL2( IB, N-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) * * Set columns 1:i-1 of current block to zero * DO 40 J = 1, I - 1 DO 30 L = I, I + IB - 1 A( L, J ) = ZERO 30 CONTINUE 40 CONTINUE 50 CONTINUE END IF * WORK( 1 ) = IWS RETURN * * End of ZUNGLQ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaset.f0000644000000000000000000000013214061636515015326 xustar0030 mtime=1623670093.213104072 30 atime=1623670093.213104072 30 ctime=1623670093.213104072 elk-7.2.42/src/LAPACK/zlaset.f0000644002504400250440000001136014061636515017364 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLASET + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLASET( UPLO, M, N, ALPHA, BETA, A, LDA ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, M, N * COMPLEX*16 ALPHA, BETA * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLASET initializes a 2-D array A to BETA on the diagonal and *> ALPHA on the offdiagonals. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies the part of the matrix A to be set. *> = 'U': Upper triangular part is set. The lower triangle *> is unchanged. *> = 'L': Lower triangular part is set. The upper triangle *> is unchanged. *> Otherwise: All of the matrix A is set. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> On entry, M specifies the number of rows of A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> On entry, N specifies the number of columns of A. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> All the offdiagonal array elements are set to ALPHA. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is COMPLEX*16 *> All the diagonal array elements are set to BETA. *> \endverbatim *> *> \param[out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the m by n matrix A. *> On exit, A(i,j) = ALPHA, 1 <= i <= m, 1 <= j <= n, i.ne.j; *> A(i,i) = BETA , 1 <= i <= min(m,n) *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLASET( UPLO, M, N, ALPHA, BETA, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, M, N COMPLEX*16 ALPHA, BETA * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( LSAME( UPLO, 'U' ) ) THEN * * Set the diagonal to BETA and the strictly upper triangular * part of the array to ALPHA. * DO 20 J = 2, N DO 10 I = 1, MIN( J-1, M ) A( I, J ) = ALPHA 10 CONTINUE 20 CONTINUE DO 30 I = 1, MIN( N, M ) A( I, I ) = BETA 30 CONTINUE * ELSE IF( LSAME( UPLO, 'L' ) ) THEN * * Set the diagonal to BETA and the strictly lower triangular * part of the array to ALPHA. * DO 50 J = 1, MIN( M, N ) DO 40 I = J + 1, M A( I, J ) = ALPHA 40 CONTINUE 50 CONTINUE DO 60 I = 1, MIN( N, M ) A( I, I ) = BETA 60 CONTINUE * ELSE * * Set the array to BETA on the diagonal and ALPHA on the * offdiagonal. * DO 80 J = 1, N DO 70 I = 1, M A( I, J ) = ALPHA 70 CONTINUE 80 CONTINUE DO 90 I = 1, MIN( M, N ) A( I, I ) = BETA 90 CONTINUE END IF * RETURN * * End of ZLASET * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zbdsqr.f0000644000000000000000000000012714061636515015335 xustar0029 mtime=1623670093.21510407 29 atime=1623670093.21510407 29 ctime=1623670093.21510407 elk-7.2.42/src/LAPACK/zbdsqr.f0000644002504400250440000006251714061636515017401 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZBDSQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZBDSQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZBDSQR( UPLO, N, NCVT, NRU, NCC, D, E, VT, LDVT, U, * LDU, C, LDC, RWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDC, LDU, LDVT, N, NCC, NCVT, NRU * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ), RWORK( * ) * COMPLEX*16 C( LDC, * ), U( LDU, * ), VT( LDVT, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZBDSQR computes the singular values and, optionally, the right and/or *> left singular vectors from the singular value decomposition (SVD) of *> a real N-by-N (upper or lower) bidiagonal matrix B using the implicit *> zero-shift QR algorithm. The SVD of B has the form *> *> B = Q * S * P**H *> *> where S is the diagonal matrix of singular values, Q is an orthogonal *> matrix of left singular vectors, and P is an orthogonal matrix of *> right singular vectors. If left singular vectors are requested, this *> subroutine actually returns U*Q instead of Q, and, if right singular *> vectors are requested, this subroutine returns P**H*VT instead of *> P**H, for given complex input matrices U and VT. When U and VT are *> the unitary matrices that reduce a general matrix A to bidiagonal *> form: A = U*B*VT, as computed by ZGEBRD, then *> *> A = (U*Q) * S * (P**H*VT) *> *> is the SVD of A. Optionally, the subroutine may also compute Q**H*C *> for a given complex input matrix C. *> *> See "Computing Small Singular Values of Bidiagonal Matrices With *> Guaranteed High Relative Accuracy," by J. Demmel and W. Kahan, *> LAPACK Working Note #3 (or SIAM J. Sci. Statist. Comput. vol. 11, *> no. 5, pp. 873-912, Sept 1990) and *> "Accurate singular values and differential qd algorithms," by *> B. Parlett and V. Fernando, Technical Report CPAM-554, Mathematics *> Department, University of California at Berkeley, July 1992 *> for a detailed description of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': B is upper bidiagonal; *> = 'L': B is lower bidiagonal. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix B. N >= 0. *> \endverbatim *> *> \param[in] NCVT *> \verbatim *> NCVT is INTEGER *> The number of columns of the matrix VT. NCVT >= 0. *> \endverbatim *> *> \param[in] NRU *> \verbatim *> NRU is INTEGER *> The number of rows of the matrix U. NRU >= 0. *> \endverbatim *> *> \param[in] NCC *> \verbatim *> NCC is INTEGER *> The number of columns of the matrix C. NCC >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the n diagonal elements of the bidiagonal matrix B. *> On exit, if INFO=0, the singular values of B in decreasing *> order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the N-1 offdiagonal elements of the bidiagonal *> matrix B. *> On exit, if INFO = 0, E is destroyed; if INFO > 0, D and E *> will contain the diagonal and superdiagonal elements of a *> bidiagonal matrix orthogonally equivalent to the one given *> as input. *> \endverbatim *> *> \param[in,out] VT *> \verbatim *> VT is COMPLEX*16 array, dimension (LDVT, NCVT) *> On entry, an N-by-NCVT matrix VT. *> On exit, VT is overwritten by P**H * VT. *> Not referenced if NCVT = 0. *> \endverbatim *> *> \param[in] LDVT *> \verbatim *> LDVT is INTEGER *> The leading dimension of the array VT. *> LDVT >= max(1,N) if NCVT > 0; LDVT >= 1 if NCVT = 0. *> \endverbatim *> *> \param[in,out] U *> \verbatim *> U is COMPLEX*16 array, dimension (LDU, N) *> On entry, an NRU-by-N matrix U. *> On exit, U is overwritten by U * Q. *> Not referenced if NRU = 0. *> \endverbatim *> *> \param[in] LDU *> \verbatim *> LDU is INTEGER *> The leading dimension of the array U. LDU >= max(1,NRU). *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC, NCC) *> On entry, an N-by-NCC matrix C. *> On exit, C is overwritten by Q**H * C. *> Not referenced if NCC = 0. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. *> LDC >= max(1,N) if NCC > 0; LDC >=1 if NCC = 0. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (4*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: If INFO = -i, the i-th argument had an illegal value *> > 0: the algorithm did not converge; D and E contain the *> elements of a bidiagonal matrix which is orthogonally *> similar to the input matrix B; if INFO = i, i *> elements of E have not converged to zero. *> \endverbatim * *> \par Internal Parameters: * ========================= *> *> \verbatim *> TOLMUL DOUBLE PRECISION, default = max(10,min(100,EPS**(-1/8))) *> TOLMUL controls the convergence criterion of the QR loop. *> If it is positive, TOLMUL*EPS is the desired relative *> precision in the computed singular values. *> If it is negative, abs(TOLMUL*EPS*sigma_max) is the *> desired absolute accuracy in the computed singular *> values (corresponds to relative accuracy *> abs(TOLMUL*EPS) in the largest singular value. *> abs(TOLMUL) should be between 1 and 1/EPS, and preferably *> between 10 (for fast convergence) and .1/EPS *> (for there to be some accuracy in the results). *> Default is to lose at either one eighth or 2 of the *> available decimal digits in each computed singular value *> (whichever is smaller). *> *> MAXITR INTEGER, default = 6 *> MAXITR controls the maximum number of passes of the *> algorithm through its inner loop. The algorithms stops *> (and so fails to converge) if the number of passes *> through the inner loop exceeds MAXITR*N**2. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZBDSQR( UPLO, N, NCVT, NRU, NCC, D, E, VT, LDVT, U, $ LDU, C, LDC, RWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDC, LDU, LDVT, N, NCC, NCVT, NRU * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ), RWORK( * ) COMPLEX*16 C( LDC, * ), U( LDU, * ), VT( LDVT, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION NEGONE PARAMETER ( NEGONE = -1.0D0 ) DOUBLE PRECISION HNDRTH PARAMETER ( HNDRTH = 0.01D0 ) DOUBLE PRECISION TEN PARAMETER ( TEN = 10.0D0 ) DOUBLE PRECISION HNDRD PARAMETER ( HNDRD = 100.0D0 ) DOUBLE PRECISION MEIGTH PARAMETER ( MEIGTH = -0.125D0 ) INTEGER MAXITR PARAMETER ( MAXITR = 6 ) * .. * .. Local Scalars .. LOGICAL LOWER, ROTATE INTEGER I, IDIR, ISUB, ITER, J, LL, LLL, M, MAXIT, NM1, $ NM12, NM13, OLDLL, OLDM DOUBLE PRECISION ABSE, ABSS, COSL, COSR, CS, EPS, F, G, H, MU, $ OLDCS, OLDSN, R, SHIFT, SIGMN, SIGMX, SINL, $ SINR, SLL, SMAX, SMIN, SMINL, SMINOA, $ SN, THRESH, TOL, TOLMUL, UNFL * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DLAMCH EXTERNAL LSAME, DLAMCH * .. * .. External Subroutines .. EXTERNAL DLARTG, DLAS2, DLASQ1, DLASV2, XERBLA, ZDROT, $ ZDSCAL, ZLASR, ZSWAP * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, MAX, MIN, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 LOWER = LSAME( UPLO, 'L' ) IF( .NOT.LSAME( UPLO, 'U' ) .AND. .NOT.LOWER ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( NCVT.LT.0 ) THEN INFO = -3 ELSE IF( NRU.LT.0 ) THEN INFO = -4 ELSE IF( NCC.LT.0 ) THEN INFO = -5 ELSE IF( ( NCVT.EQ.0 .AND. LDVT.LT.1 ) .OR. $ ( NCVT.GT.0 .AND. LDVT.LT.MAX( 1, N ) ) ) THEN INFO = -9 ELSE IF( LDU.LT.MAX( 1, NRU ) ) THEN INFO = -11 ELSE IF( ( NCC.EQ.0 .AND. LDC.LT.1 ) .OR. $ ( NCC.GT.0 .AND. LDC.LT.MAX( 1, N ) ) ) THEN INFO = -13 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZBDSQR', -INFO ) RETURN END IF IF( N.EQ.0 ) $ RETURN IF( N.EQ.1 ) $ GO TO 160 * * ROTATE is true if any singular vectors desired, false otherwise * ROTATE = ( NCVT.GT.0 ) .OR. ( NRU.GT.0 ) .OR. ( NCC.GT.0 ) * * If no singular vectors desired, use qd algorithm * IF( .NOT.ROTATE ) THEN CALL DLASQ1( N, D, E, RWORK, INFO ) * * If INFO equals 2, dqds didn't finish, try to finish * IF( INFO .NE. 2 ) RETURN INFO = 0 END IF * NM1 = N - 1 NM12 = NM1 + NM1 NM13 = NM12 + NM1 IDIR = 0 * * Get machine constants * EPS = DLAMCH( 'Epsilon' ) UNFL = DLAMCH( 'Safe minimum' ) * * If matrix lower bidiagonal, rotate to be upper bidiagonal * by applying Givens rotations on the left * IF( LOWER ) THEN DO 10 I = 1, N - 1 CALL DLARTG( D( I ), E( I ), CS, SN, R ) D( I ) = R E( I ) = SN*D( I+1 ) D( I+1 ) = CS*D( I+1 ) RWORK( I ) = CS RWORK( NM1+I ) = SN 10 CONTINUE * * Update singular vectors if desired * IF( NRU.GT.0 ) $ CALL ZLASR( 'R', 'V', 'F', NRU, N, RWORK( 1 ), RWORK( N ), $ U, LDU ) IF( NCC.GT.0 ) $ CALL ZLASR( 'L', 'V', 'F', N, NCC, RWORK( 1 ), RWORK( N ), $ C, LDC ) END IF * * Compute singular values to relative accuracy TOL * (By setting TOL to be negative, algorithm will compute * singular values to absolute accuracy ABS(TOL)*norm(input matrix)) * TOLMUL = MAX( TEN, MIN( HNDRD, EPS**MEIGTH ) ) TOL = TOLMUL*EPS * * Compute approximate maximum, minimum singular values * SMAX = ZERO DO 20 I = 1, N SMAX = MAX( SMAX, ABS( D( I ) ) ) 20 CONTINUE DO 30 I = 1, N - 1 SMAX = MAX( SMAX, ABS( E( I ) ) ) 30 CONTINUE SMINL = ZERO IF( TOL.GE.ZERO ) THEN * * Relative accuracy desired * SMINOA = ABS( D( 1 ) ) IF( SMINOA.EQ.ZERO ) $ GO TO 50 MU = SMINOA DO 40 I = 2, N MU = ABS( D( I ) )*( MU / ( MU+ABS( E( I-1 ) ) ) ) SMINOA = MIN( SMINOA, MU ) IF( SMINOA.EQ.ZERO ) $ GO TO 50 40 CONTINUE 50 CONTINUE SMINOA = SMINOA / SQRT( DBLE( N ) ) THRESH = MAX( TOL*SMINOA, MAXITR*N*N*UNFL ) ELSE * * Absolute accuracy desired * THRESH = MAX( ABS( TOL )*SMAX, MAXITR*N*N*UNFL ) END IF * * Prepare for main iteration loop for the singular values * (MAXIT is the maximum number of passes through the inner * loop permitted before nonconvergence signalled.) * MAXIT = MAXITR*N*N ITER = 0 OLDLL = -1 OLDM = -1 * * M points to last element of unconverged part of matrix * M = N * * Begin main iteration loop * 60 CONTINUE * * Check for convergence or exceeding iteration count * IF( M.LE.1 ) $ GO TO 160 IF( ITER.GT.MAXIT ) $ GO TO 200 * * Find diagonal block of matrix to work on * IF( TOL.LT.ZERO .AND. ABS( D( M ) ).LE.THRESH ) $ D( M ) = ZERO SMAX = ABS( D( M ) ) SMIN = SMAX DO 70 LLL = 1, M - 1 LL = M - LLL ABSS = ABS( D( LL ) ) ABSE = ABS( E( LL ) ) IF( TOL.LT.ZERO .AND. ABSS.LE.THRESH ) $ D( LL ) = ZERO IF( ABSE.LE.THRESH ) $ GO TO 80 SMIN = MIN( SMIN, ABSS ) SMAX = MAX( SMAX, ABSS, ABSE ) 70 CONTINUE LL = 0 GO TO 90 80 CONTINUE E( LL ) = ZERO * * Matrix splits since E(LL) = 0 * IF( LL.EQ.M-1 ) THEN * * Convergence of bottom singular value, return to top of loop * M = M - 1 GO TO 60 END IF 90 CONTINUE LL = LL + 1 * * E(LL) through E(M-1) are nonzero, E(LL-1) is zero * IF( LL.EQ.M-1 ) THEN * * 2 by 2 block, handle separately * CALL DLASV2( D( M-1 ), E( M-1 ), D( M ), SIGMN, SIGMX, SINR, $ COSR, SINL, COSL ) D( M-1 ) = SIGMX E( M-1 ) = ZERO D( M ) = SIGMN * * Compute singular vectors, if desired * IF( NCVT.GT.0 ) $ CALL ZDROT( NCVT, VT( M-1, 1 ), LDVT, VT( M, 1 ), LDVT, $ COSR, SINR ) IF( NRU.GT.0 ) $ CALL ZDROT( NRU, U( 1, M-1 ), 1, U( 1, M ), 1, COSL, SINL ) IF( NCC.GT.0 ) $ CALL ZDROT( NCC, C( M-1, 1 ), LDC, C( M, 1 ), LDC, COSL, $ SINL ) M = M - 2 GO TO 60 END IF * * If working on new submatrix, choose shift direction * (from larger end diagonal element towards smaller) * IF( LL.GT.OLDM .OR. M.LT.OLDLL ) THEN IF( ABS( D( LL ) ).GE.ABS( D( M ) ) ) THEN * * Chase bulge from top (big end) to bottom (small end) * IDIR = 1 ELSE * * Chase bulge from bottom (big end) to top (small end) * IDIR = 2 END IF END IF * * Apply convergence tests * IF( IDIR.EQ.1 ) THEN * * Run convergence test in forward direction * First apply standard test to bottom of matrix * IF( ABS( E( M-1 ) ).LE.ABS( TOL )*ABS( D( M ) ) .OR. $ ( TOL.LT.ZERO .AND. ABS( E( M-1 ) ).LE.THRESH ) ) THEN E( M-1 ) = ZERO GO TO 60 END IF * IF( TOL.GE.ZERO ) THEN * * If relative accuracy desired, * apply convergence criterion forward * MU = ABS( D( LL ) ) SMINL = MU DO 100 LLL = LL, M - 1 IF( ABS( E( LLL ) ).LE.TOL*MU ) THEN E( LLL ) = ZERO GO TO 60 END IF MU = ABS( D( LLL+1 ) )*( MU / ( MU+ABS( E( LLL ) ) ) ) SMINL = MIN( SMINL, MU ) 100 CONTINUE END IF * ELSE * * Run convergence test in backward direction * First apply standard test to top of matrix * IF( ABS( E( LL ) ).LE.ABS( TOL )*ABS( D( LL ) ) .OR. $ ( TOL.LT.ZERO .AND. ABS( E( LL ) ).LE.THRESH ) ) THEN E( LL ) = ZERO GO TO 60 END IF * IF( TOL.GE.ZERO ) THEN * * If relative accuracy desired, * apply convergence criterion backward * MU = ABS( D( M ) ) SMINL = MU DO 110 LLL = M - 1, LL, -1 IF( ABS( E( LLL ) ).LE.TOL*MU ) THEN E( LLL ) = ZERO GO TO 60 END IF MU = ABS( D( LLL ) )*( MU / ( MU+ABS( E( LLL ) ) ) ) SMINL = MIN( SMINL, MU ) 110 CONTINUE END IF END IF OLDLL = LL OLDM = M * * Compute shift. First, test if shifting would ruin relative * accuracy, and if so set the shift to zero. * IF( TOL.GE.ZERO .AND. N*TOL*( SMINL / SMAX ).LE. $ MAX( EPS, HNDRTH*TOL ) ) THEN * * Use a zero shift to avoid loss of relative accuracy * SHIFT = ZERO ELSE * * Compute the shift from 2-by-2 block at end of matrix * IF( IDIR.EQ.1 ) THEN SLL = ABS( D( LL ) ) CALL DLAS2( D( M-1 ), E( M-1 ), D( M ), SHIFT, R ) ELSE SLL = ABS( D( M ) ) CALL DLAS2( D( LL ), E( LL ), D( LL+1 ), SHIFT, R ) END IF * * Test if shift negligible, and if so set to zero * IF( SLL.GT.ZERO ) THEN IF( ( SHIFT / SLL )**2.LT.EPS ) $ SHIFT = ZERO END IF END IF * * Increment iteration count * ITER = ITER + M - LL * * If SHIFT = 0, do simplified QR iteration * IF( SHIFT.EQ.ZERO ) THEN IF( IDIR.EQ.1 ) THEN * * Chase bulge from top to bottom * Save cosines and sines for later singular vector updates * CS = ONE OLDCS = ONE DO 120 I = LL, M - 1 CALL DLARTG( D( I )*CS, E( I ), CS, SN, R ) IF( I.GT.LL ) $ E( I-1 ) = OLDSN*R CALL DLARTG( OLDCS*R, D( I+1 )*SN, OLDCS, OLDSN, D( I ) ) RWORK( I-LL+1 ) = CS RWORK( I-LL+1+NM1 ) = SN RWORK( I-LL+1+NM12 ) = OLDCS RWORK( I-LL+1+NM13 ) = OLDSN 120 CONTINUE H = D( M )*CS D( M ) = H*OLDCS E( M-1 ) = H*OLDSN * * Update singular vectors * IF( NCVT.GT.0 ) $ CALL ZLASR( 'L', 'V', 'F', M-LL+1, NCVT, RWORK( 1 ), $ RWORK( N ), VT( LL, 1 ), LDVT ) IF( NRU.GT.0 ) $ CALL ZLASR( 'R', 'V', 'F', NRU, M-LL+1, RWORK( NM12+1 ), $ RWORK( NM13+1 ), U( 1, LL ), LDU ) IF( NCC.GT.0 ) $ CALL ZLASR( 'L', 'V', 'F', M-LL+1, NCC, RWORK( NM12+1 ), $ RWORK( NM13+1 ), C( LL, 1 ), LDC ) * * Test convergence * IF( ABS( E( M-1 ) ).LE.THRESH ) $ E( M-1 ) = ZERO * ELSE * * Chase bulge from bottom to top * Save cosines and sines for later singular vector updates * CS = ONE OLDCS = ONE DO 130 I = M, LL + 1, -1 CALL DLARTG( D( I )*CS, E( I-1 ), CS, SN, R ) IF( I.LT.M ) $ E( I ) = OLDSN*R CALL DLARTG( OLDCS*R, D( I-1 )*SN, OLDCS, OLDSN, D( I ) ) RWORK( I-LL ) = CS RWORK( I-LL+NM1 ) = -SN RWORK( I-LL+NM12 ) = OLDCS RWORK( I-LL+NM13 ) = -OLDSN 130 CONTINUE H = D( LL )*CS D( LL ) = H*OLDCS E( LL ) = H*OLDSN * * Update singular vectors * IF( NCVT.GT.0 ) $ CALL ZLASR( 'L', 'V', 'B', M-LL+1, NCVT, RWORK( NM12+1 ), $ RWORK( NM13+1 ), VT( LL, 1 ), LDVT ) IF( NRU.GT.0 ) $ CALL ZLASR( 'R', 'V', 'B', NRU, M-LL+1, RWORK( 1 ), $ RWORK( N ), U( 1, LL ), LDU ) IF( NCC.GT.0 ) $ CALL ZLASR( 'L', 'V', 'B', M-LL+1, NCC, RWORK( 1 ), $ RWORK( N ), C( LL, 1 ), LDC ) * * Test convergence * IF( ABS( E( LL ) ).LE.THRESH ) $ E( LL ) = ZERO END IF ELSE * * Use nonzero shift * IF( IDIR.EQ.1 ) THEN * * Chase bulge from top to bottom * Save cosines and sines for later singular vector updates * F = ( ABS( D( LL ) )-SHIFT )* $ ( SIGN( ONE, D( LL ) )+SHIFT / D( LL ) ) G = E( LL ) DO 140 I = LL, M - 1 CALL DLARTG( F, G, COSR, SINR, R ) IF( I.GT.LL ) $ E( I-1 ) = R F = COSR*D( I ) + SINR*E( I ) E( I ) = COSR*E( I ) - SINR*D( I ) G = SINR*D( I+1 ) D( I+1 ) = COSR*D( I+1 ) CALL DLARTG( F, G, COSL, SINL, R ) D( I ) = R F = COSL*E( I ) + SINL*D( I+1 ) D( I+1 ) = COSL*D( I+1 ) - SINL*E( I ) IF( I.LT.M-1 ) THEN G = SINL*E( I+1 ) E( I+1 ) = COSL*E( I+1 ) END IF RWORK( I-LL+1 ) = COSR RWORK( I-LL+1+NM1 ) = SINR RWORK( I-LL+1+NM12 ) = COSL RWORK( I-LL+1+NM13 ) = SINL 140 CONTINUE E( M-1 ) = F * * Update singular vectors * IF( NCVT.GT.0 ) $ CALL ZLASR( 'L', 'V', 'F', M-LL+1, NCVT, RWORK( 1 ), $ RWORK( N ), VT( LL, 1 ), LDVT ) IF( NRU.GT.0 ) $ CALL ZLASR( 'R', 'V', 'F', NRU, M-LL+1, RWORK( NM12+1 ), $ RWORK( NM13+1 ), U( 1, LL ), LDU ) IF( NCC.GT.0 ) $ CALL ZLASR( 'L', 'V', 'F', M-LL+1, NCC, RWORK( NM12+1 ), $ RWORK( NM13+1 ), C( LL, 1 ), LDC ) * * Test convergence * IF( ABS( E( M-1 ) ).LE.THRESH ) $ E( M-1 ) = ZERO * ELSE * * Chase bulge from bottom to top * Save cosines and sines for later singular vector updates * F = ( ABS( D( M ) )-SHIFT )*( SIGN( ONE, D( M ) )+SHIFT / $ D( M ) ) G = E( M-1 ) DO 150 I = M, LL + 1, -1 CALL DLARTG( F, G, COSR, SINR, R ) IF( I.LT.M ) $ E( I ) = R F = COSR*D( I ) + SINR*E( I-1 ) E( I-1 ) = COSR*E( I-1 ) - SINR*D( I ) G = SINR*D( I-1 ) D( I-1 ) = COSR*D( I-1 ) CALL DLARTG( F, G, COSL, SINL, R ) D( I ) = R F = COSL*E( I-1 ) + SINL*D( I-1 ) D( I-1 ) = COSL*D( I-1 ) - SINL*E( I-1 ) IF( I.GT.LL+1 ) THEN G = SINL*E( I-2 ) E( I-2 ) = COSL*E( I-2 ) END IF RWORK( I-LL ) = COSR RWORK( I-LL+NM1 ) = -SINR RWORK( I-LL+NM12 ) = COSL RWORK( I-LL+NM13 ) = -SINL 150 CONTINUE E( LL ) = F * * Test convergence * IF( ABS( E( LL ) ).LE.THRESH ) $ E( LL ) = ZERO * * Update singular vectors if desired * IF( NCVT.GT.0 ) $ CALL ZLASR( 'L', 'V', 'B', M-LL+1, NCVT, RWORK( NM12+1 ), $ RWORK( NM13+1 ), VT( LL, 1 ), LDVT ) IF( NRU.GT.0 ) $ CALL ZLASR( 'R', 'V', 'B', NRU, M-LL+1, RWORK( 1 ), $ RWORK( N ), U( 1, LL ), LDU ) IF( NCC.GT.0 ) $ CALL ZLASR( 'L', 'V', 'B', M-LL+1, NCC, RWORK( 1 ), $ RWORK( N ), C( LL, 1 ), LDC ) END IF END IF * * QR iteration finished, go back and check convergence * GO TO 60 * * All singular values converged, so make them positive * 160 CONTINUE DO 170 I = 1, N IF( D( I ).LT.ZERO ) THEN D( I ) = -D( I ) * * Change sign of singular vectors, if desired * IF( NCVT.GT.0 ) $ CALL ZDSCAL( NCVT, NEGONE, VT( I, 1 ), LDVT ) END IF 170 CONTINUE * * Sort the singular values into decreasing order (insertion sort on * singular values, but only one transposition per singular vector) * DO 190 I = 1, N - 1 * * Scan for smallest D(I) * ISUB = 1 SMIN = D( 1 ) DO 180 J = 2, N + 1 - I IF( D( J ).LE.SMIN ) THEN ISUB = J SMIN = D( J ) END IF 180 CONTINUE IF( ISUB.NE.N+1-I ) THEN * * Swap singular values and vectors * D( ISUB ) = D( N+1-I ) D( N+1-I ) = SMIN IF( NCVT.GT.0 ) $ CALL ZSWAP( NCVT, VT( ISUB, 1 ), LDVT, VT( N+1-I, 1 ), $ LDVT ) IF( NRU.GT.0 ) $ CALL ZSWAP( NRU, U( 1, ISUB ), 1, U( 1, N+1-I ), 1 ) IF( NCC.GT.0 ) $ CALL ZSWAP( NCC, C( ISUB, 1 ), LDC, C( N+1-I, 1 ), LDC ) END IF 190 CONTINUE GO TO 220 * * Maximum number of iterations exceeded, failure to converge * 200 CONTINUE INFO = 0 DO 210 I = 1, N - 1 IF( E( I ).NE.ZERO ) $ INFO = INFO + 1 210 CONTINUE 220 CONTINUE RETURN * * End of ZBDSQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmbr.f0000644000000000000000000000013214061636515015341 xustar0030 mtime=1623670093.217104068 30 atime=1623670093.217104068 30 ctime=1623670093.217104068 elk-7.2.42/src/LAPACK/zunmbr.f0000644002504400250440000002555314061636515017410 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMBR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMBR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMBR( VECT, SIDE, TRANS, M, N, K, A, LDA, TAU, C, * LDC, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS, VECT * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> If VECT = 'Q', ZUNMBR overwrites the general complex M-by-N matrix C *> with *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> If VECT = 'P', ZUNMBR overwrites the general complex M-by-N matrix C *> with *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': P * C C * P *> TRANS = 'C': P**H * C C * P**H *> *> Here Q and P**H are the unitary matrices determined by ZGEBRD when *> reducing a complex matrix A to bidiagonal form: A = Q * B * P**H. Q *> and P**H are defined as products of elementary reflectors H(i) and *> G(i) respectively. *> *> Let nq = m if SIDE = 'L' and nq = n if SIDE = 'R'. Thus nq is the *> order of the unitary matrix Q or P**H that is applied. *> *> If VECT = 'Q', A is assumed to have been an NQ-by-K matrix: *> if nq >= k, Q = H(1) H(2) . . . H(k); *> if nq < k, Q = H(1) H(2) . . . H(nq-1). *> *> If VECT = 'P', A is assumed to have been a K-by-NQ matrix: *> if k < nq, P = G(1) G(2) . . . G(k); *> if k >= nq, P = G(1) G(2) . . . G(nq-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] VECT *> \verbatim *> VECT is CHARACTER*1 *> = 'Q': apply Q or Q**H; *> = 'P': apply P or P**H. *> \endverbatim *> *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q, Q**H, P or P**H from the Left; *> = 'R': apply Q, Q**H, P or P**H from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q or P; *> = 'C': Conjugate transpose, apply Q**H or P**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> If VECT = 'Q', the number of columns in the original *> matrix reduced by ZGEBRD. *> If VECT = 'P', the number of rows in the original *> matrix reduced by ZGEBRD. *> K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension *> (LDA,min(nq,K)) if VECT = 'Q' *> (LDA,nq) if VECT = 'P' *> The vectors which define the elementary reflectors H(i) and *> G(i), whose products determine the matrices Q and P, as *> returned by ZGEBRD. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If VECT = 'Q', LDA >= max(1,nq); *> if VECT = 'P', LDA >= max(1,min(nq,K)). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (min(nq,K)) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i) or G(i) which determines Q or P, as returned *> by ZGEBRD in the array argument TAUQ or TAUP. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q *> or P*C or P**H*C or C*P or C*P**H. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M); *> if N = 0 or M = 0, LWORK >= 1. *> For optimum performance LWORK >= max(1,N*NB) if SIDE = 'L', *> and LWORK >= max(1,M*NB) if SIDE = 'R', where NB is the *> optimal blocksize. (NB = 0 if M = 0 or N = 0.) *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMBR( VECT, SIDE, TRANS, M, N, K, A, LDA, TAU, C, $ LDC, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS, VECT INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL APPLYQ, LEFT, LQUERY, NOTRAN CHARACTER TRANST INTEGER I1, I2, IINFO, LWKOPT, MI, NB, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNMLQ, ZUNMQR * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 APPLYQ = LSAME( VECT, 'Q' ) LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q or P and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( M.EQ.0 .OR. N.EQ.0 ) THEN NW = 0 END IF IF( .NOT.APPLYQ .AND. .NOT.LSAME( VECT, 'P' ) ) THEN INFO = -1 ELSE IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -2 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -3 ELSE IF( M.LT.0 ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( K.LT.0 ) THEN INFO = -6 ELSE IF( ( APPLYQ .AND. LDA.LT.MAX( 1, NQ ) ) .OR. $ ( .NOT.APPLYQ .AND. LDA.LT.MAX( 1, MIN( NQ, K ) ) ) ) $ THEN INFO = -8 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -11 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -13 END IF * IF( INFO.EQ.0 ) THEN IF( NW.GT.0 ) THEN IF( APPLYQ ) THEN IF( LEFT ) THEN NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF ELSE IF( LEFT ) THEN NB = ILAENV( 1, 'ZUNMLQ', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'ZUNMLQ', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF END IF LWKOPT = MAX( 1, NW*NB ) ELSE LWKOPT = 1 END IF WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMBR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN * IF( APPLYQ ) THEN * * Apply Q * IF( NQ.GE.K ) THEN * * Q was determined by a call to ZGEBRD with nq >= k * CALL ZUNMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, IINFO ) ELSE IF( NQ.GT.1 ) THEN * * Q was determined by a call to ZGEBRD with nq < k * IF( LEFT ) THEN MI = M - 1 NI = N I1 = 2 I2 = 1 ELSE MI = M NI = N - 1 I1 = 1 I2 = 2 END IF CALL ZUNMQR( SIDE, TRANS, MI, NI, NQ-1, A( 2, 1 ), LDA, TAU, $ C( I1, I2 ), LDC, WORK, LWORK, IINFO ) END IF ELSE * * Apply P * IF( NOTRAN ) THEN TRANST = 'C' ELSE TRANST = 'N' END IF IF( NQ.GT.K ) THEN * * P was determined by a call to ZGEBRD with nq > k * CALL ZUNMLQ( SIDE, TRANST, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, IINFO ) ELSE IF( NQ.GT.1 ) THEN * * P was determined by a call to ZGEBRD with nq <= k * IF( LEFT ) THEN MI = M - 1 NI = N I1 = 2 I2 = 1 ELSE MI = M NI = N - 1 I1 = 1 I2 = 2 END IF CALL ZUNMLQ( SIDE, TRANST, MI, NI, NQ-1, A( 1, 2 ), LDA, $ TAU, C( I1, I2 ), LDC, WORK, LWORK, IINFO ) END IF END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNMBR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgetrs.f0000644000000000000000000000013214061636515015342 xustar0030 mtime=1623670093.219104066 30 atime=1623670093.219104066 30 ctime=1623670093.219104066 elk-7.2.42/src/LAPACK/zgetrs.f0000644002504400250440000001364314061636515017406 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGETRS * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGETRS + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER TRANS * INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGETRS solves a system of linear equations *> A * X = B, A**T * X = B, or A**H * X = B *> with a general N-by-N matrix A using the LU factorization computed *> by ZGETRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> Specifies the form of the system of equations: *> = 'N': A * X = B (No transpose) *> = 'T': A**T * X = B (Transpose) *> = 'C': A**H * X = B (Conjugate transpose) *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] NRHS *> \verbatim *> NRHS is INTEGER *> The number of right hand sides, i.e., the number of columns *> of the matrix B. NRHS >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The factors L and U from the factorization A = P*L*U *> as computed by ZGETRF. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (N) *> The pivot indices from ZGETRF; for 1<=i<=N, row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB,NRHS) *> On entry, the right hand side matrix B. *> On exit, the solution matrix X. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * * ===================================================================== SUBROUTINE ZGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER TRANS INTEGER INFO, LDA, LDB, N, NRHS * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL NOTRAN * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLASWP, ZTRSM * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 NOTRAN = LSAME( TRANS, 'N' ) IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) .AND. .NOT. $ LSAME( TRANS, 'C' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( NRHS.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGETRS', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. NRHS.EQ.0 ) $ RETURN * IF( NOTRAN ) THEN * * Solve A * X = B. * * Apply row interchanges to the right hand sides. * CALL ZLASWP( NRHS, B, LDB, 1, N, IPIV, 1 ) * * Solve L*X = B, overwriting B with X. * CALL ZTRSM( 'Left', 'Lower', 'No transpose', 'Unit', N, NRHS, $ ONE, A, LDA, B, LDB ) * * Solve U*X = B, overwriting B with X. * CALL ZTRSM( 'Left', 'Upper', 'No transpose', 'Non-unit', N, $ NRHS, ONE, A, LDA, B, LDB ) ELSE * * Solve A**T * X = B or A**H * X = B. * * Solve U**T *X = B or U**H *X = B, overwriting B with X. * CALL ZTRSM( 'Left', 'Upper', TRANS, 'Non-unit', N, NRHS, ONE, $ A, LDA, B, LDB ) * * Solve L**T *X = B, or L**H *X = B overwriting B with X. * CALL ZTRSM( 'Left', 'Lower', TRANS, 'Unit', N, NRHS, ONE, A, $ LDA, B, LDB ) * * Apply row interchanges to the solution vectors. * CALL ZLASWP( NRHS, B, LDB, 1, N, IPIV, -1 ) END IF * RETURN * * End of ZGETRS * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgetrf2.f0000644000000000000000000000013214061636515015407 xustar0030 mtime=1623670093.221104064 30 atime=1623670093.221104064 30 ctime=1623670093.221104064 elk-7.2.42/src/LAPACK/zgetrf2.f0000644002504400250440000001571114061636515017451 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGETRF2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * RECURSIVE SUBROUTINE ZGETRF2( M, N, A, LDA, IPIV, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGETRF2 computes an LU factorization of a general M-by-N matrix A *> using partial pivoting with row interchanges. *> *> The factorization has the form *> A = P * L * U *> where P is a permutation matrix, L is lower triangular with unit *> diagonal elements (lower trapezoidal if m > n), and U is upper *> triangular (upper trapezoidal if m < n). *> *> This is the recursive version of the algorithm. It divides *> the matrix into four submatrices: *> *> [ A11 | A12 ] where A11 is n1 by n1 and A22 is n2 by n2 *> A = [ -----|----- ] with n1 = min(m,n)/2 *> [ A21 | A22 ] n2 = n-n1 *> *> [ A11 ] *> The subroutine calls itself to factor [ --- ], *> [ A12 ] *> [ A12 ] *> do the swaps on [ --- ], solve A12, update A22, *> [ A22 ] *> *> then calls itself to factor A22 and do the swaps on A21. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix to be factored. *> On exit, the factors L and U from the factorization *> A = P*L*U; the unit diagonal elements of L are not stored. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (min(M,N)) *> The pivot indices; for 1 <= i <= min(M,N), row i of the *> matrix was interchanged with row IPIV(i). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, U(i,i) is exactly zero. The factorization *> has been completed, but the factor U is exactly *> singular, and division by zero will occur if it is used *> to solve a system of equations. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16GEcomputational * * ===================================================================== RECURSIVE SUBROUTINE ZGETRF2( M, N, A, LDA, IPIV, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. DOUBLE PRECISION SFMIN COMPLEX*16 TEMP INTEGER I, IINFO, N1, N2 * .. * .. External Functions .. DOUBLE PRECISION DLAMCH INTEGER IZAMAX EXTERNAL DLAMCH, IZAMAX * .. * .. External Subroutines .. EXTERNAL ZGEMM, ZSCAL, ZLASWP, ZTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGETRF2', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN IF ( M.EQ.1 ) THEN * * Use unblocked code for one row case * Just need to handle IPIV and INFO * IPIV( 1 ) = 1 IF ( A(1,1).EQ.ZERO ) $ INFO = 1 * ELSE IF( N.EQ.1 ) THEN * * Use unblocked code for one column case * * * Compute machine safe minimum * SFMIN = DLAMCH('S') * * Find pivot and test for singularity * I = IZAMAX( M, A( 1, 1 ), 1 ) IPIV( 1 ) = I IF( A( I, 1 ).NE.ZERO ) THEN * * Apply the interchange * IF( I.NE.1 ) THEN TEMP = A( 1, 1 ) A( 1, 1 ) = A( I, 1 ) A( I, 1 ) = TEMP END IF * * Compute elements 2:M of the column * IF( ABS(A( 1, 1 )) .GE. SFMIN ) THEN CALL ZSCAL( M-1, ONE / A( 1, 1 ), A( 2, 1 ), 1 ) ELSE DO 10 I = 1, M-1 A( 1+I, 1 ) = A( 1+I, 1 ) / A( 1, 1 ) 10 CONTINUE END IF * ELSE INFO = 1 END IF ELSE * * Use recursive code * N1 = MIN( M, N ) / 2 N2 = N-N1 * * [ A11 ] * Factor [ --- ] * [ A21 ] * CALL ZGETRF2( M, N1, A, LDA, IPIV, IINFO ) IF ( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO * * [ A12 ] * Apply interchanges to [ --- ] * [ A22 ] * CALL ZLASWP( N2, A( 1, N1+1 ), LDA, 1, N1, IPIV, 1 ) * * Solve A12 * CALL ZTRSM( 'L', 'L', 'N', 'U', N1, N2, ONE, A, LDA, $ A( 1, N1+1 ), LDA ) * * Update A22 * CALL ZGEMM( 'N', 'N', M-N1, N2, N1, -ONE, A( N1+1, 1 ), LDA, $ A( 1, N1+1 ), LDA, ONE, A( N1+1, N1+1 ), LDA ) * * Factor A22 * CALL ZGETRF2( M-N1, N2, A( N1+1, N1+1 ), LDA, IPIV( N1+1 ), $ IINFO ) * * Adjust INFO and the pivot indices * IF ( INFO.EQ.0 .AND. IINFO.GT.0 ) $ INFO = IINFO + N1 DO 20 I = N1+1, MIN( M, N ) IPIV( I ) = IPIV( I ) + N1 20 CONTINUE * * Apply interchanges to A21 * CALL ZLASWP( N1, A( 1, 1 ), LDA, N1+1, MIN( M, N), IPIV, 1 ) * END IF RETURN * * End of ZGETRF2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaswp.f0000644000000000000000000000013214061636515015344 xustar0030 mtime=1623670093.223104062 30 atime=1623670093.222104063 30 ctime=1623670093.223104062 elk-7.2.42/src/LAPACK/zlaswp.f0000644002504400250440000001200514061636515017377 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLASWP performs a series of row interchanges on a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLASWP + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLASWP( N, A, LDA, K1, K2, IPIV, INCX ) * * .. Scalar Arguments .. * INTEGER INCX, K1, K2, LDA, N * .. * .. Array Arguments .. * INTEGER IPIV( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLASWP performs a series of row interchanges on the matrix A. *> One row interchange is initiated for each of rows K1 through K2 of A. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the matrix of column dimension N to which the row *> interchanges will be applied. *> On exit, the permuted matrix. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> \endverbatim *> *> \param[in] K1 *> \verbatim *> K1 is INTEGER *> The first element of IPIV for which a row interchange will *> be done. *> \endverbatim *> *> \param[in] K2 *> \verbatim *> K2 is INTEGER *> (K2-K1+1) is the number of elements of IPIV for which a row *> interchange will be done. *> \endverbatim *> *> \param[in] IPIV *> \verbatim *> IPIV is INTEGER array, dimension (K1+(K2-K1)*abs(INCX)) *> The vector of pivot indices. Only the elements in positions *> K1 through K1+(K2-K1)*abs(INCX) of IPIV are accessed. *> IPIV(K1+(K-K1)*abs(INCX)) = L implies rows K and L are to be *> interchanged. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between successive values of IPIV. If INCX *> is negative, the pivots are applied in reverse order. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Modified by *> R. C. Whaley, Computer Science Dept., Univ. of Tenn., Knoxville, USA *> \endverbatim *> * ===================================================================== SUBROUTINE ZLASWP( N, A, LDA, K1, K2, IPIV, INCX ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER INCX, K1, K2, LDA, N * .. * .. Array Arguments .. INTEGER IPIV( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, I1, I2, INC, IP, IX, IX0, J, K, N32 COMPLEX*16 TEMP * .. * .. Executable Statements .. * * Interchange row I with row IPIV(K1+(I-K1)*abs(INCX)) for each of rows * K1 through K2. * IF( INCX.GT.0 ) THEN IX0 = K1 I1 = K1 I2 = K2 INC = 1 ELSE IF( INCX.LT.0 ) THEN IX0 = K1 + ( K1-K2 )*INCX I1 = K2 I2 = K1 INC = -1 ELSE RETURN END IF * N32 = ( N / 32 )*32 IF( N32.NE.0 ) THEN DO 30 J = 1, N32, 32 IX = IX0 DO 20 I = I1, I2, INC IP = IPIV( IX ) IF( IP.NE.I ) THEN DO 10 K = J, J + 31 TEMP = A( I, K ) A( I, K ) = A( IP, K ) A( IP, K ) = TEMP 10 CONTINUE END IF IX = IX + INCX 20 CONTINUE 30 CONTINUE END IF IF( N32.NE.N ) THEN N32 = N32 + 1 IX = IX0 DO 50 I = I1, I2, INC IP = IPIV( IX ) IF( IP.NE.I ) THEN DO 40 K = N32, N TEMP = A( I, K ) A( I, K ) = A( IP, K ) A( IP, K ) = TEMP 40 CONTINUE END IF IX = IX + INCX 50 CONTINUE END IF * RETURN * * End of ZLASWP * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ztrtri.f0000644000000000000000000000013214061636515015362 xustar0030 mtime=1623670093.225104061 30 atime=1623670093.224104061 30 ctime=1623670093.225104061 elk-7.2.42/src/LAPACK/ztrtri.f0000644002504400250440000001545014061636515017424 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRTRI * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZTRTRI + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZTRTRI( UPLO, DIAG, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER DIAG, UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRTRI computes the inverse of a complex upper or lower triangular *> matrix A. *> *> This is the Level 3 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': A is upper triangular; *> = 'L': A is lower triangular. *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> = 'N': A is non-unit triangular; *> = 'U': A is unit triangular. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the triangular matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of the array A contains *> the upper triangular matrix, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of the array A contains *> the lower triangular matrix, and the strictly upper *> triangular part of A is not referenced. If DIAG = 'U', the *> diagonal elements of A are also not referenced and are *> assumed to be 1. *> On exit, the (triangular) inverse of the original matrix, in *> the same storage format. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, A(i,i) is exactly zero. The triangular *> matrix is singular and its inverse can not be computed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZTRTRI( UPLO, DIAG, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIAG, UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL NOUNIT, UPPER INTEGER J, JB, NB, NN * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZTRMM, ZTRSM, ZTRTI2 * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) NOUNIT = LSAME( DIAG, 'N' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZTRTRI', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Check for singularity if non-unit. * IF( NOUNIT ) THEN DO 10 INFO = 1, N IF( A( INFO, INFO ).EQ.ZERO ) $ RETURN 10 CONTINUE INFO = 0 END IF * * Determine the block size for this environment. * NB = ILAENV( 1, 'ZTRTRI', UPLO // DIAG, N, -1, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code * CALL ZTRTI2( UPLO, DIAG, N, A, LDA, INFO ) ELSE * * Use blocked code * IF( UPPER ) THEN * * Compute inverse of upper triangular matrix * DO 20 J = 1, N, NB JB = MIN( NB, N-J+1 ) * * Compute rows 1:j-1 of current block column * CALL ZTRMM( 'Left', 'Upper', 'No transpose', DIAG, J-1, $ JB, ONE, A, LDA, A( 1, J ), LDA ) CALL ZTRSM( 'Right', 'Upper', 'No transpose', DIAG, J-1, $ JB, -ONE, A( J, J ), LDA, A( 1, J ), LDA ) * * Compute inverse of current diagonal block * CALL ZTRTI2( 'Upper', DIAG, JB, A( J, J ), LDA, INFO ) 20 CONTINUE ELSE * * Compute inverse of lower triangular matrix * NN = ( ( N-1 ) / NB )*NB + 1 DO 30 J = NN, 1, -NB JB = MIN( NB, N-J+1 ) IF( J+JB.LE.N ) THEN * * Compute rows j+jb:n of current block column * CALL ZTRMM( 'Left', 'Lower', 'No transpose', DIAG, $ N-J-JB+1, JB, ONE, A( J+JB, J+JB ), LDA, $ A( J+JB, J ), LDA ) CALL ZTRSM( 'Right', 'Lower', 'No transpose', DIAG, $ N-J-JB+1, JB, -ONE, A( J, J ), LDA, $ A( J+JB, J ), LDA ) END IF * * Compute inverse of current diagonal block * CALL ZTRTI2( 'Lower', DIAG, JB, A( J, J ), LDA, INFO ) 30 CONTINUE END IF END IF * RETURN * * End of ZTRTRI * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlanhe.f0000644000000000000000000000012714061636515015311 xustar0029 mtime=1623670093.22610406 29 atime=1623670093.22610406 29 ctime=1623670093.22610406 elk-7.2.42/src/LAPACK/zlanhe.f0000644002504400250440000002107414061636515017346 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLANHE returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex Hermitian matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLANHE + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION ZLANHE( NORM, UPLO, N, A, LDA, WORK ) * * .. Scalar Arguments .. * CHARACTER NORM, UPLO * INTEGER LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION WORK( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLANHE returns the value of the one norm, or the Frobenius norm, or *> the infinity norm, or the element of largest absolute value of a *> complex hermitian matrix A. *> \endverbatim *> *> \return ZLANHE *> \verbatim *> *> ZLANHE = ( max(abs(A(i,j))), NORM = 'M' or 'm' *> ( *> ( norm1(A), NORM = '1', 'O' or 'o' *> ( *> ( normI(A), NORM = 'I' or 'i' *> ( *> ( normF(A), NORM = 'F', 'f', 'E' or 'e' *> *> where norm1 denotes the one norm of a matrix (maximum column sum), *> normI denotes the infinity norm of a matrix (maximum row sum) and *> normF denotes the Frobenius norm of a matrix (square root of sum of *> squares). Note that max(abs(A(i,j))) is not a consistent matrix norm. *> \endverbatim * * Arguments: * ========== * *> \param[in] NORM *> \verbatim *> NORM is CHARACTER*1 *> Specifies the value to be returned in ZLANHE as described *> above. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> hermitian matrix A is to be referenced. *> = 'U': Upper triangular part of A is referenced *> = 'L': Lower triangular part of A is referenced *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. When N = 0, ZLANHE is *> set to zero. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The hermitian matrix A. If UPLO = 'U', the leading n by n *> upper triangular part of A contains the upper triangular part *> of the matrix A, and the strictly lower triangular part of A *> is not referenced. If UPLO = 'L', the leading n by n lower *> triangular part of A contains the lower triangular part of *> the matrix A, and the strictly upper triangular part of A is *> not referenced. Note that the imaginary parts of the diagonal *> elements need not be set and are assumed to be zero. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(N,1). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)), *> where LWORK >= N when NORM = 'I' or '1' or 'O'; otherwise, *> WORK is not referenced. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION ZLANHE( NORM, UPLO, N, A, LDA, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * IMPLICIT NONE * .. Scalar Arguments .. CHARACTER NORM, UPLO INTEGER LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION WORK( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J DOUBLE PRECISION ABSA, SUM, VALUE * .. * .. Local Arrays .. DOUBLE PRECISION SSQ( 2 ), COLSSQ( 2 ) * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL ZLASSQ, DCOMBSSQ * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, SQRT * .. * .. Executable Statements .. * IF( N.EQ.0 ) THEN VALUE = ZERO ELSE IF( LSAME( NORM, 'M' ) ) THEN * * Find max(abs(A(i,j))). * VALUE = ZERO IF( LSAME( UPLO, 'U' ) ) THEN DO 20 J = 1, N DO 10 I = 1, J - 1 SUM = ABS( A( I, J ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 10 CONTINUE SUM = ABS( DBLE( A( J, J ) ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 20 CONTINUE ELSE DO 40 J = 1, N SUM = ABS( DBLE( A( J, J ) ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM DO 30 I = J + 1, N SUM = ABS( A( I, J ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 30 CONTINUE 40 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'I' ) ) .OR. ( LSAME( NORM, 'O' ) ) .OR. $ ( NORM.EQ.'1' ) ) THEN * * Find normI(A) ( = norm1(A), since A is hermitian). * VALUE = ZERO IF( LSAME( UPLO, 'U' ) ) THEN DO 60 J = 1, N SUM = ZERO DO 50 I = 1, J - 1 ABSA = ABS( A( I, J ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA 50 CONTINUE WORK( J ) = SUM + ABS( DBLE( A( J, J ) ) ) 60 CONTINUE DO 70 I = 1, N SUM = WORK( I ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 70 CONTINUE ELSE DO 80 I = 1, N WORK( I ) = ZERO 80 CONTINUE DO 100 J = 1, N SUM = WORK( J ) + ABS( DBLE( A( J, J ) ) ) DO 90 I = J + 1, N ABSA = ABS( A( I, J ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA 90 CONTINUE IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 100 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN * * Find normF(A). * SSQ(1) is scale * SSQ(2) is sum-of-squares * For better accuracy, sum each column separately. * SSQ( 1 ) = ZERO SSQ( 2 ) = ONE * * Sum off-diagonals * IF( LSAME( UPLO, 'U' ) ) THEN DO 110 J = 2, N COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL ZLASSQ( J-1, A( 1, J ), 1, $ COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) 110 CONTINUE ELSE DO 120 J = 1, N - 1 COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL ZLASSQ( N-J, A( J+1, J ), 1, $ COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) 120 CONTINUE END IF SSQ( 2 ) = 2*SSQ( 2 ) * * Sum diagonal * DO 130 I = 1, N IF( DBLE( A( I, I ) ).NE.ZERO ) THEN ABSA = ABS( DBLE( A( I, I ) ) ) IF( SSQ( 1 ).LT.ABSA ) THEN SSQ( 2 ) = ONE + SSQ( 2 )*( SSQ( 1 ) / ABSA )**2 SSQ( 1 ) = ABSA ELSE SSQ( 2 ) = SSQ( 2 ) + ( ABSA / SSQ( 1 ) )**2 END IF END IF 130 CONTINUE VALUE = SSQ( 1 )*SQRT( SSQ( 2 ) ) END IF * ZLANHE = VALUE RETURN * * End of ZLANHE * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhetrd.f0000644000000000000000000000013214061636515015324 xustar0030 mtime=1623670093.228104058 30 atime=1623670093.228104058 30 ctime=1623670093.228104058 elk-7.2.42/src/LAPACK/zhetrd.f0000644002504400250440000002646114061636515017372 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHETRD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHETRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHETRD( UPLO, N, A, LDA, D, E, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHETRD reduces a complex Hermitian matrix A to real symmetric *> tridiagonal form T by a unitary similarity transformation: *> Q**H * A * Q = T. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit, if UPLO = 'U', the diagonal and first superdiagonal *> of A are overwritten by the corresponding elements of the *> tridiagonal matrix T, and the elements above the first *> superdiagonal, with the array TAU, represent the unitary *> matrix Q as a product of elementary reflectors; if UPLO *> = 'L', the diagonal and first subdiagonal of A are over- *> written by the corresponding elements of the tridiagonal *> matrix T, and the elements below the first subdiagonal, with *> the array TAU, represent the unitary matrix Q as a product *> of elementary reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix T: *> E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= 1. *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n-1) . . . H(2) H(1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in *> A(1:i-1,i+1), and tau in TAU(i). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(n-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in A(i+2:n,i), *> and tau in TAU(i). *> *> The contents of A on exit are illustrated by the following examples *> with n = 5: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( d e v2 v3 v4 ) ( d ) *> ( d e v3 v4 ) ( e d ) *> ( d e v4 ) ( v1 e d ) *> ( d e ) ( v1 v2 e d ) *> ( d ) ( v1 v2 v3 e d ) *> *> where d and e denote diagonal and off-diagonal elements of T, and vi *> denotes an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZHETRD( UPLO, N, A, LDA, D, E, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY, UPPER INTEGER I, IINFO, IWS, J, KK, LDWORK, LWKOPT, NB, $ NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZHER2K, ZHETD2, ZLATRD * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) LQUERY = ( LWORK.EQ.-1 ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LWORK.LT.1 .AND. .NOT.LQUERY ) THEN INFO = -9 END IF * IF( INFO.EQ.0 ) THEN * * Determine the block size. * NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) LWKOPT = N*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHETRD', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NX = N IWS = 1 IF( NB.GT.1 .AND. NB.LT.N ) THEN * * Determine when to cross over from blocked to unblocked code * (last block is always handled by unblocked code). * NX = MAX( NB, ILAENV( 3, 'ZHETRD', UPLO, N, -1, -1, -1 ) ) IF( NX.LT.N ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: determine the * minimum value of NB, and reduce NB or force use of * unblocked code by setting NX = N. * NB = MAX( LWORK / LDWORK, 1 ) NBMIN = ILAENV( 2, 'ZHETRD', UPLO, N, -1, -1, -1 ) IF( NB.LT.NBMIN ) $ NX = N END IF ELSE NX = N END IF ELSE NB = 1 END IF * IF( UPPER ) THEN * * Reduce the upper triangle of A. * Columns 1:kk are handled by the unblocked method. * KK = N - ( ( N-NX+NB-1 ) / NB )*NB DO 20 I = N - NB + 1, KK + 1, -NB * * Reduce columns i:i+nb-1 to tridiagonal form and form the * matrix W which is needed to update the unreduced part of * the matrix * CALL ZLATRD( UPLO, I+NB-1, NB, A, LDA, E, TAU, WORK, $ LDWORK ) * * Update the unreduced submatrix A(1:i-1,1:i-1), using an * update of the form: A := A - V*W**H - W*V**H * CALL ZHER2K( UPLO, 'No transpose', I-1, NB, -CONE, $ A( 1, I ), LDA, WORK, LDWORK, ONE, A, LDA ) * * Copy superdiagonal elements back into A, and diagonal * elements into D * DO 10 J = I, I + NB - 1 A( J-1, J ) = E( J-1 ) D( J ) = A( J, J ) 10 CONTINUE 20 CONTINUE * * Use unblocked code to reduce the last or only block * CALL ZHETD2( UPLO, KK, A, LDA, D, E, TAU, IINFO ) ELSE * * Reduce the lower triangle of A * DO 40 I = 1, N - NX, NB * * Reduce columns i:i+nb-1 to tridiagonal form and form the * matrix W which is needed to update the unreduced part of * the matrix * CALL ZLATRD( UPLO, N-I+1, NB, A( I, I ), LDA, E( I ), $ TAU( I ), WORK, LDWORK ) * * Update the unreduced submatrix A(i+nb:n,i+nb:n), using * an update of the form: A := A - V*W**H - W*V**H * CALL ZHER2K( UPLO, 'No transpose', N-I-NB+1, NB, -CONE, $ A( I+NB, I ), LDA, WORK( NB+1 ), LDWORK, ONE, $ A( I+NB, I+NB ), LDA ) * * Copy subdiagonal elements back into A, and diagonal * elements into D * DO 30 J = I, I + NB - 1 A( J+1, J ) = E( J ) D( J ) = A( J, J ) 30 CONTINUE 40 CONTINUE * * Use unblocked code to reduce the last or only block * CALL ZHETD2( UPLO, N-I+1, A( I, I ), LDA, D( I ), E( I ), $ TAU( I ), IINFO ) END IF * WORK( 1 ) = LWKOPT RETURN * * End of ZHETRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zstedc.f0000644000000000000000000000013214061636515015320 xustar0030 mtime=1623670093.231104055 30 atime=1623670093.230104056 30 ctime=1623670093.231104055 elk-7.2.42/src/LAPACK/zstedc.f0000644002504400250440000003732414061636515017366 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZSTEDC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZSTEDC + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZSTEDC( COMPZ, N, D, E, Z, LDZ, WORK, LWORK, RWORK, * LRWORK, IWORK, LIWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER COMPZ * INTEGER INFO, LDZ, LIWORK, LRWORK, LWORK, N * .. * .. Array Arguments .. * INTEGER IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), RWORK( * ) * COMPLEX*16 WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZSTEDC computes all eigenvalues and, optionally, eigenvectors of a *> symmetric tridiagonal matrix using the divide and conquer method. *> The eigenvectors of a full or band complex Hermitian matrix can also *> be found if ZHETRD or ZHPTRD or ZHBTRD has been used to reduce this *> matrix to tridiagonal form. *> *> This code makes very mild assumptions about floating point *> arithmetic. It will work on machines with a guard digit in *> add/subtract, or on those binary machines without guard digits *> which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. *> It could conceivably fail on hexadecimal or decimal machines *> without guard digits, but we know of none. See DLAED3 for details. *> \endverbatim * * Arguments: * ========== * *> \param[in] COMPZ *> \verbatim *> COMPZ is CHARACTER*1 *> = 'N': Compute eigenvalues only. *> = 'I': Compute eigenvectors of tridiagonal matrix also. *> = 'V': Compute eigenvectors of original Hermitian matrix *> also. On entry, Z contains the unitary matrix used *> to reduce the original matrix to tridiagonal form. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the diagonal elements of the tridiagonal matrix. *> On exit, if INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the subdiagonal elements of the tridiagonal matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,N) *> On entry, if COMPZ = 'V', then Z contains the unitary *> matrix used in the reduction to tridiagonal form. *> On exit, if INFO = 0, then if COMPZ = 'V', Z contains the *> orthonormal eigenvectors of the original Hermitian matrix, *> and if COMPZ = 'I', Z contains the orthonormal eigenvectors *> of the symmetric tridiagonal matrix. *> If COMPZ = 'N', then Z is not referenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1. *> If eigenvectors are desired, then LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If COMPZ = 'N' or 'I', or N <= 1, LWORK must be at least 1. *> If COMPZ = 'V' and N > 1, LWORK must be at least N*N. *> Note that for COMPZ = 'V', then if N is less than or *> equal to the minimum divide size, usually 25, then LWORK need *> only be 1. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal sizes of the WORK, RWORK and *> IWORK arrays, returns these values as the first entries of *> the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (MAX(1,LRWORK)) *> On exit, if INFO = 0, RWORK(1) returns the optimal LRWORK. *> \endverbatim *> *> \param[in] LRWORK *> \verbatim *> LRWORK is INTEGER *> The dimension of the array RWORK. *> If COMPZ = 'N' or N <= 1, LRWORK must be at least 1. *> If COMPZ = 'V' and N > 1, LRWORK must be at least *> 1 + 3*N + 2*N*lg N + 4*N**2 , *> where lg( N ) = smallest integer k such *> that 2**k >= N. *> If COMPZ = 'I' and N > 1, LRWORK must be at least *> 1 + 4*N + 2*N**2 . *> Note that for COMPZ = 'I' or 'V', then if N is less than or *> equal to the minimum divide size, usually 25, then LRWORK *> need only be max(1,2*(N-1)). *> *> If LRWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal sizes of the WORK, RWORK *> and IWORK arrays, returns these values as the first entries *> of the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (MAX(1,LIWORK)) *> On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK. *> \endverbatim *> *> \param[in] LIWORK *> \verbatim *> LIWORK is INTEGER *> The dimension of the array IWORK. *> If COMPZ = 'N' or N <= 1, LIWORK must be at least 1. *> If COMPZ = 'V' or N > 1, LIWORK must be at least *> 6 + 6*N + 5*N*lg N. *> If COMPZ = 'I' or N > 1, LIWORK must be at least *> 3 + 5*N . *> Note that for COMPZ = 'I' or 'V', then if N is less than or *> equal to the minimum divide size, usually 25, then LIWORK *> need only be 1. *> *> If LIWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal sizes of the WORK, RWORK *> and IWORK arrays, returns these values as the first entries *> of the WORK, RWORK and IWORK arrays, and no error message *> related to LWORK or LRWORK or LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: The algorithm failed to compute an eigenvalue while *> working on the submatrix lying in rows and columns *> INFO/(N+1) through mod(INFO,N+1). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16OTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE ZSTEDC( COMPZ, N, D, E, Z, LDZ, WORK, LWORK, RWORK, $ LRWORK, IWORK, LIWORK, INFO ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. CHARACTER COMPZ INTEGER INFO, LDZ, LIWORK, LRWORK, LWORK, N * .. * .. Array Arguments .. INTEGER IWORK( * ) DOUBLE PRECISION D( * ), E( * ), RWORK( * ) COMPLEX*16 WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0 ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER FINISH, I, ICOMPZ, II, J, K, LGN, LIWMIN, LL, $ LRWMIN, LWMIN, M, SMLSIZ, START DOUBLE PRECISION EPS, ORGNRM, P, TINY * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, DLANST EXTERNAL LSAME, ILAENV, DLAMCH, DLANST * .. * .. External Subroutines .. EXTERNAL DLASCL, DLASET, DSTEDC, DSTEQR, DSTERF, XERBLA, $ ZLACPY, ZLACRM, ZLAED0, ZSTEQR, ZSWAP * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, INT, LOG, MAX, MOD, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 LQUERY = ( LWORK.EQ.-1 .OR. LRWORK.EQ.-1 .OR. LIWORK.EQ.-1 ) * IF( LSAME( COMPZ, 'N' ) ) THEN ICOMPZ = 0 ELSE IF( LSAME( COMPZ, 'V' ) ) THEN ICOMPZ = 1 ELSE IF( LSAME( COMPZ, 'I' ) ) THEN ICOMPZ = 2 ELSE ICOMPZ = -1 END IF IF( ICOMPZ.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( ( LDZ.LT.1 ) .OR. $ ( ICOMPZ.GT.0 .AND. LDZ.LT.MAX( 1, N ) ) ) THEN INFO = -6 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * SMLSIZ = ILAENV( 9, 'ZSTEDC', ' ', 0, 0, 0, 0 ) IF( N.LE.1 .OR. ICOMPZ.EQ.0 ) THEN LWMIN = 1 LIWMIN = 1 LRWMIN = 1 ELSE IF( N.LE.SMLSIZ ) THEN LWMIN = 1 LIWMIN = 1 LRWMIN = 2*( N - 1 ) ELSE IF( ICOMPZ.EQ.1 ) THEN LGN = INT( LOG( DBLE( N ) ) / LOG( TWO ) ) IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IF( 2**LGN.LT.N ) $ LGN = LGN + 1 LWMIN = N*N LRWMIN = 1 + 3*N + 2*N*LGN + 4*N**2 LIWMIN = 6 + 6*N + 5*N*LGN ELSE IF( ICOMPZ.EQ.2 ) THEN LWMIN = 1 LRWMIN = 1 + 4*N + 2*N**2 LIWMIN = 3 + 5*N END IF WORK( 1 ) = LWMIN RWORK( 1 ) = LRWMIN IWORK( 1 ) = LIWMIN * IF( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) THEN INFO = -8 ELSE IF( LRWORK.LT.LRWMIN .AND. .NOT.LQUERY ) THEN INFO = -10 ELSE IF( LIWORK.LT.LIWMIN .AND. .NOT.LQUERY ) THEN INFO = -12 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZSTEDC', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN IF( N.EQ.1 ) THEN IF( ICOMPZ.NE.0 ) $ Z( 1, 1 ) = ONE RETURN END IF * * If the following conditional clause is removed, then the routine * will use the Divide and Conquer routine to compute only the * eigenvalues, which requires (3N + 3N**2) real workspace and * (2 + 5N + 2N lg(N)) integer workspace. * Since on many architectures DSTERF is much faster than any other * algorithm for finding eigenvalues only, it is used here * as the default. If the conditional clause is removed, then * information on the size of workspace needs to be changed. * * If COMPZ = 'N', use DSTERF to compute the eigenvalues. * IF( ICOMPZ.EQ.0 ) THEN CALL DSTERF( N, D, E, INFO ) GO TO 70 END IF * * If N is smaller than the minimum divide size (SMLSIZ+1), then * solve the problem with another solver. * IF( N.LE.SMLSIZ ) THEN * CALL ZSTEQR( COMPZ, N, D, E, Z, LDZ, RWORK, INFO ) * ELSE * * If COMPZ = 'I', we simply call DSTEDC instead. * IF( ICOMPZ.EQ.2 ) THEN CALL DLASET( 'Full', N, N, ZERO, ONE, RWORK, N ) LL = N*N + 1 CALL DSTEDC( 'I', N, D, E, RWORK, N, $ RWORK( LL ), LRWORK-LL+1, IWORK, LIWORK, INFO ) DO 20 J = 1, N DO 10 I = 1, N Z( I, J ) = RWORK( ( J-1 )*N+I ) 10 CONTINUE 20 CONTINUE GO TO 70 END IF * * From now on, only option left to be handled is COMPZ = 'V', * i.e. ICOMPZ = 1. * * Scale. * ORGNRM = DLANST( 'M', N, D, E ) IF( ORGNRM.EQ.ZERO ) $ GO TO 70 * EPS = DLAMCH( 'Epsilon' ) * START = 1 * * while ( START <= N ) * 30 CONTINUE IF( START.LE.N ) THEN * * Let FINISH be the position of the next subdiagonal entry * such that E( FINISH ) <= TINY or FINISH = N if no such * subdiagonal exists. The matrix identified by the elements * between START and FINISH constitutes an independent * sub-problem. * FINISH = START 40 CONTINUE IF( FINISH.LT.N ) THEN TINY = EPS*SQRT( ABS( D( FINISH ) ) )* $ SQRT( ABS( D( FINISH+1 ) ) ) IF( ABS( E( FINISH ) ).GT.TINY ) THEN FINISH = FINISH + 1 GO TO 40 END IF END IF * * (Sub) Problem determined. Compute its size and solve it. * M = FINISH - START + 1 IF( M.GT.SMLSIZ ) THEN * * Scale. * ORGNRM = DLANST( 'M', M, D( START ), E( START ) ) CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, M, 1, D( START ), M, $ INFO ) CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, M-1, 1, E( START ), $ M-1, INFO ) * CALL ZLAED0( N, M, D( START ), E( START ), Z( 1, START ), $ LDZ, WORK, N, RWORK, IWORK, INFO ) IF( INFO.GT.0 ) THEN INFO = ( INFO / ( M+1 )+START-1 )*( N+1 ) + $ MOD( INFO, ( M+1 ) ) + START - 1 GO TO 70 END IF * * Scale back. * CALL DLASCL( 'G', 0, 0, ONE, ORGNRM, M, 1, D( START ), M, $ INFO ) * ELSE CALL DSTEQR( 'I', M, D( START ), E( START ), RWORK, M, $ RWORK( M*M+1 ), INFO ) CALL ZLACRM( N, M, Z( 1, START ), LDZ, RWORK, M, WORK, N, $ RWORK( M*M+1 ) ) CALL ZLACPY( 'A', N, M, WORK, N, Z( 1, START ), LDZ ) IF( INFO.GT.0 ) THEN INFO = START*( N+1 ) + FINISH GO TO 70 END IF END IF * START = FINISH + 1 GO TO 30 END IF * * endwhile * * * Use Selection Sort to minimize swaps of eigenvectors * DO 60 II = 2, N I = II - 1 K = I P = D( I ) DO 50 J = II, N IF( D( J ).LT.P ) THEN K = J P = D( J ) END IF 50 CONTINUE IF( K.NE.I ) THEN D( K ) = D( I ) D( I ) = P CALL ZSWAP( N, Z( 1, I ), 1, Z( 1, K ), 1 ) END IF 60 CONTINUE END IF * 70 CONTINUE WORK( 1 ) = LWMIN RWORK( 1 ) = LRWMIN IWORK( 1 ) = LIWMIN * RETURN * * End of ZSTEDC * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmtr.f0000644000000000000000000000013214061636515015363 xustar0030 mtime=1623670093.233104053 30 atime=1623670093.232104054 30 ctime=1623670093.233104053 elk-7.2.42/src/LAPACK/zunmtr.f0000644002504400250440000002112314061636515017417 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS, UPLO * INTEGER INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNMTR overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix of order nq, with nq = m if *> SIDE = 'L' and nq = n if SIDE = 'R'. Q is defined as the product of *> nq-1 elementary reflectors, as returned by ZHETRD: *> *> if UPLO = 'U', Q = H(nq-1) . . . H(2) H(1); *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(nq-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A contains elementary reflectors *> from ZHETRD; *> = 'L': Lower triangle of A contains elementary reflectors *> from ZHETRD. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'C': Conjugate transpose, apply Q**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension *> (LDA,M) if SIDE = 'L' *> (LDA,N) if SIDE = 'R' *> The vectors which define the elementary reflectors, as *> returned by ZHETRD. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> LDA >= max(1,M) if SIDE = 'L'; LDA >= max(1,N) if SIDE = 'R'. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZHETRD. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For optimum performance LWORK >= N*NB if SIDE = 'L', and *> LWORK >=M*NB if SIDE = 'R', where NB is the optimal *> blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS, UPLO INTEGER INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL LEFT, LQUERY, UPPER INTEGER I1, I2, IINFO, LWKOPT, MI, NB, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNMQL, ZUNMQR * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) UPPER = LSAME( UPLO, 'U' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( .NOT.LSAME( TRANS, 'N' ) .AND. .NOT.LSAME( TRANS, 'C' ) ) $ THEN INFO = -3 ELSE IF( M.LT.0 ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN IF( UPPER ) THEN IF( LEFT ) THEN NB = ILAENV( 1, 'ZUNMQL', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'ZUNMQL', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF ELSE IF( LEFT ) THEN NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF END IF LWKOPT = MAX( 1, NW )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMTR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. NQ.EQ.1 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( LEFT ) THEN MI = M - 1 NI = N ELSE MI = M NI = N - 1 END IF * IF( UPPER ) THEN * * Q was determined by a call to ZHETRD with UPLO = 'U' * CALL ZUNMQL( SIDE, TRANS, MI, NI, NQ-1, A( 1, 2 ), LDA, TAU, C, $ LDC, WORK, LWORK, IINFO ) ELSE * * Q was determined by a call to ZHETRD with UPLO = 'L' * IF( LEFT ) THEN I1 = 2 I2 = 1 ELSE I1 = 1 I2 = 2 END IF CALL ZUNMQR( SIDE, TRANS, MI, NI, NQ-1, A( 2, 1 ), LDA, TAU, $ C( I1, I2 ), LDC, WORK, LWORK, IINFO ) END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNMTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zungtr.f0000644000000000000000000000013214061636515015355 xustar0030 mtime=1623670093.235104051 30 atime=1623670093.234104052 30 ctime=1623670093.235104051 elk-7.2.42/src/LAPACK/zungtr.f0000644002504400250440000001564114061636515017421 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGTR( UPLO, N, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGTR generates a complex unitary matrix Q which is defined as the *> product of n-1 elementary reflectors of order N, as returned by *> ZHETRD: *> *> if UPLO = 'U', Q = H(n-1) . . . H(2) H(1), *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(n-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A contains elementary reflectors *> from ZHETRD; *> = 'L': Lower triangle of A contains elementary reflectors *> from ZHETRD. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix Q. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the vectors which define the elementary reflectors, *> as returned by ZHETRD. *> On exit, the N-by-N unitary matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= N. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZHETRD. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= N-1. *> For optimum performance LWORK >= (N-1)*NB, where NB is *> the optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGTR( UPLO, N, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, LWORK, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY, UPPER INTEGER I, IINFO, J, LWKOPT, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNGQL, ZUNGQR * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LWORK.LT.MAX( 1, N-1 ) .AND. .NOT.LQUERY ) THEN INFO = -7 END IF * IF( INFO.EQ.0 ) THEN IF( UPPER ) THEN NB = ILAENV( 1, 'ZUNGQL', ' ', N-1, N-1, N-1, -1 ) ELSE NB = ILAENV( 1, 'ZUNGQR', ' ', N-1, N-1, N-1, -1 ) END IF LWKOPT = MAX( 1, N-1 )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGTR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( UPPER ) THEN * * Q was determined by a call to ZHETRD with UPLO = 'U' * * Shift the vectors which define the elementary reflectors one * column to the left, and set the last row and column of Q to * those of the unit matrix * DO 20 J = 1, N - 1 DO 10 I = 1, J - 1 A( I, J ) = A( I, J+1 ) 10 CONTINUE A( N, J ) = ZERO 20 CONTINUE DO 30 I = 1, N - 1 A( I, N ) = ZERO 30 CONTINUE A( N, N ) = ONE * * Generate Q(1:n-1,1:n-1) * CALL ZUNGQL( N-1, N-1, N-1, A, LDA, TAU, WORK, LWORK, IINFO ) * ELSE * * Q was determined by a call to ZHETRD with UPLO = 'L'. * * Shift the vectors which define the elementary reflectors one * column to the right, and set the first row and column of Q to * those of the unit matrix * DO 50 J = N, 2, -1 A( 1, J ) = ZERO DO 40 I = J + 1, N A( I, J ) = A( I, J-1 ) 40 CONTINUE 50 CONTINUE A( 1, 1 ) = ONE DO 60 I = 2, N A( I, 1 ) = ZERO 60 CONTINUE IF( N.GT.1 ) THEN * * Generate Q(2:n,2:n) * CALL ZUNGQR( N-1, N-1, N-1, A( 2, 2 ), LDA, TAU, WORK, $ LWORK, IINFO ) END IF END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNGTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zsteqr.f0000644000000000000000000000013114061636515015353 xustar0030 mtime=1623670093.237104049 29 atime=1623670093.23610405 30 ctime=1623670093.237104049 elk-7.2.42/src/LAPACK/zsteqr.f0000644002504400250440000003661014061636515017417 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZSTEQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZSTEQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZSTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER COMPZ * INTEGER INFO, LDZ, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ), WORK( * ) * COMPLEX*16 Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZSTEQR computes all eigenvalues and, optionally, eigenvectors of a *> symmetric tridiagonal matrix using the implicit QL or QR method. *> The eigenvectors of a full or band complex Hermitian matrix can also *> be found if ZHETRD or ZHPTRD or ZHBTRD has been used to reduce this *> matrix to tridiagonal form. *> \endverbatim * * Arguments: * ========== * *> \param[in] COMPZ *> \verbatim *> COMPZ is CHARACTER*1 *> = 'N': Compute eigenvalues only. *> = 'V': Compute eigenvalues and eigenvectors of the original *> Hermitian matrix. On entry, Z must contain the *> unitary matrix used to reduce the original matrix *> to tridiagonal form. *> = 'I': Compute eigenvalues and eigenvectors of the *> tridiagonal matrix. Z is initialized to the identity *> matrix. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the diagonal elements of the tridiagonal matrix. *> On exit, if INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the (n-1) subdiagonal elements of the tridiagonal *> matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, N) *> On entry, if COMPZ = 'V', then Z contains the unitary *> matrix used in the reduction to tridiagonal form. *> On exit, if INFO = 0, then if COMPZ = 'V', Z contains the *> orthonormal eigenvectors of the original Hermitian matrix, *> and if COMPZ = 'I', Z contains the orthonormal eigenvectors *> of the symmetric tridiagonal matrix. *> If COMPZ = 'N', then Z is not referenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> eigenvectors are desired, then LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (max(1,2*N-2)) *> If COMPZ = 'N', then WORK is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: the algorithm has failed to find all the eigenvalues in *> a total of 30*N iterations; if INFO = i, then i *> elements of E have not converged to zero; on exit, D *> and E contain the elements of a symmetric tridiagonal *> matrix which is unitarily similar to the original *> matrix. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZSTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER COMPZ INTEGER INFO, LDZ, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ), WORK( * ) COMPLEX*16 Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO, THREE PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ THREE = 3.0D0 ) COMPLEX*16 CZERO, CONE PARAMETER ( CZERO = ( 0.0D0, 0.0D0 ), $ CONE = ( 1.0D0, 0.0D0 ) ) INTEGER MAXIT PARAMETER ( MAXIT = 30 ) * .. * .. Local Scalars .. INTEGER I, ICOMPZ, II, ISCALE, J, JTOT, K, L, L1, LEND, $ LENDM1, LENDP1, LENDSV, LM1, LSV, M, MM, MM1, $ NM1, NMAXIT DOUBLE PRECISION ANORM, B, C, EPS, EPS2, F, G, P, R, RT1, RT2, $ S, SAFMAX, SAFMIN, SSFMAX, SSFMIN, TST * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DLAMCH, DLANST, DLAPY2 EXTERNAL LSAME, DLAMCH, DLANST, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DLAE2, DLAEV2, DLARTG, DLASCL, DLASRT, XERBLA, $ ZLASET, ZLASR, ZSWAP * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( LSAME( COMPZ, 'N' ) ) THEN ICOMPZ = 0 ELSE IF( LSAME( COMPZ, 'V' ) ) THEN ICOMPZ = 1 ELSE IF( LSAME( COMPZ, 'I' ) ) THEN ICOMPZ = 2 ELSE ICOMPZ = -1 END IF IF( ICOMPZ.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( ( LDZ.LT.1 ) .OR. ( ICOMPZ.GT.0 .AND. LDZ.LT.MAX( 1, $ N ) ) ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZSTEQR', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( N.EQ.1 ) THEN IF( ICOMPZ.EQ.2 ) $ Z( 1, 1 ) = CONE RETURN END IF * * Determine the unit roundoff and over/underflow thresholds. * EPS = DLAMCH( 'E' ) EPS2 = EPS**2 SAFMIN = DLAMCH( 'S' ) SAFMAX = ONE / SAFMIN SSFMAX = SQRT( SAFMAX ) / THREE SSFMIN = SQRT( SAFMIN ) / EPS2 * * Compute the eigenvalues and eigenvectors of the tridiagonal * matrix. * IF( ICOMPZ.EQ.2 ) $ CALL ZLASET( 'Full', N, N, CZERO, CONE, Z, LDZ ) * NMAXIT = N*MAXIT JTOT = 0 * * Determine where the matrix splits and choose QL or QR iteration * for each block, according to whether top or bottom diagonal * element is smaller. * L1 = 1 NM1 = N - 1 * 10 CONTINUE IF( L1.GT.N ) $ GO TO 160 IF( L1.GT.1 ) $ E( L1-1 ) = ZERO IF( L1.LE.NM1 ) THEN DO 20 M = L1, NM1 TST = ABS( E( M ) ) IF( TST.EQ.ZERO ) $ GO TO 30 IF( TST.LE.( SQRT( ABS( D( M ) ) )*SQRT( ABS( D( M+ $ 1 ) ) ) )*EPS ) THEN E( M ) = ZERO GO TO 30 END IF 20 CONTINUE END IF M = N * 30 CONTINUE L = L1 LSV = L LEND = M LENDSV = LEND L1 = M + 1 IF( LEND.EQ.L ) $ GO TO 10 * * Scale submatrix in rows and columns L to LEND * ANORM = DLANST( 'I', LEND-L+1, D( L ), E( L ) ) ISCALE = 0 IF( ANORM.EQ.ZERO ) $ GO TO 10 IF( ANORM.GT.SSFMAX ) THEN ISCALE = 1 CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMAX, LEND-L, 1, E( L ), N, $ INFO ) ELSE IF( ANORM.LT.SSFMIN ) THEN ISCALE = 2 CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L+1, 1, D( L ), N, $ INFO ) CALL DLASCL( 'G', 0, 0, ANORM, SSFMIN, LEND-L, 1, E( L ), N, $ INFO ) END IF * * Choose between QL and QR iteration * IF( ABS( D( LEND ) ).LT.ABS( D( L ) ) ) THEN LEND = LSV L = LENDSV END IF * IF( LEND.GT.L ) THEN * * QL Iteration * * Look for small subdiagonal element. * 40 CONTINUE IF( L.NE.LEND ) THEN LENDM1 = LEND - 1 DO 50 M = L, LENDM1 TST = ABS( E( M ) )**2 IF( TST.LE.( EPS2*ABS( D( M ) ) )*ABS( D( M+1 ) )+ $ SAFMIN )GO TO 60 50 CONTINUE END IF * M = LEND * 60 CONTINUE IF( M.LT.LEND ) $ E( M ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 80 * * If remaining matrix is 2-by-2, use DLAE2 or SLAEV2 * to compute its eigensystem. * IF( M.EQ.L+1 ) THEN IF( ICOMPZ.GT.0 ) THEN CALL DLAEV2( D( L ), E( L ), D( L+1 ), RT1, RT2, C, S ) WORK( L ) = C WORK( N-1+L ) = S CALL ZLASR( 'R', 'V', 'B', N, 2, WORK( L ), $ WORK( N-1+L ), Z( 1, L ), LDZ ) ELSE CALL DLAE2( D( L ), E( L ), D( L+1 ), RT1, RT2 ) END IF D( L ) = RT1 D( L+1 ) = RT2 E( L ) = ZERO L = L + 2 IF( L.LE.LEND ) $ GO TO 40 GO TO 140 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 140 JTOT = JTOT + 1 * * Form shift. * G = ( D( L+1 )-P ) / ( TWO*E( L ) ) R = DLAPY2( G, ONE ) G = D( M ) - P + ( E( L ) / ( G+SIGN( R, G ) ) ) * S = ONE C = ONE P = ZERO * * Inner loop * MM1 = M - 1 DO 70 I = MM1, L, -1 F = S*E( I ) B = C*E( I ) CALL DLARTG( G, F, C, S, R ) IF( I.NE.M-1 ) $ E( I+1 ) = R G = D( I+1 ) - P R = ( D( I )-G )*S + TWO*C*B P = S*R D( I+1 ) = G + P G = C*R - B * * If eigenvectors are desired, then save rotations. * IF( ICOMPZ.GT.0 ) THEN WORK( I ) = C WORK( N-1+I ) = -S END IF * 70 CONTINUE * * If eigenvectors are desired, then apply saved rotations. * IF( ICOMPZ.GT.0 ) THEN MM = M - L + 1 CALL ZLASR( 'R', 'V', 'B', N, MM, WORK( L ), WORK( N-1+L ), $ Z( 1, L ), LDZ ) END IF * D( L ) = D( L ) - P E( L ) = G GO TO 40 * * Eigenvalue found. * 80 CONTINUE D( L ) = P * L = L + 1 IF( L.LE.LEND ) $ GO TO 40 GO TO 140 * ELSE * * QR Iteration * * Look for small superdiagonal element. * 90 CONTINUE IF( L.NE.LEND ) THEN LENDP1 = LEND + 1 DO 100 M = L, LENDP1, -1 TST = ABS( E( M-1 ) )**2 IF( TST.LE.( EPS2*ABS( D( M ) ) )*ABS( D( M-1 ) )+ $ SAFMIN )GO TO 110 100 CONTINUE END IF * M = LEND * 110 CONTINUE IF( M.GT.LEND ) $ E( M-1 ) = ZERO P = D( L ) IF( M.EQ.L ) $ GO TO 130 * * If remaining matrix is 2-by-2, use DLAE2 or SLAEV2 * to compute its eigensystem. * IF( M.EQ.L-1 ) THEN IF( ICOMPZ.GT.0 ) THEN CALL DLAEV2( D( L-1 ), E( L-1 ), D( L ), RT1, RT2, C, S ) WORK( M ) = C WORK( N-1+M ) = S CALL ZLASR( 'R', 'V', 'F', N, 2, WORK( M ), $ WORK( N-1+M ), Z( 1, L-1 ), LDZ ) ELSE CALL DLAE2( D( L-1 ), E( L-1 ), D( L ), RT1, RT2 ) END IF D( L-1 ) = RT1 D( L ) = RT2 E( L-1 ) = ZERO L = L - 2 IF( L.GE.LEND ) $ GO TO 90 GO TO 140 END IF * IF( JTOT.EQ.NMAXIT ) $ GO TO 140 JTOT = JTOT + 1 * * Form shift. * G = ( D( L-1 )-P ) / ( TWO*E( L-1 ) ) R = DLAPY2( G, ONE ) G = D( M ) - P + ( E( L-1 ) / ( G+SIGN( R, G ) ) ) * S = ONE C = ONE P = ZERO * * Inner loop * LM1 = L - 1 DO 120 I = M, LM1 F = S*E( I ) B = C*E( I ) CALL DLARTG( G, F, C, S, R ) IF( I.NE.M ) $ E( I-1 ) = R G = D( I ) - P R = ( D( I+1 )-G )*S + TWO*C*B P = S*R D( I ) = G + P G = C*R - B * * If eigenvectors are desired, then save rotations. * IF( ICOMPZ.GT.0 ) THEN WORK( I ) = C WORK( N-1+I ) = S END IF * 120 CONTINUE * * If eigenvectors are desired, then apply saved rotations. * IF( ICOMPZ.GT.0 ) THEN MM = L - M + 1 CALL ZLASR( 'R', 'V', 'F', N, MM, WORK( M ), WORK( N-1+M ), $ Z( 1, M ), LDZ ) END IF * D( L ) = D( L ) - P E( LM1 ) = G GO TO 90 * * Eigenvalue found. * 130 CONTINUE D( L ) = P * L = L - 1 IF( L.GE.LEND ) $ GO TO 90 GO TO 140 * END IF * * Undo scaling if necessary * 140 CONTINUE IF( ISCALE.EQ.1 ) THEN CALL DLASCL( 'G', 0, 0, SSFMAX, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) CALL DLASCL( 'G', 0, 0, SSFMAX, ANORM, LENDSV-LSV, 1, E( LSV ), $ N, INFO ) ELSE IF( ISCALE.EQ.2 ) THEN CALL DLASCL( 'G', 0, 0, SSFMIN, ANORM, LENDSV-LSV+1, 1, $ D( LSV ), N, INFO ) CALL DLASCL( 'G', 0, 0, SSFMIN, ANORM, LENDSV-LSV, 1, E( LSV ), $ N, INFO ) END IF * * Check for no convergence to an eigenvalue after a total * of N*MAXIT iterations. * IF( JTOT.EQ.NMAXIT ) THEN DO 150 I = 1, N - 1 IF( E( I ).NE.ZERO ) $ INFO = INFO + 1 150 CONTINUE RETURN END IF GO TO 10 * * Order eigenvalues and eigenvectors. * 160 CONTINUE IF( ICOMPZ.EQ.0 ) THEN * * Use Quick Sort * CALL DLASRT( 'I', N, D, INFO ) * ELSE * * Use Selection Sort to minimize swaps of eigenvectors * DO 180 II = 2, N I = II - 1 K = I P = D( I ) DO 170 J = II, N IF( D( J ).LT.P ) THEN K = J P = D( J ) END IF 170 CONTINUE IF( K.NE.I ) THEN D( K ) = D( I ) D( I ) = P CALL ZSWAP( N, Z( 1, I ), 1, Z( 1, K ), 1 ) END IF 180 CONTINUE END IF RETURN * * End of ZSTEQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zpotrf.f0000644000000000000000000000013214061636515015350 xustar0030 mtime=1623670093.239104048 30 atime=1623670093.238104048 30 ctime=1623670093.239104048 elk-7.2.42/src/LAPACK/zpotrf.f0000644002504400250440000001632514061636515017414 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZPOTRF * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZPOTRF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZPOTRF( UPLO, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZPOTRF computes the Cholesky factorization of a complex Hermitian *> positive definite matrix A. *> *> The factorization has the form *> A = U**H * U, if UPLO = 'U', or *> A = L * L**H, if UPLO = 'L', *> where U is an upper triangular matrix and L is lower triangular. *> *> This is the block version of the algorithm, calling Level 3 BLAS. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the factor U or L from the Cholesky *> factorization A = U**H *U or A = L*L**H. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the leading minor of order i is not *> positive definite, and the factorization could not be *> completed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16POcomputational * * ===================================================================== SUBROUTINE ZPOTRF( UPLO, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE COMPLEX*16 CONE PARAMETER ( ONE = 1.0D+0, CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER J, JB, NB * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZGEMM, ZHERK, ZPOTRF2, ZTRSM * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZPOTRF', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'ZPOTRF', UPLO, N, -1, -1, -1 ) IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code. * CALL ZPOTRF2( UPLO, N, A, LDA, INFO ) ELSE * * Use blocked code. * IF( UPPER ) THEN * * Compute the Cholesky factorization A = U**H *U. * DO 10 J = 1, N, NB * * Update and factorize the current diagonal block and test * for non-positive-definiteness. * JB = MIN( NB, N-J+1 ) CALL ZHERK( 'Upper', 'Conjugate transpose', JB, J-1, $ -ONE, A( 1, J ), LDA, ONE, A( J, J ), LDA ) CALL ZPOTRF2( 'Upper', JB, A( J, J ), LDA, INFO ) IF( INFO.NE.0 ) $ GO TO 30 IF( J+JB.LE.N ) THEN * * Compute the current block row. * CALL ZGEMM( 'Conjugate transpose', 'No transpose', JB, $ N-J-JB+1, J-1, -CONE, A( 1, J ), LDA, $ A( 1, J+JB ), LDA, CONE, A( J, J+JB ), $ LDA ) CALL ZTRSM( 'Left', 'Upper', 'Conjugate transpose', $ 'Non-unit', JB, N-J-JB+1, CONE, A( J, J ), $ LDA, A( J, J+JB ), LDA ) END IF 10 CONTINUE * ELSE * * Compute the Cholesky factorization A = L*L**H. * DO 20 J = 1, N, NB * * Update and factorize the current diagonal block and test * for non-positive-definiteness. * JB = MIN( NB, N-J+1 ) CALL ZHERK( 'Lower', 'No transpose', JB, J-1, -ONE, $ A( J, 1 ), LDA, ONE, A( J, J ), LDA ) CALL ZPOTRF2( 'Lower', JB, A( J, J ), LDA, INFO ) IF( INFO.NE.0 ) $ GO TO 30 IF( J+JB.LE.N ) THEN * * Compute the current block column. * CALL ZGEMM( 'No transpose', 'Conjugate transpose', $ N-J-JB+1, JB, J-1, -CONE, A( J+JB, 1 ), $ LDA, A( J, 1 ), LDA, CONE, A( J+JB, J ), $ LDA ) CALL ZTRSM( 'Right', 'Lower', 'Conjugate transpose', $ 'Non-unit', N-J-JB+1, JB, CONE, A( J, J ), $ LDA, A( J+JB, J ), LDA ) END IF 20 CONTINUE END IF END IF GO TO 40 * 30 CONTINUE INFO = INFO + J - 1 * 40 CONTINUE RETURN * * End of ZPOTRF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhegst.f0000644000000000000000000000013214061636515015330 xustar0030 mtime=1623670093.241104046 30 atime=1623670093.240104047 30 ctime=1623670093.241104046 elk-7.2.42/src/LAPACK/zhegst.f0000644002504400250440000002632314061636515017373 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEGST * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEGST + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEGST reduces a complex Hermitian-definite generalized *> eigenproblem to standard form. *> *> If ITYPE = 1, the problem is A*x = lambda*B*x, *> and A is overwritten by inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H) *> *> If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or *> B*A*x = lambda*x, and A is overwritten by U*A*U**H or L**H*A*L. *> *> B must have been previously factorized as U**H*U or L*L**H by ZPOTRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> = 1: compute inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H); *> = 2 or 3: compute U*A*U**H or L**H*A*L. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored and B is factored as *> U**H*U; *> = 'L': Lower triangle of A is stored and B is factored as *> L*L**H. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the transformed matrix, stored in the *> same format as A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB,N) *> The triangular factor from the Cholesky factorization of B, *> as returned by ZPOTRF. *> B is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEcomputational * * ===================================================================== SUBROUTINE ZHEGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) COMPLEX*16 CONE, HALF PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ), $ HALF = ( 0.5D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER K, KB, NB * .. * .. External Subroutines .. EXTERNAL XERBLA, ZHEGS2, ZHEMM, ZHER2K, ZTRMM, ZTRSM * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEGST', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine the block size for this environment. * NB = ILAENV( 1, 'ZHEGST', UPLO, N, -1, -1, -1 ) * IF( NB.LE.1 .OR. NB.GE.N ) THEN * * Use unblocked code * CALL ZHEGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) ELSE * * Use blocked code * IF( ITYPE.EQ.1 ) THEN IF( UPPER ) THEN * * Compute inv(U**H)*A*inv(U) * DO 10 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the upper triangle of A(k:n,k:n) * CALL ZHEGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) IF( K+KB.LE.N ) THEN CALL ZTRSM( 'Left', UPLO, 'Conjugate transpose', $ 'Non-unit', KB, N-K-KB+1, CONE, $ B( K, K ), LDB, A( K, K+KB ), LDA ) CALL ZHEMM( 'Left', UPLO, KB, N-K-KB+1, -HALF, $ A( K, K ), LDA, B( K, K+KB ), LDB, $ CONE, A( K, K+KB ), LDA ) CALL ZHER2K( UPLO, 'Conjugate transpose', N-K-KB+1, $ KB, -CONE, A( K, K+KB ), LDA, $ B( K, K+KB ), LDB, ONE, $ A( K+KB, K+KB ), LDA ) CALL ZHEMM( 'Left', UPLO, KB, N-K-KB+1, -HALF, $ A( K, K ), LDA, B( K, K+KB ), LDB, $ CONE, A( K, K+KB ), LDA ) CALL ZTRSM( 'Right', UPLO, 'No transpose', $ 'Non-unit', KB, N-K-KB+1, CONE, $ B( K+KB, K+KB ), LDB, A( K, K+KB ), $ LDA ) END IF 10 CONTINUE ELSE * * Compute inv(L)*A*inv(L**H) * DO 20 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the lower triangle of A(k:n,k:n) * CALL ZHEGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) IF( K+KB.LE.N ) THEN CALL ZTRSM( 'Right', UPLO, 'Conjugate transpose', $ 'Non-unit', N-K-KB+1, KB, CONE, $ B( K, K ), LDB, A( K+KB, K ), LDA ) CALL ZHEMM( 'Right', UPLO, N-K-KB+1, KB, -HALF, $ A( K, K ), LDA, B( K+KB, K ), LDB, $ CONE, A( K+KB, K ), LDA ) CALL ZHER2K( UPLO, 'No transpose', N-K-KB+1, KB, $ -CONE, A( K+KB, K ), LDA, $ B( K+KB, K ), LDB, ONE, $ A( K+KB, K+KB ), LDA ) CALL ZHEMM( 'Right', UPLO, N-K-KB+1, KB, -HALF, $ A( K, K ), LDA, B( K+KB, K ), LDB, $ CONE, A( K+KB, K ), LDA ) CALL ZTRSM( 'Left', UPLO, 'No transpose', $ 'Non-unit', N-K-KB+1, KB, CONE, $ B( K+KB, K+KB ), LDB, A( K+KB, K ), $ LDA ) END IF 20 CONTINUE END IF ELSE IF( UPPER ) THEN * * Compute U*A*U**H * DO 30 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the upper triangle of A(1:k+kb-1,1:k+kb-1) * CALL ZTRMM( 'Left', UPLO, 'No transpose', 'Non-unit', $ K-1, KB, CONE, B, LDB, A( 1, K ), LDA ) CALL ZHEMM( 'Right', UPLO, K-1, KB, HALF, A( K, K ), $ LDA, B( 1, K ), LDB, CONE, A( 1, K ), $ LDA ) CALL ZHER2K( UPLO, 'No transpose', K-1, KB, CONE, $ A( 1, K ), LDA, B( 1, K ), LDB, ONE, A, $ LDA ) CALL ZHEMM( 'Right', UPLO, K-1, KB, HALF, A( K, K ), $ LDA, B( 1, K ), LDB, CONE, A( 1, K ), $ LDA ) CALL ZTRMM( 'Right', UPLO, 'Conjugate transpose', $ 'Non-unit', K-1, KB, CONE, B( K, K ), LDB, $ A( 1, K ), LDA ) CALL ZHEGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) 30 CONTINUE ELSE * * Compute L**H*A*L * DO 40 K = 1, N, NB KB = MIN( N-K+1, NB ) * * Update the lower triangle of A(1:k+kb-1,1:k+kb-1) * CALL ZTRMM( 'Right', UPLO, 'No transpose', 'Non-unit', $ KB, K-1, CONE, B, LDB, A( K, 1 ), LDA ) CALL ZHEMM( 'Left', UPLO, KB, K-1, HALF, A( K, K ), $ LDA, B( K, 1 ), LDB, CONE, A( K, 1 ), $ LDA ) CALL ZHER2K( UPLO, 'Conjugate transpose', K-1, KB, $ CONE, A( K, 1 ), LDA, B( K, 1 ), LDB, $ ONE, A, LDA ) CALL ZHEMM( 'Left', UPLO, KB, K-1, HALF, A( K, K ), $ LDA, B( K, 1 ), LDB, CONE, A( K, 1 ), $ LDA ) CALL ZTRMM( 'Left', UPLO, 'Conjugate transpose', $ 'Non-unit', KB, K-1, CONE, B( K, K ), LDB, $ A( K, 1 ), LDA ) CALL ZHEGS2( ITYPE, UPLO, KB, A( K, K ), LDA, $ B( K, K ), LDB, INFO ) 40 CONTINUE END IF END IF END IF RETURN * * End of ZHEGST * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zheevx.f0000644000000000000000000000013214061636515015335 xustar0030 mtime=1623670093.243104044 30 atime=1623670093.242104045 30 ctime=1623670093.243104044 elk-7.2.42/src/LAPACK/zheevx.f0000644002504400250440000004334414061636515017402 0ustar00dewhurstdewhurst00000000000000*> \brief ZHEEVX computes the eigenvalues and, optionally, the left and/or right eigenvectors for HE matrices * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEEVX + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, * ABSTOL, M, W, Z, LDZ, WORK, LWORK, RWORK, * IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * CHARACTER JOBZ, RANGE, UPLO * INTEGER IL, INFO, IU, LDA, LDZ, LWORK, M, N * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IFAIL( * ), IWORK( * ) * DOUBLE PRECISION RWORK( * ), W( * ) * COMPLEX*16 A( LDA, * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEEVX computes selected eigenvalues and, optionally, eigenvectors *> of a complex Hermitian matrix A. Eigenvalues and eigenvectors can *> be selected by specifying either a range of values or a range of *> indices for the desired eigenvalues. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOBZ *> \verbatim *> JOBZ is CHARACTER*1 *> = 'N': Compute eigenvalues only; *> = 'V': Compute eigenvalues and eigenvectors. *> \endverbatim *> *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': all eigenvalues will be found. *> = 'V': all eigenvalues in the half-open interval (VL,VU] *> will be found. *> = 'I': the IL-th through IU-th eigenvalues will be found. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the *> leading N-by-N upper triangular part of A contains the *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. *> On exit, the lower triangle (if UPLO='L') or the upper *> triangle (if UPLO='U') of A, including the diagonal, is *> destroyed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute error tolerance for the eigenvalues. *> An approximate eigenvalue is accepted as converged *> when it is determined to lie in an interval [a,b] *> of width less than or equal to *> *> ABSTOL + EPS * max( |a|,|b| ) , *> *> where EPS is the machine precision. If ABSTOL is less than *> or equal to zero, then EPS*|T| will be used in its place, *> where |T| is the 1-norm of the tridiagonal matrix obtained *> by reducing A to tridiagonal form. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> If this routine returns with INFO>0, indicating that some *> eigenvectors did not converge, try setting ABSTOL to *> 2*DLAMCH('S'). *> *> See "Computing Small Singular Values of Bidiagonal Matrices *> with Guaranteed High Relative Accuracy," by Demmel and *> Kahan, LAPACK Working Note #3. *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The total number of eigenvalues found. 0 <= M <= N. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> On normal exit, the first M elements contain the selected *> eigenvalues in ascending order. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, max(1,M)) *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z *> contain the orthonormal eigenvectors of the matrix A *> corresponding to the selected eigenvalues, with the i-th *> column of Z holding the eigenvector associated with W(i). *> If an eigenvector fails to converge, then that column of Z *> contains the latest approximation to the eigenvector, and the *> index of the eigenvector is returned in IFAIL. *> If JOBZ = 'N', then Z is not referenced. *> Note: the user must ensure that at least max(1,M) columns are *> supplied in the array Z; if RANGE = 'V', the exact value of M *> is not known in advance and an upper bound must be used. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1, and if *> JOBZ = 'V', LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The length of the array WORK. LWORK >= 1, when N <= 1; *> otherwise 2*N. *> For optimal efficiency, LWORK >= (NB+1)*N, *> where NB is the max of the blocksize for ZHETRD and for *> ZUNMTR as returned by ILAENV. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (7*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (5*N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (N) *> If JOBZ = 'V', then if INFO = 0, the first M elements of *> IFAIL are zero. If INFO > 0, then IFAIL contains the *> indices of the eigenvectors that failed to converge. *> If JOBZ = 'N', then IFAIL is not referenced. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, then i eigenvectors failed to converge. *> Their indices are stored in array IFAIL. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16HEeigen * * ===================================================================== SUBROUTINE ZHEEVX( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, $ ABSTOL, M, W, Z, LDZ, WORK, LWORK, RWORK, $ IWORK, IFAIL, INFO ) * * -- LAPACK driver routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER JOBZ, RANGE, UPLO INTEGER IL, INFO, IU, LDA, LDZ, LWORK, M, N DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IFAIL( * ), IWORK( * ) DOUBLE PRECISION RWORK( * ), W( * ) COMPLEX*16 A( LDA, * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL ALLEIG, INDEIG, LOWER, LQUERY, TEST, VALEIG, $ WANTZ CHARACTER ORDER INTEGER I, IINFO, IMAX, INDD, INDE, INDEE, INDIBL, $ INDISP, INDIWK, INDRWK, INDTAU, INDWRK, ISCALE, $ ITMP1, J, JJ, LLWORK, LWKMIN, LWKOPT, NB, $ NSPLIT DOUBLE PRECISION ABSTLL, ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, $ SIGMA, SMLNUM, TMP1, VLL, VUU * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, ZLANHE EXTERNAL LSAME, ILAENV, DLAMCH, ZLANHE * .. * .. External Subroutines .. EXTERNAL DCOPY, DSCAL, DSTEBZ, DSTERF, XERBLA, ZDSCAL, $ ZHETRD, ZLACPY, ZSTEIN, ZSTEQR, ZSWAP, ZUNGTR, $ ZUNMTR * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * LOWER = LSAME( UPLO, 'L' ) WANTZ = LSAME( JOBZ, 'V' ) ALLEIG = LSAME( RANGE, 'A' ) VALEIG = LSAME( RANGE, 'V' ) INDEIG = LSAME( RANGE, 'I' ) LQUERY = ( LWORK.EQ.-1 ) * INFO = 0 IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN INFO = -1 ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN INFO = -2 ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( VALEIG ) THEN IF( N.GT.0 .AND. VU.LE.VL ) $ INFO = -8 ELSE IF( INDEIG ) THEN IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN INFO = -9 ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN INFO = -10 END IF END IF END IF IF( INFO.EQ.0 ) THEN IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.N ) ) THEN INFO = -15 END IF END IF * IF( INFO.EQ.0 ) THEN IF( N.LE.1 ) THEN LWKMIN = 1 WORK( 1 ) = LWKMIN ELSE LWKMIN = 2*N NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) NB = MAX( NB, ILAENV( 1, 'ZUNMTR', UPLO, N, -1, -1, -1 ) ) LWKOPT = MAX( 1, ( NB + 1 )*N ) WORK( 1 ) = LWKOPT END IF * IF( LWORK.LT.LWKMIN .AND. .NOT.LQUERY ) $ INFO = -17 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEEVX', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * M = 0 IF( N.EQ.0 ) THEN RETURN END IF * IF( N.EQ.1 ) THEN IF( ALLEIG .OR. INDEIG ) THEN M = 1 W( 1 ) = A( 1, 1 ) ELSE IF( VALEIG ) THEN IF( VL.LT.DBLE( A( 1, 1 ) ) .AND. VU.GE.DBLE( A( 1, 1 ) ) ) $ THEN M = 1 W( 1 ) = A( 1, 1 ) END IF END IF IF( WANTZ ) $ Z( 1, 1 ) = CONE RETURN END IF * * Get machine constants. * SAFMIN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Precision' ) SMLNUM = SAFMIN / EPS BIGNUM = ONE / SMLNUM RMIN = SQRT( SMLNUM ) RMAX = MIN( SQRT( BIGNUM ), ONE / SQRT( SQRT( SAFMIN ) ) ) * * Scale matrix to allowable range, if necessary. * ISCALE = 0 ABSTLL = ABSTOL IF( VALEIG ) THEN VLL = VL VUU = VU END IF ANRM = ZLANHE( 'M', UPLO, N, A, LDA, RWORK ) IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN ISCALE = 1 SIGMA = RMIN / ANRM ELSE IF( ANRM.GT.RMAX ) THEN ISCALE = 1 SIGMA = RMAX / ANRM END IF IF( ISCALE.EQ.1 ) THEN IF( LOWER ) THEN DO 10 J = 1, N CALL ZDSCAL( N-J+1, SIGMA, A( J, J ), 1 ) 10 CONTINUE ELSE DO 20 J = 1, N CALL ZDSCAL( J, SIGMA, A( 1, J ), 1 ) 20 CONTINUE END IF IF( ABSTOL.GT.0 ) $ ABSTLL = ABSTOL*SIGMA IF( VALEIG ) THEN VLL = VL*SIGMA VUU = VU*SIGMA END IF END IF * * Call ZHETRD to reduce Hermitian matrix to tridiagonal form. * INDD = 1 INDE = INDD + N INDRWK = INDE + N INDTAU = 1 INDWRK = INDTAU + N LLWORK = LWORK - INDWRK + 1 CALL ZHETRD( UPLO, N, A, LDA, RWORK( INDD ), RWORK( INDE ), $ WORK( INDTAU ), WORK( INDWRK ), LLWORK, IINFO ) * * If all eigenvalues are desired and ABSTOL is less than or equal to * zero, then call DSTERF or ZUNGTR and ZSTEQR. If this fails for * some eigenvalue, then try DSTEBZ. * TEST = .FALSE. IF( INDEIG ) THEN IF( IL.EQ.1 .AND. IU.EQ.N ) THEN TEST = .TRUE. END IF END IF IF( ( ALLEIG .OR. TEST ) .AND. ( ABSTOL.LE.ZERO ) ) THEN CALL DCOPY( N, RWORK( INDD ), 1, W, 1 ) INDEE = INDRWK + 2*N IF( .NOT.WANTZ ) THEN CALL DCOPY( N-1, RWORK( INDE ), 1, RWORK( INDEE ), 1 ) CALL DSTERF( N, W, RWORK( INDEE ), INFO ) ELSE CALL ZLACPY( 'A', N, N, A, LDA, Z, LDZ ) CALL ZUNGTR( UPLO, N, Z, LDZ, WORK( INDTAU ), $ WORK( INDWRK ), LLWORK, IINFO ) CALL DCOPY( N-1, RWORK( INDE ), 1, RWORK( INDEE ), 1 ) CALL ZSTEQR( JOBZ, N, W, RWORK( INDEE ), Z, LDZ, $ RWORK( INDRWK ), INFO ) IF( INFO.EQ.0 ) THEN DO 30 I = 1, N IFAIL( I ) = 0 30 CONTINUE END IF END IF IF( INFO.EQ.0 ) THEN M = N GO TO 40 END IF INFO = 0 END IF * * Otherwise, call DSTEBZ and, if eigenvectors are desired, ZSTEIN. * IF( WANTZ ) THEN ORDER = 'B' ELSE ORDER = 'E' END IF INDIBL = 1 INDISP = INDIBL + N INDIWK = INDISP + N CALL DSTEBZ( RANGE, ORDER, N, VLL, VUU, IL, IU, ABSTLL, $ RWORK( INDD ), RWORK( INDE ), M, NSPLIT, W, $ IWORK( INDIBL ), IWORK( INDISP ), RWORK( INDRWK ), $ IWORK( INDIWK ), INFO ) * IF( WANTZ ) THEN CALL ZSTEIN( N, RWORK( INDD ), RWORK( INDE ), M, W, $ IWORK( INDIBL ), IWORK( INDISP ), Z, LDZ, $ RWORK( INDRWK ), IWORK( INDIWK ), IFAIL, INFO ) * * Apply unitary matrix used in reduction to tridiagonal * form to eigenvectors returned by ZSTEIN. * CALL ZUNMTR( 'L', UPLO, 'N', N, M, A, LDA, WORK( INDTAU ), Z, $ LDZ, WORK( INDWRK ), LLWORK, IINFO ) END IF * * If matrix was scaled, then rescale eigenvalues appropriately. * 40 CONTINUE IF( ISCALE.EQ.1 ) THEN IF( INFO.EQ.0 ) THEN IMAX = M ELSE IMAX = INFO - 1 END IF CALL DSCAL( IMAX, ONE / SIGMA, W, 1 ) END IF * * If eigenvalues are not in order, then sort them, along with * eigenvectors. * IF( WANTZ ) THEN DO 60 J = 1, M - 1 I = 0 TMP1 = W( J ) DO 50 JJ = J + 1, M IF( W( JJ ).LT.TMP1 ) THEN I = JJ TMP1 = W( JJ ) END IF 50 CONTINUE * IF( I.NE.0 ) THEN ITMP1 = IWORK( INDIBL+I-1 ) W( I ) = W( J ) IWORK( INDIBL+I-1 ) = IWORK( INDIBL+J-1 ) W( J ) = TMP1 IWORK( INDIBL+J-1 ) = ITMP1 CALL ZSWAP( N, Z( 1, I ), 1, Z( 1, J ), 1 ) IF( INFO.NE.0 ) THEN ITMP1 = IFAIL( I ) IFAIL( I ) = IFAIL( J ) IFAIL( J ) = ITMP1 END IF END IF 60 CONTINUE END IF * * Set WORK(1) to optimal complex workspace size. * WORK( 1 ) = LWKOPT * RETURN * * End of ZHEEVX * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlanhp.f0000644000000000000000000000013214061636515015320 xustar0030 mtime=1623670093.245104042 30 atime=1623670093.245104042 30 ctime=1623670093.245104042 elk-7.2.42/src/LAPACK/zlanhp.f0000644002504400250440000002146314061636515017363 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLANHP returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex Hermitian matrix supplied in packed form. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLANHP + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION ZLANHP( NORM, UPLO, N, AP, WORK ) * * .. Scalar Arguments .. * CHARACTER NORM, UPLO * INTEGER N * .. * .. Array Arguments .. * DOUBLE PRECISION WORK( * ) * COMPLEX*16 AP( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLANHP returns the value of the one norm, or the Frobenius norm, or *> the infinity norm, or the element of largest absolute value of a *> complex hermitian matrix A, supplied in packed form. *> \endverbatim *> *> \return ZLANHP *> \verbatim *> *> ZLANHP = ( max(abs(A(i,j))), NORM = 'M' or 'm' *> ( *> ( norm1(A), NORM = '1', 'O' or 'o' *> ( *> ( normI(A), NORM = 'I' or 'i' *> ( *> ( normF(A), NORM = 'F', 'f', 'E' or 'e' *> *> where norm1 denotes the one norm of a matrix (maximum column sum), *> normI denotes the infinity norm of a matrix (maximum row sum) and *> normF denotes the Frobenius norm of a matrix (square root of sum of *> squares). Note that max(abs(A(i,j))) is not a consistent matrix norm. *> \endverbatim * * Arguments: * ========== * *> \param[in] NORM *> \verbatim *> NORM is CHARACTER*1 *> Specifies the value to be returned in ZLANHP as described *> above. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> hermitian matrix A is supplied. *> = 'U': Upper triangular part of A is supplied *> = 'L': Lower triangular part of A is supplied *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. When N = 0, ZLANHP is *> set to zero. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> The upper or lower triangle of the hermitian matrix A, packed *> columnwise in a linear array. The j-th column of A is stored *> in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. *> Note that the imaginary parts of the diagonal elements need *> not be set and are assumed to be zero. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)), *> where LWORK >= N when NORM = 'I' or '1' or 'O'; otherwise, *> WORK is not referenced. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION ZLANHP( NORM, UPLO, N, AP, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * IMPLICIT NONE * .. Scalar Arguments .. CHARACTER NORM, UPLO INTEGER N * .. * .. Array Arguments .. DOUBLE PRECISION WORK( * ) COMPLEX*16 AP( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J, K DOUBLE PRECISION ABSA, SUM, VALUE * .. * .. Local Arrays .. DOUBLE PRECISION SSQ( 2 ), COLSSQ( 2 ) * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL ZLASSQ, DCOMBSSQ * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, SQRT * .. * .. Executable Statements .. * IF( N.EQ.0 ) THEN VALUE = ZERO ELSE IF( LSAME( NORM, 'M' ) ) THEN * * Find max(abs(A(i,j))). * VALUE = ZERO IF( LSAME( UPLO, 'U' ) ) THEN K = 0 DO 20 J = 1, N DO 10 I = K + 1, K + J - 1 SUM = ABS( AP( I ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 10 CONTINUE K = K + J SUM = ABS( DBLE( AP( K ) ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 20 CONTINUE ELSE K = 1 DO 40 J = 1, N SUM = ABS( DBLE( AP( K ) ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM DO 30 I = K + 1, K + N - J SUM = ABS( AP( I ) ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 30 CONTINUE K = K + N - J + 1 40 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'I' ) ) .OR. ( LSAME( NORM, 'O' ) ) .OR. $ ( NORM.EQ.'1' ) ) THEN * * Find normI(A) ( = norm1(A), since A is hermitian). * VALUE = ZERO K = 1 IF( LSAME( UPLO, 'U' ) ) THEN DO 60 J = 1, N SUM = ZERO DO 50 I = 1, J - 1 ABSA = ABS( AP( K ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA K = K + 1 50 CONTINUE WORK( J ) = SUM + ABS( DBLE( AP( K ) ) ) K = K + 1 60 CONTINUE DO 70 I = 1, N SUM = WORK( I ) IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 70 CONTINUE ELSE DO 80 I = 1, N WORK( I ) = ZERO 80 CONTINUE DO 100 J = 1, N SUM = WORK( J ) + ABS( DBLE( AP( K ) ) ) K = K + 1 DO 90 I = J + 1, N ABSA = ABS( AP( K ) ) SUM = SUM + ABSA WORK( I ) = WORK( I ) + ABSA K = K + 1 90 CONTINUE IF( VALUE .LT. SUM .OR. DISNAN( SUM ) ) VALUE = SUM 100 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN * * Find normF(A). * SSQ(1) is scale * SSQ(2) is sum-of-squares * For better accuracy, sum each column separately. * SSQ( 1 ) = ZERO SSQ( 2 ) = ONE * * Sum off-diagonals * K = 2 IF( LSAME( UPLO, 'U' ) ) THEN DO 110 J = 2, N COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL ZLASSQ( J-1, AP( K ), 1, COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) K = K + J 110 CONTINUE ELSE DO 120 J = 1, N - 1 COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE CALL ZLASSQ( N-J, AP( K ), 1, COLSSQ( 1 ), COLSSQ( 2 ) ) CALL DCOMBSSQ( SSQ, COLSSQ ) K = K + N - J + 1 120 CONTINUE END IF SSQ( 2 ) = 2*SSQ( 2 ) * * Sum diagonal * K = 1 COLSSQ( 1 ) = ZERO COLSSQ( 2 ) = ONE DO 130 I = 1, N IF( DBLE( AP( K ) ).NE.ZERO ) THEN ABSA = ABS( DBLE( AP( K ) ) ) IF( COLSSQ( 1 ).LT.ABSA ) THEN COLSSQ( 2 ) = ONE + COLSSQ(2)*( COLSSQ(1) / ABSA )**2 COLSSQ( 1 ) = ABSA ELSE COLSSQ( 2 ) = COLSSQ( 2 ) + ( ABSA / COLSSQ( 1 ) )**2 END IF END IF IF( LSAME( UPLO, 'U' ) ) THEN K = K + I + 1 ELSE K = K + N - I + 1 END IF 130 CONTINUE CALL DCOMBSSQ( SSQ, COLSSQ ) VALUE = SSQ( 1 )*SQRT( SSQ( 2 ) ) END IF * ZLANHP = VALUE RETURN * * End of ZLANHP * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhptrd.f0000644000000000000000000000012714061636515015343 xustar0029 mtime=1623670093.24710404 29 atime=1623670093.24710404 29 ctime=1623670093.24710404 elk-7.2.42/src/LAPACK/zhptrd.f0000644002504400250440000002163014061636515017376 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHPTRD * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHPTRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHPTRD( UPLO, N, AP, D, E, TAU, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 AP( * ), TAU( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHPTRD reduces a complex Hermitian matrix A stored in packed form to *> real symmetric tridiagonal form T by a unitary similarity *> transformation: Q**H * A * Q = T. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> On entry, the upper or lower triangle of the Hermitian matrix *> A, packed columnwise in a linear array. The j-th column of A *> is stored in the array AP as follows: *> if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; *> if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. *> On exit, if UPLO = 'U', the diagonal and first superdiagonal *> of A are overwritten by the corresponding elements of the *> tridiagonal matrix T, and the elements above the first *> superdiagonal, with the array TAU, represent the unitary *> matrix Q as a product of elementary reflectors; if UPLO *> = 'L', the diagonal and first subdiagonal of A are over- *> written by the corresponding elements of the tridiagonal *> matrix T, and the elements below the first subdiagonal, with *> the array TAU, represent the unitary matrix Q as a product *> of elementary reflectors. See Further Details. *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix T: *> E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n-1) . . . H(2) H(1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in AP, *> overwriting A(1:i-1,i+1), and tau is stored in TAU(i). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(n-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in AP, *> overwriting A(i+2:n,i), and tau is stored in TAU(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZHPTRD( UPLO, N, AP, D, E, TAU, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 AP( * ), TAU( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO, HALF PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ), $ HALF = ( 0.5D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER I, I1, I1I1, II COMPLEX*16 ALPHA, TAUI * .. * .. External Subroutines .. EXTERNAL XERBLA, ZAXPY, ZHPMV, ZHPR2, ZLARFG * .. * .. External Functions .. LOGICAL LSAME COMPLEX*16 ZDOTC EXTERNAL LSAME, ZDOTC * .. * .. Intrinsic Functions .. INTRINSIC DBLE * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHPTRD', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * IF( UPPER ) THEN * * Reduce the upper triangle of A. * I1 is the index in AP of A(1,I+1). * I1 = N*( N-1 ) / 2 + 1 AP( I1+N-1 ) = DBLE( AP( I1+N-1 ) ) DO 10 I = N - 1, 1, -1 * * Generate elementary reflector H(i) = I - tau * v * v**H * to annihilate A(1:i-1,i+1) * ALPHA = AP( I1+I-1 ) CALL ZLARFG( I, ALPHA, AP( I1 ), 1, TAUI ) E( I ) = ALPHA * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(1:i,1:i) * AP( I1+I-1 ) = ONE * * Compute y := tau * A * v storing y in TAU(1:i) * CALL ZHPMV( UPLO, I, TAUI, AP, AP( I1 ), 1, ZERO, TAU, $ 1 ) * * Compute w := y - 1/2 * tau * (y**H *v) * v * ALPHA = -HALF*TAUI*ZDOTC( I, TAU, 1, AP( I1 ), 1 ) CALL ZAXPY( I, ALPHA, AP( I1 ), 1, TAU, 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**H - w * v**H * CALL ZHPR2( UPLO, I, -ONE, AP( I1 ), 1, TAU, 1, AP ) * END IF AP( I1+I-1 ) = E( I ) D( I+1 ) = AP( I1+I ) TAU( I ) = TAUI I1 = I1 - I 10 CONTINUE D( 1 ) = AP( 1 ) ELSE * * Reduce the lower triangle of A. II is the index in AP of * A(i,i) and I1I1 is the index of A(i+1,i+1). * II = 1 AP( 1 ) = DBLE( AP( 1 ) ) DO 20 I = 1, N - 1 I1I1 = II + N - I + 1 * * Generate elementary reflector H(i) = I - tau * v * v**H * to annihilate A(i+2:n,i) * ALPHA = AP( II+1 ) CALL ZLARFG( N-I, ALPHA, AP( II+2 ), 1, TAUI ) E( I ) = ALPHA * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(i+1:n,i+1:n) * AP( II+1 ) = ONE * * Compute y := tau * A * v storing y in TAU(i:n-1) * CALL ZHPMV( UPLO, N-I, TAUI, AP( I1I1 ), AP( II+1 ), 1, $ ZERO, TAU( I ), 1 ) * * Compute w := y - 1/2 * tau * (y**H *v) * v * ALPHA = -HALF*TAUI*ZDOTC( N-I, TAU( I ), 1, AP( II+1 ), $ 1 ) CALL ZAXPY( N-I, ALPHA, AP( II+1 ), 1, TAU( I ), 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**H - w * v**H * CALL ZHPR2( UPLO, N-I, -ONE, AP( II+1 ), 1, TAU( I ), 1, $ AP( I1I1 ) ) * END IF AP( II+1 ) = E( I ) D( I ) = AP( II ) TAU( I ) = TAUI II = I1I1 20 CONTINUE D( N ) = AP( II ) END IF * RETURN * * End of ZHPTRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zupgtr.f0000644000000000000000000000013214061636515015357 xustar0030 mtime=1623670093.249104038 30 atime=1623670093.249104038 30 ctime=1623670093.249104038 elk-7.2.42/src/LAPACK/zupgtr.f0000644002504400250440000001373214061636515017422 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUPGTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUPGTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUPGTR( UPLO, N, AP, TAU, Q, LDQ, WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDQ, N * .. * .. Array Arguments .. * COMPLEX*16 AP( * ), Q( LDQ, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUPGTR generates a complex unitary matrix Q which is defined as the *> product of n-1 elementary reflectors H(i) of order n, as returned by *> ZHPTRD using packed storage: *> *> if UPLO = 'U', Q = H(n-1) . . . H(2) H(1), *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(n-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangular packed storage used in previous *> call to ZHPTRD; *> = 'L': Lower triangular packed storage used in previous *> call to ZHPTRD. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix Q. N >= 0. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension (N*(N+1)/2) *> The vectors which define the elementary reflectors, as *> returned by ZHPTRD. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZHPTRD. *> \endverbatim *> *> \param[out] Q *> \verbatim *> Q is COMPLEX*16 array, dimension (LDQ,N) *> The N-by-N unitary matrix Q. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (N-1) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUPGTR( UPLO, N, AP, TAU, Q, LDQ, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDQ, N * .. * .. Array Arguments .. COMPLEX*16 AP( * ), Q( LDQ, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 CZERO, CONE PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ), $ CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER I, IINFO, IJ, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNG2L, ZUNG2R * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUPGTR', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( UPPER ) THEN * * Q was determined by a call to ZHPTRD with UPLO = 'U' * * Unpack the vectors which define the elementary reflectors and * set the last row and column of Q equal to those of the unit * matrix * IJ = 2 DO 20 J = 1, N - 1 DO 10 I = 1, J - 1 Q( I, J ) = AP( IJ ) IJ = IJ + 1 10 CONTINUE IJ = IJ + 2 Q( N, J ) = CZERO 20 CONTINUE DO 30 I = 1, N - 1 Q( I, N ) = CZERO 30 CONTINUE Q( N, N ) = CONE * * Generate Q(1:n-1,1:n-1) * CALL ZUNG2L( N-1, N-1, N-1, Q, LDQ, TAU, WORK, IINFO ) * ELSE * * Q was determined by a call to ZHPTRD with UPLO = 'L'. * * Unpack the vectors which define the elementary reflectors and * set the first row and column of Q equal to those of the unit * matrix * Q( 1, 1 ) = CONE DO 40 I = 2, N Q( I, 1 ) = CZERO 40 CONTINUE IJ = 3 DO 60 J = 2, N Q( 1, J ) = CZERO DO 50 I = J + 1, N Q( I, J ) = AP( IJ ) IJ = IJ + 1 50 CONTINUE IJ = IJ + 2 60 CONTINUE IF( N.GT.1 ) THEN * * Generate Q(2:n,2:n) * CALL ZUNG2R( N-1, N-1, N-1, Q( 2, 2 ), LDQ, TAU, WORK, $ IINFO ) END IF END IF RETURN * * End of ZUPGTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dstebz.f0000644000000000000000000000013214061636515015317 xustar0030 mtime=1623670093.251104036 30 atime=1623670093.251104036 30 ctime=1623670093.251104036 elk-7.2.42/src/LAPACK/dstebz.f0000644002504400250440000005716214061636515017367 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSTEBZ * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSTEBZ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSTEBZ( RANGE, ORDER, N, VL, VU, IL, IU, ABSTOL, D, E, * M, NSPLIT, W, IBLOCK, ISPLIT, WORK, IWORK, * INFO ) * * .. Scalar Arguments .. * CHARACTER ORDER, RANGE * INTEGER IL, INFO, IU, M, N, NSPLIT * DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. * INTEGER IBLOCK( * ), ISPLIT( * ), IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSTEBZ computes the eigenvalues of a symmetric tridiagonal *> matrix T. The user may ask for all eigenvalues, all eigenvalues *> in the half-open interval (VL, VU], or the IL-th through IU-th *> eigenvalues. *> *> To avoid overflow, the matrix must be scaled so that its *> largest element is no greater than overflow**(1/2) * underflow**(1/4) in absolute value, and for greatest *> accuracy, it should not be much smaller than that. *> *> See W. Kahan "Accurate Eigenvalues of a Symmetric Tridiagonal *> Matrix", Report CS41, Computer Science Dept., Stanford *> University, July 21, 1966. *> \endverbatim * * Arguments: * ========== * *> \param[in] RANGE *> \verbatim *> RANGE is CHARACTER*1 *> = 'A': ("All") all eigenvalues will be found. *> = 'V': ("Value") all eigenvalues in the half-open interval *> (VL, VU] will be found. *> = 'I': ("Index") the IL-th through IU-th eigenvalues (of the *> entire matrix) will be found. *> \endverbatim *> *> \param[in] ORDER *> \verbatim *> ORDER is CHARACTER*1 *> = 'B': ("By Block") the eigenvalues will be grouped by *> split-off block (see IBLOCK, ISPLIT) and *> ordered from smallest to largest within *> the block. *> = 'E': ("Entire matrix") *> the eigenvalues for the entire matrix *> will be ordered from smallest to *> largest. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the tridiagonal matrix T. N >= 0. *> \endverbatim *> *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION *> *> If RANGE='V', the lower bound of the interval to *> be searched for eigenvalues. Eigenvalues less than or equal *> to VL, or greater than VU, will not be returned. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> *> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. Eigenvalues less than or equal *> to VL, or greater than VU, will not be returned. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] IL *> \verbatim *> IL is INTEGER *> *> If RANGE='I', the index of the *> smallest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> *> If RANGE='I', the index of the *> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The absolute tolerance for the eigenvalues. An eigenvalue *> (or cluster) is considered to be located if it has been *> determined to lie in an interval whose width is ABSTOL or *> less. If ABSTOL is less than or equal to zero, then ULP*|T| *> will be used, where |T| means the 1-norm of T. *> *> Eigenvalues will be computed most accurately when ABSTOL is *> set to twice the underflow threshold 2*DLAMCH('S'), not zero. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The n diagonal elements of the tridiagonal matrix T. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The (n-1) off-diagonal elements of the tridiagonal matrix T. *> \endverbatim *> *> \param[out] M *> \verbatim *> M is INTEGER *> The actual number of eigenvalues found. 0 <= M <= N. *> (See also the description of INFO=2,3.) *> \endverbatim *> *> \param[out] NSPLIT *> \verbatim *> NSPLIT is INTEGER *> The number of diagonal blocks in the matrix T. *> 1 <= NSPLIT <= N. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> On exit, the first M elements of W will contain the *> eigenvalues. (DSTEBZ may use the remaining N-M elements as *> workspace.) *> \endverbatim *> *> \param[out] IBLOCK *> \verbatim *> IBLOCK is INTEGER array, dimension (N) *> At each row/column j where E(j) is zero or small, the *> matrix T is considered to split into a block diagonal *> matrix. On exit, if INFO = 0, IBLOCK(i) specifies to which *> block (from 1 to the number of blocks) the eigenvalue W(i) *> belongs. (DSTEBZ may use the remaining N-M elements as *> workspace.) *> \endverbatim *> *> \param[out] ISPLIT *> \verbatim *> ISPLIT is INTEGER array, dimension (N) *> The splitting points, at which T breaks up into submatrices. *> The first submatrix consists of rows/columns 1 to ISPLIT(1), *> the second of rows/columns ISPLIT(1)+1 through ISPLIT(2), *> etc., and the NSPLIT-th consists of rows/columns *> ISPLIT(NSPLIT-1)+1 through ISPLIT(NSPLIT)=N. *> (Only the first NSPLIT elements will actually be used, but *> since the user cannot know a priori what value NSPLIT will *> have, N words must be reserved for ISPLIT.) *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (4*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (3*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: some or all of the eigenvalues failed to converge or *> were not computed: *> =1 or 3: Bisection failed to converge for some *> eigenvalues; these eigenvalues are flagged by a *> negative block number. The effect is that the *> eigenvalues may not be as accurate as the *> absolute and relative tolerances. This is *> generally caused by unexpectedly inaccurate *> arithmetic. *> =2 or 3: RANGE='I' only: Not all of the eigenvalues *> IL:IU were found. *> Effect: M < IU+1-IL *> Cause: non-monotonic arithmetic, causing the *> Sturm sequence to be non-monotonic. *> Cure: recalculate, using RANGE='A', and pick *> out eigenvalues IL:IU. In some cases, *> increasing the PARAMETER "FUDGE" may *> make things work. *> = 4: RANGE='I', and the Gershgorin interval *> initially used was too small. No eigenvalues *> were computed. *> Probable cause: your machine has sloppy *> floating-point arithmetic. *> Cure: Increase the PARAMETER "FUDGE", *> recompile, and try again. *> \endverbatim * *> \par Internal Parameters: * ========================= *> *> \verbatim *> RELFAC DOUBLE PRECISION, default = 2.0e0 *> The relative tolerance. An interval (a,b] lies within *> "relative tolerance" if b-a < RELFAC*ulp*max(|a|,|b|), *> where "ulp" is the machine precision (distance from 1 to *> the next larger floating point number.) *> *> FUDGE DOUBLE PRECISION, default = 2 *> A "fudge factor" to widen the Gershgorin intervals. Ideally, *> a value of 1 should work, but on machines with sloppy *> arithmetic, this needs to be larger. The default for *> publicly released versions should be large enough to handle *> the worst machine around. Note that this has no effect *> on accuracy of the solution. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DSTEBZ( RANGE, ORDER, N, VL, VU, IL, IU, ABSTOL, D, E, $ M, NSPLIT, W, IBLOCK, ISPLIT, WORK, IWORK, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER ORDER, RANGE INTEGER IL, INFO, IU, M, N, NSPLIT DOUBLE PRECISION ABSTOL, VL, VU * .. * .. Array Arguments .. INTEGER IBLOCK( * ), ISPLIT( * ), IWORK( * ) DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO, HALF PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ HALF = 1.0D0 / TWO ) DOUBLE PRECISION FUDGE, RELFAC PARAMETER ( FUDGE = 2.1D0, RELFAC = 2.0D0 ) * .. * .. Local Scalars .. LOGICAL NCNVRG, TOOFEW INTEGER IB, IBEGIN, IDISCL, IDISCU, IE, IEND, IINFO, $ IM, IN, IOFF, IORDER, IOUT, IRANGE, ITMAX, $ ITMP1, IW, IWOFF, J, JB, JDISC, JE, NB, NWL, $ NWU DOUBLE PRECISION ATOLI, BNORM, GL, GU, PIVMIN, RTOLI, SAFEMN, $ TMP1, TMP2, TNORM, ULP, WKILL, WL, WLU, WU, WUL * .. * .. Local Arrays .. INTEGER IDUMMA( 1 ) * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH EXTERNAL LSAME, ILAENV, DLAMCH * .. * .. External Subroutines .. EXTERNAL DLAEBZ, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, INT, LOG, MAX, MIN, SQRT * .. * .. Executable Statements .. * INFO = 0 * * Decode RANGE * IF( LSAME( RANGE, 'A' ) ) THEN IRANGE = 1 ELSE IF( LSAME( RANGE, 'V' ) ) THEN IRANGE = 2 ELSE IF( LSAME( RANGE, 'I' ) ) THEN IRANGE = 3 ELSE IRANGE = 0 END IF * * Decode ORDER * IF( LSAME( ORDER, 'B' ) ) THEN IORDER = 2 ELSE IF( LSAME( ORDER, 'E' ) ) THEN IORDER = 1 ELSE IORDER = 0 END IF * * Check for Errors * IF( IRANGE.LE.0 ) THEN INFO = -1 ELSE IF( IORDER.LE.0 ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( IRANGE.EQ.2 ) THEN IF( VL.GE.VU ) $ INFO = -5 ELSE IF( IRANGE.EQ.3 .AND. ( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) ) $ THEN INFO = -6 ELSE IF( IRANGE.EQ.3 .AND. ( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) ) $ THEN INFO = -7 END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSTEBZ', -INFO ) RETURN END IF * * Initialize error flags * INFO = 0 NCNVRG = .FALSE. TOOFEW = .FALSE. * * Quick return if possible * M = 0 IF( N.EQ.0 ) $ RETURN * * Simplifications: * IF( IRANGE.EQ.3 .AND. IL.EQ.1 .AND. IU.EQ.N ) $ IRANGE = 1 * * Get machine constants * NB is the minimum vector length for vector bisection, or 0 * if only scalar is to be done. * SAFEMN = DLAMCH( 'S' ) ULP = DLAMCH( 'P' ) RTOLI = ULP*RELFAC NB = ILAENV( 1, 'DSTEBZ', ' ', N, -1, -1, -1 ) IF( NB.LE.1 ) $ NB = 0 * * Special Case when N=1 * IF( N.EQ.1 ) THEN NSPLIT = 1 ISPLIT( 1 ) = 1 IF( IRANGE.EQ.2 .AND. ( VL.GE.D( 1 ) .OR. VU.LT.D( 1 ) ) ) THEN M = 0 ELSE W( 1 ) = D( 1 ) IBLOCK( 1 ) = 1 M = 1 END IF RETURN END IF * * Compute Splitting Points * NSPLIT = 1 WORK( N ) = ZERO PIVMIN = ONE * DO 10 J = 2, N TMP1 = E( J-1 )**2 IF( ABS( D( J )*D( J-1 ) )*ULP**2+SAFEMN.GT.TMP1 ) THEN ISPLIT( NSPLIT ) = J - 1 NSPLIT = NSPLIT + 1 WORK( J-1 ) = ZERO ELSE WORK( J-1 ) = TMP1 PIVMIN = MAX( PIVMIN, TMP1 ) END IF 10 CONTINUE ISPLIT( NSPLIT ) = N PIVMIN = PIVMIN*SAFEMN * * Compute Interval and ATOLI * IF( IRANGE.EQ.3 ) THEN * * RANGE='I': Compute the interval containing eigenvalues * IL through IU. * * Compute Gershgorin interval for entire (split) matrix * and use it as the initial interval * GU = D( 1 ) GL = D( 1 ) TMP1 = ZERO * DO 20 J = 1, N - 1 TMP2 = SQRT( WORK( J ) ) GU = MAX( GU, D( J )+TMP1+TMP2 ) GL = MIN( GL, D( J )-TMP1-TMP2 ) TMP1 = TMP2 20 CONTINUE * GU = MAX( GU, D( N )+TMP1 ) GL = MIN( GL, D( N )-TMP1 ) TNORM = MAX( ABS( GL ), ABS( GU ) ) GL = GL - FUDGE*TNORM*ULP*N - FUDGE*TWO*PIVMIN GU = GU + FUDGE*TNORM*ULP*N + FUDGE*PIVMIN * * Compute Iteration parameters * ITMAX = INT( ( LOG( TNORM+PIVMIN )-LOG( PIVMIN ) ) / $ LOG( TWO ) ) + 2 IF( ABSTOL.LE.ZERO ) THEN ATOLI = ULP*TNORM ELSE ATOLI = ABSTOL END IF * WORK( N+1 ) = GL WORK( N+2 ) = GL WORK( N+3 ) = GU WORK( N+4 ) = GU WORK( N+5 ) = GL WORK( N+6 ) = GU IWORK( 1 ) = -1 IWORK( 2 ) = -1 IWORK( 3 ) = N + 1 IWORK( 4 ) = N + 1 IWORK( 5 ) = IL - 1 IWORK( 6 ) = IU * CALL DLAEBZ( 3, ITMAX, N, 2, 2, NB, ATOLI, RTOLI, PIVMIN, D, E, $ WORK, IWORK( 5 ), WORK( N+1 ), WORK( N+5 ), IOUT, $ IWORK, W, IBLOCK, IINFO ) * IF( IWORK( 6 ).EQ.IU ) THEN WL = WORK( N+1 ) WLU = WORK( N+3 ) NWL = IWORK( 1 ) WU = WORK( N+4 ) WUL = WORK( N+2 ) NWU = IWORK( 4 ) ELSE WL = WORK( N+2 ) WLU = WORK( N+4 ) NWL = IWORK( 2 ) WU = WORK( N+3 ) WUL = WORK( N+1 ) NWU = IWORK( 3 ) END IF * IF( NWL.LT.0 .OR. NWL.GE.N .OR. NWU.LT.1 .OR. NWU.GT.N ) THEN INFO = 4 RETURN END IF ELSE * * RANGE='A' or 'V' -- Set ATOLI * TNORM = MAX( ABS( D( 1 ) )+ABS( E( 1 ) ), $ ABS( D( N ) )+ABS( E( N-1 ) ) ) * DO 30 J = 2, N - 1 TNORM = MAX( TNORM, ABS( D( J ) )+ABS( E( J-1 ) )+ $ ABS( E( J ) ) ) 30 CONTINUE * IF( ABSTOL.LE.ZERO ) THEN ATOLI = ULP*TNORM ELSE ATOLI = ABSTOL END IF * IF( IRANGE.EQ.2 ) THEN WL = VL WU = VU ELSE WL = ZERO WU = ZERO END IF END IF * * Find Eigenvalues -- Loop Over Blocks and recompute NWL and NWU. * NWL accumulates the number of eigenvalues .le. WL, * NWU accumulates the number of eigenvalues .le. WU * M = 0 IEND = 0 INFO = 0 NWL = 0 NWU = 0 * DO 70 JB = 1, NSPLIT IOFF = IEND IBEGIN = IOFF + 1 IEND = ISPLIT( JB ) IN = IEND - IOFF * IF( IN.EQ.1 ) THEN * * Special Case -- IN=1 * IF( IRANGE.EQ.1 .OR. WL.GE.D( IBEGIN )-PIVMIN ) $ NWL = NWL + 1 IF( IRANGE.EQ.1 .OR. WU.GE.D( IBEGIN )-PIVMIN ) $ NWU = NWU + 1 IF( IRANGE.EQ.1 .OR. ( WL.LT.D( IBEGIN )-PIVMIN .AND. WU.GE. $ D( IBEGIN )-PIVMIN ) ) THEN M = M + 1 W( M ) = D( IBEGIN ) IBLOCK( M ) = JB END IF ELSE * * General Case -- IN > 1 * * Compute Gershgorin Interval * and use it as the initial interval * GU = D( IBEGIN ) GL = D( IBEGIN ) TMP1 = ZERO * DO 40 J = IBEGIN, IEND - 1 TMP2 = ABS( E( J ) ) GU = MAX( GU, D( J )+TMP1+TMP2 ) GL = MIN( GL, D( J )-TMP1-TMP2 ) TMP1 = TMP2 40 CONTINUE * GU = MAX( GU, D( IEND )+TMP1 ) GL = MIN( GL, D( IEND )-TMP1 ) BNORM = MAX( ABS( GL ), ABS( GU ) ) GL = GL - FUDGE*BNORM*ULP*IN - FUDGE*PIVMIN GU = GU + FUDGE*BNORM*ULP*IN + FUDGE*PIVMIN * * Compute ATOLI for the current submatrix * IF( ABSTOL.LE.ZERO ) THEN ATOLI = ULP*MAX( ABS( GL ), ABS( GU ) ) ELSE ATOLI = ABSTOL END IF * IF( IRANGE.GT.1 ) THEN IF( GU.LT.WL ) THEN NWL = NWL + IN NWU = NWU + IN GO TO 70 END IF GL = MAX( GL, WL ) GU = MIN( GU, WU ) IF( GL.GE.GU ) $ GO TO 70 END IF * * Set Up Initial Interval * WORK( N+1 ) = GL WORK( N+IN+1 ) = GU CALL DLAEBZ( 1, 0, IN, IN, 1, NB, ATOLI, RTOLI, PIVMIN, $ D( IBEGIN ), E( IBEGIN ), WORK( IBEGIN ), $ IDUMMA, WORK( N+1 ), WORK( N+2*IN+1 ), IM, $ IWORK, W( M+1 ), IBLOCK( M+1 ), IINFO ) * NWL = NWL + IWORK( 1 ) NWU = NWU + IWORK( IN+1 ) IWOFF = M - IWORK( 1 ) * * Compute Eigenvalues * ITMAX = INT( ( LOG( GU-GL+PIVMIN )-LOG( PIVMIN ) ) / $ LOG( TWO ) ) + 2 CALL DLAEBZ( 2, ITMAX, IN, IN, 1, NB, ATOLI, RTOLI, PIVMIN, $ D( IBEGIN ), E( IBEGIN ), WORK( IBEGIN ), $ IDUMMA, WORK( N+1 ), WORK( N+2*IN+1 ), IOUT, $ IWORK, W( M+1 ), IBLOCK( M+1 ), IINFO ) * * Copy Eigenvalues Into W and IBLOCK * Use -JB for block number for unconverged eigenvalues. * DO 60 J = 1, IOUT TMP1 = HALF*( WORK( J+N )+WORK( J+IN+N ) ) * * Flag non-convergence. * IF( J.GT.IOUT-IINFO ) THEN NCNVRG = .TRUE. IB = -JB ELSE IB = JB END IF DO 50 JE = IWORK( J ) + 1 + IWOFF, $ IWORK( J+IN ) + IWOFF W( JE ) = TMP1 IBLOCK( JE ) = IB 50 CONTINUE 60 CONTINUE * M = M + IM END IF 70 CONTINUE * * If RANGE='I', then (WL,WU) contains eigenvalues NWL+1,...,NWU * If NWL+1 < IL or NWU > IU, discard extra eigenvalues. * IF( IRANGE.EQ.3 ) THEN IM = 0 IDISCL = IL - 1 - NWL IDISCU = NWU - IU * IF( IDISCL.GT.0 .OR. IDISCU.GT.0 ) THEN DO 80 JE = 1, M IF( W( JE ).LE.WLU .AND. IDISCL.GT.0 ) THEN IDISCL = IDISCL - 1 ELSE IF( W( JE ).GE.WUL .AND. IDISCU.GT.0 ) THEN IDISCU = IDISCU - 1 ELSE IM = IM + 1 W( IM ) = W( JE ) IBLOCK( IM ) = IBLOCK( JE ) END IF 80 CONTINUE M = IM END IF IF( IDISCL.GT.0 .OR. IDISCU.GT.0 ) THEN * * Code to deal with effects of bad arithmetic: * Some low eigenvalues to be discarded are not in (WL,WLU], * or high eigenvalues to be discarded are not in (WUL,WU] * so just kill off the smallest IDISCL/largest IDISCU * eigenvalues, by simply finding the smallest/largest * eigenvalue(s). * * (If N(w) is monotone non-decreasing, this should never * happen.) * IF( IDISCL.GT.0 ) THEN WKILL = WU DO 100 JDISC = 1, IDISCL IW = 0 DO 90 JE = 1, M IF( IBLOCK( JE ).NE.0 .AND. $ ( W( JE ).LT.WKILL .OR. IW.EQ.0 ) ) THEN IW = JE WKILL = W( JE ) END IF 90 CONTINUE IBLOCK( IW ) = 0 100 CONTINUE END IF IF( IDISCU.GT.0 ) THEN * WKILL = WL DO 120 JDISC = 1, IDISCU IW = 0 DO 110 JE = 1, M IF( IBLOCK( JE ).NE.0 .AND. $ ( W( JE ).GT.WKILL .OR. IW.EQ.0 ) ) THEN IW = JE WKILL = W( JE ) END IF 110 CONTINUE IBLOCK( IW ) = 0 120 CONTINUE END IF IM = 0 DO 130 JE = 1, M IF( IBLOCK( JE ).NE.0 ) THEN IM = IM + 1 W( IM ) = W( JE ) IBLOCK( IM ) = IBLOCK( JE ) END IF 130 CONTINUE M = IM END IF IF( IDISCL.LT.0 .OR. IDISCU.LT.0 ) THEN TOOFEW = .TRUE. END IF END IF * * If ORDER='B', do nothing -- the eigenvalues are already sorted * by block. * If ORDER='E', sort the eigenvalues from smallest to largest * IF( IORDER.EQ.1 .AND. NSPLIT.GT.1 ) THEN DO 150 JE = 1, M - 1 IE = 0 TMP1 = W( JE ) DO 140 J = JE + 1, M IF( W( J ).LT.TMP1 ) THEN IE = J TMP1 = W( J ) END IF 140 CONTINUE * IF( IE.NE.0 ) THEN ITMP1 = IBLOCK( IE ) W( IE ) = W( JE ) IBLOCK( IE ) = IBLOCK( JE ) W( JE ) = TMP1 IBLOCK( JE ) = ITMP1 END IF 150 CONTINUE END IF * INFO = 0 IF( NCNVRG ) $ INFO = INFO + 1 IF( TOOFEW ) $ INFO = INFO + 2 RETURN * * End of DSTEBZ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zstein.f0000644000000000000000000000013214061636515015340 xustar0030 mtime=1623670093.253104035 30 atime=1623670093.253104035 30 ctime=1623670093.253104035 elk-7.2.42/src/LAPACK/zstein.f0000644002504400250440000003342014061636515017377 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZSTEIN * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZSTEIN + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZSTEIN( N, D, E, M, W, IBLOCK, ISPLIT, Z, LDZ, WORK, * IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDZ, M, N * .. * .. Array Arguments .. * INTEGER IBLOCK( * ), IFAIL( * ), ISPLIT( * ), * $ IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ) * COMPLEX*16 Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZSTEIN computes the eigenvectors of a real symmetric tridiagonal *> matrix T corresponding to specified eigenvalues, using inverse *> iteration. *> *> The maximum number of iterations allowed for each eigenvector is *> specified by an internal parameter MAXITS (currently set to 5). *> *> Although the eigenvectors are real, they are stored in a complex *> array, which may be passed to ZUNMTR or ZUPMTR for back *> transformation to the eigenvectors of a complex Hermitian matrix *> which was reduced to tridiagonal form. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix. N >= 0. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The n diagonal elements of the tridiagonal matrix T. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The (n-1) subdiagonal elements of the tridiagonal matrix *> T, stored in elements 1 to N-1. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of eigenvectors to be found. 0 <= M <= N. *> \endverbatim *> *> \param[in] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> The first M elements of W contain the eigenvalues for *> which eigenvectors are to be computed. The eigenvalues *> should be grouped by split-off block and ordered from *> smallest to largest within the block. ( The output array *> W from DSTEBZ with ORDER = 'B' is expected here. ) *> \endverbatim *> *> \param[in] IBLOCK *> \verbatim *> IBLOCK is INTEGER array, dimension (N) *> The submatrix indices associated with the corresponding *> eigenvalues in W; IBLOCK(i)=1 if eigenvalue W(i) belongs to *> the first submatrix from the top, =2 if W(i) belongs to *> the second submatrix, etc. ( The output array IBLOCK *> from DSTEBZ is expected here. ) *> \endverbatim *> *> \param[in] ISPLIT *> \verbatim *> ISPLIT is INTEGER array, dimension (N) *> The splitting points, at which T breaks up into submatrices. *> The first submatrix consists of rows/columns 1 to *> ISPLIT( 1 ), the second of rows/columns ISPLIT( 1 )+1 *> through ISPLIT( 2 ), etc. *> ( The output array ISPLIT from DSTEBZ is expected here. ) *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ, M) *> The computed eigenvectors. The eigenvector associated *> with the eigenvalue W(i) is stored in the i-th column of *> Z. Any vector which fails to converge is set to its current *> iterate after MAXITS iterations. *> The imaginary parts of the eigenvectors are set to zero. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (5*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (M) *> On normal exit, all elements of IFAIL are zero. *> If one or more eigenvectors fail to converge after *> MAXITS iterations, then their indices are stored in *> array IFAIL. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, then i eigenvectors failed to converge *> in MAXITS iterations. Their indices are stored in *> array IFAIL. *> \endverbatim * *> \par Internal Parameters: * ========================= *> *> \verbatim *> MAXITS INTEGER, default = 5 *> The maximum number of iterations performed. *> *> EXTRA INTEGER, default = 2 *> The number of iterations performed after norm growth *> criterion is satisfied, should be at least 1. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZSTEIN( N, D, E, M, W, IBLOCK, ISPLIT, Z, LDZ, WORK, $ IWORK, IFAIL, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDZ, M, N * .. * .. Array Arguments .. INTEGER IBLOCK( * ), IFAIL( * ), ISPLIT( * ), $ IWORK( * ) DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ) COMPLEX*16 Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 CZERO, CONE PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ), $ CONE = ( 1.0D+0, 0.0D+0 ) ) DOUBLE PRECISION ZERO, ONE, TEN, ODM3, ODM1 PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0, TEN = 1.0D+1, $ ODM3 = 1.0D-3, ODM1 = 1.0D-1 ) INTEGER MAXITS, EXTRA PARAMETER ( MAXITS = 5, EXTRA = 2 ) * .. * .. Local Scalars .. INTEGER B1, BLKSIZ, BN, GPIND, I, IINFO, INDRV1, $ INDRV2, INDRV3, INDRV4, INDRV5, ITS, J, J1, $ JBLK, JMAX, JR, NBLK, NRMCHK DOUBLE PRECISION DTPCRT, EPS, EPS1, NRM, ONENRM, ORTOL, PERTOL, $ SCL, SEP, TOL, XJ, XJM, ZTR * .. * .. Local Arrays .. INTEGER ISEED( 4 ) * .. * .. External Functions .. INTEGER IDAMAX DOUBLE PRECISION DLAMCH, DNRM2 EXTERNAL IDAMAX, DLAMCH, DNRM2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLAGTF, DLAGTS, DLARNV, DSCAL, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 DO 10 I = 1, M IFAIL( I ) = 0 10 CONTINUE * IF( N.LT.0 ) THEN INFO = -1 ELSE IF( M.LT.0 .OR. M.GT.N ) THEN INFO = -4 ELSE IF( LDZ.LT.MAX( 1, N ) ) THEN INFO = -9 ELSE DO 20 J = 2, M IF( IBLOCK( J ).LT.IBLOCK( J-1 ) ) THEN INFO = -6 GO TO 30 END IF IF( IBLOCK( J ).EQ.IBLOCK( J-1 ) .AND. W( J ).LT.W( J-1 ) ) $ THEN INFO = -5 GO TO 30 END IF 20 CONTINUE 30 CONTINUE END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZSTEIN', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. M.EQ.0 ) THEN RETURN ELSE IF( N.EQ.1 ) THEN Z( 1, 1 ) = CONE RETURN END IF * * Get machine constants. * EPS = DLAMCH( 'Precision' ) * * Initialize seed for random number generator DLARNV. * DO 40 I = 1, 4 ISEED( I ) = 1 40 CONTINUE * * Initialize pointers. * INDRV1 = 0 INDRV2 = INDRV1 + N INDRV3 = INDRV2 + N INDRV4 = INDRV3 + N INDRV5 = INDRV4 + N * * Compute eigenvectors of matrix blocks. * J1 = 1 DO 180 NBLK = 1, IBLOCK( M ) * * Find starting and ending indices of block nblk. * IF( NBLK.EQ.1 ) THEN B1 = 1 ELSE B1 = ISPLIT( NBLK-1 ) + 1 END IF BN = ISPLIT( NBLK ) BLKSIZ = BN - B1 + 1 IF( BLKSIZ.EQ.1 ) $ GO TO 60 GPIND = J1 * * Compute reorthogonalization criterion and stopping criterion. * ONENRM = ABS( D( B1 ) ) + ABS( E( B1 ) ) ONENRM = MAX( ONENRM, ABS( D( BN ) )+ABS( E( BN-1 ) ) ) DO 50 I = B1 + 1, BN - 1 ONENRM = MAX( ONENRM, ABS( D( I ) )+ABS( E( I-1 ) )+ $ ABS( E( I ) ) ) 50 CONTINUE ORTOL = ODM3*ONENRM * DTPCRT = SQRT( ODM1 / BLKSIZ ) * * Loop through eigenvalues of block nblk. * 60 CONTINUE JBLK = 0 DO 170 J = J1, M IF( IBLOCK( J ).NE.NBLK ) THEN J1 = J GO TO 180 END IF JBLK = JBLK + 1 XJ = W( J ) * * Skip all the work if the block size is one. * IF( BLKSIZ.EQ.1 ) THEN WORK( INDRV1+1 ) = ONE GO TO 140 END IF * * If eigenvalues j and j-1 are too close, add a relatively * small perturbation. * IF( JBLK.GT.1 ) THEN EPS1 = ABS( EPS*XJ ) PERTOL = TEN*EPS1 SEP = XJ - XJM IF( SEP.LT.PERTOL ) $ XJ = XJM + PERTOL END IF * ITS = 0 NRMCHK = 0 * * Get random starting vector. * CALL DLARNV( 2, ISEED, BLKSIZ, WORK( INDRV1+1 ) ) * * Copy the matrix T so it won't be destroyed in factorization. * CALL DCOPY( BLKSIZ, D( B1 ), 1, WORK( INDRV4+1 ), 1 ) CALL DCOPY( BLKSIZ-1, E( B1 ), 1, WORK( INDRV2+2 ), 1 ) CALL DCOPY( BLKSIZ-1, E( B1 ), 1, WORK( INDRV3+1 ), 1 ) * * Compute LU factors with partial pivoting ( PT = LU ) * TOL = ZERO CALL DLAGTF( BLKSIZ, WORK( INDRV4+1 ), XJ, WORK( INDRV2+2 ), $ WORK( INDRV3+1 ), TOL, WORK( INDRV5+1 ), IWORK, $ IINFO ) * * Update iteration count. * 70 CONTINUE ITS = ITS + 1 IF( ITS.GT.MAXITS ) $ GO TO 120 * * Normalize and scale the righthand side vector Pb. * JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) SCL = BLKSIZ*ONENRM*MAX( EPS, $ ABS( WORK( INDRV4+BLKSIZ ) ) ) / $ ABS( WORK( INDRV1+JMAX ) ) CALL DSCAL( BLKSIZ, SCL, WORK( INDRV1+1 ), 1 ) * * Solve the system LU = Pb. * CALL DLAGTS( -1, BLKSIZ, WORK( INDRV4+1 ), WORK( INDRV2+2 ), $ WORK( INDRV3+1 ), WORK( INDRV5+1 ), IWORK, $ WORK( INDRV1+1 ), TOL, IINFO ) * * Reorthogonalize by modified Gram-Schmidt if eigenvalues are * close enough. * IF( JBLK.EQ.1 ) $ GO TO 110 IF( ABS( XJ-XJM ).GT.ORTOL ) $ GPIND = J IF( GPIND.NE.J ) THEN DO 100 I = GPIND, J - 1 ZTR = ZERO DO 80 JR = 1, BLKSIZ ZTR = ZTR + WORK( INDRV1+JR )* $ DBLE( Z( B1-1+JR, I ) ) 80 CONTINUE DO 90 JR = 1, BLKSIZ WORK( INDRV1+JR ) = WORK( INDRV1+JR ) - $ ZTR*DBLE( Z( B1-1+JR, I ) ) 90 CONTINUE 100 CONTINUE END IF * * Check the infinity norm of the iterate. * 110 CONTINUE JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) NRM = ABS( WORK( INDRV1+JMAX ) ) * * Continue for additional iterations after norm reaches * stopping criterion. * IF( NRM.LT.DTPCRT ) $ GO TO 70 NRMCHK = NRMCHK + 1 IF( NRMCHK.LT.EXTRA+1 ) $ GO TO 70 * GO TO 130 * * If stopping criterion was not satisfied, update info and * store eigenvector number in array ifail. * 120 CONTINUE INFO = INFO + 1 IFAIL( INFO ) = J * * Accept iterate as jth eigenvector. * 130 CONTINUE SCL = ONE / DNRM2( BLKSIZ, WORK( INDRV1+1 ), 1 ) JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) IF( WORK( INDRV1+JMAX ).LT.ZERO ) $ SCL = -SCL CALL DSCAL( BLKSIZ, SCL, WORK( INDRV1+1 ), 1 ) 140 CONTINUE DO 150 I = 1, N Z( I, J ) = CZERO 150 CONTINUE DO 160 I = 1, BLKSIZ Z( B1+I-1, J ) = DCMPLX( WORK( INDRV1+I ), ZERO ) 160 CONTINUE * * Save the shift to check eigenvalue spacing at next * iteration. * XJM = XJ * 170 CONTINUE 180 CONTINUE * RETURN * * End of ZSTEIN * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zupmtr.f0000644000000000000000000000013214061636515015365 xustar0030 mtime=1623670093.255104033 30 atime=1623670093.255104033 30 ctime=1623670093.255104033 elk-7.2.42/src/LAPACK/zupmtr.f0000644002504400250440000002155414061636515017431 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUPMTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUPMTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUPMTR( SIDE, UPLO, TRANS, M, N, AP, TAU, C, LDC, WORK, * INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS, UPLO * INTEGER INFO, LDC, M, N * .. * .. Array Arguments .. * COMPLEX*16 AP( * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUPMTR overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix of order nq, with nq = m if *> SIDE = 'L' and nq = n if SIDE = 'R'. Q is defined as the product of *> nq-1 elementary reflectors, as returned by ZHPTRD using packed *> storage: *> *> if UPLO = 'U', Q = H(nq-1) . . . H(2) H(1); *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(nq-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangular packed storage used in previous *> call to ZHPTRD; *> = 'L': Lower triangular packed storage used in previous *> call to ZHPTRD. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'C': Conjugate transpose, apply Q**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] AP *> \verbatim *> AP is COMPLEX*16 array, dimension *> (M*(M+1)/2) if SIDE = 'L' *> (N*(N+1)/2) if SIDE = 'R' *> The vectors which define the elementary reflectors, as *> returned by ZHPTRD. AP is modified by the routine but *> restored on exit. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (M-1) if SIDE = 'L' *> or (N-1) if SIDE = 'R' *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZHPTRD. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (N) if SIDE = 'L' *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUPMTR( SIDE, UPLO, TRANS, M, N, AP, TAU, C, LDC, WORK, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS, UPLO INTEGER INFO, LDC, M, N * .. * .. Array Arguments .. COMPLEX*16 AP( * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL FORWRD, LEFT, NOTRAN, UPPER INTEGER I, I1, I2, I3, IC, II, JC, MI, NI, NQ COMPLEX*16 AII, TAUI * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) UPPER = LSAME( UPLO, 'U' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -3 ELSE IF( M.LT.0 ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUPMTR', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) $ RETURN * IF( UPPER ) THEN * * Q was determined by a call to ZHPTRD with UPLO = 'U' * FORWRD = ( LEFT .AND. NOTRAN ) .OR. $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) * IF( FORWRD ) THEN I1 = 1 I2 = NQ - 1 I3 = 1 II = 2 ELSE I1 = NQ - 1 I2 = 1 I3 = -1 II = NQ*( NQ+1 ) / 2 - 1 END IF * IF( LEFT ) THEN NI = N ELSE MI = M END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) or H(i)**H is applied to C(1:i,1:n) * MI = I ELSE * * H(i) or H(i)**H is applied to C(1:m,1:i) * NI = I END IF * * Apply H(i) or H(i)**H * IF( NOTRAN ) THEN TAUI = TAU( I ) ELSE TAUI = DCONJG( TAU( I ) ) END IF AII = AP( II ) AP( II ) = ONE CALL ZLARF( SIDE, MI, NI, AP( II-I+1 ), 1, TAUI, C, LDC, $ WORK ) AP( II ) = AII * IF( FORWRD ) THEN II = II + I + 2 ELSE II = II - I - 1 END IF 10 CONTINUE ELSE * * Q was determined by a call to ZHPTRD with UPLO = 'L'. * FORWRD = ( LEFT .AND. .NOT.NOTRAN ) .OR. $ ( .NOT.LEFT .AND. NOTRAN ) * IF( FORWRD ) THEN I1 = 1 I2 = NQ - 1 I3 = 1 II = 2 ELSE I1 = NQ - 1 I2 = 1 I3 = -1 II = NQ*( NQ+1 ) / 2 - 1 END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 20 I = I1, I2, I3 AII = AP( II ) AP( II ) = ONE IF( LEFT ) THEN * * H(i) or H(i)**H is applied to C(i+1:m,1:n) * MI = M - I IC = I + 1 ELSE * * H(i) or H(i)**H is applied to C(1:m,i+1:n) * NI = N - I JC = I + 1 END IF * * Apply H(i) or H(i)**H * IF( NOTRAN ) THEN TAUI = TAU( I ) ELSE TAUI = DCONJG( TAU( I ) ) END IF CALL ZLARF( SIDE, MI, NI, AP( II ), 1, TAUI, C( IC, JC ), $ LDC, WORK ) AP( II ) = AII * IF( FORWRD ) THEN II = II + NQ - I + 1 ELSE II = II - NQ + I - 2 END IF 20 CONTINUE END IF RETURN * * End of ZUPMTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed1.f0000644000000000000000000000013214061636515015156 xustar0030 mtime=1623670093.257104031 30 atime=1623670093.257104031 30 ctime=1623670093.257104031 elk-7.2.42/src/LAPACK/dlaed1.f0000644002504400250440000002043514061636515017217 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED1 used by sstedc. Computes the updated eigensystem of a diagonal matrix after modification by a rank-one symmetric matrix. Used when the original matrix is tridiagonal. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED1 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED1( N, D, Q, LDQ, INDXQ, RHO, CUTPNT, WORK, IWORK, * INFO ) * * .. Scalar Arguments .. * INTEGER CUTPNT, INFO, LDQ, N * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER INDXQ( * ), IWORK( * ) * DOUBLE PRECISION D( * ), Q( LDQ, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED1 computes the updated eigensystem of a diagonal *> matrix after modification by a rank-one symmetric matrix. This *> routine is used only for the eigenproblem which requires all *> eigenvalues and eigenvectors of a tridiagonal matrix. DLAED7 handles *> the case in which eigenvalues only or eigenvalues and eigenvectors *> of a full symmetric matrix (which was reduced to tridiagonal form) *> are desired. *> *> T = Q(in) ( D(in) + RHO * Z*Z**T ) Q**T(in) = Q(out) * D(out) * Q**T(out) *> *> where Z = Q**T*u, u is a vector of length N with ones in the *> CUTPNT and CUTPNT + 1 th elements and zeros elsewhere. *> *> The eigenvectors of the original matrix are stored in Q, and the *> eigenvalues are in D. The algorithm consists of three stages: *> *> The first stage consists of deflating the size of the problem *> when there are multiple eigenvalues or if there is a zero in *> the Z vector. For each such occurrence the dimension of the *> secular equation problem is reduced by one. This stage is *> performed by the routine DLAED2. *> *> The second stage consists of calculating the updated *> eigenvalues. This is done by finding the roots of the secular *> equation via the routine DLAED4 (as called by DLAED3). *> This routine also calculates the eigenvectors of the current *> problem. *> *> The final stage consists of computing the updated eigenvectors *> directly using the updated eigenvalues. The eigenvectors for *> the current problem are multiplied with the eigenvectors from *> the overall problem. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the eigenvalues of the rank-1-perturbed matrix. *> On exit, the eigenvalues of the repaired matrix. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ,N) *> On entry, the eigenvectors of the rank-1-perturbed matrix. *> On exit, the eigenvectors of the repaired tridiagonal matrix. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[in,out] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> On entry, the permutation which separately sorts the two *> subproblems in D into ascending order. *> On exit, the permutation which will reintegrate the *> subproblems back into sorted order, *> i.e. D( INDXQ( I = 1, N ) ) will be in ascending order. *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The subdiagonal entry used to create the rank-1 modification. *> \endverbatim *> *> \param[in] CUTPNT *> \verbatim *> CUTPNT is INTEGER *> The location of the last eigenvalue in the leading sub-matrix. *> min(1,N) <= CUTPNT <= N/2. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (4*N + N**2) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (4*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = 1, an eigenvalue did not converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA \n *> Modified by Francoise Tisseur, University of Tennessee *> * ===================================================================== SUBROUTINE DLAED1( N, D, Q, LDQ, INDXQ, RHO, CUTPNT, WORK, IWORK, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER CUTPNT, INFO, LDQ, N DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER INDXQ( * ), IWORK( * ) DOUBLE PRECISION D( * ), Q( LDQ, * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER COLTYP, I, IDLMDA, INDX, INDXC, INDXP, IQ2, IS, $ IW, IZ, K, N1, N2, ZPP1 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLAED2, DLAED3, DLAMRG, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( N.LT.0 ) THEN INFO = -1 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( MIN( 1, N / 2 ).GT.CUTPNT .OR. ( N / 2 ).LT.CUTPNT ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED1', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * The following values are integer pointers which indicate * the portion of the workspace * used by a particular array in DLAED2 and DLAED3. * IZ = 1 IDLMDA = IZ + N IW = IDLMDA + N IQ2 = IW + N * INDX = 1 INDXC = INDX + N COLTYP = INDXC + N INDXP = COLTYP + N * * * Form the z-vector which consists of the last row of Q_1 and the * first row of Q_2. * CALL DCOPY( CUTPNT, Q( CUTPNT, 1 ), LDQ, WORK( IZ ), 1 ) ZPP1 = CUTPNT + 1 CALL DCOPY( N-CUTPNT, Q( ZPP1, ZPP1 ), LDQ, WORK( IZ+CUTPNT ), 1 ) * * Deflate eigenvalues. * CALL DLAED2( K, N, CUTPNT, D, Q, LDQ, INDXQ, RHO, WORK( IZ ), $ WORK( IDLMDA ), WORK( IW ), WORK( IQ2 ), $ IWORK( INDX ), IWORK( INDXC ), IWORK( INDXP ), $ IWORK( COLTYP ), INFO ) * IF( INFO.NE.0 ) $ GO TO 20 * * Solve Secular Equation. * IF( K.NE.0 ) THEN IS = ( IWORK( COLTYP )+IWORK( COLTYP+1 ) )*CUTPNT + $ ( IWORK( COLTYP+1 )+IWORK( COLTYP+2 ) )*( N-CUTPNT ) + IQ2 CALL DLAED3( K, N, CUTPNT, D, Q, LDQ, RHO, WORK( IDLMDA ), $ WORK( IQ2 ), IWORK( INDXC ), IWORK( COLTYP ), $ WORK( IW ), WORK( IS ), INFO ) IF( INFO.NE.0 ) $ GO TO 20 * * Prepare the INDXQ sorting permutation. * N1 = K N2 = N - K CALL DLAMRG( N1, N2, D, 1, -1, INDXQ ) ELSE DO 10 I = 1, N INDXQ( I ) = I 10 CONTINUE END IF * 20 CONTINUE RETURN * * End of DLAED1 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlassq.f0000644000000000000000000000013214061636515015313 xustar0030 mtime=1623670093.259104029 30 atime=1623670093.259104029 30 ctime=1623670093.259104029 elk-7.2.42/src/LAPACK/dlassq.f0000644002504400250440000001037414061636515017355 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASSQ updates a sum of squares represented in scaled form. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASSQ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASSQ( N, X, INCX, SCALE, SUMSQ ) * * .. Scalar Arguments .. * INTEGER INCX, N * DOUBLE PRECISION SCALE, SUMSQ * .. * .. Array Arguments .. * DOUBLE PRECISION X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASSQ returns the values scl and smsq such that *> *> ( scl**2 )*smsq = x( 1 )**2 +...+ x( n )**2 + ( scale**2 )*sumsq, *> *> where x( i ) = X( 1 + ( i - 1 )*INCX ). The value of sumsq is *> assumed to be non-negative and scl returns the value *> *> scl = max( scale, abs( x( i ) ) ). *> *> scale and sumsq must be supplied in SCALE and SUMSQ and *> scl and smsq are overwritten on SCALE and SUMSQ respectively. *> *> The routine makes only one pass through the vector x. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of elements to be used from the vector X. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION array, dimension (1+(N-1)*INCX) *> The vector for which a scaled sum of squares is computed. *> x( i ) = X( 1 + ( i - 1 )*INCX ), 1 <= i <= n. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between successive values of the vector X. *> INCX > 0. *> \endverbatim *> *> \param[in,out] SCALE *> \verbatim *> SCALE is DOUBLE PRECISION *> On entry, the value scale in the equation above. *> On exit, SCALE is overwritten with scl , the scaling factor *> for the sum of squares. *> \endverbatim *> *> \param[in,out] SUMSQ *> \verbatim *> SUMSQ is DOUBLE PRECISION *> On entry, the value sumsq in the equation above. *> On exit, SUMSQ is overwritten with smsq , the basic sum of *> squares from which scl has been factored out. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLASSQ( N, X, INCX, SCALE, SUMSQ ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX, N DOUBLE PRECISION SCALE, SUMSQ * .. * .. Array Arguments .. DOUBLE PRECISION X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER IX DOUBLE PRECISION ABSXI * .. * .. External Functions .. LOGICAL DISNAN EXTERNAL DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS * .. * .. Executable Statements .. * IF( N.GT.0 ) THEN DO 10 IX = 1, 1 + ( N-1 )*INCX, INCX ABSXI = ABS( X( IX ) ) IF( ABSXI.GT.ZERO.OR.DISNAN( ABSXI ) ) THEN IF( SCALE.LT.ABSXI ) THEN SUMSQ = 1 + SUMSQ*( SCALE / ABSXI )**2 SCALE = ABSXI ELSE SUMSQ = SUMSQ + ( ABSXI / SCALE )**2 END IF END IF 10 CONTINUE END IF RETURN * * End of DLASSQ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dcombssq.f0000644000000000000000000000013214061636515015637 xustar0030 mtime=1623670093.261104027 30 atime=1623670093.261104027 30 ctime=1623670093.261104027 elk-7.2.42/src/LAPACK/dcombssq.f0000644002504400250440000000423414061636515017677 0ustar00dewhurstdewhurst00000000000000*> \brief \b DCOMBSSQ adds two scaled sum of squares quantities. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * * Definition: * =========== * * SUBROUTINE DCOMBSSQ( V1, V2 ) * * .. Array Arguments .. * DOUBLE PRECISION V1( 2 ), V2( 2 ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DCOMBSSQ adds two scaled sum of squares quantities, V1 := V1 + V2. *> That is, *> *> V1_scale**2 * V1_sumsq := V1_scale**2 * V1_sumsq *> + V2_scale**2 * V2_sumsq *> \endverbatim * * Arguments: * ========== * *> \param[in,out] V1 *> \verbatim *> V1 is DOUBLE PRECISION array, dimension (2). *> The first scaled sum. *> V1(1) = V1_scale, V1(2) = V1_sumsq. *> \endverbatim *> *> \param[in] V2 *> \verbatim *> V2 is DOUBLE PRECISION array, dimension (2). *> The second scaled sum. *> V2(1) = V2_scale, V2(2) = V2_sumsq. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2018 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DCOMBSSQ( V1, V2 ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2018 * * .. Array Arguments .. DOUBLE PRECISION V1( 2 ), V2( 2 ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Executable Statements .. * IF( V1( 1 ).GE.V2( 1 ) ) THEN IF( V1( 1 ).NE.ZERO ) THEN V1( 2 ) = V1( 2 ) + ( V2( 1 ) / V1( 1 ) )**2 * V2( 2 ) END IF ELSE V1( 2 ) = V2( 2 ) + ( V1( 1 ) / V2( 1 ) )**2 * V1( 2 ) V1( 1 ) = V2( 1 ) END IF RETURN * * End of DCOMBSSQ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorgql.f0000644000000000000000000000013214061636515015314 xustar0030 mtime=1623670093.263104025 30 atime=1623670093.262104026 30 ctime=1623670093.263104025 elk-7.2.42/src/LAPACK/dorgql.f0000644002504400250440000002000614061636515017347 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORGQL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORGQL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORGQL( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORGQL generates an M-by-N real matrix Q with orthonormal columns, *> which is defined as the last N columns of a product of K elementary *> reflectors of order M *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by DGEQLF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the (n-k+i)-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by DGEQLF in the last k columns of its array *> argument A. *> On exit, the M-by-N matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQLF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORGQL( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, J, KK, L, LDWORK, LWKOPT, $ NB, NBMIN, NX * .. * .. External Subroutines .. EXTERNAL DLARFB, DLARFT, DORG2L, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF * IF( INFO.EQ.0 ) THEN IF( N.EQ.0 ) THEN LWKOPT = 1 ELSE NB = ILAENV( 1, 'DORGQL', ' ', M, N, K, -1 ) LWKOPT = N*NB END IF WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORGQL', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.LE.0 ) THEN RETURN END IF * NBMIN = 2 NX = 0 IWS = N IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'DORGQL', ' ', M, N, K, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'DORGQL', ' ', M, N, K, -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code after the first block. * The last kk columns are handled by the block method. * KK = MIN( K, ( ( K-NX+NB-1 ) / NB )*NB ) * * Set A(m-kk+1:m,1:n-kk) to zero. * DO 20 J = 1, N - KK DO 10 I = M - KK + 1, M A( I, J ) = ZERO 10 CONTINUE 20 CONTINUE ELSE KK = 0 END IF * * Use unblocked code for the first or only block. * CALL DORG2L( M-KK, N-KK, K-KK, A, LDA, TAU, WORK, IINFO ) * IF( KK.GT.0 ) THEN * * Use blocked code * DO 50 I = K - KK + 1, K, NB IB = MIN( NB, K-I+1 ) IF( N-K+I.GT.1 ) THEN * * Form the triangular factor of the block reflector * H = H(i+ib-1) . . . H(i+1) H(i) * CALL DLARFT( 'Backward', 'Columnwise', M-K+I+IB-1, IB, $ A( 1, N-K+I ), LDA, TAU( I ), WORK, LDWORK ) * * Apply H to A(1:m-k+i+ib-1,1:n-k+i-1) from the left * CALL DLARFB( 'Left', 'No transpose', 'Backward', $ 'Columnwise', M-K+I+IB-1, N-K+I-1, IB, $ A( 1, N-K+I ), LDA, WORK, LDWORK, A, LDA, $ WORK( IB+1 ), LDWORK ) END IF * * Apply H to rows 1:m-k+i+ib-1 of current block * CALL DORG2L( M-K+I+IB-1, IB, IB, A( 1, N-K+I ), LDA, $ TAU( I ), WORK, IINFO ) * * Set rows m-k+i+ib:m of current block to zero * DO 40 J = N - K + I, N - K + I + IB - 1 DO 30 L = M - K + I + IB, M A( L, J ) = ZERO 30 CONTINUE 40 CONTINUE 50 CONTINUE END IF * WORK( 1 ) = IWS RETURN * * End of DORGQL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorgqr.f0000644000000000000000000000013214061636515015322 xustar0030 mtime=1623670093.264104024 30 atime=1623670093.264104024 30 ctime=1623670093.264104024 elk-7.2.42/src/LAPACK/dorgqr.f0000644002504400250440000001761014061636515017364 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORGQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORGQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORGQR( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORGQR generates an M-by-N real matrix Q with orthonormal columns, *> which is defined as the first N columns of a product of K elementary *> reflectors of order M *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by DGEQRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the i-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by DGEQRF in the first k columns of its array *> argument A. *> On exit, the M-by-N matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQRF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORGQR( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, J, KI, KK, L, LDWORK, $ LWKOPT, NB, NBMIN, NX * .. * .. External Subroutines .. EXTERNAL DLARFB, DLARFT, DORG2R, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NB = ILAENV( 1, 'DORGQR', ' ', M, N, K, -1 ) LWKOPT = MAX( 1, N )*NB WORK( 1 ) = LWKOPT LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 ELSE IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORGQR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.LE.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 NX = 0 IWS = N IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'DORGQR', ' ', M, N, K, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'DORGQR', ' ', M, N, K, -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code after the last block. * The first kk columns are handled by the block method. * KI = ( ( K-NX-1 ) / NB )*NB KK = MIN( K, KI+NB ) * * Set A(1:kk,kk+1:n) to zero. * DO 20 J = KK + 1, N DO 10 I = 1, KK A( I, J ) = ZERO 10 CONTINUE 20 CONTINUE ELSE KK = 0 END IF * * Use unblocked code for the last or only block. * IF( KK.LT.N ) $ CALL DORG2R( M-KK, N-KK, K-KK, A( KK+1, KK+1 ), LDA, $ TAU( KK+1 ), WORK, IINFO ) * IF( KK.GT.0 ) THEN * * Use blocked code * DO 50 I = KI + 1, 1, -NB IB = MIN( NB, K-I+1 ) IF( I+IB.LE.N ) THEN * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL DLARFT( 'Forward', 'Columnwise', M-I+1, IB, $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) * * Apply H to A(i:m,i+ib:n) from the left * CALL DLARFB( 'Left', 'No transpose', 'Forward', $ 'Columnwise', M-I+1, N-I-IB+1, IB, $ A( I, I ), LDA, WORK, LDWORK, A( I, I+IB ), $ LDA, WORK( IB+1 ), LDWORK ) END IF * * Apply H to rows i:m of current block * CALL DORG2R( M-I+1, IB, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) * * Set rows 1:i-1 of current block to zero * DO 40 J = I, I + IB - 1 DO 30 L = 1, I - 1 A( L, J ) = ZERO 30 CONTINUE 40 CONTINUE 50 CONTINUE END IF * WORK( 1 ) = IWS RETURN * * End of DORGQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dpotrf2.f0000644000000000000000000000013214061636515015404 xustar0030 mtime=1623670093.266104023 30 atime=1623670093.266104023 30 ctime=1623670093.266104023 elk-7.2.42/src/LAPACK/dpotrf2.f0000644002504400250440000001425614061636515017451 0ustar00dewhurstdewhurst00000000000000*> \brief \b DPOTRF2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * RECURSIVE SUBROUTINE DPOTRF2( UPLO, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * REAL A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DPOTRF2 computes the Cholesky factorization of a real symmetric *> positive definite matrix A using the recursive algorithm. *> *> The factorization has the form *> A = U**T * U, if UPLO = 'U', or *> A = L * L**T, if UPLO = 'L', *> where U is an upper triangular matrix and L is lower triangular. *> *> This is the recursive version of the algorithm. It divides *> the matrix into four submatrices: *> *> [ A11 | A12 ] where A11 is n1 by n1 and A22 is n2 by n2 *> A = [ -----|----- ] with n1 = n/2 *> [ A21 | A22 ] n2 = n-n1 *> *> The subroutine calls itself to factor A11. Update and scale A21 *> or A12, update A22 then calls itself to factor A22. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the factor U or L from the Cholesky *> factorization A = U**T*U or A = L*L**T. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the leading minor of order i is not *> positive definite, and the factorization could not be *> completed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doublePOcomputational * * ===================================================================== RECURSIVE SUBROUTINE DPOTRF2( UPLO, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER N1, N2, IINFO * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL DSYRK, DTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DPOTRF2', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * N=1 case * IF( N.EQ.1 ) THEN * * Test for non-positive-definiteness * IF( A( 1, 1 ).LE.ZERO.OR.DISNAN( A( 1, 1 ) ) ) THEN INFO = 1 RETURN END IF * * Factor * A( 1, 1 ) = SQRT( A( 1, 1 ) ) * * Use recursive code * ELSE N1 = N/2 N2 = N-N1 * * Factor A11 * CALL DPOTRF2( UPLO, N1, A( 1, 1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO RETURN END IF * * Compute the Cholesky factorization A = U**T*U * IF( UPPER ) THEN * * Update and scale A12 * CALL DTRSM( 'L', 'U', 'T', 'N', N1, N2, ONE, $ A( 1, 1 ), LDA, A( 1, N1+1 ), LDA ) * * Update and factor A22 * CALL DSYRK( UPLO, 'T', N2, N1, -ONE, A( 1, N1+1 ), LDA, $ ONE, A( N1+1, N1+1 ), LDA ) CALL DPOTRF2( UPLO, N2, A( N1+1, N1+1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO + N1 RETURN END IF * * Compute the Cholesky factorization A = L*L**T * ELSE * * Update and scale A21 * CALL DTRSM( 'R', 'L', 'T', 'N', N2, N1, ONE, $ A( 1, 1 ), LDA, A( N1+1, 1 ), LDA ) * * Update and factor A22 * CALL DSYRK( UPLO, 'N', N2, N1, -ONE, A( N1+1, 1 ), LDA, $ ONE, A( N1+1, N1+1 ), LDA ) CALL DPOTRF2( UPLO, N2, A( N1+1, N1+1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO + N1 RETURN END IF END IF END IF RETURN * * End of DPOTRF2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaebz.f0000644000000000000000000000013214061636515015265 xustar0030 mtime=1623670093.268104021 30 atime=1623670093.268104021 30 ctime=1623670093.268104021 elk-7.2.42/src/LAPACK/dlaebz.f0000644002504400250440000005402014061636515017323 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAEBZ computes the number of eigenvalues of a real symmetric tridiagonal matrix which are less than or equal to a given value, and performs other tasks required by the routine sstebz. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAEBZ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAEBZ( IJOB, NITMAX, N, MMAX, MINP, NBMIN, ABSTOL, * RELTOL, PIVMIN, D, E, E2, NVAL, AB, C, MOUT, * NAB, WORK, IWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IJOB, INFO, MINP, MMAX, MOUT, N, NBMIN, NITMAX * DOUBLE PRECISION ABSTOL, PIVMIN, RELTOL * .. * .. Array Arguments .. * INTEGER IWORK( * ), NAB( MMAX, * ), NVAL( * ) * DOUBLE PRECISION AB( MMAX, * ), C( * ), D( * ), E( * ), E2( * ), * $ WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAEBZ contains the iteration loops which compute and use the *> function N(w), which is the count of eigenvalues of a symmetric *> tridiagonal matrix T less than or equal to its argument w. It *> performs a choice of two types of loops: *> *> IJOB=1, followed by *> IJOB=2: It takes as input a list of intervals and returns a list of *> sufficiently small intervals whose union contains the same *> eigenvalues as the union of the original intervals. *> The input intervals are (AB(j,1),AB(j,2)], j=1,...,MINP. *> The output interval (AB(j,1),AB(j,2)] will contain *> eigenvalues NAB(j,1)+1,...,NAB(j,2), where 1 <= j <= MOUT. *> *> IJOB=3: It performs a binary search in each input interval *> (AB(j,1),AB(j,2)] for a point w(j) such that *> N(w(j))=NVAL(j), and uses C(j) as the starting point of *> the search. If such a w(j) is found, then on output *> AB(j,1)=AB(j,2)=w. If no such w(j) is found, then on output *> (AB(j,1),AB(j,2)] will be a small interval containing the *> point where N(w) jumps through NVAL(j), unless that point *> lies outside the initial interval. *> *> Note that the intervals are in all cases half-open intervals, *> i.e., of the form (a,b] , which includes b but not a . *> *> To avoid underflow, the matrix should be scaled so that its largest *> element is no greater than overflow**(1/2) * underflow**(1/4) *> in absolute value. To assure the most accurate computation *> of small eigenvalues, the matrix should be scaled to be *> not much smaller than that, either. *> *> See W. Kahan "Accurate Eigenvalues of a Symmetric Tridiagonal *> Matrix", Report CS41, Computer Science Dept., Stanford *> University, July 21, 1966 *> *> Note: the arguments are, in general, *not* checked for unreasonable *> values. *> \endverbatim * * Arguments: * ========== * *> \param[in] IJOB *> \verbatim *> IJOB is INTEGER *> Specifies what is to be done: *> = 1: Compute NAB for the initial intervals. *> = 2: Perform bisection iteration to find eigenvalues of T. *> = 3: Perform bisection iteration to invert N(w), i.e., *> to find a point which has a specified number of *> eigenvalues of T to its left. *> Other values will cause DLAEBZ to return with INFO=-1. *> \endverbatim *> *> \param[in] NITMAX *> \verbatim *> NITMAX is INTEGER *> The maximum number of "levels" of bisection to be *> performed, i.e., an interval of width W will not be made *> smaller than 2^(-NITMAX) * W. If not all intervals *> have converged after NITMAX iterations, then INFO is set *> to the number of non-converged intervals. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension n of the tridiagonal matrix T. It must be at *> least 1. *> \endverbatim *> *> \param[in] MMAX *> \verbatim *> MMAX is INTEGER *> The maximum number of intervals. If more than MMAX intervals *> are generated, then DLAEBZ will quit with INFO=MMAX+1. *> \endverbatim *> *> \param[in] MINP *> \verbatim *> MINP is INTEGER *> The initial number of intervals. It may not be greater than *> MMAX. *> \endverbatim *> *> \param[in] NBMIN *> \verbatim *> NBMIN is INTEGER *> The smallest number of intervals that should be processed *> using a vector loop. If zero, then only the scalar loop *> will be used. *> \endverbatim *> *> \param[in] ABSTOL *> \verbatim *> ABSTOL is DOUBLE PRECISION *> The minimum (absolute) width of an interval. When an *> interval is narrower than ABSTOL, or than RELTOL times the *> larger (in magnitude) endpoint, then it is considered to be *> sufficiently small, i.e., converged. This must be at least *> zero. *> \endverbatim *> *> \param[in] RELTOL *> \verbatim *> RELTOL is DOUBLE PRECISION *> The minimum relative width of an interval. When an interval *> is narrower than ABSTOL, or than RELTOL times the larger (in *> magnitude) endpoint, then it is considered to be *> sufficiently small, i.e., converged. Note: this should *> always be at least radix*machine epsilon. *> \endverbatim *> *> \param[in] PIVMIN *> \verbatim *> PIVMIN is DOUBLE PRECISION *> The minimum absolute value of a "pivot" in the Sturm *> sequence loop. *> This must be at least max |e(j)**2|*safe_min and at *> least safe_min, where safe_min is at least *> the smallest number that can divide one without overflow. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N) *> The offdiagonal elements of the tridiagonal matrix T in *> positions 1 through N-1. E(N) is arbitrary. *> \endverbatim *> *> \param[in] E2 *> \verbatim *> E2 is DOUBLE PRECISION array, dimension (N) *> The squares of the offdiagonal elements of the tridiagonal *> matrix T. E2(N) is ignored. *> \endverbatim *> *> \param[in,out] NVAL *> \verbatim *> NVAL is INTEGER array, dimension (MINP) *> If IJOB=1 or 2, not referenced. *> If IJOB=3, the desired values of N(w). The elements of NVAL *> will be reordered to correspond with the intervals in AB. *> Thus, NVAL(j) on output will not, in general be the same as *> NVAL(j) on input, but it will correspond with the interval *> (AB(j,1),AB(j,2)] on output. *> \endverbatim *> *> \param[in,out] AB *> \verbatim *> AB is DOUBLE PRECISION array, dimension (MMAX,2) *> The endpoints of the intervals. AB(j,1) is a(j), the left *> endpoint of the j-th interval, and AB(j,2) is b(j), the *> right endpoint of the j-th interval. The input intervals *> will, in general, be modified, split, and reordered by the *> calculation. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (MMAX) *> If IJOB=1, ignored. *> If IJOB=2, workspace. *> If IJOB=3, then on input C(j) should be initialized to the *> first search point in the binary search. *> \endverbatim *> *> \param[out] MOUT *> \verbatim *> MOUT is INTEGER *> If IJOB=1, the number of eigenvalues in the intervals. *> If IJOB=2 or 3, the number of intervals output. *> If IJOB=3, MOUT will equal MINP. *> \endverbatim *> *> \param[in,out] NAB *> \verbatim *> NAB is INTEGER array, dimension (MMAX,2) *> If IJOB=1, then on output NAB(i,j) will be set to N(AB(i,j)). *> If IJOB=2, then on input, NAB(i,j) should be set. It must *> satisfy the condition: *> N(AB(i,1)) <= NAB(i,1) <= NAB(i,2) <= N(AB(i,2)), *> which means that in interval i only eigenvalues *> NAB(i,1)+1,...,NAB(i,2) will be considered. Usually, *> NAB(i,j)=N(AB(i,j)), from a previous call to DLAEBZ with *> IJOB=1. *> On output, NAB(i,j) will contain *> max(na(k),min(nb(k),N(AB(i,j)))), where k is the index of *> the input interval that the output interval *> (AB(j,1),AB(j,2)] came from, and na(k) and nb(k) are the *> the input values of NAB(k,1) and NAB(k,2). *> If IJOB=3, then on output, NAB(i,j) contains N(AB(i,j)), *> unless N(w) > NVAL(i) for all search points w , in which *> case NAB(i,1) will not be modified, i.e., the output *> value will be the same as the input value (modulo *> reorderings -- see NVAL and AB), or unless N(w) < NVAL(i) *> for all search points w , in which case NAB(i,2) will *> not be modified. Normally, NAB should be set to some *> distinctive value(s) before DLAEBZ is called. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MMAX) *> Workspace. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (MMAX) *> Workspace. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: All intervals converged. *> = 1--MMAX: The last INFO intervals did not converge. *> = MMAX+1: More than MMAX intervals were generated. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> This routine is intended to be called only by other LAPACK *> routines, thus the interface is less user-friendly. It is intended *> for two purposes: *> *> (a) finding eigenvalues. In this case, DLAEBZ should have one or *> more initial intervals set up in AB, and DLAEBZ should be called *> with IJOB=1. This sets up NAB, and also counts the eigenvalues. *> Intervals with no eigenvalues would usually be thrown out at *> this point. Also, if not all the eigenvalues in an interval i *> are desired, NAB(i,1) can be increased or NAB(i,2) decreased. *> For example, set NAB(i,1)=NAB(i,2)-1 to get the largest *> eigenvalue. DLAEBZ is then called with IJOB=2 and MMAX *> no smaller than the value of MOUT returned by the call with *> IJOB=1. After this (IJOB=2) call, eigenvalues NAB(i,1)+1 *> through NAB(i,2) are approximately AB(i,1) (or AB(i,2)) to the *> tolerance specified by ABSTOL and RELTOL. *> *> (b) finding an interval (a',b'] containing eigenvalues w(f),...,w(l). *> In this case, start with a Gershgorin interval (a,b). Set up *> AB to contain 2 search intervals, both initially (a,b). One *> NVAL element should contain f-1 and the other should contain l *> , while C should contain a and b, resp. NAB(i,1) should be -1 *> and NAB(i,2) should be N+1, to flag an error if the desired *> interval does not lie in (a,b). DLAEBZ is then called with *> IJOB=3. On exit, if w(f-1) < w(f), then one of the intervals -- *> j -- will have AB(j,1)=AB(j,2) and NAB(j,1)=NAB(j,2)=f-1, while *> if, to the specified tolerance, w(f-k)=...=w(f+r), k > 0 and r *> >= 0, then the interval will have N(AB(j,1))=NAB(j,1)=f-k and *> N(AB(j,2))=NAB(j,2)=f+r. The cases w(l) < w(l+1) and *> w(l-r)=...=w(l+k) are handled similarly. *> \endverbatim *> * ===================================================================== SUBROUTINE DLAEBZ( IJOB, NITMAX, N, MMAX, MINP, NBMIN, ABSTOL, $ RELTOL, PIVMIN, D, E, E2, NVAL, AB, C, MOUT, $ NAB, WORK, IWORK, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IJOB, INFO, MINP, MMAX, MOUT, N, NBMIN, NITMAX DOUBLE PRECISION ABSTOL, PIVMIN, RELTOL * .. * .. Array Arguments .. INTEGER IWORK( * ), NAB( MMAX, * ), NVAL( * ) DOUBLE PRECISION AB( MMAX, * ), C( * ), D( * ), E( * ), E2( * ), $ WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, TWO, HALF PARAMETER ( ZERO = 0.0D0, TWO = 2.0D0, $ HALF = 1.0D0 / TWO ) * .. * .. Local Scalars .. INTEGER ITMP1, ITMP2, J, JI, JIT, JP, KF, KFNEW, KL, $ KLNEW DOUBLE PRECISION TMP1, TMP2 * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN * .. * .. Executable Statements .. * * Check for Errors * INFO = 0 IF( IJOB.LT.1 .OR. IJOB.GT.3 ) THEN INFO = -1 RETURN END IF * * Initialize NAB * IF( IJOB.EQ.1 ) THEN * * Compute the number of eigenvalues in the initial intervals. * MOUT = 0 DO 30 JI = 1, MINP DO 20 JP = 1, 2 TMP1 = D( 1 ) - AB( JI, JP ) IF( ABS( TMP1 ).LT.PIVMIN ) $ TMP1 = -PIVMIN NAB( JI, JP ) = 0 IF( TMP1.LE.ZERO ) $ NAB( JI, JP ) = 1 * DO 10 J = 2, N TMP1 = D( J ) - E2( J-1 ) / TMP1 - AB( JI, JP ) IF( ABS( TMP1 ).LT.PIVMIN ) $ TMP1 = -PIVMIN IF( TMP1.LE.ZERO ) $ NAB( JI, JP ) = NAB( JI, JP ) + 1 10 CONTINUE 20 CONTINUE MOUT = MOUT + NAB( JI, 2 ) - NAB( JI, 1 ) 30 CONTINUE RETURN END IF * * Initialize for loop * * KF and KL have the following meaning: * Intervals 1,...,KF-1 have converged. * Intervals KF,...,KL still need to be refined. * KF = 1 KL = MINP * * If IJOB=2, initialize C. * If IJOB=3, use the user-supplied starting point. * IF( IJOB.EQ.2 ) THEN DO 40 JI = 1, MINP C( JI ) = HALF*( AB( JI, 1 )+AB( JI, 2 ) ) 40 CONTINUE END IF * * Iteration loop * DO 130 JIT = 1, NITMAX * * Loop over intervals * IF( KL-KF+1.GE.NBMIN .AND. NBMIN.GT.0 ) THEN * * Begin of Parallel Version of the loop * DO 60 JI = KF, KL * * Compute N(c), the number of eigenvalues less than c * WORK( JI ) = D( 1 ) - C( JI ) IWORK( JI ) = 0 IF( WORK( JI ).LE.PIVMIN ) THEN IWORK( JI ) = 1 WORK( JI ) = MIN( WORK( JI ), -PIVMIN ) END IF * DO 50 J = 2, N WORK( JI ) = D( J ) - E2( J-1 ) / WORK( JI ) - C( JI ) IF( WORK( JI ).LE.PIVMIN ) THEN IWORK( JI ) = IWORK( JI ) + 1 WORK( JI ) = MIN( WORK( JI ), -PIVMIN ) END IF 50 CONTINUE 60 CONTINUE * IF( IJOB.LE.2 ) THEN * * IJOB=2: Choose all intervals containing eigenvalues. * KLNEW = KL DO 70 JI = KF, KL * * Insure that N(w) is monotone * IWORK( JI ) = MIN( NAB( JI, 2 ), $ MAX( NAB( JI, 1 ), IWORK( JI ) ) ) * * Update the Queue -- add intervals if both halves * contain eigenvalues. * IF( IWORK( JI ).EQ.NAB( JI, 2 ) ) THEN * * No eigenvalue in the upper interval: * just use the lower interval. * AB( JI, 2 ) = C( JI ) * ELSE IF( IWORK( JI ).EQ.NAB( JI, 1 ) ) THEN * * No eigenvalue in the lower interval: * just use the upper interval. * AB( JI, 1 ) = C( JI ) ELSE KLNEW = KLNEW + 1 IF( KLNEW.LE.MMAX ) THEN * * Eigenvalue in both intervals -- add upper to * queue. * AB( KLNEW, 2 ) = AB( JI, 2 ) NAB( KLNEW, 2 ) = NAB( JI, 2 ) AB( KLNEW, 1 ) = C( JI ) NAB( KLNEW, 1 ) = IWORK( JI ) AB( JI, 2 ) = C( JI ) NAB( JI, 2 ) = IWORK( JI ) ELSE INFO = MMAX + 1 END IF END IF 70 CONTINUE IF( INFO.NE.0 ) $ RETURN KL = KLNEW ELSE * * IJOB=3: Binary search. Keep only the interval containing * w s.t. N(w) = NVAL * DO 80 JI = KF, KL IF( IWORK( JI ).LE.NVAL( JI ) ) THEN AB( JI, 1 ) = C( JI ) NAB( JI, 1 ) = IWORK( JI ) END IF IF( IWORK( JI ).GE.NVAL( JI ) ) THEN AB( JI, 2 ) = C( JI ) NAB( JI, 2 ) = IWORK( JI ) END IF 80 CONTINUE END IF * ELSE * * End of Parallel Version of the loop * * Begin of Serial Version of the loop * KLNEW = KL DO 100 JI = KF, KL * * Compute N(w), the number of eigenvalues less than w * TMP1 = C( JI ) TMP2 = D( 1 ) - TMP1 ITMP1 = 0 IF( TMP2.LE.PIVMIN ) THEN ITMP1 = 1 TMP2 = MIN( TMP2, -PIVMIN ) END IF * DO 90 J = 2, N TMP2 = D( J ) - E2( J-1 ) / TMP2 - TMP1 IF( TMP2.LE.PIVMIN ) THEN ITMP1 = ITMP1 + 1 TMP2 = MIN( TMP2, -PIVMIN ) END IF 90 CONTINUE * IF( IJOB.LE.2 ) THEN * * IJOB=2: Choose all intervals containing eigenvalues. * * Insure that N(w) is monotone * ITMP1 = MIN( NAB( JI, 2 ), $ MAX( NAB( JI, 1 ), ITMP1 ) ) * * Update the Queue -- add intervals if both halves * contain eigenvalues. * IF( ITMP1.EQ.NAB( JI, 2 ) ) THEN * * No eigenvalue in the upper interval: * just use the lower interval. * AB( JI, 2 ) = TMP1 * ELSE IF( ITMP1.EQ.NAB( JI, 1 ) ) THEN * * No eigenvalue in the lower interval: * just use the upper interval. * AB( JI, 1 ) = TMP1 ELSE IF( KLNEW.LT.MMAX ) THEN * * Eigenvalue in both intervals -- add upper to queue. * KLNEW = KLNEW + 1 AB( KLNEW, 2 ) = AB( JI, 2 ) NAB( KLNEW, 2 ) = NAB( JI, 2 ) AB( KLNEW, 1 ) = TMP1 NAB( KLNEW, 1 ) = ITMP1 AB( JI, 2 ) = TMP1 NAB( JI, 2 ) = ITMP1 ELSE INFO = MMAX + 1 RETURN END IF ELSE * * IJOB=3: Binary search. Keep only the interval * containing w s.t. N(w) = NVAL * IF( ITMP1.LE.NVAL( JI ) ) THEN AB( JI, 1 ) = TMP1 NAB( JI, 1 ) = ITMP1 END IF IF( ITMP1.GE.NVAL( JI ) ) THEN AB( JI, 2 ) = TMP1 NAB( JI, 2 ) = ITMP1 END IF END IF 100 CONTINUE KL = KLNEW * END IF * * Check for convergence * KFNEW = KF DO 110 JI = KF, KL TMP1 = ABS( AB( JI, 2 )-AB( JI, 1 ) ) TMP2 = MAX( ABS( AB( JI, 2 ) ), ABS( AB( JI, 1 ) ) ) IF( TMP1.LT.MAX( ABSTOL, PIVMIN, RELTOL*TMP2 ) .OR. $ NAB( JI, 1 ).GE.NAB( JI, 2 ) ) THEN * * Converged -- Swap with position KFNEW, * then increment KFNEW * IF( JI.GT.KFNEW ) THEN TMP1 = AB( JI, 1 ) TMP2 = AB( JI, 2 ) ITMP1 = NAB( JI, 1 ) ITMP2 = NAB( JI, 2 ) AB( JI, 1 ) = AB( KFNEW, 1 ) AB( JI, 2 ) = AB( KFNEW, 2 ) NAB( JI, 1 ) = NAB( KFNEW, 1 ) NAB( JI, 2 ) = NAB( KFNEW, 2 ) AB( KFNEW, 1 ) = TMP1 AB( KFNEW, 2 ) = TMP2 NAB( KFNEW, 1 ) = ITMP1 NAB( KFNEW, 2 ) = ITMP2 IF( IJOB.EQ.3 ) THEN ITMP1 = NVAL( JI ) NVAL( JI ) = NVAL( KFNEW ) NVAL( KFNEW ) = ITMP1 END IF END IF KFNEW = KFNEW + 1 END IF 110 CONTINUE KF = KFNEW * * Choose Midpoints * DO 120 JI = KF, KL C( JI ) = HALF*( AB( JI, 1 )+AB( JI, 2 ) ) 120 CONTINUE * * If no more intervals to refine, quit. * IF( KF.GT.KL ) $ GO TO 140 130 CONTINUE * * Converged * 140 CONTINUE INFO = MAX( KL+1-KF, 0 ) MOUT = KL * RETURN * * End of DLAEBZ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaset.f0000644000000000000000000000013214061636515015300 xustar0030 mtime=1623670093.270104019 30 atime=1623670093.270104019 30 ctime=1623670093.270104019 elk-7.2.42/src/LAPACK/dlaset.f0000644002504400250440000001147414061636515017344 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASET + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASET( UPLO, M, N, ALPHA, BETA, A, LDA ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, M, N * DOUBLE PRECISION ALPHA, BETA * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASET initializes an m-by-n matrix A to BETA on the diagonal and *> ALPHA on the offdiagonals. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies the part of the matrix A to be set. *> = 'U': Upper triangular part is set; the strictly lower *> triangular part of A is not changed. *> = 'L': Lower triangular part is set; the strictly upper *> triangular part of A is not changed. *> Otherwise: All of the matrix A is set. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION *> The constant to which the offdiagonal elements are to be set. *> \endverbatim *> *> \param[in] BETA *> \verbatim *> BETA is DOUBLE PRECISION *> The constant to which the diagonal elements are to be set. *> \endverbatim *> *> \param[out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On exit, the leading m-by-n submatrix of A is set as follows: *> *> if UPLO = 'U', A(i,j) = ALPHA, 1<=i<=j-1, 1<=j<=n, *> if UPLO = 'L', A(i,j) = ALPHA, j+1<=i<=m, 1<=j<=n, *> otherwise, A(i,j) = ALPHA, 1<=i<=m, 1<=j<=n, i.ne.j, *> *> and, for all UPLO, A(i,i) = BETA, 1<=i<=min(m,n). *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLASET( UPLO, M, N, ALPHA, BETA, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, M, N DOUBLE PRECISION ALPHA, BETA * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( LSAME( UPLO, 'U' ) ) THEN * * Set the strictly upper triangular or trapezoidal part of the * array to ALPHA. * DO 20 J = 2, N DO 10 I = 1, MIN( J-1, M ) A( I, J ) = ALPHA 10 CONTINUE 20 CONTINUE * ELSE IF( LSAME( UPLO, 'L' ) ) THEN * * Set the strictly lower triangular or trapezoidal part of the * array to ALPHA. * DO 40 J = 1, MIN( M, N ) DO 30 I = J + 1, M A( I, J ) = ALPHA 30 CONTINUE 40 CONTINUE * ELSE * * Set the leading m-by-n submatrix to ALPHA. * DO 60 J = 1, N DO 50 I = 1, M A( I, J ) = ALPHA 50 CONTINUE 60 CONTINUE END IF * * Set the first min(M,N) diagonal elements to BETA. * DO 70 I = 1, MIN( M, N ) A( I, I ) = BETA 70 CONTINUE * RETURN * * End of DLASET * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlanst.f0000644000000000000000000000013214061636515015311 xustar0030 mtime=1623670093.272104017 30 atime=1623670093.272104017 30 ctime=1623670093.272104017 elk-7.2.42/src/LAPACK/dlanst.f0000644002504400250440000001232414061636515017350 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLANST returns the value of the 1-norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a real symmetric tridiagonal matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLANST + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DLANST( NORM, N, D, E ) * * .. Scalar Arguments .. * CHARACTER NORM * INTEGER N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLANST returns the value of the one norm, or the Frobenius norm, or *> the infinity norm, or the element of largest absolute value of a *> real symmetric tridiagonal matrix A. *> \endverbatim *> *> \return DLANST *> \verbatim *> *> DLANST = ( max(abs(A(i,j))), NORM = 'M' or 'm' *> ( *> ( norm1(A), NORM = '1', 'O' or 'o' *> ( *> ( normI(A), NORM = 'I' or 'i' *> ( *> ( normF(A), NORM = 'F', 'f', 'E' or 'e' *> *> where norm1 denotes the one norm of a matrix (maximum column sum), *> normI denotes the infinity norm of a matrix (maximum row sum) and *> normF denotes the Frobenius norm of a matrix (square root of sum of *> squares). Note that max(abs(A(i,j))) is not a consistent matrix norm. *> \endverbatim * * Arguments: * ========== * *> \param[in] NORM *> \verbatim *> NORM is CHARACTER*1 *> Specifies the value to be returned in DLANST as described *> above. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. When N = 0, DLANST is *> set to zero. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of A. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The (n-1) sub-diagonal or super-diagonal elements of A. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION DLANST( NORM, N, D, E ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER NORM INTEGER N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I DOUBLE PRECISION ANORM, SCALE, SUM * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL DLASSQ * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * IF( N.LE.0 ) THEN ANORM = ZERO ELSE IF( LSAME( NORM, 'M' ) ) THEN * * Find max(abs(A(i,j))). * ANORM = ABS( D( N ) ) DO 10 I = 1, N - 1 SUM = ABS( D( I ) ) IF( ANORM .LT. SUM .OR. DISNAN( SUM ) ) ANORM = SUM SUM = ABS( E( I ) ) IF( ANORM .LT. SUM .OR. DISNAN( SUM ) ) ANORM = SUM 10 CONTINUE ELSE IF( LSAME( NORM, 'O' ) .OR. NORM.EQ.'1' .OR. $ LSAME( NORM, 'I' ) ) THEN * * Find norm1(A). * IF( N.EQ.1 ) THEN ANORM = ABS( D( 1 ) ) ELSE ANORM = ABS( D( 1 ) )+ABS( E( 1 ) ) SUM = ABS( E( N-1 ) )+ABS( D( N ) ) IF( ANORM .LT. SUM .OR. DISNAN( SUM ) ) ANORM = SUM DO 20 I = 2, N - 1 SUM = ABS( D( I ) )+ABS( E( I ) )+ABS( E( I-1 ) ) IF( ANORM .LT. SUM .OR. DISNAN( SUM ) ) ANORM = SUM 20 CONTINUE END IF ELSE IF( ( LSAME( NORM, 'F' ) ) .OR. ( LSAME( NORM, 'E' ) ) ) THEN * * Find normF(A). * SCALE = ZERO SUM = ONE IF( N.GT.1 ) THEN CALL DLASSQ( N-1, E, 1, SCALE, SUM ) SUM = 2*SUM END IF CALL DLASSQ( N, D, 1, SCALE, SUM ) ANORM = SCALE*SQRT( SUM ) END IF * DLANST = ANORM RETURN * * End of DLANST * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaev2.f0000644000000000000000000000013214061636515015201 xustar0030 mtime=1623670093.274104015 30 atime=1623670093.273104016 30 ctime=1623670093.274104015 elk-7.2.42/src/LAPACK/dlaev2.f0000644002504400250440000001407214061636515017242 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAEV2 computes the eigenvalues and eigenvectors of a 2-by-2 symmetric/Hermitian matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAEV2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAEV2( A, B, C, RT1, RT2, CS1, SN1 ) * * .. Scalar Arguments .. * DOUBLE PRECISION A, B, C, CS1, RT1, RT2, SN1 * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAEV2 computes the eigendecomposition of a 2-by-2 symmetric matrix *> [ A B ] *> [ B C ]. *> On return, RT1 is the eigenvalue of larger absolute value, RT2 is the *> eigenvalue of smaller absolute value, and (CS1,SN1) is the unit right *> eigenvector for RT1, giving the decomposition *> *> [ CS1 SN1 ] [ A B ] [ CS1 -SN1 ] = [ RT1 0 ] *> [-SN1 CS1 ] [ B C ] [ SN1 CS1 ] [ 0 RT2 ]. *> \endverbatim * * Arguments: * ========== * *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION *> The (1,1) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION *> The (1,2) element and the conjugate of the (2,1) element of *> the 2-by-2 matrix. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> The (2,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[out] RT1 *> \verbatim *> RT1 is DOUBLE PRECISION *> The eigenvalue of larger absolute value. *> \endverbatim *> *> \param[out] RT2 *> \verbatim *> RT2 is DOUBLE PRECISION *> The eigenvalue of smaller absolute value. *> \endverbatim *> *> \param[out] CS1 *> \verbatim *> CS1 is DOUBLE PRECISION *> \endverbatim *> *> \param[out] SN1 *> \verbatim *> SN1 is DOUBLE PRECISION *> The vector (CS1, SN1) is a unit right eigenvector for RT1. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> RT1 is accurate to a few ulps barring over/underflow. *> *> RT2 may be inaccurate if there is massive cancellation in the *> determinant A*C-B*B; higher precision or correctly rounded or *> correctly truncated arithmetic would be needed to compute RT2 *> accurately in all cases. *> *> CS1 and SN1 are accurate to a few ulps barring over/underflow. *> *> Overflow is possible only if RT1 is within a factor of 5 of overflow. *> Underflow is harmless if the input data is 0 or exceeds *> underflow_threshold / macheps. *> \endverbatim *> * ===================================================================== SUBROUTINE DLAEV2( A, B, C, RT1, RT2, CS1, SN1 ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION A, B, C, CS1, RT1, RT2, SN1 * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION HALF PARAMETER ( HALF = 0.5D0 ) * .. * .. Local Scalars .. INTEGER SGN1, SGN2 DOUBLE PRECISION AB, ACMN, ACMX, ACS, ADF, CS, CT, DF, RT, SM, $ TB, TN * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * * Compute the eigenvalues * SM = A + C DF = A - C ADF = ABS( DF ) TB = B + B AB = ABS( TB ) IF( ABS( A ).GT.ABS( C ) ) THEN ACMX = A ACMN = C ELSE ACMX = C ACMN = A END IF IF( ADF.GT.AB ) THEN RT = ADF*SQRT( ONE+( AB / ADF )**2 ) ELSE IF( ADF.LT.AB ) THEN RT = AB*SQRT( ONE+( ADF / AB )**2 ) ELSE * * Includes case AB=ADF=0 * RT = AB*SQRT( TWO ) END IF IF( SM.LT.ZERO ) THEN RT1 = HALF*( SM-RT ) SGN1 = -1 * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE IF( SM.GT.ZERO ) THEN RT1 = HALF*( SM+RT ) SGN1 = 1 * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE * * Includes case RT1 = RT2 = 0 * RT1 = HALF*RT RT2 = -HALF*RT SGN1 = 1 END IF * * Compute the eigenvector * IF( DF.GE.ZERO ) THEN CS = DF + RT SGN2 = 1 ELSE CS = DF - RT SGN2 = -1 END IF ACS = ABS( CS ) IF( ACS.GT.AB ) THEN CT = -TB / CS SN1 = ONE / SQRT( ONE+CT*CT ) CS1 = CT*SN1 ELSE IF( AB.EQ.ZERO ) THEN CS1 = ONE SN1 = ZERO ELSE TN = -CS / TB CS1 = ONE / SQRT( ONE+TN*TN ) SN1 = TN*CS1 END IF END IF IF( SGN1.EQ.SGN2 ) THEN TN = CS1 CS1 = -SN1 SN1 = TN END IF RETURN * * End of DLAEV2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasr.f0000644000000000000000000000013214061636515015131 xustar0030 mtime=1623670093.276104013 30 atime=1623670093.275104014 30 ctime=1623670093.276104013 elk-7.2.42/src/LAPACK/dlasr.f0000644002504400250440000003530614061636515017175 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASR applies a sequence of plane rotations to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASR( SIDE, PIVOT, DIRECT, M, N, C, S, A, LDA ) * * .. Scalar Arguments .. * CHARACTER DIRECT, PIVOT, SIDE * INTEGER LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( * ), S( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASR applies a sequence of plane rotations to a real matrix A, *> from either the left or the right. *> *> When SIDE = 'L', the transformation takes the form *> *> A := P*A *> *> and when SIDE = 'R', the transformation takes the form *> *> A := A*P**T *> *> where P is an orthogonal matrix consisting of a sequence of z plane *> rotations, with z = M when SIDE = 'L' and z = N when SIDE = 'R', *> and P**T is the transpose of P. *> *> When DIRECT = 'F' (Forward sequence), then *> *> P = P(z-1) * ... * P(2) * P(1) *> *> and when DIRECT = 'B' (Backward sequence), then *> *> P = P(1) * P(2) * ... * P(z-1) *> *> where P(k) is a plane rotation matrix defined by the 2-by-2 rotation *> *> R(k) = ( c(k) s(k) ) *> = ( -s(k) c(k) ). *> *> When PIVOT = 'V' (Variable pivot), the rotation is performed *> for the plane (k,k+1), i.e., P(k) has the form *> *> P(k) = ( 1 ) *> ( ... ) *> ( 1 ) *> ( c(k) s(k) ) *> ( -s(k) c(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> *> where R(k) appears as a rank-2 modification to the identity matrix in *> rows and columns k and k+1. *> *> When PIVOT = 'T' (Top pivot), the rotation is performed for the *> plane (1,k+1), so P(k) has the form *> *> P(k) = ( c(k) s(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> ( -s(k) c(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> *> where R(k) appears in rows and columns 1 and k+1. *> *> Similarly, when PIVOT = 'B' (Bottom pivot), the rotation is *> performed for the plane (k,z), giving P(k) the form *> *> P(k) = ( 1 ) *> ( ... ) *> ( 1 ) *> ( c(k) s(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> ( -s(k) c(k) ) *> *> where R(k) appears in rows and columns k and z. The rotations are *> performed without ever forming P(k) explicitly. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> Specifies whether the plane rotation matrix P is applied to *> A on the left or the right. *> = 'L': Left, compute A := P*A *> = 'R': Right, compute A:= A*P**T *> \endverbatim *> *> \param[in] PIVOT *> \verbatim *> PIVOT is CHARACTER*1 *> Specifies the plane for which P(k) is a plane rotation *> matrix. *> = 'V': Variable pivot, the plane (k,k+1) *> = 'T': Top pivot, the plane (1,k+1) *> = 'B': Bottom pivot, the plane (k,z) *> \endverbatim *> *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Specifies whether P is a forward or backward sequence of *> plane rotations. *> = 'F': Forward, P = P(z-1)*...*P(2)*P(1) *> = 'B': Backward, P = P(1)*P(2)*...*P(z-1) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. If m <= 1, an immediate *> return is effected. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. If n <= 1, an *> immediate return is effected. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> The cosines c(k) of the plane rotations. *> \endverbatim *> *> \param[in] S *> \verbatim *> S is DOUBLE PRECISION array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> The sines s(k) of the plane rotations. The 2-by-2 plane *> rotation part of the matrix P(k), R(k), has the form *> R(k) = ( c(k) s(k) ) *> ( -s(k) c(k) ). *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The M-by-N matrix A. On exit, A is overwritten by P*A if *> SIDE = 'L' or by A*P**T if SIDE = 'R'. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLASR( SIDE, PIVOT, DIRECT, M, N, C, S, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIRECT, PIVOT, SIDE INTEGER LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( * ), S( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, INFO, J DOUBLE PRECISION CTEMP, STEMP, TEMP * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( .NOT.( LSAME( SIDE, 'L' ) .OR. LSAME( SIDE, 'R' ) ) ) THEN INFO = 1 ELSE IF( .NOT.( LSAME( PIVOT, 'V' ) .OR. LSAME( PIVOT, $ 'T' ) .OR. LSAME( PIVOT, 'B' ) ) ) THEN INFO = 2 ELSE IF( .NOT.( LSAME( DIRECT, 'F' ) .OR. LSAME( DIRECT, 'B' ) ) ) $ THEN INFO = 3 ELSE IF( M.LT.0 ) THEN INFO = 4 ELSE IF( N.LT.0 ) THEN INFO = 5 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = 9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLASR ', INFO ) RETURN END IF * * Quick return if possible * IF( ( M.EQ.0 ) .OR. ( N.EQ.0 ) ) $ RETURN IF( LSAME( SIDE, 'L' ) ) THEN * * Form P * A * IF( LSAME( PIVOT, 'V' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 20 J = 1, M - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 10 I = 1, N TEMP = A( J+1, I ) A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) 10 CONTINUE END IF 20 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 40 J = M - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 30 I = 1, N TEMP = A( J+1, I ) A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) 30 CONTINUE END IF 40 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'T' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 60 J = 2, M CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 50 I = 1, N TEMP = A( J, I ) A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) 50 CONTINUE END IF 60 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 80 J = M, 2, -1 CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 70 I = 1, N TEMP = A( J, I ) A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) 70 CONTINUE END IF 80 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'B' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 100 J = 1, M - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 90 I = 1, N TEMP = A( J, I ) A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP 90 CONTINUE END IF 100 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 120 J = M - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 110 I = 1, N TEMP = A( J, I ) A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP 110 CONTINUE END IF 120 CONTINUE END IF END IF ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form A * P**T * IF( LSAME( PIVOT, 'V' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 140 J = 1, N - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 130 I = 1, M TEMP = A( I, J+1 ) A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) 130 CONTINUE END IF 140 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 160 J = N - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 150 I = 1, M TEMP = A( I, J+1 ) A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) 150 CONTINUE END IF 160 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'T' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 180 J = 2, N CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 170 I = 1, M TEMP = A( I, J ) A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) 170 CONTINUE END IF 180 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 200 J = N, 2, -1 CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 190 I = 1, M TEMP = A( I, J ) A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) 190 CONTINUE END IF 200 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'B' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 220 J = 1, N - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 210 I = 1, M TEMP = A( I, J ) A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP 210 CONTINUE END IF 220 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 240 J = N - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 230 I = 1, M TEMP = A( I, J ) A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP 230 CONTINUE END IF 240 CONTINUE END IF END IF END IF * RETURN * * End of DLASR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlae2.f0000644000000000000000000000013214061636515015013 xustar0030 mtime=1623670093.277104012 30 atime=1623670093.277104012 30 ctime=1623670093.277104012 elk-7.2.42/src/LAPACK/dlae2.f0000644002504400250440000001131114061636515017045 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAE2 computes the eigenvalues of a 2-by-2 symmetric matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAE2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAE2( A, B, C, RT1, RT2 ) * * .. Scalar Arguments .. * DOUBLE PRECISION A, B, C, RT1, RT2 * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAE2 computes the eigenvalues of a 2-by-2 symmetric matrix *> [ A B ] *> [ B C ]. *> On return, RT1 is the eigenvalue of larger absolute value, and RT2 *> is the eigenvalue of smaller absolute value. *> \endverbatim * * Arguments: * ========== * *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION *> The (1,1) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION *> The (1,2) and (2,1) elements of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> The (2,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[out] RT1 *> \verbatim *> RT1 is DOUBLE PRECISION *> The eigenvalue of larger absolute value. *> \endverbatim *> *> \param[out] RT2 *> \verbatim *> RT2 is DOUBLE PRECISION *> The eigenvalue of smaller absolute value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> RT1 is accurate to a few ulps barring over/underflow. *> *> RT2 may be inaccurate if there is massive cancellation in the *> determinant A*C-B*B; higher precision or correctly rounded or *> correctly truncated arithmetic would be needed to compute RT2 *> accurately in all cases. *> *> Overflow is possible only if RT1 is within a factor of 5 of overflow. *> Underflow is harmless if the input data is 0 or exceeds *> underflow_threshold / macheps. *> \endverbatim *> * ===================================================================== SUBROUTINE DLAE2( A, B, C, RT1, RT2 ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION A, B, C, RT1, RT2 * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION HALF PARAMETER ( HALF = 0.5D0 ) * .. * .. Local Scalars .. DOUBLE PRECISION AB, ACMN, ACMX, ADF, DF, RT, SM, TB * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * * Compute the eigenvalues * SM = A + C DF = A - C ADF = ABS( DF ) TB = B + B AB = ABS( TB ) IF( ABS( A ).GT.ABS( C ) ) THEN ACMX = A ACMN = C ELSE ACMX = C ACMN = A END IF IF( ADF.GT.AB ) THEN RT = ADF*SQRT( ONE+( AB / ADF )**2 ) ELSE IF( ADF.LT.AB ) THEN RT = AB*SQRT( ONE+( ADF / AB )**2 ) ELSE * * Includes case AB=ADF=0 * RT = AB*SQRT( TWO ) END IF IF( SM.LT.ZERO ) THEN RT1 = HALF*( SM-RT ) * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE IF( SM.GT.ZERO ) THEN RT1 = HALF*( SM+RT ) * * Order of execution important. * To get fully accurate smaller eigenvalue, * next line needs to be executed in higher precision. * RT2 = ( ACMX / RT1 )*ACMN - ( B / RT1 )*B ELSE * * Includes case RT1 = RT2 = 0 * RT1 = HALF*RT RT2 = -HALF*RT END IF RETURN * * End of DLAE2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlapy2.f0000644000000000000000000000013214061636515015217 xustar0030 mtime=1623670093.279104011 30 atime=1623670093.279104011 30 ctime=1623670093.279104011 elk-7.2.42/src/LAPACK/dlapy2.f0000644002504400250440000000546614061636515017267 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAPY2 returns sqrt(x2+y2). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAPY2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DLAPY2( X, Y ) * * .. Scalar Arguments .. * DOUBLE PRECISION X, Y * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary *> overflow. *> \endverbatim * * Arguments: * ========== * *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is DOUBLE PRECISION *> X and Y specify the values x and y. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup OTHERauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION DLAPY2( X, Y ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. DOUBLE PRECISION X, Y * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) * .. * .. Local Scalars .. DOUBLE PRECISION W, XABS, YABS, Z LOGICAL X_IS_NAN, Y_IS_NAN * .. * .. External Functions .. LOGICAL DISNAN EXTERNAL DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * X_IS_NAN = DISNAN( X ) Y_IS_NAN = DISNAN( Y ) IF ( X_IS_NAN ) DLAPY2 = X IF ( Y_IS_NAN ) DLAPY2 = Y * IF ( .NOT.( X_IS_NAN.OR.Y_IS_NAN ) ) THEN XABS = ABS( X ) YABS = ABS( Y ) W = MAX( XABS, YABS ) Z = MIN( XABS, YABS ) IF( Z.EQ.ZERO ) THEN DLAPY2 = W ELSE DLAPY2 = W*SQRT( ONE+( Z / W )**2 ) END IF END IF RETURN * * End of DLAPY2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlartg.f0000644000000000000000000000013214061636515015301 xustar0030 mtime=1623670093.281104009 30 atime=1623670093.281104009 30 ctime=1623670093.281104009 elk-7.2.42/src/LAPACK/dlartg.f0000644002504400250440000001261314061636515017341 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARTG generates a plane rotation with real cosine and real sine. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARTG + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARTG( F, G, CS, SN, R ) * * .. Scalar Arguments .. * DOUBLE PRECISION CS, F, G, R, SN * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARTG generate a plane rotation so that *> *> [ CS SN ] . [ F ] = [ R ] where CS**2 + SN**2 = 1. *> [ -SN CS ] [ G ] [ 0 ] *> *> This is a slower, more accurate version of the BLAS1 routine DROTG, *> with the following other differences: *> F and G are unchanged on return. *> If G=0, then CS=1 and SN=0. *> If F=0 and (G .ne. 0), then CS=0 and SN=1 without doing any *> floating point operations (saves work in DBDSQR when *> there are zeros on the diagonal). *> *> If F exceeds G in magnitude, CS will be positive. *> \endverbatim * * Arguments: * ========== * *> \param[in] F *> \verbatim *> F is DOUBLE PRECISION *> The first component of vector to be rotated. *> \endverbatim *> *> \param[in] G *> \verbatim *> G is DOUBLE PRECISION *> The second component of vector to be rotated. *> \endverbatim *> *> \param[out] CS *> \verbatim *> CS is DOUBLE PRECISION *> The cosine of the rotation. *> \endverbatim *> *> \param[out] SN *> \verbatim *> SN is DOUBLE PRECISION *> The sine of the rotation. *> \endverbatim *> *> \param[out] R *> \verbatim *> R is DOUBLE PRECISION *> The nonzero component of the rotated vector. *> *> This version has a few statements commented out for thread safety *> (machine parameters are computed on each entry). 10 feb 03, SJH. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLARTG( F, G, CS, SN, R ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION CS, F, G, R, SN * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) * .. * .. Local Scalars .. * LOGICAL FIRST INTEGER COUNT, I DOUBLE PRECISION EPS, F1, G1, SAFMIN, SAFMN2, SAFMX2, SCALE * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Intrinsic Functions .. INTRINSIC ABS, INT, LOG, MAX, SQRT * .. * .. Save statement .. * SAVE FIRST, SAFMX2, SAFMIN, SAFMN2 * .. * .. Data statements .. * DATA FIRST / .TRUE. / * .. * .. Executable Statements .. * * IF( FIRST ) THEN SAFMIN = DLAMCH( 'S' ) EPS = DLAMCH( 'E' ) SAFMN2 = DLAMCH( 'B' )**INT( LOG( SAFMIN / EPS ) / $ LOG( DLAMCH( 'B' ) ) / TWO ) SAFMX2 = ONE / SAFMN2 * FIRST = .FALSE. * END IF IF( G.EQ.ZERO ) THEN CS = ONE SN = ZERO R = F ELSE IF( F.EQ.ZERO ) THEN CS = ZERO SN = ONE R = G ELSE F1 = F G1 = G SCALE = MAX( ABS( F1 ), ABS( G1 ) ) IF( SCALE.GE.SAFMX2 ) THEN COUNT = 0 10 CONTINUE COUNT = COUNT + 1 F1 = F1*SAFMN2 G1 = G1*SAFMN2 SCALE = MAX( ABS( F1 ), ABS( G1 ) ) IF( SCALE.GE.SAFMX2 ) $ GO TO 10 R = SQRT( F1**2+G1**2 ) CS = F1 / R SN = G1 / R DO 20 I = 1, COUNT R = R*SAFMX2 20 CONTINUE ELSE IF( SCALE.LE.SAFMN2 ) THEN COUNT = 0 30 CONTINUE COUNT = COUNT + 1 F1 = F1*SAFMX2 G1 = G1*SAFMX2 SCALE = MAX( ABS( F1 ), ABS( G1 ) ) IF( SCALE.LE.SAFMN2 ) $ GO TO 30 R = SQRT( F1**2+G1**2 ) CS = F1 / R SN = G1 / R DO 40 I = 1, COUNT R = R*SAFMN2 40 CONTINUE ELSE R = SQRT( F1**2+G1**2 ) CS = F1 / R SN = G1 / R END IF IF( ABS( F ).GT.ABS( G ) .AND. CS.LT.ZERO ) THEN CS = -CS SN = -SN R = -R END IF END IF RETURN * * End of DLARTG * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasrt.f0000644000000000000000000000013214061636515015315 xustar0030 mtime=1623670093.283104007 30 atime=1623670093.282104008 30 ctime=1623670093.283104007 elk-7.2.42/src/LAPACK/dlasrt.f0000644002504400250440000001731414061636515017360 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASRT sorts numbers in increasing or decreasing order. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASRT + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASRT( ID, N, D, INFO ) * * .. Scalar Arguments .. * CHARACTER ID * INTEGER INFO, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> Sort the numbers in D in increasing order (if ID = 'I') or *> in decreasing order (if ID = 'D' ). *> *> Use Quick Sort, reverting to Insertion sort on arrays of *> size <= 20. Dimension of STACK limits N to about 2**32. *> \endverbatim * * Arguments: * ========== * *> \param[in] ID *> \verbatim *> ID is CHARACTER*1 *> = 'I': sort D in increasing order; *> = 'D': sort D in decreasing order. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The length of the array D. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the array to be sorted. *> On exit, D has been sorted into increasing order *> (D(1) <= ... <= D(N) ) or into decreasing order *> (D(1) >= ... >= D(N) ), depending on ID. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLASRT( ID, N, D, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER ID INTEGER INFO, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER SELECT PARAMETER ( SELECT = 20 ) * .. * .. Local Scalars .. INTEGER DIR, ENDD, I, J, START, STKPNT DOUBLE PRECISION D1, D2, D3, DMNMX, TMP * .. * .. Local Arrays .. INTEGER STACK( 2, 32 ) * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 DIR = -1 IF( LSAME( ID, 'D' ) ) THEN DIR = 0 ELSE IF( LSAME( ID, 'I' ) ) THEN DIR = 1 END IF IF( DIR.EQ.-1 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLASRT', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.1 ) $ RETURN * STKPNT = 1 STACK( 1, 1 ) = 1 STACK( 2, 1 ) = N 10 CONTINUE START = STACK( 1, STKPNT ) ENDD = STACK( 2, STKPNT ) STKPNT = STKPNT - 1 IF( ENDD-START.LE.SELECT .AND. ENDD-START.GT.0 ) THEN * * Do Insertion sort on D( START:ENDD ) * IF( DIR.EQ.0 ) THEN * * Sort into decreasing order * DO 30 I = START + 1, ENDD DO 20 J = I, START + 1, -1 IF( D( J ).GT.D( J-1 ) ) THEN DMNMX = D( J ) D( J ) = D( J-1 ) D( J-1 ) = DMNMX ELSE GO TO 30 END IF 20 CONTINUE 30 CONTINUE * ELSE * * Sort into increasing order * DO 50 I = START + 1, ENDD DO 40 J = I, START + 1, -1 IF( D( J ).LT.D( J-1 ) ) THEN DMNMX = D( J ) D( J ) = D( J-1 ) D( J-1 ) = DMNMX ELSE GO TO 50 END IF 40 CONTINUE 50 CONTINUE * END IF * ELSE IF( ENDD-START.GT.SELECT ) THEN * * Partition D( START:ENDD ) and stack parts, largest one first * * Choose partition entry as median of 3 * D1 = D( START ) D2 = D( ENDD ) I = ( START+ENDD ) / 2 D3 = D( I ) IF( D1.LT.D2 ) THEN IF( D3.LT.D1 ) THEN DMNMX = D1 ELSE IF( D3.LT.D2 ) THEN DMNMX = D3 ELSE DMNMX = D2 END IF ELSE IF( D3.LT.D2 ) THEN DMNMX = D2 ELSE IF( D3.LT.D1 ) THEN DMNMX = D3 ELSE DMNMX = D1 END IF END IF * IF( DIR.EQ.0 ) THEN * * Sort into decreasing order * I = START - 1 J = ENDD + 1 60 CONTINUE 70 CONTINUE J = J - 1 IF( D( J ).LT.DMNMX ) $ GO TO 70 80 CONTINUE I = I + 1 IF( D( I ).GT.DMNMX ) $ GO TO 80 IF( I.LT.J ) THEN TMP = D( I ) D( I ) = D( J ) D( J ) = TMP GO TO 60 END IF IF( J-START.GT.ENDD-J-1 ) THEN STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = START STACK( 2, STKPNT ) = J STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = J + 1 STACK( 2, STKPNT ) = ENDD ELSE STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = J + 1 STACK( 2, STKPNT ) = ENDD STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = START STACK( 2, STKPNT ) = J END IF ELSE * * Sort into increasing order * I = START - 1 J = ENDD + 1 90 CONTINUE 100 CONTINUE J = J - 1 IF( D( J ).GT.DMNMX ) $ GO TO 100 110 CONTINUE I = I + 1 IF( D( I ).LT.DMNMX ) $ GO TO 110 IF( I.LT.J ) THEN TMP = D( I ) D( I ) = D( J ) D( J ) = TMP GO TO 90 END IF IF( J-START.GT.ENDD-J-1 ) THEN STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = START STACK( 2, STKPNT ) = J STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = J + 1 STACK( 2, STKPNT ) = ENDD ELSE STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = J + 1 STACK( 2, STKPNT ) = ENDD STKPNT = STKPNT + 1 STACK( 1, STKPNT ) = START STACK( 2, STKPNT ) = J END IF END IF END IF IF( STKPNT.GT.0 ) $ GO TO 10 RETURN * * End of DLASRT * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlacpy.f0000644000000000000000000000013214061636515015300 xustar0030 mtime=1623670093.285104005 30 atime=1623670093.284104006 30 ctime=1623670093.285104005 elk-7.2.42/src/LAPACK/dlacpy.f0000644002504400250440000001000114061636515017325 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLACPY copies all or part of one two-dimensional array to another. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLACPY + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLACPY( UPLO, M, N, A, LDA, B, LDB ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, LDB, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLACPY copies all or part of a two-dimensional matrix A to another *> matrix B. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies the part of the matrix A to be copied to B. *> = 'U': Upper triangular part *> = 'L': Lower triangular part *> Otherwise: All of the matrix A *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The m by n matrix A. If UPLO = 'U', only the upper triangle *> or trapezoid is accessed; if UPLO = 'L', only the lower *> triangle or trapezoid is accessed. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB,N) *> On exit, B = A in the locations specified by UPLO. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLACPY( UPLO, M, N, A, LDA, B, LDB ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, LDB, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( LSAME( UPLO, 'U' ) ) THEN DO 20 J = 1, N DO 10 I = 1, MIN( J, M ) B( I, J ) = A( I, J ) 10 CONTINUE 20 CONTINUE ELSE IF( LSAME( UPLO, 'L' ) ) THEN DO 40 J = 1, N DO 30 I = J, M B( I, J ) = A( I, J ) 30 CONTINUE 40 CONTINUE ELSE DO 60 J = 1, N DO 50 I = 1, M B( I, J ) = A( I, J ) 50 CONTINUE 60 CONTINUE END IF RETURN * * End of DLACPY * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dstein.f0000644000000000000000000000013214061636515015312 xustar0030 mtime=1623670093.286104004 30 atime=1623670093.286104004 30 ctime=1623670093.286104004 elk-7.2.42/src/LAPACK/dstein.f0000644002504400250440000003214114061636515017350 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSTEIN * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSTEIN + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSTEIN( N, D, E, M, W, IBLOCK, ISPLIT, Z, LDZ, WORK, * IWORK, IFAIL, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDZ, M, N * .. * .. Array Arguments .. * INTEGER IBLOCK( * ), IFAIL( * ), ISPLIT( * ), * $ IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSTEIN computes the eigenvectors of a real symmetric tridiagonal *> matrix T corresponding to specified eigenvalues, using inverse *> iteration. *> *> The maximum number of iterations allowed for each eigenvector is *> specified by an internal parameter MAXITS (currently set to 5). *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix. N >= 0. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The n diagonal elements of the tridiagonal matrix T. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The (n-1) subdiagonal elements of the tridiagonal matrix *> T, in elements 1 to N-1. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of eigenvectors to be found. 0 <= M <= N. *> \endverbatim *> *> \param[in] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> The first M elements of W contain the eigenvalues for *> which eigenvectors are to be computed. The eigenvalues *> should be grouped by split-off block and ordered from *> smallest to largest within the block. ( The output array *> W from DSTEBZ with ORDER = 'B' is expected here. ) *> \endverbatim *> *> \param[in] IBLOCK *> \verbatim *> IBLOCK is INTEGER array, dimension (N) *> The submatrix indices associated with the corresponding *> eigenvalues in W; IBLOCK(i)=1 if eigenvalue W(i) belongs to *> the first submatrix from the top, =2 if W(i) belongs to *> the second submatrix, etc. ( The output array IBLOCK *> from DSTEBZ is expected here. ) *> \endverbatim *> *> \param[in] ISPLIT *> \verbatim *> ISPLIT is INTEGER array, dimension (N) *> The splitting points, at which T breaks up into submatrices. *> The first submatrix consists of rows/columns 1 to *> ISPLIT( 1 ), the second of rows/columns ISPLIT( 1 )+1 *> through ISPLIT( 2 ), etc. *> ( The output array ISPLIT from DSTEBZ is expected here. ) *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (LDZ, M) *> The computed eigenvectors. The eigenvector associated *> with the eigenvalue W(i) is stored in the i-th column of *> Z. Any vector which fails to converge is set to its current *> iterate after MAXITS iterations. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (5*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (N) *> \endverbatim *> *> \param[out] IFAIL *> \verbatim *> IFAIL is INTEGER array, dimension (M) *> On normal exit, all elements of IFAIL are zero. *> If one or more eigenvectors fail to converge after *> MAXITS iterations, then their indices are stored in *> array IFAIL. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, then i eigenvectors failed to converge *> in MAXITS iterations. Their indices are stored in *> array IFAIL. *> \endverbatim * *> \par Internal Parameters: * ========================= *> *> \verbatim *> MAXITS INTEGER, default = 5 *> The maximum number of iterations performed. *> *> EXTRA INTEGER, default = 2 *> The number of iterations performed after norm growth *> criterion is satisfied, should be at least 1. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DSTEIN( N, D, E, M, W, IBLOCK, ISPLIT, Z, LDZ, WORK, $ IWORK, IFAIL, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDZ, M, N * .. * .. Array Arguments .. INTEGER IBLOCK( * ), IFAIL( * ), ISPLIT( * ), $ IWORK( * ) DOUBLE PRECISION D( * ), E( * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TEN, ODM3, ODM1 PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0, TEN = 1.0D+1, $ ODM3 = 1.0D-3, ODM1 = 1.0D-1 ) INTEGER MAXITS, EXTRA PARAMETER ( MAXITS = 5, EXTRA = 2 ) * .. * .. Local Scalars .. INTEGER B1, BLKSIZ, BN, GPIND, I, IINFO, INDRV1, $ INDRV2, INDRV3, INDRV4, INDRV5, ITS, J, J1, $ JBLK, JMAX, NBLK, NRMCHK DOUBLE PRECISION DTPCRT, EPS, EPS1, NRM, ONENRM, ORTOL, PERTOL, $ SCL, SEP, TOL, XJ, XJM, ZTR * .. * .. Local Arrays .. INTEGER ISEED( 4 ) * .. * .. External Functions .. INTEGER IDAMAX DOUBLE PRECISION DDOT, DLAMCH, DNRM2 EXTERNAL IDAMAX, DDOT, DLAMCH, DNRM2 * .. * .. External Subroutines .. EXTERNAL DAXPY, DCOPY, DLAGTF, DLAGTS, DLARNV, DSCAL, $ XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 DO 10 I = 1, M IFAIL( I ) = 0 10 CONTINUE * IF( N.LT.0 ) THEN INFO = -1 ELSE IF( M.LT.0 .OR. M.GT.N ) THEN INFO = -4 ELSE IF( LDZ.LT.MAX( 1, N ) ) THEN INFO = -9 ELSE DO 20 J = 2, M IF( IBLOCK( J ).LT.IBLOCK( J-1 ) ) THEN INFO = -6 GO TO 30 END IF IF( IBLOCK( J ).EQ.IBLOCK( J-1 ) .AND. W( J ).LT.W( J-1 ) ) $ THEN INFO = -5 GO TO 30 END IF 20 CONTINUE 30 CONTINUE END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSTEIN', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 .OR. M.EQ.0 ) THEN RETURN ELSE IF( N.EQ.1 ) THEN Z( 1, 1 ) = ONE RETURN END IF * * Get machine constants. * EPS = DLAMCH( 'Precision' ) * * Initialize seed for random number generator DLARNV. * DO 40 I = 1, 4 ISEED( I ) = 1 40 CONTINUE * * Initialize pointers. * INDRV1 = 0 INDRV2 = INDRV1 + N INDRV3 = INDRV2 + N INDRV4 = INDRV3 + N INDRV5 = INDRV4 + N * * Compute eigenvectors of matrix blocks. * J1 = 1 DO 160 NBLK = 1, IBLOCK( M ) * * Find starting and ending indices of block nblk. * IF( NBLK.EQ.1 ) THEN B1 = 1 ELSE B1 = ISPLIT( NBLK-1 ) + 1 END IF BN = ISPLIT( NBLK ) BLKSIZ = BN - B1 + 1 IF( BLKSIZ.EQ.1 ) $ GO TO 60 GPIND = J1 * * Compute reorthogonalization criterion and stopping criterion. * ONENRM = ABS( D( B1 ) ) + ABS( E( B1 ) ) ONENRM = MAX( ONENRM, ABS( D( BN ) )+ABS( E( BN-1 ) ) ) DO 50 I = B1 + 1, BN - 1 ONENRM = MAX( ONENRM, ABS( D( I ) )+ABS( E( I-1 ) )+ $ ABS( E( I ) ) ) 50 CONTINUE ORTOL = ODM3*ONENRM * DTPCRT = SQRT( ODM1 / BLKSIZ ) * * Loop through eigenvalues of block nblk. * 60 CONTINUE JBLK = 0 DO 150 J = J1, M IF( IBLOCK( J ).NE.NBLK ) THEN J1 = J GO TO 160 END IF JBLK = JBLK + 1 XJ = W( J ) * * Skip all the work if the block size is one. * IF( BLKSIZ.EQ.1 ) THEN WORK( INDRV1+1 ) = ONE GO TO 120 END IF * * If eigenvalues j and j-1 are too close, add a relatively * small perturbation. * IF( JBLK.GT.1 ) THEN EPS1 = ABS( EPS*XJ ) PERTOL = TEN*EPS1 SEP = XJ - XJM IF( SEP.LT.PERTOL ) $ XJ = XJM + PERTOL END IF * ITS = 0 NRMCHK = 0 * * Get random starting vector. * CALL DLARNV( 2, ISEED, BLKSIZ, WORK( INDRV1+1 ) ) * * Copy the matrix T so it won't be destroyed in factorization. * CALL DCOPY( BLKSIZ, D( B1 ), 1, WORK( INDRV4+1 ), 1 ) CALL DCOPY( BLKSIZ-1, E( B1 ), 1, WORK( INDRV2+2 ), 1 ) CALL DCOPY( BLKSIZ-1, E( B1 ), 1, WORK( INDRV3+1 ), 1 ) * * Compute LU factors with partial pivoting ( PT = LU ) * TOL = ZERO CALL DLAGTF( BLKSIZ, WORK( INDRV4+1 ), XJ, WORK( INDRV2+2 ), $ WORK( INDRV3+1 ), TOL, WORK( INDRV5+1 ), IWORK, $ IINFO ) * * Update iteration count. * 70 CONTINUE ITS = ITS + 1 IF( ITS.GT.MAXITS ) $ GO TO 100 * * Normalize and scale the righthand side vector Pb. * JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) SCL = BLKSIZ*ONENRM*MAX( EPS, $ ABS( WORK( INDRV4+BLKSIZ ) ) ) / $ ABS( WORK( INDRV1+JMAX ) ) CALL DSCAL( BLKSIZ, SCL, WORK( INDRV1+1 ), 1 ) * * Solve the system LU = Pb. * CALL DLAGTS( -1, BLKSIZ, WORK( INDRV4+1 ), WORK( INDRV2+2 ), $ WORK( INDRV3+1 ), WORK( INDRV5+1 ), IWORK, $ WORK( INDRV1+1 ), TOL, IINFO ) * * Reorthogonalize by modified Gram-Schmidt if eigenvalues are * close enough. * IF( JBLK.EQ.1 ) $ GO TO 90 IF( ABS( XJ-XJM ).GT.ORTOL ) $ GPIND = J IF( GPIND.NE.J ) THEN DO 80 I = GPIND, J - 1 ZTR = -DDOT( BLKSIZ, WORK( INDRV1+1 ), 1, Z( B1, I ), $ 1 ) CALL DAXPY( BLKSIZ, ZTR, Z( B1, I ), 1, $ WORK( INDRV1+1 ), 1 ) 80 CONTINUE END IF * * Check the infinity norm of the iterate. * 90 CONTINUE JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) NRM = ABS( WORK( INDRV1+JMAX ) ) * * Continue for additional iterations after norm reaches * stopping criterion. * IF( NRM.LT.DTPCRT ) $ GO TO 70 NRMCHK = NRMCHK + 1 IF( NRMCHK.LT.EXTRA+1 ) $ GO TO 70 * GO TO 110 * * If stopping criterion was not satisfied, update info and * store eigenvector number in array ifail. * 100 CONTINUE INFO = INFO + 1 IFAIL( INFO ) = J * * Accept iterate as jth eigenvector. * 110 CONTINUE SCL = ONE / DNRM2( BLKSIZ, WORK( INDRV1+1 ), 1 ) JMAX = IDAMAX( BLKSIZ, WORK( INDRV1+1 ), 1 ) IF( WORK( INDRV1+JMAX ).LT.ZERO ) $ SCL = -SCL CALL DSCAL( BLKSIZ, SCL, WORK( INDRV1+1 ), 1 ) 120 CONTINUE DO 130 I = 1, N Z( I, J ) = ZERO 130 CONTINUE DO 140 I = 1, BLKSIZ Z( B1+I-1, J ) = WORK( INDRV1+I ) 140 CONTINUE * * Save the shift to check eigenvalue spacing at next * iteration. * XJM = XJ * 150 CONTINUE 160 CONTINUE * RETURN * * End of DSTEIN * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dormtr.f0000644000000000000000000000013214061636515015333 xustar0030 mtime=1623670093.288104002 30 atime=1623670093.288104002 30 ctime=1623670093.288104002 elk-7.2.42/src/LAPACK/dormtr.f0000644002504400250440000002113414061636515017371 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORMTR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORMTR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS, UPLO * INTEGER INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORMTR overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'T': Q**T * C C * Q**T *> *> where Q is a real orthogonal matrix of order nq, with nq = m if *> SIDE = 'L' and nq = n if SIDE = 'R'. Q is defined as the product of *> nq-1 elementary reflectors, as returned by DSYTRD: *> *> if UPLO = 'U', Q = H(nq-1) . . . H(2) H(1); *> *> if UPLO = 'L', Q = H(1) H(2) . . . H(nq-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**T from the Left; *> = 'R': apply Q or Q**T from the Right. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A contains elementary reflectors *> from DSYTRD; *> = 'L': Lower triangle of A contains elementary reflectors *> from DSYTRD. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'T': Transpose, apply Q**T. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension *> (LDA,M) if SIDE = 'L' *> (LDA,N) if SIDE = 'R' *> The vectors which define the elementary reflectors, as *> returned by DSYTRD. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> LDA >= max(1,M) if SIDE = 'L'; LDA >= max(1,N) if SIDE = 'R'. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DSYTRD. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For optimum performance LWORK >= N*NB if SIDE = 'L', and *> LWORK >= M*NB if SIDE = 'R', where NB is the optimal *> blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORMTR( SIDE, UPLO, TRANS, M, N, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS, UPLO INTEGER INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL LEFT, LQUERY, UPPER INTEGER I1, I2, IINFO, LWKOPT, MI, NB, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DORMQL, DORMQR, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) UPPER = LSAME( UPLO, 'U' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( .NOT.LSAME( TRANS, 'N' ) .AND. .NOT.LSAME( TRANS, 'T' ) ) $ THEN INFO = -3 ELSE IF( M.LT.0 ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN IF( UPPER ) THEN IF( LEFT ) THEN NB = ILAENV( 1, 'DORMQL', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'DORMQL', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF ELSE IF( LEFT ) THEN NB = ILAENV( 1, 'DORMQR', SIDE // TRANS, M-1, N, M-1, $ -1 ) ELSE NB = ILAENV( 1, 'DORMQR', SIDE // TRANS, M, N-1, N-1, $ -1 ) END IF END IF LWKOPT = MAX( 1, NW )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORMTR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. NQ.EQ.1 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( LEFT ) THEN MI = M - 1 NI = N ELSE MI = M NI = N - 1 END IF * IF( UPPER ) THEN * * Q was determined by a call to DSYTRD with UPLO = 'U' * CALL DORMQL( SIDE, TRANS, MI, NI, NQ-1, A( 1, 2 ), LDA, TAU, C, $ LDC, WORK, LWORK, IINFO ) ELSE * * Q was determined by a call to DSYTRD with UPLO = 'L' * IF( LEFT ) THEN I1 = 2 I2 = 1 ELSE I1 = 1 I2 = 2 END IF CALL DORMQR( SIDE, TRANS, MI, NI, NQ-1, A( 2, 1 ), LDA, TAU, $ C( I1, I2 ), LDC, WORK, LWORK, IINFO ) END IF WORK( 1 ) = LWKOPT RETURN * * End of DORMTR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsygs2.f0000644000000000000000000000012114061636515015235 xustar0027 mtime=1623670093.290104 27 atime=1623670093.290104 27 ctime=1623670093.290104 elk-7.2.42/src/LAPACK/dsygs2.f0000644002504400250440000002123714061636515017301 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYGS2 reduces a symmetric definite generalized eigenproblem to standard form, using the factorization results obtained from spotrf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYGS2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYGS2 reduces a real symmetric-definite generalized eigenproblem *> to standard form. *> *> If ITYPE = 1, the problem is A*x = lambda*B*x, *> and A is overwritten by inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T) *> *> If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or *> B*A*x = lambda*x, and A is overwritten by U*A*U**T or L**T *A*L. *> *> B must have been previously factorized as U**T *U or L*L**T by DPOTRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> = 1: compute inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T); *> = 2 or 3: compute U*A*U**T or L**T *A*L. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> symmetric matrix A is stored, and how B has been factorized. *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> n by n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n by n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the transformed matrix, stored in the *> same format as A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB,N) *> The triangular factor from the Cholesky factorization of B, *> as returned by DPOTRF. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYcomputational * * ===================================================================== SUBROUTINE DSYGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, HALF PARAMETER ( ONE = 1.0D0, HALF = 0.5D0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER K DOUBLE PRECISION AKK, BKK, CT * .. * .. External Subroutines .. EXTERNAL DAXPY, DSCAL, DSYR2, DTRMV, DTRSV, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYGS2', -INFO ) RETURN END IF * IF( ITYPE.EQ.1 ) THEN IF( UPPER ) THEN * * Compute inv(U**T)*A*inv(U) * DO 10 K = 1, N * * Update the upper triangle of A(k:n,k:n) * AKK = A( K, K ) BKK = B( K, K ) AKK = AKK / BKK**2 A( K, K ) = AKK IF( K.LT.N ) THEN CALL DSCAL( N-K, ONE / BKK, A( K, K+1 ), LDA ) CT = -HALF*AKK CALL DAXPY( N-K, CT, B( K, K+1 ), LDB, A( K, K+1 ), $ LDA ) CALL DSYR2( UPLO, N-K, -ONE, A( K, K+1 ), LDA, $ B( K, K+1 ), LDB, A( K+1, K+1 ), LDA ) CALL DAXPY( N-K, CT, B( K, K+1 ), LDB, A( K, K+1 ), $ LDA ) CALL DTRSV( UPLO, 'Transpose', 'Non-unit', N-K, $ B( K+1, K+1 ), LDB, A( K, K+1 ), LDA ) END IF 10 CONTINUE ELSE * * Compute inv(L)*A*inv(L**T) * DO 20 K = 1, N * * Update the lower triangle of A(k:n,k:n) * AKK = A( K, K ) BKK = B( K, K ) AKK = AKK / BKK**2 A( K, K ) = AKK IF( K.LT.N ) THEN CALL DSCAL( N-K, ONE / BKK, A( K+1, K ), 1 ) CT = -HALF*AKK CALL DAXPY( N-K, CT, B( K+1, K ), 1, A( K+1, K ), 1 ) CALL DSYR2( UPLO, N-K, -ONE, A( K+1, K ), 1, $ B( K+1, K ), 1, A( K+1, K+1 ), LDA ) CALL DAXPY( N-K, CT, B( K+1, K ), 1, A( K+1, K ), 1 ) CALL DTRSV( UPLO, 'No transpose', 'Non-unit', N-K, $ B( K+1, K+1 ), LDB, A( K+1, K ), 1 ) END IF 20 CONTINUE END IF ELSE IF( UPPER ) THEN * * Compute U*A*U**T * DO 30 K = 1, N * * Update the upper triangle of A(1:k,1:k) * AKK = A( K, K ) BKK = B( K, K ) CALL DTRMV( UPLO, 'No transpose', 'Non-unit', K-1, B, $ LDB, A( 1, K ), 1 ) CT = HALF*AKK CALL DAXPY( K-1, CT, B( 1, K ), 1, A( 1, K ), 1 ) CALL DSYR2( UPLO, K-1, ONE, A( 1, K ), 1, B( 1, K ), 1, $ A, LDA ) CALL DAXPY( K-1, CT, B( 1, K ), 1, A( 1, K ), 1 ) CALL DSCAL( K-1, BKK, A( 1, K ), 1 ) A( K, K ) = AKK*BKK**2 30 CONTINUE ELSE * * Compute L**T *A*L * DO 40 K = 1, N * * Update the lower triangle of A(1:k,1:k) * AKK = A( K, K ) BKK = B( K, K ) CALL DTRMV( UPLO, 'Transpose', 'Non-unit', K-1, B, LDB, $ A( K, 1 ), LDA ) CT = HALF*AKK CALL DAXPY( K-1, CT, B( K, 1 ), LDB, A( K, 1 ), LDA ) CALL DSYR2( UPLO, K-1, ONE, A( K, 1 ), LDA, B( K, 1 ), $ LDB, A, LDA ) CALL DAXPY( K-1, CT, B( K, 1 ), LDB, A( K, 1 ), LDA ) CALL DSCAL( K-1, BKK, A( K, 1 ), LDA ) A( K, K ) = AKK*BKK**2 40 CONTINUE END IF END IF RETURN * * End of DSYGS2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlatrd.f0000644000000000000000000000013214061636515015276 xustar0030 mtime=1623670093.292103998 30 atime=1623670093.292103998 30 ctime=1623670093.292103998 elk-7.2.42/src/LAPACK/dlatrd.f0000644002504400250440000002656014061636515017344 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLATRD reduces the first nb rows and columns of a symmetric/Hermitian matrix A to real tridiagonal form by an orthogonal similarity transformation. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLATRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLATRD( UPLO, N, NB, A, LDA, E, TAU, W, LDW ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, LDW, N, NB * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), E( * ), TAU( * ), W( LDW, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLATRD reduces NB rows and columns of a real symmetric matrix A to *> symmetric tridiagonal form by an orthogonal similarity *> transformation Q**T * A * Q, and returns the matrices V and W which are *> needed to apply the transformation to the unreduced part of A. *> *> If UPLO = 'U', DLATRD reduces the last NB rows and columns of a *> matrix, of which the upper triangle is supplied; *> if UPLO = 'L', DLATRD reduces the first NB rows and columns of a *> matrix, of which the lower triangle is supplied. *> *> This is an auxiliary routine called by DSYTRD. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> symmetric matrix A is stored: *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. *> \endverbatim *> *> \param[in] NB *> \verbatim *> NB is INTEGER *> The number of rows and columns to be reduced. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> n-by-n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n-by-n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit: *> if UPLO = 'U', the last NB columns have been reduced to *> tridiagonal form, with the diagonal elements overwriting *> the diagonal elements of A; the elements above the diagonal *> with the array TAU, represent the orthogonal matrix Q as a *> product of elementary reflectors; *> if UPLO = 'L', the first NB columns have been reduced to *> tridiagonal form, with the diagonal elements overwriting *> the diagonal elements of A; the elements below the diagonal *> with the array TAU, represent the orthogonal matrix Q as a *> product of elementary reflectors. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= (1,N). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> If UPLO = 'U', E(n-nb:n-1) contains the superdiagonal *> elements of the last NB columns of the reduced matrix; *> if UPLO = 'L', E(1:nb) contains the subdiagonal elements of *> the first NB columns of the reduced matrix. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (N-1) *> The scalar factors of the elementary reflectors, stored in *> TAU(n-nb:n-1) if UPLO = 'U', and in TAU(1:nb) if UPLO = 'L'. *> See Further Details. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (LDW,NB) *> The n-by-nb matrix W required to update the unreduced part *> of A. *> \endverbatim *> *> \param[in] LDW *> \verbatim *> LDW is INTEGER *> The leading dimension of the array W. LDW >= max(1,N). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n) H(n-1) . . . H(n-nb+1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(i:n) = 0 and v(i-1) = 1; v(1:i-1) is stored on exit in A(1:i-1,i), *> and tau in TAU(i-1). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(nb). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+1:n) is stored on exit in A(i+1:n,i), *> and tau in TAU(i). *> *> The elements of the vectors v together form the n-by-nb matrix V *> which is needed, with W, to apply the transformation to the unreduced *> part of the matrix, using a symmetric rank-2k update of the form: *> A := A - V*W**T - W*V**T. *> *> The contents of A on exit are illustrated by the following examples *> with n = 5 and nb = 2: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( a a a v4 v5 ) ( d ) *> ( a a v4 v5 ) ( 1 d ) *> ( a 1 v5 ) ( v1 1 a ) *> ( d 1 ) ( v1 v2 a a ) *> ( d ) ( v1 v2 a a a ) *> *> where d denotes a diagonal element of the reduced matrix, a denotes *> an element of the original matrix that is unchanged, and vi denotes *> an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE DLATRD( UPLO, N, NB, A, LDA, E, TAU, W, LDW ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, LDW, N, NB * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), E( * ), TAU( * ), W( LDW, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, HALF PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0, HALF = 0.5D+0 ) * .. * .. Local Scalars .. INTEGER I, IW DOUBLE PRECISION ALPHA * .. * .. External Subroutines .. EXTERNAL DAXPY, DGEMV, DLARFG, DSCAL, DSYMV * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DDOT EXTERNAL LSAME, DDOT * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * * Quick return if possible * IF( N.LE.0 ) $ RETURN * IF( LSAME( UPLO, 'U' ) ) THEN * * Reduce last NB columns of upper triangle * DO 10 I = N, N - NB + 1, -1 IW = I - N + NB IF( I.LT.N ) THEN * * Update A(1:i,i) * CALL DGEMV( 'No transpose', I, N-I, -ONE, A( 1, I+1 ), $ LDA, W( I, IW+1 ), LDW, ONE, A( 1, I ), 1 ) CALL DGEMV( 'No transpose', I, N-I, -ONE, W( 1, IW+1 ), $ LDW, A( I, I+1 ), LDA, ONE, A( 1, I ), 1 ) END IF IF( I.GT.1 ) THEN * * Generate elementary reflector H(i) to annihilate * A(1:i-2,i) * CALL DLARFG( I-1, A( I-1, I ), A( 1, I ), 1, TAU( I-1 ) ) E( I-1 ) = A( I-1, I ) A( I-1, I ) = ONE * * Compute W(1:i-1,i) * CALL DSYMV( 'Upper', I-1, ONE, A, LDA, A( 1, I ), 1, $ ZERO, W( 1, IW ), 1 ) IF( I.LT.N ) THEN CALL DGEMV( 'Transpose', I-1, N-I, ONE, W( 1, IW+1 ), $ LDW, A( 1, I ), 1, ZERO, W( I+1, IW ), 1 ) CALL DGEMV( 'No transpose', I-1, N-I, -ONE, $ A( 1, I+1 ), LDA, W( I+1, IW ), 1, ONE, $ W( 1, IW ), 1 ) CALL DGEMV( 'Transpose', I-1, N-I, ONE, A( 1, I+1 ), $ LDA, A( 1, I ), 1, ZERO, W( I+1, IW ), 1 ) CALL DGEMV( 'No transpose', I-1, N-I, -ONE, $ W( 1, IW+1 ), LDW, W( I+1, IW ), 1, ONE, $ W( 1, IW ), 1 ) END IF CALL DSCAL( I-1, TAU( I-1 ), W( 1, IW ), 1 ) ALPHA = -HALF*TAU( I-1 )*DDOT( I-1, W( 1, IW ), 1, $ A( 1, I ), 1 ) CALL DAXPY( I-1, ALPHA, A( 1, I ), 1, W( 1, IW ), 1 ) END IF * 10 CONTINUE ELSE * * Reduce first NB columns of lower triangle * DO 20 I = 1, NB * * Update A(i:n,i) * CALL DGEMV( 'No transpose', N-I+1, I-1, -ONE, A( I, 1 ), $ LDA, W( I, 1 ), LDW, ONE, A( I, I ), 1 ) CALL DGEMV( 'No transpose', N-I+1, I-1, -ONE, W( I, 1 ), $ LDW, A( I, 1 ), LDA, ONE, A( I, I ), 1 ) IF( I.LT.N ) THEN * * Generate elementary reflector H(i) to annihilate * A(i+2:n,i) * CALL DLARFG( N-I, A( I+1, I ), A( MIN( I+2, N ), I ), 1, $ TAU( I ) ) E( I ) = A( I+1, I ) A( I+1, I ) = ONE * * Compute W(i+1:n,i) * CALL DSYMV( 'Lower', N-I, ONE, A( I+1, I+1 ), LDA, $ A( I+1, I ), 1, ZERO, W( I+1, I ), 1 ) CALL DGEMV( 'Transpose', N-I, I-1, ONE, W( I+1, 1 ), LDW, $ A( I+1, I ), 1, ZERO, W( 1, I ), 1 ) CALL DGEMV( 'No transpose', N-I, I-1, -ONE, A( I+1, 1 ), $ LDA, W( 1, I ), 1, ONE, W( I+1, I ), 1 ) CALL DGEMV( 'Transpose', N-I, I-1, ONE, A( I+1, 1 ), LDA, $ A( I+1, I ), 1, ZERO, W( 1, I ), 1 ) CALL DGEMV( 'No transpose', N-I, I-1, -ONE, W( I+1, 1 ), $ LDW, W( 1, I ), 1, ONE, W( I+1, I ), 1 ) CALL DSCAL( N-I, TAU( I ), W( I+1, I ), 1 ) ALPHA = -HALF*TAU( I )*DDOT( N-I, W( I+1, I ), 1, $ A( I+1, I ), 1 ) CALL DAXPY( N-I, ALPHA, A( I+1, I ), 1, W( I+1, I ), 1 ) END IF * 20 CONTINUE END IF * RETURN * * End of DLATRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dsytd2.f0000644000000000000000000000013214061636515015235 xustar0030 mtime=1623670093.294103996 30 atime=1623670093.294103996 30 ctime=1623670093.294103996 elk-7.2.42/src/LAPACK/dsytd2.f0000644002504400250440000002317214061636515017277 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSYTD2 reduces a symmetric matrix to real symmetric tridiagonal form by an orthogonal similarity transformation (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSYTD2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSYTD2( UPLO, N, A, LDA, D, E, TAU, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAU( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSYTD2 reduces a real symmetric matrix A to symmetric tridiagonal *> form T by an orthogonal similarity transformation: Q**T * A * Q = T. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> symmetric matrix A is stored: *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the symmetric matrix A. If UPLO = 'U', the leading *> n-by-n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n-by-n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit, if UPLO = 'U', the diagonal and first superdiagonal *> of A are overwritten by the corresponding elements of the *> tridiagonal matrix T, and the elements above the first *> superdiagonal, with the array TAU, represent the orthogonal *> matrix Q as a product of elementary reflectors; if UPLO *> = 'L', the diagonal and first subdiagonal of A are over- *> written by the corresponding elements of the tridiagonal *> matrix T, and the elements below the first subdiagonal, with *> the array TAU, represent the orthogonal matrix Q as a product *> of elementary reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix T: *> E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleSYcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n-1) . . . H(2) H(1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in *> A(1:i-1,i+1), and tau in TAU(i). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(n-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**T *> *> where tau is a real scalar, and v is a real vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in A(i+2:n,i), *> and tau in TAU(i). *> *> The contents of A on exit are illustrated by the following examples *> with n = 5: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( d e v2 v3 v4 ) ( d ) *> ( d e v3 v4 ) ( e d ) *> ( d e v4 ) ( v1 e d ) *> ( d e ) ( v1 v2 e d ) *> ( d ) ( v1 v2 v3 e d ) *> *> where d and e denote diagonal and off-diagonal elements of T, and vi *> denotes an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE DSYTD2( UPLO, N, A, LDA, D, E, TAU, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), D( * ), E( * ), TAU( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO, HALF PARAMETER ( ONE = 1.0D0, ZERO = 0.0D0, $ HALF = 1.0D0 / 2.0D0 ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER I DOUBLE PRECISION ALPHA, TAUI * .. * .. External Subroutines .. EXTERNAL DAXPY, DLARFG, DSYMV, DSYR2, XERBLA * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DDOT EXTERNAL LSAME, DDOT * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSYTD2', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * IF( UPPER ) THEN * * Reduce the upper triangle of A * DO 10 I = N - 1, 1, -1 * * Generate elementary reflector H(i) = I - tau * v * v**T * to annihilate A(1:i-1,i+1) * CALL DLARFG( I, A( I, I+1 ), A( 1, I+1 ), 1, TAUI ) E( I ) = A( I, I+1 ) * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(1:i,1:i) * A( I, I+1 ) = ONE * * Compute x := tau * A * v storing x in TAU(1:i) * CALL DSYMV( UPLO, I, TAUI, A, LDA, A( 1, I+1 ), 1, ZERO, $ TAU, 1 ) * * Compute w := x - 1/2 * tau * (x**T * v) * v * ALPHA = -HALF*TAUI*DDOT( I, TAU, 1, A( 1, I+1 ), 1 ) CALL DAXPY( I, ALPHA, A( 1, I+1 ), 1, TAU, 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**T - w * v**T * CALL DSYR2( UPLO, I, -ONE, A( 1, I+1 ), 1, TAU, 1, A, $ LDA ) * A( I, I+1 ) = E( I ) END IF D( I+1 ) = A( I+1, I+1 ) TAU( I ) = TAUI 10 CONTINUE D( 1 ) = A( 1, 1 ) ELSE * * Reduce the lower triangle of A * DO 20 I = 1, N - 1 * * Generate elementary reflector H(i) = I - tau * v * v**T * to annihilate A(i+2:n,i) * CALL DLARFG( N-I, A( I+1, I ), A( MIN( I+2, N ), I ), 1, $ TAUI ) E( I ) = A( I+1, I ) * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(i+1:n,i+1:n) * A( I+1, I ) = ONE * * Compute x := tau * A * v storing y in TAU(i:n-1) * CALL DSYMV( UPLO, N-I, TAUI, A( I+1, I+1 ), LDA, $ A( I+1, I ), 1, ZERO, TAU( I ), 1 ) * * Compute w := x - 1/2 * tau * (x**T * v) * v * ALPHA = -HALF*TAUI*DDOT( N-I, TAU( I ), 1, A( I+1, I ), $ 1 ) CALL DAXPY( N-I, ALPHA, A( I+1, I ), 1, TAU( I ), 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**T - w * v**T * CALL DSYR2( UPLO, N-I, -ONE, A( I+1, I ), 1, TAU( I ), 1, $ A( I+1, I+1 ), LDA ) * A( I+1, I ) = E( I ) END IF D( I ) = A( I, I ) TAU( I ) = TAUI 20 CONTINUE D( N ) = A( N, N ) END IF * RETURN * * End of DSYTD2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dtrti2.f0000644000000000000000000000013214061636515015234 xustar0030 mtime=1623670093.296103995 30 atime=1623670093.296103995 30 ctime=1623670093.296103995 elk-7.2.42/src/LAPACK/dtrti2.f0000644002504400250440000001342314061636515017274 0ustar00dewhurstdewhurst00000000000000*> \brief \b DTRTI2 computes the inverse of a triangular matrix (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DTRTI2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DTRTI2( UPLO, DIAG, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER DIAG, UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DTRTI2 computes the inverse of a real upper or lower triangular *> matrix. *> *> This is the Level 2 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the matrix A is upper or lower triangular. *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> Specifies whether or not the matrix A is unit triangular. *> = 'N': Non-unit triangular *> = 'U': Unit triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the triangular matrix A. If UPLO = 'U', the *> leading n by n upper triangular part of the array A contains *> the upper triangular matrix, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n by n lower triangular part of the array A contains *> the lower triangular matrix, and the strictly upper *> triangular part of A is not referenced. If DIAG = 'U', the *> diagonal elements of A are also not referenced and are *> assumed to be 1. *> *> On exit, the (triangular) inverse of the original matrix, in *> the same storage format. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -k, the k-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DTRTI2( UPLO, DIAG, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIAG, UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL NOUNIT, UPPER INTEGER J DOUBLE PRECISION AJJ * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL DSCAL, DTRMV, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) NOUNIT = LSAME( DIAG, 'N' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DTRTI2', -INFO ) RETURN END IF * IF( UPPER ) THEN * * Compute inverse of upper triangular matrix. * DO 10 J = 1, N IF( NOUNIT ) THEN A( J, J ) = ONE / A( J, J ) AJJ = -A( J, J ) ELSE AJJ = -ONE END IF * * Compute elements 1:j-1 of j-th column. * CALL DTRMV( 'Upper', 'No transpose', DIAG, J-1, A, LDA, $ A( 1, J ), 1 ) CALL DSCAL( J-1, AJJ, A( 1, J ), 1 ) 10 CONTINUE ELSE * * Compute inverse of lower triangular matrix. * DO 20 J = N, 1, -1 IF( NOUNIT ) THEN A( J, J ) = ONE / A( J, J ) AJJ = -A( J, J ) ELSE AJJ = -ONE END IF IF( J.LT.N ) THEN * * Compute elements j+1:n of j-th column. * CALL DTRMV( 'Lower', 'No transpose', DIAG, N-J, $ A( J+1, J+1 ), LDA, A( J+1, J ), 1 ) CALL DSCAL( N-J, AJJ, A( J+1, J ), 1 ) END IF 20 CONTINUE END IF * RETURN * * End of DTRTI2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq1.f0000644000000000000000000000013214061636515015211 xustar0030 mtime=1623670093.298103993 30 atime=1623670093.298103993 30 ctime=1623670093.298103993 elk-7.2.42/src/LAPACK/dlasq1.f0000644002504400250440000001502314061636515017247 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ1 computes the singular values of a real square bidiagonal matrix. Used by sbdsqr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ1 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ1( N, D, E, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ1 computes the singular values of a real N-by-N bidiagonal *> matrix with diagonal D and off-diagonal E. The singular values *> are computed to high relative accuracy, in the absence of *> denormalization, underflow and overflow. The algorithm was first *> presented in *> *> "Accurate singular values and differential qd algorithms" by K. V. *> Fernando and B. N. Parlett, Numer. Math., Vol-67, No. 2, pp. 191-230, *> 1994, *> *> and the present implementation is described in "An implementation of *> the dqds Algorithm (Positive Case)", LAPACK Working Note. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of rows and columns in the matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, D contains the diagonal elements of the *> bidiagonal matrix whose SVD is desired. On normal exit, *> D contains the singular values in decreasing order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N) *> On entry, elements E(1:N-1) contain the off-diagonal elements *> of the bidiagonal matrix whose SVD is desired. *> On exit, E is overwritten. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (4*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: the algorithm failed *> = 1, a split was marked by a positive value in E *> = 2, current block of Z not diagonalized after 100*N *> iterations (in inner while loop) On exit D and E *> represent a matrix with the same singular values *> which the calling subroutine could use to finish the *> computation, or even feed back into DLASQ1 *> = 3, termination criterion of outer while loop not met *> (program created more than N unreduced blocks) *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLASQ1( N, D, E, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) * .. * .. Local Scalars .. INTEGER I, IINFO DOUBLE PRECISION EPS, SCALE, SAFMIN, SIGMN, SIGMX * .. * .. External Subroutines .. EXTERNAL DCOPY, DLAS2, DLASCL, DLASQ2, DLASRT, XERBLA * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SQRT * .. * .. Executable Statements .. * INFO = 0 IF( N.LT.0 ) THEN INFO = -1 CALL XERBLA( 'DLASQ1', -INFO ) RETURN ELSE IF( N.EQ.0 ) THEN RETURN ELSE IF( N.EQ.1 ) THEN D( 1 ) = ABS( D( 1 ) ) RETURN ELSE IF( N.EQ.2 ) THEN CALL DLAS2( D( 1 ), E( 1 ), D( 2 ), SIGMN, SIGMX ) D( 1 ) = SIGMX D( 2 ) = SIGMN RETURN END IF * * Estimate the largest singular value. * SIGMX = ZERO DO 10 I = 1, N - 1 D( I ) = ABS( D( I ) ) SIGMX = MAX( SIGMX, ABS( E( I ) ) ) 10 CONTINUE D( N ) = ABS( D( N ) ) * * Early return if SIGMX is zero (matrix is already diagonal). * IF( SIGMX.EQ.ZERO ) THEN CALL DLASRT( 'D', N, D, IINFO ) RETURN END IF * DO 20 I = 1, N SIGMX = MAX( SIGMX, D( I ) ) 20 CONTINUE * * Copy D and E into WORK (in the Z format) and scale (squaring the * input data makes scaling by a power of the radix pointless). * EPS = DLAMCH( 'Precision' ) SAFMIN = DLAMCH( 'Safe minimum' ) SCALE = SQRT( EPS / SAFMIN ) CALL DCOPY( N, D, 1, WORK( 1 ), 2 ) CALL DCOPY( N-1, E, 1, WORK( 2 ), 2 ) CALL DLASCL( 'G', 0, 0, SIGMX, SCALE, 2*N-1, 1, WORK, 2*N-1, $ IINFO ) * * Compute the q's and e's. * DO 30 I = 1, 2*N - 1 WORK( I ) = WORK( I )**2 30 CONTINUE WORK( 2*N ) = ZERO * CALL DLASQ2( N, WORK, INFO ) * IF( INFO.EQ.0 ) THEN DO 40 I = 1, N D( I ) = SQRT( WORK( I ) ) 40 CONTINUE CALL DLASCL( 'G', 0, 0, SCALE, SIGMX, N, 1, D, N, IINFO ) ELSE IF( INFO.EQ.2 ) THEN * * Maximum number of iterations exceeded. Move data from WORK * into D and E so the calling subroutine can try to finish * DO I = 1, N D( I ) = SQRT( WORK( 2*I-1 ) ) E( I ) = SQRT( WORK( 2*I ) ) END DO CALL DLASCL( 'G', 0, 0, SCALE, SIGMX, N, 1, D, N, IINFO ) CALL DLASCL( 'G', 0, 0, SCALE, SIGMX, N, 1, E, N, IINFO ) END IF * RETURN * * End of DLASQ1 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlasr.f0000644000000000000000000000013214061636515015157 xustar0030 mtime=1623670093.300103991 30 atime=1623670093.300103991 30 ctime=1623670093.300103991 elk-7.2.42/src/LAPACK/zlasr.f0000644002504400250440000003543314061636515017224 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLASR applies a sequence of plane rotations to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLASR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLASR( SIDE, PIVOT, DIRECT, M, N, C, S, A, LDA ) * * .. Scalar Arguments .. * CHARACTER DIRECT, PIVOT, SIDE * INTEGER LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION C( * ), S( * ) * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLASR applies a sequence of real plane rotations to a complex matrix *> A, from either the left or the right. *> *> When SIDE = 'L', the transformation takes the form *> *> A := P*A *> *> and when SIDE = 'R', the transformation takes the form *> *> A := A*P**T *> *> where P is an orthogonal matrix consisting of a sequence of z plane *> rotations, with z = M when SIDE = 'L' and z = N when SIDE = 'R', *> and P**T is the transpose of P. *> *> When DIRECT = 'F' (Forward sequence), then *> *> P = P(z-1) * ... * P(2) * P(1) *> *> and when DIRECT = 'B' (Backward sequence), then *> *> P = P(1) * P(2) * ... * P(z-1) *> *> where P(k) is a plane rotation matrix defined by the 2-by-2 rotation *> *> R(k) = ( c(k) s(k) ) *> = ( -s(k) c(k) ). *> *> When PIVOT = 'V' (Variable pivot), the rotation is performed *> for the plane (k,k+1), i.e., P(k) has the form *> *> P(k) = ( 1 ) *> ( ... ) *> ( 1 ) *> ( c(k) s(k) ) *> ( -s(k) c(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> *> where R(k) appears as a rank-2 modification to the identity matrix in *> rows and columns k and k+1. *> *> When PIVOT = 'T' (Top pivot), the rotation is performed for the *> plane (1,k+1), so P(k) has the form *> *> P(k) = ( c(k) s(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> ( -s(k) c(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> *> where R(k) appears in rows and columns 1 and k+1. *> *> Similarly, when PIVOT = 'B' (Bottom pivot), the rotation is *> performed for the plane (k,z), giving P(k) the form *> *> P(k) = ( 1 ) *> ( ... ) *> ( 1 ) *> ( c(k) s(k) ) *> ( 1 ) *> ( ... ) *> ( 1 ) *> ( -s(k) c(k) ) *> *> where R(k) appears in rows and columns k and z. The rotations are *> performed without ever forming P(k) explicitly. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> Specifies whether the plane rotation matrix P is applied to *> A on the left or the right. *> = 'L': Left, compute A := P*A *> = 'R': Right, compute A:= A*P**T *> \endverbatim *> *> \param[in] PIVOT *> \verbatim *> PIVOT is CHARACTER*1 *> Specifies the plane for which P(k) is a plane rotation *> matrix. *> = 'V': Variable pivot, the plane (k,k+1) *> = 'T': Top pivot, the plane (1,k+1) *> = 'B': Bottom pivot, the plane (k,z) *> \endverbatim *> *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Specifies whether P is a forward or backward sequence of *> plane rotations. *> = 'F': Forward, P = P(z-1)*...*P(2)*P(1) *> = 'B': Backward, P = P(1)*P(2)*...*P(z-1) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. If m <= 1, an immediate *> return is effected. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. If n <= 1, an *> immediate return is effected. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> The cosines c(k) of the plane rotations. *> \endverbatim *> *> \param[in] S *> \verbatim *> S is DOUBLE PRECISION array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> The sines s(k) of the plane rotations. The 2-by-2 plane *> rotation part of the matrix P(k), R(k), has the form *> R(k) = ( c(k) s(k) ) *> ( -s(k) c(k) ). *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The M-by-N matrix A. On exit, A is overwritten by P*A if *> SIDE = 'R' or by A*P**T if SIDE = 'L'. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLASR( SIDE, PIVOT, DIRECT, M, N, C, S, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIRECT, PIVOT, SIDE INTEGER LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION C( * ), S( * ) COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, INFO, J DOUBLE PRECISION CTEMP, STEMP COMPLEX*16 TEMP * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( .NOT.( LSAME( SIDE, 'L' ) .OR. LSAME( SIDE, 'R' ) ) ) THEN INFO = 1 ELSE IF( .NOT.( LSAME( PIVOT, 'V' ) .OR. LSAME( PIVOT, $ 'T' ) .OR. LSAME( PIVOT, 'B' ) ) ) THEN INFO = 2 ELSE IF( .NOT.( LSAME( DIRECT, 'F' ) .OR. LSAME( DIRECT, 'B' ) ) ) $ THEN INFO = 3 ELSE IF( M.LT.0 ) THEN INFO = 4 ELSE IF( N.LT.0 ) THEN INFO = 5 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = 9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLASR ', INFO ) RETURN END IF * * Quick return if possible * IF( ( M.EQ.0 ) .OR. ( N.EQ.0 ) ) $ RETURN IF( LSAME( SIDE, 'L' ) ) THEN * * Form P * A * IF( LSAME( PIVOT, 'V' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 20 J = 1, M - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 10 I = 1, N TEMP = A( J+1, I ) A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) 10 CONTINUE END IF 20 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 40 J = M - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 30 I = 1, N TEMP = A( J+1, I ) A( J+1, I ) = CTEMP*TEMP - STEMP*A( J, I ) A( J, I ) = STEMP*TEMP + CTEMP*A( J, I ) 30 CONTINUE END IF 40 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'T' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 60 J = 2, M CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 50 I = 1, N TEMP = A( J, I ) A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) 50 CONTINUE END IF 60 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 80 J = M, 2, -1 CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 70 I = 1, N TEMP = A( J, I ) A( J, I ) = CTEMP*TEMP - STEMP*A( 1, I ) A( 1, I ) = STEMP*TEMP + CTEMP*A( 1, I ) 70 CONTINUE END IF 80 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'B' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 100 J = 1, M - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 90 I = 1, N TEMP = A( J, I ) A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP 90 CONTINUE END IF 100 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 120 J = M - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 110 I = 1, N TEMP = A( J, I ) A( J, I ) = STEMP*A( M, I ) + CTEMP*TEMP A( M, I ) = CTEMP*A( M, I ) - STEMP*TEMP 110 CONTINUE END IF 120 CONTINUE END IF END IF ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form A * P**T * IF( LSAME( PIVOT, 'V' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 140 J = 1, N - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 130 I = 1, M TEMP = A( I, J+1 ) A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) 130 CONTINUE END IF 140 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 160 J = N - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 150 I = 1, M TEMP = A( I, J+1 ) A( I, J+1 ) = CTEMP*TEMP - STEMP*A( I, J ) A( I, J ) = STEMP*TEMP + CTEMP*A( I, J ) 150 CONTINUE END IF 160 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'T' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 180 J = 2, N CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 170 I = 1, M TEMP = A( I, J ) A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) 170 CONTINUE END IF 180 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 200 J = N, 2, -1 CTEMP = C( J-1 ) STEMP = S( J-1 ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 190 I = 1, M TEMP = A( I, J ) A( I, J ) = CTEMP*TEMP - STEMP*A( I, 1 ) A( I, 1 ) = STEMP*TEMP + CTEMP*A( I, 1 ) 190 CONTINUE END IF 200 CONTINUE END IF ELSE IF( LSAME( PIVOT, 'B' ) ) THEN IF( LSAME( DIRECT, 'F' ) ) THEN DO 220 J = 1, N - 1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 210 I = 1, M TEMP = A( I, J ) A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP 210 CONTINUE END IF 220 CONTINUE ELSE IF( LSAME( DIRECT, 'B' ) ) THEN DO 240 J = N - 1, 1, -1 CTEMP = C( J ) STEMP = S( J ) IF( ( CTEMP.NE.ONE ) .OR. ( STEMP.NE.ZERO ) ) THEN DO 230 I = 1, M TEMP = A( I, J ) A( I, J ) = STEMP*A( I, N ) + CTEMP*TEMP A( I, N ) = CTEMP*A( I, N ) - STEMP*TEMP 230 CONTINUE END IF 240 CONTINUE END IF END IF END IF * RETURN * * End of ZLASR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasv2.f0000644000000000000000000000013214061636515015217 xustar0030 mtime=1623670093.302103989 30 atime=1623670093.302103989 30 ctime=1623670093.302103989 elk-7.2.42/src/LAPACK/dlasv2.f0000644002504400250440000002045114061636515017256 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASV2 computes the singular value decomposition of a 2-by-2 triangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASV2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASV2( F, G, H, SSMIN, SSMAX, SNR, CSR, SNL, CSL ) * * .. Scalar Arguments .. * DOUBLE PRECISION CSL, CSR, F, G, H, SNL, SNR, SSMAX, SSMIN * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASV2 computes the singular value decomposition of a 2-by-2 *> triangular matrix *> [ F G ] *> [ 0 H ]. *> On return, abs(SSMAX) is the larger singular value, abs(SSMIN) is the *> smaller singular value, and (CSL,SNL) and (CSR,SNR) are the left and *> right singular vectors for abs(SSMAX), giving the decomposition *> *> [ CSL SNL ] [ F G ] [ CSR -SNR ] = [ SSMAX 0 ] *> [-SNL CSL ] [ 0 H ] [ SNR CSR ] [ 0 SSMIN ]. *> \endverbatim * * Arguments: * ========== * *> \param[in] F *> \verbatim *> F is DOUBLE PRECISION *> The (1,1) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] G *> \verbatim *> G is DOUBLE PRECISION *> The (1,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] H *> \verbatim *> H is DOUBLE PRECISION *> The (2,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[out] SSMIN *> \verbatim *> SSMIN is DOUBLE PRECISION *> abs(SSMIN) is the smaller singular value. *> \endverbatim *> *> \param[out] SSMAX *> \verbatim *> SSMAX is DOUBLE PRECISION *> abs(SSMAX) is the larger singular value. *> \endverbatim *> *> \param[out] SNL *> \verbatim *> SNL is DOUBLE PRECISION *> \endverbatim *> *> \param[out] CSL *> \verbatim *> CSL is DOUBLE PRECISION *> The vector (CSL, SNL) is a unit left singular vector for the *> singular value abs(SSMAX). *> \endverbatim *> *> \param[out] SNR *> \verbatim *> SNR is DOUBLE PRECISION *> \endverbatim *> *> \param[out] CSR *> \verbatim *> CSR is DOUBLE PRECISION *> The vector (CSR, SNR) is a unit right singular vector for the *> singular value abs(SSMAX). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Any input parameter may be aliased with any output parameter. *> *> Barring over/underflow and assuming a guard digit in subtraction, all *> output quantities are correct to within a few units in the last *> place (ulps). *> *> In IEEE arithmetic, the code works correctly if one matrix element is *> infinite. *> *> Overflow will not occur unless the largest singular value itself *> overflows or is within a few ulps of overflow. (On machines with *> partial overflow, like the Cray, overflow may occur if the largest *> singular value is within a factor of 2 of overflow.) *> *> Underflow is harmless if underflow is gradual. Otherwise, results *> may correspond to a matrix modified by perturbations of size near *> the underflow threshold. *> \endverbatim *> * ===================================================================== SUBROUTINE DLASV2( F, G, H, SSMIN, SSMAX, SNR, CSR, SNL, CSL ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION CSL, CSR, F, G, H, SNL, SNR, SSMAX, SSMIN * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION HALF PARAMETER ( HALF = 0.5D0 ) DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) DOUBLE PRECISION FOUR PARAMETER ( FOUR = 4.0D0 ) * .. * .. Local Scalars .. LOGICAL GASMAL, SWAP INTEGER PMAX DOUBLE PRECISION A, CLT, CRT, D, FA, FT, GA, GT, HA, HT, L, M, $ MM, R, S, SLT, SRT, T, TEMP, TSIGN, TT * .. * .. Intrinsic Functions .. INTRINSIC ABS, SIGN, SQRT * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Executable Statements .. * FT = F FA = ABS( FT ) HT = H HA = ABS( H ) * * PMAX points to the maximum absolute element of matrix * PMAX = 1 if F largest in absolute values * PMAX = 2 if G largest in absolute values * PMAX = 3 if H largest in absolute values * PMAX = 1 SWAP = ( HA.GT.FA ) IF( SWAP ) THEN PMAX = 3 TEMP = FT FT = HT HT = TEMP TEMP = FA FA = HA HA = TEMP * * Now FA .ge. HA * END IF GT = G GA = ABS( GT ) IF( GA.EQ.ZERO ) THEN * * Diagonal matrix * SSMIN = HA SSMAX = FA CLT = ONE CRT = ONE SLT = ZERO SRT = ZERO ELSE GASMAL = .TRUE. IF( GA.GT.FA ) THEN PMAX = 2 IF( ( FA / GA ).LT.DLAMCH( 'EPS' ) ) THEN * * Case of very large GA * GASMAL = .FALSE. SSMAX = GA IF( HA.GT.ONE ) THEN SSMIN = FA / ( GA / HA ) ELSE SSMIN = ( FA / GA )*HA END IF CLT = ONE SLT = HT / GT SRT = ONE CRT = FT / GT END IF END IF IF( GASMAL ) THEN * * Normal case * D = FA - HA IF( D.EQ.FA ) THEN * * Copes with infinite F or H * L = ONE ELSE L = D / FA END IF * * Note that 0 .le. L .le. 1 * M = GT / FT * * Note that abs(M) .le. 1/macheps * T = TWO - L * * Note that T .ge. 1 * MM = M*M TT = T*T S = SQRT( TT+MM ) * * Note that 1 .le. S .le. 1 + 1/macheps * IF( L.EQ.ZERO ) THEN R = ABS( M ) ELSE R = SQRT( L*L+MM ) END IF * * Note that 0 .le. R .le. 1 + 1/macheps * A = HALF*( S+R ) * * Note that 1 .le. A .le. 1 + abs(M) * SSMIN = HA / A SSMAX = FA*A IF( MM.EQ.ZERO ) THEN * * Note that M is very tiny * IF( L.EQ.ZERO ) THEN T = SIGN( TWO, FT )*SIGN( ONE, GT ) ELSE T = GT / SIGN( D, FT ) + M / T END IF ELSE T = ( M / ( S+T )+M / ( R+L ) )*( ONE+A ) END IF L = SQRT( T*T+FOUR ) CRT = TWO / L SRT = T / L CLT = ( CRT+SRT*M ) / A SLT = ( HT / FT )*SRT / A END IF END IF IF( SWAP ) THEN CSL = SRT SNL = CRT CSR = SLT SNR = CLT ELSE CSL = CLT SNL = SLT CSR = CRT SNR = SRT END IF * * Correct signs of SSMAX and SSMIN * IF( PMAX.EQ.1 ) $ TSIGN = SIGN( ONE, CSR )*SIGN( ONE, CSL )*SIGN( ONE, F ) IF( PMAX.EQ.2 ) $ TSIGN = SIGN( ONE, SNR )*SIGN( ONE, CSL )*SIGN( ONE, G ) IF( PMAX.EQ.3 ) $ TSIGN = SIGN( ONE, SNR )*SIGN( ONE, SNL )*SIGN( ONE, H ) SSMAX = SIGN( SSMAX, TSIGN ) SSMIN = SIGN( SSMIN, TSIGN*SIGN( ONE, F )*SIGN( ONE, H ) ) RETURN * * End of DLASV2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlas2.f0000644000000000000000000000013214061636515015031 xustar0030 mtime=1623670093.304103987 30 atime=1623670093.303103988 30 ctime=1623670093.304103987 elk-7.2.42/src/LAPACK/dlas2.f0000644002504400250440000001175314061636515017075 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAS2 computes singular values of a 2-by-2 triangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAS2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAS2( F, G, H, SSMIN, SSMAX ) * * .. Scalar Arguments .. * DOUBLE PRECISION F, G, H, SSMAX, SSMIN * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAS2 computes the singular values of the 2-by-2 matrix *> [ F G ] *> [ 0 H ]. *> On return, SSMIN is the smaller singular value and SSMAX is the *> larger singular value. *> \endverbatim * * Arguments: * ========== * *> \param[in] F *> \verbatim *> F is DOUBLE PRECISION *> The (1,1) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] G *> \verbatim *> G is DOUBLE PRECISION *> The (1,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[in] H *> \verbatim *> H is DOUBLE PRECISION *> The (2,2) element of the 2-by-2 matrix. *> \endverbatim *> *> \param[out] SSMIN *> \verbatim *> SSMIN is DOUBLE PRECISION *> The smaller singular value. *> \endverbatim *> *> \param[out] SSMAX *> \verbatim *> SSMAX is DOUBLE PRECISION *> The larger singular value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> Barring over/underflow, all output quantities are correct to within *> a few units in the last place (ulps), even in the absence of a guard *> digit in addition/subtraction. *> *> In IEEE arithmetic, the code works correctly if one matrix element is *> infinite. *> *> Overflow will not occur unless the largest singular value itself *> overflows, or is within a few ulps of overflow. (On machines with *> partial overflow, like the Cray, overflow may occur if the largest *> singular value is within a factor of 2 of overflow.) *> *> Underflow is harmless if underflow is gradual. Otherwise, results *> may correspond to a matrix modified by perturbations of size near *> the underflow threshold. *> \endverbatim *> * ===================================================================== SUBROUTINE DLAS2( F, G, H, SSMIN, SSMAX ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION F, G, H, SSMAX, SSMIN * .. * * ==================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) * .. * .. Local Scalars .. DOUBLE PRECISION AS, AT, AU, C, FA, FHMN, FHMX, GA, HA * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * FA = ABS( F ) GA = ABS( G ) HA = ABS( H ) FHMN = MIN( FA, HA ) FHMX = MAX( FA, HA ) IF( FHMN.EQ.ZERO ) THEN SSMIN = ZERO IF( FHMX.EQ.ZERO ) THEN SSMAX = GA ELSE SSMAX = MAX( FHMX, GA )*SQRT( ONE+ $ ( MIN( FHMX, GA ) / MAX( FHMX, GA ) )**2 ) END IF ELSE IF( GA.LT.FHMX ) THEN AS = ONE + FHMN / FHMX AT = ( FHMX-FHMN ) / FHMX AU = ( GA / FHMX )**2 C = TWO / ( SQRT( AS*AS+AU )+SQRT( AT*AT+AU ) ) SSMIN = FHMN*C SSMAX = FHMX / C ELSE AU = FHMX / GA IF( AU.EQ.ZERO ) THEN * * Avoid possible harmful underflow if exponent range * asymmetric (true SSMIN may not underflow even if * AU underflows) * SSMIN = ( FHMN*FHMX ) / GA SSMAX = GA ELSE AS = ONE + FHMN / FHMX AT = ( FHMX-FHMN ) / FHMX C = ONE / ( SQRT( ONE+( AS*AU )**2 )+ $ SQRT( ONE+( AT*AU )**2 ) ) SSMIN = ( FHMN*C )*AU SSMIN = SSMIN + SSMIN SSMAX = GA / ( C+C ) END IF END IF END IF RETURN * * End of DLAS2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlabrd.f0000644000000000000000000000013214061636515015302 xustar0030 mtime=1623670093.306103985 30 atime=1623670093.305103986 30 ctime=1623670093.306103985 elk-7.2.42/src/LAPACK/zlabrd.f0000644002504400250440000003576714061636515017361 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLABRD reduces the first nb rows and columns of a general matrix to a bidiagonal form. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLABRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLABRD( M, N, NB, A, LDA, D, E, TAUQ, TAUP, X, LDX, Y, * LDY ) * * .. Scalar Arguments .. * INTEGER LDA, LDX, LDY, M, N, NB * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), X( LDX, * ), * $ Y( LDY, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLABRD reduces the first NB rows and columns of a complex general *> m by n matrix A to upper or lower real bidiagonal form by a unitary *> transformation Q**H * A * P, and returns the matrices X and Y which *> are needed to apply the transformation to the unreduced part of A. *> *> If m >= n, A is reduced to upper bidiagonal form; if m < n, to lower *> bidiagonal form. *> *> This is an auxiliary routine called by ZGEBRD *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows in the matrix A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns in the matrix A. *> \endverbatim *> *> \param[in] NB *> \verbatim *> NB is INTEGER *> The number of leading rows and columns of A to be reduced. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the m by n general matrix to be reduced. *> On exit, the first NB rows and columns of the matrix are *> overwritten; the rest of the array is unchanged. *> If m >= n, elements on and below the diagonal in the first NB *> columns, with the array TAUQ, represent the unitary *> matrix Q as a product of elementary reflectors; and *> elements above the diagonal in the first NB rows, with the *> array TAUP, represent the unitary matrix P as a product *> of elementary reflectors. *> If m < n, elements below the diagonal in the first NB *> columns, with the array TAUQ, represent the unitary *> matrix Q as a product of elementary reflectors, and *> elements on and above the diagonal in the first NB rows, *> with the array TAUP, represent the unitary matrix P as *> a product of elementary reflectors. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (NB) *> The diagonal elements of the first NB rows and columns of *> the reduced matrix. D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (NB) *> The off-diagonal elements of the first NB rows and columns of *> the reduced matrix. *> \endverbatim *> *> \param[out] TAUQ *> \verbatim *> TAUQ is COMPLEX*16 array, dimension (NB) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix Q. See Further Details. *> \endverbatim *> *> \param[out] TAUP *> \verbatim *> TAUP is COMPLEX*16 array, dimension (NB) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix P. See Further Details. *> \endverbatim *> *> \param[out] X *> \verbatim *> X is COMPLEX*16 array, dimension (LDX,NB) *> The m-by-nb matrix X required to update the unreduced part *> of A. *> \endverbatim *> *> \param[in] LDX *> \verbatim *> LDX is INTEGER *> The leading dimension of the array X. LDX >= max(1,M). *> \endverbatim *> *> \param[out] Y *> \verbatim *> Y is COMPLEX*16 array, dimension (LDY,NB) *> The n-by-nb matrix Y required to update the unreduced part *> of A. *> \endverbatim *> *> \param[in] LDY *> \verbatim *> LDY is INTEGER *> The leading dimension of the array Y. LDY >= max(1,N). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrices Q and P are represented as products of elementary *> reflectors: *> *> Q = H(1) H(2) . . . H(nb) and P = G(1) G(2) . . . G(nb) *> *> Each H(i) and G(i) has the form: *> *> H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H *> *> where tauq and taup are complex scalars, and v and u are complex *> vectors. *> *> If m >= n, v(1:i-1) = 0, v(i) = 1, and v(i:m) is stored on exit in *> A(i:m,i); u(1:i) = 0, u(i+1) = 1, and u(i+1:n) is stored on exit in *> A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> If m < n, v(1:i) = 0, v(i+1) = 1, and v(i+1:m) is stored on exit in *> A(i+2:m,i); u(1:i-1) = 0, u(i) = 1, and u(i:n) is stored on exit in *> A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> The elements of the vectors v and u together form the m-by-nb matrix *> V and the nb-by-n matrix U**H which are needed, with X and Y, to apply *> the transformation to the unreduced part of the matrix, using a block *> update of the form: A := A - V*Y**H - X*U**H. *> *> The contents of A on exit are illustrated by the following examples *> with nb = 2: *> *> m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): *> *> ( 1 1 u1 u1 u1 ) ( 1 u1 u1 u1 u1 u1 ) *> ( v1 1 1 u2 u2 ) ( 1 1 u2 u2 u2 u2 ) *> ( v1 v2 a a a ) ( v1 1 a a a a ) *> ( v1 v2 a a a ) ( v1 v2 a a a a ) *> ( v1 v2 a a a ) ( v1 v2 a a a a ) *> ( v1 v2 a a a ) *> *> where a denotes an element of the original matrix which is unchanged, *> vi denotes an element of the vector defining H(i), and ui an element *> of the vector defining G(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZLABRD( M, N, NB, A, LDA, D, E, TAUQ, TAUP, X, LDX, Y, $ LDY ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER LDA, LDX, LDY, M, N, NB * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), X( LDX, * ), $ Y( LDY, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL ZGEMV, ZLACGV, ZLARFG, ZSCAL * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * * Quick return if possible * IF( M.LE.0 .OR. N.LE.0 ) $ RETURN * IF( M.GE.N ) THEN * * Reduce to upper bidiagonal form * DO 10 I = 1, NB * * Update A(i:m,i) * CALL ZLACGV( I-1, Y( I, 1 ), LDY ) CALL ZGEMV( 'No transpose', M-I+1, I-1, -ONE, A( I, 1 ), $ LDA, Y( I, 1 ), LDY, ONE, A( I, I ), 1 ) CALL ZLACGV( I-1, Y( I, 1 ), LDY ) CALL ZGEMV( 'No transpose', M-I+1, I-1, -ONE, X( I, 1 ), $ LDX, A( 1, I ), 1, ONE, A( I, I ), 1 ) * * Generate reflection Q(i) to annihilate A(i+1:m,i) * ALPHA = A( I, I ) CALL ZLARFG( M-I+1, ALPHA, A( MIN( I+1, M ), I ), 1, $ TAUQ( I ) ) D( I ) = ALPHA IF( I.LT.N ) THEN A( I, I ) = ONE * * Compute Y(i+1:n,i) * CALL ZGEMV( 'Conjugate transpose', M-I+1, N-I, ONE, $ A( I, I+1 ), LDA, A( I, I ), 1, ZERO, $ Y( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', M-I+1, I-1, ONE, $ A( I, 1 ), LDA, A( I, I ), 1, ZERO, $ Y( 1, I ), 1 ) CALL ZGEMV( 'No transpose', N-I, I-1, -ONE, Y( I+1, 1 ), $ LDY, Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', M-I+1, I-1, ONE, $ X( I, 1 ), LDX, A( I, I ), 1, ZERO, $ Y( 1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', I-1, N-I, -ONE, $ A( 1, I+1 ), LDA, Y( 1, I ), 1, ONE, $ Y( I+1, I ), 1 ) CALL ZSCAL( N-I, TAUQ( I ), Y( I+1, I ), 1 ) * * Update A(i,i+1:n) * CALL ZLACGV( N-I, A( I, I+1 ), LDA ) CALL ZLACGV( I, A( I, 1 ), LDA ) CALL ZGEMV( 'No transpose', N-I, I, -ONE, Y( I+1, 1 ), $ LDY, A( I, 1 ), LDA, ONE, A( I, I+1 ), LDA ) CALL ZLACGV( I, A( I, 1 ), LDA ) CALL ZLACGV( I-1, X( I, 1 ), LDX ) CALL ZGEMV( 'Conjugate transpose', I-1, N-I, -ONE, $ A( 1, I+1 ), LDA, X( I, 1 ), LDX, ONE, $ A( I, I+1 ), LDA ) CALL ZLACGV( I-1, X( I, 1 ), LDX ) * * Generate reflection P(i) to annihilate A(i,i+2:n) * ALPHA = A( I, I+1 ) CALL ZLARFG( N-I, ALPHA, A( I, MIN( I+2, N ) ), LDA, $ TAUP( I ) ) E( I ) = ALPHA A( I, I+1 ) = ONE * * Compute X(i+1:m,i) * CALL ZGEMV( 'No transpose', M-I, N-I, ONE, A( I+1, I+1 ), $ LDA, A( I, I+1 ), LDA, ZERO, X( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', N-I, I, ONE, $ Y( I+1, 1 ), LDY, A( I, I+1 ), LDA, ZERO, $ X( 1, I ), 1 ) CALL ZGEMV( 'No transpose', M-I, I, -ONE, A( I+1, 1 ), $ LDA, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) CALL ZGEMV( 'No transpose', I-1, N-I, ONE, A( 1, I+1 ), $ LDA, A( I, I+1 ), LDA, ZERO, X( 1, I ), 1 ) CALL ZGEMV( 'No transpose', M-I, I-1, -ONE, X( I+1, 1 ), $ LDX, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) CALL ZSCAL( M-I, TAUP( I ), X( I+1, I ), 1 ) CALL ZLACGV( N-I, A( I, I+1 ), LDA ) END IF 10 CONTINUE ELSE * * Reduce to lower bidiagonal form * DO 20 I = 1, NB * * Update A(i,i:n) * CALL ZLACGV( N-I+1, A( I, I ), LDA ) CALL ZLACGV( I-1, A( I, 1 ), LDA ) CALL ZGEMV( 'No transpose', N-I+1, I-1, -ONE, Y( I, 1 ), $ LDY, A( I, 1 ), LDA, ONE, A( I, I ), LDA ) CALL ZLACGV( I-1, A( I, 1 ), LDA ) CALL ZLACGV( I-1, X( I, 1 ), LDX ) CALL ZGEMV( 'Conjugate transpose', I-1, N-I+1, -ONE, $ A( 1, I ), LDA, X( I, 1 ), LDX, ONE, A( I, I ), $ LDA ) CALL ZLACGV( I-1, X( I, 1 ), LDX ) * * Generate reflection P(i) to annihilate A(i,i+1:n) * ALPHA = A( I, I ) CALL ZLARFG( N-I+1, ALPHA, A( I, MIN( I+1, N ) ), LDA, $ TAUP( I ) ) D( I ) = ALPHA IF( I.LT.M ) THEN A( I, I ) = ONE * * Compute X(i+1:m,i) * CALL ZGEMV( 'No transpose', M-I, N-I+1, ONE, A( I+1, I ), $ LDA, A( I, I ), LDA, ZERO, X( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', N-I+1, I-1, ONE, $ Y( I, 1 ), LDY, A( I, I ), LDA, ZERO, $ X( 1, I ), 1 ) CALL ZGEMV( 'No transpose', M-I, I-1, -ONE, A( I+1, 1 ), $ LDA, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) CALL ZGEMV( 'No transpose', I-1, N-I+1, ONE, A( 1, I ), $ LDA, A( I, I ), LDA, ZERO, X( 1, I ), 1 ) CALL ZGEMV( 'No transpose', M-I, I-1, -ONE, X( I+1, 1 ), $ LDX, X( 1, I ), 1, ONE, X( I+1, I ), 1 ) CALL ZSCAL( M-I, TAUP( I ), X( I+1, I ), 1 ) CALL ZLACGV( N-I+1, A( I, I ), LDA ) * * Update A(i+1:m,i) * CALL ZLACGV( I-1, Y( I, 1 ), LDY ) CALL ZGEMV( 'No transpose', M-I, I-1, -ONE, A( I+1, 1 ), $ LDA, Y( I, 1 ), LDY, ONE, A( I+1, I ), 1 ) CALL ZLACGV( I-1, Y( I, 1 ), LDY ) CALL ZGEMV( 'No transpose', M-I, I, -ONE, X( I+1, 1 ), $ LDX, A( 1, I ), 1, ONE, A( I+1, I ), 1 ) * * Generate reflection Q(i) to annihilate A(i+2:m,i) * ALPHA = A( I+1, I ) CALL ZLARFG( M-I, ALPHA, A( MIN( I+2, M ), I ), 1, $ TAUQ( I ) ) E( I ) = ALPHA A( I+1, I ) = ONE * * Compute Y(i+1:n,i) * CALL ZGEMV( 'Conjugate transpose', M-I, N-I, ONE, $ A( I+1, I+1 ), LDA, A( I+1, I ), 1, ZERO, $ Y( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', M-I, I-1, ONE, $ A( I+1, 1 ), LDA, A( I+1, I ), 1, ZERO, $ Y( 1, I ), 1 ) CALL ZGEMV( 'No transpose', N-I, I-1, -ONE, Y( I+1, 1 ), $ LDY, Y( 1, I ), 1, ONE, Y( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', M-I, I, ONE, $ X( I+1, 1 ), LDX, A( I+1, I ), 1, ZERO, $ Y( 1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', I, N-I, -ONE, $ A( 1, I+1 ), LDA, Y( 1, I ), 1, ONE, $ Y( I+1, I ), 1 ) CALL ZSCAL( N-I, TAUQ( I ), Y( I+1, I ), 1 ) ELSE CALL ZLACGV( N-I+1, A( I, I ), LDA ) END IF 20 CONTINUE END IF RETURN * * End of ZLABRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgebd2.f0000644000000000000000000000013214061636515015201 xustar0030 mtime=1623670093.308103984 30 atime=1623670093.307103984 30 ctime=1623670093.308103984 elk-7.2.42/src/LAPACK/zgebd2.f0000644002504400250440000002430314061636515017240 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEBD2 reduces a general matrix to bidiagonal form using an unblocked algorithm. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEBD2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEBD2( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEBD2 reduces a complex general m by n matrix A to upper or lower *> real bidiagonal form B by a unitary transformation: Q**H * A * P = B. *> *> If m >= n, B is upper bidiagonal; if m < n, B is lower bidiagonal. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows in the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns in the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the m by n general matrix to be reduced. *> On exit, *> if m >= n, the diagonal and the first superdiagonal are *> overwritten with the upper bidiagonal matrix B; the *> elements below the diagonal, with the array TAUQ, represent *> the unitary matrix Q as a product of elementary *> reflectors, and the elements above the first superdiagonal, *> with the array TAUP, represent the unitary matrix P as *> a product of elementary reflectors; *> if m < n, the diagonal and the first subdiagonal are *> overwritten with the lower bidiagonal matrix B; the *> elements below the first subdiagonal, with the array TAUQ, *> represent the unitary matrix Q as a product of *> elementary reflectors, and the elements above the diagonal, *> with the array TAUP, represent the unitary matrix P as *> a product of elementary reflectors. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (min(M,N)) *> The diagonal elements of the bidiagonal matrix B: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (min(M,N)-1) *> The off-diagonal elements of the bidiagonal matrix B: *> if m >= n, E(i) = A(i,i+1) for i = 1,2,...,n-1; *> if m < n, E(i) = A(i+1,i) for i = 1,2,...,m-1. *> \endverbatim *> *> \param[out] TAUQ *> \verbatim *> TAUQ is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix Q. See Further Details. *> \endverbatim *> *> \param[out] TAUP *> \verbatim *> TAUP is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors which *> represent the unitary matrix P. See Further Details. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (max(M,N)) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrices Q and P are represented as products of elementary *> reflectors: *> *> If m >= n, *> *> Q = H(1) H(2) . . . H(n) and P = G(1) G(2) . . . G(n-1) *> *> Each H(i) and G(i) has the form: *> *> H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H *> *> where tauq and taup are complex scalars, and v and u are complex *> vectors; v(1:i-1) = 0, v(i) = 1, and v(i+1:m) is stored on exit in *> A(i+1:m,i); u(1:i) = 0, u(i+1) = 1, and u(i+2:n) is stored on exit in *> A(i,i+2:n); tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> If m < n, *> *> Q = H(1) H(2) . . . H(m-1) and P = G(1) G(2) . . . G(m) *> *> Each H(i) and G(i) has the form: *> *> H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H *> *> where tauq and taup are complex scalars, v and u are complex vectors; *> v(1:i) = 0, v(i+1) = 1, and v(i+2:m) is stored on exit in A(i+2:m,i); *> u(1:i-1) = 0, u(i) = 1, and u(i+1:n) is stored on exit in A(i,i+1:n); *> tauq is stored in TAUQ(i) and taup in TAUP(i). *> *> The contents of A on exit are illustrated by the following examples: *> *> m = 6 and n = 5 (m > n): m = 5 and n = 6 (m < n): *> *> ( d e u1 u1 u1 ) ( d u1 u1 u1 u1 u1 ) *> ( v1 d e u2 u2 ) ( e d u2 u2 u2 u2 ) *> ( v1 v2 d e u3 ) ( v1 e d u3 u3 u3 ) *> ( v1 v2 v3 d e ) ( v1 v2 e d u4 u4 ) *> ( v1 v2 v3 v4 d ) ( v1 v2 v3 e d u5 ) *> ( v1 v2 v3 v4 v5 ) *> *> where d and e denote diagonal and off-diagonal elements of B, vi *> denotes an element of the vector defining H(i), and ui an element of *> the vector defining G(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEBD2( M, N, A, LDA, D, E, TAUQ, TAUP, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 A( LDA, * ), TAUP( * ), TAUQ( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLACGV, ZLARF, ZLARFG * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.LT.0 ) THEN CALL XERBLA( 'ZGEBD2', -INFO ) RETURN END IF * IF( M.GE.N ) THEN * * Reduce to upper bidiagonal form * DO 10 I = 1, N * * Generate elementary reflector H(i) to annihilate A(i+1:m,i) * ALPHA = A( I, I ) CALL ZLARFG( M-I+1, ALPHA, A( MIN( I+1, M ), I ), 1, $ TAUQ( I ) ) D( I ) = ALPHA A( I, I ) = ONE * * Apply H(i)**H to A(i:m,i+1:n) from the left * IF( I.LT.N ) $ CALL ZLARF( 'Left', M-I+1, N-I, A( I, I ), 1, $ DCONJG( TAUQ( I ) ), A( I, I+1 ), LDA, WORK ) A( I, I ) = D( I ) * IF( I.LT.N ) THEN * * Generate elementary reflector G(i) to annihilate * A(i,i+2:n) * CALL ZLACGV( N-I, A( I, I+1 ), LDA ) ALPHA = A( I, I+1 ) CALL ZLARFG( N-I, ALPHA, A( I, MIN( I+2, N ) ), LDA, $ TAUP( I ) ) E( I ) = ALPHA A( I, I+1 ) = ONE * * Apply G(i) to A(i+1:m,i+1:n) from the right * CALL ZLARF( 'Right', M-I, N-I, A( I, I+1 ), LDA, $ TAUP( I ), A( I+1, I+1 ), LDA, WORK ) CALL ZLACGV( N-I, A( I, I+1 ), LDA ) A( I, I+1 ) = E( I ) ELSE TAUP( I ) = ZERO END IF 10 CONTINUE ELSE * * Reduce to lower bidiagonal form * DO 20 I = 1, M * * Generate elementary reflector G(i) to annihilate A(i,i+1:n) * CALL ZLACGV( N-I+1, A( I, I ), LDA ) ALPHA = A( I, I ) CALL ZLARFG( N-I+1, ALPHA, A( I, MIN( I+1, N ) ), LDA, $ TAUP( I ) ) D( I ) = ALPHA A( I, I ) = ONE * * Apply G(i) to A(i+1:m,i:n) from the right * IF( I.LT.M ) $ CALL ZLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, $ TAUP( I ), A( I+1, I ), LDA, WORK ) CALL ZLACGV( N-I+1, A( I, I ), LDA ) A( I, I ) = D( I ) * IF( I.LT.M ) THEN * * Generate elementary reflector H(i) to annihilate * A(i+2:m,i) * ALPHA = A( I+1, I ) CALL ZLARFG( M-I, ALPHA, A( MIN( I+2, M ), I ), 1, $ TAUQ( I ) ) E( I ) = ALPHA A( I+1, I ) = ONE * * Apply H(i)**H to A(i+1:m,i+1:n) from the left * CALL ZLARF( 'Left', M-I, N-I, A( I+1, I ), 1, $ DCONJG( TAUQ( I ) ), A( I+1, I+1 ), LDA, $ WORK ) A( I+1, I ) = E( I ) ELSE TAUQ( I ) = ZERO END IF 20 CONTINUE END IF RETURN * * End of ZGEBD2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlahr2.f0000644000000000000000000000013214061636515015226 xustar0030 mtime=1623670093.310103982 30 atime=1623670093.310103982 30 ctime=1623670093.310103982 elk-7.2.42/src/LAPACK/zlahr2.f0000644002504400250440000002415714061636515017274 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAHR2 reduces the specified number of first columns of a general rectangular matrix A so that elements below the specified subdiagonal are zero, and returns auxiliary matrices which are needed to apply the transformation to the unreduced part of A. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAHR2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAHR2( N, K, NB, A, LDA, TAU, T, LDT, Y, LDY ) * * .. Scalar Arguments .. * INTEGER K, LDA, LDT, LDY, N, NB * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), T( LDT, NB ), TAU( NB ), * $ Y( LDY, NB ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAHR2 reduces the first NB columns of A complex general n-BY-(n-k+1) *> matrix A so that elements below the k-th subdiagonal are zero. The *> reduction is performed by an unitary similarity transformation *> Q**H * A * Q. The routine returns the matrices V and T which determine *> Q as a block reflector I - V*T*V**H, and also the matrix Y = A * V * T. *> *> This is an auxiliary routine called by ZGEHRD. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The offset for the reduction. Elements below the k-th *> subdiagonal in the first NB columns are reduced to zero. *> K < N. *> \endverbatim *> *> \param[in] NB *> \verbatim *> NB is INTEGER *> The number of columns to be reduced. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N-K+1) *> On entry, the n-by-(n-k+1) general matrix A. *> On exit, the elements on and above the k-th subdiagonal in *> the first NB columns are overwritten with the corresponding *> elements of the reduced matrix; the elements below the k-th *> subdiagonal, with the array TAU, represent the matrix Q as a *> product of elementary reflectors. The other columns of A are *> unchanged. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (NB) *> The scalar factors of the elementary reflectors. See Further *> Details. *> \endverbatim *> *> \param[out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,NB) *> The upper triangular matrix T. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= NB. *> \endverbatim *> *> \param[out] Y *> \verbatim *> Y is COMPLEX*16 array, dimension (LDY,NB) *> The n-by-nb matrix Y. *> \endverbatim *> *> \param[in] LDY *> \verbatim *> LDY is INTEGER *> The leading dimension of the array Y. LDY >= N. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of nb elementary reflectors *> *> Q = H(1) H(2) . . . H(nb). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i+k-1) = 0, v(i+k) = 1; v(i+k+1:n) is stored on exit in *> A(i+k+1:n,i), and tau in TAU(i). *> *> The elements of the vectors v together form the (n-k+1)-by-nb matrix *> V which is needed, with T and Y, to apply the transformation to the *> unreduced part of the matrix, using an update of the form: *> A := (I - V*T*V**H) * (A - Y*V**H). *> *> The contents of A on exit are illustrated by the following example *> with n = 7, k = 3 and nb = 2: *> *> ( a a a a a ) *> ( a a a a a ) *> ( a a a a a ) *> ( h h a a a ) *> ( v1 h a a a ) *> ( v1 v2 a a a ) *> ( v1 v2 a a a ) *> *> where a denotes an element of the original matrix A, h denotes a *> modified element of the upper Hessenberg matrix H, and vi denotes an *> element of the vector defining H(i). *> *> This subroutine is a slight modification of LAPACK-3.0's DLAHRD *> incorporating improvements proposed by Quintana-Orti and Van de *> Gejin. Note that the entries of A(1:K,2:NB) differ from those *> returned by the original LAPACK-3.0's DLAHRD routine. (This *> subroutine is not backward compatible with LAPACK-3.0's DLAHRD.) *> \endverbatim * *> \par References: * ================ *> *> Gregorio Quintana-Orti and Robert van de Geijn, "Improving the *> performance of reduction to Hessenberg form," ACM Transactions on *> Mathematical Software, 32(2):180-194, June 2006. *> * ===================================================================== SUBROUTINE ZLAHR2( N, K, NB, A, LDA, TAU, T, LDT, Y, LDY ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER K, LDA, LDT, LDY, N, NB * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), T( LDT, NB ), TAU( NB ), $ Y( LDY, NB ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I COMPLEX*16 EI * .. * .. External Subroutines .. EXTERNAL ZAXPY, ZCOPY, ZGEMM, ZGEMV, ZLACPY, $ ZLARFG, ZSCAL, ZTRMM, ZTRMV, ZLACGV * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * * Quick return if possible * IF( N.LE.1 ) $ RETURN * DO 10 I = 1, NB IF( I.GT.1 ) THEN * * Update A(K+1:N,I) * * Update I-th column of A - Y * V**H * CALL ZLACGV( I-1, A( K+I-1, 1 ), LDA ) CALL ZGEMV( 'NO TRANSPOSE', N-K, I-1, -ONE, Y(K+1,1), LDY, $ A( K+I-1, 1 ), LDA, ONE, A( K+1, I ), 1 ) CALL ZLACGV( I-1, A( K+I-1, 1 ), LDA ) * * Apply I - V * T**H * V**H to this column (call it b) from the * left, using the last column of T as workspace * * Let V = ( V1 ) and b = ( b1 ) (first I-1 rows) * ( V2 ) ( b2 ) * * where V1 is unit lower triangular * * w := V1**H * b1 * CALL ZCOPY( I-1, A( K+1, I ), 1, T( 1, NB ), 1 ) CALL ZTRMV( 'Lower', 'Conjugate transpose', 'UNIT', $ I-1, A( K+1, 1 ), $ LDA, T( 1, NB ), 1 ) * * w := w + V2**H * b2 * CALL ZGEMV( 'Conjugate transpose', N-K-I+1, I-1, $ ONE, A( K+I, 1 ), $ LDA, A( K+I, I ), 1, ONE, T( 1, NB ), 1 ) * * w := T**H * w * CALL ZTRMV( 'Upper', 'Conjugate transpose', 'NON-UNIT', $ I-1, T, LDT, $ T( 1, NB ), 1 ) * * b2 := b2 - V2*w * CALL ZGEMV( 'NO TRANSPOSE', N-K-I+1, I-1, -ONE, $ A( K+I, 1 ), $ LDA, T( 1, NB ), 1, ONE, A( K+I, I ), 1 ) * * b1 := b1 - V1*w * CALL ZTRMV( 'Lower', 'NO TRANSPOSE', $ 'UNIT', I-1, $ A( K+1, 1 ), LDA, T( 1, NB ), 1 ) CALL ZAXPY( I-1, -ONE, T( 1, NB ), 1, A( K+1, I ), 1 ) * A( K+I-1, I-1 ) = EI END IF * * Generate the elementary reflector H(I) to annihilate * A(K+I+1:N,I) * CALL ZLARFG( N-K-I+1, A( K+I, I ), A( MIN( K+I+1, N ), I ), 1, $ TAU( I ) ) EI = A( K+I, I ) A( K+I, I ) = ONE * * Compute Y(K+1:N,I) * CALL ZGEMV( 'NO TRANSPOSE', N-K, N-K-I+1, $ ONE, A( K+1, I+1 ), $ LDA, A( K+I, I ), 1, ZERO, Y( K+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', N-K-I+1, I-1, $ ONE, A( K+I, 1 ), LDA, $ A( K+I, I ), 1, ZERO, T( 1, I ), 1 ) CALL ZGEMV( 'NO TRANSPOSE', N-K, I-1, -ONE, $ Y( K+1, 1 ), LDY, $ T( 1, I ), 1, ONE, Y( K+1, I ), 1 ) CALL ZSCAL( N-K, TAU( I ), Y( K+1, I ), 1 ) * * Compute T(1:I,I) * CALL ZSCAL( I-1, -TAU( I ), T( 1, I ), 1 ) CALL ZTRMV( 'Upper', 'No Transpose', 'NON-UNIT', $ I-1, T, LDT, $ T( 1, I ), 1 ) T( I, I ) = TAU( I ) * 10 CONTINUE A( K+NB, NB ) = EI * * Compute Y(1:K,1:NB) * CALL ZLACPY( 'ALL', K, NB, A( 1, 2 ), LDA, Y, LDY ) CALL ZTRMM( 'RIGHT', 'Lower', 'NO TRANSPOSE', $ 'UNIT', K, NB, $ ONE, A( K+1, 1 ), LDA, Y, LDY ) IF( N.GT.K+NB ) $ CALL ZGEMM( 'NO TRANSPOSE', 'NO TRANSPOSE', K, $ NB, N-K-NB, ONE, $ A( 1, 2+NB ), LDA, A( K+1+NB, 1 ), LDA, ONE, Y, $ LDY ) CALL ZTRMM( 'RIGHT', 'Upper', 'NO TRANSPOSE', $ 'NON-UNIT', K, NB, $ ONE, T, LDT, Y, LDY ) * RETURN * * End of ZLAHR2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlarfb.f0000644000000000000000000000012714061636515015310 xustar0029 mtime=1623670093.31210398 29 atime=1623670093.31210398 29 ctime=1623670093.31210398 elk-7.2.42/src/LAPACK/zlarfb.f0000644002504400250440000005337114061636515017352 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLARFB applies a block reflector or its conjugate-transpose to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLARFB + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, * T, LDT, C, LDC, WORK, LDWORK ) * * .. Scalar Arguments .. * CHARACTER DIRECT, SIDE, STOREV, TRANS * INTEGER K, LDC, LDT, LDV, LDWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 C( LDC, * ), T( LDT, * ), V( LDV, * ), * $ WORK( LDWORK, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLARFB applies a complex block reflector H or its transpose H**H to a *> complex M-by-N matrix C, from either the left or the right. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply H or H**H from the Left *> = 'R': apply H or H**H from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply H (No transpose) *> = 'C': apply H**H (Conjugate transpose) *> \endverbatim *> *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Indicates how H is formed from a product of elementary *> reflectors *> = 'F': H = H(1) H(2) . . . H(k) (Forward) *> = 'B': H = H(k) . . . H(2) H(1) (Backward) *> \endverbatim *> *> \param[in] STOREV *> \verbatim *> STOREV is CHARACTER*1 *> Indicates how the vectors which define the elementary *> reflectors are stored: *> = 'C': Columnwise *> = 'R': Rowwise *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The order of the matrix T (= the number of elementary *> reflectors whose product defines the block reflector). *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is COMPLEX*16 array, dimension *> (LDV,K) if STOREV = 'C' *> (LDV,M) if STOREV = 'R' and SIDE = 'L' *> (LDV,N) if STOREV = 'R' and SIDE = 'R' *> See Further Details. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. *> If STOREV = 'C' and SIDE = 'L', LDV >= max(1,M); *> if STOREV = 'C' and SIDE = 'R', LDV >= max(1,N); *> if STOREV = 'R', LDV >= K. *> \endverbatim *> *> \param[in] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,K) *> The triangular K-by-K matrix T in the representation of the *> block reflector. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= K. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by H*C or H**H*C or C*H or C*H**H. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (LDWORK,K) *> \endverbatim *> *> \param[in] LDWORK *> \verbatim *> LDWORK is INTEGER *> The leading dimension of the array WORK. *> If SIDE = 'L', LDWORK >= max(1,N); *> if SIDE = 'R', LDWORK >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2013 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The shape of the matrix V and the storage of the vectors which define *> the H(i) is best illustrated by the following example with n = 5 and *> k = 3. The elements equal to 1 are not stored; the corresponding *> array elements are modified but restored on exit. The rest of the *> array is not used. *> *> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R': *> *> V = ( 1 ) V = ( 1 v1 v1 v1 v1 ) *> ( v1 1 ) ( 1 v2 v2 v2 ) *> ( v1 v2 1 ) ( 1 v3 v3 ) *> ( v1 v2 v3 ) *> ( v1 v2 v3 ) *> *> DIRECT = 'B' and STOREV = 'C': DIRECT = 'B' and STOREV = 'R': *> *> V = ( v1 v2 v3 ) V = ( v1 v1 1 ) *> ( v1 v2 v3 ) ( v2 v2 v2 1 ) *> ( 1 v2 v3 ) ( v3 v3 v3 v3 1 ) *> ( 1 v3 ) *> ( 1 ) *> \endverbatim *> * ===================================================================== SUBROUTINE ZLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, $ T, LDT, C, LDC, WORK, LDWORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2013 * * .. Scalar Arguments .. CHARACTER DIRECT, SIDE, STOREV, TRANS INTEGER K, LDC, LDT, LDV, LDWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 C( LDC, * ), T( LDT, * ), V( LDV, * ), $ WORK( LDWORK, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. CHARACTER TRANST INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL ZCOPY, ZGEMM, ZLACGV, ZTRMM * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. * .. Executable Statements .. * * Quick return if possible * IF( M.LE.0 .OR. N.LE.0 ) $ RETURN * IF( LSAME( TRANS, 'N' ) ) THEN TRANST = 'C' ELSE TRANST = 'N' END IF * IF( LSAME( STOREV, 'C' ) ) THEN * IF( LSAME( DIRECT, 'F' ) ) THEN * * Let V = ( V1 ) (first K rows) * ( V2 ) * where V1 is unit lower triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**H * C where C = ( C1 ) * ( C2 ) * * W := C**H * V = (C1**H * V1 + C2**H * V2) (stored in WORK) * * W := C1**H * DO 10 J = 1, K CALL ZCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) CALL ZLACGV( N, WORK( 1, J ), 1 ) 10 CONTINUE * * W := W * V1 * CALL ZTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, $ K, ONE, V, LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C2**H * V2 * CALL ZGEMM( 'Conjugate transpose', 'No transpose', N, $ K, M-K, ONE, C( K+1, 1 ), LDC, $ V( K+1, 1 ), LDV, ONE, WORK, LDWORK ) END IF * * W := W * T**H or W * T * CALL ZTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V * W**H * IF( M.GT.K ) THEN * * C2 := C2 - V2 * W**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', $ M-K, N, K, -ONE, V( K+1, 1 ), LDV, WORK, $ LDWORK, ONE, C( K+1, 1 ), LDC ) END IF * * W := W * V1**H * CALL ZTRMM( 'Right', 'Lower', 'Conjugate transpose', $ 'Unit', N, K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W**H * DO 30 J = 1, K DO 20 I = 1, N C( J, I ) = C( J, I ) - DCONJG( WORK( I, J ) ) 20 CONTINUE 30 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**H where C = ( C1 C2 ) * * W := C * V = (C1*V1 + C2*V2) (stored in WORK) * * W := C1 * DO 40 J = 1, K CALL ZCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) 40 CONTINUE * * W := W * V1 * CALL ZTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, $ K, ONE, V, LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C2 * V2 * CALL ZGEMM( 'No transpose', 'No transpose', M, K, N-K, $ ONE, C( 1, K+1 ), LDC, V( K+1, 1 ), LDV, $ ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**H * CALL ZTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V**H * IF( N.GT.K ) THEN * * C2 := C2 - W * V2**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', M, $ N-K, K, -ONE, WORK, LDWORK, V( K+1, 1 ), $ LDV, ONE, C( 1, K+1 ), LDC ) END IF * * W := W * V1**H * CALL ZTRMM( 'Right', 'Lower', 'Conjugate transpose', $ 'Unit', M, K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 60 J = 1, K DO 50 I = 1, M C( I, J ) = C( I, J ) - WORK( I, J ) 50 CONTINUE 60 CONTINUE END IF * ELSE * * Let V = ( V1 ) * ( V2 ) (last K rows) * where V2 is unit upper triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**H * C where C = ( C1 ) * ( C2 ) * * W := C**H * V = (C1**H * V1 + C2**H * V2) (stored in WORK) * * W := C2**H * DO 70 J = 1, K CALL ZCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) CALL ZLACGV( N, WORK( 1, J ), 1 ) 70 CONTINUE * * W := W * V2 * CALL ZTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, $ K, ONE, V( M-K+1, 1 ), LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C1**H * V1 * CALL ZGEMM( 'Conjugate transpose', 'No transpose', N, $ K, M-K, ONE, C, LDC, V, LDV, ONE, WORK, $ LDWORK ) END IF * * W := W * T**H or W * T * CALL ZTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V * W**H * IF( M.GT.K ) THEN * * C1 := C1 - V1 * W**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', $ M-K, N, K, -ONE, V, LDV, WORK, LDWORK, $ ONE, C, LDC ) END IF * * W := W * V2**H * CALL ZTRMM( 'Right', 'Upper', 'Conjugate transpose', $ 'Unit', N, K, ONE, V( M-K+1, 1 ), LDV, WORK, $ LDWORK ) * * C2 := C2 - W**H * DO 90 J = 1, K DO 80 I = 1, N C( M-K+J, I ) = C( M-K+J, I ) - $ DCONJG( WORK( I, J ) ) 80 CONTINUE 90 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**H where C = ( C1 C2 ) * * W := C * V = (C1*V1 + C2*V2) (stored in WORK) * * W := C2 * DO 100 J = 1, K CALL ZCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) 100 CONTINUE * * W := W * V2 * CALL ZTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, $ K, ONE, V( N-K+1, 1 ), LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C1 * V1 * CALL ZGEMM( 'No transpose', 'No transpose', M, K, N-K, $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**H * CALL ZTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V**H * IF( N.GT.K ) THEN * * C1 := C1 - W * V1**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', M, $ N-K, K, -ONE, WORK, LDWORK, V, LDV, ONE, $ C, LDC ) END IF * * W := W * V2**H * CALL ZTRMM( 'Right', 'Upper', 'Conjugate transpose', $ 'Unit', M, K, ONE, V( N-K+1, 1 ), LDV, WORK, $ LDWORK ) * * C2 := C2 - W * DO 120 J = 1, K DO 110 I = 1, M C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) 110 CONTINUE 120 CONTINUE END IF END IF * ELSE IF( LSAME( STOREV, 'R' ) ) THEN * IF( LSAME( DIRECT, 'F' ) ) THEN * * Let V = ( V1 V2 ) (V1: first K columns) * where V1 is unit upper triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**H * C where C = ( C1 ) * ( C2 ) * * W := C**H * V**H = (C1**H * V1**H + C2**H * V2**H) (stored in WORK) * * W := C1**H * DO 130 J = 1, K CALL ZCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) CALL ZLACGV( N, WORK( 1, J ), 1 ) 130 CONTINUE * * W := W * V1**H * CALL ZTRMM( 'Right', 'Upper', 'Conjugate transpose', $ 'Unit', N, K, ONE, V, LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C2**H * V2**H * CALL ZGEMM( 'Conjugate transpose', $ 'Conjugate transpose', N, K, M-K, ONE, $ C( K+1, 1 ), LDC, V( 1, K+1 ), LDV, ONE, $ WORK, LDWORK ) END IF * * W := W * T**H or W * T * CALL ZTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V**H * W**H * IF( M.GT.K ) THEN * * C2 := C2 - V2**H * W**H * CALL ZGEMM( 'Conjugate transpose', $ 'Conjugate transpose', M-K, N, K, -ONE, $ V( 1, K+1 ), LDV, WORK, LDWORK, ONE, $ C( K+1, 1 ), LDC ) END IF * * W := W * V1 * CALL ZTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, $ K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W**H * DO 150 J = 1, K DO 140 I = 1, N C( J, I ) = C( J, I ) - DCONJG( WORK( I, J ) ) 140 CONTINUE 150 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**H where C = ( C1 C2 ) * * W := C * V**H = (C1*V1**H + C2*V2**H) (stored in WORK) * * W := C1 * DO 160 J = 1, K CALL ZCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) 160 CONTINUE * * W := W * V1**H * CALL ZTRMM( 'Right', 'Upper', 'Conjugate transpose', $ 'Unit', M, K, ONE, V, LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C2 * V2**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', M, $ K, N-K, ONE, C( 1, K+1 ), LDC, $ V( 1, K+1 ), LDV, ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**H * CALL ZTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V * IF( N.GT.K ) THEN * * C2 := C2 - W * V2 * CALL ZGEMM( 'No transpose', 'No transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V( 1, K+1 ), LDV, ONE, $ C( 1, K+1 ), LDC ) END IF * * W := W * V1 * CALL ZTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, $ K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 180 J = 1, K DO 170 I = 1, M C( I, J ) = C( I, J ) - WORK( I, J ) 170 CONTINUE 180 CONTINUE * END IF * ELSE * * Let V = ( V1 V2 ) (V2: last K columns) * where V2 is unit lower triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**H * C where C = ( C1 ) * ( C2 ) * * W := C**H * V**H = (C1**H * V1**H + C2**H * V2**H) (stored in WORK) * * W := C2**H * DO 190 J = 1, K CALL ZCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) CALL ZLACGV( N, WORK( 1, J ), 1 ) 190 CONTINUE * * W := W * V2**H * CALL ZTRMM( 'Right', 'Lower', 'Conjugate transpose', $ 'Unit', N, K, ONE, V( 1, M-K+1 ), LDV, WORK, $ LDWORK ) IF( M.GT.K ) THEN * * W := W + C1**H * V1**H * CALL ZGEMM( 'Conjugate transpose', $ 'Conjugate transpose', N, K, M-K, ONE, C, $ LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T**H or W * T * CALL ZTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V**H * W**H * IF( M.GT.K ) THEN * * C1 := C1 - V1**H * W**H * CALL ZGEMM( 'Conjugate transpose', $ 'Conjugate transpose', M-K, N, K, -ONE, V, $ LDV, WORK, LDWORK, ONE, C, LDC ) END IF * * W := W * V2 * CALL ZTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, $ K, ONE, V( 1, M-K+1 ), LDV, WORK, LDWORK ) * * C2 := C2 - W**H * DO 210 J = 1, K DO 200 I = 1, N C( M-K+J, I ) = C( M-K+J, I ) - $ DCONJG( WORK( I, J ) ) 200 CONTINUE 210 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**H where C = ( C1 C2 ) * * W := C * V**H = (C1*V1**H + C2*V2**H) (stored in WORK) * * W := C2 * DO 220 J = 1, K CALL ZCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) 220 CONTINUE * * W := W * V2**H * CALL ZTRMM( 'Right', 'Lower', 'Conjugate transpose', $ 'Unit', M, K, ONE, V( 1, N-K+1 ), LDV, WORK, $ LDWORK ) IF( N.GT.K ) THEN * * W := W + C1 * V1**H * CALL ZGEMM( 'No transpose', 'Conjugate transpose', M, $ K, N-K, ONE, C, LDC, V, LDV, ONE, WORK, $ LDWORK ) END IF * * W := W * T or W * T**H * CALL ZTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V * IF( N.GT.K ) THEN * * C1 := C1 - W * V1 * CALL ZGEMM( 'No transpose', 'No transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V, LDV, ONE, C, LDC ) END IF * * W := W * V2 * CALL ZTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, $ K, ONE, V( 1, N-K+1 ), LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 240 J = 1, K DO 230 I = 1, M C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) 230 CONTINUE 240 CONTINUE * END IF * END IF END IF * RETURN * * End of ZLARFB * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgehd2.f0000644000000000000000000000013214061636515015207 xustar0030 mtime=1623670093.314103978 30 atime=1623670093.314103978 30 ctime=1623670093.314103978 elk-7.2.42/src/LAPACK/zgehd2.f0000644002504400250440000001467314061636515017257 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEHD2 reduces a general square matrix to upper Hessenberg form using an unblocked algorithm. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEHD2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEHD2( N, ILO, IHI, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, ILO, INFO, LDA, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEHD2 reduces a complex general matrix A to upper Hessenberg form H *> by a unitary similarity transformation: Q**H * A * Q = H . *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> It is assumed that A is already upper triangular in rows *> and columns 1:ILO-1 and IHI+1:N. ILO and IHI are normally *> set by a previous call to ZGEBAL; otherwise they should be *> set to 1 and N respectively. See Further Details. *> 1 <= ILO <= IHI <= max(1,N). *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the n by n general matrix to be reduced. *> On exit, the upper triangle and the first subdiagonal of A *> are overwritten with the upper Hessenberg matrix H, and the *> elements below the first subdiagonal, with the array TAU, *> represent the unitary matrix Q as a product of elementary *> reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of (ihi-ilo) elementary *> reflectors *> *> Q = H(ilo) H(ilo+1) . . . H(ihi-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0, v(i+1) = 1 and v(ihi+1:n) = 0; v(i+2:ihi) is stored on *> exit in A(i+2:ihi,i), and tau in TAU(i). *> *> The contents of A are illustrated by the following example, with *> n = 7, ilo = 2 and ihi = 6: *> *> on entry, on exit, *> *> ( a a a a a a a ) ( a a h h h h a ) *> ( a a a a a a ) ( a h h h h a ) *> ( a a a a a a ) ( h h h h h h ) *> ( a a a a a a ) ( v2 h h h h h ) *> ( a a a a a a ) ( v2 v3 h h h h ) *> ( a a a a a a ) ( v2 v3 v4 h h h ) *> ( a ) ( a ) *> *> where a denotes an element of the original matrix A, h denotes a *> modified element of the upper Hessenberg matrix H, and vi denotes an *> element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEHD2( N, ILO, IHI, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, ILO, INFO, LDA, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF, ZLARFG * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 IF( N.LT.0 ) THEN INFO = -1 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, N ) ) THEN INFO = -2 ELSE IF( IHI.LT.MIN( ILO, N ) .OR. IHI.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEHD2', -INFO ) RETURN END IF * DO 10 I = ILO, IHI - 1 * * Compute elementary reflector H(i) to annihilate A(i+2:ihi,i) * ALPHA = A( I+1, I ) CALL ZLARFG( IHI-I, ALPHA, A( MIN( I+2, N ), I ), 1, TAU( I ) ) A( I+1, I ) = ONE * * Apply H(i) to A(1:ihi,i+1:ihi) from the right * CALL ZLARF( 'Right', IHI, IHI-I, A( I+1, I ), 1, TAU( I ), $ A( 1, I+1 ), LDA, WORK ) * * Apply H(i)**H to A(i+1:ihi,i+1:n) from the left * CALL ZLARF( 'Left', IHI-I, N-I, A( I+1, I ), 1, $ DCONJG( TAU( I ) ), A( I+1, I+1 ), LDA, WORK ) * A( I+1, I ) = ALPHA 10 CONTINUE * RETURN * * End of ZGEHD2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgelq2.f0000644000000000000000000000013214061636515015230 xustar0030 mtime=1623670093.316103976 30 atime=1623670093.316103976 30 ctime=1623670093.316103976 elk-7.2.42/src/LAPACK/zgelq2.f0000644002504400250440000001244714061636515017275 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGELQ2 computes the LQ factorization of a general rectangular matrix using an unblocked algorithm. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGELQ2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGELQ2( M, N, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGELQ2 computes an LQ factorization of a complex m-by-n matrix A: *> *> A = ( L 0 ) * Q *> *> where: *> *> Q is a n-by-n orthogonal matrix; *> L is an lower-triangular m-by-m matrix; *> 0 is a m-by-(n-m) zero matrix, if m < n. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the m by n matrix A. *> On exit, the elements on and below the diagonal of the array *> contain the m by min(m,n) lower trapezoidal matrix L (L is *> lower triangular if m <= n); the elements above the diagonal, *> with the array TAU, represent the unitary matrix Q as a *> product of elementary reflectors (see Further Details). *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (M) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2019 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of elementary reflectors *> *> Q = H(k)**H . . . H(2)**H H(1)**H, where k = min(m,n). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i-1) = 0 and v(i) = 1; conjg(v(i+1:n)) is stored on exit in *> A(i,i+1:n), and tau in TAU(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGELQ2( M, N, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.9.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2019 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, K COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLACGV, ZLARF, ZLARFG * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGELQ2', -INFO ) RETURN END IF * K = MIN( M, N ) * DO 10 I = 1, K * * Generate elementary reflector H(i) to annihilate A(i,i+1:n) * CALL ZLACGV( N-I+1, A( I, I ), LDA ) ALPHA = A( I, I ) CALL ZLARFG( N-I+1, ALPHA, A( I, MIN( I+1, N ) ), LDA, $ TAU( I ) ) IF( I.LT.M ) THEN * * Apply H(i) to A(i+1:m,i:n) from the right * A( I, I ) = ONE CALL ZLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, TAU( I ), $ A( I+1, I ), LDA, WORK ) END IF A( I, I ) = ALPHA CALL ZLACGV( N-I+1, A( I, I ), LDA ) 10 CONTINUE RETURN * * End of ZGELQ2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlarft.f0000644000000000000000000000013214061636515015326 xustar0030 mtime=1623670093.318103974 30 atime=1623670093.318103974 30 ctime=1623670093.318103974 elk-7.2.42/src/LAPACK/zlarft.f0000644002504400250440000002415514061636515017372 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLARFT forms the triangular factor T of a block reflector H = I - vtvH * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLARFT + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLARFT( DIRECT, STOREV, N, K, V, LDV, TAU, T, LDT ) * * .. Scalar Arguments .. * CHARACTER DIRECT, STOREV * INTEGER K, LDT, LDV, N * .. * .. Array Arguments .. * COMPLEX*16 T( LDT, * ), TAU( * ), V( LDV, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLARFT forms the triangular factor T of a complex block reflector H *> of order n, which is defined as a product of k elementary reflectors. *> *> If DIRECT = 'F', H = H(1) H(2) . . . H(k) and T is upper triangular; *> *> If DIRECT = 'B', H = H(k) . . . H(2) H(1) and T is lower triangular. *> *> If STOREV = 'C', the vector which defines the elementary reflector *> H(i) is stored in the i-th column of the array V, and *> *> H = I - V * T * V**H *> *> If STOREV = 'R', the vector which defines the elementary reflector *> H(i) is stored in the i-th row of the array V, and *> *> H = I - V**H * T * V *> \endverbatim * * Arguments: * ========== * *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Specifies the order in which the elementary reflectors are *> multiplied to form the block reflector: *> = 'F': H = H(1) H(2) . . . H(k) (Forward) *> = 'B': H = H(k) . . . H(2) H(1) (Backward) *> \endverbatim *> *> \param[in] STOREV *> \verbatim *> STOREV is CHARACTER*1 *> Specifies how the vectors which define the elementary *> reflectors are stored (see also Further Details): *> = 'C': columnwise *> = 'R': rowwise *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the block reflector H. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The order of the triangular factor T (= the number of *> elementary reflectors). K >= 1. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is COMPLEX*16 array, dimension *> (LDV,K) if STOREV = 'C' *> (LDV,N) if STOREV = 'R' *> The matrix V. See further details. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. *> If STOREV = 'C', LDV >= max(1,N); if STOREV = 'R', LDV >= K. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i). *> \endverbatim *> *> \param[out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,K) *> The k by k triangular factor T of the block reflector. *> If DIRECT = 'F', T is upper triangular; if DIRECT = 'B', T is *> lower triangular. The rest of the array is not used. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= K. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The shape of the matrix V and the storage of the vectors which define *> the H(i) is best illustrated by the following example with n = 5 and *> k = 3. The elements equal to 1 are not stored. *> *> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R': *> *> V = ( 1 ) V = ( 1 v1 v1 v1 v1 ) *> ( v1 1 ) ( 1 v2 v2 v2 ) *> ( v1 v2 1 ) ( 1 v3 v3 ) *> ( v1 v2 v3 ) *> ( v1 v2 v3 ) *> *> DIRECT = 'B' and STOREV = 'C': DIRECT = 'B' and STOREV = 'R': *> *> V = ( v1 v2 v3 ) V = ( v1 v1 1 ) *> ( v1 v2 v3 ) ( v2 v2 v2 1 ) *> ( 1 v2 v3 ) ( v3 v3 v3 v3 1 ) *> ( 1 v3 ) *> ( 1 ) *> \endverbatim *> * ===================================================================== SUBROUTINE ZLARFT( DIRECT, STOREV, N, K, V, LDV, TAU, T, LDT ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. CHARACTER DIRECT, STOREV INTEGER K, LDT, LDV, N * .. * .. Array Arguments .. COMPLEX*16 T( LDT, * ), TAU( * ), V( LDV, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, J, PREVLASTV, LASTV * .. * .. External Subroutines .. EXTERNAL ZGEMV, ZTRMV, ZGEMM * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Executable Statements .. * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( LSAME( DIRECT, 'F' ) ) THEN PREVLASTV = N DO I = 1, K PREVLASTV = MAX( PREVLASTV, I ) IF( TAU( I ).EQ.ZERO ) THEN * * H(i) = I * DO J = 1, I T( J, I ) = ZERO END DO ELSE * * general case * IF( LSAME( STOREV, 'C' ) ) THEN * Skip any trailing zeros. DO LASTV = N, I+1, -1 IF( V( LASTV, I ).NE.ZERO ) EXIT END DO DO J = 1, I-1 T( J, I ) = -TAU( I ) * CONJG( V( I , J ) ) END DO J = MIN( LASTV, PREVLASTV ) * * T(1:i-1,i) := - tau(i) * V(i:j,1:i-1)**H * V(i:j,i) * CALL ZGEMV( 'Conjugate transpose', J-I, I-1, $ -TAU( I ), V( I+1, 1 ), LDV, $ V( I+1, I ), 1, ONE, T( 1, I ), 1 ) ELSE * Skip any trailing zeros. DO LASTV = N, I+1, -1 IF( V( I, LASTV ).NE.ZERO ) EXIT END DO DO J = 1, I-1 T( J, I ) = -TAU( I ) * V( J , I ) END DO J = MIN( LASTV, PREVLASTV ) * * T(1:i-1,i) := - tau(i) * V(1:i-1,i:j) * V(i,i:j)**H * CALL ZGEMM( 'N', 'C', I-1, 1, J-I, -TAU( I ), $ V( 1, I+1 ), LDV, V( I, I+1 ), LDV, $ ONE, T( 1, I ), LDT ) END IF * * T(1:i-1,i) := T(1:i-1,1:i-1) * T(1:i-1,i) * CALL ZTRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T, $ LDT, T( 1, I ), 1 ) T( I, I ) = TAU( I ) IF( I.GT.1 ) THEN PREVLASTV = MAX( PREVLASTV, LASTV ) ELSE PREVLASTV = LASTV END IF END IF END DO ELSE PREVLASTV = 1 DO I = K, 1, -1 IF( TAU( I ).EQ.ZERO ) THEN * * H(i) = I * DO J = I, K T( J, I ) = ZERO END DO ELSE * * general case * IF( I.LT.K ) THEN IF( LSAME( STOREV, 'C' ) ) THEN * Skip any leading zeros. DO LASTV = 1, I-1 IF( V( LASTV, I ).NE.ZERO ) EXIT END DO DO J = I+1, K T( J, I ) = -TAU( I ) * CONJG( V( N-K+I , J ) ) END DO J = MAX( LASTV, PREVLASTV ) * * T(i+1:k,i) = -tau(i) * V(j:n-k+i,i+1:k)**H * V(j:n-k+i,i) * CALL ZGEMV( 'Conjugate transpose', N-K+I-J, K-I, $ -TAU( I ), V( J, I+1 ), LDV, V( J, I ), $ 1, ONE, T( I+1, I ), 1 ) ELSE * Skip any leading zeros. DO LASTV = 1, I-1 IF( V( I, LASTV ).NE.ZERO ) EXIT END DO DO J = I+1, K T( J, I ) = -TAU( I ) * V( J, N-K+I ) END DO J = MAX( LASTV, PREVLASTV ) * * T(i+1:k,i) = -tau(i) * V(i+1:k,j:n-k+i) * V(i,j:n-k+i)**H * CALL ZGEMM( 'N', 'C', K-I, 1, N-K+I-J, -TAU( I ), $ V( I+1, J ), LDV, V( I, J ), LDV, $ ONE, T( I+1, I ), LDT ) END IF * * T(i+1:k,i) := T(i+1:k,i+1:k) * T(i+1:k,i) * CALL ZTRMV( 'Lower', 'No transpose', 'Non-unit', K-I, $ T( I+1, I+1 ), LDT, T( I+1, I ), 1 ) IF( I.GT.1 ) THEN PREVLASTV = MIN( PREVLASTV, LASTV ) ELSE PREVLASTV = LASTV END IF END IF T( I, I ) = TAU( I ) END IF END DO END IF RETURN * * End of ZLARFT * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zgeqr2.f0000644000000000000000000000013214061636515015236 xustar0030 mtime=1623670093.320103972 30 atime=1623670093.320103972 30 ctime=1623670093.320103972 elk-7.2.42/src/LAPACK/zgeqr2.f0000644002504400250440000001233514061636515017277 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZGEQR2 computes the QR factorization of a general rectangular matrix using an unblocked algorithm. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZGEQR2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZGEQR2( M, N, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZGEQR2 computes a QR factorization of a complex m-by-n matrix A: *> *> A = Q * ( R ), *> ( 0 ) *> *> where: *> *> Q is a m-by-m orthogonal matrix; *> R is an upper-triangular n-by-n matrix; *> 0 is a (m-n)-by-n zero matrix, if m > n. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the m by n matrix A. *> On exit, the elements on and above the diagonal of the array *> contain the min(m,n) by n upper trapezoidal matrix R (R is *> upper triangular if m >= n); the elements below the diagonal, *> with the array TAU, represent the unitary matrix Q as a *> product of elementary reflectors (see Further Details). *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (min(M,N)) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2019 * *> \ingroup complex16GEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> The matrix Q is represented as a product of elementary reflectors *> *> Q = H(1) H(2) . . . H(k), where k = min(m,n). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(i+1:m,i), *> and tau in TAU(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZGEQR2( M, N, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.9.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2019 * * .. Scalar Arguments .. INTEGER INFO, LDA, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, K COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF, ZLARFG * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZGEQR2', -INFO ) RETURN END IF * K = MIN( M, N ) * DO 10 I = 1, K * * Generate elementary reflector H(i) to annihilate A(i+1:m,i) * CALL ZLARFG( M-I+1, A( I, I ), A( MIN( I+1, M ), I ), 1, $ TAU( I ) ) IF( I.LT.N ) THEN * * Apply H(i)**H to A(i:m,i+1:n) from the left * ALPHA = A( I, I ) A( I, I ) = ONE CALL ZLARF( 'Left', M-I+1, N-I, A( I, I ), 1, $ DCONJG( TAU( I ) ), A( I, I+1 ), LDA, WORK ) A( I, I ) = ALPHA END IF 10 CONTINUE RETURN * * End of ZGEQR2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhegs2.f0000644000000000000000000000013014061636515015224 xustar0029 mtime=1623670093.32210397 30 atime=1623670093.321103971 29 ctime=1623670093.32210397 elk-7.2.42/src/LAPACK/zhegs2.f0000644002504400250440000002251314061636515017266 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHEGS2 reduces a Hermitian definite generalized eigenproblem to standard form, using the factorization results obtained from cpotrf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHEGS2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHEGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHEGS2 reduces a complex Hermitian-definite generalized *> eigenproblem to standard form. *> *> If ITYPE = 1, the problem is A*x = lambda*B*x, *> and A is overwritten by inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H) *> *> If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or *> B*A*x = lambda*x, and A is overwritten by U*A*U**H or L**H *A*L. *> *> B must have been previously factorized as U**H *U or L*L**H by ZPOTRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] ITYPE *> \verbatim *> ITYPE is INTEGER *> = 1: compute inv(U**H)*A*inv(U) or inv(L)*A*inv(L**H); *> = 2 or 3: compute U*A*U**H or L**H *A*L. *> \endverbatim *> *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> Hermitian matrix A is stored, and how B has been factorized. *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrices A and B. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> n by n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n by n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the transformed matrix, stored in the *> same format as A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is COMPLEX*16 array, dimension (LDB,N) *> The triangular factor from the Cholesky factorization of B, *> as returned by ZPOTRF. *> B is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEcomputational * * ===================================================================== SUBROUTINE ZHEGS2( ITYPE, UPLO, N, A, LDA, B, LDB, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, ITYPE, LDA, LDB, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), B( LDB, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, HALF PARAMETER ( ONE = 1.0D+0, HALF = 0.5D+0 ) COMPLEX*16 CONE PARAMETER ( CONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER K DOUBLE PRECISION AKK, BKK COMPLEX*16 CT * .. * .. External Subroutines .. EXTERNAL XERBLA, ZAXPY, ZDSCAL, ZHER2, ZLACGV, ZTRMV, $ ZTRSV * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( ITYPE.LT.1 .OR. ITYPE.GT.3 ) THEN INFO = -1 ELSE IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( LDB.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHEGS2', -INFO ) RETURN END IF * IF( ITYPE.EQ.1 ) THEN IF( UPPER ) THEN * * Compute inv(U**H)*A*inv(U) * DO 10 K = 1, N * * Update the upper triangle of A(k:n,k:n) * AKK = A( K, K ) BKK = B( K, K ) AKK = AKK / BKK**2 A( K, K ) = AKK IF( K.LT.N ) THEN CALL ZDSCAL( N-K, ONE / BKK, A( K, K+1 ), LDA ) CT = -HALF*AKK CALL ZLACGV( N-K, A( K, K+1 ), LDA ) CALL ZLACGV( N-K, B( K, K+1 ), LDB ) CALL ZAXPY( N-K, CT, B( K, K+1 ), LDB, A( K, K+1 ), $ LDA ) CALL ZHER2( UPLO, N-K, -CONE, A( K, K+1 ), LDA, $ B( K, K+1 ), LDB, A( K+1, K+1 ), LDA ) CALL ZAXPY( N-K, CT, B( K, K+1 ), LDB, A( K, K+1 ), $ LDA ) CALL ZLACGV( N-K, B( K, K+1 ), LDB ) CALL ZTRSV( UPLO, 'Conjugate transpose', 'Non-unit', $ N-K, B( K+1, K+1 ), LDB, A( K, K+1 ), $ LDA ) CALL ZLACGV( N-K, A( K, K+1 ), LDA ) END IF 10 CONTINUE ELSE * * Compute inv(L)*A*inv(L**H) * DO 20 K = 1, N * * Update the lower triangle of A(k:n,k:n) * AKK = A( K, K ) BKK = B( K, K ) AKK = AKK / BKK**2 A( K, K ) = AKK IF( K.LT.N ) THEN CALL ZDSCAL( N-K, ONE / BKK, A( K+1, K ), 1 ) CT = -HALF*AKK CALL ZAXPY( N-K, CT, B( K+1, K ), 1, A( K+1, K ), 1 ) CALL ZHER2( UPLO, N-K, -CONE, A( K+1, K ), 1, $ B( K+1, K ), 1, A( K+1, K+1 ), LDA ) CALL ZAXPY( N-K, CT, B( K+1, K ), 1, A( K+1, K ), 1 ) CALL ZTRSV( UPLO, 'No transpose', 'Non-unit', N-K, $ B( K+1, K+1 ), LDB, A( K+1, K ), 1 ) END IF 20 CONTINUE END IF ELSE IF( UPPER ) THEN * * Compute U*A*U**H * DO 30 K = 1, N * * Update the upper triangle of A(1:k,1:k) * AKK = A( K, K ) BKK = B( K, K ) CALL ZTRMV( UPLO, 'No transpose', 'Non-unit', K-1, B, $ LDB, A( 1, K ), 1 ) CT = HALF*AKK CALL ZAXPY( K-1, CT, B( 1, K ), 1, A( 1, K ), 1 ) CALL ZHER2( UPLO, K-1, CONE, A( 1, K ), 1, B( 1, K ), 1, $ A, LDA ) CALL ZAXPY( K-1, CT, B( 1, K ), 1, A( 1, K ), 1 ) CALL ZDSCAL( K-1, BKK, A( 1, K ), 1 ) A( K, K ) = AKK*BKK**2 30 CONTINUE ELSE * * Compute L**H *A*L * DO 40 K = 1, N * * Update the lower triangle of A(1:k,1:k) * AKK = A( K, K ) BKK = B( K, K ) CALL ZLACGV( K-1, A( K, 1 ), LDA ) CALL ZTRMV( UPLO, 'Conjugate transpose', 'Non-unit', K-1, $ B, LDB, A( K, 1 ), LDA ) CT = HALF*AKK CALL ZLACGV( K-1, B( K, 1 ), LDB ) CALL ZAXPY( K-1, CT, B( K, 1 ), LDB, A( K, 1 ), LDA ) CALL ZHER2( UPLO, K-1, CONE, A( K, 1 ), LDA, B( K, 1 ), $ LDB, A, LDA ) CALL ZAXPY( K-1, CT, B( K, 1 ), LDB, A( K, 1 ), LDA ) CALL ZLACGV( K-1, B( K, 1 ), LDB ) CALL ZDSCAL( K-1, BKK, A( K, 1 ), LDA ) CALL ZLACGV( K-1, A( K, 1 ), LDA ) A( K, K ) = AKK*BKK**2 40 CONTINUE END IF END IF RETURN * * End of ZHEGS2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlatrd.f0000644000000000000000000000013114061636515015323 xustar0030 mtime=1623670093.324103969 29 atime=1623670093.32310397 30 ctime=1623670093.324103969 elk-7.2.42/src/LAPACK/zlatrd.f0000644002504400250440000003040414061636515017362 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLATRD reduces the first nb rows and columns of a symmetric/Hermitian matrix A to real tridiagonal form by an unitary similarity transformation. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLATRD + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLATRD( UPLO, N, NB, A, LDA, E, TAU, W, LDW ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER LDA, LDW, N, NB * .. * .. Array Arguments .. * DOUBLE PRECISION E( * ) * COMPLEX*16 A( LDA, * ), TAU( * ), W( LDW, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLATRD reduces NB rows and columns of a complex Hermitian matrix A to *> Hermitian tridiagonal form by a unitary similarity *> transformation Q**H * A * Q, and returns the matrices V and W which are *> needed to apply the transformation to the unreduced part of A. *> *> If UPLO = 'U', ZLATRD reduces the last NB rows and columns of a *> matrix, of which the upper triangle is supplied; *> if UPLO = 'L', ZLATRD reduces the first NB rows and columns of a *> matrix, of which the lower triangle is supplied. *> *> This is an auxiliary routine called by ZHETRD. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> Hermitian matrix A is stored: *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. *> \endverbatim *> *> \param[in] NB *> \verbatim *> NB is INTEGER *> The number of rows and columns to be reduced. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> n-by-n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n-by-n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit: *> if UPLO = 'U', the last NB columns have been reduced to *> tridiagonal form, with the diagonal elements overwriting *> the diagonal elements of A; the elements above the diagonal *> with the array TAU, represent the unitary matrix Q as a *> product of elementary reflectors; *> if UPLO = 'L', the first NB columns have been reduced to *> tridiagonal form, with the diagonal elements overwriting *> the diagonal elements of A; the elements below the diagonal *> with the array TAU, represent the unitary matrix Q as a *> product of elementary reflectors. *> See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> If UPLO = 'U', E(n-nb:n-1) contains the superdiagonal *> elements of the last NB columns of the reduced matrix; *> if UPLO = 'L', E(1:nb) contains the subdiagonal elements of *> the first NB columns of the reduced matrix. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors, stored in *> TAU(n-nb:n-1) if UPLO = 'U', and in TAU(1:nb) if UPLO = 'L'. *> See Further Details. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (LDW,NB) *> The n-by-nb matrix W required to update the unreduced part *> of A. *> \endverbatim *> *> \param[in] LDW *> \verbatim *> LDW is INTEGER *> The leading dimension of the array W. LDW >= max(1,N). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n) H(n-1) . . . H(n-nb+1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(i:n) = 0 and v(i-1) = 1; v(1:i-1) is stored on exit in A(1:i-1,i), *> and tau in TAU(i-1). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(nb). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+1:n) is stored on exit in A(i+1:n,i), *> and tau in TAU(i). *> *> The elements of the vectors v together form the n-by-nb matrix V *> which is needed, with W, to apply the transformation to the unreduced *> part of the matrix, using a Hermitian rank-2k update of the form: *> A := A - V*W**H - W*V**H. *> *> The contents of A on exit are illustrated by the following examples *> with n = 5 and nb = 2: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( a a a v4 v5 ) ( d ) *> ( a a v4 v5 ) ( 1 d ) *> ( a 1 v5 ) ( v1 1 a ) *> ( d 1 ) ( v1 v2 a a ) *> ( d ) ( v1 v2 a a a ) *> *> where d denotes a diagonal element of the reduced matrix, a denotes *> an element of the original matrix that is unchanged, and vi denotes *> an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZLATRD( UPLO, N, NB, A, LDA, E, TAU, W, LDW ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER LDA, LDW, N, NB * .. * .. Array Arguments .. DOUBLE PRECISION E( * ) COMPLEX*16 A( LDA, * ), TAU( * ), W( LDW, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO, ONE, HALF PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ), $ ONE = ( 1.0D+0, 0.0D+0 ), $ HALF = ( 0.5D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, IW COMPLEX*16 ALPHA * .. * .. External Subroutines .. EXTERNAL ZAXPY, ZGEMV, ZHEMV, ZLACGV, ZLARFG, ZSCAL * .. * .. External Functions .. LOGICAL LSAME COMPLEX*16 ZDOTC EXTERNAL LSAME, ZDOTC * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MIN * .. * .. Executable Statements .. * * Quick return if possible * IF( N.LE.0 ) $ RETURN * IF( LSAME( UPLO, 'U' ) ) THEN * * Reduce last NB columns of upper triangle * DO 10 I = N, N - NB + 1, -1 IW = I - N + NB IF( I.LT.N ) THEN * * Update A(1:i,i) * A( I, I ) = DBLE( A( I, I ) ) CALL ZLACGV( N-I, W( I, IW+1 ), LDW ) CALL ZGEMV( 'No transpose', I, N-I, -ONE, A( 1, I+1 ), $ LDA, W( I, IW+1 ), LDW, ONE, A( 1, I ), 1 ) CALL ZLACGV( N-I, W( I, IW+1 ), LDW ) CALL ZLACGV( N-I, A( I, I+1 ), LDA ) CALL ZGEMV( 'No transpose', I, N-I, -ONE, W( 1, IW+1 ), $ LDW, A( I, I+1 ), LDA, ONE, A( 1, I ), 1 ) CALL ZLACGV( N-I, A( I, I+1 ), LDA ) A( I, I ) = DBLE( A( I, I ) ) END IF IF( I.GT.1 ) THEN * * Generate elementary reflector H(i) to annihilate * A(1:i-2,i) * ALPHA = A( I-1, I ) CALL ZLARFG( I-1, ALPHA, A( 1, I ), 1, TAU( I-1 ) ) E( I-1 ) = ALPHA A( I-1, I ) = ONE * * Compute W(1:i-1,i) * CALL ZHEMV( 'Upper', I-1, ONE, A, LDA, A( 1, I ), 1, $ ZERO, W( 1, IW ), 1 ) IF( I.LT.N ) THEN CALL ZGEMV( 'Conjugate transpose', I-1, N-I, ONE, $ W( 1, IW+1 ), LDW, A( 1, I ), 1, ZERO, $ W( I+1, IW ), 1 ) CALL ZGEMV( 'No transpose', I-1, N-I, -ONE, $ A( 1, I+1 ), LDA, W( I+1, IW ), 1, ONE, $ W( 1, IW ), 1 ) CALL ZGEMV( 'Conjugate transpose', I-1, N-I, ONE, $ A( 1, I+1 ), LDA, A( 1, I ), 1, ZERO, $ W( I+1, IW ), 1 ) CALL ZGEMV( 'No transpose', I-1, N-I, -ONE, $ W( 1, IW+1 ), LDW, W( I+1, IW ), 1, ONE, $ W( 1, IW ), 1 ) END IF CALL ZSCAL( I-1, TAU( I-1 ), W( 1, IW ), 1 ) ALPHA = -HALF*TAU( I-1 )*ZDOTC( I-1, W( 1, IW ), 1, $ A( 1, I ), 1 ) CALL ZAXPY( I-1, ALPHA, A( 1, I ), 1, W( 1, IW ), 1 ) END IF * 10 CONTINUE ELSE * * Reduce first NB columns of lower triangle * DO 20 I = 1, NB * * Update A(i:n,i) * A( I, I ) = DBLE( A( I, I ) ) CALL ZLACGV( I-1, W( I, 1 ), LDW ) CALL ZGEMV( 'No transpose', N-I+1, I-1, -ONE, A( I, 1 ), $ LDA, W( I, 1 ), LDW, ONE, A( I, I ), 1 ) CALL ZLACGV( I-1, W( I, 1 ), LDW ) CALL ZLACGV( I-1, A( I, 1 ), LDA ) CALL ZGEMV( 'No transpose', N-I+1, I-1, -ONE, W( I, 1 ), $ LDW, A( I, 1 ), LDA, ONE, A( I, I ), 1 ) CALL ZLACGV( I-1, A( I, 1 ), LDA ) A( I, I ) = DBLE( A( I, I ) ) IF( I.LT.N ) THEN * * Generate elementary reflector H(i) to annihilate * A(i+2:n,i) * ALPHA = A( I+1, I ) CALL ZLARFG( N-I, ALPHA, A( MIN( I+2, N ), I ), 1, $ TAU( I ) ) E( I ) = ALPHA A( I+1, I ) = ONE * * Compute W(i+1:n,i) * CALL ZHEMV( 'Lower', N-I, ONE, A( I+1, I+1 ), LDA, $ A( I+1, I ), 1, ZERO, W( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', N-I, I-1, ONE, $ W( I+1, 1 ), LDW, A( I+1, I ), 1, ZERO, $ W( 1, I ), 1 ) CALL ZGEMV( 'No transpose', N-I, I-1, -ONE, A( I+1, 1 ), $ LDA, W( 1, I ), 1, ONE, W( I+1, I ), 1 ) CALL ZGEMV( 'Conjugate transpose', N-I, I-1, ONE, $ A( I+1, 1 ), LDA, A( I+1, I ), 1, ZERO, $ W( 1, I ), 1 ) CALL ZGEMV( 'No transpose', N-I, I-1, -ONE, W( I+1, 1 ), $ LDW, W( 1, I ), 1, ONE, W( I+1, I ), 1 ) CALL ZSCAL( N-I, TAU( I ), W( I+1, I ), 1 ) ALPHA = -HALF*TAU( I )*ZDOTC( N-I, W( I+1, I ), 1, $ A( I+1, I ), 1 ) CALL ZAXPY( N-I, ALPHA, A( I+1, I ), 1, W( I+1, I ), 1 ) END IF * 20 CONTINUE END IF * RETURN * * End of ZLATRD * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zhetd2.f0000644000000000000000000000013214061636515015224 xustar0030 mtime=1623670093.326103967 30 atime=1623670093.326103967 30 ctime=1623670093.326103967 elk-7.2.42/src/LAPACK/zhetd2.f0000644002504400250440000002371114061636515017265 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZHETD2 reduces a Hermitian matrix to real symmetric tridiagonal form by an unitary similarity transformation (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZHETD2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZHETD2( UPLO, N, A, LDA, D, E, TAU, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), E( * ) * COMPLEX*16 A( LDA, * ), TAU( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZHETD2 reduces a complex Hermitian matrix A to real symmetric *> tridiagonal form T by a unitary similarity transformation: *> Q**H * A * Q = T. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the upper or lower triangular part of the *> Hermitian matrix A is stored: *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> n-by-n upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n-by-n lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> On exit, if UPLO = 'U', the diagonal and first superdiagonal *> of A are overwritten by the corresponding elements of the *> tridiagonal matrix T, and the elements above the first *> superdiagonal, with the array TAU, represent the unitary *> matrix Q as a product of elementary reflectors; if UPLO *> = 'L', the diagonal and first subdiagonal of A are over- *> written by the corresponding elements of the tridiagonal *> matrix T, and the elements below the first subdiagonal, with *> the array TAU, represent the unitary matrix Q as a product *> of elementary reflectors. See Further Details. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The diagonal elements of the tridiagonal matrix T: *> D(i) = A(i,i). *> \endverbatim *> *> \param[out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix T: *> E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (N-1) *> The scalar factors of the elementary reflectors (see Further *> Details). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16HEcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> If UPLO = 'U', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(n-1) . . . H(2) H(1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in *> A(1:i-1,i+1), and tau in TAU(i). *> *> If UPLO = 'L', the matrix Q is represented as a product of elementary *> reflectors *> *> Q = H(1) H(2) . . . H(n-1). *> *> Each H(i) has the form *> *> H(i) = I - tau * v * v**H *> *> where tau is a complex scalar, and v is a complex vector with *> v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in A(i+2:n,i), *> and tau in TAU(i). *> *> The contents of A on exit are illustrated by the following examples *> with n = 5: *> *> if UPLO = 'U': if UPLO = 'L': *> *> ( d e v2 v3 v4 ) ( d ) *> ( d e v3 v4 ) ( e d ) *> ( d e v4 ) ( v1 e d ) *> ( d e ) ( v1 v2 e d ) *> ( d ) ( v1 v2 v3 e d ) *> *> where d and e denote diagonal and off-diagonal elements of T, and vi *> denotes an element of the vector defining H(i). *> \endverbatim *> * ===================================================================== SUBROUTINE ZHETD2( UPLO, N, A, LDA, D, E, TAU, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), E( * ) COMPLEX*16 A( LDA, * ), TAU( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO, HALF PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ), $ HALF = ( 0.5D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER I COMPLEX*16 ALPHA, TAUI * .. * .. External Subroutines .. EXTERNAL XERBLA, ZAXPY, ZHEMV, ZHER2, ZLARFG * .. * .. External Functions .. LOGICAL LSAME COMPLEX*16 ZDOTC EXTERNAL LSAME, ZDOTC * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U') IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZHETD2', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * IF( UPPER ) THEN * * Reduce the upper triangle of A * A( N, N ) = DBLE( A( N, N ) ) DO 10 I = N - 1, 1, -1 * * Generate elementary reflector H(i) = I - tau * v * v**H * to annihilate A(1:i-1,i+1) * ALPHA = A( I, I+1 ) CALL ZLARFG( I, ALPHA, A( 1, I+1 ), 1, TAUI ) E( I ) = ALPHA * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(1:i,1:i) * A( I, I+1 ) = ONE * * Compute x := tau * A * v storing x in TAU(1:i) * CALL ZHEMV( UPLO, I, TAUI, A, LDA, A( 1, I+1 ), 1, ZERO, $ TAU, 1 ) * * Compute w := x - 1/2 * tau * (x**H * v) * v * ALPHA = -HALF*TAUI*ZDOTC( I, TAU, 1, A( 1, I+1 ), 1 ) CALL ZAXPY( I, ALPHA, A( 1, I+1 ), 1, TAU, 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**H - w * v**H * CALL ZHER2( UPLO, I, -ONE, A( 1, I+1 ), 1, TAU, 1, A, $ LDA ) * ELSE A( I, I ) = DBLE( A( I, I ) ) END IF A( I, I+1 ) = E( I ) D( I+1 ) = A( I+1, I+1 ) TAU( I ) = TAUI 10 CONTINUE D( 1 ) = A( 1, 1 ) ELSE * * Reduce the lower triangle of A * A( 1, 1 ) = DBLE( A( 1, 1 ) ) DO 20 I = 1, N - 1 * * Generate elementary reflector H(i) = I - tau * v * v**H * to annihilate A(i+2:n,i) * ALPHA = A( I+1, I ) CALL ZLARFG( N-I, ALPHA, A( MIN( I+2, N ), I ), 1, TAUI ) E( I ) = ALPHA * IF( TAUI.NE.ZERO ) THEN * * Apply H(i) from both sides to A(i+1:n,i+1:n) * A( I+1, I ) = ONE * * Compute x := tau * A * v storing y in TAU(i:n-1) * CALL ZHEMV( UPLO, N-I, TAUI, A( I+1, I+1 ), LDA, $ A( I+1, I ), 1, ZERO, TAU( I ), 1 ) * * Compute w := x - 1/2 * tau * (x**H * v) * v * ALPHA = -HALF*TAUI*ZDOTC( N-I, TAU( I ), 1, A( I+1, I ), $ 1 ) CALL ZAXPY( N-I, ALPHA, A( I+1, I ), 1, TAU( I ), 1 ) * * Apply the transformation as a rank-2 update: * A := A - v * w**H - w * v**H * CALL ZHER2( UPLO, N-I, -ONE, A( I+1, I ), 1, TAU( I ), 1, $ A( I+1, I+1 ), LDA ) * ELSE A( I+1, I+1 ) = DBLE( A( I+1, I+1 ) ) END IF A( I+1, I ) = E( I ) D( I ) = A( I, I ) TAU( I ) = TAUI 20 CONTINUE D( N ) = A( N, N ) END IF * RETURN * * End of ZHETD2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlarfg.f0000644000000000000000000000013214061636515015311 xustar0030 mtime=1623670093.328103965 30 atime=1623670093.328103965 30 ctime=1623670093.328103965 elk-7.2.42/src/LAPACK/zlarfg.f0000644002504400250440000001245514061636515017355 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLARFG generates an elementary reflector (Householder matrix). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLARFG + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLARFG( N, ALPHA, X, INCX, TAU ) * * .. Scalar Arguments .. * INTEGER INCX, N * COMPLEX*16 ALPHA, TAU * .. * .. Array Arguments .. * COMPLEX*16 X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLARFG generates a complex elementary reflector H of order n, such *> that *> *> H**H * ( alpha ) = ( beta ), H**H * H = I. *> ( x ) ( 0 ) *> *> where alpha and beta are scalars, with beta real, and x is an *> (n-1)-element complex vector. H is represented in the form *> *> H = I - tau * ( 1 ) * ( 1 v**H ) , *> ( v ) *> *> where tau is a complex scalar and v is a complex (n-1)-element *> vector. Note that H is not hermitian. *> *> If the elements of x are all zero and alpha is real, then tau = 0 *> and H is taken to be the unit matrix. *> *> Otherwise 1 <= real(tau) <= 2 and abs(tau-1) <= 1 . *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the elementary reflector. *> \endverbatim *> *> \param[in,out] ALPHA *> \verbatim *> ALPHA is COMPLEX*16 *> On entry, the value alpha. *> On exit, it is overwritten with the value beta. *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension *> (1+(N-2)*abs(INCX)) *> On entry, the vector x. *> On exit, it is overwritten with the vector v. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between elements of X. INCX > 0. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is COMPLEX*16 *> The value tau. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLARFG( N, ALPHA, X, INCX, TAU ) * * -- LAPACK auxiliary routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX, N COMPLEX*16 ALPHA, TAU * .. * .. Array Arguments .. COMPLEX*16 X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER J, KNT DOUBLE PRECISION ALPHI, ALPHR, BETA, RSAFMN, SAFMIN, XNORM * .. * .. External Functions .. DOUBLE PRECISION DLAMCH, DLAPY3, DZNRM2 COMPLEX*16 ZLADIV EXTERNAL DLAMCH, DLAPY3, DZNRM2, ZLADIV * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DIMAG, SIGN * .. * .. External Subroutines .. EXTERNAL ZDSCAL, ZSCAL * .. * .. Executable Statements .. * IF( N.LE.0 ) THEN TAU = ZERO RETURN END IF * XNORM = DZNRM2( N-1, X, INCX ) ALPHR = DBLE( ALPHA ) ALPHI = DIMAG( ALPHA ) * IF( XNORM.EQ.ZERO .AND. ALPHI.EQ.ZERO ) THEN * * H = I * TAU = ZERO ELSE * * general case * BETA = -SIGN( DLAPY3( ALPHR, ALPHI, XNORM ), ALPHR ) SAFMIN = DLAMCH( 'S' ) / DLAMCH( 'E' ) RSAFMN = ONE / SAFMIN * KNT = 0 IF( ABS( BETA ).LT.SAFMIN ) THEN * * XNORM, BETA may be inaccurate; scale X and recompute them * 10 CONTINUE KNT = KNT + 1 CALL ZDSCAL( N-1, RSAFMN, X, INCX ) BETA = BETA*RSAFMN ALPHI = ALPHI*RSAFMN ALPHR = ALPHR*RSAFMN IF( (ABS( BETA ).LT.SAFMIN) .AND. (KNT .LT. 20) ) $ GO TO 10 * * New BETA is at most 1, at least SAFMIN * XNORM = DZNRM2( N-1, X, INCX ) ALPHA = DCMPLX( ALPHR, ALPHI ) BETA = -SIGN( DLAPY3( ALPHR, ALPHI, XNORM ), ALPHR ) END IF TAU = DCMPLX( ( BETA-ALPHR ) / BETA, -ALPHI / BETA ) ALPHA = ZLADIV( DCMPLX( ONE ), ALPHA-BETA ) CALL ZSCAL( N-1, ALPHA, X, INCX ) * * If ALPHA is subnormal, it may lose relative accuracy * DO 20 J = 1, KNT BETA = BETA*SAFMIN 20 CONTINUE ALPHA = BETA END IF * RETURN * * End of ZLARFG * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr0.f0000644000000000000000000000013214061636515015235 xustar0030 mtime=1623670093.330103963 30 atime=1623670093.329103964 30 ctime=1623670093.330103963 elk-7.2.42/src/LAPACK/zlaqr0.f0000644002504400250440000006072614061636515017305 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR0 computes the eigenvalues of a Hessenberg matrix, and optionally the matrices from the Schur decomposition. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR0 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR0( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, * IHIZ, Z, LDZ, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, LWORK, N * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAQR0 computes the eigenvalues of a Hessenberg matrix H *> and, optionally, the matrices T and Z from the Schur decomposition *> H = Z T Z**H, where T is an upper triangular matrix (the *> Schur form), and Z is the unitary matrix of Schur vectors. *> *> Optionally Z may be postmultiplied into an input unitary *> matrix Q so that this routine can give the Schur factorization *> of a matrix A which has been reduced to the Hessenberg form H *> by the unitary matrix Q: A = Q*H*Q**H = (QZ)*H*(QZ)**H. *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> = .TRUE. : the full Schur form T is required; *> = .FALSE.: only eigenvalues are required. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> = .TRUE. : the matrix of Schur vectors Z is required; *> = .FALSE.: Schur vectors are not required. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> It is assumed that H is already upper triangular in rows *> and columns 1:ILO-1 and IHI+1:N and, if ILO > 1, *> H(ILO,ILO-1) is zero. ILO and IHI are normally set by a *> previous call to ZGEBAL, and then passed to ZGEHRD when the *> matrix output by ZGEBAL is reduced to Hessenberg form. *> Otherwise, ILO and IHI should be set to 1 and N, *> respectively. If N > 0, then 1 <= ILO <= IHI <= N. *> If N = 0, then ILO = 1 and IHI = 0. *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On entry, the upper Hessenberg matrix H. *> On exit, if INFO = 0 and WANTT is .TRUE., then H *> contains the upper triangular matrix T from the Schur *> decomposition (the Schur form). If INFO = 0 and WANT is *> .FALSE., then the contents of H are unspecified on exit. *> (The output value of H when INFO > 0 is given under the *> description of INFO below.) *> *> This subroutine may explicitly set H(i,j) = 0 for i > j and *> j = 1, 2, ... ILO-1 or j = IHI+1, IHI+2, ... N. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> The leading dimension of the array H. LDH >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (N) *> The computed eigenvalues of H(ILO:IHI,ILO:IHI) are stored *> in W(ILO:IHI). If WANTT is .TRUE., then the eigenvalues are *> stored in the same order as on the diagonal of the Schur *> form returned in H, with W(i) = H(i,i). *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. *> 1 <= ILOZ <= ILO; IHI <= IHIZ <= N. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,IHI) *> If WANTZ is .FALSE., then Z is not referenced. *> If WANTZ is .TRUE., then Z(ILO:IHI,ILOZ:IHIZ) is *> replaced by Z(ILO:IHI,ILOZ:IHIZ)*U where U is the *> orthogonal Schur factor of H(ILO:IHI,ILO:IHI). *> (The output value of Z when INFO > 0 is given under *> the description of INFO below.) *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. if WANTZ is .TRUE. *> then LDZ >= MAX(1,IHIZ). Otherwise, LDZ >= 1. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension LWORK *> On exit, if LWORK = -1, WORK(1) returns an estimate of *> the optimal value for LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N) *> is sufficient, but LWORK typically as large as 6*N may *> be required for optimal performance. A workspace query *> to determine the optimal workspace size is recommended. *> *> If LWORK = -1, then ZLAQR0 does a workspace query. *> In this case, ZLAQR0 checks the input parameters and *> estimates the optimal workspace size for the given *> values of N, ILO and IHI. The estimate is returned *> in WORK(1). No error message related to LWORK is *> issued by XERBLA. Neither H nor Z are accessed. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> > 0: if INFO = i, ZLAQR0 failed to compute all of *> the eigenvalues. Elements 1:ilo-1 and i+1:n of WR *> and WI contain those eigenvalues which have been *> successfully computed. (Failures are rare.) *> *> If INFO > 0 and WANT is .FALSE., then on exit, *> the remaining unconverged eigenvalues are the eigen- *> values of the upper Hessenberg matrix rows and *> columns ILO through INFO of the final, output *> value of H. *> *> If INFO > 0 and WANTT is .TRUE., then on exit *> *> (*) (initial value of H)*U = U*(final value of H) *> *> where U is a unitary matrix. The final *> value of H is upper Hessenberg and triangular in *> rows and columns INFO+1 through IHI. *> *> If INFO > 0 and WANTZ is .TRUE., then on exit *> *> (final value of Z(ILO:IHI,ILOZ:IHIZ) *> = (initial value of Z(ILO:IHI,ILOZ:IHIZ)*U *> *> where U is the unitary matrix in (*) (regard- *> less of the value of WANTT.) *> *> If INFO > 0 and WANTZ is .FALSE., then Z is not *> accessed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA * *> \par References: * ================ *> *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 *> Performance, SIAM Journal of Matrix Analysis, volume 23, pages *> 929--947, 2002. *> \n *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part II: Aggressive Early Deflation, SIAM Journal *> of Matrix Analysis, volume 23, pages 948--973, 2002. *> * ===================================================================== SUBROUTINE ZLAQR0( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, $ IHIZ, Z, LDZ, WORK, LWORK, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, LWORK, N LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * ================================================================ * * .. Parameters .. * * ==== Matrices of order NTINY or smaller must be processed by * . ZLAHQR because of insufficient subdiagonal scratch space. * . (This is a hard limit.) ==== INTEGER NTINY PARAMETER ( NTINY = 11 ) * * ==== Exceptional deflation windows: try to cure rare * . slow convergence by varying the size of the * . deflation window after KEXNW iterations. ==== INTEGER KEXNW PARAMETER ( KEXNW = 5 ) * * ==== Exceptional shifts: try to cure rare slow convergence * . with ad-hoc exceptional shifts every KEXSH iterations. * . ==== INTEGER KEXSH PARAMETER ( KEXSH = 6 ) * * ==== The constant WILK1 is used to form the exceptional * . shifts. ==== DOUBLE PRECISION WILK1 PARAMETER ( WILK1 = 0.75d0 ) COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 AA, BB, CC, CDUM, DD, DET, RTDISC, SWAP, TR2 DOUBLE PRECISION S INTEGER I, INF, IT, ITMAX, K, KACC22, KBOT, KDU, KS, $ KT, KTOP, KU, KV, KWH, KWTOP, KWV, LD, LS, $ LWKOPT, NDEC, NDFL, NH, NHO, NIBBLE, NMIN, NS, $ NSMAX, NSR, NVE, NW, NWMAX, NWR, NWUPBD LOGICAL SORTED CHARACTER JBCMPZ*2 * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Local Arrays .. COMPLEX*16 ZDUM( 1, 1 ) * .. * .. External Subroutines .. EXTERNAL ZLACPY, ZLAHQR, ZLAQR3, ZLAQR4, ZLAQR5 * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DIMAG, INT, MAX, MIN, MOD, $ SQRT * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. INFO = 0 * * ==== Quick return for N = 0: nothing to do. ==== * IF( N.EQ.0 ) THEN WORK( 1 ) = ONE RETURN END IF * IF( N.LE.NTINY ) THEN * * ==== Tiny matrices must use ZLAHQR. ==== * LWKOPT = 1 IF( LWORK.NE.-1 ) $ CALL ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, $ IHIZ, Z, LDZ, INFO ) ELSE * * ==== Use small bulge multi-shift QR with aggressive early * . deflation on larger-than-tiny matrices. ==== * * ==== Hope for the best. ==== * INFO = 0 * * ==== Set up job flags for ILAENV. ==== * IF( WANTT ) THEN JBCMPZ( 1: 1 ) = 'S' ELSE JBCMPZ( 1: 1 ) = 'E' END IF IF( WANTZ ) THEN JBCMPZ( 2: 2 ) = 'V' ELSE JBCMPZ( 2: 2 ) = 'N' END IF * * ==== NWR = recommended deflation window size. At this * . point, N .GT. NTINY = 11, so there is enough * . subdiagonal workspace for NWR.GE.2 as required. * . (In fact, there is enough subdiagonal space for * . NWR.GE.3.) ==== * NWR = ILAENV( 13, 'ZLAQR0', JBCMPZ, N, ILO, IHI, LWORK ) NWR = MAX( 2, NWR ) NWR = MIN( IHI-ILO+1, ( N-1 ) / 3, NWR ) * * ==== NSR = recommended number of simultaneous shifts. * . At this point N .GT. NTINY = 11, so there is at * . enough subdiagonal workspace for NSR to be even * . and greater than or equal to two as required. ==== * NSR = ILAENV( 15, 'ZLAQR0', JBCMPZ, N, ILO, IHI, LWORK ) NSR = MIN( NSR, ( N+6 ) / 9, IHI-ILO ) NSR = MAX( 2, NSR-MOD( NSR, 2 ) ) * * ==== Estimate optimal workspace ==== * * ==== Workspace query call to ZLAQR3 ==== * CALL ZLAQR3( WANTT, WANTZ, N, ILO, IHI, NWR+1, H, LDH, ILOZ, $ IHIZ, Z, LDZ, LS, LD, W, H, LDH, N, H, LDH, N, H, $ LDH, WORK, -1 ) * * ==== Optimal workspace = MAX(ZLAQR5, ZLAQR3) ==== * LWKOPT = MAX( 3*NSR / 2, INT( WORK( 1 ) ) ) * * ==== Quick return in case of workspace query. ==== * IF( LWORK.EQ.-1 ) THEN WORK( 1 ) = DCMPLX( LWKOPT, 0 ) RETURN END IF * * ==== ZLAHQR/ZLAQR0 crossover point ==== * NMIN = ILAENV( 12, 'ZLAQR0', JBCMPZ, N, ILO, IHI, LWORK ) NMIN = MAX( NTINY, NMIN ) * * ==== Nibble crossover point ==== * NIBBLE = ILAENV( 14, 'ZLAQR0', JBCMPZ, N, ILO, IHI, LWORK ) NIBBLE = MAX( 0, NIBBLE ) * * ==== Accumulate reflections during ttswp? Use block * . 2-by-2 structure during matrix-matrix multiply? ==== * KACC22 = ILAENV( 16, 'ZLAQR0', JBCMPZ, N, ILO, IHI, LWORK ) KACC22 = MAX( 0, KACC22 ) KACC22 = MIN( 2, KACC22 ) * * ==== NWMAX = the largest possible deflation window for * . which there is sufficient workspace. ==== * NWMAX = MIN( ( N-1 ) / 3, LWORK / 2 ) NW = NWMAX * * ==== NSMAX = the Largest number of simultaneous shifts * . for which there is sufficient workspace. ==== * NSMAX = MIN( ( N+6 ) / 9, 2*LWORK / 3 ) NSMAX = NSMAX - MOD( NSMAX, 2 ) * * ==== NDFL: an iteration count restarted at deflation. ==== * NDFL = 1 * * ==== ITMAX = iteration limit ==== * ITMAX = MAX( 30, 2*KEXSH )*MAX( 10, ( IHI-ILO+1 ) ) * * ==== Last row and column in the active block ==== * KBOT = IHI * * ==== Main Loop ==== * DO 70 IT = 1, ITMAX * * ==== Done when KBOT falls below ILO ==== * IF( KBOT.LT.ILO ) $ GO TO 80 * * ==== Locate active block ==== * DO 10 K = KBOT, ILO + 1, -1 IF( H( K, K-1 ).EQ.ZERO ) $ GO TO 20 10 CONTINUE K = ILO 20 CONTINUE KTOP = K * * ==== Select deflation window size: * . Typical Case: * . If possible and advisable, nibble the entire * . active block. If not, use size MIN(NWR,NWMAX) * . or MIN(NWR+1,NWMAX) depending upon which has * . the smaller corresponding subdiagonal entry * . (a heuristic). * . * . Exceptional Case: * . If there have been no deflations in KEXNW or * . more iterations, then vary the deflation window * . size. At first, because, larger windows are, * . in general, more powerful than smaller ones, * . rapidly increase the window to the maximum possible. * . Then, gradually reduce the window size. ==== * NH = KBOT - KTOP + 1 NWUPBD = MIN( NH, NWMAX ) IF( NDFL.LT.KEXNW ) THEN NW = MIN( NWUPBD, NWR ) ELSE NW = MIN( NWUPBD, 2*NW ) END IF IF( NW.LT.NWMAX ) THEN IF( NW.GE.NH-1 ) THEN NW = NH ELSE KWTOP = KBOT - NW + 1 IF( CABS1( H( KWTOP, KWTOP-1 ) ).GT. $ CABS1( H( KWTOP-1, KWTOP-2 ) ) )NW = NW + 1 END IF END IF IF( NDFL.LT.KEXNW ) THEN NDEC = -1 ELSE IF( NDEC.GE.0 .OR. NW.GE.NWUPBD ) THEN NDEC = NDEC + 1 IF( NW-NDEC.LT.2 ) $ NDEC = 0 NW = NW - NDEC END IF * * ==== Aggressive early deflation: * . split workspace under the subdiagonal into * . - an nw-by-nw work array V in the lower * . left-hand-corner, * . - an NW-by-at-least-NW-but-more-is-better * . (NW-by-NHO) horizontal work array along * . the bottom edge, * . - an at-least-NW-but-more-is-better (NHV-by-NW) * . vertical work array along the left-hand-edge. * . ==== * KV = N - NW + 1 KT = NW + 1 NHO = ( N-NW-1 ) - KT + 1 KWV = NW + 2 NVE = ( N-NW ) - KWV + 1 * * ==== Aggressive early deflation ==== * CALL ZLAQR3( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, $ IHIZ, Z, LDZ, LS, LD, W, H( KV, 1 ), LDH, NHO, $ H( KV, KT ), LDH, NVE, H( KWV, 1 ), LDH, WORK, $ LWORK ) * * ==== Adjust KBOT accounting for new deflations. ==== * KBOT = KBOT - LD * * ==== KS points to the shifts. ==== * KS = KBOT - LS + 1 * * ==== Skip an expensive QR sweep if there is a (partly * . heuristic) reason to expect that many eigenvalues * . will deflate without it. Here, the QR sweep is * . skipped if many eigenvalues have just been deflated * . or if the remaining active block is small. * IF( ( LD.EQ.0 ) .OR. ( ( 100*LD.LE.NW*NIBBLE ) .AND. ( KBOT- $ KTOP+1.GT.MIN( NMIN, NWMAX ) ) ) ) THEN * * ==== NS = nominal number of simultaneous shifts. * . This may be lowered (slightly) if ZLAQR3 * . did not provide that many shifts. ==== * NS = MIN( NSMAX, NSR, MAX( 2, KBOT-KTOP ) ) NS = NS - MOD( NS, 2 ) * * ==== If there have been no deflations * . in a multiple of KEXSH iterations, * . then try exceptional shifts. * . Otherwise use shifts provided by * . ZLAQR3 above or from the eigenvalues * . of a trailing principal submatrix. ==== * IF( MOD( NDFL, KEXSH ).EQ.0 ) THEN KS = KBOT - NS + 1 DO 30 I = KBOT, KS + 1, -2 W( I ) = H( I, I ) + WILK1*CABS1( H( I, I-1 ) ) W( I-1 ) = W( I ) 30 CONTINUE ELSE * * ==== Got NS/2 or fewer shifts? Use ZLAQR4 or * . ZLAHQR on a trailing principal submatrix to * . get more. (Since NS.LE.NSMAX.LE.(N+6)/9, * . there is enough space below the subdiagonal * . to fit an NS-by-NS scratch array.) ==== * IF( KBOT-KS+1.LE.NS / 2 ) THEN KS = KBOT - NS + 1 KT = N - NS + 1 CALL ZLACPY( 'A', NS, NS, H( KS, KS ), LDH, $ H( KT, 1 ), LDH ) IF( NS.GT.NMIN ) THEN CALL ZLAQR4( .false., .false., NS, 1, NS, $ H( KT, 1 ), LDH, W( KS ), 1, 1, $ ZDUM, 1, WORK, LWORK, INF ) ELSE CALL ZLAHQR( .false., .false., NS, 1, NS, $ H( KT, 1 ), LDH, W( KS ), 1, 1, $ ZDUM, 1, INF ) END IF KS = KS + INF * * ==== In case of a rare QR failure use * . eigenvalues of the trailing 2-by-2 * . principal submatrix. Scale to avoid * . overflows, underflows and subnormals. * . (The scale factor S can not be zero, * . because H(KBOT,KBOT-1) is nonzero.) ==== * IF( KS.GE.KBOT ) THEN S = CABS1( H( KBOT-1, KBOT-1 ) ) + $ CABS1( H( KBOT, KBOT-1 ) ) + $ CABS1( H( KBOT-1, KBOT ) ) + $ CABS1( H( KBOT, KBOT ) ) AA = H( KBOT-1, KBOT-1 ) / S CC = H( KBOT, KBOT-1 ) / S BB = H( KBOT-1, KBOT ) / S DD = H( KBOT, KBOT ) / S TR2 = ( AA+DD ) / TWO DET = ( AA-TR2 )*( DD-TR2 ) - BB*CC RTDISC = SQRT( -DET ) W( KBOT-1 ) = ( TR2+RTDISC )*S W( KBOT ) = ( TR2-RTDISC )*S * KS = KBOT - 1 END IF END IF * IF( KBOT-KS+1.GT.NS ) THEN * * ==== Sort the shifts (Helps a little) ==== * SORTED = .false. DO 50 K = KBOT, KS + 1, -1 IF( SORTED ) $ GO TO 60 SORTED = .true. DO 40 I = KS, K - 1 IF( CABS1( W( I ) ).LT.CABS1( W( I+1 ) ) ) $ THEN SORTED = .false. SWAP = W( I ) W( I ) = W( I+1 ) W( I+1 ) = SWAP END IF 40 CONTINUE 50 CONTINUE 60 CONTINUE END IF END IF * * ==== If there are only two shifts, then use * . only one. ==== * IF( KBOT-KS+1.EQ.2 ) THEN IF( CABS1( W( KBOT )-H( KBOT, KBOT ) ).LT. $ CABS1( W( KBOT-1 )-H( KBOT, KBOT ) ) ) THEN W( KBOT-1 ) = W( KBOT ) ELSE W( KBOT ) = W( KBOT-1 ) END IF END IF * * ==== Use up to NS of the the smallest magnitude * . shifts. If there aren't NS shifts available, * . then use them all, possibly dropping one to * . make the number of shifts even. ==== * NS = MIN( NS, KBOT-KS+1 ) NS = NS - MOD( NS, 2 ) KS = KBOT - NS + 1 * * ==== Small-bulge multi-shift QR sweep: * . split workspace under the subdiagonal into * . - a KDU-by-KDU work array U in the lower * . left-hand-corner, * . - a KDU-by-at-least-KDU-but-more-is-better * . (KDU-by-NHo) horizontal work array WH along * . the bottom edge, * . - and an at-least-KDU-but-more-is-better-by-KDU * . (NVE-by-KDU) vertical work WV arrow along * . the left-hand-edge. ==== * KDU = 3*NS - 3 KU = N - KDU + 1 KWH = KDU + 1 NHO = ( N-KDU+1-4 ) - ( KDU+1 ) + 1 KWV = KDU + 4 NVE = N - KDU - KWV + 1 * * ==== Small-bulge multi-shift QR sweep ==== * CALL ZLAQR5( WANTT, WANTZ, KACC22, N, KTOP, KBOT, NS, $ W( KS ), H, LDH, ILOZ, IHIZ, Z, LDZ, WORK, $ 3, H( KU, 1 ), LDH, NVE, H( KWV, 1 ), LDH, $ NHO, H( KU, KWH ), LDH ) END IF * * ==== Note progress (or the lack of it). ==== * IF( LD.GT.0 ) THEN NDFL = 1 ELSE NDFL = NDFL + 1 END IF * * ==== End of main loop ==== 70 CONTINUE * * ==== Iteration limit exceeded. Set INFO to show where * . the problem occurred and exit. ==== * INFO = KBOT 80 CONTINUE END IF * * ==== Return the optimal value of LWORK. ==== * WORK( 1 ) = DCMPLX( LWKOPT, 0 ) * * ==== End of ZLAQR0 ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlahqr.f0000644000000000000000000000013214061636515015325 xustar0030 mtime=1623670093.332103961 30 atime=1623670093.332103961 30 ctime=1623670093.332103961 elk-7.2.42/src/LAPACK/zlahqr.f0000644002504400250440000004405414061636515017371 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAHQR computes the eigenvalues and Schur factorization of an upper Hessenberg matrix, using the double-shift/single-shift QR algorithm. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAHQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, * IHIZ, Z, LDZ, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, N * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), W( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAHQR is an auxiliary routine called by CHSEQR to update the *> eigenvalues and Schur decomposition already computed by CHSEQR, by *> dealing with the Hessenberg submatrix in rows and columns ILO to *> IHI. *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> = .TRUE. : the full Schur form T is required; *> = .FALSE.: only eigenvalues are required. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> = .TRUE. : the matrix of Schur vectors Z is required; *> = .FALSE.: Schur vectors are not required. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> It is assumed that H is already upper triangular in rows and *> columns IHI+1:N, and that H(ILO,ILO-1) = 0 (unless ILO = 1). *> ZLAHQR works primarily with the Hessenberg submatrix in rows *> and columns ILO to IHI, but applies transformations to all of *> H if WANTT is .TRUE.. *> 1 <= ILO <= max(1,IHI); IHI <= N. *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On entry, the upper Hessenberg matrix H. *> On exit, if INFO is zero and if WANTT is .TRUE., then H *> is upper triangular in rows and columns ILO:IHI. If INFO *> is zero and if WANTT is .FALSE., then the contents of H *> are unspecified on exit. The output state of H in case *> INF is positive is below under the description of INFO. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> The leading dimension of the array H. LDH >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (N) *> The computed eigenvalues ILO to IHI are stored in the *> corresponding elements of W. If WANTT is .TRUE., the *> eigenvalues are stored in the same order as on the diagonal *> of the Schur form returned in H, with W(i) = H(i,i). *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. *> 1 <= ILOZ <= ILO; IHI <= IHIZ <= N. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,N) *> If WANTZ is .TRUE., on entry Z must contain the current *> matrix Z of transformations accumulated by CHSEQR, and on *> exit Z has been updated; transformations are applied only to *> the submatrix Z(ILOZ:IHIZ,ILO:IHI). *> If WANTZ is .FALSE., Z is not referenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> > 0: if INFO = i, ZLAHQR failed to compute all the *> eigenvalues ILO to IHI in a total of 30 iterations *> per eigenvalue; elements i+1:ihi of W contain *> those eigenvalues which have been successfully *> computed. *> *> If INFO > 0 and WANTT is .FALSE., then on exit, *> the remaining unconverged eigenvalues are the *> eigenvalues of the upper Hessenberg matrix *> rows and columns ILO through INFO of the final, *> output value of H. *> *> If INFO > 0 and WANTT is .TRUE., then on exit *> (*) (initial value of H)*U = U*(final value of H) *> where U is an orthogonal matrix. The final *> value of H is upper Hessenberg and triangular in *> rows and columns INFO+1 through IHI. *> *> If INFO > 0 and WANTZ is .TRUE., then on exit *> (final value of Z) = (initial value of Z)*U *> where U is the orthogonal matrix in (*) *> (regardless of the value of WANTT.) *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> \verbatim *> *> 02-96 Based on modifications by *> David Day, Sandia National Laboratory, USA *> *> 12-04 Further modifications by *> Ralph Byers, University of Kansas, USA *> This is a modified version of ZLAHQR from LAPACK version 3.0. *> It is (1) more robust against overflow and underflow and *> (2) adopts the more conservative Ahues & Tisseur stopping *> criterion (LAWN 122, 1997). *> \endverbatim *> * ===================================================================== SUBROUTINE ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, $ IHIZ, Z, LDZ, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, N LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), W( * ), Z( LDZ, * ) * .. * * ========================================================= * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO, RONE, HALF PARAMETER ( RZERO = 0.0d0, RONE = 1.0d0, HALF = 0.5d0 ) DOUBLE PRECISION DAT1 PARAMETER ( DAT1 = 3.0d0 / 4.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 CDUM, H11, H11S, H22, SC, SUM, T, T1, TEMP, U, $ V2, X, Y DOUBLE PRECISION AA, AB, BA, BB, H10, H21, RTEMP, S, SAFMAX, $ SAFMIN, SMLNUM, SX, T2, TST, ULP INTEGER I, I1, I2, ITS, ITMAX, J, JHI, JLO, K, L, M, $ NH, NZ * .. * .. Local Arrays .. COMPLEX*16 V( 2 ) * .. * .. External Functions .. COMPLEX*16 ZLADIV DOUBLE PRECISION DLAMCH EXTERNAL ZLADIV, DLAMCH * .. * .. External Subroutines .. EXTERNAL DLABAD, ZCOPY, ZLARFG, ZSCAL * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCONJG, DIMAG, MAX, MIN, SQRT * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. * INFO = 0 * * Quick return if possible * IF( N.EQ.0 ) $ RETURN IF( ILO.EQ.IHI ) THEN W( ILO ) = H( ILO, ILO ) RETURN END IF * * ==== clear out the trash ==== DO 10 J = ILO, IHI - 3 H( J+2, J ) = ZERO H( J+3, J ) = ZERO 10 CONTINUE IF( ILO.LE.IHI-2 ) $ H( IHI, IHI-2 ) = ZERO * ==== ensure that subdiagonal entries are real ==== IF( WANTT ) THEN JLO = 1 JHI = N ELSE JLO = ILO JHI = IHI END IF DO 20 I = ILO + 1, IHI IF( DIMAG( H( I, I-1 ) ).NE.RZERO ) THEN * ==== The following redundant normalization * . avoids problems with both gradual and * . sudden underflow in ABS(H(I,I-1)) ==== SC = H( I, I-1 ) / CABS1( H( I, I-1 ) ) SC = DCONJG( SC ) / ABS( SC ) H( I, I-1 ) = ABS( H( I, I-1 ) ) CALL ZSCAL( JHI-I+1, SC, H( I, I ), LDH ) CALL ZSCAL( MIN( JHI, I+1 )-JLO+1, DCONJG( SC ), $ H( JLO, I ), 1 ) IF( WANTZ ) $ CALL ZSCAL( IHIZ-ILOZ+1, DCONJG( SC ), Z( ILOZ, I ), 1 ) END IF 20 CONTINUE * NH = IHI - ILO + 1 NZ = IHIZ - ILOZ + 1 * * Set machine-dependent constants for the stopping criterion. * SAFMIN = DLAMCH( 'SAFE MINIMUM' ) SAFMAX = RONE / SAFMIN CALL DLABAD( SAFMIN, SAFMAX ) ULP = DLAMCH( 'PRECISION' ) SMLNUM = SAFMIN*( DBLE( NH ) / ULP ) * * I1 and I2 are the indices of the first row and last column of H * to which transformations must be applied. If eigenvalues only are * being computed, I1 and I2 are set inside the main loop. * IF( WANTT ) THEN I1 = 1 I2 = N END IF * * ITMAX is the total number of QR iterations allowed. * ITMAX = 30 * MAX( 10, NH ) * * The main loop begins here. I is the loop index and decreases from * IHI to ILO in steps of 1. Each iteration of the loop works * with the active submatrix in rows and columns L to I. * Eigenvalues I+1 to IHI have already converged. Either L = ILO, or * H(L,L-1) is negligible so that the matrix splits. * I = IHI 30 CONTINUE IF( I.LT.ILO ) $ GO TO 150 * * Perform QR iterations on rows and columns ILO to I until a * submatrix of order 1 splits off at the bottom because a * subdiagonal element has become negligible. * L = ILO DO 130 ITS = 0, ITMAX * * Look for a single small subdiagonal element. * DO 40 K = I, L + 1, -1 IF( CABS1( H( K, K-1 ) ).LE.SMLNUM ) $ GO TO 50 TST = CABS1( H( K-1, K-1 ) ) + CABS1( H( K, K ) ) IF( TST.EQ.ZERO ) THEN IF( K-2.GE.ILO ) $ TST = TST + ABS( DBLE( H( K-1, K-2 ) ) ) IF( K+1.LE.IHI ) $ TST = TST + ABS( DBLE( H( K+1, K ) ) ) END IF * ==== The following is a conservative small subdiagonal * . deflation criterion due to Ahues & Tisseur (LAWN 122, * . 1997). It has better mathematical foundation and * . improves accuracy in some examples. ==== IF( ABS( DBLE( H( K, K-1 ) ) ).LE.ULP*TST ) THEN AB = MAX( CABS1( H( K, K-1 ) ), CABS1( H( K-1, K ) ) ) BA = MIN( CABS1( H( K, K-1 ) ), CABS1( H( K-1, K ) ) ) AA = MAX( CABS1( H( K, K ) ), $ CABS1( H( K-1, K-1 )-H( K, K ) ) ) BB = MIN( CABS1( H( K, K ) ), $ CABS1( H( K-1, K-1 )-H( K, K ) ) ) S = AA + AB IF( BA*( AB / S ).LE.MAX( SMLNUM, $ ULP*( BB*( AA / S ) ) ) )GO TO 50 END IF 40 CONTINUE 50 CONTINUE L = K IF( L.GT.ILO ) THEN * * H(L,L-1) is negligible * H( L, L-1 ) = ZERO END IF * * Exit from loop if a submatrix of order 1 has split off. * IF( L.GE.I ) $ GO TO 140 * * Now the active submatrix is in rows and columns L to I. If * eigenvalues only are being computed, only the active submatrix * need be transformed. * IF( .NOT.WANTT ) THEN I1 = L I2 = I END IF * IF( ITS.EQ.10 ) THEN * * Exceptional shift. * S = DAT1*ABS( DBLE( H( L+1, L ) ) ) T = S + H( L, L ) ELSE IF( ITS.EQ.20 ) THEN * * Exceptional shift. * S = DAT1*ABS( DBLE( H( I, I-1 ) ) ) T = S + H( I, I ) ELSE * * Wilkinson's shift. * T = H( I, I ) U = SQRT( H( I-1, I ) )*SQRT( H( I, I-1 ) ) S = CABS1( U ) IF( S.NE.RZERO ) THEN X = HALF*( H( I-1, I-1 )-T ) SX = CABS1( X ) S = MAX( S, CABS1( X ) ) Y = S*SQRT( ( X / S )**2+( U / S )**2 ) IF( SX.GT.RZERO ) THEN IF( DBLE( X / SX )*DBLE( Y )+DIMAG( X / SX )* $ DIMAG( Y ).LT.RZERO )Y = -Y END IF T = T - U*ZLADIV( U, ( X+Y ) ) END IF END IF * * Look for two consecutive small subdiagonal elements. * DO 60 M = I - 1, L + 1, -1 * * Determine the effect of starting the single-shift QR * iteration at row M, and see if this would make H(M,M-1) * negligible. * H11 = H( M, M ) H22 = H( M+1, M+1 ) H11S = H11 - T H21 = DBLE( H( M+1, M ) ) S = CABS1( H11S ) + ABS( H21 ) H11S = H11S / S H21 = H21 / S V( 1 ) = H11S V( 2 ) = H21 H10 = DBLE( H( M, M-1 ) ) IF( ABS( H10 )*ABS( H21 ).LE.ULP* $ ( CABS1( H11S )*( CABS1( H11 )+CABS1( H22 ) ) ) ) $ GO TO 70 60 CONTINUE H11 = H( L, L ) H22 = H( L+1, L+1 ) H11S = H11 - T H21 = DBLE( H( L+1, L ) ) S = CABS1( H11S ) + ABS( H21 ) H11S = H11S / S H21 = H21 / S V( 1 ) = H11S V( 2 ) = H21 70 CONTINUE * * Single-shift QR step * DO 120 K = M, I - 1 * * The first iteration of this loop determines a reflection G * from the vector V and applies it from left and right to H, * thus creating a nonzero bulge below the subdiagonal. * * Each subsequent iteration determines a reflection G to * restore the Hessenberg form in the (K-1)th column, and thus * chases the bulge one step toward the bottom of the active * submatrix. * * V(2) is always real before the call to ZLARFG, and hence * after the call T2 ( = T1*V(2) ) is also real. * IF( K.GT.M ) $ CALL ZCOPY( 2, H( K, K-1 ), 1, V, 1 ) CALL ZLARFG( 2, V( 1 ), V( 2 ), 1, T1 ) IF( K.GT.M ) THEN H( K, K-1 ) = V( 1 ) H( K+1, K-1 ) = ZERO END IF V2 = V( 2 ) T2 = DBLE( T1*V2 ) * * Apply G from the left to transform the rows of the matrix * in columns K to I2. * DO 80 J = K, I2 SUM = DCONJG( T1 )*H( K, J ) + T2*H( K+1, J ) H( K, J ) = H( K, J ) - SUM H( K+1, J ) = H( K+1, J ) - SUM*V2 80 CONTINUE * * Apply G from the right to transform the columns of the * matrix in rows I1 to min(K+2,I). * DO 90 J = I1, MIN( K+2, I ) SUM = T1*H( J, K ) + T2*H( J, K+1 ) H( J, K ) = H( J, K ) - SUM H( J, K+1 ) = H( J, K+1 ) - SUM*DCONJG( V2 ) 90 CONTINUE * IF( WANTZ ) THEN * * Accumulate transformations in the matrix Z * DO 100 J = ILOZ, IHIZ SUM = T1*Z( J, K ) + T2*Z( J, K+1 ) Z( J, K ) = Z( J, K ) - SUM Z( J, K+1 ) = Z( J, K+1 ) - SUM*DCONJG( V2 ) 100 CONTINUE END IF * IF( K.EQ.M .AND. M.GT.L ) THEN * * If the QR step was started at row M > L because two * consecutive small subdiagonals were found, then extra * scaling must be performed to ensure that H(M,M-1) remains * real. * TEMP = ONE - T1 TEMP = TEMP / ABS( TEMP ) H( M+1, M ) = H( M+1, M )*DCONJG( TEMP ) IF( M+2.LE.I ) $ H( M+2, M+1 ) = H( M+2, M+1 )*TEMP DO 110 J = M, I IF( J.NE.M+1 ) THEN IF( I2.GT.J ) $ CALL ZSCAL( I2-J, TEMP, H( J, J+1 ), LDH ) CALL ZSCAL( J-I1, DCONJG( TEMP ), H( I1, J ), 1 ) IF( WANTZ ) THEN CALL ZSCAL( NZ, DCONJG( TEMP ), Z( ILOZ, J ), $ 1 ) END IF END IF 110 CONTINUE END IF 120 CONTINUE * * Ensure that H(I,I-1) is real. * TEMP = H( I, I-1 ) IF( DIMAG( TEMP ).NE.RZERO ) THEN RTEMP = ABS( TEMP ) H( I, I-1 ) = RTEMP TEMP = TEMP / RTEMP IF( I2.GT.I ) $ CALL ZSCAL( I2-I, DCONJG( TEMP ), H( I, I+1 ), LDH ) CALL ZSCAL( I-I1, TEMP, H( I1, I ), 1 ) IF( WANTZ ) THEN CALL ZSCAL( NZ, TEMP, Z( ILOZ, I ), 1 ) END IF END IF * 130 CONTINUE * * Failure to converge in remaining number of iterations * INFO = I RETURN * 140 CONTINUE * * H(I,I-1) is negligible: one eigenvalue has converged. * W( I ) = H( I, I ) * * return to start of the main loop with new value of I. * I = L - 1 GO TO 30 * 150 CONTINUE RETURN * * End of ZLAHQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlassq.f0000644000000000000000000000013214061636515015341 xustar0030 mtime=1623670093.334103959 30 atime=1623670093.334103959 30 ctime=1623670093.334103959 elk-7.2.42/src/LAPACK/zlassq.f0000644002504400250440000001122414061636515017376 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLASSQ updates a sum of squares represented in scaled form. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLASSQ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLASSQ( N, X, INCX, SCALE, SUMSQ ) * * .. Scalar Arguments .. * INTEGER INCX, N * DOUBLE PRECISION SCALE, SUMSQ * .. * .. Array Arguments .. * COMPLEX*16 X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLASSQ returns the values scl and ssq such that *> *> ( scl**2 )*ssq = x( 1 )**2 +...+ x( n )**2 + ( scale**2 )*sumsq, *> *> where x( i ) = abs( X( 1 + ( i - 1 )*INCX ) ). The value of sumsq is *> assumed to be at least unity and the value of ssq will then satisfy *> *> 1.0 <= ssq <= ( sumsq + 2*n ). *> *> scale is assumed to be non-negative and scl returns the value *> *> scl = max( scale, abs( real( x( i ) ) ), abs( aimag( x( i ) ) ) ), *> i *> *> scale and sumsq must be supplied in SCALE and SUMSQ respectively. *> SCALE and SUMSQ are overwritten by scl and ssq respectively. *> *> The routine makes only one pass through the vector X. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of elements to be used from the vector X. *> \endverbatim *> *> \param[in] X *> \verbatim *> X is COMPLEX*16 array, dimension (1+(N-1)*INCX) *> The vector x as described above. *> x( i ) = X( 1 + ( i - 1 )*INCX ), 1 <= i <= n. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between successive values of the vector X. *> INCX > 0. *> \endverbatim *> *> \param[in,out] SCALE *> \verbatim *> SCALE is DOUBLE PRECISION *> On entry, the value scale in the equation above. *> On exit, SCALE is overwritten with the value scl . *> \endverbatim *> *> \param[in,out] SUMSQ *> \verbatim *> SUMSQ is DOUBLE PRECISION *> On entry, the value sumsq in the equation above. *> On exit, SUMSQ is overwritten with the value ssq . *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLASSQ( N, X, INCX, SCALE, SUMSQ ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX, N DOUBLE PRECISION SCALE, SUMSQ * .. * .. Array Arguments .. COMPLEX*16 X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER IX DOUBLE PRECISION TEMP1 * .. * .. External Functions .. LOGICAL DISNAN EXTERNAL DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DIMAG * .. * .. Executable Statements .. * IF( N.GT.0 ) THEN DO 10 IX = 1, 1 + ( N-1 )*INCX, INCX TEMP1 = ABS( DBLE( X( IX ) ) ) IF( TEMP1.GT.ZERO.OR.DISNAN( TEMP1 ) ) THEN IF( SCALE.LT.TEMP1 ) THEN SUMSQ = 1 + SUMSQ*( SCALE / TEMP1 )**2 SCALE = TEMP1 ELSE SUMSQ = SUMSQ + ( TEMP1 / SCALE )**2 END IF END IF TEMP1 = ABS( DIMAG( X( IX ) ) ) IF( TEMP1.GT.ZERO.OR.DISNAN( TEMP1 ) ) THEN IF( SCALE.LT.TEMP1 ) THEN SUMSQ = 1 + SUMSQ*( SCALE / TEMP1 )**2 SCALE = TEMP1 ELSE SUMSQ = SUMSQ + ( TEMP1 / SCALE )**2 END IF END IF 10 CONTINUE END IF * RETURN * * End of ZLASSQ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zpotrf2.f0000644000000000000000000000013214061636515015432 xustar0030 mtime=1623670093.336103957 30 atime=1623670093.336103957 30 ctime=1623670093.336103957 elk-7.2.42/src/LAPACK/zpotrf2.f0000644002504400250440000001445414061636515017477 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZPOTRF2 * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * RECURSIVE SUBROUTINE ZPOTRF2( UPLO, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZPOTRF2 computes the Cholesky factorization of a Hermitian *> positive definite matrix A using the recursive algorithm. *> *> The factorization has the form *> A = U**H * U, if UPLO = 'U', or *> A = L * L**H, if UPLO = 'L', *> where U is an upper triangular matrix and L is lower triangular. *> *> This is the recursive version of the algorithm. It divides *> the matrix into four submatrices: *> *> [ A11 | A12 ] where A11 is n1 by n1 and A22 is n2 by n2 *> A = [ -----|----- ] with n1 = n/2 *> [ A21 | A22 ] n2 = n-n1 *> *> The subroutine calls itself to factor A11. Update and scale A21 *> or A12, update A22 then call itself to factor A22. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> = 'U': Upper triangle of A is stored; *> = 'L': Lower triangle of A is stored. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the Hermitian matrix A. If UPLO = 'U', the leading *> N-by-N upper triangular part of A contains the upper *> triangular part of the matrix A, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading N-by-N lower triangular part of A contains the lower *> triangular part of the matrix A, and the strictly upper *> triangular part of A is not referenced. *> *> On exit, if INFO = 0, the factor U or L from the Cholesky *> factorization A = U**H*U or A = L*L**H. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: if INFO = i, the leading minor of order i is not *> positive definite, and the factorization could not be *> completed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16POcomputational * * ===================================================================== RECURSIVE SUBROUTINE ZPOTRF2( UPLO, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) COMPLEX*16 CONE PARAMETER ( CONE = (1.0D+0, 0.0D+0) ) * .. * .. Local Scalars .. LOGICAL UPPER INTEGER N1, N2, IINFO DOUBLE PRECISION AJJ * .. * .. External Functions .. LOGICAL LSAME, DISNAN EXTERNAL LSAME, DISNAN * .. * .. External Subroutines .. EXTERNAL ZHERK, ZTRSM, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, DBLE, SQRT * .. * .. Executable Statements .. * * Test the input parameters * INFO = 0 UPPER = LSAME( UPLO, 'U' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -4 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZPOTRF2', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * N=1 case * IF( N.EQ.1 ) THEN * * Test for non-positive-definiteness * AJJ = DBLE( A( 1, 1 ) ) IF( AJJ.LE.ZERO.OR.DISNAN( AJJ ) ) THEN INFO = 1 RETURN END IF * * Factor * A( 1, 1 ) = SQRT( AJJ ) * * Use recursive code * ELSE N1 = N/2 N2 = N-N1 * * Factor A11 * CALL ZPOTRF2( UPLO, N1, A( 1, 1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO RETURN END IF * * Compute the Cholesky factorization A = U**H*U * IF( UPPER ) THEN * * Update and scale A12 * CALL ZTRSM( 'L', 'U', 'C', 'N', N1, N2, CONE, $ A( 1, 1 ), LDA, A( 1, N1+1 ), LDA ) * * Update and factor A22 * CALL ZHERK( UPLO, 'C', N2, N1, -ONE, A( 1, N1+1 ), LDA, $ ONE, A( N1+1, N1+1 ), LDA ) CALL ZPOTRF2( UPLO, N2, A( N1+1, N1+1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO + N1 RETURN END IF * * Compute the Cholesky factorization A = L*L**H * ELSE * * Update and scale A21 * CALL ZTRSM( 'R', 'L', 'C', 'N', N2, N1, CONE, $ A( 1, 1 ), LDA, A( N1+1, 1 ), LDA ) * * Update and factor A22 * CALL ZHERK( UPLO, 'N', N2, N1, -ONE, A( N1+1, 1 ), LDA, $ ONE, A( N1+1, N1+1 ), LDA ) CALL ZPOTRF2( UPLO, N2, A( N1+1, N1+1 ), LDA, IINFO ) IF ( IINFO.NE.0 ) THEN INFO = IINFO + N1 RETURN END IF END IF END IF RETURN * * End of ZPOTRF2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dstedc.f0000644000000000000000000000013214061636515015272 xustar0030 mtime=1623670093.338103956 30 atime=1623670093.338103956 30 ctime=1623670093.338103956 elk-7.2.42/src/LAPACK/dstedc.f0000644002504400250440000003632614061636515017341 0ustar00dewhurstdewhurst00000000000000*> \brief \b DSTEDC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DSTEDC + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DSTEDC( COMPZ, N, D, E, Z, LDZ, WORK, LWORK, IWORK, * LIWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER COMPZ * INTEGER INFO, LDZ, LIWORK, LWORK, N * .. * .. Array Arguments .. * INTEGER IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DSTEDC computes all eigenvalues and, optionally, eigenvectors of a *> symmetric tridiagonal matrix using the divide and conquer method. *> The eigenvectors of a full or band real symmetric matrix can also be *> found if DSYTRD or DSPTRD or DSBTRD has been used to reduce this *> matrix to tridiagonal form. *> *> This code makes very mild assumptions about floating point *> arithmetic. It will work on machines with a guard digit in *> add/subtract, or on those binary machines without guard digits *> which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. *> It could conceivably fail on hexadecimal or decimal machines *> without guard digits, but we know of none. See DLAED3 for details. *> \endverbatim * * Arguments: * ========== * *> \param[in] COMPZ *> \verbatim *> COMPZ is CHARACTER*1 *> = 'N': Compute eigenvalues only. *> = 'I': Compute eigenvectors of tridiagonal matrix also. *> = 'V': Compute eigenvectors of original dense symmetric *> matrix also. On entry, Z contains the orthogonal *> matrix used to reduce the original matrix to *> tridiagonal form. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the diagonal elements of the tridiagonal matrix. *> On exit, if INFO = 0, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the subdiagonal elements of the tridiagonal matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (LDZ,N) *> On entry, if COMPZ = 'V', then Z contains the orthogonal *> matrix used in the reduction to tridiagonal form. *> On exit, if INFO = 0, then if COMPZ = 'V', Z contains the *> orthonormal eigenvectors of the original symmetric matrix, *> and if COMPZ = 'I', Z contains the orthonormal eigenvectors *> of the symmetric tridiagonal matrix. *> If COMPZ = 'N', then Z is not referenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. LDZ >= 1. *> If eigenvectors are desired, then LDZ >= max(1,N). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If COMPZ = 'N' or N <= 1 then LWORK must be at least 1. *> If COMPZ = 'V' and N > 1 then LWORK must be at least *> ( 1 + 3*N + 2*N*lg N + 4*N**2 ), *> where lg( N ) = smallest integer k such *> that 2**k >= N. *> If COMPZ = 'I' and N > 1 then LWORK must be at least *> ( 1 + 4*N + N**2 ). *> Note that for COMPZ = 'I' or 'V', then if N is less than or *> equal to the minimum divide size, usually 25, then LWORK need *> only be max(1,2*(N-1)). *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (MAX(1,LIWORK)) *> On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK. *> \endverbatim *> *> \param[in] LIWORK *> \verbatim *> LIWORK is INTEGER *> The dimension of the array IWORK. *> If COMPZ = 'N' or N <= 1 then LIWORK must be at least 1. *> If COMPZ = 'V' and N > 1 then LIWORK must be at least *> ( 6 + 6*N + 5*N*lg N ). *> If COMPZ = 'I' and N > 1 then LIWORK must be at least *> ( 3 + 5*N ). *> Note that for COMPZ = 'I' or 'V', then if N is less than or *> equal to the minimum divide size, usually 25, then LIWORK *> need only be 1. *> *> If LIWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal size of the IWORK array, *> returns this value as the first entry of the IWORK array, and *> no error message related to LIWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: The algorithm failed to compute an eigenvalue while *> working on the submatrix lying in rows and columns *> INFO/(N+1) through mod(INFO,N+1). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA \n *> Modified by Francoise Tisseur, University of Tennessee *> * ===================================================================== SUBROUTINE DSTEDC( COMPZ, N, D, E, Z, LDZ, WORK, LWORK, IWORK, $ LIWORK, INFO ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. CHARACTER COMPZ INTEGER INFO, LDZ, LIWORK, LWORK, N * .. * .. Array Arguments .. INTEGER IWORK( * ) DOUBLE PRECISION D( * ), E( * ), WORK( * ), Z( LDZ, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0 ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER FINISH, I, ICOMPZ, II, J, K, LGN, LIWMIN, $ LWMIN, M, SMLSIZ, START, STOREZ, STRTRW DOUBLE PRECISION EPS, ORGNRM, P, TINY * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV DOUBLE PRECISION DLAMCH, DLANST EXTERNAL LSAME, ILAENV, DLAMCH, DLANST * .. * .. External Subroutines .. EXTERNAL DGEMM, DLACPY, DLAED0, DLASCL, DLASET, DLASRT, $ DSTEQR, DSTERF, DSWAP, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, INT, LOG, MAX, MOD, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 LQUERY = ( LWORK.EQ.-1 .OR. LIWORK.EQ.-1 ) * IF( LSAME( COMPZ, 'N' ) ) THEN ICOMPZ = 0 ELSE IF( LSAME( COMPZ, 'V' ) ) THEN ICOMPZ = 1 ELSE IF( LSAME( COMPZ, 'I' ) ) THEN ICOMPZ = 2 ELSE ICOMPZ = -1 END IF IF( ICOMPZ.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( ( LDZ.LT.1 ) .OR. $ ( ICOMPZ.GT.0 .AND. LDZ.LT.MAX( 1, N ) ) ) THEN INFO = -6 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * SMLSIZ = ILAENV( 9, 'DSTEDC', ' ', 0, 0, 0, 0 ) IF( N.LE.1 .OR. ICOMPZ.EQ.0 ) THEN LIWMIN = 1 LWMIN = 1 ELSE IF( N.LE.SMLSIZ ) THEN LIWMIN = 1 LWMIN = 2*( N - 1 ) ELSE LGN = INT( LOG( DBLE( N ) )/LOG( TWO ) ) IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IF( ICOMPZ.EQ.1 ) THEN LWMIN = 1 + 3*N + 2*N*LGN + 4*N**2 LIWMIN = 6 + 6*N + 5*N*LGN ELSE IF( ICOMPZ.EQ.2 ) THEN LWMIN = 1 + 4*N + N**2 LIWMIN = 3 + 5*N END IF END IF WORK( 1 ) = LWMIN IWORK( 1 ) = LIWMIN * IF( LWORK.LT.LWMIN .AND. .NOT. LQUERY ) THEN INFO = -8 ELSE IF( LIWORK.LT.LIWMIN .AND. .NOT. LQUERY ) THEN INFO = -10 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DSTEDC', -INFO ) RETURN ELSE IF (LQUERY) THEN RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN IF( N.EQ.1 ) THEN IF( ICOMPZ.NE.0 ) $ Z( 1, 1 ) = ONE RETURN END IF * * If the following conditional clause is removed, then the routine * will use the Divide and Conquer routine to compute only the * eigenvalues, which requires (3N + 3N**2) real workspace and * (2 + 5N + 2N lg(N)) integer workspace. * Since on many architectures DSTERF is much faster than any other * algorithm for finding eigenvalues only, it is used here * as the default. If the conditional clause is removed, then * information on the size of workspace needs to be changed. * * If COMPZ = 'N', use DSTERF to compute the eigenvalues. * IF( ICOMPZ.EQ.0 ) THEN CALL DSTERF( N, D, E, INFO ) GO TO 50 END IF * * If N is smaller than the minimum divide size (SMLSIZ+1), then * solve the problem with another solver. * IF( N.LE.SMLSIZ ) THEN * CALL DSTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO ) * ELSE * * If COMPZ = 'V', the Z matrix must be stored elsewhere for later * use. * IF( ICOMPZ.EQ.1 ) THEN STOREZ = 1 + N*N ELSE STOREZ = 1 END IF * IF( ICOMPZ.EQ.2 ) THEN CALL DLASET( 'Full', N, N, ZERO, ONE, Z, LDZ ) END IF * * Scale. * ORGNRM = DLANST( 'M', N, D, E ) IF( ORGNRM.EQ.ZERO ) $ GO TO 50 * EPS = DLAMCH( 'Epsilon' ) * START = 1 * * while ( START <= N ) * 10 CONTINUE IF( START.LE.N ) THEN * * Let FINISH be the position of the next subdiagonal entry * such that E( FINISH ) <= TINY or FINISH = N if no such * subdiagonal exists. The matrix identified by the elements * between START and FINISH constitutes an independent * sub-problem. * FINISH = START 20 CONTINUE IF( FINISH.LT.N ) THEN TINY = EPS*SQRT( ABS( D( FINISH ) ) )* $ SQRT( ABS( D( FINISH+1 ) ) ) IF( ABS( E( FINISH ) ).GT.TINY ) THEN FINISH = FINISH + 1 GO TO 20 END IF END IF * * (Sub) Problem determined. Compute its size and solve it. * M = FINISH - START + 1 IF( M.EQ.1 ) THEN START = FINISH + 1 GO TO 10 END IF IF( M.GT.SMLSIZ ) THEN * * Scale. * ORGNRM = DLANST( 'M', M, D( START ), E( START ) ) CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, M, 1, D( START ), M, $ INFO ) CALL DLASCL( 'G', 0, 0, ORGNRM, ONE, M-1, 1, E( START ), $ M-1, INFO ) * IF( ICOMPZ.EQ.1 ) THEN STRTRW = 1 ELSE STRTRW = START END IF CALL DLAED0( ICOMPZ, N, M, D( START ), E( START ), $ Z( STRTRW, START ), LDZ, WORK( 1 ), N, $ WORK( STOREZ ), IWORK, INFO ) IF( INFO.NE.0 ) THEN INFO = ( INFO / ( M+1 )+START-1 )*( N+1 ) + $ MOD( INFO, ( M+1 ) ) + START - 1 GO TO 50 END IF * * Scale back. * CALL DLASCL( 'G', 0, 0, ONE, ORGNRM, M, 1, D( START ), M, $ INFO ) * ELSE IF( ICOMPZ.EQ.1 ) THEN * * Since QR won't update a Z matrix which is larger than * the length of D, we must solve the sub-problem in a * workspace and then multiply back into Z. * CALL DSTEQR( 'I', M, D( START ), E( START ), WORK, M, $ WORK( M*M+1 ), INFO ) CALL DLACPY( 'A', N, M, Z( 1, START ), LDZ, $ WORK( STOREZ ), N ) CALL DGEMM( 'N', 'N', N, M, M, ONE, $ WORK( STOREZ ), N, WORK, M, ZERO, $ Z( 1, START ), LDZ ) ELSE IF( ICOMPZ.EQ.2 ) THEN CALL DSTEQR( 'I', M, D( START ), E( START ), $ Z( START, START ), LDZ, WORK, INFO ) ELSE CALL DSTERF( M, D( START ), E( START ), INFO ) END IF IF( INFO.NE.0 ) THEN INFO = START*( N+1 ) + FINISH GO TO 50 END IF END IF * START = FINISH + 1 GO TO 10 END IF * * endwhile * IF( ICOMPZ.EQ.0 ) THEN * * Use Quick Sort * CALL DLASRT( 'I', N, D, INFO ) * ELSE * * Use Selection Sort to minimize swaps of eigenvectors * DO 40 II = 2, N I = II - 1 K = I P = D( I ) DO 30 J = II, N IF( D( J ).LT.P ) THEN K = J P = D( J ) END IF 30 CONTINUE IF( K.NE.I ) THEN D( K ) = D( I ) D( I ) = P CALL DSWAP( N, Z( 1, I ), 1, Z( 1, K ), 1 ) END IF 40 CONTINUE END IF END IF * 50 CONTINUE WORK( 1 ) = LWMIN IWORK( 1 ) = LIWMIN * RETURN * * End of DSTEDC * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaed0.f0000644000000000000000000000013214061636515015203 xustar0030 mtime=1623670093.340103954 30 atime=1623670093.340103954 30 ctime=1623670093.340103954 elk-7.2.42/src/LAPACK/zlaed0.f0000644002504400250440000002607714061636515017254 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAED0 used by sstedc. Computes all eigenvalues and corresponding eigenvectors of an unreduced symmetric tridiagonal matrix using the divide and conquer method. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAED0 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAED0( QSIZ, N, D, E, Q, LDQ, QSTORE, LDQS, RWORK, * IWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, LDQ, LDQS, N, QSIZ * .. * .. Array Arguments .. * INTEGER IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), RWORK( * ) * COMPLEX*16 Q( LDQ, * ), QSTORE( LDQS, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> Using the divide and conquer method, ZLAED0 computes all eigenvalues *> of a symmetric tridiagonal matrix which is one diagonal block of *> those from reducing a dense or band Hermitian matrix and *> corresponding eigenvectors of the dense or band matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the unitary matrix used to reduce *> the full matrix to tridiagonal form. QSIZ >= N if ICOMPQ = 1. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the diagonal elements of the tridiagonal matrix. *> On exit, the eigenvalues in ascending order. *> \endverbatim *> *> \param[in,out] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> On entry, the off-diagonal elements of the tridiagonal matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is COMPLEX*16 array, dimension (LDQ,N) *> On entry, Q must contain an QSIZ x N matrix whose columns *> unitarily orthonormal. It is a part of the unitary matrix *> that reduces the full dense Hermitian matrix to a *> (reducible) symmetric tridiagonal matrix. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, *> the dimension of IWORK must be at least *> 6 + 6*N + 5*N*lg N *> ( lg( N ) = smallest integer k *> such that 2^k >= N ) *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, *> dimension (1 + 3*N + 2*N*lg N + 3*N**2) *> ( lg( N ) = smallest integer k *> such that 2^k >= N ) *> \endverbatim *> *> \param[out] QSTORE *> \verbatim *> QSTORE is COMPLEX*16 array, dimension (LDQS, N) *> Used to store parts of *> the eigenvector matrix when the updating matrix multiplies *> take place. *> \endverbatim *> *> \param[in] LDQS *> \verbatim *> LDQS is INTEGER *> The leading dimension of the array QSTORE. *> LDQS >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: The algorithm failed to compute an eigenvalue while *> working on the submatrix lying in rows and columns *> INFO/(N+1) through mod(INFO,N+1). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZLAED0( QSIZ, N, D, E, Q, LDQ, QSTORE, LDQS, RWORK, $ IWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, LDQ, LDQS, N, QSIZ * .. * .. Array Arguments .. INTEGER IWORK( * ) DOUBLE PRECISION D( * ), E( * ), RWORK( * ) COMPLEX*16 Q( LDQ, * ), QSTORE( LDQS, * ) * .. * * ===================================================================== * * Warning: N could be as big as QSIZ! * * .. Parameters .. DOUBLE PRECISION TWO PARAMETER ( TWO = 2.D+0 ) * .. * .. Local Scalars .. INTEGER CURLVL, CURPRB, CURR, I, IGIVCL, IGIVNM, $ IGIVPT, INDXQ, IPERM, IPRMPT, IQ, IQPTR, IWREM, $ J, K, LGN, LL, MATSIZ, MSD2, SMLSIZ, SMM1, $ SPM1, SPM2, SUBMAT, SUBPBS, TLVLS DOUBLE PRECISION TEMP * .. * .. External Subroutines .. EXTERNAL DCOPY, DSTEQR, XERBLA, ZCOPY, ZLACRM, ZLAED7 * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, INT, LOG, MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * * IF( ICOMPQ .LT. 0 .OR. ICOMPQ .GT. 2 ) THEN * INFO = -1 * ELSE IF( ( ICOMPQ .EQ. 1 ) .AND. ( QSIZ .LT. MAX( 0, N ) ) ) * $ THEN IF( QSIZ.LT.MAX( 0, N ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( LDQS.LT.MAX( 1, N ) ) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLAED0', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * SMLSIZ = ILAENV( 9, 'ZLAED0', ' ', 0, 0, 0, 0 ) * * Determine the size and placement of the submatrices, and save in * the leading elements of IWORK. * IWORK( 1 ) = N SUBPBS = 1 TLVLS = 0 10 CONTINUE IF( IWORK( SUBPBS ).GT.SMLSIZ ) THEN DO 20 J = SUBPBS, 1, -1 IWORK( 2*J ) = ( IWORK( J )+1 ) / 2 IWORK( 2*J-1 ) = IWORK( J ) / 2 20 CONTINUE TLVLS = TLVLS + 1 SUBPBS = 2*SUBPBS GO TO 10 END IF DO 30 J = 2, SUBPBS IWORK( J ) = IWORK( J ) + IWORK( J-1 ) 30 CONTINUE * * Divide the matrix into SUBPBS submatrices of size at most SMLSIZ+1 * using rank-1 modifications (cuts). * SPM1 = SUBPBS - 1 DO 40 I = 1, SPM1 SUBMAT = IWORK( I ) + 1 SMM1 = SUBMAT - 1 D( SMM1 ) = D( SMM1 ) - ABS( E( SMM1 ) ) D( SUBMAT ) = D( SUBMAT ) - ABS( E( SMM1 ) ) 40 CONTINUE * INDXQ = 4*N + 3 * * Set up workspaces for eigenvalues only/accumulate new vectors * routine * TEMP = LOG( DBLE( N ) ) / LOG( TWO ) LGN = INT( TEMP ) IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IPRMPT = INDXQ + N + 1 IPERM = IPRMPT + N*LGN IQPTR = IPERM + N*LGN IGIVPT = IQPTR + N + 2 IGIVCL = IGIVPT + N*LGN * IGIVNM = 1 IQ = IGIVNM + 2*N*LGN IWREM = IQ + N**2 + 1 * Initialize pointers DO 50 I = 0, SUBPBS IWORK( IPRMPT+I ) = 1 IWORK( IGIVPT+I ) = 1 50 CONTINUE IWORK( IQPTR ) = 1 * * Solve each submatrix eigenproblem at the bottom of the divide and * conquer tree. * CURR = 0 DO 70 I = 0, SPM1 IF( I.EQ.0 ) THEN SUBMAT = 1 MATSIZ = IWORK( 1 ) ELSE SUBMAT = IWORK( I ) + 1 MATSIZ = IWORK( I+1 ) - IWORK( I ) END IF LL = IQ - 1 + IWORK( IQPTR+CURR ) CALL DSTEQR( 'I', MATSIZ, D( SUBMAT ), E( SUBMAT ), $ RWORK( LL ), MATSIZ, RWORK, INFO ) CALL ZLACRM( QSIZ, MATSIZ, Q( 1, SUBMAT ), LDQ, RWORK( LL ), $ MATSIZ, QSTORE( 1, SUBMAT ), LDQS, $ RWORK( IWREM ) ) IWORK( IQPTR+CURR+1 ) = IWORK( IQPTR+CURR ) + MATSIZ**2 CURR = CURR + 1 IF( INFO.GT.0 ) THEN INFO = SUBMAT*( N+1 ) + SUBMAT + MATSIZ - 1 RETURN END IF K = 1 DO 60 J = SUBMAT, IWORK( I+1 ) IWORK( INDXQ+J ) = K K = K + 1 60 CONTINUE 70 CONTINUE * * Successively merge eigensystems of adjacent submatrices * into eigensystem for the corresponding larger matrix. * * while ( SUBPBS > 1 ) * CURLVL = 1 80 CONTINUE IF( SUBPBS.GT.1 ) THEN SPM2 = SUBPBS - 2 DO 90 I = 0, SPM2, 2 IF( I.EQ.0 ) THEN SUBMAT = 1 MATSIZ = IWORK( 2 ) MSD2 = IWORK( 1 ) CURPRB = 0 ELSE SUBMAT = IWORK( I ) + 1 MATSIZ = IWORK( I+2 ) - IWORK( I ) MSD2 = MATSIZ / 2 CURPRB = CURPRB + 1 END IF * * Merge lower order eigensystems (of size MSD2 and MATSIZ - MSD2) * into an eigensystem of size MATSIZ. ZLAED7 handles the case * when the eigenvectors of a full or band Hermitian matrix (which * was reduced to tridiagonal form) are desired. * * I am free to use Q as a valuable working space until Loop 150. * CALL ZLAED7( MATSIZ, MSD2, QSIZ, TLVLS, CURLVL, CURPRB, $ D( SUBMAT ), QSTORE( 1, SUBMAT ), LDQS, $ E( SUBMAT+MSD2-1 ), IWORK( INDXQ+SUBMAT ), $ RWORK( IQ ), IWORK( IQPTR ), IWORK( IPRMPT ), $ IWORK( IPERM ), IWORK( IGIVPT ), $ IWORK( IGIVCL ), RWORK( IGIVNM ), $ Q( 1, SUBMAT ), RWORK( IWREM ), $ IWORK( SUBPBS+1 ), INFO ) IF( INFO.GT.0 ) THEN INFO = SUBMAT*( N+1 ) + SUBMAT + MATSIZ - 1 RETURN END IF IWORK( I / 2+1 ) = IWORK( I+2 ) 90 CONTINUE SUBPBS = SUBPBS / 2 CURLVL = CURLVL + 1 GO TO 80 END IF * * end while * * Re-merge the eigenvalues/vectors which were deflated at the final * merge step. * DO 100 I = 1, N J = IWORK( INDXQ+I ) RWORK( I ) = D( J ) CALL ZCOPY( QSIZ, QSTORE( 1, J ), 1, Q( 1, I ), 1 ) 100 CONTINUE CALL DCOPY( N, RWORK, 1, D, 1 ) * RETURN * * End of ZLAED0 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlacrm.f0000644000000000000000000000013214061636515015314 xustar0030 mtime=1623670093.342103952 30 atime=1623670093.342103952 30 ctime=1623670093.342103952 elk-7.2.42/src/LAPACK/zlacrm.f0000644002504400250440000001135114061636515017352 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLACRM multiplies a complex matrix by a square real matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLACRM + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLACRM( M, N, A, LDA, B, LDB, C, LDC, RWORK ) * * .. Scalar Arguments .. * INTEGER LDA, LDB, LDC, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION B( LDB, * ), RWORK( * ) * COMPLEX*16 A( LDA, * ), C( LDC, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLACRM performs a very simple matrix-matrix multiplication: *> C := A * B, *> where A is M by N and complex; B is N by N and real; *> C is M by N and complex. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A and of the matrix C. *> M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns and rows of the matrix B and *> the number of columns of the matrix C. *> N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA, N) *> On entry, A contains the M by N matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >=max(1,M). *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (LDB, N) *> On entry, B contains the N by N matrix B. *> \endverbatim *> *> \param[in] LDB *> \verbatim *> LDB is INTEGER *> The leading dimension of the array B. LDB >=max(1,N). *> \endverbatim *> *> \param[out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC, N) *> On exit, C contains the M by N matrix C. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >=max(1,N). *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (2*M*N) *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLACRM( M, N, A, LDA, B, LDB, C, LDC, RWORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER LDA, LDB, LDC, M, N * .. * .. Array Arguments .. DOUBLE PRECISION B( LDB, * ), RWORK( * ) COMPLEX*16 A( LDA, * ), C( LDC, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D0, ZERO = 0.0D0 ) * .. * .. Local Scalars .. INTEGER I, J, L * .. * .. Intrinsic Functions .. INTRINSIC DBLE, DCMPLX, DIMAG * .. * .. External Subroutines .. EXTERNAL DGEMM * .. * .. Executable Statements .. * * Quick return if possible. * IF( ( M.EQ.0 ) .OR. ( N.EQ.0 ) ) $ RETURN * DO 20 J = 1, N DO 10 I = 1, M RWORK( ( J-1 )*M+I ) = DBLE( A( I, J ) ) 10 CONTINUE 20 CONTINUE * L = M*N + 1 CALL DGEMM( 'N', 'N', M, N, N, ONE, RWORK, M, B, LDB, ZERO, $ RWORK( L ), M ) DO 40 J = 1, N DO 30 I = 1, M C( I, J ) = RWORK( L+( J-1 )*M+I-1 ) 30 CONTINUE 40 CONTINUE * DO 60 J = 1, N DO 50 I = 1, M RWORK( ( J-1 )*M+I ) = DIMAG( A( I, J ) ) 50 CONTINUE 60 CONTINUE CALL DGEMM( 'N', 'N', M, N, N, ONE, RWORK, M, B, LDB, ZERO, $ RWORK( L ), M ) DO 80 J = 1, N DO 70 I = 1, M C( I, J ) = DCMPLX( DBLE( C( I, J ) ), $ RWORK( L+( J-1 )*M+I-1 ) ) 70 CONTINUE 80 CONTINUE * RETURN * * End of ZLACRM * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlarnv.f0000644000000000000000000000012714061636515015316 xustar0029 mtime=1623670093.34410395 29 atime=1623670093.34410395 29 ctime=1623670093.34410395 elk-7.2.42/src/LAPACK/dlarnv.f0000644002504400250440000001126214061636515017351 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARNV returns a vector of random numbers from a uniform or normal distribution. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARNV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARNV( IDIST, ISEED, N, X ) * * .. Scalar Arguments .. * INTEGER IDIST, N * .. * .. Array Arguments .. * INTEGER ISEED( 4 ) * DOUBLE PRECISION X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARNV returns a vector of n random real numbers from a uniform or *> normal distribution. *> \endverbatim * * Arguments: * ========== * *> \param[in] IDIST *> \verbatim *> IDIST is INTEGER *> Specifies the distribution of the random numbers: *> = 1: uniform (0,1) *> = 2: uniform (-1,1) *> = 3: normal (0,1) *> \endverbatim *> *> \param[in,out] ISEED *> \verbatim *> ISEED is INTEGER array, dimension (4) *> On entry, the seed of the random number generator; the array *> elements must be between 0 and 4095, and ISEED(4) must be *> odd. *> On exit, the seed is updated. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of random numbers to be generated. *> \endverbatim *> *> \param[out] X *> \verbatim *> X is DOUBLE PRECISION array, dimension (N) *> The generated random numbers. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> This routine calls the auxiliary routine DLARUV to generate random *> real numbers from a uniform (0,1) distribution, in batches of up to *> 128 using vectorisable code. The Box-Muller method is used to *> transform numbers from a uniform to a normal distribution. *> \endverbatim *> * ===================================================================== SUBROUTINE DLARNV( IDIST, ISEED, N, X ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IDIST, N * .. * .. Array Arguments .. INTEGER ISEED( 4 ) DOUBLE PRECISION X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, TWO PARAMETER ( ONE = 1.0D+0, TWO = 2.0D+0 ) INTEGER LV PARAMETER ( LV = 128 ) DOUBLE PRECISION TWOPI PARAMETER ( TWOPI = 6.2831853071795864769252867663D+0 ) * .. * .. Local Scalars .. INTEGER I, IL, IL2, IV * .. * .. Local Arrays .. DOUBLE PRECISION U( LV ) * .. * .. Intrinsic Functions .. INTRINSIC COS, LOG, MIN, SQRT * .. * .. External Subroutines .. EXTERNAL DLARUV * .. * .. Executable Statements .. * DO 40 IV = 1, N, LV / 2 IL = MIN( LV / 2, N-IV+1 ) IF( IDIST.EQ.3 ) THEN IL2 = 2*IL ELSE IL2 = IL END IF * * Call DLARUV to generate IL2 numbers from a uniform (0,1) * distribution (IL2 <= LV) * CALL DLARUV( ISEED, IL2, U ) * IF( IDIST.EQ.1 ) THEN * * Copy generated numbers * DO 10 I = 1, IL X( IV+I-1 ) = U( I ) 10 CONTINUE ELSE IF( IDIST.EQ.2 ) THEN * * Convert generated numbers to uniform (-1,1) distribution * DO 20 I = 1, IL X( IV+I-1 ) = TWO*U( I ) - ONE 20 CONTINUE ELSE IF( IDIST.EQ.3 ) THEN * * Convert generated numbers to normal (0,1) distribution * DO 30 I = 1, IL X( IV+I-1 ) = SQRT( -TWO*LOG( U( 2*I-1 ) ) )* $ COS( TWOPI*U( 2*I ) ) 30 CONTINUE END IF 40 CONTINUE RETURN * * End of DLARNV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlagtf.f0000644000000000000000000000013214061636515015265 xustar0030 mtime=1623670093.346103948 30 atime=1623670093.345103949 30 ctime=1623670093.346103948 elk-7.2.42/src/LAPACK/dlagtf.f0000644002504400250440000002005514061636515017324 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAGTF computes an LU factorization of a matrix T-λI, where T is a general tridiagonal matrix, and λ a scalar, using partial pivoting with row interchanges. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAGTF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAGTF( N, A, LAMBDA, B, C, TOL, D, IN, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, N * DOUBLE PRECISION LAMBDA, TOL * .. * .. Array Arguments .. * INTEGER IN( * ) * DOUBLE PRECISION A( * ), B( * ), C( * ), D( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAGTF factorizes the matrix (T - lambda*I), where T is an n by n *> tridiagonal matrix and lambda is a scalar, as *> *> T - lambda*I = PLU, *> *> where P is a permutation matrix, L is a unit lower tridiagonal matrix *> with at most one non-zero sub-diagonal elements per column and U is *> an upper triangular matrix with at most two non-zero super-diagonal *> elements per column. *> *> The factorization is obtained by Gaussian elimination with partial *> pivoting and implicit row scaling. *> *> The parameter LAMBDA is included in the routine so that DLAGTF may *> be used, in conjunction with DLAGTS, to obtain eigenvectors of T by *> inverse iteration. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix T. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (N) *> On entry, A must contain the diagonal elements of T. *> *> On exit, A is overwritten by the n diagonal elements of the *> upper triangular matrix U of the factorization of T. *> \endverbatim *> *> \param[in] LAMBDA *> \verbatim *> LAMBDA is DOUBLE PRECISION *> On entry, the scalar lambda. *> \endverbatim *> *> \param[in,out] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (N-1) *> On entry, B must contain the (n-1) super-diagonal elements of *> T. *> *> On exit, B is overwritten by the (n-1) super-diagonal *> elements of the matrix U of the factorization of T. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (N-1) *> On entry, C must contain the (n-1) sub-diagonal elements of *> T. *> *> On exit, C is overwritten by the (n-1) sub-diagonal elements *> of the matrix L of the factorization of T. *> \endverbatim *> *> \param[in] TOL *> \verbatim *> TOL is DOUBLE PRECISION *> On entry, a relative tolerance used to indicate whether or *> not the matrix (T - lambda*I) is nearly singular. TOL should *> normally be chose as approximately the largest relative error *> in the elements of T. For example, if the elements of T are *> correct to about 4 significant figures, then TOL should be *> set to about 5*10**(-4). If TOL is supplied as less than eps, *> where eps is the relative machine precision, then the value *> eps is used in place of TOL. *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N-2) *> On exit, D is overwritten by the (n-2) second super-diagonal *> elements of the matrix U of the factorization of T. *> \endverbatim *> *> \param[out] IN *> \verbatim *> IN is INTEGER array, dimension (N) *> On exit, IN contains details of the permutation matrix P. If *> an interchange occurred at the kth step of the elimination, *> then IN(k) = 1, otherwise IN(k) = 0. The element IN(n) *> returns the smallest positive integer j such that *> *> abs( u(j,j) ) <= norm( (T - lambda*I)(j) )*TOL, *> *> where norm( A(j) ) denotes the sum of the absolute values of *> the jth row of the matrix A. If no such j exists then IN(n) *> is returned as zero. If IN(n) is returned as positive, then a *> diagonal element of U is small, indicating that *> (T - lambda*I) is singular or nearly singular, *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -k, the kth argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLAGTF( N, A, LAMBDA, B, C, TOL, D, IN, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, N DOUBLE PRECISION LAMBDA, TOL * .. * .. Array Arguments .. INTEGER IN( * ) DOUBLE PRECISION A( * ), B( * ), C( * ), D( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER K DOUBLE PRECISION EPS, MULT, PIV1, PIV2, SCALE1, SCALE2, TEMP, TL * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * INFO = 0 IF( N.LT.0 ) THEN INFO = -1 CALL XERBLA( 'DLAGTF', -INFO ) RETURN END IF * IF( N.EQ.0 ) $ RETURN * A( 1 ) = A( 1 ) - LAMBDA IN( N ) = 0 IF( N.EQ.1 ) THEN IF( A( 1 ).EQ.ZERO ) $ IN( 1 ) = 1 RETURN END IF * EPS = DLAMCH( 'Epsilon' ) * TL = MAX( TOL, EPS ) SCALE1 = ABS( A( 1 ) ) + ABS( B( 1 ) ) DO 10 K = 1, N - 1 A( K+1 ) = A( K+1 ) - LAMBDA SCALE2 = ABS( C( K ) ) + ABS( A( K+1 ) ) IF( K.LT.( N-1 ) ) $ SCALE2 = SCALE2 + ABS( B( K+1 ) ) IF( A( K ).EQ.ZERO ) THEN PIV1 = ZERO ELSE PIV1 = ABS( A( K ) ) / SCALE1 END IF IF( C( K ).EQ.ZERO ) THEN IN( K ) = 0 PIV2 = ZERO SCALE1 = SCALE2 IF( K.LT.( N-1 ) ) $ D( K ) = ZERO ELSE PIV2 = ABS( C( K ) ) / SCALE2 IF( PIV2.LE.PIV1 ) THEN IN( K ) = 0 SCALE1 = SCALE2 C( K ) = C( K ) / A( K ) A( K+1 ) = A( K+1 ) - C( K )*B( K ) IF( K.LT.( N-1 ) ) $ D( K ) = ZERO ELSE IN( K ) = 1 MULT = A( K ) / C( K ) A( K ) = C( K ) TEMP = A( K+1 ) A( K+1 ) = B( K ) - MULT*TEMP IF( K.LT.( N-1 ) ) THEN D( K ) = B( K+1 ) B( K+1 ) = -MULT*D( K ) END IF B( K ) = TEMP C( K ) = MULT END IF END IF IF( ( MAX( PIV1, PIV2 ).LE.TL ) .AND. ( IN( N ).EQ.0 ) ) $ IN( N ) = K 10 CONTINUE IF( ( ABS( A( N ) ).LE.SCALE1*TL ) .AND. ( IN( N ).EQ.0 ) ) $ IN( N ) = N * RETURN * * End of DLAGTF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlagts.f0000644000000000000000000000013214061636515015302 xustar0030 mtime=1623670093.348103946 30 atime=1623670093.347103947 30 ctime=1623670093.348103946 elk-7.2.42/src/LAPACK/dlagts.f0000644002504400250440000003031314061636515017337 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAGTS solves the system of equations (T-λI)x = y or (T-λI)Tx = y,where T is a general tridiagonal matrix and λ a scalar, using the LU factorization computed by slagtf. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAGTS + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAGTS( JOB, N, A, B, C, D, IN, Y, TOL, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, JOB, N * DOUBLE PRECISION TOL * .. * .. Array Arguments .. * INTEGER IN( * ) * DOUBLE PRECISION A( * ), B( * ), C( * ), D( * ), Y( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAGTS may be used to solve one of the systems of equations *> *> (T - lambda*I)*x = y or (T - lambda*I)**T*x = y, *> *> where T is an n by n tridiagonal matrix, for x, following the *> factorization of (T - lambda*I) as *> *> (T - lambda*I) = P*L*U , *> *> by routine DLAGTF. The choice of equation to be solved is *> controlled by the argument JOB, and in each case there is an option *> to perturb zero or very small diagonal elements of U, this option *> being intended for use in applications such as inverse iteration. *> \endverbatim * * Arguments: * ========== * *> \param[in] JOB *> \verbatim *> JOB is INTEGER *> Specifies the job to be performed by DLAGTS as follows: *> = 1: The equations (T - lambda*I)x = y are to be solved, *> but diagonal elements of U are not to be perturbed. *> = -1: The equations (T - lambda*I)x = y are to be solved *> and, if overflow would otherwise occur, the diagonal *> elements of U are to be perturbed. See argument TOL *> below. *> = 2: The equations (T - lambda*I)**Tx = y are to be solved, *> but diagonal elements of U are not to be perturbed. *> = -2: The equations (T - lambda*I)**Tx = y are to be solved *> and, if overflow would otherwise occur, the diagonal *> elements of U are to be perturbed. See argument TOL *> below. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix T. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (N) *> On entry, A must contain the diagonal elements of U as *> returned from DLAGTF. *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION array, dimension (N-1) *> On entry, B must contain the first super-diagonal elements of *> U as returned from DLAGTF. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (N-1) *> On entry, C must contain the sub-diagonal elements of L as *> returned from DLAGTF. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N-2) *> On entry, D must contain the second super-diagonal elements *> of U as returned from DLAGTF. *> \endverbatim *> *> \param[in] IN *> \verbatim *> IN is INTEGER array, dimension (N) *> On entry, IN must contain details of the matrix P as returned *> from DLAGTF. *> \endverbatim *> *> \param[in,out] Y *> \verbatim *> Y is DOUBLE PRECISION array, dimension (N) *> On entry, the right hand side vector y. *> On exit, Y is overwritten by the solution vector x. *> \endverbatim *> *> \param[in,out] TOL *> \verbatim *> TOL is DOUBLE PRECISION *> On entry, with JOB < 0, TOL should be the minimum *> perturbation to be made to very small diagonal elements of U. *> TOL should normally be chosen as about eps*norm(U), where eps *> is the relative machine precision, but if TOL is supplied as *> non-positive, then it is reset to eps*max( abs( u(i,j) ) ). *> If JOB > 0 then TOL is not referenced. *> *> On exit, TOL is changed as described above, only if TOL is *> non-positive on entry. Otherwise TOL is unchanged. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> > 0: overflow would occur when computing the INFO(th) *> element of the solution vector x. This can only occur *> when JOB is supplied as positive and either means *> that a diagonal element of U is very small, or that *> the elements of the right-hand side vector y are very *> large. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== SUBROUTINE DLAGTS( JOB, N, A, B, C, D, IN, Y, TOL, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, JOB, N DOUBLE PRECISION TOL * .. * .. Array Arguments .. INTEGER IN( * ) DOUBLE PRECISION A( * ), B( * ), C( * ), D( * ), Y( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER K DOUBLE PRECISION ABSAK, AK, BIGNUM, EPS, PERT, SFMIN, TEMP * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SIGN * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. External Subroutines .. EXTERNAL XERBLA * .. * .. Executable Statements .. * INFO = 0 IF( ( ABS( JOB ).GT.2 ) .OR. ( JOB.EQ.0 ) ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAGTS', -INFO ) RETURN END IF * IF( N.EQ.0 ) $ RETURN * EPS = DLAMCH( 'Epsilon' ) SFMIN = DLAMCH( 'Safe minimum' ) BIGNUM = ONE / SFMIN * IF( JOB.LT.0 ) THEN IF( TOL.LE.ZERO ) THEN TOL = ABS( A( 1 ) ) IF( N.GT.1 ) $ TOL = MAX( TOL, ABS( A( 2 ) ), ABS( B( 1 ) ) ) DO 10 K = 3, N TOL = MAX( TOL, ABS( A( K ) ), ABS( B( K-1 ) ), $ ABS( D( K-2 ) ) ) 10 CONTINUE TOL = TOL*EPS IF( TOL.EQ.ZERO ) $ TOL = EPS END IF END IF * IF( ABS( JOB ).EQ.1 ) THEN DO 20 K = 2, N IF( IN( K-1 ).EQ.0 ) THEN Y( K ) = Y( K ) - C( K-1 )*Y( K-1 ) ELSE TEMP = Y( K-1 ) Y( K-1 ) = Y( K ) Y( K ) = TEMP - C( K-1 )*Y( K ) END IF 20 CONTINUE IF( JOB.EQ.1 ) THEN DO 30 K = N, 1, -1 IF( K.LE.N-2 ) THEN TEMP = Y( K ) - B( K )*Y( K+1 ) - D( K )*Y( K+2 ) ELSE IF( K.EQ.N-1 ) THEN TEMP = Y( K ) - B( K )*Y( K+1 ) ELSE TEMP = Y( K ) END IF AK = A( K ) ABSAK = ABS( AK ) IF( ABSAK.LT.ONE ) THEN IF( ABSAK.LT.SFMIN ) THEN IF( ABSAK.EQ.ZERO .OR. ABS( TEMP )*SFMIN.GT.ABSAK ) $ THEN INFO = K RETURN ELSE TEMP = TEMP*BIGNUM AK = AK*BIGNUM END IF ELSE IF( ABS( TEMP ).GT.ABSAK*BIGNUM ) THEN INFO = K RETURN END IF END IF Y( K ) = TEMP / AK 30 CONTINUE ELSE DO 50 K = N, 1, -1 IF( K.LE.N-2 ) THEN TEMP = Y( K ) - B( K )*Y( K+1 ) - D( K )*Y( K+2 ) ELSE IF( K.EQ.N-1 ) THEN TEMP = Y( K ) - B( K )*Y( K+1 ) ELSE TEMP = Y( K ) END IF AK = A( K ) PERT = SIGN( TOL, AK ) 40 CONTINUE ABSAK = ABS( AK ) IF( ABSAK.LT.ONE ) THEN IF( ABSAK.LT.SFMIN ) THEN IF( ABSAK.EQ.ZERO .OR. ABS( TEMP )*SFMIN.GT.ABSAK ) $ THEN AK = AK + PERT PERT = 2*PERT GO TO 40 ELSE TEMP = TEMP*BIGNUM AK = AK*BIGNUM END IF ELSE IF( ABS( TEMP ).GT.ABSAK*BIGNUM ) THEN AK = AK + PERT PERT = 2*PERT GO TO 40 END IF END IF Y( K ) = TEMP / AK 50 CONTINUE END IF ELSE * * Come to here if JOB = 2 or -2 * IF( JOB.EQ.2 ) THEN DO 60 K = 1, N IF( K.GE.3 ) THEN TEMP = Y( K ) - B( K-1 )*Y( K-1 ) - D( K-2 )*Y( K-2 ) ELSE IF( K.EQ.2 ) THEN TEMP = Y( K ) - B( K-1 )*Y( K-1 ) ELSE TEMP = Y( K ) END IF AK = A( K ) ABSAK = ABS( AK ) IF( ABSAK.LT.ONE ) THEN IF( ABSAK.LT.SFMIN ) THEN IF( ABSAK.EQ.ZERO .OR. ABS( TEMP )*SFMIN.GT.ABSAK ) $ THEN INFO = K RETURN ELSE TEMP = TEMP*BIGNUM AK = AK*BIGNUM END IF ELSE IF( ABS( TEMP ).GT.ABSAK*BIGNUM ) THEN INFO = K RETURN END IF END IF Y( K ) = TEMP / AK 60 CONTINUE ELSE DO 80 K = 1, N IF( K.GE.3 ) THEN TEMP = Y( K ) - B( K-1 )*Y( K-1 ) - D( K-2 )*Y( K-2 ) ELSE IF( K.EQ.2 ) THEN TEMP = Y( K ) - B( K-1 )*Y( K-1 ) ELSE TEMP = Y( K ) END IF AK = A( K ) PERT = SIGN( TOL, AK ) 70 CONTINUE ABSAK = ABS( AK ) IF( ABSAK.LT.ONE ) THEN IF( ABSAK.LT.SFMIN ) THEN IF( ABSAK.EQ.ZERO .OR. ABS( TEMP )*SFMIN.GT.ABSAK ) $ THEN AK = AK + PERT PERT = 2*PERT GO TO 70 ELSE TEMP = TEMP*BIGNUM AK = AK*BIGNUM END IF ELSE IF( ABS( TEMP ).GT.ABSAK*BIGNUM ) THEN AK = AK + PERT PERT = 2*PERT GO TO 70 END IF END IF Y( K ) = TEMP / AK 80 CONTINUE END IF * DO 90 K = N, 2, -1 IF( IN( K-1 ).EQ.0 ) THEN Y( K-1 ) = Y( K-1 ) - C( K-1 )*Y( K ) ELSE TEMP = Y( K-1 ) Y( K-1 ) = Y( K ) Y( K ) = TEMP - C( K-1 )*Y( K ) END IF 90 CONTINUE END IF * * End of DLAGTS * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlatrs.f0000644000000000000000000000013214061636515015343 xustar0030 mtime=1623670093.350103945 30 atime=1623670093.350103945 30 ctime=1623670093.350103945 elk-7.2.42/src/LAPACK/zlatrs.f0000644002504400250440000007253514061636515017414 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLATRS solves a triangular system of equations with the scale factor set to prevent overflow. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLATRS + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLATRS( UPLO, TRANS, DIAG, NORMIN, N, A, LDA, X, SCALE, * CNORM, INFO ) * * .. Scalar Arguments .. * CHARACTER DIAG, NORMIN, TRANS, UPLO * INTEGER INFO, LDA, N * DOUBLE PRECISION SCALE * .. * .. Array Arguments .. * DOUBLE PRECISION CNORM( * ) * COMPLEX*16 A( LDA, * ), X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLATRS solves one of the triangular systems *> *> A * x = s*b, A**T * x = s*b, or A**H * x = s*b, *> *> with scaling to prevent overflow. Here A is an upper or lower *> triangular matrix, A**T denotes the transpose of A, A**H denotes the *> conjugate transpose of A, x and b are n-element vectors, and s is a *> scaling factor, usually less than or equal to 1, chosen so that the *> components of x will be less than the overflow threshold. If the *> unscaled problem will not cause overflow, the Level 2 BLAS routine *> ZTRSV is called. If the matrix A is singular (A(j,j) = 0 for some j), *> then s is set to 0 and a non-trivial solution to A*x = 0 is returned. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the matrix A is upper or lower triangular. *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> Specifies the operation applied to A. *> = 'N': Solve A * x = s*b (No transpose) *> = 'T': Solve A**T * x = s*b (Transpose) *> = 'C': Solve A**H * x = s*b (Conjugate transpose) *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> Specifies whether or not the matrix A is unit triangular. *> = 'N': Non-unit triangular *> = 'U': Unit triangular *> \endverbatim *> *> \param[in] NORMIN *> \verbatim *> NORMIN is CHARACTER*1 *> Specifies whether CNORM has been set or not. *> = 'Y': CNORM contains the column norms on entry *> = 'N': CNORM is not set on entry. On exit, the norms will *> be computed and stored in CNORM. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The triangular matrix A. If UPLO = 'U', the leading n by n *> upper triangular part of the array A contains the upper *> triangular matrix, and the strictly lower triangular part of *> A is not referenced. If UPLO = 'L', the leading n by n lower *> triangular part of the array A contains the lower triangular *> matrix, and the strictly upper triangular part of A is not *> referenced. If DIAG = 'U', the diagonal elements of A are *> also not referenced and are assumed to be 1. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max (1,N). *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension (N) *> On entry, the right hand side b of the triangular system. *> On exit, X is overwritten by the solution vector x. *> \endverbatim *> *> \param[out] SCALE *> \verbatim *> SCALE is DOUBLE PRECISION *> The scaling factor s for the triangular system *> A * x = s*b, A**T * x = s*b, or A**H * x = s*b. *> If SCALE = 0, the matrix A is singular or badly scaled, and *> the vector x is an exact or approximate solution to A*x = 0. *> \endverbatim *> *> \param[in,out] CNORM *> \verbatim *> CNORM is DOUBLE PRECISION array, dimension (N) *> *> If NORMIN = 'Y', CNORM is an input argument and CNORM(j) *> contains the norm of the off-diagonal part of the j-th column *> of A. If TRANS = 'N', CNORM(j) must be greater than or equal *> to the infinity-norm, and if TRANS = 'T' or 'C', CNORM(j) *> must be greater than or equal to the 1-norm. *> *> If NORMIN = 'N', CNORM is an output argument and CNORM(j) *> returns the 1-norm of the offdiagonal part of the j-th column *> of A. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -k, the k-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> A rough bound on x is computed; if that is less than overflow, ZTRSV *> is called, otherwise, specific code is used which checks for possible *> overflow or divide-by-zero at every operation. *> *> A columnwise scheme is used for solving A*x = b. The basic algorithm *> if A is lower triangular is *> *> x[1:n] := b[1:n] *> for j = 1, ..., n *> x(j) := x(j) / A(j,j) *> x[j+1:n] := x[j+1:n] - x(j) * A[j+1:n,j] *> end *> *> Define bounds on the components of x after j iterations of the loop: *> M(j) = bound on x[1:j] *> G(j) = bound on x[j+1:n] *> Initially, let M(0) = 0 and G(0) = max{x(i), i=1,...,n}. *> *> Then for iteration j+1 we have *> M(j+1) <= G(j) / | A(j+1,j+1) | *> G(j+1) <= G(j) + M(j+1) * | A[j+2:n,j+1] | *> <= G(j) ( 1 + CNORM(j+1) / | A(j+1,j+1) | ) *> *> where CNORM(j+1) is greater than or equal to the infinity-norm of *> column j+1 of A, not counting the diagonal. Hence *> *> G(j) <= G(0) product ( 1 + CNORM(i) / | A(i,i) | ) *> 1<=i<=j *> and *> *> |x(j)| <= ( G(0) / |A(j,j)| ) product ( 1 + CNORM(i) / |A(i,i)| ) *> 1<=i< j *> *> Since |x(j)| <= M(j), we use the Level 2 BLAS routine ZTRSV if the *> reciprocal of the largest M(j), j=1,..,n, is larger than *> max(underflow, 1/overflow). *> *> The bound on x(j) is also used to determine when a step in the *> columnwise method can be performed without fear of overflow. If *> the computed bound is greater than a large constant, x is scaled to *> prevent overflow, but if the bound overflows, x is set to 0, x(j) to *> 1, and scale to 0, and a non-trivial solution to A*x = 0 is found. *> *> Similarly, a row-wise scheme is used to solve A**T *x = b or *> A**H *x = b. The basic algorithm for A upper triangular is *> *> for j = 1, ..., n *> x(j) := ( b(j) - A[1:j-1,j]' * x[1:j-1] ) / A(j,j) *> end *> *> We simultaneously compute two bounds *> G(j) = bound on ( b(i) - A[1:i-1,i]' * x[1:i-1] ), 1<=i<=j *> M(j) = bound on x(i), 1<=i<=j *> *> The initial values are G(0) = 0, M(0) = max{b(i), i=1,..,n}, and we *> add the constraint G(j) >= G(j-1) and M(j) >= M(j-1) for j >= 1. *> Then the bound on x(j) is *> *> M(j) <= M(j-1) * ( 1 + CNORM(j) ) / | A(j,j) | *> *> <= M(0) * product ( ( 1 + CNORM(i) ) / |A(i,i)| ) *> 1<=i<=j *> *> and we can safely call ZTRSV if 1/M(n) and 1/G(n) are both greater *> than max(underflow, 1/overflow). *> \endverbatim *> * ===================================================================== SUBROUTINE ZLATRS( UPLO, TRANS, DIAG, NORMIN, N, A, LDA, X, SCALE, $ CNORM, INFO ) * * -- LAPACK auxiliary routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. CHARACTER DIAG, NORMIN, TRANS, UPLO INTEGER INFO, LDA, N DOUBLE PRECISION SCALE * .. * .. Array Arguments .. DOUBLE PRECISION CNORM( * ) COMPLEX*16 A( LDA, * ), X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, HALF, ONE, TWO PARAMETER ( ZERO = 0.0D+0, HALF = 0.5D+0, ONE = 1.0D+0, $ TWO = 2.0D+0 ) * .. * .. Local Scalars .. LOGICAL NOTRAN, NOUNIT, UPPER INTEGER I, IMAX, J, JFIRST, JINC, JLAST DOUBLE PRECISION BIGNUM, GROW, REC, SMLNUM, TJJ, TMAX, TSCAL, $ XBND, XJ, XMAX COMPLEX*16 CSUMJ, TJJS, USCAL, ZDUM * .. * .. External Functions .. LOGICAL LSAME INTEGER IDAMAX, IZAMAX DOUBLE PRECISION DLAMCH, DZASUM COMPLEX*16 ZDOTC, ZDOTU, ZLADIV EXTERNAL LSAME, IDAMAX, IZAMAX, DLAMCH, DZASUM, ZDOTC, $ ZDOTU, ZLADIV * .. * .. External Subroutines .. EXTERNAL DSCAL, XERBLA, ZAXPY, ZDSCAL, ZTRSV, DLABAD * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DCONJG, DIMAG, MAX, MIN * .. * .. Statement Functions .. DOUBLE PRECISION CABS1, CABS2 * .. * .. Statement Function definitions .. CABS1( ZDUM ) = ABS( DBLE( ZDUM ) ) + ABS( DIMAG( ZDUM ) ) CABS2( ZDUM ) = ABS( DBLE( ZDUM ) / 2.D0 ) + $ ABS( DIMAG( ZDUM ) / 2.D0 ) * .. * .. Executable Statements .. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) NOTRAN = LSAME( TRANS, 'N' ) NOUNIT = LSAME( DIAG, 'N' ) * * Test the input parameters. * IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) .AND. .NOT. $ LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN INFO = -3 ELSE IF( .NOT.LSAME( NORMIN, 'Y' ) .AND. .NOT. $ LSAME( NORMIN, 'N' ) ) THEN INFO = -4 ELSE IF( N.LT.0 ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -7 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLATRS', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine machine dependent parameters to control overflow. * SMLNUM = DLAMCH( 'Safe minimum' ) BIGNUM = ONE / SMLNUM CALL DLABAD( SMLNUM, BIGNUM ) SMLNUM = SMLNUM / DLAMCH( 'Precision' ) BIGNUM = ONE / SMLNUM SCALE = ONE * IF( LSAME( NORMIN, 'N' ) ) THEN * * Compute the 1-norm of each column, not including the diagonal. * IF( UPPER ) THEN * * A is upper triangular. * DO 10 J = 1, N CNORM( J ) = DZASUM( J-1, A( 1, J ), 1 ) 10 CONTINUE ELSE * * A is lower triangular. * DO 20 J = 1, N - 1 CNORM( J ) = DZASUM( N-J, A( J+1, J ), 1 ) 20 CONTINUE CNORM( N ) = ZERO END IF END IF * * Scale the column norms by TSCAL if the maximum element in CNORM is * greater than BIGNUM/2. * IMAX = IDAMAX( N, CNORM, 1 ) TMAX = CNORM( IMAX ) IF( TMAX.LE.BIGNUM*HALF ) THEN TSCAL = ONE ELSE TSCAL = HALF / ( SMLNUM*TMAX ) CALL DSCAL( N, TSCAL, CNORM, 1 ) END IF * * Compute a bound on the computed solution vector to see if the * Level 2 BLAS routine ZTRSV can be used. * XMAX = ZERO DO 30 J = 1, N XMAX = MAX( XMAX, CABS2( X( J ) ) ) 30 CONTINUE XBND = XMAX * IF( NOTRAN ) THEN * * Compute the growth in A * x = b. * IF( UPPER ) THEN JFIRST = N JLAST = 1 JINC = -1 ELSE JFIRST = 1 JLAST = N JINC = 1 END IF * IF( TSCAL.NE.ONE ) THEN GROW = ZERO GO TO 60 END IF * IF( NOUNIT ) THEN * * A is non-unit triangular. * * Compute GROW = 1/G(j) and XBND = 1/M(j). * Initially, G(0) = max{x(i), i=1,...,n}. * GROW = HALF / MAX( XBND, SMLNUM ) XBND = GROW DO 40 J = JFIRST, JLAST, JINC * * Exit the loop if the growth factor is too small. * IF( GROW.LE.SMLNUM ) $ GO TO 60 * TJJS = A( J, J ) TJJ = CABS1( TJJS ) * IF( TJJ.GE.SMLNUM ) THEN * * M(j) = G(j-1) / abs(A(j,j)) * XBND = MIN( XBND, MIN( ONE, TJJ )*GROW ) ELSE * * M(j) could overflow, set XBND to 0. * XBND = ZERO END IF * IF( TJJ+CNORM( J ).GE.SMLNUM ) THEN * * G(j) = G(j-1)*( 1 + CNORM(j) / abs(A(j,j)) ) * GROW = GROW*( TJJ / ( TJJ+CNORM( J ) ) ) ELSE * * G(j) could overflow, set GROW to 0. * GROW = ZERO END IF 40 CONTINUE GROW = XBND ELSE * * A is unit triangular. * * Compute GROW = 1/G(j), where G(0) = max{x(i), i=1,...,n}. * GROW = MIN( ONE, HALF / MAX( XBND, SMLNUM ) ) DO 50 J = JFIRST, JLAST, JINC * * Exit the loop if the growth factor is too small. * IF( GROW.LE.SMLNUM ) $ GO TO 60 * * G(j) = G(j-1)*( 1 + CNORM(j) ) * GROW = GROW*( ONE / ( ONE+CNORM( J ) ) ) 50 CONTINUE END IF 60 CONTINUE * ELSE * * Compute the growth in A**T * x = b or A**H * x = b. * IF( UPPER ) THEN JFIRST = 1 JLAST = N JINC = 1 ELSE JFIRST = N JLAST = 1 JINC = -1 END IF * IF( TSCAL.NE.ONE ) THEN GROW = ZERO GO TO 90 END IF * IF( NOUNIT ) THEN * * A is non-unit triangular. * * Compute GROW = 1/G(j) and XBND = 1/M(j). * Initially, M(0) = max{x(i), i=1,...,n}. * GROW = HALF / MAX( XBND, SMLNUM ) XBND = GROW DO 70 J = JFIRST, JLAST, JINC * * Exit the loop if the growth factor is too small. * IF( GROW.LE.SMLNUM ) $ GO TO 90 * * G(j) = max( G(j-1), M(j-1)*( 1 + CNORM(j) ) ) * XJ = ONE + CNORM( J ) GROW = MIN( GROW, XBND / XJ ) * TJJS = A( J, J ) TJJ = CABS1( TJJS ) * IF( TJJ.GE.SMLNUM ) THEN * * M(j) = M(j-1)*( 1 + CNORM(j) ) / abs(A(j,j)) * IF( XJ.GT.TJJ ) $ XBND = XBND*( TJJ / XJ ) ELSE * * M(j) could overflow, set XBND to 0. * XBND = ZERO END IF 70 CONTINUE GROW = MIN( GROW, XBND ) ELSE * * A is unit triangular. * * Compute GROW = 1/G(j), where G(0) = max{x(i), i=1,...,n}. * GROW = MIN( ONE, HALF / MAX( XBND, SMLNUM ) ) DO 80 J = JFIRST, JLAST, JINC * * Exit the loop if the growth factor is too small. * IF( GROW.LE.SMLNUM ) $ GO TO 90 * * G(j) = ( 1 + CNORM(j) )*G(j-1) * XJ = ONE + CNORM( J ) GROW = GROW / XJ 80 CONTINUE END IF 90 CONTINUE END IF * IF( ( GROW*TSCAL ).GT.SMLNUM ) THEN * * Use the Level 2 BLAS solve if the reciprocal of the bound on * elements of X is not too small. * CALL ZTRSV( UPLO, TRANS, DIAG, N, A, LDA, X, 1 ) ELSE * * Use a Level 1 BLAS solve, scaling intermediate results. * IF( XMAX.GT.BIGNUM*HALF ) THEN * * Scale X so that its components are less than or equal to * BIGNUM in absolute value. * SCALE = ( BIGNUM*HALF ) / XMAX CALL ZDSCAL( N, SCALE, X, 1 ) XMAX = BIGNUM ELSE XMAX = XMAX*TWO END IF * IF( NOTRAN ) THEN * * Solve A * x = b * DO 120 J = JFIRST, JLAST, JINC * * Compute x(j) = b(j) / A(j,j), scaling x if necessary. * XJ = CABS1( X( J ) ) IF( NOUNIT ) THEN TJJS = A( J, J )*TSCAL ELSE TJJS = TSCAL IF( TSCAL.EQ.ONE ) $ GO TO 110 END IF TJJ = CABS1( TJJS ) IF( TJJ.GT.SMLNUM ) THEN * * abs(A(j,j)) > SMLNUM: * IF( TJJ.LT.ONE ) THEN IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale x by 1/b(j). * REC = ONE / XJ CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF END IF X( J ) = ZLADIV( X( J ), TJJS ) XJ = CABS1( X( J ) ) ELSE IF( TJJ.GT.ZERO ) THEN * * 0 < abs(A(j,j)) <= SMLNUM: * IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale x by (1/abs(x(j)))*abs(A(j,j))*BIGNUM * to avoid overflow when dividing by A(j,j). * REC = ( TJJ*BIGNUM ) / XJ IF( CNORM( J ).GT.ONE ) THEN * * Scale by 1/CNORM(j) to avoid overflow when * multiplying x(j) times column j. * REC = REC / CNORM( J ) END IF CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF X( J ) = ZLADIV( X( J ), TJJS ) XJ = CABS1( X( J ) ) ELSE * * A(j,j) = 0: Set x(1:n) = 0, x(j) = 1, and * scale = 0, and compute a solution to A*x = 0. * DO 100 I = 1, N X( I ) = ZERO 100 CONTINUE X( J ) = ONE XJ = ONE SCALE = ZERO XMAX = ZERO END IF 110 CONTINUE * * Scale x if necessary to avoid overflow when adding a * multiple of column j of A. * IF( XJ.GT.ONE ) THEN REC = ONE / XJ IF( CNORM( J ).GT.( BIGNUM-XMAX )*REC ) THEN * * Scale x by 1/(2*abs(x(j))). * REC = REC*HALF CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC END IF ELSE IF( XJ*CNORM( J ).GT.( BIGNUM-XMAX ) ) THEN * * Scale x by 1/2. * CALL ZDSCAL( N, HALF, X, 1 ) SCALE = SCALE*HALF END IF * IF( UPPER ) THEN IF( J.GT.1 ) THEN * * Compute the update * x(1:j-1) := x(1:j-1) - x(j) * A(1:j-1,j) * CALL ZAXPY( J-1, -X( J )*TSCAL, A( 1, J ), 1, X, $ 1 ) I = IZAMAX( J-1, X, 1 ) XMAX = CABS1( X( I ) ) END IF ELSE IF( J.LT.N ) THEN * * Compute the update * x(j+1:n) := x(j+1:n) - x(j) * A(j+1:n,j) * CALL ZAXPY( N-J, -X( J )*TSCAL, A( J+1, J ), 1, $ X( J+1 ), 1 ) I = J + IZAMAX( N-J, X( J+1 ), 1 ) XMAX = CABS1( X( I ) ) END IF END IF 120 CONTINUE * ELSE IF( LSAME( TRANS, 'T' ) ) THEN * * Solve A**T * x = b * DO 170 J = JFIRST, JLAST, JINC * * Compute x(j) = b(j) - sum A(k,j)*x(k). * k<>j * XJ = CABS1( X( J ) ) USCAL = TSCAL REC = ONE / MAX( XMAX, ONE ) IF( CNORM( J ).GT.( BIGNUM-XJ )*REC ) THEN * * If x(j) could overflow, scale x by 1/(2*XMAX). * REC = REC*HALF IF( NOUNIT ) THEN TJJS = A( J, J )*TSCAL ELSE TJJS = TSCAL END IF TJJ = CABS1( TJJS ) IF( TJJ.GT.ONE ) THEN * * Divide by A(j,j) when scaling x if A(j,j) > 1. * REC = MIN( ONE, REC*TJJ ) USCAL = ZLADIV( USCAL, TJJS ) END IF IF( REC.LT.ONE ) THEN CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF END IF * CSUMJ = ZERO IF( USCAL.EQ.DCMPLX( ONE ) ) THEN * * If the scaling needed for A in the dot product is 1, * call ZDOTU to perform the dot product. * IF( UPPER ) THEN CSUMJ = ZDOTU( J-1, A( 1, J ), 1, X, 1 ) ELSE IF( J.LT.N ) THEN CSUMJ = ZDOTU( N-J, A( J+1, J ), 1, X( J+1 ), 1 ) END IF ELSE * * Otherwise, use in-line code for the dot product. * IF( UPPER ) THEN DO 130 I = 1, J - 1 CSUMJ = CSUMJ + ( A( I, J )*USCAL )*X( I ) 130 CONTINUE ELSE IF( J.LT.N ) THEN DO 140 I = J + 1, N CSUMJ = CSUMJ + ( A( I, J )*USCAL )*X( I ) 140 CONTINUE END IF END IF * IF( USCAL.EQ.DCMPLX( TSCAL ) ) THEN * * Compute x(j) := ( x(j) - CSUMJ ) / A(j,j) if 1/A(j,j) * was not used to scale the dotproduct. * X( J ) = X( J ) - CSUMJ XJ = CABS1( X( J ) ) IF( NOUNIT ) THEN TJJS = A( J, J )*TSCAL ELSE TJJS = TSCAL IF( TSCAL.EQ.ONE ) $ GO TO 160 END IF * * Compute x(j) = x(j) / A(j,j), scaling if necessary. * TJJ = CABS1( TJJS ) IF( TJJ.GT.SMLNUM ) THEN * * abs(A(j,j)) > SMLNUM: * IF( TJJ.LT.ONE ) THEN IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale X by 1/abs(x(j)). * REC = ONE / XJ CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF END IF X( J ) = ZLADIV( X( J ), TJJS ) ELSE IF( TJJ.GT.ZERO ) THEN * * 0 < abs(A(j,j)) <= SMLNUM: * IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale x by (1/abs(x(j)))*abs(A(j,j))*BIGNUM. * REC = ( TJJ*BIGNUM ) / XJ CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF X( J ) = ZLADIV( X( J ), TJJS ) ELSE * * A(j,j) = 0: Set x(1:n) = 0, x(j) = 1, and * scale = 0 and compute a solution to A**T *x = 0. * DO 150 I = 1, N X( I ) = ZERO 150 CONTINUE X( J ) = ONE SCALE = ZERO XMAX = ZERO END IF 160 CONTINUE ELSE * * Compute x(j) := x(j) / A(j,j) - CSUMJ if the dot * product has already been divided by 1/A(j,j). * X( J ) = ZLADIV( X( J ), TJJS ) - CSUMJ END IF XMAX = MAX( XMAX, CABS1( X( J ) ) ) 170 CONTINUE * ELSE * * Solve A**H * x = b * DO 220 J = JFIRST, JLAST, JINC * * Compute x(j) = b(j) - sum A(k,j)*x(k). * k<>j * XJ = CABS1( X( J ) ) USCAL = TSCAL REC = ONE / MAX( XMAX, ONE ) IF( CNORM( J ).GT.( BIGNUM-XJ )*REC ) THEN * * If x(j) could overflow, scale x by 1/(2*XMAX). * REC = REC*HALF IF( NOUNIT ) THEN TJJS = DCONJG( A( J, J ) )*TSCAL ELSE TJJS = TSCAL END IF TJJ = CABS1( TJJS ) IF( TJJ.GT.ONE ) THEN * * Divide by A(j,j) when scaling x if A(j,j) > 1. * REC = MIN( ONE, REC*TJJ ) USCAL = ZLADIV( USCAL, TJJS ) END IF IF( REC.LT.ONE ) THEN CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF END IF * CSUMJ = ZERO IF( USCAL.EQ.DCMPLX( ONE ) ) THEN * * If the scaling needed for A in the dot product is 1, * call ZDOTC to perform the dot product. * IF( UPPER ) THEN CSUMJ = ZDOTC( J-1, A( 1, J ), 1, X, 1 ) ELSE IF( J.LT.N ) THEN CSUMJ = ZDOTC( N-J, A( J+1, J ), 1, X( J+1 ), 1 ) END IF ELSE * * Otherwise, use in-line code for the dot product. * IF( UPPER ) THEN DO 180 I = 1, J - 1 CSUMJ = CSUMJ + ( DCONJG( A( I, J ) )*USCAL )* $ X( I ) 180 CONTINUE ELSE IF( J.LT.N ) THEN DO 190 I = J + 1, N CSUMJ = CSUMJ + ( DCONJG( A( I, J ) )*USCAL )* $ X( I ) 190 CONTINUE END IF END IF * IF( USCAL.EQ.DCMPLX( TSCAL ) ) THEN * * Compute x(j) := ( x(j) - CSUMJ ) / A(j,j) if 1/A(j,j) * was not used to scale the dotproduct. * X( J ) = X( J ) - CSUMJ XJ = CABS1( X( J ) ) IF( NOUNIT ) THEN TJJS = DCONJG( A( J, J ) )*TSCAL ELSE TJJS = TSCAL IF( TSCAL.EQ.ONE ) $ GO TO 210 END IF * * Compute x(j) = x(j) / A(j,j), scaling if necessary. * TJJ = CABS1( TJJS ) IF( TJJ.GT.SMLNUM ) THEN * * abs(A(j,j)) > SMLNUM: * IF( TJJ.LT.ONE ) THEN IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale X by 1/abs(x(j)). * REC = ONE / XJ CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF END IF X( J ) = ZLADIV( X( J ), TJJS ) ELSE IF( TJJ.GT.ZERO ) THEN * * 0 < abs(A(j,j)) <= SMLNUM: * IF( XJ.GT.TJJ*BIGNUM ) THEN * * Scale x by (1/abs(x(j)))*abs(A(j,j))*BIGNUM. * REC = ( TJJ*BIGNUM ) / XJ CALL ZDSCAL( N, REC, X, 1 ) SCALE = SCALE*REC XMAX = XMAX*REC END IF X( J ) = ZLADIV( X( J ), TJJS ) ELSE * * A(j,j) = 0: Set x(1:n) = 0, x(j) = 1, and * scale = 0 and compute a solution to A**H *x = 0. * DO 200 I = 1, N X( I ) = ZERO 200 CONTINUE X( J ) = ONE SCALE = ZERO XMAX = ZERO END IF 210 CONTINUE ELSE * * Compute x(j) := x(j) / A(j,j) - CSUMJ if the dot * product has already been divided by 1/A(j,j). * X( J ) = ZLADIV( X( J ), TJJS ) - CSUMJ END IF XMAX = MAX( XMAX, CABS1( X( J ) ) ) 220 CONTINUE END IF SCALE = SCALE / TSCAL END IF * * Scale the column norms by 1/TSCAL for return. * IF( TSCAL.NE.ONE ) THEN CALL DSCAL( N, ONE / TSCAL, CNORM, 1 ) END IF * RETURN * * End of ZLATRS * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ztrti2.f0000644000000000000000000000013214061636515015262 xustar0030 mtime=1623670093.352103943 30 atime=1623670093.352103943 30 ctime=1623670093.352103943 elk-7.2.42/src/LAPACK/ztrti2.f0000644002504400250440000001343714061636515017327 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTRTI2 computes the inverse of a triangular matrix (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZTRTI2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZTRTI2( UPLO, DIAG, N, A, LDA, INFO ) * * .. Scalar Arguments .. * CHARACTER DIAG, UPLO * INTEGER INFO, LDA, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTRTI2 computes the inverse of a complex upper or lower triangular *> matrix. *> *> This is the Level 2 BLAS version of the algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] UPLO *> \verbatim *> UPLO is CHARACTER*1 *> Specifies whether the matrix A is upper or lower triangular. *> = 'U': Upper triangular *> = 'L': Lower triangular *> \endverbatim *> *> \param[in] DIAG *> \verbatim *> DIAG is CHARACTER*1 *> Specifies whether or not the matrix A is unit triangular. *> = 'N': Non-unit triangular *> = 'U': Unit triangular *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix A. N >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the triangular matrix A. If UPLO = 'U', the *> leading n by n upper triangular part of the array A contains *> the upper triangular matrix, and the strictly lower *> triangular part of A is not referenced. If UPLO = 'L', the *> leading n by n lower triangular part of the array A contains *> the lower triangular matrix, and the strictly upper *> triangular part of A is not referenced. If DIAG = 'U', the *> diagonal elements of A are also not referenced and are *> assumed to be 1. *> *> On exit, the (triangular) inverse of the original matrix, in *> the same storage format. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,N). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -k, the k-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZTRTI2( UPLO, DIAG, N, A, LDA, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIAG, UPLO INTEGER INFO, LDA, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL NOUNIT, UPPER INTEGER J COMPLEX*16 AJJ * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZSCAL, ZTRMV * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 UPPER = LSAME( UPLO, 'U' ) NOUNIT = LSAME( DIAG, 'N' ) IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO, 'L' ) ) THEN INFO = -1 ELSE IF( .NOT.NOUNIT .AND. .NOT.LSAME( DIAG, 'U' ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, N ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZTRTI2', -INFO ) RETURN END IF * IF( UPPER ) THEN * * Compute inverse of upper triangular matrix. * DO 10 J = 1, N IF( NOUNIT ) THEN A( J, J ) = ONE / A( J, J ) AJJ = -A( J, J ) ELSE AJJ = -ONE END IF * * Compute elements 1:j-1 of j-th column. * CALL ZTRMV( 'Upper', 'No transpose', DIAG, J-1, A, LDA, $ A( 1, J ), 1 ) CALL ZSCAL( J-1, AJJ, A( 1, J ), 1 ) 10 CONTINUE ELSE * * Compute inverse of lower triangular matrix. * DO 20 J = N, 1, -1 IF( NOUNIT ) THEN A( J, J ) = ONE / A( J, J ) AJJ = -A( J, J ) ELSE AJJ = -ONE END IF IF( J.LT.N ) THEN * * Compute elements j+1:n of j-th column. * CALL ZTRMV( 'Lower', 'No transpose', DIAG, N-J, $ A( J+1, J+1 ), LDA, A( J+1, J ), 1 ) CALL ZSCAL( N-J, AJJ, A( J+1, J ), 1 ) END IF 20 CONTINUE END IF * RETURN * * End of ZTRTI2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zungl2.f0000644000000000000000000000013214061636515015245 xustar0030 mtime=1623670093.354103941 30 atime=1623670093.354103941 30 ctime=1623670093.354103941 elk-7.2.42/src/LAPACK/zungl2.f0000644002504400250440000001264514061636515017312 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGL2 generates all or part of the unitary matrix Q from an LQ factorization determined by cgelqf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGL2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGL2( M, N, K, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGL2 generates an m-by-n complex matrix Q with orthonormal rows, *> which is defined as the first m rows of a product of k elementary *> reflectors of order n *> *> Q = H(k)**H . . . H(2)**H H(1)**H *> *> as returned by ZGELQF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. N >= M. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. M >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the i-th row must contain the vector which defines *> the elementary reflector H(i), for i = 1,2,...,k, as returned *> by ZGELQF in the first k rows of its array argument A. *> On exit, the m by n matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGELQF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (M) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGL2( M, N, K, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, J, L * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLACGV, ZLARF, ZSCAL * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.M ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGL2', -INFO ) RETURN END IF * * Quick return if possible * IF( M.LE.0 ) $ RETURN * IF( K.LT.M ) THEN * * Initialise rows k+1:m to rows of the unit matrix * DO 20 J = 1, N DO 10 L = K + 1, M A( L, J ) = ZERO 10 CONTINUE IF( J.GT.K .AND. J.LE.M ) $ A( J, J ) = ONE 20 CONTINUE END IF * DO 40 I = K, 1, -1 * * Apply H(i)**H to A(i:m,i:n) from the right * IF( I.LT.N ) THEN CALL ZLACGV( N-I, A( I, I+1 ), LDA ) IF( I.LT.M ) THEN A( I, I ) = ONE CALL ZLARF( 'Right', M-I, N-I+1, A( I, I ), LDA, $ DCONJG( TAU( I ) ), A( I+1, I ), LDA, WORK ) END IF CALL ZSCAL( N-I, -TAU( I ), A( I, I+1 ), LDA ) CALL ZLACGV( N-I, A( I, I+1 ), LDA ) END IF A( I, I ) = ONE - DCONJG( TAU( I ) ) * * Set A(i,1:i-1) to zero * DO 30 L = 1, I - 1 A( I, L ) = ZERO 30 CONTINUE 40 CONTINUE RETURN * * End of ZUNGL2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zung2r.f0000644000000000000000000000013114061636515015252 xustar0030 mtime=1623670093.356103939 29 atime=1623670093.35510394 30 ctime=1623670093.356103939 elk-7.2.42/src/LAPACK/zung2r.f0000644002504400250440000001210014061636515017302 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNG2R * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNG2R + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNG2R( M, N, K, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNG2R generates an m by n complex matrix Q with orthonormal columns, *> which is defined as the first n columns of a product of k elementary *> reflectors of order m *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by ZGEQRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the i-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by ZGEQRF in the first k columns of its array *> argument A. *> On exit, the m by n matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQRF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNG2R( M, N, K, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, J, L * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF, ZSCAL * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNG2R', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * * Initialise columns k+1:n to columns of the unit matrix * DO 20 J = K + 1, N DO 10 L = 1, M A( L, J ) = ZERO 10 CONTINUE A( J, J ) = ONE 20 CONTINUE * DO 40 I = K, 1, -1 * * Apply H(i) to A(i:m,i:n) from the left * IF( I.LT.N ) THEN A( I, I ) = ONE CALL ZLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAU( I ), $ A( I, I+1 ), LDA, WORK ) END IF IF( I.LT.M ) $ CALL ZSCAL( M-I, -TAU( I ), A( I+1, I ), 1 ) A( I, I ) = ONE - TAU( I ) * * Set A(1:i-1,i) to zero * DO 30 L = 1, I - 1 A( L, I ) = ZERO 30 CONTINUE 40 CONTINUE RETURN * * End of ZUNG2R * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zungql.f0000644000000000000000000000013214061636515015344 xustar0030 mtime=1623670093.358103937 30 atime=1623670093.357103938 30 ctime=1623670093.358103937 elk-7.2.42/src/LAPACK/zungql.f0000644002504400250440000002000614061636515017377 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNGQL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNGQL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNGQL( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNGQL generates an M-by-N complex matrix Q with orthonormal columns, *> which is defined as the last N columns of a product of K elementary *> reflectors of order M *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by ZGEQLF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the (n-k+i)-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by ZGEQLF in the last k columns of its array *> argument A. *> On exit, the M-by-N matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQLF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N). *> For optimum performance LWORK >= N*NB, where NB is the *> optimal blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNGQL( M, N, K, A, LDA, TAU, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LQUERY INTEGER I, IB, IINFO, IWS, J, KK, L, LDWORK, LWKOPT, $ NB, NBMIN, NX * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNG2L * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LQUERY = ( LWORK.EQ.-1 ) IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF * IF( INFO.EQ.0 ) THEN IF( N.EQ.0 ) THEN LWKOPT = 1 ELSE NB = ILAENV( 1, 'ZUNGQL', ' ', M, N, K, -1 ) LWKOPT = N*NB END IF WORK( 1 ) = LWKOPT * IF( LWORK.LT.MAX( 1, N ) .AND. .NOT.LQUERY ) THEN INFO = -8 END IF END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNGQL', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( N.LE.0 ) THEN RETURN END IF * NBMIN = 2 NX = 0 IWS = N IF( NB.GT.1 .AND. NB.LT.K ) THEN * * Determine when to cross over from blocked to unblocked code. * NX = MAX( 0, ILAENV( 3, 'ZUNGQL', ' ', M, N, K, -1 ) ) IF( NX.LT.K ) THEN * * Determine if workspace is large enough for blocked code. * LDWORK = N IWS = LDWORK*NB IF( LWORK.LT.IWS ) THEN * * Not enough workspace to use optimal NB: reduce NB and * determine the minimum value of NB. * NB = LWORK / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNGQL', ' ', M, N, K, -1 ) ) END IF END IF END IF * IF( NB.GE.NBMIN .AND. NB.LT.K .AND. NX.LT.K ) THEN * * Use blocked code after the first block. * The last kk columns are handled by the block method. * KK = MIN( K, ( ( K-NX+NB-1 ) / NB )*NB ) * * Set A(m-kk+1:m,1:n-kk) to zero. * DO 20 J = 1, N - KK DO 10 I = M - KK + 1, M A( I, J ) = ZERO 10 CONTINUE 20 CONTINUE ELSE KK = 0 END IF * * Use unblocked code for the first or only block. * CALL ZUNG2L( M-KK, N-KK, K-KK, A, LDA, TAU, WORK, IINFO ) * IF( KK.GT.0 ) THEN * * Use blocked code * DO 50 I = K - KK + 1, K, NB IB = MIN( NB, K-I+1 ) IF( N-K+I.GT.1 ) THEN * * Form the triangular factor of the block reflector * H = H(i+ib-1) . . . H(i+1) H(i) * CALL ZLARFT( 'Backward', 'Columnwise', M-K+I+IB-1, IB, $ A( 1, N-K+I ), LDA, TAU( I ), WORK, LDWORK ) * * Apply H to A(1:m-k+i+ib-1,1:n-k+i-1) from the left * CALL ZLARFB( 'Left', 'No transpose', 'Backward', $ 'Columnwise', M-K+I+IB-1, N-K+I-1, IB, $ A( 1, N-K+I ), LDA, WORK, LDWORK, A, LDA, $ WORK( IB+1 ), LDWORK ) END IF * * Apply H to rows 1:m-k+i+ib-1 of current block * CALL ZUNG2L( M-K+I+IB-1, IB, IB, A( 1, N-K+I ), LDA, $ TAU( I ), WORK, IINFO ) * * Set rows m-k+i+ib:m of current block to zero * DO 40 J = N - K + I, N - K + I + IB - 1 DO 30 L = M - K + I + IB, M A( L, J ) = ZERO 30 CONTINUE 40 CONTINUE 50 CONTINUE END IF * WORK( 1 ) = IWS RETURN * * End of ZUNGQL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmqr.f0000644000000000000000000000013214061636515015360 xustar0030 mtime=1623670093.359103936 30 atime=1623670093.359103936 30 ctime=1623670093.359103936 elk-7.2.42/src/LAPACK/zunmqr.f0000644002504400250440000002223114061636515017415 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNMQR overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by ZGEQRF. Q is of order M if SIDE = 'L' and of order N *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'C': Conjugate transpose, apply Q**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGEQRF in the first k columns of its array argument A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQRF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) * .. * .. Local Scalars .. LOGICAL LEFT, LQUERY, NOTRAN INTEGER I, I1, I2, I3, IB, IC, IINFO, IWT, JC, LDWORK, $ LWKOPT, MI, NB, NBMIN, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNM2R * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * NB = MIN( NBMAX, ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M, N, K, $ -1 ) ) LWKOPT = MAX( 1, NW )*NB + TSIZE WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMQR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 LDWORK = NW IF( NB.GT.1 .AND. NB.LT.K ) THEN IF( LWORK.LT.NW*NB+TSIZE ) THEN NB = (LWORK-TSIZE) / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNMQR', SIDE // TRANS, M, N, K, $ -1 ) ) END IF END IF * IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN * * Use unblocked code * CALL ZUNM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, $ IINFO ) ELSE * * Use blocked code * IWT = 1 + NW*NB IF( ( LEFT .AND. .NOT.NOTRAN ) .OR. $ ( .NOT.LEFT .AND. NOTRAN ) ) THEN I1 = 1 I2 = K I3 = NB ELSE I1 = ( ( K-1 ) / NB )*NB + 1 I2 = 1 I3 = -NB END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 10 I = I1, I2, I3 IB = MIN( NB, K-I+1 ) * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Columnwise', NQ-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK( IWT ), LDT ) IF( LEFT ) THEN * * H or H**H is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H or H**H is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H or H**H * CALL ZLARFB( SIDE, TRANS, 'Forward', 'Columnwise', MI, NI, $ IB, A( I, I ), LDA, WORK( IWT ), LDT, $ C( IC, JC ), LDC, WORK, LDWORK ) 10 CONTINUE END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNMQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmlq.f0000644000000000000000000000013214061636515015352 xustar0030 mtime=1623670093.361103934 30 atime=1623670093.361103934 30 ctime=1623670093.361103934 elk-7.2.42/src/LAPACK/zunmlq.f0000644002504400250440000002250314061636515017411 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMLQ * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMLQ + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMLQ( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNMLQ overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(k)**H . . . H(2)**H H(1)**H *> *> as returned by ZGELQF. Q is of order M if SIDE = 'L' and of order N *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'C': Conjugate transpose, apply Q**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension *> (LDA,M) if SIDE = 'L', *> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGELQF in the first k rows of its array argument A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,K). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGELQF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMLQ( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) * .. * .. Local Scalars .. LOGICAL LEFT, LQUERY, NOTRAN CHARACTER TRANST INTEGER I, I1, I2, I3, IB, IC, IINFO, IWT, JC, LDWORK, $ LWKOPT, MI, NB, NBMIN, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNML2 * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, K ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * NB = MIN( NBMAX, ILAENV( 1, 'ZUNMLQ', SIDE // TRANS, M, N, K, $ -1 ) ) LWKOPT = MAX( 1, NW )*NB + TSIZE WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMLQ', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 LDWORK = NW IF( NB.GT.1 .AND. NB.LT.K ) THEN IF( LWORK.LT.NW*NB+TSIZE ) THEN NB = (LWORK-TSIZE) / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNMLQ', SIDE // TRANS, M, N, K, $ -1 ) ) END IF END IF * IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN * * Use unblocked code * CALL ZUNML2( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, $ IINFO ) ELSE * * Use blocked code * IWT = 1 + NW*NB IF( ( LEFT .AND. NOTRAN ) .OR. $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN I1 = 1 I2 = K I3 = NB ELSE I1 = ( ( K-1 ) / NB )*NB + 1 I2 = 1 I3 = -NB END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * IF( NOTRAN ) THEN TRANST = 'C' ELSE TRANST = 'N' END IF * DO 10 I = I1, I2, I3 IB = MIN( NB, K-I+1 ) * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL ZLARFT( 'Forward', 'Rowwise', NQ-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK( IWT ), LDT ) IF( LEFT ) THEN * * H or H**H is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H or H**H is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H or H**H * CALL ZLARFB( SIDE, TRANST, 'Forward', 'Rowwise', MI, NI, IB, $ A( I, I ), LDA, WORK( IWT ), LDT, $ C( IC, JC ), LDC, WORK, LDWORK ) 10 CONTINUE END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNMLQ * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmql.f0000644000000000000000000000013214061636515015352 xustar0030 mtime=1623670093.363103932 30 atime=1623670093.363103932 30 ctime=1623670093.363103932 elk-7.2.42/src/LAPACK/zunmql.f0000644002504400250440000002225314061636515017413 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMQL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMQL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNMQL overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by ZGEQLF. Q is of order M if SIDE = 'L' and of order N *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'C': Transpose, apply Q**H. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGEQLF in the last k columns of its array argument A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQLF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For good performance, LWORK should genreally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) * .. * .. Local Scalars .. LOGICAL LEFT, LQUERY, NOTRAN INTEGER I, I1, I2, I3, IB, IINFO, IWT, LDWORK, LWKOPT, $ MI, NB, NBMIN, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARFB, ZLARFT, ZUNM2L * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = MAX( 1, N ) ELSE NQ = N NW = MAX( 1, M ) END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.NW .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * IF( M.EQ.0 .OR. N.EQ.0 ) THEN LWKOPT = 1 ELSE NB = MIN( NBMAX, ILAENV( 1, 'ZUNMQL', SIDE // TRANS, M, N, $ K, -1 ) ) LWKOPT = NW*NB + TSIZE END IF WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMQL', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) THEN RETURN END IF * NBMIN = 2 LDWORK = NW IF( NB.GT.1 .AND. NB.LT.K ) THEN IF( LWORK.LT.NW*NB+TSIZE ) THEN NB = (LWORK-TSIZE) / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'ZUNMQL', SIDE // TRANS, M, N, K, $ -1 ) ) END IF END IF * IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN * * Use unblocked code * CALL ZUNM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, $ IINFO ) ELSE * * Use blocked code * IWT = 1 + NW*NB IF( ( LEFT .AND. NOTRAN ) .OR. $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN I1 = 1 I2 = K I3 = NB ELSE I1 = ( ( K-1 ) / NB )*NB + 1 I2 = 1 I3 = -NB END IF * IF( LEFT ) THEN NI = N ELSE MI = M END IF * DO 10 I = I1, I2, I3 IB = MIN( NB, K-I+1 ) * * Form the triangular factor of the block reflector * H = H(i+ib-1) . . . H(i+1) H(i) * CALL ZLARFT( 'Backward', 'Columnwise', NQ-K+I+IB-1, IB, $ A( 1, I ), LDA, TAU( I ), WORK( IWT ), LDT ) IF( LEFT ) THEN * * H or H**H is applied to C(1:m-k+i+ib-1,1:n) * MI = M - K + I + IB - 1 ELSE * * H or H**H is applied to C(1:m,1:n-k+i+ib-1) * NI = N - K + I + IB - 1 END IF * * Apply H or H**H * CALL ZLARFB( SIDE, TRANS, 'Backward', 'Columnwise', MI, NI, $ IB, A( 1, I ), LDA, WORK( IWT ), LDT, C, LDC, $ WORK, LDWORK ) 10 CONTINUE END IF WORK( 1 ) = LWKOPT RETURN * * End of ZUNMQL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zung2l.f0000644000000000000000000000013214061636515015245 xustar0030 mtime=1623670093.365103931 30 atime=1623670093.365103931 30 ctime=1623670093.365103931 elk-7.2.42/src/LAPACK/zung2l.f0000644002504400250440000001225014061636515017302 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNG2L generates all or part of the unitary matrix Q from a QL factorization determined by cgeqlf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNG2L + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNG2L( M, N, K, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNG2L generates an m by n complex matrix Q with orthonormal columns, *> which is defined as the last n columns of a product of k elementary *> reflectors of order m *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by ZGEQLF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the (n-k+i)-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by ZGEQLF in the last k columns of its array *> argument A. *> On exit, the m-by-n matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQLF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNG2L( M, N, K, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. INTEGER I, II, J, L * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF, ZSCAL * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNG2L', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * * Initialise columns 1:n-k to columns of the unit matrix * DO 20 J = 1, N - K DO 10 L = 1, M A( L, J ) = ZERO 10 CONTINUE A( M-N+J, J ) = ONE 20 CONTINUE * DO 40 I = 1, K II = N - K + I * * Apply H(i) to A(1:m-k+i,1:n-k+i) from the left * A( M-N+II, II ) = ONE CALL ZLARF( 'Left', M-N+II, II-1, A( 1, II ), 1, TAU( I ), A, $ LDA, WORK ) CALL ZSCAL( M-N+II-1, -TAU( I ), A( 1, II ), 1 ) A( M-N+II, II ) = ONE - TAU( I ) * * Set A(m-k+i+1:m,n-k+i) to zero * DO 30 L = M - N + II + 1, M A( L, II ) = ZERO 30 CONTINUE 40 CONTINUE RETURN * * End of ZUNG2L * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlarf.f0000644000000000000000000000013214061636515015142 xustar0030 mtime=1623670093.367103929 30 atime=1623670093.367103929 30 ctime=1623670093.367103929 elk-7.2.42/src/LAPACK/zlarf.f0000644002504400250440000001426714061636515017211 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLARF applies an elementary reflector to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLARF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLARF( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) * * .. Scalar Arguments .. * CHARACTER SIDE * INTEGER INCV, LDC, M, N * COMPLEX*16 TAU * .. * .. Array Arguments .. * COMPLEX*16 C( LDC, * ), V( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLARF applies a complex elementary reflector H to a complex M-by-N *> matrix C, from either the left or the right. H is represented in the *> form *> *> H = I - tau * v * v**H *> *> where tau is a complex scalar and v is a complex vector. *> *> If tau = 0, then H is taken to be the unit matrix. *> *> To apply H**H, supply conjg(tau) instead *> tau. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': form H * C *> = 'R': form C * H *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is COMPLEX*16 array, dimension *> (1 + (M-1)*abs(INCV)) if SIDE = 'L' *> or (1 + (N-1)*abs(INCV)) if SIDE = 'R' *> The vector v in the representation of H. V is not used if *> TAU = 0. *> \endverbatim *> *> \param[in] INCV *> \verbatim *> INCV is INTEGER *> The increment between elements of v. INCV <> 0. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 *> The value tau in the representation of H. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by the matrix H * C if SIDE = 'L', *> or C * H if SIDE = 'R'. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (N) if SIDE = 'L' *> or (M) if SIDE = 'R' *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLARF( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE INTEGER INCV, LDC, M, N COMPLEX*16 TAU * .. * .. Array Arguments .. COMPLEX*16 C( LDC, * ), V( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE, ZERO PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), $ ZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL APPLYLEFT INTEGER I, LASTV, LASTC * .. * .. External Subroutines .. EXTERNAL ZGEMV, ZGERC * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAZLR, ILAZLC EXTERNAL LSAME, ILAZLR, ILAZLC * .. * .. Executable Statements .. * APPLYLEFT = LSAME( SIDE, 'L' ) LASTV = 0 LASTC = 0 IF( TAU.NE.ZERO ) THEN * Set up variables for scanning V. LASTV begins pointing to the end * of V. IF( APPLYLEFT ) THEN LASTV = M ELSE LASTV = N END IF IF( INCV.GT.0 ) THEN I = 1 + (LASTV-1) * INCV ELSE I = 1 END IF * Look for the last non-zero row in V. DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO ) LASTV = LASTV - 1 I = I - INCV END DO IF( APPLYLEFT ) THEN * Scan for the last non-zero column in C(1:lastv,:). LASTC = ILAZLC(LASTV, N, C, LDC) ELSE * Scan for the last non-zero row in C(:,1:lastv). LASTC = ILAZLR(M, LASTV, C, LDC) END IF END IF * Note that lastc.eq.0 renders the BLAS operations null; no special * case is needed at this level. IF( APPLYLEFT ) THEN * * Form H * C * IF( LASTV.GT.0 ) THEN * * w(1:lastc,1) := C(1:lastv,1:lastc)**H * v(1:lastv,1) * CALL ZGEMV( 'Conjugate transpose', LASTV, LASTC, ONE, $ C, LDC, V, INCV, ZERO, WORK, 1 ) * * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**H * CALL ZGERC( LASTV, LASTC, -TAU, V, INCV, WORK, 1, C, LDC ) END IF ELSE * * Form C * H * IF( LASTV.GT.0 ) THEN * * w(1:lastc,1) := C(1:lastc,1:lastv) * v(1:lastv,1) * CALL ZGEMV( 'No transpose', LASTC, LASTV, ONE, C, LDC, $ V, INCV, ZERO, WORK, 1 ) * * C(1:lastc,1:lastv) := C(...) - w(1:lastc,1) * v(1:lastv,1)**H * CALL ZGERC( LASTC, LASTV, -TAU, WORK, 1, V, INCV, C, LDC ) END IF END IF RETURN * * End of ZLARF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed2.f0000644000000000000000000000013214061636515015157 xustar0030 mtime=1623670093.369103927 30 atime=1623670093.369103927 30 ctime=1623670093.369103927 elk-7.2.42/src/LAPACK/dlaed2.f0000644002504400250440000003723114061636515017222 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED2 used by sstedc. Merges eigenvalues and deflates secular equation. Used when the original matrix is tridiagonal. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED2( K, N, N1, D, Q, LDQ, INDXQ, RHO, Z, DLAMDA, W, * Q2, INDX, INDXC, INDXP, COLTYP, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDQ, N, N1 * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER COLTYP( * ), INDX( * ), INDXC( * ), INDXP( * ), * $ INDXQ( * ) * DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), Q2( * ), * $ W( * ), Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED2 merges the two sets of eigenvalues together into a single *> sorted set. Then it tries to deflate the size of the problem. *> There are two ways in which deflation can occur: when two or more *> eigenvalues are close together or if there is a tiny entry in the *> Z vector. For each such occurrence the order of the related secular *> equation problem is reduced by one. *> \endverbatim * * Arguments: * ========== * *> \param[out] K *> \verbatim *> K is INTEGER *> The number of non-deflated eigenvalues, and the order of the *> related secular equation. 0 <= K <=N. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] N1 *> \verbatim *> N1 is INTEGER *> The location of the last eigenvalue in the leading sub-matrix. *> min(1,N) <= N1 <= N/2. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, D contains the eigenvalues of the two submatrices to *> be combined. *> On exit, D contains the trailing (N-K) updated eigenvalues *> (those which were deflated) sorted into increasing order. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ, N) *> On entry, Q contains the eigenvectors of two submatrices in *> the two square blocks with corners at (1,1), (N1,N1) *> and (N1+1, N1+1), (N,N). *> On exit, Q contains the trailing (N-K) updated eigenvectors *> (those which were deflated) in its last N-K columns. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[in,out] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> The permutation which separately sorts the two sub-problems *> in D into ascending order. Note that elements in the second *> half of this permutation must first have N1 added to their *> values. Destroyed on exit. *> \endverbatim *> *> \param[in,out] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> On entry, the off-diagonal element associated with the rank-1 *> cut which originally split the two submatrices which are now *> being recombined. *> On exit, RHO has been modified to the value required by *> DLAED3. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (N) *> On entry, Z contains the updating vector (the last *> row of the first sub-eigenvector matrix and the first row of *> the second sub-eigenvector matrix). *> On exit, the contents of Z have been destroyed by the updating *> process. *> \endverbatim *> *> \param[out] DLAMDA *> \verbatim *> DLAMDA is DOUBLE PRECISION array, dimension (N) *> A copy of the first K eigenvalues which will be used by *> DLAED3 to form the secular equation. *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> The first k values of the final deflation-altered z-vector *> which will be passed to DLAED3. *> \endverbatim *> *> \param[out] Q2 *> \verbatim *> Q2 is DOUBLE PRECISION array, dimension (N1**2+(N-N1)**2) *> A copy of the first K eigenvectors which will be used by *> DLAED3 in a matrix multiply (DGEMM) to solve for the new *> eigenvectors. *> \endverbatim *> *> \param[out] INDX *> \verbatim *> INDX is INTEGER array, dimension (N) *> The permutation used to sort the contents of DLAMDA into *> ascending order. *> \endverbatim *> *> \param[out] INDXC *> \verbatim *> INDXC is INTEGER array, dimension (N) *> The permutation used to arrange the columns of the deflated *> Q matrix into three groups: the first group contains non-zero *> elements only at and above N1, the second contains *> non-zero elements only below N1, and the third is dense. *> \endverbatim *> *> \param[out] INDXP *> \verbatim *> INDXP is INTEGER array, dimension (N) *> The permutation used to place deflated values of D at the end *> of the array. INDXP(1:K) points to the nondeflated D-values *> and INDXP(K+1:N) points to the deflated eigenvalues. *> \endverbatim *> *> \param[out] COLTYP *> \verbatim *> COLTYP is INTEGER array, dimension (N) *> During execution, a label which will indicate which of the *> following types a column in the Q2 matrix is: *> 1 : non-zero in the upper half only; *> 2 : dense; *> 3 : non-zero in the lower half only; *> 4 : deflated. *> On exit, COLTYP(i) is the number of columns of type i, *> for i=1 to 4 only. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA \n *> Modified by Francoise Tisseur, University of Tennessee *> * ===================================================================== SUBROUTINE DLAED2( K, N, N1, D, Q, LDQ, INDXQ, RHO, Z, DLAMDA, W, $ Q2, INDX, INDXC, INDXP, COLTYP, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDQ, N, N1 DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER COLTYP( * ), INDX( * ), INDXC( * ), INDXP( * ), $ INDXQ( * ) DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), Q2( * ), $ W( * ), Z( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION MONE, ZERO, ONE, TWO, EIGHT PARAMETER ( MONE = -1.0D0, ZERO = 0.0D0, ONE = 1.0D0, $ TWO = 2.0D0, EIGHT = 8.0D0 ) * .. * .. Local Arrays .. INTEGER CTOT( 4 ), PSM( 4 ) * .. * .. Local Scalars .. INTEGER CT, I, IMAX, IQ1, IQ2, J, JMAX, JS, K2, N1P1, $ N2, NJ, PJ DOUBLE PRECISION C, EPS, S, T, TAU, TOL * .. * .. External Functions .. INTEGER IDAMAX DOUBLE PRECISION DLAMCH, DLAPY2 EXTERNAL IDAMAX, DLAMCH, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLACPY, DLAMRG, DROT, DSCAL, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -6 ELSE IF( MIN( 1, ( N / 2 ) ).GT.N1 .OR. ( N / 2 ).LT.N1 ) THEN INFO = -3 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED2', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * N2 = N - N1 N1P1 = N1 + 1 * IF( RHO.LT.ZERO ) THEN CALL DSCAL( N2, MONE, Z( N1P1 ), 1 ) END IF * * Normalize z so that norm(z) = 1. Since z is the concatenation of * two normalized vectors, norm2(z) = sqrt(2). * T = ONE / SQRT( TWO ) CALL DSCAL( N, T, Z, 1 ) * * RHO = ABS( norm(z)**2 * RHO ) * RHO = ABS( TWO*RHO ) * * Sort the eigenvalues into increasing order * DO 10 I = N1P1, N INDXQ( I ) = INDXQ( I ) + N1 10 CONTINUE * * re-integrate the deflated parts from the last pass * DO 20 I = 1, N DLAMDA( I ) = D( INDXQ( I ) ) 20 CONTINUE CALL DLAMRG( N1, N2, DLAMDA, 1, 1, INDXC ) DO 30 I = 1, N INDX( I ) = INDXQ( INDXC( I ) ) 30 CONTINUE * * Calculate the allowable deflation tolerance * IMAX = IDAMAX( N, Z, 1 ) JMAX = IDAMAX( N, D, 1 ) EPS = DLAMCH( 'Epsilon' ) TOL = EIGHT*EPS*MAX( ABS( D( JMAX ) ), ABS( Z( IMAX ) ) ) * * If the rank-1 modifier is small enough, no more needs to be done * except to reorganize Q so that its columns correspond with the * elements in D. * IF( RHO*ABS( Z( IMAX ) ).LE.TOL ) THEN K = 0 IQ2 = 1 DO 40 J = 1, N I = INDX( J ) CALL DCOPY( N, Q( 1, I ), 1, Q2( IQ2 ), 1 ) DLAMDA( J ) = D( I ) IQ2 = IQ2 + N 40 CONTINUE CALL DLACPY( 'A', N, N, Q2, N, Q, LDQ ) CALL DCOPY( N, DLAMDA, 1, D, 1 ) GO TO 190 END IF * * If there are multiple eigenvalues then the problem deflates. Here * the number of equal eigenvalues are found. As each equal * eigenvalue is found, an elementary reflector is computed to rotate * the corresponding eigensubspace so that the corresponding * components of Z are zero in this new basis. * DO 50 I = 1, N1 COLTYP( I ) = 1 50 CONTINUE DO 60 I = N1P1, N COLTYP( I ) = 3 60 CONTINUE * * K = 0 K2 = N + 1 DO 70 J = 1, N NJ = INDX( J ) IF( RHO*ABS( Z( NJ ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 COLTYP( NJ ) = 4 INDXP( K2 ) = NJ IF( J.EQ.N ) $ GO TO 100 ELSE PJ = NJ GO TO 80 END IF 70 CONTINUE 80 CONTINUE J = J + 1 NJ = INDX( J ) IF( J.GT.N ) $ GO TO 100 IF( RHO*ABS( Z( NJ ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 COLTYP( NJ ) = 4 INDXP( K2 ) = NJ ELSE * * Check if eigenvalues are close enough to allow deflation. * S = Z( PJ ) C = Z( NJ ) * * Find sqrt(a**2+b**2) without overflow or * destructive underflow. * TAU = DLAPY2( C, S ) T = D( NJ ) - D( PJ ) C = C / TAU S = -S / TAU IF( ABS( T*C*S ).LE.TOL ) THEN * * Deflation is possible. * Z( NJ ) = TAU Z( PJ ) = ZERO IF( COLTYP( NJ ).NE.COLTYP( PJ ) ) $ COLTYP( NJ ) = 2 COLTYP( PJ ) = 4 CALL DROT( N, Q( 1, PJ ), 1, Q( 1, NJ ), 1, C, S ) T = D( PJ )*C**2 + D( NJ )*S**2 D( NJ ) = D( PJ )*S**2 + D( NJ )*C**2 D( PJ ) = T K2 = K2 - 1 I = 1 90 CONTINUE IF( K2+I.LE.N ) THEN IF( D( PJ ).LT.D( INDXP( K2+I ) ) ) THEN INDXP( K2+I-1 ) = INDXP( K2+I ) INDXP( K2+I ) = PJ I = I + 1 GO TO 90 ELSE INDXP( K2+I-1 ) = PJ END IF ELSE INDXP( K2+I-1 ) = PJ END IF PJ = NJ ELSE K = K + 1 DLAMDA( K ) = D( PJ ) W( K ) = Z( PJ ) INDXP( K ) = PJ PJ = NJ END IF END IF GO TO 80 100 CONTINUE * * Record the last eigenvalue. * K = K + 1 DLAMDA( K ) = D( PJ ) W( K ) = Z( PJ ) INDXP( K ) = PJ * * Count up the total number of the various types of columns, then * form a permutation which positions the four column types into * four uniform groups (although one or more of these groups may be * empty). * DO 110 J = 1, 4 CTOT( J ) = 0 110 CONTINUE DO 120 J = 1, N CT = COLTYP( J ) CTOT( CT ) = CTOT( CT ) + 1 120 CONTINUE * * PSM(*) = Position in SubMatrix (of types 1 through 4) * PSM( 1 ) = 1 PSM( 2 ) = 1 + CTOT( 1 ) PSM( 3 ) = PSM( 2 ) + CTOT( 2 ) PSM( 4 ) = PSM( 3 ) + CTOT( 3 ) K = N - CTOT( 4 ) * * Fill out the INDXC array so that the permutation which it induces * will place all type-1 columns first, all type-2 columns next, * then all type-3's, and finally all type-4's. * DO 130 J = 1, N JS = INDXP( J ) CT = COLTYP( JS ) INDX( PSM( CT ) ) = JS INDXC( PSM( CT ) ) = J PSM( CT ) = PSM( CT ) + 1 130 CONTINUE * * Sort the eigenvalues and corresponding eigenvectors into DLAMDA * and Q2 respectively. The eigenvalues/vectors which were not * deflated go into the first K slots of DLAMDA and Q2 respectively, * while those which were deflated go into the last N - K slots. * I = 1 IQ1 = 1 IQ2 = 1 + ( CTOT( 1 )+CTOT( 2 ) )*N1 DO 140 J = 1, CTOT( 1 ) JS = INDX( I ) CALL DCOPY( N1, Q( 1, JS ), 1, Q2( IQ1 ), 1 ) Z( I ) = D( JS ) I = I + 1 IQ1 = IQ1 + N1 140 CONTINUE * DO 150 J = 1, CTOT( 2 ) JS = INDX( I ) CALL DCOPY( N1, Q( 1, JS ), 1, Q2( IQ1 ), 1 ) CALL DCOPY( N2, Q( N1+1, JS ), 1, Q2( IQ2 ), 1 ) Z( I ) = D( JS ) I = I + 1 IQ1 = IQ1 + N1 IQ2 = IQ2 + N2 150 CONTINUE * DO 160 J = 1, CTOT( 3 ) JS = INDX( I ) CALL DCOPY( N2, Q( N1+1, JS ), 1, Q2( IQ2 ), 1 ) Z( I ) = D( JS ) I = I + 1 IQ2 = IQ2 + N2 160 CONTINUE * IQ1 = IQ2 DO 170 J = 1, CTOT( 4 ) JS = INDX( I ) CALL DCOPY( N, Q( 1, JS ), 1, Q2( IQ2 ), 1 ) IQ2 = IQ2 + N Z( I ) = D( JS ) I = I + 1 170 CONTINUE * * The deflated eigenvalues and their corresponding vectors go back * into the last N - K slots of D and Q respectively. * IF( K.LT.N ) THEN CALL DLACPY( 'A', N, CTOT( 4 ), Q2( IQ1 ), N, $ Q( 1, K+1 ), LDQ ) CALL DCOPY( N-K, Z( K+1 ), 1, D( K+1 ), 1 ) END IF * * Copy CTOT into COLTYP for referencing in DLAED3. * DO 180 J = 1, 4 COLTYP( J ) = CTOT( J ) 180 CONTINUE * 190 CONTINUE RETURN * * End of DLAED2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaruv.f0000644000000000000000000000013214061636515015321 xustar0030 mtime=1623670093.371103925 30 atime=1623670093.371103925 30 ctime=1623670093.371103925 elk-7.2.42/src/LAPACK/dlaruv.f0000644002504400250440000004407214061636515017365 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARUV returns a vector of n random real numbers from a uniform distribution. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARUV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARUV( ISEED, N, X ) * * .. Scalar Arguments .. * INTEGER N * .. * .. Array Arguments .. * INTEGER ISEED( 4 ) * DOUBLE PRECISION X( N ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARUV returns a vector of n random real numbers from a uniform (0,1) *> distribution (n <= 128). *> *> This is an auxiliary routine called by DLARNV and ZLARNV. *> \endverbatim * * Arguments: * ========== * *> \param[in,out] ISEED *> \verbatim *> ISEED is INTEGER array, dimension (4) *> On entry, the seed of the random number generator; the array *> elements must be between 0 and 4095, and ISEED(4) must be *> odd. *> On exit, the seed is updated. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of random numbers to be generated. N <= 128. *> \endverbatim *> *> \param[out] X *> \verbatim *> X is DOUBLE PRECISION array, dimension (N) *> The generated random numbers. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> This routine uses a multiplicative congruential method with modulus *> 2**48 and multiplier 33952834046453 (see G.S.Fishman, *> 'Multiplicative congruential random number generators with modulus *> 2**b: an exhaustive analysis for b = 32 and a partial analysis for *> b = 48', Math. Comp. 189, pp 331-344, 1990). *> *> 48-bit integers are stored in 4 integer array elements with 12 bits *> per element. Hence the routine is portable across machines with *> integers of 32 bits or more. *> \endverbatim *> * ===================================================================== SUBROUTINE DLARUV( ISEED, N, X ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER N * .. * .. Array Arguments .. INTEGER ISEED( 4 ) DOUBLE PRECISION X( N ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) INTEGER LV, IPW2 DOUBLE PRECISION R PARAMETER ( LV = 128, IPW2 = 4096, R = ONE / IPW2 ) * .. * .. Local Scalars .. INTEGER I, I1, I2, I3, I4, IT1, IT2, IT3, IT4, J * .. * .. Local Arrays .. INTEGER MM( LV, 4 ) * .. * .. Intrinsic Functions .. INTRINSIC DBLE, MIN, MOD * .. * .. Data statements .. DATA ( MM( 1, J ), J = 1, 4 ) / 494, 322, 2508, $ 2549 / DATA ( MM( 2, J ), J = 1, 4 ) / 2637, 789, 3754, $ 1145 / DATA ( MM( 3, J ), J = 1, 4 ) / 255, 1440, 1766, $ 2253 / DATA ( MM( 4, J ), J = 1, 4 ) / 2008, 752, 3572, $ 305 / DATA ( MM( 5, J ), J = 1, 4 ) / 1253, 2859, 2893, $ 3301 / DATA ( MM( 6, J ), J = 1, 4 ) / 3344, 123, 307, $ 1065 / DATA ( MM( 7, J ), J = 1, 4 ) / 4084, 1848, 1297, $ 3133 / DATA ( MM( 8, J ), J = 1, 4 ) / 1739, 643, 3966, $ 2913 / DATA ( MM( 9, J ), J = 1, 4 ) / 3143, 2405, 758, $ 3285 / DATA ( MM( 10, J ), J = 1, 4 ) / 3468, 2638, 2598, $ 1241 / DATA ( MM( 11, J ), J = 1, 4 ) / 688, 2344, 3406, $ 1197 / DATA ( MM( 12, J ), J = 1, 4 ) / 1657, 46, 2922, $ 3729 / DATA ( MM( 13, J ), J = 1, 4 ) / 1238, 3814, 1038, $ 2501 / DATA ( MM( 14, J ), J = 1, 4 ) / 3166, 913, 2934, $ 1673 / DATA ( MM( 15, J ), J = 1, 4 ) / 1292, 3649, 2091, $ 541 / DATA ( MM( 16, J ), J = 1, 4 ) / 3422, 339, 2451, $ 2753 / DATA ( MM( 17, J ), J = 1, 4 ) / 1270, 3808, 1580, $ 949 / DATA ( MM( 18, J ), J = 1, 4 ) / 2016, 822, 1958, $ 2361 / DATA ( MM( 19, J ), J = 1, 4 ) / 154, 2832, 2055, $ 1165 / DATA ( MM( 20, J ), J = 1, 4 ) / 2862, 3078, 1507, $ 4081 / DATA ( MM( 21, J ), J = 1, 4 ) / 697, 3633, 1078, $ 2725 / DATA ( MM( 22, J ), J = 1, 4 ) / 1706, 2970, 3273, $ 3305 / DATA ( MM( 23, J ), J = 1, 4 ) / 491, 637, 17, $ 3069 / DATA ( MM( 24, J ), J = 1, 4 ) / 931, 2249, 854, $ 3617 / DATA ( MM( 25, J ), J = 1, 4 ) / 1444, 2081, 2916, $ 3733 / DATA ( MM( 26, J ), J = 1, 4 ) / 444, 4019, 3971, $ 409 / DATA ( MM( 27, J ), J = 1, 4 ) / 3577, 1478, 2889, $ 2157 / DATA ( MM( 28, J ), J = 1, 4 ) / 3944, 242, 3831, $ 1361 / DATA ( MM( 29, J ), J = 1, 4 ) / 2184, 481, 2621, $ 3973 / DATA ( MM( 30, J ), J = 1, 4 ) / 1661, 2075, 1541, $ 1865 / DATA ( MM( 31, J ), J = 1, 4 ) / 3482, 4058, 893, $ 2525 / DATA ( MM( 32, J ), J = 1, 4 ) / 657, 622, 736, $ 1409 / DATA ( MM( 33, J ), J = 1, 4 ) / 3023, 3376, 3992, $ 3445 / DATA ( MM( 34, J ), J = 1, 4 ) / 3618, 812, 787, $ 3577 / DATA ( MM( 35, J ), J = 1, 4 ) / 1267, 234, 2125, $ 77 / DATA ( MM( 36, J ), J = 1, 4 ) / 1828, 641, 2364, $ 3761 / DATA ( MM( 37, J ), J = 1, 4 ) / 164, 4005, 2460, $ 2149 / DATA ( MM( 38, J ), J = 1, 4 ) / 3798, 1122, 257, $ 1449 / DATA ( MM( 39, J ), J = 1, 4 ) / 3087, 3135, 1574, $ 3005 / DATA ( MM( 40, J ), J = 1, 4 ) / 2400, 2640, 3912, $ 225 / DATA ( MM( 41, J ), J = 1, 4 ) / 2870, 2302, 1216, $ 85 / DATA ( MM( 42, J ), J = 1, 4 ) / 3876, 40, 3248, $ 3673 / DATA ( MM( 43, J ), J = 1, 4 ) / 1905, 1832, 3401, $ 3117 / DATA ( MM( 44, J ), J = 1, 4 ) / 1593, 2247, 2124, $ 3089 / DATA ( MM( 45, J ), J = 1, 4 ) / 1797, 2034, 2762, $ 1349 / DATA ( MM( 46, J ), J = 1, 4 ) / 1234, 2637, 149, $ 2057 / DATA ( MM( 47, J ), J = 1, 4 ) / 3460, 1287, 2245, $ 413 / DATA ( MM( 48, J ), J = 1, 4 ) / 328, 1691, 166, $ 65 / DATA ( MM( 49, J ), J = 1, 4 ) / 2861, 496, 466, $ 1845 / DATA ( MM( 50, J ), J = 1, 4 ) / 1950, 1597, 4018, $ 697 / DATA ( MM( 51, J ), J = 1, 4 ) / 617, 2394, 1399, $ 3085 / DATA ( MM( 52, J ), J = 1, 4 ) / 2070, 2584, 190, $ 3441 / DATA ( MM( 53, J ), J = 1, 4 ) / 3331, 1843, 2879, $ 1573 / DATA ( MM( 54, J ), J = 1, 4 ) / 769, 336, 153, $ 3689 / DATA ( MM( 55, J ), J = 1, 4 ) / 1558, 1472, 2320, $ 2941 / DATA ( MM( 56, J ), J = 1, 4 ) / 2412, 2407, 18, $ 929 / DATA ( MM( 57, J ), J = 1, 4 ) / 2800, 433, 712, $ 533 / DATA ( MM( 58, J ), J = 1, 4 ) / 189, 2096, 2159, $ 2841 / DATA ( MM( 59, J ), J = 1, 4 ) / 287, 1761, 2318, $ 4077 / DATA ( MM( 60, J ), J = 1, 4 ) / 2045, 2810, 2091, $ 721 / DATA ( MM( 61, J ), J = 1, 4 ) / 1227, 566, 3443, $ 2821 / DATA ( MM( 62, J ), J = 1, 4 ) / 2838, 442, 1510, $ 2249 / DATA ( MM( 63, J ), J = 1, 4 ) / 209, 41, 449, $ 2397 / DATA ( MM( 64, J ), J = 1, 4 ) / 2770, 1238, 1956, $ 2817 / DATA ( MM( 65, J ), J = 1, 4 ) / 3654, 1086, 2201, $ 245 / DATA ( MM( 66, J ), J = 1, 4 ) / 3993, 603, 3137, $ 1913 / DATA ( MM( 67, J ), J = 1, 4 ) / 192, 840, 3399, $ 1997 / DATA ( MM( 68, J ), J = 1, 4 ) / 2253, 3168, 1321, $ 3121 / DATA ( MM( 69, J ), J = 1, 4 ) / 3491, 1499, 2271, $ 997 / DATA ( MM( 70, J ), J = 1, 4 ) / 2889, 1084, 3667, $ 1833 / DATA ( MM( 71, J ), J = 1, 4 ) / 2857, 3438, 2703, $ 2877 / DATA ( MM( 72, J ), J = 1, 4 ) / 2094, 2408, 629, $ 1633 / DATA ( MM( 73, J ), J = 1, 4 ) / 1818, 1589, 2365, $ 981 / DATA ( MM( 74, J ), J = 1, 4 ) / 688, 2391, 2431, $ 2009 / DATA ( MM( 75, J ), J = 1, 4 ) / 1407, 288, 1113, $ 941 / DATA ( MM( 76, J ), J = 1, 4 ) / 634, 26, 3922, $ 2449 / DATA ( MM( 77, J ), J = 1, 4 ) / 3231, 512, 2554, $ 197 / DATA ( MM( 78, J ), J = 1, 4 ) / 815, 1456, 184, $ 2441 / DATA ( MM( 79, J ), J = 1, 4 ) / 3524, 171, 2099, $ 285 / DATA ( MM( 80, J ), J = 1, 4 ) / 1914, 1677, 3228, $ 1473 / DATA ( MM( 81, J ), J = 1, 4 ) / 516, 2657, 4012, $ 2741 / DATA ( MM( 82, J ), J = 1, 4 ) / 164, 2270, 1921, $ 3129 / DATA ( MM( 83, J ), J = 1, 4 ) / 303, 2587, 3452, $ 909 / DATA ( MM( 84, J ), J = 1, 4 ) / 2144, 2961, 3901, $ 2801 / DATA ( MM( 85, J ), J = 1, 4 ) / 3480, 1970, 572, $ 421 / DATA ( MM( 86, J ), J = 1, 4 ) / 119, 1817, 3309, $ 4073 / DATA ( MM( 87, J ), J = 1, 4 ) / 3357, 676, 3171, $ 2813 / DATA ( MM( 88, J ), J = 1, 4 ) / 837, 1410, 817, $ 2337 / DATA ( MM( 89, J ), J = 1, 4 ) / 2826, 3723, 3039, $ 1429 / DATA ( MM( 90, J ), J = 1, 4 ) / 2332, 2803, 1696, $ 1177 / DATA ( MM( 91, J ), J = 1, 4 ) / 2089, 3185, 1256, $ 1901 / DATA ( MM( 92, J ), J = 1, 4 ) / 3780, 184, 3715, $ 81 / DATA ( MM( 93, J ), J = 1, 4 ) / 1700, 663, 2077, $ 1669 / DATA ( MM( 94, J ), J = 1, 4 ) / 3712, 499, 3019, $ 2633 / DATA ( MM( 95, J ), J = 1, 4 ) / 150, 3784, 1497, $ 2269 / DATA ( MM( 96, J ), J = 1, 4 ) / 2000, 1631, 1101, $ 129 / DATA ( MM( 97, J ), J = 1, 4 ) / 3375, 1925, 717, $ 1141 / DATA ( MM( 98, J ), J = 1, 4 ) / 1621, 3912, 51, $ 249 / DATA ( MM( 99, J ), J = 1, 4 ) / 3090, 1398, 981, $ 3917 / DATA ( MM( 100, J ), J = 1, 4 ) / 3765, 1349, 1978, $ 2481 / DATA ( MM( 101, J ), J = 1, 4 ) / 1149, 1441, 1813, $ 3941 / DATA ( MM( 102, J ), J = 1, 4 ) / 3146, 2224, 3881, $ 2217 / DATA ( MM( 103, J ), J = 1, 4 ) / 33, 2411, 76, $ 2749 / DATA ( MM( 104, J ), J = 1, 4 ) / 3082, 1907, 3846, $ 3041 / DATA ( MM( 105, J ), J = 1, 4 ) / 2741, 3192, 3694, $ 1877 / DATA ( MM( 106, J ), J = 1, 4 ) / 359, 2786, 1682, $ 345 / DATA ( MM( 107, J ), J = 1, 4 ) / 3316, 382, 124, $ 2861 / DATA ( MM( 108, J ), J = 1, 4 ) / 1749, 37, 1660, $ 1809 / DATA ( MM( 109, J ), J = 1, 4 ) / 185, 759, 3997, $ 3141 / DATA ( MM( 110, J ), J = 1, 4 ) / 2784, 2948, 479, $ 2825 / DATA ( MM( 111, J ), J = 1, 4 ) / 2202, 1862, 1141, $ 157 / DATA ( MM( 112, J ), J = 1, 4 ) / 2199, 3802, 886, $ 2881 / DATA ( MM( 113, J ), J = 1, 4 ) / 1364, 2423, 3514, $ 3637 / DATA ( MM( 114, J ), J = 1, 4 ) / 1244, 2051, 1301, $ 1465 / DATA ( MM( 115, J ), J = 1, 4 ) / 2020, 2295, 3604, $ 2829 / DATA ( MM( 116, J ), J = 1, 4 ) / 3160, 1332, 1888, $ 2161 / DATA ( MM( 117, J ), J = 1, 4 ) / 2785, 1832, 1836, $ 3365 / DATA ( MM( 118, J ), J = 1, 4 ) / 2772, 2405, 1990, $ 361 / DATA ( MM( 119, J ), J = 1, 4 ) / 1217, 3638, 2058, $ 2685 / DATA ( MM( 120, J ), J = 1, 4 ) / 1822, 3661, 692, $ 3745 / DATA ( MM( 121, J ), J = 1, 4 ) / 1245, 327, 1194, $ 2325 / DATA ( MM( 122, J ), J = 1, 4 ) / 2252, 3660, 20, $ 3609 / DATA ( MM( 123, J ), J = 1, 4 ) / 3904, 716, 3285, $ 3821 / DATA ( MM( 124, J ), J = 1, 4 ) / 2774, 1842, 2046, $ 3537 / DATA ( MM( 125, J ), J = 1, 4 ) / 997, 3987, 2107, $ 517 / DATA ( MM( 126, J ), J = 1, 4 ) / 2573, 1368, 3508, $ 3017 / DATA ( MM( 127, J ), J = 1, 4 ) / 1148, 1848, 3525, $ 2141 / DATA ( MM( 128, J ), J = 1, 4 ) / 545, 2366, 3801, $ 1537 / * .. * .. Executable Statements .. * I1 = ISEED( 1 ) I2 = ISEED( 2 ) I3 = ISEED( 3 ) I4 = ISEED( 4 ) * DO 10 I = 1, MIN( N, LV ) * 20 CONTINUE * * Multiply the seed by i-th power of the multiplier modulo 2**48 * IT4 = I4*MM( I, 4 ) IT3 = IT4 / IPW2 IT4 = IT4 - IPW2*IT3 IT3 = IT3 + I3*MM( I, 4 ) + I4*MM( I, 3 ) IT2 = IT3 / IPW2 IT3 = IT3 - IPW2*IT2 IT2 = IT2 + I2*MM( I, 4 ) + I3*MM( I, 3 ) + I4*MM( I, 2 ) IT1 = IT2 / IPW2 IT2 = IT2 - IPW2*IT1 IT1 = IT1 + I1*MM( I, 4 ) + I2*MM( I, 3 ) + I3*MM( I, 2 ) + $ I4*MM( I, 1 ) IT1 = MOD( IT1, IPW2 ) * * Convert 48-bit integer to a real number in the interval (0,1) * X( I ) = R*( DBLE( IT1 )+R*( DBLE( IT2 )+R*( DBLE( IT3 )+R* $ DBLE( IT4 ) ) ) ) * IF (X( I ).EQ.1.0D0) THEN * If a real number has n bits of precision, and the first * n bits of the 48-bit integer above happen to be all 1 (which * will occur about once every 2**n calls), then X( I ) will * be rounded to exactly 1.0. * Since X( I ) is not supposed to return exactly 0.0 or 1.0, * the statistically correct thing to do in this situation is * simply to iterate again. * N.B. the case X( I ) = 0.0 should not be possible. I1 = I1 + 2 I2 = I2 + 2 I3 = I3 + 2 I4 = I4 + 2 GOTO 20 END IF * 10 CONTINUE * * Return final value of seed * ISEED( 1 ) = IT1 ISEED( 2 ) = IT2 ISEED( 3 ) = IT3 ISEED( 4 ) = IT4 RETURN * * End of DLARUV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq2.f0000644000000000000000000000013214061636515015212 xustar0030 mtime=1623670093.374103922 30 atime=1623670093.373103923 30 ctime=1623670093.374103922 elk-7.2.42/src/LAPACK/dlasq2.f0000644002504400250440000004116714061636515017260 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ2 computes all the eigenvalues of the symmetric positive definite tridiagonal matrix associated with the qd Array Z to high relative accuracy. Used by sbdsqr and sstegr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ2( N, Z, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, N * .. * .. Array Arguments .. * DOUBLE PRECISION Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ2 computes all the eigenvalues of the symmetric positive *> definite tridiagonal matrix associated with the qd array Z to high *> relative accuracy are computed to high relative accuracy, in the *> absence of denormalization, underflow and overflow. *> *> To see the relation of Z to the tridiagonal matrix, let L be a *> unit lower bidiagonal matrix with subdiagonals Z(2,4,6,,..) and *> let U be an upper bidiagonal matrix with 1's above and diagonal *> Z(1,3,5,,..). The tridiagonal is L*U or, if you prefer, the *> symmetric tridiagonal to which it is similar. *> *> Note : DLASQ2 defines a logical variable, IEEE, which is true *> on machines which follow ieee-754 floating-point standard in their *> handling of infinities and NaNs, and false otherwise. This variable *> is passed to DLASQ3. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of rows and columns in the matrix. N >= 0. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N ) *> On entry Z holds the qd array. On exit, entries 1 to N hold *> the eigenvalues in decreasing order, Z( 2*N+1 ) holds the *> trace, and Z( 2*N+2 ) holds the sum of the eigenvalues. If *> N > 2, then Z( 2*N+3 ) holds the iteration count, Z( 2*N+4 ) *> holds NDIVS/NIN^2, and Z( 2*N+5 ) holds the percentage of *> shifts that failed. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if the i-th argument is a scalar and had an illegal *> value, then INFO = -i, if the i-th argument is an *> array and the j-entry had an illegal value, then *> INFO = -(i*100+j) *> > 0: the algorithm failed *> = 1, a split was marked by a positive value in E *> = 2, current block of Z not diagonalized after 100*N *> iterations (in inner while loop). On exit Z holds *> a qd array with the same eigenvalues as the given Z. *> = 3, termination criterion of outer while loop not met *> (program created more than N unreduced blocks) *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> Local Variables: I0:N0 defines a current unreduced segment of Z. *> The shifts are accumulated in SIGMA. Iteration count is in ITER. *> Ping-pong is controlled by PP (alternates between 0 and 1). *> \endverbatim *> * ===================================================================== SUBROUTINE DLASQ2( N, Z, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, N * .. * .. Array Arguments .. DOUBLE PRECISION Z( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION CBIAS PARAMETER ( CBIAS = 1.50D0 ) DOUBLE PRECISION ZERO, HALF, ONE, TWO, FOUR, HUNDRD PARAMETER ( ZERO = 0.0D0, HALF = 0.5D0, ONE = 1.0D0, $ TWO = 2.0D0, FOUR = 4.0D0, HUNDRD = 100.0D0 ) * .. * .. Local Scalars .. LOGICAL IEEE INTEGER I0, I1, I4, IINFO, IPN4, ITER, IWHILA, IWHILB, $ K, KMIN, N0, N1, NBIG, NDIV, NFAIL, PP, SPLT, $ TTYPE DOUBLE PRECISION D, DEE, DEEMIN, DESIG, DMIN, DMIN1, DMIN2, DN, $ DN1, DN2, E, EMAX, EMIN, EPS, G, OLDEMN, QMAX, $ QMIN, S, SAFMIN, SIGMA, T, TAU, TEMP, TOL, $ TOL2, TRACE, ZMAX, TEMPE, TEMPQ * .. * .. External Subroutines .. EXTERNAL DLASQ3, DLASRT, XERBLA * .. * .. External Functions .. INTEGER ILAENV DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH, ILAENV * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input arguments. * (in case DLASQ2 is not called by DLASQ1) * INFO = 0 EPS = DLAMCH( 'Precision' ) SAFMIN = DLAMCH( 'Safe minimum' ) TOL = EPS*HUNDRD TOL2 = TOL**2 * IF( N.LT.0 ) THEN INFO = -1 CALL XERBLA( 'DLASQ2', 1 ) RETURN ELSE IF( N.EQ.0 ) THEN RETURN ELSE IF( N.EQ.1 ) THEN * * 1-by-1 case. * IF( Z( 1 ).LT.ZERO ) THEN INFO = -201 CALL XERBLA( 'DLASQ2', 2 ) END IF RETURN ELSE IF( N.EQ.2 ) THEN * * 2-by-2 case. * IF( Z( 2 ).LT.ZERO .OR. Z( 3 ).LT.ZERO ) THEN INFO = -2 CALL XERBLA( 'DLASQ2', 2 ) RETURN ELSE IF( Z( 3 ).GT.Z( 1 ) ) THEN D = Z( 3 ) Z( 3 ) = Z( 1 ) Z( 1 ) = D END IF Z( 5 ) = Z( 1 ) + Z( 2 ) + Z( 3 ) IF( Z( 2 ).GT.Z( 3 )*TOL2 ) THEN T = HALF*( ( Z( 1 )-Z( 3 ) )+Z( 2 ) ) S = Z( 3 )*( Z( 2 ) / T ) IF( S.LE.T ) THEN S = Z( 3 )*( Z( 2 ) / ( T*( ONE+SQRT( ONE+S / T ) ) ) ) ELSE S = Z( 3 )*( Z( 2 ) / ( T+SQRT( T )*SQRT( T+S ) ) ) END IF T = Z( 1 ) + ( S+Z( 2 ) ) Z( 3 ) = Z( 3 )*( Z( 1 ) / T ) Z( 1 ) = T END IF Z( 2 ) = Z( 3 ) Z( 6 ) = Z( 2 ) + Z( 1 ) RETURN END IF * * Check for negative data and compute sums of q's and e's. * Z( 2*N ) = ZERO EMIN = Z( 2 ) QMAX = ZERO ZMAX = ZERO D = ZERO E = ZERO * DO 10 K = 1, 2*( N-1 ), 2 IF( Z( K ).LT.ZERO ) THEN INFO = -( 200+K ) CALL XERBLA( 'DLASQ2', 2 ) RETURN ELSE IF( Z( K+1 ).LT.ZERO ) THEN INFO = -( 200+K+1 ) CALL XERBLA( 'DLASQ2', 2 ) RETURN END IF D = D + Z( K ) E = E + Z( K+1 ) QMAX = MAX( QMAX, Z( K ) ) EMIN = MIN( EMIN, Z( K+1 ) ) ZMAX = MAX( QMAX, ZMAX, Z( K+1 ) ) 10 CONTINUE IF( Z( 2*N-1 ).LT.ZERO ) THEN INFO = -( 200+2*N-1 ) CALL XERBLA( 'DLASQ2', 2 ) RETURN END IF D = D + Z( 2*N-1 ) QMAX = MAX( QMAX, Z( 2*N-1 ) ) ZMAX = MAX( QMAX, ZMAX ) * * Check for diagonality. * IF( E.EQ.ZERO ) THEN DO 20 K = 2, N Z( K ) = Z( 2*K-1 ) 20 CONTINUE CALL DLASRT( 'D', N, Z, IINFO ) Z( 2*N-1 ) = D RETURN END IF * TRACE = D + E * * Check for zero data. * IF( TRACE.EQ.ZERO ) THEN Z( 2*N-1 ) = ZERO RETURN END IF * * Check whether the machine is IEEE conformable. * IEEE = ILAENV( 10, 'DLASQ2', 'N', 1, 2, 3, 4 ).EQ.1 .AND. $ ILAENV( 11, 'DLASQ2', 'N', 1, 2, 3, 4 ).EQ.1 * * Rearrange data for locality: Z=(q1,qq1,e1,ee1,q2,qq2,e2,ee2,...). * DO 30 K = 2*N, 2, -2 Z( 2*K ) = ZERO Z( 2*K-1 ) = Z( K ) Z( 2*K-2 ) = ZERO Z( 2*K-3 ) = Z( K-1 ) 30 CONTINUE * I0 = 1 N0 = N * * Reverse the qd-array, if warranted. * IF( CBIAS*Z( 4*I0-3 ).LT.Z( 4*N0-3 ) ) THEN IPN4 = 4*( I0+N0 ) DO 40 I4 = 4*I0, 2*( I0+N0-1 ), 4 TEMP = Z( I4-3 ) Z( I4-3 ) = Z( IPN4-I4-3 ) Z( IPN4-I4-3 ) = TEMP TEMP = Z( I4-1 ) Z( I4-1 ) = Z( IPN4-I4-5 ) Z( IPN4-I4-5 ) = TEMP 40 CONTINUE END IF * * Initial split checking via dqd and Li's test. * PP = 0 * DO 80 K = 1, 2 * D = Z( 4*N0+PP-3 ) DO 50 I4 = 4*( N0-1 ) + PP, 4*I0 + PP, -4 IF( Z( I4-1 ).LE.TOL2*D ) THEN Z( I4-1 ) = -ZERO D = Z( I4-3 ) ELSE D = Z( I4-3 )*( D / ( D+Z( I4-1 ) ) ) END IF 50 CONTINUE * * dqd maps Z to ZZ plus Li's test. * EMIN = Z( 4*I0+PP+1 ) D = Z( 4*I0+PP-3 ) DO 60 I4 = 4*I0 + PP, 4*( N0-1 ) + PP, 4 Z( I4-2*PP-2 ) = D + Z( I4-1 ) IF( Z( I4-1 ).LE.TOL2*D ) THEN Z( I4-1 ) = -ZERO Z( I4-2*PP-2 ) = D Z( I4-2*PP ) = ZERO D = Z( I4+1 ) ELSE IF( SAFMIN*Z( I4+1 ).LT.Z( I4-2*PP-2 ) .AND. $ SAFMIN*Z( I4-2*PP-2 ).LT.Z( I4+1 ) ) THEN TEMP = Z( I4+1 ) / Z( I4-2*PP-2 ) Z( I4-2*PP ) = Z( I4-1 )*TEMP D = D*TEMP ELSE Z( I4-2*PP ) = Z( I4+1 )*( Z( I4-1 ) / Z( I4-2*PP-2 ) ) D = Z( I4+1 )*( D / Z( I4-2*PP-2 ) ) END IF EMIN = MIN( EMIN, Z( I4-2*PP ) ) 60 CONTINUE Z( 4*N0-PP-2 ) = D * * Now find qmax. * QMAX = Z( 4*I0-PP-2 ) DO 70 I4 = 4*I0 - PP + 2, 4*N0 - PP - 2, 4 QMAX = MAX( QMAX, Z( I4 ) ) 70 CONTINUE * * Prepare for the next iteration on K. * PP = 1 - PP 80 CONTINUE * * Initialise variables to pass to DLASQ3. * TTYPE = 0 DMIN1 = ZERO DMIN2 = ZERO DN = ZERO DN1 = ZERO DN2 = ZERO G = ZERO TAU = ZERO * ITER = 2 NFAIL = 0 NDIV = 2*( N0-I0 ) * DO 160 IWHILA = 1, N + 1 IF( N0.LT.1 ) $ GO TO 170 * * While array unfinished do * * E(N0) holds the value of SIGMA when submatrix in I0:N0 * splits from the rest of the array, but is negated. * DESIG = ZERO IF( N0.EQ.N ) THEN SIGMA = ZERO ELSE SIGMA = -Z( 4*N0-1 ) END IF IF( SIGMA.LT.ZERO ) THEN INFO = 1 RETURN END IF * * Find last unreduced submatrix's top index I0, find QMAX and * EMIN. Find Gershgorin-type bound if Q's much greater than E's. * EMAX = ZERO IF( N0.GT.I0 ) THEN EMIN = ABS( Z( 4*N0-5 ) ) ELSE EMIN = ZERO END IF QMIN = Z( 4*N0-3 ) QMAX = QMIN DO 90 I4 = 4*N0, 8, -4 IF( Z( I4-5 ).LE.ZERO ) $ GO TO 100 IF( QMIN.GE.FOUR*EMAX ) THEN QMIN = MIN( QMIN, Z( I4-3 ) ) EMAX = MAX( EMAX, Z( I4-5 ) ) END IF QMAX = MAX( QMAX, Z( I4-7 )+Z( I4-5 ) ) EMIN = MIN( EMIN, Z( I4-5 ) ) 90 CONTINUE I4 = 4 * 100 CONTINUE I0 = I4 / 4 PP = 0 * IF( N0-I0.GT.1 ) THEN DEE = Z( 4*I0-3 ) DEEMIN = DEE KMIN = I0 DO 110 I4 = 4*I0+1, 4*N0-3, 4 DEE = Z( I4 )*( DEE /( DEE+Z( I4-2 ) ) ) IF( DEE.LE.DEEMIN ) THEN DEEMIN = DEE KMIN = ( I4+3 )/4 END IF 110 CONTINUE IF( (KMIN-I0)*2.LT.N0-KMIN .AND. $ DEEMIN.LE.HALF*Z(4*N0-3) ) THEN IPN4 = 4*( I0+N0 ) PP = 2 DO 120 I4 = 4*I0, 2*( I0+N0-1 ), 4 TEMP = Z( I4-3 ) Z( I4-3 ) = Z( IPN4-I4-3 ) Z( IPN4-I4-3 ) = TEMP TEMP = Z( I4-2 ) Z( I4-2 ) = Z( IPN4-I4-2 ) Z( IPN4-I4-2 ) = TEMP TEMP = Z( I4-1 ) Z( I4-1 ) = Z( IPN4-I4-5 ) Z( IPN4-I4-5 ) = TEMP TEMP = Z( I4 ) Z( I4 ) = Z( IPN4-I4-4 ) Z( IPN4-I4-4 ) = TEMP 120 CONTINUE END IF END IF * * Put -(initial shift) into DMIN. * DMIN = -MAX( ZERO, QMIN-TWO*SQRT( QMIN )*SQRT( EMAX ) ) * * Now I0:N0 is unreduced. * PP = 0 for ping, PP = 1 for pong. * PP = 2 indicates that flipping was applied to the Z array and * and that the tests for deflation upon entry in DLASQ3 * should not be performed. * NBIG = 100*( N0-I0+1 ) DO 140 IWHILB = 1, NBIG IF( I0.GT.N0 ) $ GO TO 150 * * While submatrix unfinished take a good dqds step. * CALL DLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX, NFAIL, $ ITER, NDIV, IEEE, TTYPE, DMIN1, DMIN2, DN, DN1, $ DN2, G, TAU ) * PP = 1 - PP * * When EMIN is very small check for splits. * IF( PP.EQ.0 .AND. N0-I0.GE.3 ) THEN IF( Z( 4*N0 ).LE.TOL2*QMAX .OR. $ Z( 4*N0-1 ).LE.TOL2*SIGMA ) THEN SPLT = I0 - 1 QMAX = Z( 4*I0-3 ) EMIN = Z( 4*I0-1 ) OLDEMN = Z( 4*I0 ) DO 130 I4 = 4*I0, 4*( N0-3 ), 4 IF( Z( I4 ).LE.TOL2*Z( I4-3 ) .OR. $ Z( I4-1 ).LE.TOL2*SIGMA ) THEN Z( I4-1 ) = -SIGMA SPLT = I4 / 4 QMAX = ZERO EMIN = Z( I4+3 ) OLDEMN = Z( I4+4 ) ELSE QMAX = MAX( QMAX, Z( I4+1 ) ) EMIN = MIN( EMIN, Z( I4-1 ) ) OLDEMN = MIN( OLDEMN, Z( I4 ) ) END IF 130 CONTINUE Z( 4*N0-1 ) = EMIN Z( 4*N0 ) = OLDEMN I0 = SPLT + 1 END IF END IF * 140 CONTINUE * INFO = 2 * * Maximum number of iterations exceeded, restore the shift * SIGMA and place the new d's and e's in a qd array. * This might need to be done for several blocks * I1 = I0 N1 = N0 145 CONTINUE TEMPQ = Z( 4*I0-3 ) Z( 4*I0-3 ) = Z( 4*I0-3 ) + SIGMA DO K = I0+1, N0 TEMPE = Z( 4*K-5 ) Z( 4*K-5 ) = Z( 4*K-5 ) * (TEMPQ / Z( 4*K-7 )) TEMPQ = Z( 4*K-3 ) Z( 4*K-3 ) = Z( 4*K-3 ) + SIGMA + TEMPE - Z( 4*K-5 ) END DO * * Prepare to do this on the previous block if there is one * IF( I1.GT.1 ) THEN N1 = I1-1 DO WHILE( ( I1.GE.2 ) .AND. ( Z(4*I1-5).GE.ZERO ) ) I1 = I1 - 1 END DO SIGMA = -Z(4*N1-1) GO TO 145 END IF DO K = 1, N Z( 2*K-1 ) = Z( 4*K-3 ) * * Only the block 1..N0 is unfinished. The rest of the e's * must be essentially zero, although sometimes other data * has been stored in them. * IF( K.LT.N0 ) THEN Z( 2*K ) = Z( 4*K-1 ) ELSE Z( 2*K ) = 0 END IF END DO RETURN * * end IWHILB * 150 CONTINUE * 160 CONTINUE * INFO = 3 RETURN * * end IWHILA * 170 CONTINUE * * Move q's to the front. * DO 180 K = 2, N Z( K ) = Z( 4*K-3 ) 180 CONTINUE * * Sort and compute sum of eigenvalues. * CALL DLASRT( 'D', N, Z, IINFO ) * E = ZERO DO 190 K = N, 1, -1 E = E + Z( K ) 190 CONTINUE * * Store trace, sum(eigenvalues) and information on performance. * Z( 2*N+1 ) = TRACE Z( 2*N+2 ) = E Z( 2*N+3 ) = DBLE( ITER ) Z( 2*N+4 ) = DBLE( NDIV ) / DBLE( N**2 ) Z( 2*N+5 ) = HUNDRD*NFAIL / DBLE( ITER ) RETURN * * End of DLASQ2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlarfg.f0000644000000000000000000000013214061636515015263 xustar0030 mtime=1623670093.375103921 30 atime=1623670093.375103921 30 ctime=1623670093.375103921 elk-7.2.42/src/LAPACK/dlarfg.f0000644002504400250440000001162014061636515017320 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARFG generates an elementary reflector (Householder matrix). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARFG + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARFG( N, ALPHA, X, INCX, TAU ) * * .. Scalar Arguments .. * INTEGER INCX, N * DOUBLE PRECISION ALPHA, TAU * .. * .. Array Arguments .. * DOUBLE PRECISION X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARFG generates a real elementary reflector H of order n, such *> that *> *> H * ( alpha ) = ( beta ), H**T * H = I. *> ( x ) ( 0 ) *> *> where alpha and beta are scalars, and x is an (n-1)-element real *> vector. H is represented in the form *> *> H = I - tau * ( 1 ) * ( 1 v**T ) , *> ( v ) *> *> where tau is a real scalar and v is a real (n-1)-element *> vector. *> *> If the elements of x are all zero, then tau = 0 and H is taken to be *> the unit matrix. *> *> Otherwise 1 <= tau <= 2. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the elementary reflector. *> \endverbatim *> *> \param[in,out] ALPHA *> \verbatim *> ALPHA is DOUBLE PRECISION *> On entry, the value alpha. *> On exit, it is overwritten with the value beta. *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is DOUBLE PRECISION array, dimension *> (1+(N-2)*abs(INCX)) *> On entry, the vector x. *> On exit, it is overwritten with the vector v. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between elements of X. INCX > 0. *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> The value tau. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date November 2017 * *> \ingroup doubleOTHERauxiliary * * ===================================================================== SUBROUTINE DLARFG( N, ALPHA, X, INCX, TAU ) * * -- LAPACK auxiliary routine (version 3.8.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * November 2017 * * .. Scalar Arguments .. INTEGER INCX, N DOUBLE PRECISION ALPHA, TAU * .. * .. Array Arguments .. DOUBLE PRECISION X( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER J, KNT DOUBLE PRECISION BETA, RSAFMN, SAFMIN, XNORM * .. * .. External Functions .. DOUBLE PRECISION DLAMCH, DLAPY2, DNRM2 EXTERNAL DLAMCH, DLAPY2, DNRM2 * .. * .. Intrinsic Functions .. INTRINSIC ABS, SIGN * .. * .. External Subroutines .. EXTERNAL DSCAL * .. * .. Executable Statements .. * IF( N.LE.1 ) THEN TAU = ZERO RETURN END IF * XNORM = DNRM2( N-1, X, INCX ) * IF( XNORM.EQ.ZERO ) THEN * * H = I * TAU = ZERO ELSE * * general case * BETA = -SIGN( DLAPY2( ALPHA, XNORM ), ALPHA ) SAFMIN = DLAMCH( 'S' ) / DLAMCH( 'E' ) KNT = 0 IF( ABS( BETA ).LT.SAFMIN ) THEN * * XNORM, BETA may be inaccurate; scale X and recompute them * RSAFMN = ONE / SAFMIN 10 CONTINUE KNT = KNT + 1 CALL DSCAL( N-1, RSAFMN, X, INCX ) BETA = BETA*RSAFMN ALPHA = ALPHA*RSAFMN IF( (ABS( BETA ).LT.SAFMIN) .AND. (KNT .LT. 20) ) $ GO TO 10 * * New BETA is at most 1, at least SAFMIN * XNORM = DNRM2( N-1, X, INCX ) BETA = -SIGN( DLAPY2( ALPHA, XNORM ), ALPHA ) END IF TAU = ( BETA-ALPHA ) / BETA CALL DSCAL( N-1, ONE / ( ALPHA-BETA ), X, INCX ) * * If ALPHA is subnormal, it may lose relative accuracy * DO 20 J = 1, KNT BETA = BETA*SAFMIN 20 CONTINUE ALPHA = BETA END IF * RETURN * * End of DLARFG * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorg2l.f0000644000000000000000000000012714061636515015221 xustar0029 mtime=1623670093.37710392 29 atime=1623670093.37710392 29 ctime=1623670093.37710392 elk-7.2.42/src/LAPACK/dorg2l.f0000644002504400250440000001220614061636515017253 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORG2L generates all or part of the orthogonal matrix Q from a QL factorization determined by sgeqlf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORG2L + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORG2L( M, N, K, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORG2L generates an m by n real matrix Q with orthonormal columns, *> which is defined as the last n columns of a product of k elementary *> reflectors of order m *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by DGEQLF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the (n-k+i)-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by DGEQLF in the last k columns of its array *> argument A. *> On exit, the m by n matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQLF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORG2L( M, N, K, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, II, J, L * .. * .. External Subroutines .. EXTERNAL DLARF, DSCAL, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORG2L', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * * Initialise columns 1:n-k to columns of the unit matrix * DO 20 J = 1, N - K DO 10 L = 1, M A( L, J ) = ZERO 10 CONTINUE A( M-N+J, J ) = ONE 20 CONTINUE * DO 40 I = 1, K II = N - K + I * * Apply H(i) to A(1:m-k+i,1:n-k+i) from the left * A( M-N+II, II ) = ONE CALL DLARF( 'Left', M-N+II, II-1, A( 1, II ), 1, TAU( I ), A, $ LDA, WORK ) CALL DSCAL( M-N+II-1, -TAU( I ), A( 1, II ), 1 ) A( M-N+II, II ) = ONE - TAU( I ) * * Set A(m-k+i+1:m,n-k+i) to zero * DO 30 L = M - N + II + 1, M A( L, II ) = ZERO 30 CONTINUE 40 CONTINUE RETURN * * End of DORG2L * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlarft.f0000644000000000000000000000013214061636515015300 xustar0030 mtime=1623670093.379103918 30 atime=1623670093.379103918 30 ctime=1623670093.379103918 elk-7.2.42/src/LAPACK/dlarft.f0000644002504400250440000002402614061636515017341 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARFT forms the triangular factor T of a block reflector H = I - vtvH * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARFT + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARFT( DIRECT, STOREV, N, K, V, LDV, TAU, T, LDT ) * * .. Scalar Arguments .. * CHARACTER DIRECT, STOREV * INTEGER K, LDT, LDV, N * .. * .. Array Arguments .. * DOUBLE PRECISION T( LDT, * ), TAU( * ), V( LDV, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARFT forms the triangular factor T of a real block reflector H *> of order n, which is defined as a product of k elementary reflectors. *> *> If DIRECT = 'F', H = H(1) H(2) . . . H(k) and T is upper triangular; *> *> If DIRECT = 'B', H = H(k) . . . H(2) H(1) and T is lower triangular. *> *> If STOREV = 'C', the vector which defines the elementary reflector *> H(i) is stored in the i-th column of the array V, and *> *> H = I - V * T * V**T *> *> If STOREV = 'R', the vector which defines the elementary reflector *> H(i) is stored in the i-th row of the array V, and *> *> H = I - V**T * T * V *> \endverbatim * * Arguments: * ========== * *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Specifies the order in which the elementary reflectors are *> multiplied to form the block reflector: *> = 'F': H = H(1) H(2) . . . H(k) (Forward) *> = 'B': H = H(k) . . . H(2) H(1) (Backward) *> \endverbatim *> *> \param[in] STOREV *> \verbatim *> STOREV is CHARACTER*1 *> Specifies how the vectors which define the elementary *> reflectors are stored (see also Further Details): *> = 'C': columnwise *> = 'R': rowwise *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the block reflector H. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The order of the triangular factor T (= the number of *> elementary reflectors). K >= 1. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is DOUBLE PRECISION array, dimension *> (LDV,K) if STOREV = 'C' *> (LDV,N) if STOREV = 'R' *> The matrix V. See further details. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. *> If STOREV = 'C', LDV >= max(1,N); if STOREV = 'R', LDV >= K. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i). *> \endverbatim *> *> \param[out] T *> \verbatim *> T is DOUBLE PRECISION array, dimension (LDT,K) *> The k by k triangular factor T of the block reflector. *> If DIRECT = 'F', T is upper triangular; if DIRECT = 'B', T is *> lower triangular. The rest of the array is not used. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= K. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The shape of the matrix V and the storage of the vectors which define *> the H(i) is best illustrated by the following example with n = 5 and *> k = 3. The elements equal to 1 are not stored. *> *> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R': *> *> V = ( 1 ) V = ( 1 v1 v1 v1 v1 ) *> ( v1 1 ) ( 1 v2 v2 v2 ) *> ( v1 v2 1 ) ( 1 v3 v3 ) *> ( v1 v2 v3 ) *> ( v1 v2 v3 ) *> *> DIRECT = 'B' and STOREV = 'C': DIRECT = 'B' and STOREV = 'R': *> *> V = ( v1 v2 v3 ) V = ( v1 v1 1 ) *> ( v1 v2 v3 ) ( v2 v2 v2 1 ) *> ( 1 v2 v3 ) ( v3 v3 v3 v3 1 ) *> ( 1 v3 ) *> ( 1 ) *> \endverbatim *> * ===================================================================== SUBROUTINE DLARFT( DIRECT, STOREV, N, K, V, LDV, TAU, T, LDT ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER DIRECT, STOREV INTEGER K, LDT, LDV, N * .. * .. Array Arguments .. DOUBLE PRECISION T( LDT, * ), TAU( * ), V( LDV, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J, PREVLASTV, LASTV * .. * .. External Subroutines .. EXTERNAL DGEMV, DTRMV * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. Executable Statements .. * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * IF( LSAME( DIRECT, 'F' ) ) THEN PREVLASTV = N DO I = 1, K PREVLASTV = MAX( I, PREVLASTV ) IF( TAU( I ).EQ.ZERO ) THEN * * H(i) = I * DO J = 1, I T( J, I ) = ZERO END DO ELSE * * general case * IF( LSAME( STOREV, 'C' ) ) THEN * Skip any trailing zeros. DO LASTV = N, I+1, -1 IF( V( LASTV, I ).NE.ZERO ) EXIT END DO DO J = 1, I-1 T( J, I ) = -TAU( I ) * V( I , J ) END DO J = MIN( LASTV, PREVLASTV ) * * T(1:i-1,i) := - tau(i) * V(i:j,1:i-1)**T * V(i:j,i) * CALL DGEMV( 'Transpose', J-I, I-1, -TAU( I ), $ V( I+1, 1 ), LDV, V( I+1, I ), 1, ONE, $ T( 1, I ), 1 ) ELSE * Skip any trailing zeros. DO LASTV = N, I+1, -1 IF( V( I, LASTV ).NE.ZERO ) EXIT END DO DO J = 1, I-1 T( J, I ) = -TAU( I ) * V( J , I ) END DO J = MIN( LASTV, PREVLASTV ) * * T(1:i-1,i) := - tau(i) * V(1:i-1,i:j) * V(i,i:j)**T * CALL DGEMV( 'No transpose', I-1, J-I, -TAU( I ), $ V( 1, I+1 ), LDV, V( I, I+1 ), LDV, ONE, $ T( 1, I ), 1 ) END IF * * T(1:i-1,i) := T(1:i-1,1:i-1) * T(1:i-1,i) * CALL DTRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T, $ LDT, T( 1, I ), 1 ) T( I, I ) = TAU( I ) IF( I.GT.1 ) THEN PREVLASTV = MAX( PREVLASTV, LASTV ) ELSE PREVLASTV = LASTV END IF END IF END DO ELSE PREVLASTV = 1 DO I = K, 1, -1 IF( TAU( I ).EQ.ZERO ) THEN * * H(i) = I * DO J = I, K T( J, I ) = ZERO END DO ELSE * * general case * IF( I.LT.K ) THEN IF( LSAME( STOREV, 'C' ) ) THEN * Skip any leading zeros. DO LASTV = 1, I-1 IF( V( LASTV, I ).NE.ZERO ) EXIT END DO DO J = I+1, K T( J, I ) = -TAU( I ) * V( N-K+I , J ) END DO J = MAX( LASTV, PREVLASTV ) * * T(i+1:k,i) = -tau(i) * V(j:n-k+i,i+1:k)**T * V(j:n-k+i,i) * CALL DGEMV( 'Transpose', N-K+I-J, K-I, -TAU( I ), $ V( J, I+1 ), LDV, V( J, I ), 1, ONE, $ T( I+1, I ), 1 ) ELSE * Skip any leading zeros. DO LASTV = 1, I-1 IF( V( I, LASTV ).NE.ZERO ) EXIT END DO DO J = I+1, K T( J, I ) = -TAU( I ) * V( J, N-K+I ) END DO J = MAX( LASTV, PREVLASTV ) * * T(i+1:k,i) = -tau(i) * V(i+1:k,j:n-k+i) * V(i,j:n-k+i)**T * CALL DGEMV( 'No transpose', K-I, N-K+I-J, $ -TAU( I ), V( I+1, J ), LDV, V( I, J ), LDV, $ ONE, T( I+1, I ), 1 ) END IF * * T(i+1:k,i) := T(i+1:k,i+1:k) * T(i+1:k,i) * CALL DTRMV( 'Lower', 'No transpose', 'Non-unit', K-I, $ T( I+1, I+1 ), LDT, T( I+1, I ), 1 ) IF( I.GT.1 ) THEN PREVLASTV = MIN( PREVLASTV, LASTV ) ELSE PREVLASTV = LASTV END IF END IF T( I, I ) = TAU( I ) END IF END DO END IF RETURN * * End of DLARFT * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlarfb.f0000644000000000000000000000013214061636515015256 xustar0030 mtime=1623670093.381103916 30 atime=1623670093.381103916 30 ctime=1623670093.381103916 elk-7.2.42/src/LAPACK/dlarfb.f0000644002504400250440000005142514061636515017322 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARFB applies a block reflector or its transpose to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARFB + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, * T, LDT, C, LDC, WORK, LDWORK ) * * .. Scalar Arguments .. * CHARACTER DIRECT, SIDE, STOREV, TRANS * INTEGER K, LDC, LDT, LDV, LDWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION C( LDC, * ), T( LDT, * ), V( LDV, * ), * $ WORK( LDWORK, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARFB applies a real block reflector H or its transpose H**T to a *> real m by n matrix C, from either the left or the right. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply H or H**T from the Left *> = 'R': apply H or H**T from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply H (No transpose) *> = 'T': apply H**T (Transpose) *> \endverbatim *> *> \param[in] DIRECT *> \verbatim *> DIRECT is CHARACTER*1 *> Indicates how H is formed from a product of elementary *> reflectors *> = 'F': H = H(1) H(2) . . . H(k) (Forward) *> = 'B': H = H(k) . . . H(2) H(1) (Backward) *> \endverbatim *> *> \param[in] STOREV *> \verbatim *> STOREV is CHARACTER*1 *> Indicates how the vectors which define the elementary *> reflectors are stored: *> = 'C': Columnwise *> = 'R': Rowwise *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The order of the matrix T (= the number of elementary *> reflectors whose product defines the block reflector). *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is DOUBLE PRECISION array, dimension *> (LDV,K) if STOREV = 'C' *> (LDV,M) if STOREV = 'R' and SIDE = 'L' *> (LDV,N) if STOREV = 'R' and SIDE = 'R' *> The matrix V. See Further Details. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. *> If STOREV = 'C' and SIDE = 'L', LDV >= max(1,M); *> if STOREV = 'C' and SIDE = 'R', LDV >= max(1,N); *> if STOREV = 'R', LDV >= K. *> \endverbatim *> *> \param[in] T *> \verbatim *> T is DOUBLE PRECISION array, dimension (LDT,K) *> The triangular k by k matrix T in the representation of the *> block reflector. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= K. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the m by n matrix C. *> On exit, C is overwritten by H*C or H**T*C or C*H or C*H**T. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (LDWORK,K) *> \endverbatim *> *> \param[in] LDWORK *> \verbatim *> LDWORK is INTEGER *> The leading dimension of the array WORK. *> If SIDE = 'L', LDWORK >= max(1,N); *> if SIDE = 'R', LDWORK >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2013 * *> \ingroup doubleOTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> The shape of the matrix V and the storage of the vectors which define *> the H(i) is best illustrated by the following example with n = 5 and *> k = 3. The elements equal to 1 are not stored; the corresponding *> array elements are modified but restored on exit. The rest of the *> array is not used. *> *> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R': *> *> V = ( 1 ) V = ( 1 v1 v1 v1 v1 ) *> ( v1 1 ) ( 1 v2 v2 v2 ) *> ( v1 v2 1 ) ( 1 v3 v3 ) *> ( v1 v2 v3 ) *> ( v1 v2 v3 ) *> *> DIRECT = 'B' and STOREV = 'C': DIRECT = 'B' and STOREV = 'R': *> *> V = ( v1 v2 v3 ) V = ( v1 v1 1 ) *> ( v1 v2 v3 ) ( v2 v2 v2 1 ) *> ( 1 v2 v3 ) ( v3 v3 v3 v3 1 ) *> ( 1 v3 ) *> ( 1 ) *> \endverbatim *> * ===================================================================== SUBROUTINE DLARFB( SIDE, TRANS, DIRECT, STOREV, M, N, K, V, LDV, $ T, LDT, C, LDC, WORK, LDWORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2013 * * .. Scalar Arguments .. CHARACTER DIRECT, SIDE, STOREV, TRANS INTEGER K, LDC, LDT, LDV, LDWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION C( LDC, * ), T( LDT, * ), V( LDV, * ), $ WORK( LDWORK, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. CHARACTER TRANST INTEGER I, J * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL DCOPY, DGEMM, DTRMM * .. * .. Executable Statements .. * * Quick return if possible * IF( M.LE.0 .OR. N.LE.0 ) $ RETURN * IF( LSAME( TRANS, 'N' ) ) THEN TRANST = 'T' ELSE TRANST = 'N' END IF * IF( LSAME( STOREV, 'C' ) ) THEN * IF( LSAME( DIRECT, 'F' ) ) THEN * * Let V = ( V1 ) (first K rows) * ( V2 ) * where V1 is unit lower triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**T * C where C = ( C1 ) * ( C2 ) * * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK) * * W := C1**T * DO 10 J = 1, K CALL DCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) 10 CONTINUE * * W := W * V1 * CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, $ K, ONE, V, LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C2**T * V2 * CALL DGEMM( 'Transpose', 'No transpose', N, K, M-K, $ ONE, C( K+1, 1 ), LDC, V( K+1, 1 ), LDV, $ ONE, WORK, LDWORK ) END IF * * W := W * T**T or W * T * CALL DTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V * W**T * IF( M.GT.K ) THEN * * C2 := C2 - V2 * W**T * CALL DGEMM( 'No transpose', 'Transpose', M-K, N, K, $ -ONE, V( K+1, 1 ), LDV, WORK, LDWORK, ONE, $ C( K+1, 1 ), LDC ) END IF * * W := W * V1**T * CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', N, K, $ ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W**T * DO 30 J = 1, K DO 20 I = 1, N C( J, I ) = C( J, I ) - WORK( I, J ) 20 CONTINUE 30 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**T where C = ( C1 C2 ) * * W := C * V = (C1*V1 + C2*V2) (stored in WORK) * * W := C1 * DO 40 J = 1, K CALL DCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) 40 CONTINUE * * W := W * V1 * CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, $ K, ONE, V, LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C2 * V2 * CALL DGEMM( 'No transpose', 'No transpose', M, K, N-K, $ ONE, C( 1, K+1 ), LDC, V( K+1, 1 ), LDV, $ ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**T * CALL DTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V**T * IF( N.GT.K ) THEN * * C2 := C2 - W * V2**T * CALL DGEMM( 'No transpose', 'Transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V( K+1, 1 ), LDV, ONE, $ C( 1, K+1 ), LDC ) END IF * * W := W * V1**T * CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', M, K, $ ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 60 J = 1, K DO 50 I = 1, M C( I, J ) = C( I, J ) - WORK( I, J ) 50 CONTINUE 60 CONTINUE END IF * ELSE * * Let V = ( V1 ) * ( V2 ) (last K rows) * where V2 is unit upper triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**T * C where C = ( C1 ) * ( C2 ) * * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK) * * W := C2**T * DO 70 J = 1, K CALL DCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) 70 CONTINUE * * W := W * V2 * CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, $ K, ONE, V( M-K+1, 1 ), LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C1**T * V1 * CALL DGEMM( 'Transpose', 'No transpose', N, K, M-K, $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T**T or W * T * CALL DTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V * W**T * IF( M.GT.K ) THEN * * C1 := C1 - V1 * W**T * CALL DGEMM( 'No transpose', 'Transpose', M-K, N, K, $ -ONE, V, LDV, WORK, LDWORK, ONE, C, LDC ) END IF * * W := W * V2**T * CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', N, K, $ ONE, V( M-K+1, 1 ), LDV, WORK, LDWORK ) * * C2 := C2 - W**T * DO 90 J = 1, K DO 80 I = 1, N C( M-K+J, I ) = C( M-K+J, I ) - WORK( I, J ) 80 CONTINUE 90 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**T where C = ( C1 C2 ) * * W := C * V = (C1*V1 + C2*V2) (stored in WORK) * * W := C2 * DO 100 J = 1, K CALL DCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) 100 CONTINUE * * W := W * V2 * CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, $ K, ONE, V( N-K+1, 1 ), LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C1 * V1 * CALL DGEMM( 'No transpose', 'No transpose', M, K, N-K, $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**T * CALL DTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V**T * IF( N.GT.K ) THEN * * C1 := C1 - W * V1**T * CALL DGEMM( 'No transpose', 'Transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V, LDV, ONE, C, LDC ) END IF * * W := W * V2**T * CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', M, K, $ ONE, V( N-K+1, 1 ), LDV, WORK, LDWORK ) * * C2 := C2 - W * DO 120 J = 1, K DO 110 I = 1, M C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) 110 CONTINUE 120 CONTINUE END IF END IF * ELSE IF( LSAME( STOREV, 'R' ) ) THEN * IF( LSAME( DIRECT, 'F' ) ) THEN * * Let V = ( V1 V2 ) (V1: first K columns) * where V1 is unit upper triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**T * C where C = ( C1 ) * ( C2 ) * * W := C**T * V**T = (C1**T * V1**T + C2**T * V2**T) (stored in WORK) * * W := C1**T * DO 130 J = 1, K CALL DCOPY( N, C( J, 1 ), LDC, WORK( 1, J ), 1 ) 130 CONTINUE * * W := W * V1**T * CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', N, K, $ ONE, V, LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C2**T * V2**T * CALL DGEMM( 'Transpose', 'Transpose', N, K, M-K, ONE, $ C( K+1, 1 ), LDC, V( 1, K+1 ), LDV, ONE, $ WORK, LDWORK ) END IF * * W := W * T**T or W * T * CALL DTRMM( 'Right', 'Upper', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V**T * W**T * IF( M.GT.K ) THEN * * C2 := C2 - V2**T * W**T * CALL DGEMM( 'Transpose', 'Transpose', M-K, N, K, -ONE, $ V( 1, K+1 ), LDV, WORK, LDWORK, ONE, $ C( K+1, 1 ), LDC ) END IF * * W := W * V1 * CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', N, $ K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W**T * DO 150 J = 1, K DO 140 I = 1, N C( J, I ) = C( J, I ) - WORK( I, J ) 140 CONTINUE 150 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H**T where C = ( C1 C2 ) * * W := C * V**T = (C1*V1**T + C2*V2**T) (stored in WORK) * * W := C1 * DO 160 J = 1, K CALL DCOPY( M, C( 1, J ), 1, WORK( 1, J ), 1 ) 160 CONTINUE * * W := W * V1**T * CALL DTRMM( 'Right', 'Upper', 'Transpose', 'Unit', M, K, $ ONE, V, LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C2 * V2**T * CALL DGEMM( 'No transpose', 'Transpose', M, K, N-K, $ ONE, C( 1, K+1 ), LDC, V( 1, K+1 ), LDV, $ ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**T * CALL DTRMM( 'Right', 'Upper', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V * IF( N.GT.K ) THEN * * C2 := C2 - W * V2 * CALL DGEMM( 'No transpose', 'No transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V( 1, K+1 ), LDV, ONE, $ C( 1, K+1 ), LDC ) END IF * * W := W * V1 * CALL DTRMM( 'Right', 'Upper', 'No transpose', 'Unit', M, $ K, ONE, V, LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 180 J = 1, K DO 170 I = 1, M C( I, J ) = C( I, J ) - WORK( I, J ) 170 CONTINUE 180 CONTINUE * END IF * ELSE * * Let V = ( V1 V2 ) (V2: last K columns) * where V2 is unit lower triangular. * IF( LSAME( SIDE, 'L' ) ) THEN * * Form H * C or H**T * C where C = ( C1 ) * ( C2 ) * * W := C**T * V**T = (C1**T * V1**T + C2**T * V2**T) (stored in WORK) * * W := C2**T * DO 190 J = 1, K CALL DCOPY( N, C( M-K+J, 1 ), LDC, WORK( 1, J ), 1 ) 190 CONTINUE * * W := W * V2**T * CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', N, K, $ ONE, V( 1, M-K+1 ), LDV, WORK, LDWORK ) IF( M.GT.K ) THEN * * W := W + C1**T * V1**T * CALL DGEMM( 'Transpose', 'Transpose', N, K, M-K, ONE, $ C, LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T**T or W * T * CALL DTRMM( 'Right', 'Lower', TRANST, 'Non-unit', N, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - V**T * W**T * IF( M.GT.K ) THEN * * C1 := C1 - V1**T * W**T * CALL DGEMM( 'Transpose', 'Transpose', M-K, N, K, -ONE, $ V, LDV, WORK, LDWORK, ONE, C, LDC ) END IF * * W := W * V2 * CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', N, $ K, ONE, V( 1, M-K+1 ), LDV, WORK, LDWORK ) * * C2 := C2 - W**T * DO 210 J = 1, K DO 200 I = 1, N C( M-K+J, I ) = C( M-K+J, I ) - WORK( I, J ) 200 CONTINUE 210 CONTINUE * ELSE IF( LSAME( SIDE, 'R' ) ) THEN * * Form C * H or C * H' where C = ( C1 C2 ) * * W := C * V**T = (C1*V1**T + C2*V2**T) (stored in WORK) * * W := C2 * DO 220 J = 1, K CALL DCOPY( M, C( 1, N-K+J ), 1, WORK( 1, J ), 1 ) 220 CONTINUE * * W := W * V2**T * CALL DTRMM( 'Right', 'Lower', 'Transpose', 'Unit', M, K, $ ONE, V( 1, N-K+1 ), LDV, WORK, LDWORK ) IF( N.GT.K ) THEN * * W := W + C1 * V1**T * CALL DGEMM( 'No transpose', 'Transpose', M, K, N-K, $ ONE, C, LDC, V, LDV, ONE, WORK, LDWORK ) END IF * * W := W * T or W * T**T * CALL DTRMM( 'Right', 'Lower', TRANS, 'Non-unit', M, K, $ ONE, T, LDT, WORK, LDWORK ) * * C := C - W * V * IF( N.GT.K ) THEN * * C1 := C1 - W * V1 * CALL DGEMM( 'No transpose', 'No transpose', M, N-K, K, $ -ONE, WORK, LDWORK, V, LDV, ONE, C, LDC ) END IF * * W := W * V2 * CALL DTRMM( 'Right', 'Lower', 'No transpose', 'Unit', M, $ K, ONE, V( 1, N-K+1 ), LDV, WORK, LDWORK ) * * C1 := C1 - W * DO 240 J = 1, K DO 230 I = 1, M C( I, N-K+J ) = C( I, N-K+J ) - WORK( I, J ) 230 CONTINUE 240 CONTINUE * END IF * END IF END IF * RETURN * * End of DLARFB * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorg2r.f0000644000000000000000000000013214061636515015223 xustar0030 mtime=1623670093.383103914 30 atime=1623670093.383103914 30 ctime=1623670093.383103914 elk-7.2.42/src/LAPACK/dorg2r.f0000644002504400250440000001222014061636515017255 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORG2R generates all or part of the orthogonal matrix Q from a QR factorization determined by sgeqrf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORG2R + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORG2R( M, N, K, A, LDA, TAU, WORK, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORG2R generates an m by n real matrix Q with orthonormal columns, *> which is defined as the first n columns of a product of k elementary *> reflectors of order m *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by DGEQRF. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix Q. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix Q. M >= N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines the *> matrix Q. N >= K >= 0. *> \endverbatim *> *> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the i-th column must contain the vector which *> defines the elementary reflector H(i), for i = 1,2,...,k, as *> returned by DGEQRF in the first k columns of its array *> argument A. *> On exit, the m-by-n matrix Q. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The first dimension of the array A. LDA >= max(1,M). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQRF. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument has an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORG2R( M, N, K, A, LDA, TAU, WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, LDA, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J, L * .. * .. External Subroutines .. EXTERNAL DLARF, DSCAL, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 IF( M.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN INFO = -2 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN INFO = -3 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN INFO = -5 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORG2R', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.0 ) $ RETURN * * Initialise columns k+1:n to columns of the unit matrix * DO 20 J = K + 1, N DO 10 L = 1, M A( L, J ) = ZERO 10 CONTINUE A( J, J ) = ONE 20 CONTINUE * DO 40 I = K, 1, -1 * * Apply H(i) to A(i:m,i:n) from the left * IF( I.LT.N ) THEN A( I, I ) = ONE CALL DLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAU( I ), $ A( I, I+1 ), LDA, WORK ) END IF IF( I.LT.M ) $ CALL DSCAL( M-I, -TAU( I ), A( I+1, I ), 1 ) A( I, I ) = ONE - TAU( I ) * * Set A(1:i-1,i) to zero * DO 30 L = 1, I - 1 A( L, I ) = ZERO 30 CONTINUE 40 CONTINUE RETURN * * End of DORG2R * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dormql.f0000644000000000000000000000013214061636515015322 xustar0030 mtime=1623670093.385103912 30 atime=1623670093.385103912 30 ctime=1623670093.385103912 elk-7.2.42/src/LAPACK/dormql.f0000644002504400250440000002227514061636515017367 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORMQL * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORMQL + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORMQL overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'T': Q**T * C C * Q**T *> *> where Q is a real orthogonal matrix defined as the product of k *> elementary reflectors *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by DGEQLF. Q is of order M if SIDE = 'L' and of order N *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**T from the Left; *> = 'R': apply Q or Q**T from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'T': Transpose, apply Q**T. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> DGEQLF in the last k columns of its array argument A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQLF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORMQL( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) * .. * .. Local Scalars .. LOGICAL LEFT, LQUERY, NOTRAN INTEGER I, I1, I2, I3, IB, IINFO, IWT, LDWORK, LWKOPT, $ MI, NB, NBMIN, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DLARFB, DLARFT, DORM2L, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = MAX( 1, N ) ELSE NQ = N NW = MAX( 1, M ) END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.NW .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * IF( M.EQ.0 .OR. N.EQ.0 ) THEN LWKOPT = 1 ELSE NB = MIN( NBMAX, ILAENV( 1, 'DORMQL', SIDE // TRANS, M, N, $ K, -1 ) ) LWKOPT = NW*NB + TSIZE END IF WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORMQL', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 ) THEN RETURN END IF * NBMIN = 2 LDWORK = NW IF( NB.GT.1 .AND. NB.LT.K ) THEN IF( LWORK.LT.NW*NB+TSIZE ) THEN NB = (LWORK-TSIZE) / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'DORMQL', SIDE // TRANS, M, N, K, $ -1 ) ) END IF END IF * IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN * * Use unblocked code * CALL DORM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, $ IINFO ) ELSE * * Use blocked code * IWT = 1 + NW*NB IF( ( LEFT .AND. NOTRAN ) .OR. $ ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN I1 = 1 I2 = K I3 = NB ELSE I1 = ( ( K-1 ) / NB )*NB + 1 I2 = 1 I3 = -NB END IF * IF( LEFT ) THEN NI = N ELSE MI = M END IF * DO 10 I = I1, I2, I3 IB = MIN( NB, K-I+1 ) * * Form the triangular factor of the block reflector * H = H(i+ib-1) . . . H(i+1) H(i) * CALL DLARFT( 'Backward', 'Columnwise', NQ-K+I+IB-1, IB, $ A( 1, I ), LDA, TAU( I ), WORK( IWT ), LDT ) IF( LEFT ) THEN * * H or H**T is applied to C(1:m-k+i+ib-1,1:n) * MI = M - K + I + IB - 1 ELSE * * H or H**T is applied to C(1:m,1:n-k+i+ib-1) * NI = N - K + I + IB - 1 END IF * * Apply H or H**T * CALL DLARFB( SIDE, TRANS, 'Backward', 'Columnwise', MI, NI, $ IB, A( 1, I ), LDA, WORK( IWT ), LDT, C, LDC, $ WORK, LDWORK ) 10 CONTINUE END IF WORK( 1 ) = LWKOPT RETURN * * End of DORMQL * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dormqr.f0000644000000000000000000000012714061636515015334 xustar0029 mtime=1623670093.38710391 29 atime=1623670093.38710391 29 ctime=1623670093.38710391 elk-7.2.42/src/LAPACK/dormqr.f0000644002504400250440000002224114061636515017366 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORMQR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORMQR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORMQR overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'T': Q**T * C C * Q**T *> *> where Q is a real orthogonal matrix defined as the product of k *> elementary reflectors *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by DGEQRF. Q is of order M if SIDE = 'L' and of order N *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**T from the Left; *> = 'R': apply Q or Q**T from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': No transpose, apply Q; *> = 'T': Transpose, apply Q**T. *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> DGEQRF in the first k columns of its array argument A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQRF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For good performance, LWORK should generally be larger. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORMQR( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER NBMAX, LDT, TSIZE PARAMETER ( NBMAX = 64, LDT = NBMAX+1, $ TSIZE = LDT*NBMAX ) * .. * .. Local Scalars .. LOGICAL LEFT, LQUERY, NOTRAN INTEGER I, I1, I2, I3, IB, IC, IINFO, IWT, JC, LDWORK, $ LWKOPT, MI, NB, NBMIN, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL DLARFB, DLARFT, DORM2R, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -12 END IF * IF( INFO.EQ.0 ) THEN * * Compute the workspace requirements * NB = MIN( NBMAX, ILAENV( 1, 'DORMQR', SIDE // TRANS, M, N, K, $ -1 ) ) LWKOPT = MAX( 1, NW )*NB + TSIZE WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORMQR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * NBMIN = 2 LDWORK = NW IF( NB.GT.1 .AND. NB.LT.K ) THEN IF( LWORK.LT.NW*NB+TSIZE ) THEN NB = (LWORK-TSIZE) / LDWORK NBMIN = MAX( 2, ILAENV( 2, 'DORMQR', SIDE // TRANS, M, N, K, $ -1 ) ) END IF END IF * IF( NB.LT.NBMIN .OR. NB.GE.K ) THEN * * Use unblocked code * CALL DORM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, $ IINFO ) ELSE * * Use blocked code * IWT = 1 + NW*NB IF( ( LEFT .AND. .NOT.NOTRAN ) .OR. $ ( .NOT.LEFT .AND. NOTRAN ) ) THEN I1 = 1 I2 = K I3 = NB ELSE I1 = ( ( K-1 ) / NB )*NB + 1 I2 = 1 I3 = -NB END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 10 I = I1, I2, I3 IB = MIN( NB, K-I+1 ) * * Form the triangular factor of the block reflector * H = H(i) H(i+1) . . . H(i+ib-1) * CALL DLARFT( 'Forward', 'Columnwise', NQ-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK( IWT ), LDT ) IF( LEFT ) THEN * * H or H**T is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H or H**T is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H or H**T * CALL DLARFB( SIDE, TRANS, 'Forward', 'Columnwise', MI, NI, $ IB, A( I, I ), LDA, WORK( IWT ), LDT, $ C( IC, JC ), LDC, WORK, LDWORK ) 10 CONTINUE END IF WORK( 1 ) = LWKOPT RETURN * * End of DORMQR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed0.f0000644000000000000000000000013214061636515015155 xustar0030 mtime=1623670093.389103908 30 atime=1623670093.389103908 30 ctime=1623670093.389103908 elk-7.2.42/src/LAPACK/dlaed0.f0000644002504400250440000003310614061636515017215 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED0 used by sstedc. Computes all eigenvalues and corresponding eigenvectors of an unreduced symmetric tridiagonal matrix using the divide and conquer method. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED0 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED0( ICOMPQ, QSIZ, N, D, E, Q, LDQ, QSTORE, LDQS, * WORK, IWORK, INFO ) * * .. Scalar Arguments .. * INTEGER ICOMPQ, INFO, LDQ, LDQS, N, QSIZ * .. * .. Array Arguments .. * INTEGER IWORK( * ) * DOUBLE PRECISION D( * ), E( * ), Q( LDQ, * ), QSTORE( LDQS, * ), * $ WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED0 computes all eigenvalues and corresponding eigenvectors of a *> symmetric tridiagonal matrix using the divide and conquer method. *> \endverbatim * * Arguments: * ========== * *> \param[in] ICOMPQ *> \verbatim *> ICOMPQ is INTEGER *> = 0: Compute eigenvalues only. *> = 1: Compute eigenvectors of original dense symmetric matrix *> also. On entry, Q contains the orthogonal matrix used *> to reduce the original matrix to tridiagonal form. *> = 2: Compute eigenvalues and eigenvectors of tridiagonal *> matrix. *> \endverbatim *> *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the orthogonal matrix used to reduce *> the full matrix to tridiagonal form. QSIZ >= N if ICOMPQ = 1. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the main diagonal of the tridiagonal matrix. *> On exit, its eigenvalues. *> \endverbatim *> *> \param[in] E *> \verbatim *> E is DOUBLE PRECISION array, dimension (N-1) *> The off-diagonal elements of the tridiagonal matrix. *> On exit, E has been destroyed. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ, N) *> On entry, Q must contain an N-by-N orthogonal matrix. *> If ICOMPQ = 0 Q is not referenced. *> If ICOMPQ = 1 On entry, Q is a subset of the columns of the *> orthogonal matrix used to reduce the full *> matrix to tridiagonal form corresponding to *> the subset of the full matrix which is being *> decomposed at this time. *> If ICOMPQ = 2 On entry, Q will be the identity matrix. *> On exit, Q contains the eigenvectors of the *> tridiagonal matrix. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. If eigenvectors are *> desired, then LDQ >= max(1,N). In any case, LDQ >= 1. *> \endverbatim *> *> \param[out] QSTORE *> \verbatim *> QSTORE is DOUBLE PRECISION array, dimension (LDQS, N) *> Referenced only when ICOMPQ = 1. Used to store parts of *> the eigenvector matrix when the updating matrix multiplies *> take place. *> \endverbatim *> *> \param[in] LDQS *> \verbatim *> LDQS is INTEGER *> The leading dimension of the array QSTORE. If ICOMPQ = 1, *> then LDQS >= max(1,N). In any case, LDQS >= 1. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, *> If ICOMPQ = 0 or 1, the dimension of WORK must be at least *> 1 + 3*N + 2*N*lg N + 3*N**2 *> ( lg( N ) = smallest integer k *> such that 2^k >= N ) *> If ICOMPQ = 2, the dimension of WORK must be at least *> 4*N + N**2. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, *> If ICOMPQ = 0 or 1, the dimension of IWORK must be at least *> 6 + 6*N + 5*N*lg N. *> ( lg( N ) = smallest integer k *> such that 2^k >= N ) *> If ICOMPQ = 2, the dimension of IWORK must be at least *> 3 + 5*N. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: The algorithm failed to compute an eigenvalue while *> working on the submatrix lying in rows and columns *> INFO/(N+1) through mod(INFO,N+1). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE DLAED0( ICOMPQ, QSIZ, N, D, E, Q, LDQ, QSTORE, LDQS, $ WORK, IWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER ICOMPQ, INFO, LDQ, LDQS, N, QSIZ * .. * .. Array Arguments .. INTEGER IWORK( * ) DOUBLE PRECISION D( * ), E( * ), Q( LDQ, * ), QSTORE( LDQS, * ), $ WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO PARAMETER ( ZERO = 0.D0, ONE = 1.D0, TWO = 2.D0 ) * .. * .. Local Scalars .. INTEGER CURLVL, CURPRB, CURR, I, IGIVCL, IGIVNM, $ IGIVPT, INDXQ, IPERM, IPRMPT, IQ, IQPTR, IWREM, $ J, K, LGN, MATSIZ, MSD2, SMLSIZ, SMM1, SPM1, $ SPM2, SUBMAT, SUBPBS, TLVLS DOUBLE PRECISION TEMP * .. * .. External Subroutines .. EXTERNAL DCOPY, DGEMM, DLACPY, DLAED1, DLAED7, DSTEQR, $ XERBLA * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, INT, LOG, MAX * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( ICOMPQ.LT.0 .OR. ICOMPQ.GT.2 ) THEN INFO = -1 ELSE IF( ( ICOMPQ.EQ.1 ) .AND. ( QSIZ.LT.MAX( 0, N ) ) ) THEN INFO = -2 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -7 ELSE IF( LDQS.LT.MAX( 1, N ) ) THEN INFO = -9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED0', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * SMLSIZ = ILAENV( 9, 'DLAED0', ' ', 0, 0, 0, 0 ) * * Determine the size and placement of the submatrices, and save in * the leading elements of IWORK. * IWORK( 1 ) = N SUBPBS = 1 TLVLS = 0 10 CONTINUE IF( IWORK( SUBPBS ).GT.SMLSIZ ) THEN DO 20 J = SUBPBS, 1, -1 IWORK( 2*J ) = ( IWORK( J )+1 ) / 2 IWORK( 2*J-1 ) = IWORK( J ) / 2 20 CONTINUE TLVLS = TLVLS + 1 SUBPBS = 2*SUBPBS GO TO 10 END IF DO 30 J = 2, SUBPBS IWORK( J ) = IWORK( J ) + IWORK( J-1 ) 30 CONTINUE * * Divide the matrix into SUBPBS submatrices of size at most SMLSIZ+1 * using rank-1 modifications (cuts). * SPM1 = SUBPBS - 1 DO 40 I = 1, SPM1 SUBMAT = IWORK( I ) + 1 SMM1 = SUBMAT - 1 D( SMM1 ) = D( SMM1 ) - ABS( E( SMM1 ) ) D( SUBMAT ) = D( SUBMAT ) - ABS( E( SMM1 ) ) 40 CONTINUE * INDXQ = 4*N + 3 IF( ICOMPQ.NE.2 ) THEN * * Set up workspaces for eigenvalues only/accumulate new vectors * routine * TEMP = LOG( DBLE( N ) ) / LOG( TWO ) LGN = INT( TEMP ) IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IF( 2**LGN.LT.N ) $ LGN = LGN + 1 IPRMPT = INDXQ + N + 1 IPERM = IPRMPT + N*LGN IQPTR = IPERM + N*LGN IGIVPT = IQPTR + N + 2 IGIVCL = IGIVPT + N*LGN * IGIVNM = 1 IQ = IGIVNM + 2*N*LGN IWREM = IQ + N**2 + 1 * * Initialize pointers * DO 50 I = 0, SUBPBS IWORK( IPRMPT+I ) = 1 IWORK( IGIVPT+I ) = 1 50 CONTINUE IWORK( IQPTR ) = 1 END IF * * Solve each submatrix eigenproblem at the bottom of the divide and * conquer tree. * CURR = 0 DO 70 I = 0, SPM1 IF( I.EQ.0 ) THEN SUBMAT = 1 MATSIZ = IWORK( 1 ) ELSE SUBMAT = IWORK( I ) + 1 MATSIZ = IWORK( I+1 ) - IWORK( I ) END IF IF( ICOMPQ.EQ.2 ) THEN CALL DSTEQR( 'I', MATSIZ, D( SUBMAT ), E( SUBMAT ), $ Q( SUBMAT, SUBMAT ), LDQ, WORK, INFO ) IF( INFO.NE.0 ) $ GO TO 130 ELSE CALL DSTEQR( 'I', MATSIZ, D( SUBMAT ), E( SUBMAT ), $ WORK( IQ-1+IWORK( IQPTR+CURR ) ), MATSIZ, WORK, $ INFO ) IF( INFO.NE.0 ) $ GO TO 130 IF( ICOMPQ.EQ.1 ) THEN CALL DGEMM( 'N', 'N', QSIZ, MATSIZ, MATSIZ, ONE, $ Q( 1, SUBMAT ), LDQ, WORK( IQ-1+IWORK( IQPTR+ $ CURR ) ), MATSIZ, ZERO, QSTORE( 1, SUBMAT ), $ LDQS ) END IF IWORK( IQPTR+CURR+1 ) = IWORK( IQPTR+CURR ) + MATSIZ**2 CURR = CURR + 1 END IF K = 1 DO 60 J = SUBMAT, IWORK( I+1 ) IWORK( INDXQ+J ) = K K = K + 1 60 CONTINUE 70 CONTINUE * * Successively merge eigensystems of adjacent submatrices * into eigensystem for the corresponding larger matrix. * * while ( SUBPBS > 1 ) * CURLVL = 1 80 CONTINUE IF( SUBPBS.GT.1 ) THEN SPM2 = SUBPBS - 2 DO 90 I = 0, SPM2, 2 IF( I.EQ.0 ) THEN SUBMAT = 1 MATSIZ = IWORK( 2 ) MSD2 = IWORK( 1 ) CURPRB = 0 ELSE SUBMAT = IWORK( I ) + 1 MATSIZ = IWORK( I+2 ) - IWORK( I ) MSD2 = MATSIZ / 2 CURPRB = CURPRB + 1 END IF * * Merge lower order eigensystems (of size MSD2 and MATSIZ - MSD2) * into an eigensystem of size MATSIZ. * DLAED1 is used only for the full eigensystem of a tridiagonal * matrix. * DLAED7 handles the cases in which eigenvalues only or eigenvalues * and eigenvectors of a full symmetric matrix (which was reduced to * tridiagonal form) are desired. * IF( ICOMPQ.EQ.2 ) THEN CALL DLAED1( MATSIZ, D( SUBMAT ), Q( SUBMAT, SUBMAT ), $ LDQ, IWORK( INDXQ+SUBMAT ), $ E( SUBMAT+MSD2-1 ), MSD2, WORK, $ IWORK( SUBPBS+1 ), INFO ) ELSE CALL DLAED7( ICOMPQ, MATSIZ, QSIZ, TLVLS, CURLVL, CURPRB, $ D( SUBMAT ), QSTORE( 1, SUBMAT ), LDQS, $ IWORK( INDXQ+SUBMAT ), E( SUBMAT+MSD2-1 ), $ MSD2, WORK( IQ ), IWORK( IQPTR ), $ IWORK( IPRMPT ), IWORK( IPERM ), $ IWORK( IGIVPT ), IWORK( IGIVCL ), $ WORK( IGIVNM ), WORK( IWREM ), $ IWORK( SUBPBS+1 ), INFO ) END IF IF( INFO.NE.0 ) $ GO TO 130 IWORK( I / 2+1 ) = IWORK( I+2 ) 90 CONTINUE SUBPBS = SUBPBS / 2 CURLVL = CURLVL + 1 GO TO 80 END IF * * end while * * Re-merge the eigenvalues/vectors which were deflated at the final * merge step. * IF( ICOMPQ.EQ.1 ) THEN DO 100 I = 1, N J = IWORK( INDXQ+I ) WORK( I ) = D( J ) CALL DCOPY( QSIZ, QSTORE( 1, J ), 1, Q( 1, I ), 1 ) 100 CONTINUE CALL DCOPY( N, WORK, 1, D, 1 ) ELSE IF( ICOMPQ.EQ.2 ) THEN DO 110 I = 1, N J = IWORK( INDXQ+I ) WORK( I ) = D( J ) CALL DCOPY( N, Q( 1, J ), 1, WORK( N*I+1 ), 1 ) 110 CONTINUE CALL DCOPY( N, WORK, 1, D, 1 ) CALL DLACPY( 'A', N, N, WORK( N+1 ), N, Q, LDQ ) ELSE DO 120 I = 1, N J = IWORK( INDXQ+I ) WORK( I ) = D( J ) 120 CONTINUE CALL DCOPY( N, WORK, 1, D, 1 ) END IF GO TO 140 * 130 CONTINUE INFO = SUBMAT*( N+1 ) + SUBMAT + MATSIZ - 1 * 140 CONTINUE RETURN * * End of DLAED0 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlacgv.f0000644000000000000000000000013214061636515015312 xustar0030 mtime=1623670093.391103906 30 atime=1623670093.391103906 30 ctime=1623670093.391103906 elk-7.2.42/src/LAPACK/zlacgv.f0000644002504400250440000000544414061636515017356 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLACGV conjugates a complex vector. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLACGV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLACGV( N, X, INCX ) * * .. Scalar Arguments .. * INTEGER INCX, N * .. * .. Array Arguments .. * COMPLEX*16 X( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLACGV conjugates a complex vector of length N. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The length of the vector X. N >= 0. *> \endverbatim *> *> \param[in,out] X *> \verbatim *> X is COMPLEX*16 array, dimension *> (1+(N-1)*abs(INCX)) *> On entry, the vector of length N to be conjugated. *> On exit, X is overwritten with conjg(X). *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The spacing between successive elements of X. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZLACGV( N, X, INCX ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX, N * .. * .. Array Arguments .. COMPLEX*16 X( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, IOFF * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. * .. Executable Statements .. * IF( INCX.EQ.1 ) THEN DO 10 I = 1, N X( I ) = DCONJG( X( I ) ) 10 CONTINUE ELSE IOFF = 1 IF( INCX.LT.0 ) $ IOFF = 1 - ( N-1 )*INCX DO 20 I = 1, N X( IOFF ) = DCONJG( X( IOFF ) ) IOFF = IOFF + INCX 20 CONTINUE END IF RETURN * * End of ZLACGV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaed7.f0000644000000000000000000000013214061636515015212 xustar0030 mtime=1623670093.393103905 30 atime=1623670093.393103905 30 ctime=1623670093.393103905 elk-7.2.42/src/LAPACK/zlaed7.f0000644002504400250440000003036314061636515017254 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAED7 used by sstedc. Computes the updated eigensystem of a diagonal matrix after modification by a rank-one symmetric matrix. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAED7 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAED7( N, CUTPNT, QSIZ, TLVLS, CURLVL, CURPBM, D, Q, * LDQ, RHO, INDXQ, QSTORE, QPTR, PRMPTR, PERM, * GIVPTR, GIVCOL, GIVNUM, WORK, RWORK, IWORK, * INFO ) * * .. Scalar Arguments .. * INTEGER CURLVL, CURPBM, CUTPNT, INFO, LDQ, N, QSIZ, * $ TLVLS * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER GIVCOL( 2, * ), GIVPTR( * ), INDXQ( * ), * $ IWORK( * ), PERM( * ), PRMPTR( * ), QPTR( * ) * DOUBLE PRECISION D( * ), GIVNUM( 2, * ), QSTORE( * ), RWORK( * ) * COMPLEX*16 Q( LDQ, * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAED7 computes the updated eigensystem of a diagonal *> matrix after modification by a rank-one symmetric matrix. This *> routine is used only for the eigenproblem which requires all *> eigenvalues and optionally eigenvectors of a dense or banded *> Hermitian matrix that has been reduced to tridiagonal form. *> *> T = Q(in) ( D(in) + RHO * Z*Z**H ) Q**H(in) = Q(out) * D(out) * Q**H(out) *> *> where Z = Q**Hu, u is a vector of length N with ones in the *> CUTPNT and CUTPNT + 1 th elements and zeros elsewhere. *> *> The eigenvectors of the original matrix are stored in Q, and the *> eigenvalues are in D. The algorithm consists of three stages: *> *> The first stage consists of deflating the size of the problem *> when there are multiple eigenvalues or if there is a zero in *> the Z vector. For each such occurrence the dimension of the *> secular equation problem is reduced by one. This stage is *> performed by the routine DLAED2. *> *> The second stage consists of calculating the updated *> eigenvalues. This is done by finding the roots of the secular *> equation via the routine DLAED4 (as called by SLAED3). *> This routine also calculates the eigenvectors of the current *> problem. *> *> The final stage consists of computing the updated eigenvectors *> directly using the updated eigenvalues. The eigenvectors for *> the current problem are multiplied with the eigenvectors from *> the overall problem. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] CUTPNT *> \verbatim *> CUTPNT is INTEGER *> Contains the location of the last eigenvalue in the leading *> sub-matrix. min(1,N) <= CUTPNT <= N. *> \endverbatim *> *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the unitary matrix used to reduce *> the full matrix to tridiagonal form. QSIZ >= N. *> \endverbatim *> *> \param[in] TLVLS *> \verbatim *> TLVLS is INTEGER *> The total number of merging levels in the overall divide and *> conquer tree. *> \endverbatim *> *> \param[in] CURLVL *> \verbatim *> CURLVL is INTEGER *> The current level in the overall merge routine, *> 0 <= curlvl <= tlvls. *> \endverbatim *> *> \param[in] CURPBM *> \verbatim *> CURPBM is INTEGER *> The current problem in the current level in the overall *> merge routine (counting from upper left to lower right). *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the eigenvalues of the rank-1-perturbed matrix. *> On exit, the eigenvalues of the repaired matrix. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is COMPLEX*16 array, dimension (LDQ,N) *> On entry, the eigenvectors of the rank-1-perturbed matrix. *> On exit, the eigenvectors of the repaired tridiagonal matrix. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> Contains the subdiagonal element used to create the rank-1 *> modification. *> \endverbatim *> *> \param[out] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> This contains the permutation which will reintegrate the *> subproblem just solved back into sorted order, *> ie. D( INDXQ( I = 1, N ) ) will be in ascending order. *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (4*N) *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, *> dimension (3*N+2*QSIZ*N) *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (QSIZ*N) *> \endverbatim *> *> \param[in,out] QSTORE *> \verbatim *> QSTORE is DOUBLE PRECISION array, dimension (N**2+1) *> Stores eigenvectors of submatrices encountered during *> divide and conquer, packed together. QPTR points to *> beginning of the submatrices. *> \endverbatim *> *> \param[in,out] QPTR *> \verbatim *> QPTR is INTEGER array, dimension (N+2) *> List of indices pointing to beginning of submatrices stored *> in QSTORE. The submatrices are numbered starting at the *> bottom left of the divide and conquer tree, from left to *> right and bottom to top. *> \endverbatim *> *> \param[in] PRMPTR *> \verbatim *> PRMPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in PERM a *> level's permutation is stored. PRMPTR(i+1) - PRMPTR(i) *> indicates the size of the permutation and also the size of *> the full, non-deflated problem. *> \endverbatim *> *> \param[in] PERM *> \verbatim *> PERM is INTEGER array, dimension (N lg N) *> Contains the permutations (from deflation and sorting) to be *> applied to each eigenblock. *> \endverbatim *> *> \param[in] GIVPTR *> \verbatim *> GIVPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in GIVCOL a *> level's Givens rotations are stored. GIVPTR(i+1) - GIVPTR(i) *> indicates the number of Givens rotations. *> \endverbatim *> *> \param[in] GIVCOL *> \verbatim *> GIVCOL is INTEGER array, dimension (2, N lg N) *> Each pair of numbers indicates a pair of columns to take place *> in a Givens rotation. *> \endverbatim *> *> \param[in] GIVNUM *> \verbatim *> GIVNUM is DOUBLE PRECISION array, dimension (2, N lg N) *> Each number indicates the S value to be used in the *> corresponding Givens rotation. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = 1, an eigenvalue did not converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZLAED7( N, CUTPNT, QSIZ, TLVLS, CURLVL, CURPBM, D, Q, $ LDQ, RHO, INDXQ, QSTORE, QPTR, PRMPTR, PERM, $ GIVPTR, GIVCOL, GIVNUM, WORK, RWORK, IWORK, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER CURLVL, CURPBM, CUTPNT, INFO, LDQ, N, QSIZ, $ TLVLS DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER GIVCOL( 2, * ), GIVPTR( * ), INDXQ( * ), $ IWORK( * ), PERM( * ), PRMPTR( * ), QPTR( * ) DOUBLE PRECISION D( * ), GIVNUM( 2, * ), QSTORE( * ), RWORK( * ) COMPLEX*16 Q( LDQ, * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER COLTYP, CURR, I, IDLMDA, INDX, $ INDXC, INDXP, IQ, IW, IZ, K, N1, N2, PTR * .. * .. External Subroutines .. EXTERNAL DLAED9, DLAEDA, DLAMRG, XERBLA, ZLACRM, ZLAED8 * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * * IF( ICOMPQ.LT.0 .OR. ICOMPQ.GT.1 ) THEN * INFO = -1 * ELSE IF( N.LT.0 ) THEN IF( N.LT.0 ) THEN INFO = -1 ELSE IF( MIN( 1, N ).GT.CUTPNT .OR. N.LT.CUTPNT ) THEN INFO = -2 ELSE IF( QSIZ.LT.N ) THEN INFO = -3 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -9 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLAED7', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * The following values are for bookkeeping purposes only. They are * integer pointers which indicate the portion of the workspace * used by a particular array in DLAED2 and SLAED3. * IZ = 1 IDLMDA = IZ + N IW = IDLMDA + N IQ = IW + N * INDX = 1 INDXC = INDX + N COLTYP = INDXC + N INDXP = COLTYP + N * * Form the z-vector which consists of the last row of Q_1 and the * first row of Q_2. * PTR = 1 + 2**TLVLS DO 10 I = 1, CURLVL - 1 PTR = PTR + 2**( TLVLS-I ) 10 CONTINUE CURR = PTR + CURPBM CALL DLAEDA( N, TLVLS, CURLVL, CURPBM, PRMPTR, PERM, GIVPTR, $ GIVCOL, GIVNUM, QSTORE, QPTR, RWORK( IZ ), $ RWORK( IZ+N ), INFO ) * * When solving the final problem, we no longer need the stored data, * so we will overwrite the data from this level onto the previously * used storage space. * IF( CURLVL.EQ.TLVLS ) THEN QPTR( CURR ) = 1 PRMPTR( CURR ) = 1 GIVPTR( CURR ) = 1 END IF * * Sort and Deflate eigenvalues. * CALL ZLAED8( K, N, QSIZ, Q, LDQ, D, RHO, CUTPNT, RWORK( IZ ), $ RWORK( IDLMDA ), WORK, QSIZ, RWORK( IW ), $ IWORK( INDXP ), IWORK( INDX ), INDXQ, $ PERM( PRMPTR( CURR ) ), GIVPTR( CURR+1 ), $ GIVCOL( 1, GIVPTR( CURR ) ), $ GIVNUM( 1, GIVPTR( CURR ) ), INFO ) PRMPTR( CURR+1 ) = PRMPTR( CURR ) + N GIVPTR( CURR+1 ) = GIVPTR( CURR+1 ) + GIVPTR( CURR ) * * Solve Secular Equation. * IF( K.NE.0 ) THEN CALL DLAED9( K, 1, K, N, D, RWORK( IQ ), K, RHO, $ RWORK( IDLMDA ), RWORK( IW ), $ QSTORE( QPTR( CURR ) ), K, INFO ) CALL ZLACRM( QSIZ, K, WORK, QSIZ, QSTORE( QPTR( CURR ) ), K, Q, $ LDQ, RWORK( IQ ) ) QPTR( CURR+1 ) = QPTR( CURR ) + K**2 IF( INFO.NE.0 ) THEN RETURN END IF * * Prepare the INDXQ sorting premutation. * N1 = K N2 = N - K CALL DLAMRG( N1, N2, D, 1, -1, INDXQ ) ELSE QPTR( CURR+1 ) = QPTR( CURR ) DO 20 I = 1, N INDXQ( I ) = I 20 CONTINUE END IF * RETURN * * End of ZLAED7 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zladiv.f0000644000000000000000000000013214061636515015315 xustar0030 mtime=1623670093.395103903 30 atime=1623670093.395103903 30 ctime=1623670093.395103903 elk-7.2.42/src/LAPACK/zladiv.f0000644002504400250440000000457114061636515017361 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLADIV performs complex division in real arithmetic, avoiding unnecessary overflow. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLADIV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * COMPLEX*16 FUNCTION ZLADIV( X, Y ) * * .. Scalar Arguments .. * COMPLEX*16 X, Y * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLADIV := X / Y, where X and Y are complex. The computation of X / Y *> will not overflow on an intermediary step unless the results *> overflows. *> \endverbatim * * Arguments: * ========== * *> \param[in] X *> \verbatim *> X is COMPLEX*16 *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is COMPLEX*16 *> The complex scalars X and Y. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== COMPLEX*16 FUNCTION ZLADIV( X, Y ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. COMPLEX*16 X, Y * .. * * ===================================================================== * * .. Local Scalars .. DOUBLE PRECISION ZI, ZR * .. * .. External Subroutines .. EXTERNAL DLADIV * .. * .. Intrinsic Functions .. INTRINSIC DBLE, DCMPLX, DIMAG * .. * .. Executable Statements .. * CALL DLADIV( DBLE( X ), DIMAG( X ), DBLE( Y ), DIMAG( Y ), ZR, $ ZI ) ZLADIV = DCMPLX( ZR, ZI ) * RETURN * * End of ZLADIV * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr3.f0000644000000000000000000000013214061636515015240 xustar0030 mtime=1623670093.397103901 30 atime=1623670093.396103902 30 ctime=1623670093.397103901 elk-7.2.42/src/LAPACK/zlaqr3.f0000644002504400250440000004311514061636515017301 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR3 performs the unitary similarity transformation of a Hessenberg matrix to detect and deflate fully converged eigenvalues from a trailing principal submatrix (aggressive early deflation). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR3 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR3( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, * IHIZ, Z, LDZ, NS, ND, SH, V, LDV, NH, T, LDT, * NV, WV, LDWV, WORK, LWORK ) * * .. Scalar Arguments .. * INTEGER IHIZ, ILOZ, KBOT, KTOP, LDH, LDT, LDV, LDWV, * $ LDZ, LWORK, N, ND, NH, NS, NV, NW * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), SH( * ), T( LDT, * ), V( LDV, * ), * $ WORK( * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> Aggressive early deflation: *> *> ZLAQR3 accepts as input an upper Hessenberg matrix *> H and performs an unitary similarity transformation *> designed to detect and deflate fully converged eigenvalues from *> a trailing principal submatrix. On output H has been over- *> written by a new Hessenberg matrix that is a perturbation of *> an unitary similarity transformation of H. It is to be *> hoped that the final version of H has many zero subdiagonal *> entries. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> If .TRUE., then the Hessenberg matrix H is fully updated *> so that the triangular Schur factor may be *> computed (in cooperation with the calling subroutine). *> If .FALSE., then only enough of H is updated to preserve *> the eigenvalues. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> If .TRUE., then the unitary matrix Z is updated so *> so that the unitary Schur factor may be computed *> (in cooperation with the calling subroutine). *> If .FALSE., then Z is not referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H and (if WANTZ is .TRUE.) the *> order of the unitary matrix Z. *> \endverbatim *> *> \param[in] KTOP *> \verbatim *> KTOP is INTEGER *> It is assumed that either KTOP = 1 or H(KTOP,KTOP-1)=0. *> KBOT and KTOP together determine an isolated block *> along the diagonal of the Hessenberg matrix. *> \endverbatim *> *> \param[in] KBOT *> \verbatim *> KBOT is INTEGER *> It is assumed without a check that either *> KBOT = N or H(KBOT+1,KBOT)=0. KBOT and KTOP together *> determine an isolated block along the diagonal of the *> Hessenberg matrix. *> \endverbatim *> *> \param[in] NW *> \verbatim *> NW is INTEGER *> Deflation window size. 1 <= NW <= (KBOT-KTOP+1). *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On input the initial N-by-N section of H stores the *> Hessenberg matrix undergoing aggressive early deflation. *> On output H has been transformed by a unitary *> similarity transformation, perturbed, and the returned *> to Hessenberg form that (it is to be hoped) has some *> zero subdiagonal entries. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> Leading dimension of H just as declared in the calling *> subroutine. N <= LDH *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. 1 <= ILOZ <= IHIZ <= N. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,N) *> IF WANTZ is .TRUE., then on output, the unitary *> similarity transformation mentioned above has been *> accumulated into Z(ILOZ:IHIZ,ILOZ:IHIZ) from the right. *> If WANTZ is .FALSE., then Z is unreferenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of Z just as declared in the *> calling subroutine. 1 <= LDZ. *> \endverbatim *> *> \param[out] NS *> \verbatim *> NS is INTEGER *> The number of unconverged (ie approximate) eigenvalues *> returned in SR and SI that may be used as shifts by the *> calling subroutine. *> \endverbatim *> *> \param[out] ND *> \verbatim *> ND is INTEGER *> The number of converged eigenvalues uncovered by this *> subroutine. *> \endverbatim *> *> \param[out] SH *> \verbatim *> SH is COMPLEX*16 array, dimension (KBOT) *> On output, approximate eigenvalues that may *> be used for shifts are stored in SH(KBOT-ND-NS+1) *> through SR(KBOT-ND). Converged eigenvalues are *> stored in SH(KBOT-ND+1) through SH(KBOT). *> \endverbatim *> *> \param[out] V *> \verbatim *> V is COMPLEX*16 array, dimension (LDV,NW) *> An NW-by-NW work array. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of V just as declared in the *> calling subroutine. NW <= LDV *> \endverbatim *> *> \param[in] NH *> \verbatim *> NH is INTEGER *> The number of columns of T. NH >= NW. *> \endverbatim *> *> \param[out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,NW) *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of T just as declared in the *> calling subroutine. NW <= LDT *> \endverbatim *> *> \param[in] NV *> \verbatim *> NV is INTEGER *> The number of rows of work array WV available for *> workspace. NV >= NW. *> \endverbatim *> *> \param[out] WV *> \verbatim *> WV is COMPLEX*16 array, dimension (LDWV,NW) *> \endverbatim *> *> \param[in] LDWV *> \verbatim *> LDWV is INTEGER *> The leading dimension of W just as declared in the *> calling subroutine. NW <= LDV *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (LWORK) *> On exit, WORK(1) is set to an estimate of the optimal value *> of LWORK for the given values of N, NW, KTOP and KBOT. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the work array WORK. LWORK = 2*NW *> suffices, but greater efficiency may result from larger *> values of LWORK. *> *> If LWORK = -1, then a workspace query is assumed; ZLAQR3 *> only estimates the optimal workspace size for the given *> values of N, NW, KTOP and KBOT. The estimate is returned *> in WORK(1). No error message related to LWORK is issued *> by XERBLA. Neither H nor Z are accessed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA *> * ===================================================================== SUBROUTINE ZLAQR3( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, $ IHIZ, Z, LDZ, NS, ND, SH, V, LDV, NH, T, LDT, $ NV, WV, LDWV, WORK, LWORK ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER IHIZ, ILOZ, KBOT, KTOP, LDH, LDT, LDV, LDWV, $ LDZ, LWORK, N, ND, NH, NS, NV, NW LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), SH( * ), T( LDT, * ), V( LDV, * ), $ WORK( * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * ================================================================ * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO, RONE PARAMETER ( RZERO = 0.0d0, RONE = 1.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 BETA, CDUM, S, TAU DOUBLE PRECISION FOO, SAFMAX, SAFMIN, SMLNUM, ULP INTEGER I, IFST, ILST, INFO, INFQR, J, JW, KCOL, KLN, $ KNT, KROW, KWTOP, LTOP, LWK1, LWK2, LWK3, $ LWKOPT, NMIN * .. * .. External Functions .. DOUBLE PRECISION DLAMCH INTEGER ILAENV EXTERNAL DLAMCH, ILAENV * .. * .. External Subroutines .. EXTERNAL DLABAD, ZCOPY, ZGEHRD, ZGEMM, ZLACPY, ZLAHQR, $ ZLAQR4, ZLARF, ZLARFG, ZLASET, ZTREXC, ZUNMHR * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DCONJG, DIMAG, INT, MAX, MIN * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. * * ==== Estimate optimal workspace. ==== * JW = MIN( NW, KBOT-KTOP+1 ) IF( JW.LE.2 ) THEN LWKOPT = 1 ELSE * * ==== Workspace query call to ZGEHRD ==== * CALL ZGEHRD( JW, 1, JW-1, T, LDT, WORK, WORK, -1, INFO ) LWK1 = INT( WORK( 1 ) ) * * ==== Workspace query call to ZUNMHR ==== * CALL ZUNMHR( 'R', 'N', JW, JW, 1, JW-1, T, LDT, WORK, V, LDV, $ WORK, -1, INFO ) LWK2 = INT( WORK( 1 ) ) * * ==== Workspace query call to ZLAQR4 ==== * CALL ZLAQR4( .true., .true., JW, 1, JW, T, LDT, SH, 1, JW, V, $ LDV, WORK, -1, INFQR ) LWK3 = INT( WORK( 1 ) ) * * ==== Optimal workspace ==== * LWKOPT = MAX( JW+MAX( LWK1, LWK2 ), LWK3 ) END IF * * ==== Quick return in case of workspace query. ==== * IF( LWORK.EQ.-1 ) THEN WORK( 1 ) = DCMPLX( LWKOPT, 0 ) RETURN END IF * * ==== Nothing to do ... * ... for an empty active block ... ==== NS = 0 ND = 0 WORK( 1 ) = ONE IF( KTOP.GT.KBOT ) $ RETURN * ... nor for an empty deflation window. ==== IF( NW.LT.1 ) $ RETURN * * ==== Machine constants ==== * SAFMIN = DLAMCH( 'SAFE MINIMUM' ) SAFMAX = RONE / SAFMIN CALL DLABAD( SAFMIN, SAFMAX ) ULP = DLAMCH( 'PRECISION' ) SMLNUM = SAFMIN*( DBLE( N ) / ULP ) * * ==== Setup deflation window ==== * JW = MIN( NW, KBOT-KTOP+1 ) KWTOP = KBOT - JW + 1 IF( KWTOP.EQ.KTOP ) THEN S = ZERO ELSE S = H( KWTOP, KWTOP-1 ) END IF * IF( KBOT.EQ.KWTOP ) THEN * * ==== 1-by-1 deflation window: not much to do ==== * SH( KWTOP ) = H( KWTOP, KWTOP ) NS = 1 ND = 0 IF( CABS1( S ).LE.MAX( SMLNUM, ULP*CABS1( H( KWTOP, $ KWTOP ) ) ) ) THEN NS = 0 ND = 1 IF( KWTOP.GT.KTOP ) $ H( KWTOP, KWTOP-1 ) = ZERO END IF WORK( 1 ) = ONE RETURN END IF * * ==== Convert to spike-triangular form. (In case of a * . rare QR failure, this routine continues to do * . aggressive early deflation using that part of * . the deflation window that converged using INFQR * . here and there to keep track.) ==== * CALL ZLACPY( 'U', JW, JW, H( KWTOP, KWTOP ), LDH, T, LDT ) CALL ZCOPY( JW-1, H( KWTOP+1, KWTOP ), LDH+1, T( 2, 1 ), LDT+1 ) * CALL ZLASET( 'A', JW, JW, ZERO, ONE, V, LDV ) NMIN = ILAENV( 12, 'ZLAQR3', 'SV', JW, 1, JW, LWORK ) IF( JW.GT.NMIN ) THEN CALL ZLAQR4( .true., .true., JW, 1, JW, T, LDT, SH( KWTOP ), 1, $ JW, V, LDV, WORK, LWORK, INFQR ) ELSE CALL ZLAHQR( .true., .true., JW, 1, JW, T, LDT, SH( KWTOP ), 1, $ JW, V, LDV, INFQR ) END IF * * ==== Deflation detection loop ==== * NS = JW ILST = INFQR + 1 DO 10 KNT = INFQR + 1, JW * * ==== Small spike tip deflation test ==== * FOO = CABS1( T( NS, NS ) ) IF( FOO.EQ.RZERO ) $ FOO = CABS1( S ) IF( CABS1( S )*CABS1( V( 1, NS ) ).LE.MAX( SMLNUM, ULP*FOO ) ) $ THEN * * ==== One more converged eigenvalue ==== * NS = NS - 1 ELSE * * ==== One undeflatable eigenvalue. Move it up out of the * . way. (ZTREXC can not fail in this case.) ==== * IFST = NS CALL ZTREXC( 'V', JW, T, LDT, V, LDV, IFST, ILST, INFO ) ILST = ILST + 1 END IF 10 CONTINUE * * ==== Return to Hessenberg form ==== * IF( NS.EQ.0 ) $ S = ZERO * IF( NS.LT.JW ) THEN * * ==== sorting the diagonal of T improves accuracy for * . graded matrices. ==== * DO 30 I = INFQR + 1, NS IFST = I DO 20 J = I + 1, NS IF( CABS1( T( J, J ) ).GT.CABS1( T( IFST, IFST ) ) ) $ IFST = J 20 CONTINUE ILST = I IF( IFST.NE.ILST ) $ CALL ZTREXC( 'V', JW, T, LDT, V, LDV, IFST, ILST, INFO ) 30 CONTINUE END IF * * ==== Restore shift/eigenvalue array from T ==== * DO 40 I = INFQR + 1, JW SH( KWTOP+I-1 ) = T( I, I ) 40 CONTINUE * * IF( NS.LT.JW .OR. S.EQ.ZERO ) THEN IF( NS.GT.1 .AND. S.NE.ZERO ) THEN * * ==== Reflect spike back into lower triangle ==== * CALL ZCOPY( NS, V, LDV, WORK, 1 ) DO 50 I = 1, NS WORK( I ) = DCONJG( WORK( I ) ) 50 CONTINUE BETA = WORK( 1 ) CALL ZLARFG( NS, BETA, WORK( 2 ), 1, TAU ) WORK( 1 ) = ONE * CALL ZLASET( 'L', JW-2, JW-2, ZERO, ZERO, T( 3, 1 ), LDT ) * CALL ZLARF( 'L', NS, JW, WORK, 1, DCONJG( TAU ), T, LDT, $ WORK( JW+1 ) ) CALL ZLARF( 'R', NS, NS, WORK, 1, TAU, T, LDT, $ WORK( JW+1 ) ) CALL ZLARF( 'R', JW, NS, WORK, 1, TAU, V, LDV, $ WORK( JW+1 ) ) * CALL ZGEHRD( JW, 1, NS, T, LDT, WORK, WORK( JW+1 ), $ LWORK-JW, INFO ) END IF * * ==== Copy updated reduced window into place ==== * IF( KWTOP.GT.1 ) $ H( KWTOP, KWTOP-1 ) = S*DCONJG( V( 1, 1 ) ) CALL ZLACPY( 'U', JW, JW, T, LDT, H( KWTOP, KWTOP ), LDH ) CALL ZCOPY( JW-1, T( 2, 1 ), LDT+1, H( KWTOP+1, KWTOP ), $ LDH+1 ) * * ==== Accumulate orthogonal matrix in order update * . H and Z, if requested. ==== * IF( NS.GT.1 .AND. S.NE.ZERO ) $ CALL ZUNMHR( 'R', 'N', JW, NS, 1, NS, T, LDT, WORK, V, LDV, $ WORK( JW+1 ), LWORK-JW, INFO ) * * ==== Update vertical slab in H ==== * IF( WANTT ) THEN LTOP = 1 ELSE LTOP = KTOP END IF DO 60 KROW = LTOP, KWTOP - 1, NV KLN = MIN( NV, KWTOP-KROW ) CALL ZGEMM( 'N', 'N', KLN, JW, JW, ONE, H( KROW, KWTOP ), $ LDH, V, LDV, ZERO, WV, LDWV ) CALL ZLACPY( 'A', KLN, JW, WV, LDWV, H( KROW, KWTOP ), LDH ) 60 CONTINUE * * ==== Update horizontal slab in H ==== * IF( WANTT ) THEN DO 70 KCOL = KBOT + 1, N, NH KLN = MIN( NH, N-KCOL+1 ) CALL ZGEMM( 'C', 'N', JW, KLN, JW, ONE, V, LDV, $ H( KWTOP, KCOL ), LDH, ZERO, T, LDT ) CALL ZLACPY( 'A', JW, KLN, T, LDT, H( KWTOP, KCOL ), $ LDH ) 70 CONTINUE END IF * * ==== Update vertical slab in Z ==== * IF( WANTZ ) THEN DO 80 KROW = ILOZ, IHIZ, NV KLN = MIN( NV, IHIZ-KROW+1 ) CALL ZGEMM( 'N', 'N', KLN, JW, JW, ONE, Z( KROW, KWTOP ), $ LDZ, V, LDV, ZERO, WV, LDWV ) CALL ZLACPY( 'A', KLN, JW, WV, LDWV, Z( KROW, KWTOP ), $ LDZ ) 80 CONTINUE END IF END IF * * ==== Return the number of deflations ... ==== * ND = JW - NS * * ==== ... and the number of shifts. (Subtracting * . INFQR from the spike length takes care * . of the case of a rare QR failure while * . calculating eigenvalues of the deflation * . window.) ==== * NS = NS - INFQR * * ==== Return optimal workspace. ==== * WORK( 1 ) = DCMPLX( LWKOPT, 0 ) * * ==== End of ZLAQR3 ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr4.f0000644000000000000000000000013214061636515015241 xustar0030 mtime=1623670093.399103899 30 atime=1623670093.399103899 30 ctime=1623670093.399103899 elk-7.2.42/src/LAPACK/zlaqr4.f0000644002504400250440000006076514061636515017314 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR4 computes the eigenvalues of a Hessenberg matrix, and optionally the matrices from the Schur decomposition. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR4 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR4( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, * IHIZ, Z, LDZ, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, LWORK, N * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAQR4 implements one level of recursion for ZLAQR0. *> It is a complete implementation of the small bulge multi-shift *> QR algorithm. It may be called by ZLAQR0 and, for large enough *> deflation window size, it may be called by ZLAQR3. This *> subroutine is identical to ZLAQR0 except that it calls ZLAQR2 *> instead of ZLAQR3. *> *> ZLAQR4 computes the eigenvalues of a Hessenberg matrix H *> and, optionally, the matrices T and Z from the Schur decomposition *> H = Z T Z**H, where T is an upper triangular matrix (the *> Schur form), and Z is the unitary matrix of Schur vectors. *> *> Optionally Z may be postmultiplied into an input unitary *> matrix Q so that this routine can give the Schur factorization *> of a matrix A which has been reduced to the Hessenberg form H *> by the unitary matrix Q: A = Q*H*Q**H = (QZ)*H*(QZ)**H. *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> = .TRUE. : the full Schur form T is required; *> = .FALSE.: only eigenvalues are required. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> = .TRUE. : the matrix of Schur vectors Z is required; *> = .FALSE.: Schur vectors are not required. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> It is assumed that H is already upper triangular in rows *> and columns 1:ILO-1 and IHI+1:N and, if ILO > 1, *> H(ILO,ILO-1) is zero. ILO and IHI are normally set by a *> previous call to ZGEBAL, and then passed to ZGEHRD when the *> matrix output by ZGEBAL is reduced to Hessenberg form. *> Otherwise, ILO and IHI should be set to 1 and N, *> respectively. If N > 0, then 1 <= ILO <= IHI <= N. *> If N = 0, then ILO = 1 and IHI = 0. *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On entry, the upper Hessenberg matrix H. *> On exit, if INFO = 0 and WANTT is .TRUE., then H *> contains the upper triangular matrix T from the Schur *> decomposition (the Schur form). If INFO = 0 and WANT is *> .FALSE., then the contents of H are unspecified on exit. *> (The output value of H when INFO > 0 is given under the *> description of INFO below.) *> *> This subroutine may explicitly set H(i,j) = 0 for i > j and *> j = 1, 2, ... ILO-1 or j = IHI+1, IHI+2, ... N. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> The leading dimension of the array H. LDH >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is COMPLEX*16 array, dimension (N) *> The computed eigenvalues of H(ILO:IHI,ILO:IHI) are stored *> in W(ILO:IHI). If WANTT is .TRUE., then the eigenvalues are *> stored in the same order as on the diagonal of the Schur *> form returned in H, with W(i) = H(i,i). *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. *> 1 <= ILOZ <= ILO; IHI <= IHIZ <= N. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,IHI) *> If WANTZ is .FALSE., then Z is not referenced. *> If WANTZ is .TRUE., then Z(ILO:IHI,ILOZ:IHIZ) is *> replaced by Z(ILO:IHI,ILOZ:IHIZ)*U where U is the *> orthogonal Schur factor of H(ILO:IHI,ILO:IHI). *> (The output value of Z when INFO > 0 is given under *> the description of INFO below.) *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of the array Z. if WANTZ is .TRUE. *> then LDZ >= MAX(1,IHIZ). Otherwise, LDZ >= 1. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension LWORK *> On exit, if LWORK = -1, WORK(1) returns an estimate of *> the optimal value for LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. LWORK >= max(1,N) *> is sufficient, but LWORK typically as large as 6*N may *> be required for optimal performance. A workspace query *> to determine the optimal workspace size is recommended. *> *> If LWORK = -1, then ZLAQR4 does a workspace query. *> In this case, ZLAQR4 checks the input parameters and *> estimates the optimal workspace size for the given *> values of N, ILO and IHI. The estimate is returned *> in WORK(1). No error message related to LWORK is *> issued by XERBLA. Neither H nor Z are accessed. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> > 0: if INFO = i, ZLAQR4 failed to compute all of *> the eigenvalues. Elements 1:ilo-1 and i+1:n of WR *> and WI contain those eigenvalues which have been *> successfully computed. (Failures are rare.) *> *> If INFO > 0 and WANT is .FALSE., then on exit, *> the remaining unconverged eigenvalues are the eigen- *> values of the upper Hessenberg matrix rows and *> columns ILO through INFO of the final, output *> value of H. *> *> If INFO > 0 and WANTT is .TRUE., then on exit *> *> (*) (initial value of H)*U = U*(final value of H) *> *> where U is a unitary matrix. The final *> value of H is upper Hessenberg and triangular in *> rows and columns INFO+1 through IHI. *> *> If INFO > 0 and WANTZ is .TRUE., then on exit *> *> (final value of Z(ILO:IHI,ILOZ:IHIZ) *> = (initial value of Z(ILO:IHI,ILOZ:IHIZ)*U *> *> where U is the unitary matrix in (*) (regard- *> less of the value of WANTT.) *> *> If INFO > 0 and WANTZ is .FALSE., then Z is not *> accessed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA * *> \par References: * ================ *> *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 *> Performance, SIAM Journal of Matrix Analysis, volume 23, pages *> 929--947, 2002. *> \n *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part II: Aggressive Early Deflation, SIAM Journal *> of Matrix Analysis, volume 23, pages 948--973, 2002. *> * ===================================================================== SUBROUTINE ZLAQR4( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, $ IHIZ, Z, LDZ, WORK, LWORK, INFO ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER IHI, IHIZ, ILO, ILOZ, INFO, LDH, LDZ, LWORK, N LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), W( * ), WORK( * ), Z( LDZ, * ) * .. * * ================================================================ * * .. Parameters .. * * ==== Matrices of order NTINY or smaller must be processed by * . ZLAHQR because of insufficient subdiagonal scratch space. * . (This is a hard limit.) ==== INTEGER NTINY PARAMETER ( NTINY = 11 ) * * ==== Exceptional deflation windows: try to cure rare * . slow convergence by varying the size of the * . deflation window after KEXNW iterations. ==== INTEGER KEXNW PARAMETER ( KEXNW = 5 ) * * ==== Exceptional shifts: try to cure rare slow convergence * . with ad-hoc exceptional shifts every KEXSH iterations. * . ==== INTEGER KEXSH PARAMETER ( KEXSH = 6 ) * * ==== The constant WILK1 is used to form the exceptional * . shifts. ==== DOUBLE PRECISION WILK1 PARAMETER ( WILK1 = 0.75d0 ) COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 AA, BB, CC, CDUM, DD, DET, RTDISC, SWAP, TR2 DOUBLE PRECISION S INTEGER I, INF, IT, ITMAX, K, KACC22, KBOT, KDU, KS, $ KT, KTOP, KU, KV, KWH, KWTOP, KWV, LD, LS, $ LWKOPT, NDEC, NDFL, NH, NHO, NIBBLE, NMIN, NS, $ NSMAX, NSR, NVE, NW, NWMAX, NWR, NWUPBD LOGICAL SORTED CHARACTER JBCMPZ*2 * .. * .. External Functions .. INTEGER ILAENV EXTERNAL ILAENV * .. * .. Local Arrays .. COMPLEX*16 ZDUM( 1, 1 ) * .. * .. External Subroutines .. EXTERNAL ZLACPY, ZLAHQR, ZLAQR2, ZLAQR5 * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DIMAG, INT, MAX, MIN, MOD, $ SQRT * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. INFO = 0 * * ==== Quick return for N = 0: nothing to do. ==== * IF( N.EQ.0 ) THEN WORK( 1 ) = ONE RETURN END IF * IF( N.LE.NTINY ) THEN * * ==== Tiny matrices must use ZLAHQR. ==== * LWKOPT = 1 IF( LWORK.NE.-1 ) $ CALL ZLAHQR( WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, $ IHIZ, Z, LDZ, INFO ) ELSE * * ==== Use small bulge multi-shift QR with aggressive early * . deflation on larger-than-tiny matrices. ==== * * ==== Hope for the best. ==== * INFO = 0 * * ==== Set up job flags for ILAENV. ==== * IF( WANTT ) THEN JBCMPZ( 1: 1 ) = 'S' ELSE JBCMPZ( 1: 1 ) = 'E' END IF IF( WANTZ ) THEN JBCMPZ( 2: 2 ) = 'V' ELSE JBCMPZ( 2: 2 ) = 'N' END IF * * ==== NWR = recommended deflation window size. At this * . point, N .GT. NTINY = 11, so there is enough * . subdiagonal workspace for NWR.GE.2 as required. * . (In fact, there is enough subdiagonal space for * . NWR.GE.3.) ==== * NWR = ILAENV( 13, 'ZLAQR4', JBCMPZ, N, ILO, IHI, LWORK ) NWR = MAX( 2, NWR ) NWR = MIN( IHI-ILO+1, ( N-1 ) / 3, NWR ) * * ==== NSR = recommended number of simultaneous shifts. * . At this point N .GT. NTINY = 11, so there is at * . enough subdiagonal workspace for NSR to be even * . and greater than or equal to two as required. ==== * NSR = ILAENV( 15, 'ZLAQR4', JBCMPZ, N, ILO, IHI, LWORK ) NSR = MIN( NSR, ( N+6 ) / 9, IHI-ILO ) NSR = MAX( 2, NSR-MOD( NSR, 2 ) ) * * ==== Estimate optimal workspace ==== * * ==== Workspace query call to ZLAQR2 ==== * CALL ZLAQR2( WANTT, WANTZ, N, ILO, IHI, NWR+1, H, LDH, ILOZ, $ IHIZ, Z, LDZ, LS, LD, W, H, LDH, N, H, LDH, N, H, $ LDH, WORK, -1 ) * * ==== Optimal workspace = MAX(ZLAQR5, ZLAQR2) ==== * LWKOPT = MAX( 3*NSR / 2, INT( WORK( 1 ) ) ) * * ==== Quick return in case of workspace query. ==== * IF( LWORK.EQ.-1 ) THEN WORK( 1 ) = DCMPLX( LWKOPT, 0 ) RETURN END IF * * ==== ZLAHQR/ZLAQR0 crossover point ==== * NMIN = ILAENV( 12, 'ZLAQR4', JBCMPZ, N, ILO, IHI, LWORK ) NMIN = MAX( NTINY, NMIN ) * * ==== Nibble crossover point ==== * NIBBLE = ILAENV( 14, 'ZLAQR4', JBCMPZ, N, ILO, IHI, LWORK ) NIBBLE = MAX( 0, NIBBLE ) * * ==== Accumulate reflections during ttswp? Use block * . 2-by-2 structure during matrix-matrix multiply? ==== * KACC22 = ILAENV( 16, 'ZLAQR4', JBCMPZ, N, ILO, IHI, LWORK ) KACC22 = MAX( 0, KACC22 ) KACC22 = MIN( 2, KACC22 ) * * ==== NWMAX = the largest possible deflation window for * . which there is sufficient workspace. ==== * NWMAX = MIN( ( N-1 ) / 3, LWORK / 2 ) NW = NWMAX * * ==== NSMAX = the Largest number of simultaneous shifts * . for which there is sufficient workspace. ==== * NSMAX = MIN( ( N+6 ) / 9, 2*LWORK / 3 ) NSMAX = NSMAX - MOD( NSMAX, 2 ) * * ==== NDFL: an iteration count restarted at deflation. ==== * NDFL = 1 * * ==== ITMAX = iteration limit ==== * ITMAX = MAX( 30, 2*KEXSH )*MAX( 10, ( IHI-ILO+1 ) ) * * ==== Last row and column in the active block ==== * KBOT = IHI * * ==== Main Loop ==== * DO 70 IT = 1, ITMAX * * ==== Done when KBOT falls below ILO ==== * IF( KBOT.LT.ILO ) $ GO TO 80 * * ==== Locate active block ==== * DO 10 K = KBOT, ILO + 1, -1 IF( H( K, K-1 ).EQ.ZERO ) $ GO TO 20 10 CONTINUE K = ILO 20 CONTINUE KTOP = K * * ==== Select deflation window size: * . Typical Case: * . If possible and advisable, nibble the entire * . active block. If not, use size MIN(NWR,NWMAX) * . or MIN(NWR+1,NWMAX) depending upon which has * . the smaller corresponding subdiagonal entry * . (a heuristic). * . * . Exceptional Case: * . If there have been no deflations in KEXNW or * . more iterations, then vary the deflation window * . size. At first, because, larger windows are, * . in general, more powerful than smaller ones, * . rapidly increase the window to the maximum possible. * . Then, gradually reduce the window size. ==== * NH = KBOT - KTOP + 1 NWUPBD = MIN( NH, NWMAX ) IF( NDFL.LT.KEXNW ) THEN NW = MIN( NWUPBD, NWR ) ELSE NW = MIN( NWUPBD, 2*NW ) END IF IF( NW.LT.NWMAX ) THEN IF( NW.GE.NH-1 ) THEN NW = NH ELSE KWTOP = KBOT - NW + 1 IF( CABS1( H( KWTOP, KWTOP-1 ) ).GT. $ CABS1( H( KWTOP-1, KWTOP-2 ) ) )NW = NW + 1 END IF END IF IF( NDFL.LT.KEXNW ) THEN NDEC = -1 ELSE IF( NDEC.GE.0 .OR. NW.GE.NWUPBD ) THEN NDEC = NDEC + 1 IF( NW-NDEC.LT.2 ) $ NDEC = 0 NW = NW - NDEC END IF * * ==== Aggressive early deflation: * . split workspace under the subdiagonal into * . - an nw-by-nw work array V in the lower * . left-hand-corner, * . - an NW-by-at-least-NW-but-more-is-better * . (NW-by-NHO) horizontal work array along * . the bottom edge, * . - an at-least-NW-but-more-is-better (NHV-by-NW) * . vertical work array along the left-hand-edge. * . ==== * KV = N - NW + 1 KT = NW + 1 NHO = ( N-NW-1 ) - KT + 1 KWV = NW + 2 NVE = ( N-NW ) - KWV + 1 * * ==== Aggressive early deflation ==== * CALL ZLAQR2( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, $ IHIZ, Z, LDZ, LS, LD, W, H( KV, 1 ), LDH, NHO, $ H( KV, KT ), LDH, NVE, H( KWV, 1 ), LDH, WORK, $ LWORK ) * * ==== Adjust KBOT accounting for new deflations. ==== * KBOT = KBOT - LD * * ==== KS points to the shifts. ==== * KS = KBOT - LS + 1 * * ==== Skip an expensive QR sweep if there is a (partly * . heuristic) reason to expect that many eigenvalues * . will deflate without it. Here, the QR sweep is * . skipped if many eigenvalues have just been deflated * . or if the remaining active block is small. * IF( ( LD.EQ.0 ) .OR. ( ( 100*LD.LE.NW*NIBBLE ) .AND. ( KBOT- $ KTOP+1.GT.MIN( NMIN, NWMAX ) ) ) ) THEN * * ==== NS = nominal number of simultaneous shifts. * . This may be lowered (slightly) if ZLAQR2 * . did not provide that many shifts. ==== * NS = MIN( NSMAX, NSR, MAX( 2, KBOT-KTOP ) ) NS = NS - MOD( NS, 2 ) * * ==== If there have been no deflations * . in a multiple of KEXSH iterations, * . then try exceptional shifts. * . Otherwise use shifts provided by * . ZLAQR2 above or from the eigenvalues * . of a trailing principal submatrix. ==== * IF( MOD( NDFL, KEXSH ).EQ.0 ) THEN KS = KBOT - NS + 1 DO 30 I = KBOT, KS + 1, -2 W( I ) = H( I, I ) + WILK1*CABS1( H( I, I-1 ) ) W( I-1 ) = W( I ) 30 CONTINUE ELSE * * ==== Got NS/2 or fewer shifts? Use ZLAHQR * . on a trailing principal submatrix to * . get more. (Since NS.LE.NSMAX.LE.(N+6)/9, * . there is enough space below the subdiagonal * . to fit an NS-by-NS scratch array.) ==== * IF( KBOT-KS+1.LE.NS / 2 ) THEN KS = KBOT - NS + 1 KT = N - NS + 1 CALL ZLACPY( 'A', NS, NS, H( KS, KS ), LDH, $ H( KT, 1 ), LDH ) CALL ZLAHQR( .false., .false., NS, 1, NS, $ H( KT, 1 ), LDH, W( KS ), 1, 1, ZDUM, $ 1, INF ) KS = KS + INF * * ==== In case of a rare QR failure use * . eigenvalues of the trailing 2-by-2 * . principal submatrix. Scale to avoid * . overflows, underflows and subnormals. * . (The scale factor S can not be zero, * . because H(KBOT,KBOT-1) is nonzero.) ==== * IF( KS.GE.KBOT ) THEN S = CABS1( H( KBOT-1, KBOT-1 ) ) + $ CABS1( H( KBOT, KBOT-1 ) ) + $ CABS1( H( KBOT-1, KBOT ) ) + $ CABS1( H( KBOT, KBOT ) ) AA = H( KBOT-1, KBOT-1 ) / S CC = H( KBOT, KBOT-1 ) / S BB = H( KBOT-1, KBOT ) / S DD = H( KBOT, KBOT ) / S TR2 = ( AA+DD ) / TWO DET = ( AA-TR2 )*( DD-TR2 ) - BB*CC RTDISC = SQRT( -DET ) W( KBOT-1 ) = ( TR2+RTDISC )*S W( KBOT ) = ( TR2-RTDISC )*S * KS = KBOT - 1 END IF END IF * IF( KBOT-KS+1.GT.NS ) THEN * * ==== Sort the shifts (Helps a little) ==== * SORTED = .false. DO 50 K = KBOT, KS + 1, -1 IF( SORTED ) $ GO TO 60 SORTED = .true. DO 40 I = KS, K - 1 IF( CABS1( W( I ) ).LT.CABS1( W( I+1 ) ) ) $ THEN SORTED = .false. SWAP = W( I ) W( I ) = W( I+1 ) W( I+1 ) = SWAP END IF 40 CONTINUE 50 CONTINUE 60 CONTINUE END IF END IF * * ==== If there are only two shifts, then use * . only one. ==== * IF( KBOT-KS+1.EQ.2 ) THEN IF( CABS1( W( KBOT )-H( KBOT, KBOT ) ).LT. $ CABS1( W( KBOT-1 )-H( KBOT, KBOT ) ) ) THEN W( KBOT-1 ) = W( KBOT ) ELSE W( KBOT ) = W( KBOT-1 ) END IF END IF * * ==== Use up to NS of the the smallest magnitude * . shifts. If there aren't NS shifts available, * . then use them all, possibly dropping one to * . make the number of shifts even. ==== * NS = MIN( NS, KBOT-KS+1 ) NS = NS - MOD( NS, 2 ) KS = KBOT - NS + 1 * * ==== Small-bulge multi-shift QR sweep: * . split workspace under the subdiagonal into * . - a KDU-by-KDU work array U in the lower * . left-hand-corner, * . - a KDU-by-at-least-KDU-but-more-is-better * . (KDU-by-NHo) horizontal work array WH along * . the bottom edge, * . - and an at-least-KDU-but-more-is-better-by-KDU * . (NVE-by-KDU) vertical work WV arrow along * . the left-hand-edge. ==== * KDU = 3*NS - 3 KU = N - KDU + 1 KWH = KDU + 1 NHO = ( N-KDU+1-4 ) - ( KDU+1 ) + 1 KWV = KDU + 4 NVE = N - KDU - KWV + 1 * * ==== Small-bulge multi-shift QR sweep ==== * CALL ZLAQR5( WANTT, WANTZ, KACC22, N, KTOP, KBOT, NS, $ W( KS ), H, LDH, ILOZ, IHIZ, Z, LDZ, WORK, $ 3, H( KU, 1 ), LDH, NVE, H( KWV, 1 ), LDH, $ NHO, H( KU, KWH ), LDH ) END IF * * ==== Note progress (or the lack of it). ==== * IF( LD.GT.0 ) THEN NDFL = 1 ELSE NDFL = NDFL + 1 END IF * * ==== End of main loop ==== 70 CONTINUE * * ==== Iteration limit exceeded. Set INFO to show where * . the problem occurred and exit. ==== * INFO = KBOT 80 CONTINUE END IF * * ==== Return the optimal value of LWORK. ==== * WORK( 1 ) = DCMPLX( LWKOPT, 0 ) * * ==== End of ZLAQR4 ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr5.f0000644000000000000000000000013214061636515015242 xustar0030 mtime=1623670093.402103896 30 atime=1623670093.401103897 30 ctime=1623670093.402103896 elk-7.2.42/src/LAPACK/zlaqr5.f0000644002504400250440000010145114061636515017301 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR5 performs a single small-bulge multi-shift QR sweep. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR5 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR5( WANTT, WANTZ, KACC22, N, KTOP, KBOT, NSHFTS, S, * H, LDH, ILOZ, IHIZ, Z, LDZ, V, LDV, U, LDU, NV, * WV, LDWV, NH, WH, LDWH ) * * .. Scalar Arguments .. * INTEGER IHIZ, ILOZ, KACC22, KBOT, KTOP, LDH, LDU, LDV, * $ LDWH, LDWV, LDZ, N, NH, NSHFTS, NV * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), S( * ), U( LDU, * ), V( LDV, * ), * $ WH( LDWH, * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAQR5, called by ZLAQR0, performs a *> single small-bulge multi-shift QR sweep. *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> WANTT = .true. if the triangular Schur factor *> is being computed. WANTT is set to .false. otherwise. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> WANTZ = .true. if the unitary Schur factor is being *> computed. WANTZ is set to .false. otherwise. *> \endverbatim *> *> \param[in] KACC22 *> \verbatim *> KACC22 is INTEGER with value 0, 1, or 2. *> Specifies the computation mode of far-from-diagonal *> orthogonal updates. *> = 0: ZLAQR5 does not accumulate reflections and does not *> use matrix-matrix multiply to update far-from-diagonal *> matrix entries. *> = 1: ZLAQR5 accumulates reflections and uses matrix-matrix *> multiply to update the far-from-diagonal matrix entries. *> = 2: ZLAQR5 accumulates reflections, uses matrix-matrix *> multiply to update the far-from-diagonal matrix entries, *> and takes advantage of 2-by-2 block structure during *> matrix multiplies. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> N is the order of the Hessenberg matrix H upon which this *> subroutine operates. *> \endverbatim *> *> \param[in] KTOP *> \verbatim *> KTOP is INTEGER *> \endverbatim *> *> \param[in] KBOT *> \verbatim *> KBOT is INTEGER *> These are the first and last rows and columns of an *> isolated diagonal block upon which the QR sweep is to be *> applied. It is assumed without a check that *> either KTOP = 1 or H(KTOP,KTOP-1) = 0 *> and *> either KBOT = N or H(KBOT+1,KBOT) = 0. *> \endverbatim *> *> \param[in] NSHFTS *> \verbatim *> NSHFTS is INTEGER *> NSHFTS gives the number of simultaneous shifts. NSHFTS *> must be positive and even. *> \endverbatim *> *> \param[in,out] S *> \verbatim *> S is COMPLEX*16 array, dimension (NSHFTS) *> S contains the shifts of origin that define the multi- *> shift QR sweep. On output S may be reordered. *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On input H contains a Hessenberg matrix. On output a *> multi-shift QR sweep with shifts SR(J)+i*SI(J) is applied *> to the isolated diagonal block in rows and columns KTOP *> through KBOT. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> LDH is the leading dimension of H just as declared in the *> calling procedure. LDH >= MAX(1,N). *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. 1 <= ILOZ <= IHIZ <= N *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,IHIZ) *> If WANTZ = .TRUE., then the QR Sweep unitary *> similarity transformation is accumulated into *> Z(ILOZ:IHIZ,ILOZ:IHIZ) from the right. *> If WANTZ = .FALSE., then Z is unreferenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> LDA is the leading dimension of Z just as declared in *> the calling procedure. LDZ >= N. *> \endverbatim *> *> \param[out] V *> \verbatim *> V is COMPLEX*16 array, dimension (LDV,NSHFTS/2) *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> LDV is the leading dimension of V as declared in the *> calling procedure. LDV >= 3. *> \endverbatim *> *> \param[out] U *> \verbatim *> U is COMPLEX*16 array, dimension (LDU,3*NSHFTS-3) *> \endverbatim *> *> \param[in] LDU *> \verbatim *> LDU is INTEGER *> LDU is the leading dimension of U just as declared in the *> in the calling subroutine. LDU >= 3*NSHFTS-3. *> \endverbatim *> *> \param[in] NV *> \verbatim *> NV is INTEGER *> NV is the number of rows in WV agailable for workspace. *> NV >= 1. *> \endverbatim *> *> \param[out] WV *> \verbatim *> WV is COMPLEX*16 array, dimension (LDWV,3*NSHFTS-3) *> \endverbatim *> *> \param[in] LDWV *> \verbatim *> LDWV is INTEGER *> LDWV is the leading dimension of WV as declared in the *> in the calling subroutine. LDWV >= NV. *> \endverbatim * *> \param[in] NH *> \verbatim *> NH is INTEGER *> NH is the number of columns in array WH available for *> workspace. NH >= 1. *> \endverbatim *> *> \param[out] WH *> \verbatim *> WH is COMPLEX*16 array, dimension (LDWH,NH) *> \endverbatim *> *> \param[in] LDWH *> \verbatim *> LDWH is INTEGER *> Leading dimension of WH just as declared in the *> calling procedure. LDWH >= 3*NSHFTS-3. *> \endverbatim *> * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA * *> \par References: * ================ *> *> K. Braman, R. Byers and R. Mathias, The Multi-Shift QR *> Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 *> Performance, SIAM Journal of Matrix Analysis, volume 23, pages *> 929--947, 2002. *> * ===================================================================== SUBROUTINE ZLAQR5( WANTT, WANTZ, KACC22, N, KTOP, KBOT, NSHFTS, S, $ H, LDH, ILOZ, IHIZ, Z, LDZ, V, LDV, U, LDU, NV, $ WV, LDWV, NH, WH, LDWH ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER IHIZ, ILOZ, KACC22, KBOT, KTOP, LDH, LDU, LDV, $ LDWH, LDWV, LDZ, N, NH, NSHFTS, NV LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), S( * ), U( LDU, * ), V( LDV, * ), $ WH( LDWH, * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * ================================================================ * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO, RONE PARAMETER ( RZERO = 0.0d0, RONE = 1.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 ALPHA, BETA, CDUM, REFSUM DOUBLE PRECISION H11, H12, H21, H22, SAFMAX, SAFMIN, SCL, $ SMLNUM, TST1, TST2, ULP INTEGER I2, I4, INCOL, J, J2, J4, JBOT, JCOL, JLEN, $ JROW, JTOP, K, K1, KDU, KMS, KNZ, KRCOL, KZS, $ M, M22, MBOT, MEND, MSTART, MTOP, NBMPS, NDCOL, $ NS, NU LOGICAL ACCUM, BLK22, BMP22 * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Intrinsic Functions .. * INTRINSIC ABS, DBLE, DCONJG, DIMAG, MAX, MIN, MOD * .. * .. Local Arrays .. COMPLEX*16 VT( 3 ) * .. * .. External Subroutines .. EXTERNAL DLABAD, ZGEMM, ZLACPY, ZLAQR1, ZLARFG, ZLASET, $ ZTRMM * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. * * ==== If there are no shifts, then there is nothing to do. ==== * IF( NSHFTS.LT.2 ) $ RETURN * * ==== If the active block is empty or 1-by-1, then there * . is nothing to do. ==== * IF( KTOP.GE.KBOT ) $ RETURN * * ==== NSHFTS is supposed to be even, but if it is odd, * . then simply reduce it by one. ==== * NS = NSHFTS - MOD( NSHFTS, 2 ) * * ==== Machine constants for deflation ==== * SAFMIN = DLAMCH( 'SAFE MINIMUM' ) SAFMAX = RONE / SAFMIN CALL DLABAD( SAFMIN, SAFMAX ) ULP = DLAMCH( 'PRECISION' ) SMLNUM = SAFMIN*( DBLE( N ) / ULP ) * * ==== Use accumulated reflections to update far-from-diagonal * . entries ? ==== * ACCUM = ( KACC22.EQ.1 ) .OR. ( KACC22.EQ.2 ) * * ==== If so, exploit the 2-by-2 block structure? ==== * BLK22 = ( NS.GT.2 ) .AND. ( KACC22.EQ.2 ) * * ==== clear trash ==== * IF( KTOP+2.LE.KBOT ) $ H( KTOP+2, KTOP ) = ZERO * * ==== NBMPS = number of 2-shift bulges in the chain ==== * NBMPS = NS / 2 * * ==== KDU = width of slab ==== * KDU = 6*NBMPS - 3 * * ==== Create and chase chains of NBMPS bulges ==== * DO 210 INCOL = 3*( 1-NBMPS ) + KTOP - 1, KBOT - 2, 3*NBMPS - 2 NDCOL = INCOL + KDU IF( ACCUM ) $ CALL ZLASET( 'ALL', KDU, KDU, ZERO, ONE, U, LDU ) * * ==== Near-the-diagonal bulge chase. The following loop * . performs the near-the-diagonal part of a small bulge * . multi-shift QR sweep. Each 6*NBMPS-2 column diagonal * . chunk extends from column INCOL to column NDCOL * . (including both column INCOL and column NDCOL). The * . following loop chases a 3*NBMPS column long chain of * . NBMPS bulges 3*NBMPS-2 columns to the right. (INCOL * . may be less than KTOP and and NDCOL may be greater than * . KBOT indicating phantom columns from which to chase * . bulges before they are actually introduced or to which * . to chase bulges beyond column KBOT.) ==== * DO 140 KRCOL = INCOL, MIN( INCOL+3*NBMPS-3, KBOT-2 ) * * ==== Bulges number MTOP to MBOT are active double implicit * . shift bulges. There may or may not also be small * . 2-by-2 bulge, if there is room. The inactive bulges * . (if any) must wait until the active bulges have moved * . down the diagonal to make room. The phantom matrix * . paradigm described above helps keep track. ==== * MTOP = MAX( 1, ( ( KTOP-1 )-KRCOL+2 ) / 3+1 ) MBOT = MIN( NBMPS, ( KBOT-KRCOL ) / 3 ) M22 = MBOT + 1 BMP22 = ( MBOT.LT.NBMPS ) .AND. ( KRCOL+3*( M22-1 ) ).EQ. $ ( KBOT-2 ) * * ==== Generate reflections to chase the chain right * . one column. (The minimum value of K is KTOP-1.) ==== * DO 10 M = MTOP, MBOT K = KRCOL + 3*( M-1 ) IF( K.EQ.KTOP-1 ) THEN CALL ZLAQR1( 3, H( KTOP, KTOP ), LDH, S( 2*M-1 ), $ S( 2*M ), V( 1, M ) ) ALPHA = V( 1, M ) CALL ZLARFG( 3, ALPHA, V( 2, M ), 1, V( 1, M ) ) ELSE BETA = H( K+1, K ) V( 2, M ) = H( K+2, K ) V( 3, M ) = H( K+3, K ) CALL ZLARFG( 3, BETA, V( 2, M ), 1, V( 1, M ) ) * * ==== A Bulge may collapse because of vigilant * . deflation or destructive underflow. In the * . underflow case, try the two-small-subdiagonals * . trick to try to reinflate the bulge. ==== * IF( H( K+3, K ).NE.ZERO .OR. H( K+3, K+1 ).NE. $ ZERO .OR. H( K+3, K+2 ).EQ.ZERO ) THEN * * ==== Typical case: not collapsed (yet). ==== * H( K+1, K ) = BETA H( K+2, K ) = ZERO H( K+3, K ) = ZERO ELSE * * ==== Atypical case: collapsed. Attempt to * . reintroduce ignoring H(K+1,K) and H(K+2,K). * . If the fill resulting from the new * . reflector is too large, then abandon it. * . Otherwise, use the new one. ==== * CALL ZLAQR1( 3, H( K+1, K+1 ), LDH, S( 2*M-1 ), $ S( 2*M ), VT ) ALPHA = VT( 1 ) CALL ZLARFG( 3, ALPHA, VT( 2 ), 1, VT( 1 ) ) REFSUM = DCONJG( VT( 1 ) )* $ ( H( K+1, K )+DCONJG( VT( 2 ) )* $ H( K+2, K ) ) * IF( CABS1( H( K+2, K )-REFSUM*VT( 2 ) )+ $ CABS1( REFSUM*VT( 3 ) ).GT.ULP* $ ( CABS1( H( K, K ) )+CABS1( H( K+1, $ K+1 ) )+CABS1( H( K+2, K+2 ) ) ) ) THEN * * ==== Starting a new bulge here would * . create non-negligible fill. Use * . the old one with trepidation. ==== * H( K+1, K ) = BETA H( K+2, K ) = ZERO H( K+3, K ) = ZERO ELSE * * ==== Stating a new bulge here would * . create only negligible fill. * . Replace the old reflector with * . the new one. ==== * H( K+1, K ) = H( K+1, K ) - REFSUM H( K+2, K ) = ZERO H( K+3, K ) = ZERO V( 1, M ) = VT( 1 ) V( 2, M ) = VT( 2 ) V( 3, M ) = VT( 3 ) END IF END IF END IF 10 CONTINUE * * ==== Generate a 2-by-2 reflection, if needed. ==== * K = KRCOL + 3*( M22-1 ) IF( BMP22 ) THEN IF( K.EQ.KTOP-1 ) THEN CALL ZLAQR1( 2, H( K+1, K+1 ), LDH, S( 2*M22-1 ), $ S( 2*M22 ), V( 1, M22 ) ) BETA = V( 1, M22 ) CALL ZLARFG( 2, BETA, V( 2, M22 ), 1, V( 1, M22 ) ) ELSE BETA = H( K+1, K ) V( 2, M22 ) = H( K+2, K ) CALL ZLARFG( 2, BETA, V( 2, M22 ), 1, V( 1, M22 ) ) H( K+1, K ) = BETA H( K+2, K ) = ZERO END IF END IF * * ==== Multiply H by reflections from the left ==== * IF( ACCUM ) THEN JBOT = MIN( NDCOL, KBOT ) ELSE IF( WANTT ) THEN JBOT = N ELSE JBOT = KBOT END IF DO 30 J = MAX( KTOP, KRCOL ), JBOT MEND = MIN( MBOT, ( J-KRCOL+2 ) / 3 ) DO 20 M = MTOP, MEND K = KRCOL + 3*( M-1 ) REFSUM = DCONJG( V( 1, M ) )* $ ( H( K+1, J )+DCONJG( V( 2, M ) )* $ H( K+2, J )+DCONJG( V( 3, M ) )*H( K+3, J ) ) H( K+1, J ) = H( K+1, J ) - REFSUM H( K+2, J ) = H( K+2, J ) - REFSUM*V( 2, M ) H( K+3, J ) = H( K+3, J ) - REFSUM*V( 3, M ) 20 CONTINUE 30 CONTINUE IF( BMP22 ) THEN K = KRCOL + 3*( M22-1 ) DO 40 J = MAX( K+1, KTOP ), JBOT REFSUM = DCONJG( V( 1, M22 ) )* $ ( H( K+1, J )+DCONJG( V( 2, M22 ) )* $ H( K+2, J ) ) H( K+1, J ) = H( K+1, J ) - REFSUM H( K+2, J ) = H( K+2, J ) - REFSUM*V( 2, M22 ) 40 CONTINUE END IF * * ==== Multiply H by reflections from the right. * . Delay filling in the last row until the * . vigilant deflation check is complete. ==== * IF( ACCUM ) THEN JTOP = MAX( KTOP, INCOL ) ELSE IF( WANTT ) THEN JTOP = 1 ELSE JTOP = KTOP END IF DO 80 M = MTOP, MBOT IF( V( 1, M ).NE.ZERO ) THEN K = KRCOL + 3*( M-1 ) DO 50 J = JTOP, MIN( KBOT, K+3 ) REFSUM = V( 1, M )*( H( J, K+1 )+V( 2, M )* $ H( J, K+2 )+V( 3, M )*H( J, K+3 ) ) H( J, K+1 ) = H( J, K+1 ) - REFSUM H( J, K+2 ) = H( J, K+2 ) - $ REFSUM*DCONJG( V( 2, M ) ) H( J, K+3 ) = H( J, K+3 ) - $ REFSUM*DCONJG( V( 3, M ) ) 50 CONTINUE * IF( ACCUM ) THEN * * ==== Accumulate U. (If necessary, update Z later * . with with an efficient matrix-matrix * . multiply.) ==== * KMS = K - INCOL DO 60 J = MAX( 1, KTOP-INCOL ), KDU REFSUM = V( 1, M )*( U( J, KMS+1 )+V( 2, M )* $ U( J, KMS+2 )+V( 3, M )*U( J, KMS+3 ) ) U( J, KMS+1 ) = U( J, KMS+1 ) - REFSUM U( J, KMS+2 ) = U( J, KMS+2 ) - $ REFSUM*DCONJG( V( 2, M ) ) U( J, KMS+3 ) = U( J, KMS+3 ) - $ REFSUM*DCONJG( V( 3, M ) ) 60 CONTINUE ELSE IF( WANTZ ) THEN * * ==== U is not accumulated, so update Z * . now by multiplying by reflections * . from the right. ==== * DO 70 J = ILOZ, IHIZ REFSUM = V( 1, M )*( Z( J, K+1 )+V( 2, M )* $ Z( J, K+2 )+V( 3, M )*Z( J, K+3 ) ) Z( J, K+1 ) = Z( J, K+1 ) - REFSUM Z( J, K+2 ) = Z( J, K+2 ) - $ REFSUM*DCONJG( V( 2, M ) ) Z( J, K+3 ) = Z( J, K+3 ) - $ REFSUM*DCONJG( V( 3, M ) ) 70 CONTINUE END IF END IF 80 CONTINUE * * ==== Special case: 2-by-2 reflection (if needed) ==== * K = KRCOL + 3*( M22-1 ) IF( BMP22 ) THEN IF ( V( 1, M22 ).NE.ZERO ) THEN DO 90 J = JTOP, MIN( KBOT, K+3 ) REFSUM = V( 1, M22 )*( H( J, K+1 )+V( 2, M22 )* $ H( J, K+2 ) ) H( J, K+1 ) = H( J, K+1 ) - REFSUM H( J, K+2 ) = H( J, K+2 ) - $ REFSUM*DCONJG( V( 2, M22 ) ) 90 CONTINUE * IF( ACCUM ) THEN KMS = K - INCOL DO 100 J = MAX( 1, KTOP-INCOL ), KDU REFSUM = V( 1, M22 )*( U( J, KMS+1 )+ $ V( 2, M22 )*U( J, KMS+2 ) ) U( J, KMS+1 ) = U( J, KMS+1 ) - REFSUM U( J, KMS+2 ) = U( J, KMS+2 ) - $ REFSUM*DCONJG( V( 2, M22 ) ) 100 CONTINUE ELSE IF( WANTZ ) THEN DO 110 J = ILOZ, IHIZ REFSUM = V( 1, M22 )*( Z( J, K+1 )+V( 2, M22 )* $ Z( J, K+2 ) ) Z( J, K+1 ) = Z( J, K+1 ) - REFSUM Z( J, K+2 ) = Z( J, K+2 ) - $ REFSUM*DCONJG( V( 2, M22 ) ) 110 CONTINUE END IF END IF END IF * * ==== Vigilant deflation check ==== * MSTART = MTOP IF( KRCOL+3*( MSTART-1 ).LT.KTOP ) $ MSTART = MSTART + 1 MEND = MBOT IF( BMP22 ) $ MEND = MEND + 1 IF( KRCOL.EQ.KBOT-2 ) $ MEND = MEND + 1 DO 120 M = MSTART, MEND K = MIN( KBOT-1, KRCOL+3*( M-1 ) ) * * ==== The following convergence test requires that * . the tradition small-compared-to-nearby-diagonals * . criterion and the Ahues & Tisseur (LAWN 122, 1997) * . criteria both be satisfied. The latter improves * . accuracy in some examples. Falling back on an * . alternate convergence criterion when TST1 or TST2 * . is zero (as done here) is traditional but probably * . unnecessary. ==== * IF( H( K+1, K ).NE.ZERO ) THEN TST1 = CABS1( H( K, K ) ) + CABS1( H( K+1, K+1 ) ) IF( TST1.EQ.RZERO ) THEN IF( K.GE.KTOP+1 ) $ TST1 = TST1 + CABS1( H( K, K-1 ) ) IF( K.GE.KTOP+2 ) $ TST1 = TST1 + CABS1( H( K, K-2 ) ) IF( K.GE.KTOP+3 ) $ TST1 = TST1 + CABS1( H( K, K-3 ) ) IF( K.LE.KBOT-2 ) $ TST1 = TST1 + CABS1( H( K+2, K+1 ) ) IF( K.LE.KBOT-3 ) $ TST1 = TST1 + CABS1( H( K+3, K+1 ) ) IF( K.LE.KBOT-4 ) $ TST1 = TST1 + CABS1( H( K+4, K+1 ) ) END IF IF( CABS1( H( K+1, K ) ).LE.MAX( SMLNUM, ULP*TST1 ) ) $ THEN H12 = MAX( CABS1( H( K+1, K ) ), $ CABS1( H( K, K+1 ) ) ) H21 = MIN( CABS1( H( K+1, K ) ), $ CABS1( H( K, K+1 ) ) ) H11 = MAX( CABS1( H( K+1, K+1 ) ), $ CABS1( H( K, K )-H( K+1, K+1 ) ) ) H22 = MIN( CABS1( H( K+1, K+1 ) ), $ CABS1( H( K, K )-H( K+1, K+1 ) ) ) SCL = H11 + H12 TST2 = H22*( H11 / SCL ) * IF( TST2.EQ.RZERO .OR. H21*( H12 / SCL ).LE. $ MAX( SMLNUM, ULP*TST2 ) )H( K+1, K ) = ZERO END IF END IF 120 CONTINUE * * ==== Fill in the last row of each bulge. ==== * MEND = MIN( NBMPS, ( KBOT-KRCOL-1 ) / 3 ) DO 130 M = MTOP, MEND K = KRCOL + 3*( M-1 ) REFSUM = V( 1, M )*V( 3, M )*H( K+4, K+3 ) H( K+4, K+1 ) = -REFSUM H( K+4, K+2 ) = -REFSUM*DCONJG( V( 2, M ) ) H( K+4, K+3 ) = H( K+4, K+3 ) - $ REFSUM*DCONJG( V( 3, M ) ) 130 CONTINUE * * ==== End of near-the-diagonal bulge chase. ==== * 140 CONTINUE * * ==== Use U (if accumulated) to update far-from-diagonal * . entries in H. If required, use U to update Z as * . well. ==== * IF( ACCUM ) THEN IF( WANTT ) THEN JTOP = 1 JBOT = N ELSE JTOP = KTOP JBOT = KBOT END IF IF( ( .NOT.BLK22 ) .OR. ( INCOL.LT.KTOP ) .OR. $ ( NDCOL.GT.KBOT ) .OR. ( NS.LE.2 ) ) THEN * * ==== Updates not exploiting the 2-by-2 block * . structure of U. K1 and NU keep track of * . the location and size of U in the special * . cases of introducing bulges and chasing * . bulges off the bottom. In these special * . cases and in case the number of shifts * . is NS = 2, there is no 2-by-2 block * . structure to exploit. ==== * K1 = MAX( 1, KTOP-INCOL ) NU = ( KDU-MAX( 0, NDCOL-KBOT ) ) - K1 + 1 * * ==== Horizontal Multiply ==== * DO 150 JCOL = MIN( NDCOL, KBOT ) + 1, JBOT, NH JLEN = MIN( NH, JBOT-JCOL+1 ) CALL ZGEMM( 'C', 'N', NU, JLEN, NU, ONE, U( K1, K1 ), $ LDU, H( INCOL+K1, JCOL ), LDH, ZERO, WH, $ LDWH ) CALL ZLACPY( 'ALL', NU, JLEN, WH, LDWH, $ H( INCOL+K1, JCOL ), LDH ) 150 CONTINUE * * ==== Vertical multiply ==== * DO 160 JROW = JTOP, MAX( KTOP, INCOL ) - 1, NV JLEN = MIN( NV, MAX( KTOP, INCOL )-JROW ) CALL ZGEMM( 'N', 'N', JLEN, NU, NU, ONE, $ H( JROW, INCOL+K1 ), LDH, U( K1, K1 ), $ LDU, ZERO, WV, LDWV ) CALL ZLACPY( 'ALL', JLEN, NU, WV, LDWV, $ H( JROW, INCOL+K1 ), LDH ) 160 CONTINUE * * ==== Z multiply (also vertical) ==== * IF( WANTZ ) THEN DO 170 JROW = ILOZ, IHIZ, NV JLEN = MIN( NV, IHIZ-JROW+1 ) CALL ZGEMM( 'N', 'N', JLEN, NU, NU, ONE, $ Z( JROW, INCOL+K1 ), LDZ, U( K1, K1 ), $ LDU, ZERO, WV, LDWV ) CALL ZLACPY( 'ALL', JLEN, NU, WV, LDWV, $ Z( JROW, INCOL+K1 ), LDZ ) 170 CONTINUE END IF ELSE * * ==== Updates exploiting U's 2-by-2 block structure. * . (I2, I4, J2, J4 are the last rows and columns * . of the blocks.) ==== * I2 = ( KDU+1 ) / 2 I4 = KDU J2 = I4 - I2 J4 = KDU * * ==== KZS and KNZ deal with the band of zeros * . along the diagonal of one of the triangular * . blocks. ==== * KZS = ( J4-J2 ) - ( NS+1 ) KNZ = NS + 1 * * ==== Horizontal multiply ==== * DO 180 JCOL = MIN( NDCOL, KBOT ) + 1, JBOT, NH JLEN = MIN( NH, JBOT-JCOL+1 ) * * ==== Copy bottom of H to top+KZS of scratch ==== * (The first KZS rows get multiplied by zero.) ==== * CALL ZLACPY( 'ALL', KNZ, JLEN, H( INCOL+1+J2, JCOL ), $ LDH, WH( KZS+1, 1 ), LDWH ) * * ==== Multiply by U21**H ==== * CALL ZLASET( 'ALL', KZS, JLEN, ZERO, ZERO, WH, LDWH ) CALL ZTRMM( 'L', 'U', 'C', 'N', KNZ, JLEN, ONE, $ U( J2+1, 1+KZS ), LDU, WH( KZS+1, 1 ), $ LDWH ) * * ==== Multiply top of H by U11**H ==== * CALL ZGEMM( 'C', 'N', I2, JLEN, J2, ONE, U, LDU, $ H( INCOL+1, JCOL ), LDH, ONE, WH, LDWH ) * * ==== Copy top of H to bottom of WH ==== * CALL ZLACPY( 'ALL', J2, JLEN, H( INCOL+1, JCOL ), LDH, $ WH( I2+1, 1 ), LDWH ) * * ==== Multiply by U21**H ==== * CALL ZTRMM( 'L', 'L', 'C', 'N', J2, JLEN, ONE, $ U( 1, I2+1 ), LDU, WH( I2+1, 1 ), LDWH ) * * ==== Multiply by U22 ==== * CALL ZGEMM( 'C', 'N', I4-I2, JLEN, J4-J2, ONE, $ U( J2+1, I2+1 ), LDU, $ H( INCOL+1+J2, JCOL ), LDH, ONE, $ WH( I2+1, 1 ), LDWH ) * * ==== Copy it back ==== * CALL ZLACPY( 'ALL', KDU, JLEN, WH, LDWH, $ H( INCOL+1, JCOL ), LDH ) 180 CONTINUE * * ==== Vertical multiply ==== * DO 190 JROW = JTOP, MAX( INCOL, KTOP ) - 1, NV JLEN = MIN( NV, MAX( INCOL, KTOP )-JROW ) * * ==== Copy right of H to scratch (the first KZS * . columns get multiplied by zero) ==== * CALL ZLACPY( 'ALL', JLEN, KNZ, H( JROW, INCOL+1+J2 ), $ LDH, WV( 1, 1+KZS ), LDWV ) * * ==== Multiply by U21 ==== * CALL ZLASET( 'ALL', JLEN, KZS, ZERO, ZERO, WV, LDWV ) CALL ZTRMM( 'R', 'U', 'N', 'N', JLEN, KNZ, ONE, $ U( J2+1, 1+KZS ), LDU, WV( 1, 1+KZS ), $ LDWV ) * * ==== Multiply by U11 ==== * CALL ZGEMM( 'N', 'N', JLEN, I2, J2, ONE, $ H( JROW, INCOL+1 ), LDH, U, LDU, ONE, WV, $ LDWV ) * * ==== Copy left of H to right of scratch ==== * CALL ZLACPY( 'ALL', JLEN, J2, H( JROW, INCOL+1 ), LDH, $ WV( 1, 1+I2 ), LDWV ) * * ==== Multiply by U21 ==== * CALL ZTRMM( 'R', 'L', 'N', 'N', JLEN, I4-I2, ONE, $ U( 1, I2+1 ), LDU, WV( 1, 1+I2 ), LDWV ) * * ==== Multiply by U22 ==== * CALL ZGEMM( 'N', 'N', JLEN, I4-I2, J4-J2, ONE, $ H( JROW, INCOL+1+J2 ), LDH, $ U( J2+1, I2+1 ), LDU, ONE, WV( 1, 1+I2 ), $ LDWV ) * * ==== Copy it back ==== * CALL ZLACPY( 'ALL', JLEN, KDU, WV, LDWV, $ H( JROW, INCOL+1 ), LDH ) 190 CONTINUE * * ==== Multiply Z (also vertical) ==== * IF( WANTZ ) THEN DO 200 JROW = ILOZ, IHIZ, NV JLEN = MIN( NV, IHIZ-JROW+1 ) * * ==== Copy right of Z to left of scratch (first * . KZS columns get multiplied by zero) ==== * CALL ZLACPY( 'ALL', JLEN, KNZ, $ Z( JROW, INCOL+1+J2 ), LDZ, $ WV( 1, 1+KZS ), LDWV ) * * ==== Multiply by U12 ==== * CALL ZLASET( 'ALL', JLEN, KZS, ZERO, ZERO, WV, $ LDWV ) CALL ZTRMM( 'R', 'U', 'N', 'N', JLEN, KNZ, ONE, $ U( J2+1, 1+KZS ), LDU, WV( 1, 1+KZS ), $ LDWV ) * * ==== Multiply by U11 ==== * CALL ZGEMM( 'N', 'N', JLEN, I2, J2, ONE, $ Z( JROW, INCOL+1 ), LDZ, U, LDU, ONE, $ WV, LDWV ) * * ==== Copy left of Z to right of scratch ==== * CALL ZLACPY( 'ALL', JLEN, J2, Z( JROW, INCOL+1 ), $ LDZ, WV( 1, 1+I2 ), LDWV ) * * ==== Multiply by U21 ==== * CALL ZTRMM( 'R', 'L', 'N', 'N', JLEN, I4-I2, ONE, $ U( 1, I2+1 ), LDU, WV( 1, 1+I2 ), $ LDWV ) * * ==== Multiply by U22 ==== * CALL ZGEMM( 'N', 'N', JLEN, I4-I2, J4-J2, ONE, $ Z( JROW, INCOL+1+J2 ), LDZ, $ U( J2+1, I2+1 ), LDU, ONE, $ WV( 1, 1+I2 ), LDWV ) * * ==== Copy the result back to Z ==== * CALL ZLACPY( 'ALL', JLEN, KDU, WV, LDWV, $ Z( JROW, INCOL+1 ), LDZ ) 200 CONTINUE END IF END IF END IF 210 CONTINUE * * ==== End of ZLAQR5 ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ilazlc.f0000644000000000000000000000013214061636515015302 xustar0030 mtime=1623670093.404103894 30 atime=1623670093.404103894 30 ctime=1623670093.404103894 elk-7.2.42/src/LAPACK/ilazlc.f0000644002504400250440000000565714061636515017354 0ustar00dewhurstdewhurst00000000000000*> \brief \b ILAZLC scans a matrix for its last non-zero column. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ILAZLC + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION ILAZLC( M, N, A, LDA ) * * .. Scalar Arguments .. * INTEGER M, N, LDA * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ILAZLC scans A for its last non-zero column. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The m by n matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== INTEGER FUNCTION ILAZLC( M, N, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER M, N, LDA * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = (0.0D+0, 0.0D+0) ) * .. * .. Local Scalars .. INTEGER I * .. * .. Executable Statements .. * * Quick test for the common case where one corner is non-zero. IF( N.EQ.0 ) THEN ILAZLC = N ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN ILAZLC = N ELSE * Now scan each column from the end, returning with the first non-zero. DO ILAZLC = N, 1, -1 DO I = 1, M IF( A(I, ILAZLC).NE.ZERO ) RETURN END DO END DO END IF RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ilazlr.f0000644000000000000000000000013214061636515015321 xustar0030 mtime=1623670093.406103893 30 atime=1623670093.406103893 30 ctime=1623670093.406103893 elk-7.2.42/src/LAPACK/ilazlr.f0000644002504400250440000000574214061636515017366 0ustar00dewhurstdewhurst00000000000000*> \brief \b ILAZLR scans a matrix for its last non-zero row. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ILAZLR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION ILAZLR( M, N, A, LDA ) * * .. Scalar Arguments .. * INTEGER M, N, LDA * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ILAZLR scans A for its last non-zero row. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> The m by n matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== INTEGER FUNCTION ILAZLR( M, N, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER M, N, LDA * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = (0.0D+0, 0.0D+0) ) * .. * .. Local Scalars .. INTEGER I, J * .. * .. Executable Statements .. * * Quick test for the common case where one corner is non-zero. IF( M.EQ.0 ) THEN ILAZLR = M ELSE IF( A(M, 1).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN ILAZLR = M ELSE * Scan up each column tracking the last zero row seen. ILAZLR = 0 DO J = 1, N I=M DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1)) I=I-1 ENDDO ILAZLR = MAX( ILAZLR, I ) END DO END IF RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlapy3.f0000644000000000000000000000013214061636515015220 xustar0030 mtime=1623670093.408103891 30 atime=1623670093.407103892 30 ctime=1623670093.408103891 elk-7.2.42/src/LAPACK/dlapy3.f0000644002504400250440000000526614061636515017266 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAPY3 returns sqrt(x2+y2+z2). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAPY3 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * DOUBLE PRECISION FUNCTION DLAPY3( X, Y, Z ) * * .. Scalar Arguments .. * DOUBLE PRECISION X, Y, Z * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAPY3 returns sqrt(x**2+y**2+z**2), taking care not to cause *> unnecessary overflow. *> \endverbatim * * Arguments: * ========== * *> \param[in] X *> \verbatim *> X is DOUBLE PRECISION *> \endverbatim *> *> \param[in] Y *> \verbatim *> Y is DOUBLE PRECISION *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION *> X, Y and Z specify the values x, y and z. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== DOUBLE PRECISION FUNCTION DLAPY3( X, Y, Z ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION X, Y, Z * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) * .. * .. Local Scalars .. DOUBLE PRECISION W, XABS, YABS, ZABS * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, SQRT * .. * .. Executable Statements .. * XABS = ABS( X ) YABS = ABS( Y ) ZABS = ABS( Z ) W = MAX( XABS, YABS, ZABS ) IF( W.EQ.ZERO ) THEN * W can be zero for max(0,nan,0) * adding all three entries together will make sure * NaN will not disappear. DLAPY3 = XABS + YABS + ZABS ELSE DLAPY3 = W*SQRT( ( XABS / W )**2+( YABS / W )**2+ $ ( ZABS / W )**2 ) END IF RETURN * * End of DLAPY3 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunml2.f0000644000000000000000000000012714061636515015257 xustar0029 mtime=1623670093.40910389 29 atime=1623670093.40910389 29 ctime=1623670093.40910389 elk-7.2.42/src/LAPACK/zunml2.f0000644002504400250440000001705014061636515017313 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNML2 multiplies a general matrix by the unitary matrix from a LQ factorization determined by cgelqf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNML2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNML2( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNML2 overwrites the general complex m-by-n matrix C with *> *> Q * C if SIDE = 'L' and TRANS = 'N', or *> *> Q**H* C if SIDE = 'L' and TRANS = 'C', or *> *> C * Q if SIDE = 'R' and TRANS = 'N', or *> *> C * Q**H if SIDE = 'R' and TRANS = 'C', *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(k)**H . . . H(2)**H H(1)**H *> *> as returned by ZGELQF. Q is of order m if SIDE = 'L' and of order n *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left *> = 'R': apply Q or Q**H from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'C': apply Q**H (Conjugate transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension *> (LDA,M) if SIDE = 'L', *> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGELQF in the first k rows of its array argument A. *> A is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,K). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGELQF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the m-by-n matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (N) if SIDE = 'L', *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNML2( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LEFT, NOTRAN INTEGER I, I1, I2, I3, IC, JC, MI, NI, NQ COMPLEX*16 AII, TAUI * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLACGV, ZLARF * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, K ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNML2', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) $ RETURN * IF( ( LEFT .AND. NOTRAN .OR. .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN I1 = 1 I2 = K I3 = 1 ELSE I1 = K I2 = 1 I3 = -1 END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) or H(i)**H is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H(i) or H(i)**H is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H(i) or H(i)**H * IF( NOTRAN ) THEN TAUI = DCONJG( TAU( I ) ) ELSE TAUI = TAU( I ) END IF IF( I.LT.NQ ) $ CALL ZLACGV( NQ-I, A( I, I+1 ), LDA ) AII = A( I, I ) A( I, I ) = ONE CALL ZLARF( SIDE, MI, NI, A( I, I ), LDA, TAUI, C( IC, JC ), $ LDC, WORK ) A( I, I ) = AII IF( I.LT.NQ ) $ CALL ZLACGV( NQ-I, A( I, I+1 ), LDA ) 10 CONTINUE RETURN * * End of ZUNML2 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunm2l.f0000644000000000000000000000013214061636515015253 xustar0030 mtime=1623670093.411103888 30 atime=1623670093.411103888 30 ctime=1623670093.411103888 elk-7.2.42/src/LAPACK/zunm2l.f0000644002504400250440000001642314061636515017316 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNM2L multiplies a general matrix by the unitary matrix from a QL factorization determined by cgeqlf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNM2L + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNM2L overwrites the general complex m-by-n matrix C with *> *> Q * C if SIDE = 'L' and TRANS = 'N', or *> *> Q**H* C if SIDE = 'L' and TRANS = 'C', or *> *> C * Q if SIDE = 'R' and TRANS = 'N', or *> *> C * Q**H if SIDE = 'R' and TRANS = 'C', *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by ZGEQLF. Q is of order m if SIDE = 'L' and of order n *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left *> = 'R': apply Q or Q**H from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'C': apply Q**H (Conjugate transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGEQLF in the last k columns of its array argument A. *> A is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQLF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the m-by-n matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (N) if SIDE = 'L', *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LEFT, NOTRAN INTEGER I, I1, I2, I3, MI, NI, NQ COMPLEX*16 AII, TAUI * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNM2L', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) $ RETURN * IF( ( LEFT .AND. NOTRAN .OR. .NOT.LEFT .AND. .NOT.NOTRAN ) ) THEN I1 = 1 I2 = K I3 = 1 ELSE I1 = K I2 = 1 I3 = -1 END IF * IF( LEFT ) THEN NI = N ELSE MI = M END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) or H(i)**H is applied to C(1:m-k+i,1:n) * MI = M - K + I ELSE * * H(i) or H(i)**H is applied to C(1:m,1:n-k+i) * NI = N - K + I END IF * * Apply H(i) or H(i)**H * IF( NOTRAN ) THEN TAUI = TAU( I ) ELSE TAUI = DCONJG( TAU( I ) ) END IF AII = A( NQ-K+I, I ) A( NQ-K+I, I ) = ONE CALL ZLARF( SIDE, MI, NI, A( 1, I ), 1, TAUI, C, LDC, WORK ) A( NQ-K+I, I ) = AII 10 CONTINUE RETURN * * End of ZUNM2L * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunm2r.f0000644000000000000000000000013214061636515015261 xustar0030 mtime=1623670093.413103886 30 atime=1623670093.413103886 30 ctime=1623670093.413103886 elk-7.2.42/src/LAPACK/zunm2r.f0000644002504400250440000001655214061636515017327 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNM2R multiplies a general matrix by the unitary matrix from a QR factorization determined by cgeqrf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNM2R + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNM2R overwrites the general complex m-by-n matrix C with *> *> Q * C if SIDE = 'L' and TRANS = 'N', or *> *> Q**H* C if SIDE = 'L' and TRANS = 'C', or *> *> C * Q if SIDE = 'R' and TRANS = 'N', or *> *> C * Q**H if SIDE = 'R' and TRANS = 'C', *> *> where Q is a complex unitary matrix defined as the product of k *> elementary reflectors *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by ZGEQRF. Q is of order m if SIDE = 'L' and of order n *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left *> = 'R': apply Q or Q**H from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'C': apply Q**H (Conjugate transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> ZGEQRF in the first k columns of its array argument A. *> A is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEQRF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the m-by-n matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (N) if SIDE = 'L', *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. COMPLEX*16 ONE PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. LOGICAL LEFT, NOTRAN INTEGER I, I1, I2, I3, IC, JC, MI, NI, NQ COMPLEX*16 AII, TAUI * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARF * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'C' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNM2R', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) $ RETURN * IF( ( LEFT .AND. .NOT.NOTRAN .OR. .NOT.LEFT .AND. NOTRAN ) ) THEN I1 = 1 I2 = K I3 = 1 ELSE I1 = K I2 = 1 I3 = -1 END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) or H(i)**H is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H(i) or H(i)**H is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H(i) or H(i)**H * IF( NOTRAN ) THEN TAUI = TAU( I ) ELSE TAUI = DCONJG( TAU( I ) ) END IF AII = A( I, I ) A( I, I ) = ONE CALL ZLARF( SIDE, MI, NI, A( I, I ), 1, TAUI, C( IC, JC ), LDC, $ WORK ) A( I, I ) = AII 10 CONTINUE RETURN * * End of ZUNM2R * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed5.f0000644000000000000000000000013214061636515015162 xustar0030 mtime=1623670093.415103884 30 atime=1623670093.414103885 30 ctime=1623670093.415103884 elk-7.2.42/src/LAPACK/dlaed5.f0000644002504400250440000001237314061636515017225 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED5 used by sstedc. Solves the 2-by-2 secular equation. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED5 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED5( I, D, Z, DELTA, RHO, DLAM ) * * .. Scalar Arguments .. * INTEGER I * DOUBLE PRECISION DLAM, RHO * .. * .. Array Arguments .. * DOUBLE PRECISION D( 2 ), DELTA( 2 ), Z( 2 ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> This subroutine computes the I-th eigenvalue of a symmetric rank-one *> modification of a 2-by-2 diagonal matrix *> *> diag( D ) + RHO * Z * transpose(Z) . *> *> The diagonal elements in the array D are assumed to satisfy *> *> D(i) < D(j) for i < j . *> *> We also assume RHO > 0 and that the Euclidean norm of the vector *> Z is one. *> \endverbatim * * Arguments: * ========== * *> \param[in] I *> \verbatim *> I is INTEGER *> The index of the eigenvalue to be computed. I = 1 or I = 2. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (2) *> The original eigenvalues. We assume D(1) < D(2). *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (2) *> The components of the updating vector. *> \endverbatim *> *> \param[out] DELTA *> \verbatim *> DELTA is DOUBLE PRECISION array, dimension (2) *> The vector DELTA contains the information necessary *> to construct the eigenvectors. *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The scalar in the symmetric updating formula. *> \endverbatim *> *> \param[out] DLAM *> \verbatim *> DLAM is DOUBLE PRECISION *> The computed lambda_I, the I-th updated eigenvalue. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Ren-Cang Li, Computer Science Division, University of California *> at Berkeley, USA *> * ===================================================================== SUBROUTINE DLAED5( I, D, Z, DELTA, RHO, DLAM ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER I DOUBLE PRECISION DLAM, RHO * .. * .. Array Arguments .. DOUBLE PRECISION D( 2 ), DELTA( 2 ), Z( 2 ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, ONE, TWO, FOUR PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ FOUR = 4.0D0 ) * .. * .. Local Scalars .. DOUBLE PRECISION B, C, DEL, TAU, TEMP, W * .. * .. Intrinsic Functions .. INTRINSIC ABS, SQRT * .. * .. Executable Statements .. * DEL = D( 2 ) - D( 1 ) IF( I.EQ.1 ) THEN W = ONE + TWO*RHO*( Z( 2 )*Z( 2 )-Z( 1 )*Z( 1 ) ) / DEL IF( W.GT.ZERO ) THEN B = DEL + RHO*( Z( 1 )*Z( 1 )+Z( 2 )*Z( 2 ) ) C = RHO*Z( 1 )*Z( 1 )*DEL * * B > ZERO, always * TAU = TWO*C / ( B+SQRT( ABS( B*B-FOUR*C ) ) ) DLAM = D( 1 ) + TAU DELTA( 1 ) = -Z( 1 ) / TAU DELTA( 2 ) = Z( 2 ) / ( DEL-TAU ) ELSE B = -DEL + RHO*( Z( 1 )*Z( 1 )+Z( 2 )*Z( 2 ) ) C = RHO*Z( 2 )*Z( 2 )*DEL IF( B.GT.ZERO ) THEN TAU = -TWO*C / ( B+SQRT( B*B+FOUR*C ) ) ELSE TAU = ( B-SQRT( B*B+FOUR*C ) ) / TWO END IF DLAM = D( 2 ) + TAU DELTA( 1 ) = -Z( 1 ) / ( DEL+TAU ) DELTA( 2 ) = -Z( 2 ) / TAU END IF TEMP = SQRT( DELTA( 1 )*DELTA( 1 )+DELTA( 2 )*DELTA( 2 ) ) DELTA( 1 ) = DELTA( 1 ) / TEMP DELTA( 2 ) = DELTA( 2 ) / TEMP ELSE * * Now I=2 * B = -DEL + RHO*( Z( 1 )*Z( 1 )+Z( 2 )*Z( 2 ) ) C = RHO*Z( 2 )*Z( 2 )*DEL IF( B.GT.ZERO ) THEN TAU = ( B+SQRT( B*B+FOUR*C ) ) / TWO ELSE TAU = TWO*C / ( -B+SQRT( B*B+FOUR*C ) ) END IF DLAM = D( 2 ) + TAU DELTA( 1 ) = -Z( 1 ) / ( DEL+TAU ) DELTA( 2 ) = -Z( 2 ) / TAU TEMP = SQRT( DELTA( 1 )*DELTA( 1 )+DELTA( 2 )*DELTA( 2 ) ) DELTA( 1 ) = DELTA( 1 ) / TEMP DELTA( 2 ) = DELTA( 2 ) / TEMP END IF RETURN * * End OF DLAED5 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed7.f0000644000000000000000000000013214061636515015164 xustar0030 mtime=1623670093.417103882 30 atime=1623670093.416103883 30 ctime=1623670093.417103882 elk-7.2.42/src/LAPACK/dlaed7.f0000644002504400250440000003172314061636515017227 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED7 used by sstedc. Computes the updated eigensystem of a diagonal matrix after modification by a rank-one symmetric matrix. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED7 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED7( ICOMPQ, N, QSIZ, TLVLS, CURLVL, CURPBM, D, Q, * LDQ, INDXQ, RHO, CUTPNT, QSTORE, QPTR, PRMPTR, * PERM, GIVPTR, GIVCOL, GIVNUM, WORK, IWORK, * INFO ) * * .. Scalar Arguments .. * INTEGER CURLVL, CURPBM, CUTPNT, ICOMPQ, INFO, LDQ, N, * $ QSIZ, TLVLS * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER GIVCOL( 2, * ), GIVPTR( * ), INDXQ( * ), * $ IWORK( * ), PERM( * ), PRMPTR( * ), QPTR( * ) * DOUBLE PRECISION D( * ), GIVNUM( 2, * ), Q( LDQ, * ), * $ QSTORE( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED7 computes the updated eigensystem of a diagonal *> matrix after modification by a rank-one symmetric matrix. This *> routine is used only for the eigenproblem which requires all *> eigenvalues and optionally eigenvectors of a dense symmetric matrix *> that has been reduced to tridiagonal form. DLAED1 handles *> the case in which all eigenvalues and eigenvectors of a symmetric *> tridiagonal matrix are desired. *> *> T = Q(in) ( D(in) + RHO * Z*Z**T ) Q**T(in) = Q(out) * D(out) * Q**T(out) *> *> where Z = Q**Tu, u is a vector of length N with ones in the *> CUTPNT and CUTPNT + 1 th elements and zeros elsewhere. *> *> The eigenvectors of the original matrix are stored in Q, and the *> eigenvalues are in D. The algorithm consists of three stages: *> *> The first stage consists of deflating the size of the problem *> when there are multiple eigenvalues or if there is a zero in *> the Z vector. For each such occurrence the dimension of the *> secular equation problem is reduced by one. This stage is *> performed by the routine DLAED8. *> *> The second stage consists of calculating the updated *> eigenvalues. This is done by finding the roots of the secular *> equation via the routine DLAED4 (as called by DLAED9). *> This routine also calculates the eigenvectors of the current *> problem. *> *> The final stage consists of computing the updated eigenvectors *> directly using the updated eigenvalues. The eigenvectors for *> the current problem are multiplied with the eigenvectors from *> the overall problem. *> \endverbatim * * Arguments: * ========== * *> \param[in] ICOMPQ *> \verbatim *> ICOMPQ is INTEGER *> = 0: Compute eigenvalues only. *> = 1: Compute eigenvectors of original dense symmetric matrix *> also. On entry, Q contains the orthogonal matrix used *> to reduce the original matrix to tridiagonal form. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the orthogonal matrix used to reduce *> the full matrix to tridiagonal form. QSIZ >= N if ICOMPQ = 1. *> \endverbatim *> *> \param[in] TLVLS *> \verbatim *> TLVLS is INTEGER *> The total number of merging levels in the overall divide and *> conquer tree. *> \endverbatim *> *> \param[in] CURLVL *> \verbatim *> CURLVL is INTEGER *> The current level in the overall merge routine, *> 0 <= CURLVL <= TLVLS. *> \endverbatim *> *> \param[in] CURPBM *> \verbatim *> CURPBM is INTEGER *> The current problem in the current level in the overall *> merge routine (counting from upper left to lower right). *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the eigenvalues of the rank-1-perturbed matrix. *> On exit, the eigenvalues of the repaired matrix. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ, N) *> On entry, the eigenvectors of the rank-1-perturbed matrix. *> On exit, the eigenvectors of the repaired tridiagonal matrix. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[out] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> The permutation which will reintegrate the subproblem just *> solved back into sorted order, i.e., D( INDXQ( I = 1, N ) ) *> will be in ascending order. *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The subdiagonal element used to create the rank-1 *> modification. *> \endverbatim *> *> \param[in] CUTPNT *> \verbatim *> CUTPNT is INTEGER *> Contains the location of the last eigenvalue in the leading *> sub-matrix. min(1,N) <= CUTPNT <= N. *> \endverbatim *> *> \param[in,out] QSTORE *> \verbatim *> QSTORE is DOUBLE PRECISION array, dimension (N**2+1) *> Stores eigenvectors of submatrices encountered during *> divide and conquer, packed together. QPTR points to *> beginning of the submatrices. *> \endverbatim *> *> \param[in,out] QPTR *> \verbatim *> QPTR is INTEGER array, dimension (N+2) *> List of indices pointing to beginning of submatrices stored *> in QSTORE. The submatrices are numbered starting at the *> bottom left of the divide and conquer tree, from left to *> right and bottom to top. *> \endverbatim *> *> \param[in] PRMPTR *> \verbatim *> PRMPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in PERM a *> level's permutation is stored. PRMPTR(i+1) - PRMPTR(i) *> indicates the size of the permutation and also the size of *> the full, non-deflated problem. *> \endverbatim *> *> \param[in] PERM *> \verbatim *> PERM is INTEGER array, dimension (N lg N) *> Contains the permutations (from deflation and sorting) to be *> applied to each eigenblock. *> \endverbatim *> *> \param[in] GIVPTR *> \verbatim *> GIVPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in GIVCOL a *> level's Givens rotations are stored. GIVPTR(i+1) - GIVPTR(i) *> indicates the number of Givens rotations. *> \endverbatim *> *> \param[in] GIVCOL *> \verbatim *> GIVCOL is INTEGER array, dimension (2, N lg N) *> Each pair of numbers indicates a pair of columns to take place *> in a Givens rotation. *> \endverbatim *> *> \param[in] GIVNUM *> \verbatim *> GIVNUM is DOUBLE PRECISION array, dimension (2, N lg N) *> Each number indicates the S value to be used in the *> corresponding Givens rotation. *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (3*N+2*QSIZ*N) *> \endverbatim *> *> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (4*N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = 1, an eigenvalue did not converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE DLAED7( ICOMPQ, N, QSIZ, TLVLS, CURLVL, CURPBM, D, Q, $ LDQ, INDXQ, RHO, CUTPNT, QSTORE, QPTR, PRMPTR, $ PERM, GIVPTR, GIVCOL, GIVNUM, WORK, IWORK, $ INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER CURLVL, CURPBM, CUTPNT, ICOMPQ, INFO, LDQ, N, $ QSIZ, TLVLS DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER GIVCOL( 2, * ), GIVPTR( * ), INDXQ( * ), $ IWORK( * ), PERM( * ), PRMPTR( * ), QPTR( * ) DOUBLE PRECISION D( * ), GIVNUM( 2, * ), Q( LDQ, * ), $ QSTORE( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D0, ZERO = 0.0D0 ) * .. * .. Local Scalars .. INTEGER COLTYP, CURR, I, IDLMDA, INDX, INDXC, INDXP, $ IQ2, IS, IW, IZ, K, LDQ2, N1, N2, PTR * .. * .. External Subroutines .. EXTERNAL DGEMM, DLAED8, DLAED9, DLAEDA, DLAMRG, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( ICOMPQ.LT.0 .OR. ICOMPQ.GT.1 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( ICOMPQ.EQ.1 .AND. QSIZ.LT.N ) THEN INFO = -3 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -9 ELSE IF( MIN( 1, N ).GT.CUTPNT .OR. N.LT.CUTPNT ) THEN INFO = -12 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED7', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * The following values are for bookkeeping purposes only. They are * integer pointers which indicate the portion of the workspace * used by a particular array in DLAED8 and DLAED9. * IF( ICOMPQ.EQ.1 ) THEN LDQ2 = QSIZ ELSE LDQ2 = N END IF * IZ = 1 IDLMDA = IZ + N IW = IDLMDA + N IQ2 = IW + N IS = IQ2 + N*LDQ2 * INDX = 1 INDXC = INDX + N COLTYP = INDXC + N INDXP = COLTYP + N * * Form the z-vector which consists of the last row of Q_1 and the * first row of Q_2. * PTR = 1 + 2**TLVLS DO 10 I = 1, CURLVL - 1 PTR = PTR + 2**( TLVLS-I ) 10 CONTINUE CURR = PTR + CURPBM CALL DLAEDA( N, TLVLS, CURLVL, CURPBM, PRMPTR, PERM, GIVPTR, $ GIVCOL, GIVNUM, QSTORE, QPTR, WORK( IZ ), $ WORK( IZ+N ), INFO ) * * When solving the final problem, we no longer need the stored data, * so we will overwrite the data from this level onto the previously * used storage space. * IF( CURLVL.EQ.TLVLS ) THEN QPTR( CURR ) = 1 PRMPTR( CURR ) = 1 GIVPTR( CURR ) = 1 END IF * * Sort and Deflate eigenvalues. * CALL DLAED8( ICOMPQ, K, N, QSIZ, D, Q, LDQ, INDXQ, RHO, CUTPNT, $ WORK( IZ ), WORK( IDLMDA ), WORK( IQ2 ), LDQ2, $ WORK( IW ), PERM( PRMPTR( CURR ) ), GIVPTR( CURR+1 ), $ GIVCOL( 1, GIVPTR( CURR ) ), $ GIVNUM( 1, GIVPTR( CURR ) ), IWORK( INDXP ), $ IWORK( INDX ), INFO ) PRMPTR( CURR+1 ) = PRMPTR( CURR ) + N GIVPTR( CURR+1 ) = GIVPTR( CURR+1 ) + GIVPTR( CURR ) * * Solve Secular Equation. * IF( K.NE.0 ) THEN CALL DLAED9( K, 1, K, N, D, WORK( IS ), K, RHO, WORK( IDLMDA ), $ WORK( IW ), QSTORE( QPTR( CURR ) ), K, INFO ) IF( INFO.NE.0 ) $ GO TO 30 IF( ICOMPQ.EQ.1 ) THEN CALL DGEMM( 'N', 'N', QSIZ, K, K, ONE, WORK( IQ2 ), LDQ2, $ QSTORE( QPTR( CURR ) ), K, ZERO, Q, LDQ ) END IF QPTR( CURR+1 ) = QPTR( CURR ) + K**2 * * Prepare the INDXQ sorting permutation. * N1 = K N2 = N - K CALL DLAMRG( N1, N2, D, 1, -1, INDXQ ) ELSE QPTR( CURR+1 ) = QPTR( CURR ) DO 20 I = 1, N INDXQ( I ) = I 20 CONTINUE END IF * 30 CONTINUE RETURN * * End of DLAED7 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq3.f0000644000000000000000000000013214061636515015213 xustar0030 mtime=1623670093.419103881 30 atime=1623670093.418103881 30 ctime=1623670093.419103881 elk-7.2.42/src/LAPACK/dlasq3.f0000644002504400250440000002474314061636515017262 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ3 checks for deflation, computes a shift and calls dqds. Used by sbdsqr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ3 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX, NFAIL, * ITER, NDIV, IEEE, TTYPE, DMIN1, DMIN2, DN, DN1, * DN2, G, TAU ) * * .. Scalar Arguments .. * LOGICAL IEEE * INTEGER I0, ITER, N0, NDIV, NFAIL, PP * DOUBLE PRECISION DESIG, DMIN, DMIN1, DMIN2, DN, DN1, DN2, G, * $ QMAX, SIGMA, TAU * .. * .. Array Arguments .. * DOUBLE PRECISION Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ3 checks for deflation, computes a shift (TAU) and calls dqds. *> In case of failure it changes shifts, and tries again until output *> is positive. *> \endverbatim * * Arguments: * ========== * *> \param[in] I0 *> \verbatim *> I0 is INTEGER *> First index. *> \endverbatim *> *> \param[in,out] N0 *> \verbatim *> N0 is INTEGER *> Last index. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N0 ) *> Z holds the qd array. *> \endverbatim *> *> \param[in,out] PP *> \verbatim *> PP is INTEGER *> PP=0 for ping, PP=1 for pong. *> PP=2 indicates that flipping was applied to the Z array *> and that the initial tests for deflation should not be *> performed. *> \endverbatim *> *> \param[out] DMIN *> \verbatim *> DMIN is DOUBLE PRECISION *> Minimum value of d. *> \endverbatim *> *> \param[out] SIGMA *> \verbatim *> SIGMA is DOUBLE PRECISION *> Sum of shifts used in current segment. *> \endverbatim *> *> \param[in,out] DESIG *> \verbatim *> DESIG is DOUBLE PRECISION *> Lower order part of SIGMA *> \endverbatim *> *> \param[in] QMAX *> \verbatim *> QMAX is DOUBLE PRECISION *> Maximum value of q. *> \endverbatim *> *> \param[in,out] NFAIL *> \verbatim *> NFAIL is INTEGER *> Increment NFAIL by 1 each time the shift was too big. *> \endverbatim *> *> \param[in,out] ITER *> \verbatim *> ITER is INTEGER *> Increment ITER by 1 for each iteration. *> \endverbatim *> *> \param[in,out] NDIV *> \verbatim *> NDIV is INTEGER *> Increment NDIV by 1 for each division. *> \endverbatim *> *> \param[in] IEEE *> \verbatim *> IEEE is LOGICAL *> Flag for IEEE or non IEEE arithmetic (passed to DLASQ5). *> \endverbatim *> *> \param[in,out] TTYPE *> \verbatim *> TTYPE is INTEGER *> Shift type. *> \endverbatim *> *> \param[in,out] DMIN1 *> \verbatim *> DMIN1 is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] DMIN2 *> \verbatim *> DMIN2 is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] DN *> \verbatim *> DN is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] DN1 *> \verbatim *> DN1 is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] DN2 *> \verbatim *> DN2 is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] G *> \verbatim *> G is DOUBLE PRECISION *> \endverbatim *> *> \param[in,out] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> *> These are passed as arguments in order to save their values *> between calls to DLASQ3. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX, NFAIL, $ ITER, NDIV, IEEE, TTYPE, DMIN1, DMIN2, DN, DN1, $ DN2, G, TAU ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. LOGICAL IEEE INTEGER I0, ITER, N0, NDIV, NFAIL, PP DOUBLE PRECISION DESIG, DMIN, DMIN1, DMIN2, DN, DN1, DN2, G, $ QMAX, SIGMA, TAU * .. * .. Array Arguments .. DOUBLE PRECISION Z( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION CBIAS PARAMETER ( CBIAS = 1.50D0 ) DOUBLE PRECISION ZERO, QURTR, HALF, ONE, TWO, HUNDRD PARAMETER ( ZERO = 0.0D0, QURTR = 0.250D0, HALF = 0.5D0, $ ONE = 1.0D0, TWO = 2.0D0, HUNDRD = 100.0D0 ) * .. * .. Local Scalars .. INTEGER IPN4, J4, N0IN, NN, TTYPE DOUBLE PRECISION EPS, S, T, TEMP, TOL, TOL2 * .. * .. External Subroutines .. EXTERNAL DLASQ4, DLASQ5, DLASQ6 * .. * .. External Function .. DOUBLE PRECISION DLAMCH LOGICAL DISNAN EXTERNAL DISNAN, DLAMCH * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * N0IN = N0 EPS = DLAMCH( 'Precision' ) TOL = EPS*HUNDRD TOL2 = TOL**2 * * Check for deflation. * 10 CONTINUE * IF( N0.LT.I0 ) $ RETURN IF( N0.EQ.I0 ) $ GO TO 20 NN = 4*N0 + PP IF( N0.EQ.( I0+1 ) ) $ GO TO 40 * * Check whether E(N0-1) is negligible, 1 eigenvalue. * IF( Z( NN-5 ).GT.TOL2*( SIGMA+Z( NN-3 ) ) .AND. $ Z( NN-2*PP-4 ).GT.TOL2*Z( NN-7 ) ) $ GO TO 30 * 20 CONTINUE * Z( 4*N0-3 ) = Z( 4*N0+PP-3 ) + SIGMA N0 = N0 - 1 GO TO 10 * * Check whether E(N0-2) is negligible, 2 eigenvalues. * 30 CONTINUE * IF( Z( NN-9 ).GT.TOL2*SIGMA .AND. $ Z( NN-2*PP-8 ).GT.TOL2*Z( NN-11 ) ) $ GO TO 50 * 40 CONTINUE * IF( Z( NN-3 ).GT.Z( NN-7 ) ) THEN S = Z( NN-3 ) Z( NN-3 ) = Z( NN-7 ) Z( NN-7 ) = S END IF T = HALF*( ( Z( NN-7 )-Z( NN-3 ) )+Z( NN-5 ) ) IF( Z( NN-5 ).GT.Z( NN-3 )*TOL2.AND.T.NE.ZERO ) THEN S = Z( NN-3 )*( Z( NN-5 ) / T ) IF( S.LE.T ) THEN S = Z( NN-3 )*( Z( NN-5 ) / $ ( T*( ONE+SQRT( ONE+S / T ) ) ) ) ELSE S = Z( NN-3 )*( Z( NN-5 ) / ( T+SQRT( T )*SQRT( T+S ) ) ) END IF T = Z( NN-7 ) + ( S+Z( NN-5 ) ) Z( NN-3 ) = Z( NN-3 )*( Z( NN-7 ) / T ) Z( NN-7 ) = T END IF Z( 4*N0-7 ) = Z( NN-7 ) + SIGMA Z( 4*N0-3 ) = Z( NN-3 ) + SIGMA N0 = N0 - 2 GO TO 10 * 50 CONTINUE IF( PP.EQ.2 ) $ PP = 0 * * Reverse the qd-array, if warranted. * IF( DMIN.LE.ZERO .OR. N0.LT.N0IN ) THEN IF( CBIAS*Z( 4*I0+PP-3 ).LT.Z( 4*N0+PP-3 ) ) THEN IPN4 = 4*( I0+N0 ) DO 60 J4 = 4*I0, 2*( I0+N0-1 ), 4 TEMP = Z( J4-3 ) Z( J4-3 ) = Z( IPN4-J4-3 ) Z( IPN4-J4-3 ) = TEMP TEMP = Z( J4-2 ) Z( J4-2 ) = Z( IPN4-J4-2 ) Z( IPN4-J4-2 ) = TEMP TEMP = Z( J4-1 ) Z( J4-1 ) = Z( IPN4-J4-5 ) Z( IPN4-J4-5 ) = TEMP TEMP = Z( J4 ) Z( J4 ) = Z( IPN4-J4-4 ) Z( IPN4-J4-4 ) = TEMP 60 CONTINUE IF( N0-I0.LE.4 ) THEN Z( 4*N0+PP-1 ) = Z( 4*I0+PP-1 ) Z( 4*N0-PP ) = Z( 4*I0-PP ) END IF DMIN2 = MIN( DMIN2, Z( 4*N0+PP-1 ) ) Z( 4*N0+PP-1 ) = MIN( Z( 4*N0+PP-1 ), Z( 4*I0+PP-1 ), $ Z( 4*I0+PP+3 ) ) Z( 4*N0-PP ) = MIN( Z( 4*N0-PP ), Z( 4*I0-PP ), $ Z( 4*I0-PP+4 ) ) QMAX = MAX( QMAX, Z( 4*I0+PP-3 ), Z( 4*I0+PP+1 ) ) DMIN = -ZERO END IF END IF * * Choose a shift. * CALL DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN, DN1, $ DN2, TAU, TTYPE, G ) * * Call dqds until DMIN > 0. * 70 CONTINUE * CALL DLASQ5( I0, N0, Z, PP, TAU, SIGMA, DMIN, DMIN1, DMIN2, DN, $ DN1, DN2, IEEE, EPS ) * NDIV = NDIV + ( N0-I0+2 ) ITER = ITER + 1 * * Check status. * IF( DMIN.GE.ZERO .AND. DMIN1.GE.ZERO ) THEN * * Success. * GO TO 90 * ELSE IF( DMIN.LT.ZERO .AND. DMIN1.GT.ZERO .AND. $ Z( 4*( N0-1 )-PP ).LT.TOL*( SIGMA+DN1 ) .AND. $ ABS( DN ).LT.TOL*SIGMA ) THEN * * Convergence hidden by negative DN. * Z( 4*( N0-1 )-PP+2 ) = ZERO DMIN = ZERO GO TO 90 ELSE IF( DMIN.LT.ZERO ) THEN * * TAU too big. Select new TAU and try again. * NFAIL = NFAIL + 1 IF( TTYPE.LT.-22 ) THEN * * Failed twice. Play it safe. * TAU = ZERO ELSE IF( DMIN1.GT.ZERO ) THEN * * Late failure. Gives excellent shift. * TAU = ( TAU+DMIN )*( ONE-TWO*EPS ) TTYPE = TTYPE - 11 ELSE * * Early failure. Divide by 4. * TAU = QURTR*TAU TTYPE = TTYPE - 12 END IF GO TO 70 ELSE IF( DISNAN( DMIN ) ) THEN * * NaN. * IF( TAU.EQ.ZERO ) THEN GO TO 80 ELSE TAU = ZERO GO TO 70 END IF ELSE * * Possible underflow. Play it safe. * GO TO 80 END IF * * Risk of underflow. * 80 CONTINUE CALL DLASQ6( I0, N0, Z, PP, DMIN, DMIN1, DMIN2, DN, DN1, DN2 ) NDIV = NDIV + ( N0-I0+2 ) ITER = ITER + 1 TAU = ZERO * 90 CONTINUE IF( TAU.LT.SIGMA ) THEN DESIG = DESIG + TAU T = SIGMA + DESIG DESIG = DESIG - ( T-SIGMA ) ELSE T = SIGMA + TAU DESIG = SIGMA - ( T-TAU ) + DESIG END IF SIGMA = T * RETURN * * End of DLASQ3 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlarf.f0000644000000000000000000000013214061636515015114 xustar0030 mtime=1623670093.421103879 30 atime=1623670093.421103879 30 ctime=1623670093.421103879 elk-7.2.42/src/LAPACK/dlarf.f0000644002504400250440000001411014061636515017146 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLARF applies an elementary reflector to a general rectangular matrix. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLARF + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLARF( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) * * .. Scalar Arguments .. * CHARACTER SIDE * INTEGER INCV, LDC, M, N * DOUBLE PRECISION TAU * .. * .. Array Arguments .. * DOUBLE PRECISION C( LDC, * ), V( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLARF applies a real elementary reflector H to a real m by n matrix *> C, from either the left or the right. H is represented in the form *> *> H = I - tau * v * v**T *> *> where tau is a real scalar and v is a real vector. *> *> If tau = 0, then H is taken to be the unit matrix. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': form H * C *> = 'R': form C * H *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. *> \endverbatim *> *> \param[in] V *> \verbatim *> V is DOUBLE PRECISION array, dimension *> (1 + (M-1)*abs(INCV)) if SIDE = 'L' *> or (1 + (N-1)*abs(INCV)) if SIDE = 'R' *> The vector v in the representation of H. V is not used if *> TAU = 0. *> \endverbatim *> *> \param[in] INCV *> \verbatim *> INCV is INTEGER *> The increment between elements of v. INCV <> 0. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> The value tau in the representation of H. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the m by n matrix C. *> On exit, C is overwritten by the matrix H * C if SIDE = 'L', *> or C * H if SIDE = 'R'. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension *> (N) if SIDE = 'L' *> or (M) if SIDE = 'R' *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERauxiliary * * ===================================================================== SUBROUTINE DLARF( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE INTEGER INCV, LDC, M, N DOUBLE PRECISION TAU * .. * .. Array Arguments .. DOUBLE PRECISION C( LDC, * ), V( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) * .. * .. Local Scalars .. LOGICAL APPLYLEFT INTEGER I, LASTV, LASTC * .. * .. External Subroutines .. EXTERNAL DGEMV, DGER * .. * .. External Functions .. LOGICAL LSAME INTEGER ILADLR, ILADLC EXTERNAL LSAME, ILADLR, ILADLC * .. * .. Executable Statements .. * APPLYLEFT = LSAME( SIDE, 'L' ) LASTV = 0 LASTC = 0 IF( TAU.NE.ZERO ) THEN ! Set up variables for scanning V. LASTV begins pointing to the end ! of V. IF( APPLYLEFT ) THEN LASTV = M ELSE LASTV = N END IF IF( INCV.GT.0 ) THEN I = 1 + (LASTV-1) * INCV ELSE I = 1 END IF ! Look for the last non-zero row in V. DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO ) LASTV = LASTV - 1 I = I - INCV END DO IF( APPLYLEFT ) THEN ! Scan for the last non-zero column in C(1:lastv,:). LASTC = ILADLC(LASTV, N, C, LDC) ELSE ! Scan for the last non-zero row in C(:,1:lastv). LASTC = ILADLR(M, LASTV, C, LDC) END IF END IF ! Note that lastc.eq.0 renders the BLAS operations null; no special ! case is needed at this level. IF( APPLYLEFT ) THEN * * Form H * C * IF( LASTV.GT.0 ) THEN * * w(1:lastc,1) := C(1:lastv,1:lastc)**T * v(1:lastv,1) * CALL DGEMV( 'Transpose', LASTV, LASTC, ONE, C, LDC, V, INCV, $ ZERO, WORK, 1 ) * * C(1:lastv,1:lastc) := C(...) - v(1:lastv,1) * w(1:lastc,1)**T * CALL DGER( LASTV, LASTC, -TAU, V, INCV, WORK, 1, C, LDC ) END IF ELSE * * Form C * H * IF( LASTV.GT.0 ) THEN * * w(1:lastc,1) := C(1:lastc,1:lastv) * v(1:lastv,1) * CALL DGEMV( 'No transpose', LASTC, LASTV, ONE, C, LDC, $ V, INCV, ZERO, WORK, 1 ) * * C(1:lastc,1:lastv) := C(...) - w(1:lastc,1) * v(1:lastv,1)**T * CALL DGER( LASTC, LASTV, -TAU, WORK, 1, V, INCV, C, LDC ) END IF END IF RETURN * * End of DLARF * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorm2l.f0000644000000000000000000000013214061636515015223 xustar0030 mtime=1623670093.423103877 30 atime=1623670093.422103878 30 ctime=1623670093.423103877 elk-7.2.42/src/LAPACK/dorm2l.f0000644002504400250440000001622114061636515017262 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORM2L multiplies a general matrix by the orthogonal matrix from a QL factorization determined by sgeqlf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORM2L + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORM2L overwrites the general real m by n matrix C with *> *> Q * C if SIDE = 'L' and TRANS = 'N', or *> *> Q**T * C if SIDE = 'L' and TRANS = 'T', or *> *> C * Q if SIDE = 'R' and TRANS = 'N', or *> *> C * Q**T if SIDE = 'R' and TRANS = 'T', *> *> where Q is a real orthogonal matrix defined as the product of k *> elementary reflectors *> *> Q = H(k) . . . H(2) H(1) *> *> as returned by DGEQLF. Q is of order m if SIDE = 'L' and of order n *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**T from the Left *> = 'R': apply Q or Q**T from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'T': apply Q**T (Transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> DGEQLF in the last k columns of its array argument A. *> A is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQLF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the m by n matrix C. *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension *> (N) if SIDE = 'L', *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORM2L( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LEFT, NOTRAN INTEGER I, I1, I2, I3, MI, NI, NQ DOUBLE PRECISION AII * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL DLARF, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORM2L', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) $ RETURN * IF( ( LEFT .AND. NOTRAN ) .OR. ( .NOT.LEFT .AND. .NOT.NOTRAN ) ) $ THEN I1 = 1 I2 = K I3 = 1 ELSE I1 = K I2 = 1 I3 = -1 END IF * IF( LEFT ) THEN NI = N ELSE MI = M END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) is applied to C(1:m-k+i,1:n) * MI = M - K + I ELSE * * H(i) is applied to C(1:m,1:n-k+i) * NI = N - K + I END IF * * Apply H(i) * AII = A( NQ-K+I, I ) A( NQ-K+I, I ) = ONE CALL DLARF( SIDE, MI, NI, A( 1, I ), 1, TAU( I ), C, LDC, $ WORK ) A( NQ-K+I, I ) = AII 10 CONTINUE RETURN * * End of DORM2L * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dorm2r.f0000644000000000000000000000013214061636515015231 xustar0030 mtime=1623670093.424103876 30 atime=1623670093.424103876 30 ctime=1623670093.424103876 elk-7.2.42/src/LAPACK/dorm2r.f0000644002504400250440000001632214061636515017272 0ustar00dewhurstdewhurst00000000000000*> \brief \b DORM2R multiplies a general matrix by the orthogonal matrix from a QR factorization determined by sgeqrf (unblocked algorithm). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DORM2R + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DORM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, * WORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DORM2R overwrites the general real m by n matrix C with *> *> Q * C if SIDE = 'L' and TRANS = 'N', or *> *> Q**T* C if SIDE = 'L' and TRANS = 'T', or *> *> C * Q if SIDE = 'R' and TRANS = 'N', or *> *> C * Q**T if SIDE = 'R' and TRANS = 'T', *> *> where Q is a real orthogonal matrix defined as the product of k *> elementary reflectors *> *> Q = H(1) H(2) . . . H(k) *> *> as returned by DGEQRF. Q is of order m if SIDE = 'L' and of order n *> if SIDE = 'R'. *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**T from the Left *> = 'R': apply Q or Q**T from the Right *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'T': apply Q**T (Transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] K *> \verbatim *> K is INTEGER *> The number of elementary reflectors whose product defines *> the matrix Q. *> If SIDE = 'L', M >= K >= 0; *> if SIDE = 'R', N >= K >= 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,K) *> The i-th column must contain the vector which defines the *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> DGEQRF in the first k columns of its array argument A. *> A is modified by the routine but restored on exit. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> If SIDE = 'L', LDA >= max(1,M); *> if SIDE = 'R', LDA >= max(1,N). *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION array, dimension (K) *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by DGEQRF. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is DOUBLE PRECISION array, dimension (LDC,N) *> On entry, the m by n matrix C. *> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension *> (N) if SIDE = 'L', *> (M) if SIDE = 'R' *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup doubleOTHERcomputational * * ===================================================================== SUBROUTINE DORM2R( SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, $ WORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER INFO, K, LDA, LDC, M, N * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D+0 ) * .. * .. Local Scalars .. LOGICAL LEFT, NOTRAN INTEGER I, I1, I2, I3, IC, JC, MI, NI, NQ DOUBLE PRECISION AII * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL DLARF, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 LEFT = LSAME( SIDE, 'L' ) NOTRAN = LSAME( TRANS, 'N' ) * * NQ is the order of Q * IF( LEFT ) THEN NQ = M ELSE NQ = N END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.NOTRAN .AND. .NOT.LSAME( TRANS, 'T' ) ) THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( K.LT.0 .OR. K.GT.NQ ) THEN INFO = -5 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -7 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -10 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DORM2R', -INFO ) RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. K.EQ.0 ) $ RETURN * IF( ( LEFT .AND. .NOT.NOTRAN ) .OR. ( .NOT.LEFT .AND. NOTRAN ) ) $ THEN I1 = 1 I2 = K I3 = 1 ELSE I1 = K I2 = 1 I3 = -1 END IF * IF( LEFT ) THEN NI = N JC = 1 ELSE MI = M IC = 1 END IF * DO 10 I = I1, I2, I3 IF( LEFT ) THEN * * H(i) is applied to C(i:m,1:n) * MI = M - I + 1 IC = I ELSE * * H(i) is applied to C(1:m,i:n) * NI = N - I + 1 JC = I END IF * * Apply H(i) * AII = A( I, I ) A( I, I ) = ONE CALL DLARF( SIDE, MI, NI, A( I, I ), 1, TAU( I ), C( IC, JC ), $ LDC, WORK ) A( I, I ) = AII 10 CONTINUE RETURN * * End of DORM2R * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dladiv.f0000644000000000000000000000013214061636515015267 xustar0030 mtime=1623670093.426103874 30 atime=1623670093.426103874 30 ctime=1623670093.426103874 elk-7.2.42/src/LAPACK/dladiv.f0000644002504400250440000001370614061636515017333 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLADIV performs complex division in real arithmetic, avoiding unnecessary overflow. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLADIV + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLADIV( A, B, C, D, P, Q ) * * .. Scalar Arguments .. * DOUBLE PRECISION A, B, C, D, P, Q * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLADIV performs complex division in real arithmetic *> *> a + i*b *> p + i*q = --------- *> c + i*d *> *> The algorithm is due to Michael Baudin and Robert L. Smith *> and can be found in the paper *> "A Robust Complex Division in Scilab" *> \endverbatim * * Arguments: * ========== * *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION *> \endverbatim *> *> \param[in] B *> \verbatim *> B is DOUBLE PRECISION *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION *> The scalars a, b, c, and d in the above expression. *> \endverbatim *> *> \param[out] P *> \verbatim *> P is DOUBLE PRECISION *> \endverbatim *> *> \param[out] Q *> \verbatim *> Q is DOUBLE PRECISION *> The scalars p and q in the above expression. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date January 2013 * *> \ingroup doubleOTHERauxiliary * * ===================================================================== SUBROUTINE DLADIV( A, B, C, D, P, Q ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * January 2013 * * .. Scalar Arguments .. DOUBLE PRECISION A, B, C, D, P, Q * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION BS PARAMETER ( BS = 2.0D0 ) DOUBLE PRECISION HALF PARAMETER ( HALF = 0.5D0 ) DOUBLE PRECISION TWO PARAMETER ( TWO = 2.0D0 ) * * .. Local Scalars .. DOUBLE PRECISION AA, BB, CC, DD, AB, CD, S, OV, UN, BE, EPS * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. External Subroutines .. EXTERNAL DLADIV1 * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX * .. * .. Executable Statements .. * AA = A BB = B CC = C DD = D AB = MAX( ABS(A), ABS(B) ) CD = MAX( ABS(C), ABS(D) ) S = 1.0D0 OV = DLAMCH( 'Overflow threshold' ) UN = DLAMCH( 'Safe minimum' ) EPS = DLAMCH( 'Epsilon' ) BE = BS / (EPS*EPS) IF( AB >= HALF*OV ) THEN AA = HALF * AA BB = HALF * BB S = TWO * S END IF IF( CD >= HALF*OV ) THEN CC = HALF * CC DD = HALF * DD S = HALF * S END IF IF( AB <= UN*BS/EPS ) THEN AA = AA * BE BB = BB * BE S = S / BE END IF IF( CD <= UN*BS/EPS ) THEN CC = CC * BE DD = DD * BE S = S * BE END IF IF( ABS( D ).LE.ABS( C ) ) THEN CALL DLADIV1(AA, BB, CC, DD, P, Q) ELSE CALL DLADIV1(BB, AA, DD, CC, P, Q) Q = -Q END IF P = P * S Q = Q * S * RETURN * * End of DLADIV * END *> \ingroup doubleOTHERauxiliary SUBROUTINE DLADIV1( A, B, C, D, P, Q ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * January 2013 * * .. Scalar Arguments .. DOUBLE PRECISION A, B, C, D, P, Q * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE PARAMETER ( ONE = 1.0D0 ) * * .. Local Scalars .. DOUBLE PRECISION R, T * .. * .. External Functions .. DOUBLE PRECISION DLADIV2 EXTERNAL DLADIV2 * .. * .. Executable Statements .. * R = D / C T = ONE / (C + D * R) P = DLADIV2(A, B, C, D, R, T) A = -A Q = DLADIV2(B, A, C, D, R, T) * RETURN * * End of DLADIV1 * END *> \ingroup doubleOTHERauxiliary DOUBLE PRECISION FUNCTION DLADIV2( A, B, C, D, R, T ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * January 2013 * * .. Scalar Arguments .. DOUBLE PRECISION A, B, C, D, R, T * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) * * .. Local Scalars .. DOUBLE PRECISION BR * .. * .. Executable Statements .. * IF( R.NE.ZERO ) THEN BR = B * R IF( BR.NE.ZERO ) THEN DLADIV2 = (A + BR) * T ELSE DLADIV2 = A * T + (B * T) * R END IF ELSE DLADIV2 = (A + D * (B / C)) * T END IF * RETURN * * End of DLADIV12 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaeda.f0000644000000000000000000000013214061636515015236 xustar0030 mtime=1623670093.428103872 30 atime=1623670093.428103872 30 ctime=1623670093.428103872 elk-7.2.42/src/LAPACK/dlaeda.f0000644002504400250440000002324014061636515017274 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAEDA used by sstedc. Computes the Z vector determining the rank-one modification of the diagonal matrix. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAEDA + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAEDA( N, TLVLS, CURLVL, CURPBM, PRMPTR, PERM, GIVPTR, * GIVCOL, GIVNUM, Q, QPTR, Z, ZTEMP, INFO ) * * .. Scalar Arguments .. * INTEGER CURLVL, CURPBM, INFO, N, TLVLS * .. * .. Array Arguments .. * INTEGER GIVCOL( 2, * ), GIVPTR( * ), PERM( * ), * $ PRMPTR( * ), QPTR( * ) * DOUBLE PRECISION GIVNUM( 2, * ), Q( * ), Z( * ), ZTEMP( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAEDA computes the Z vector corresponding to the merge step in the *> CURLVLth step of the merge process with TLVLS steps for the CURPBMth *> problem. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] TLVLS *> \verbatim *> TLVLS is INTEGER *> The total number of merging levels in the overall divide and *> conquer tree. *> \endverbatim *> *> \param[in] CURLVL *> \verbatim *> CURLVL is INTEGER *> The current level in the overall merge routine, *> 0 <= curlvl <= tlvls. *> \endverbatim *> *> \param[in] CURPBM *> \verbatim *> CURPBM is INTEGER *> The current problem in the current level in the overall *> merge routine (counting from upper left to lower right). *> \endverbatim *> *> \param[in] PRMPTR *> \verbatim *> PRMPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in PERM a *> level's permutation is stored. PRMPTR(i+1) - PRMPTR(i) *> indicates the size of the permutation and incidentally the *> size of the full, non-deflated problem. *> \endverbatim *> *> \param[in] PERM *> \verbatim *> PERM is INTEGER array, dimension (N lg N) *> Contains the permutations (from deflation and sorting) to be *> applied to each eigenblock. *> \endverbatim *> *> \param[in] GIVPTR *> \verbatim *> GIVPTR is INTEGER array, dimension (N lg N) *> Contains a list of pointers which indicate where in GIVCOL a *> level's Givens rotations are stored. GIVPTR(i+1) - GIVPTR(i) *> indicates the number of Givens rotations. *> \endverbatim *> *> \param[in] GIVCOL *> \verbatim *> GIVCOL is INTEGER array, dimension (2, N lg N) *> Each pair of numbers indicates a pair of columns to take place *> in a Givens rotation. *> \endverbatim *> *> \param[in] GIVNUM *> \verbatim *> GIVNUM is DOUBLE PRECISION array, dimension (2, N lg N) *> Each number indicates the S value to be used in the *> corresponding Givens rotation. *> \endverbatim *> *> \param[in] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (N**2) *> Contains the square eigenblocks from previous levels, the *> starting positions for blocks are given by QPTR. *> \endverbatim *> *> \param[in] QPTR *> \verbatim *> QPTR is INTEGER array, dimension (N+2) *> Contains a list of pointers which indicate where in Q an *> eigenblock is stored. SQRT( QPTR(i+1) - QPTR(i) ) indicates *> the size of the block. *> \endverbatim *> *> \param[out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (N) *> On output this vector contains the updating vector (the last *> row of the first sub-eigenvector matrix and the first row of *> the second sub-eigenvector matrix). *> \endverbatim *> *> \param[out] ZTEMP *> \verbatim *> ZTEMP is DOUBLE PRECISION array, dimension (N) *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE DLAEDA( N, TLVLS, CURLVL, CURPBM, PRMPTR, PERM, GIVPTR, $ GIVCOL, GIVNUM, Q, QPTR, Z, ZTEMP, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER CURLVL, CURPBM, INFO, N, TLVLS * .. * .. Array Arguments .. INTEGER GIVCOL( 2, * ), GIVPTR( * ), PERM( * ), $ PRMPTR( * ), QPTR( * ) DOUBLE PRECISION GIVNUM( 2, * ), Q( * ), Z( * ), ZTEMP( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO, HALF, ONE PARAMETER ( ZERO = 0.0D0, HALF = 0.5D0, ONE = 1.0D0 ) * .. * .. Local Scalars .. INTEGER BSIZ1, BSIZ2, CURR, I, K, MID, PSIZ1, PSIZ2, $ PTR, ZPTR1 * .. * .. External Subroutines .. EXTERNAL DCOPY, DGEMV, DROT, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC DBLE, INT, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( N.LT.0 ) THEN INFO = -1 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAEDA', -INFO ) RETURN END IF * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * * Determine location of first number in second half. * MID = N / 2 + 1 * * Gather last/first rows of appropriate eigenblocks into center of Z * PTR = 1 * * Determine location of lowest level subproblem in the full storage * scheme * CURR = PTR + CURPBM*2**CURLVL + 2**( CURLVL-1 ) - 1 * * Determine size of these matrices. We add HALF to the value of * the SQRT in case the machine underestimates one of these square * roots. * BSIZ1 = INT( HALF+SQRT( DBLE( QPTR( CURR+1 )-QPTR( CURR ) ) ) ) BSIZ2 = INT( HALF+SQRT( DBLE( QPTR( CURR+2 )-QPTR( CURR+1 ) ) ) ) DO 10 K = 1, MID - BSIZ1 - 1 Z( K ) = ZERO 10 CONTINUE CALL DCOPY( BSIZ1, Q( QPTR( CURR )+BSIZ1-1 ), BSIZ1, $ Z( MID-BSIZ1 ), 1 ) CALL DCOPY( BSIZ2, Q( QPTR( CURR+1 ) ), BSIZ2, Z( MID ), 1 ) DO 20 K = MID + BSIZ2, N Z( K ) = ZERO 20 CONTINUE * * Loop through remaining levels 1 -> CURLVL applying the Givens * rotations and permutation and then multiplying the center matrices * against the current Z. * PTR = 2**TLVLS + 1 DO 70 K = 1, CURLVL - 1 CURR = PTR + CURPBM*2**( CURLVL-K ) + 2**( CURLVL-K-1 ) - 1 PSIZ1 = PRMPTR( CURR+1 ) - PRMPTR( CURR ) PSIZ2 = PRMPTR( CURR+2 ) - PRMPTR( CURR+1 ) ZPTR1 = MID - PSIZ1 * * Apply Givens at CURR and CURR+1 * DO 30 I = GIVPTR( CURR ), GIVPTR( CURR+1 ) - 1 CALL DROT( 1, Z( ZPTR1+GIVCOL( 1, I )-1 ), 1, $ Z( ZPTR1+GIVCOL( 2, I )-1 ), 1, GIVNUM( 1, I ), $ GIVNUM( 2, I ) ) 30 CONTINUE DO 40 I = GIVPTR( CURR+1 ), GIVPTR( CURR+2 ) - 1 CALL DROT( 1, Z( MID-1+GIVCOL( 1, I ) ), 1, $ Z( MID-1+GIVCOL( 2, I ) ), 1, GIVNUM( 1, I ), $ GIVNUM( 2, I ) ) 40 CONTINUE PSIZ1 = PRMPTR( CURR+1 ) - PRMPTR( CURR ) PSIZ2 = PRMPTR( CURR+2 ) - PRMPTR( CURR+1 ) DO 50 I = 0, PSIZ1 - 1 ZTEMP( I+1 ) = Z( ZPTR1+PERM( PRMPTR( CURR )+I )-1 ) 50 CONTINUE DO 60 I = 0, PSIZ2 - 1 ZTEMP( PSIZ1+I+1 ) = Z( MID+PERM( PRMPTR( CURR+1 )+I )-1 ) 60 CONTINUE * * Multiply Blocks at CURR and CURR+1 * * Determine size of these matrices. We add HALF to the value of * the SQRT in case the machine underestimates one of these * square roots. * BSIZ1 = INT( HALF+SQRT( DBLE( QPTR( CURR+1 )-QPTR( CURR ) ) ) ) BSIZ2 = INT( HALF+SQRT( DBLE( QPTR( CURR+2 )-QPTR( CURR+ $ 1 ) ) ) ) IF( BSIZ1.GT.0 ) THEN CALL DGEMV( 'T', BSIZ1, BSIZ1, ONE, Q( QPTR( CURR ) ), $ BSIZ1, ZTEMP( 1 ), 1, ZERO, Z( ZPTR1 ), 1 ) END IF CALL DCOPY( PSIZ1-BSIZ1, ZTEMP( BSIZ1+1 ), 1, Z( ZPTR1+BSIZ1 ), $ 1 ) IF( BSIZ2.GT.0 ) THEN CALL DGEMV( 'T', BSIZ2, BSIZ2, ONE, Q( QPTR( CURR+1 ) ), $ BSIZ2, ZTEMP( PSIZ1+1 ), 1, ZERO, Z( MID ), 1 ) END IF CALL DCOPY( PSIZ2-BSIZ2, ZTEMP( PSIZ1+BSIZ2+1 ), 1, $ Z( MID+BSIZ2 ), 1 ) * PTR = PTR + 2**( TLVLS-K ) 70 CONTINUE * RETURN * * End of DLAEDA * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaed8.f0000644000000000000000000000012714061636515015217 xustar0029 mtime=1623670093.43010387 29 atime=1623670093.43010387 29 ctime=1623670093.43010387 elk-7.2.42/src/LAPACK/zlaed8.f0000644002504400250440000003522514061636515017257 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAED8 used by sstedc. Merges eigenvalues and deflates secular equation. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAED8 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAED8( K, N, QSIZ, Q, LDQ, D, RHO, CUTPNT, Z, DLAMDA, * Q2, LDQ2, W, INDXP, INDX, INDXQ, PERM, GIVPTR, * GIVCOL, GIVNUM, INFO ) * * .. Scalar Arguments .. * INTEGER CUTPNT, GIVPTR, INFO, K, LDQ, LDQ2, N, QSIZ * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER GIVCOL( 2, * ), INDX( * ), INDXP( * ), * $ INDXQ( * ), PERM( * ) * DOUBLE PRECISION D( * ), DLAMDA( * ), GIVNUM( 2, * ), W( * ), * $ Z( * ) * COMPLEX*16 Q( LDQ, * ), Q2( LDQ2, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAED8 merges the two sets of eigenvalues together into a single *> sorted set. Then it tries to deflate the size of the problem. *> There are two ways in which deflation can occur: when two or more *> eigenvalues are close together or if there is a tiny element in the *> Z vector. For each such occurrence the order of the related secular *> equation problem is reduced by one. *> \endverbatim * * Arguments: * ========== * *> \param[out] K *> \verbatim *> K is INTEGER *> Contains the number of non-deflated eigenvalues. *> This is the order of the related secular equation. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the unitary matrix used to reduce *> the dense or band matrix to tridiagonal form. *> QSIZ >= N if ICOMPQ = 1. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is COMPLEX*16 array, dimension (LDQ,N) *> On entry, Q contains the eigenvectors of the partially solved *> system which has been previously updated in matrix *> multiplies with other partially solved eigensystems. *> On exit, Q contains the trailing (N-K) updated eigenvectors *> (those which were deflated) in its last N-K columns. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max( 1, N ). *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, D contains the eigenvalues of the two submatrices to *> be combined. On exit, D contains the trailing (N-K) updated *> eigenvalues (those which were deflated) sorted into increasing *> order. *> \endverbatim *> *> \param[in,out] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> Contains the off diagonal element associated with the rank-1 *> cut which originally split the two submatrices which are now *> being recombined. RHO is modified during the computation to *> the value required by DLAED3. *> \endverbatim *> *> \param[in] CUTPNT *> \verbatim *> CUTPNT is INTEGER *> Contains the location of the last eigenvalue in the leading *> sub-matrix. MIN(1,N) <= CUTPNT <= N. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (N) *> On input this vector contains the updating vector (the last *> row of the first sub-eigenvector matrix and the first row of *> the second sub-eigenvector matrix). The contents of Z are *> destroyed during the updating process. *> \endverbatim *> *> \param[out] DLAMDA *> \verbatim *> DLAMDA is DOUBLE PRECISION array, dimension (N) *> Contains a copy of the first K eigenvalues which will be used *> by DLAED3 to form the secular equation. *> \endverbatim *> *> \param[out] Q2 *> \verbatim *> Q2 is COMPLEX*16 array, dimension (LDQ2,N) *> If ICOMPQ = 0, Q2 is not referenced. Otherwise, *> Contains a copy of the first K eigenvectors which will be used *> by DLAED7 in a matrix multiply (DGEMM) to update the new *> eigenvectors. *> \endverbatim *> *> \param[in] LDQ2 *> \verbatim *> LDQ2 is INTEGER *> The leading dimension of the array Q2. LDQ2 >= max( 1, N ). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> This will hold the first k values of the final *> deflation-altered z-vector and will be passed to DLAED3. *> \endverbatim *> *> \param[out] INDXP *> \verbatim *> INDXP is INTEGER array, dimension (N) *> This will contain the permutation used to place deflated *> values of D at the end of the array. On output INDXP(1:K) *> points to the nondeflated D-values and INDXP(K+1:N) *> points to the deflated eigenvalues. *> \endverbatim *> *> \param[out] INDX *> \verbatim *> INDX is INTEGER array, dimension (N) *> This will contain the permutation used to sort the contents of *> D into ascending order. *> \endverbatim *> *> \param[in] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> This contains the permutation which separately sorts the two *> sub-problems in D into ascending order. Note that elements in *> the second half of this permutation must first have CUTPNT *> added to their values in order to be accurate. *> \endverbatim *> *> \param[out] PERM *> \verbatim *> PERM is INTEGER array, dimension (N) *> Contains the permutations (from deflation and sorting) to be *> applied to each eigenblock. *> \endverbatim *> *> \param[out] GIVPTR *> \verbatim *> GIVPTR is INTEGER *> Contains the number of Givens rotations which took place in *> this subproblem. *> \endverbatim *> *> \param[out] GIVCOL *> \verbatim *> GIVCOL is INTEGER array, dimension (2, N) *> Each pair of numbers indicates a pair of columns to take place *> in a Givens rotation. *> \endverbatim *> *> \param[out] GIVNUM *> \verbatim *> GIVNUM is DOUBLE PRECISION array, dimension (2, N) *> Each number indicates the S value to be used in the *> corresponding Givens rotation. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZLAED8( K, N, QSIZ, Q, LDQ, D, RHO, CUTPNT, Z, DLAMDA, $ Q2, LDQ2, W, INDXP, INDX, INDXQ, PERM, GIVPTR, $ GIVCOL, GIVNUM, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER CUTPNT, GIVPTR, INFO, K, LDQ, LDQ2, N, QSIZ DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER GIVCOL( 2, * ), INDX( * ), INDXP( * ), $ INDXQ( * ), PERM( * ) DOUBLE PRECISION D( * ), DLAMDA( * ), GIVNUM( 2, * ), W( * ), $ Z( * ) COMPLEX*16 Q( LDQ, * ), Q2( LDQ2, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION MONE, ZERO, ONE, TWO, EIGHT PARAMETER ( MONE = -1.0D0, ZERO = 0.0D0, ONE = 1.0D0, $ TWO = 2.0D0, EIGHT = 8.0D0 ) * .. * .. Local Scalars .. INTEGER I, IMAX, J, JLAM, JMAX, JP, K2, N1, N1P1, N2 DOUBLE PRECISION C, EPS, S, T, TAU, TOL * .. * .. External Functions .. INTEGER IDAMAX DOUBLE PRECISION DLAMCH, DLAPY2 EXTERNAL IDAMAX, DLAMCH, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLAMRG, DSCAL, XERBLA, ZCOPY, ZDROT, $ ZLACPY * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( N.LT.0 ) THEN INFO = -2 ELSE IF( QSIZ.LT.N ) THEN INFO = -3 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -5 ELSE IF( CUTPNT.LT.MIN( 1, N ) .OR. CUTPNT.GT.N ) THEN INFO = -8 ELSE IF( LDQ2.LT.MAX( 1, N ) ) THEN INFO = -12 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZLAED8', -INFO ) RETURN END IF * * Need to initialize GIVPTR to O here in case of quick exit * to prevent an unspecified code behavior (usually sigfault) * when IWORK array on entry to *stedc is not zeroed * (or at least some IWORK entries which used in *laed7 for GIVPTR). * GIVPTR = 0 * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * N1 = CUTPNT N2 = N - N1 N1P1 = N1 + 1 * IF( RHO.LT.ZERO ) THEN CALL DSCAL( N2, MONE, Z( N1P1 ), 1 ) END IF * * Normalize z so that norm(z) = 1 * T = ONE / SQRT( TWO ) DO 10 J = 1, N INDX( J ) = J 10 CONTINUE CALL DSCAL( N, T, Z, 1 ) RHO = ABS( TWO*RHO ) * * Sort the eigenvalues into increasing order * DO 20 I = CUTPNT + 1, N INDXQ( I ) = INDXQ( I ) + CUTPNT 20 CONTINUE DO 30 I = 1, N DLAMDA( I ) = D( INDXQ( I ) ) W( I ) = Z( INDXQ( I ) ) 30 CONTINUE I = 1 J = CUTPNT + 1 CALL DLAMRG( N1, N2, DLAMDA, 1, 1, INDX ) DO 40 I = 1, N D( I ) = DLAMDA( INDX( I ) ) Z( I ) = W( INDX( I ) ) 40 CONTINUE * * Calculate the allowable deflation tolerance * IMAX = IDAMAX( N, Z, 1 ) JMAX = IDAMAX( N, D, 1 ) EPS = DLAMCH( 'Epsilon' ) TOL = EIGHT*EPS*ABS( D( JMAX ) ) * * If the rank-1 modifier is small enough, no more needs to be done * -- except to reorganize Q so that its columns correspond with the * elements in D. * IF( RHO*ABS( Z( IMAX ) ).LE.TOL ) THEN K = 0 DO 50 J = 1, N PERM( J ) = INDXQ( INDX( J ) ) CALL ZCOPY( QSIZ, Q( 1, PERM( J ) ), 1, Q2( 1, J ), 1 ) 50 CONTINUE CALL ZLACPY( 'A', QSIZ, N, Q2( 1, 1 ), LDQ2, Q( 1, 1 ), LDQ ) RETURN END IF * * If there are multiple eigenvalues then the problem deflates. Here * the number of equal eigenvalues are found. As each equal * eigenvalue is found, an elementary reflector is computed to rotate * the corresponding eigensubspace so that the corresponding * components of Z are zero in this new basis. * K = 0 K2 = N + 1 DO 60 J = 1, N IF( RHO*ABS( Z( J ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 INDXP( K2 ) = J IF( J.EQ.N ) $ GO TO 100 ELSE JLAM = J GO TO 70 END IF 60 CONTINUE 70 CONTINUE J = J + 1 IF( J.GT.N ) $ GO TO 90 IF( RHO*ABS( Z( J ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 INDXP( K2 ) = J ELSE * * Check if eigenvalues are close enough to allow deflation. * S = Z( JLAM ) C = Z( J ) * * Find sqrt(a**2+b**2) without overflow or * destructive underflow. * TAU = DLAPY2( C, S ) T = D( J ) - D( JLAM ) C = C / TAU S = -S / TAU IF( ABS( T*C*S ).LE.TOL ) THEN * * Deflation is possible. * Z( J ) = TAU Z( JLAM ) = ZERO * * Record the appropriate Givens rotation * GIVPTR = GIVPTR + 1 GIVCOL( 1, GIVPTR ) = INDXQ( INDX( JLAM ) ) GIVCOL( 2, GIVPTR ) = INDXQ( INDX( J ) ) GIVNUM( 1, GIVPTR ) = C GIVNUM( 2, GIVPTR ) = S CALL ZDROT( QSIZ, Q( 1, INDXQ( INDX( JLAM ) ) ), 1, $ Q( 1, INDXQ( INDX( J ) ) ), 1, C, S ) T = D( JLAM )*C*C + D( J )*S*S D( J ) = D( JLAM )*S*S + D( J )*C*C D( JLAM ) = T K2 = K2 - 1 I = 1 80 CONTINUE IF( K2+I.LE.N ) THEN IF( D( JLAM ).LT.D( INDXP( K2+I ) ) ) THEN INDXP( K2+I-1 ) = INDXP( K2+I ) INDXP( K2+I ) = JLAM I = I + 1 GO TO 80 ELSE INDXP( K2+I-1 ) = JLAM END IF ELSE INDXP( K2+I-1 ) = JLAM END IF JLAM = J ELSE K = K + 1 W( K ) = Z( JLAM ) DLAMDA( K ) = D( JLAM ) INDXP( K ) = JLAM JLAM = J END IF END IF GO TO 70 90 CONTINUE * * Record the last eigenvalue. * K = K + 1 W( K ) = Z( JLAM ) DLAMDA( K ) = D( JLAM ) INDXP( K ) = JLAM * 100 CONTINUE * * Sort the eigenvalues and corresponding eigenvectors into DLAMDA * and Q2 respectively. The eigenvalues/vectors which were not * deflated go into the first K slots of DLAMDA and Q2 respectively, * while those which were deflated go into the last N - K slots. * DO 110 J = 1, N JP = INDXP( J ) DLAMDA( J ) = D( JP ) PERM( J ) = INDXQ( INDX( JP ) ) CALL ZCOPY( QSIZ, Q( 1, PERM( J ) ), 1, Q2( 1, J ), 1 ) 110 CONTINUE * * The deflated eigenvalues and their corresponding vectors go back * into the last N - K slots of D and Q respectively. * IF( K.LT.N ) THEN CALL DCOPY( N-K, DLAMDA( K+1 ), 1, D( K+1 ), 1 ) CALL ZLACPY( 'A', QSIZ, N-K, Q2( 1, K+1 ), LDQ2, Q( 1, K+1 ), $ LDQ ) END IF * RETURN * * End of ZLAED8 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/Makefile0000644000000000000000000000013214061636515015315 xustar0030 mtime=1623670093.432103868 30 atime=1623670093.432103868 30 ctime=1623670093.432103868 elk-7.2.42/src/LAPACK/Makefile0000644002504400250440000000524414061636515017357 0ustar00dewhurstdewhurst00000000000000 AR = ar include ../../make.inc #------------------------------------------------------------------------------- # Suffix Rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f .f.o: $(F77) $(F77_OPTS) -c $< #------------------------------------------------------------------------------- # File dependencies #------------------------------------------------------------------------------- SRC = \ dcombssq.f dgesv.f dgetrf2.f dgetrf.f dgetri.f dgetrs.f \ disnan.f dlabad.f dlacpy.f dladiv.f dlae2.f dlaebz.f \ dlaed0.f dlaed1.f dlaed2.f dlaed3.f dlaed4.f dlaed5.f \ dlaed6.f dlaed7.f dlaed8.f dlaed9.f dlaeda.f dlaev2.f \ dlagtf.f dlagts.f dlaisnan.f dlamch.f dlamrg.f dlanst.f \ dlansy.f dlapy2.f dlapy3.f dlarfb.f dlarf.f dlarfg.f \ dlarft.f dlarnv.f dlartg.f dlaruv.f dlas2.f dlascl.f \ dlaset.f dlasq1.f dlasq2.f dlasq3.f dlasq4.f dlasq5.f \ dlasq6.f dlasr.f dlasrt.f dlassq.f dlasv2.f dlaswp.f \ dlatrd.f dorg2l.f dorg2r.f dorgql.f dorgqr.f dorgtr.f \ dorm2l.f dorm2r.f dormql.f dormqr.f dormtr.f dpotrf2.f \ dpotrf.f dstebz.f dstedc.f dstein.f dsteqr.f dsterf.f \ dsyev.f dsyevx.f dsygs2.f dsygst.f dsygvx.f dsytd2.f \ dsytrd.f dtrti2.f dtrtri.f ieeeck.f iladlc.f iladlr.f \ ilaenv.f ilazlc.f ilazlr.f iparam2stage.f iparmq.f xerbla.f \ zbdsqr.f zgebak.f zgebal.f zgebd2.f zgebrd.f zgeev.f \ zgehd2.f zgehrd.f zgelq2.f zgelqf.f zgeqr2.f zgeqrf.f \ zgesvd.f zgesv.f zgetrf2.f zgetrf.f zgetri.f zgetrs.f \ zheevd.f zheev.f zheevx.f zhegs2.f zhegst.f zhegv.f \ zhegvx.f zhetd2.f zhetrd.f zhpevx.f zhpgst.f zhpgvx.f \ zhptrd.f zhseqr.f zlabrd.f zlacgv.f zlacpy.f zlacrm.f \ zladiv.f zlaed0.f zlaed7.f zlaed8.f zlahqr.f zlahr2.f \ zlange.f zlanhe.f zlanhp.f zlaqr0.f zlaqr1.f zlaqr2.f \ zlaqr3.f zlaqr4.f zlaqr5.f zlarfb.f zlarf.f zlarfg.f \ zlarft.f zlartg.f zlascl.f zlaset.f zlasr.f zlassq.f \ zlaswp.f zlatrd.f zlatrs.f zpotrf2.f zpotrf.f zpptrf.f \ zrot.f zstedc.f zstein.f zsteqr.f ztrevc3.f ztrexc.f \ ztrti2.f ztrtri.f zung2l.f zung2r.f zungbr.f zunghr.f \ zungl2.f zunglq.f zungql.f zungqr.f zungtr.f zunm2l.f \ zunm2r.f zunmbr.f zunmhr.f zunml2.f zunmlq.f zunmql.f \ zunmqr.f zunmtr.f zupgtr.f zupmtr.f OBJ = $(SRC:.f=.o) lapack: $(OBJ) $(AR) -rc lapack.a $(OBJ) clean: rm -f *.o *.mod *~ *.a ifc* *.gcno gmon.out ls: ls -x --tabsize=0 --width=80 *.f elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed9.f0000644000000000000000000000013214061636515015166 xustar0030 mtime=1623670093.434103867 30 atime=1623670093.434103867 30 ctime=1623670093.434103867 elk-7.2.42/src/LAPACK/dlaed9.f0000644002504400250440000002072214061636515017226 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED9 used by sstedc. Finds the roots of the secular equation and updates the eigenvectors. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED9 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED9( K, KSTART, KSTOP, N, D, Q, LDQ, RHO, DLAMDA, W, * S, LDS, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, KSTART, KSTOP, LDQ, LDS, N * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), S( LDS, * ), * $ W( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED9 finds the roots of the secular equation, as defined by the *> values in D, Z, and RHO, between KSTART and KSTOP. It makes the *> appropriate calls to DLAED4 and then stores the new matrix of *> eigenvectors for use in calculating the next level of Z vectors. *> \endverbatim * * Arguments: * ========== * *> \param[in] K *> \verbatim *> K is INTEGER *> The number of terms in the rational function to be solved by *> DLAED4. K >= 0. *> \endverbatim *> *> \param[in] KSTART *> \verbatim *> KSTART is INTEGER *> \endverbatim *> *> \param[in] KSTOP *> \verbatim *> KSTOP is INTEGER *> The updated eigenvalues Lambda(I), KSTART <= I <= KSTOP *> are to be computed. 1 <= KSTART <= KSTOP <= K. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of rows and columns in the Q matrix. *> N >= K (delation may result in N > K). *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> D(I) contains the updated eigenvalues *> for KSTART <= I <= KSTOP. *> \endverbatim *> *> \param[out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ,N) *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max( 1, N ). *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The value of the parameter in the rank one update equation. *> RHO >= 0 required. *> \endverbatim *> *> \param[in] DLAMDA *> \verbatim *> DLAMDA is DOUBLE PRECISION array, dimension (K) *> The first K elements of this array contain the old roots *> of the deflated updating problem. These are the poles *> of the secular equation. *> \endverbatim *> *> \param[in] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (K) *> The first K elements of this array contain the components *> of the deflation-adjusted updating vector. *> \endverbatim *> *> \param[out] S *> \verbatim *> S is DOUBLE PRECISION array, dimension (LDS, K) *> Will contain the eigenvectors of the repaired matrix which *> will be stored for subsequent Z vector calculation and *> multiplied by the previously accumulated eigenvectors *> to update the system. *> \endverbatim *> *> \param[in] LDS *> \verbatim *> LDS is INTEGER *> The leading dimension of S. LDS >= max( 1, K ). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = 1, an eigenvalue did not converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE DLAED9( K, KSTART, KSTOP, N, D, Q, LDQ, RHO, DLAMDA, W, $ S, LDS, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INFO, K, KSTART, KSTOP, LDQ, LDS, N DOUBLE PRECISION RHO * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), S( LDS, * ), $ W( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, J DOUBLE PRECISION TEMP * .. * .. External Functions .. DOUBLE PRECISION DLAMC3, DNRM2 EXTERNAL DLAMC3, DNRM2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLAED4, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( K.LT.0 ) THEN INFO = -1 ELSE IF( KSTART.LT.1 .OR. KSTART.GT.MAX( 1, K ) ) THEN INFO = -2 ELSE IF( MAX( 1, KSTOP ).LT.KSTART .OR. KSTOP.GT.MAX( 1, K ) ) $ THEN INFO = -3 ELSE IF( N.LT.K ) THEN INFO = -4 ELSE IF( LDQ.LT.MAX( 1, K ) ) THEN INFO = -7 ELSE IF( LDS.LT.MAX( 1, K ) ) THEN INFO = -12 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED9', -INFO ) RETURN END IF * * Quick return if possible * IF( K.EQ.0 ) $ RETURN * * Modify values DLAMDA(i) to make sure all DLAMDA(i)-DLAMDA(j) can * be computed with high relative accuracy (barring over/underflow). * This is a problem on machines without a guard digit in * add/subtract (Cray XMP, Cray YMP, Cray C 90 and Cray 2). * The following code replaces DLAMDA(I) by 2*DLAMDA(I)-DLAMDA(I), * which on any of these machines zeros out the bottommost * bit of DLAMDA(I) if it is 1; this makes the subsequent * subtractions DLAMDA(I)-DLAMDA(J) unproblematic when cancellation * occurs. On binary machines with a guard digit (almost all * machines) it does not change DLAMDA(I) at all. On hexadecimal * and decimal machines with a guard digit, it slightly * changes the bottommost bits of DLAMDA(I). It does not account * for hexadecimal or decimal machines without guard digits * (we know of none). We use a subroutine call to compute * 2*DLAMBDA(I) to prevent optimizing compilers from eliminating * this code. * DO 10 I = 1, N DLAMDA( I ) = DLAMC3( DLAMDA( I ), DLAMDA( I ) ) - DLAMDA( I ) 10 CONTINUE * DO 20 J = KSTART, KSTOP CALL DLAED4( K, J, DLAMDA, W, Q( 1, J ), RHO, D( J ), INFO ) * * If the zero finder fails, the computation is terminated. * IF( INFO.NE.0 ) $ GO TO 120 20 CONTINUE * IF( K.EQ.1 .OR. K.EQ.2 ) THEN DO 40 I = 1, K DO 30 J = 1, K S( J, I ) = Q( J, I ) 30 CONTINUE 40 CONTINUE GO TO 120 END IF * * Compute updated W. * CALL DCOPY( K, W, 1, S, 1 ) * * Initialize W(I) = Q(I,I) * CALL DCOPY( K, Q, LDQ+1, W, 1 ) DO 70 J = 1, K DO 50 I = 1, J - 1 W( I ) = W( I )*( Q( I, J ) / ( DLAMDA( I )-DLAMDA( J ) ) ) 50 CONTINUE DO 60 I = J + 1, K W( I ) = W( I )*( Q( I, J ) / ( DLAMDA( I )-DLAMDA( J ) ) ) 60 CONTINUE 70 CONTINUE DO 80 I = 1, K W( I ) = SIGN( SQRT( -W( I ) ), S( I, 1 ) ) 80 CONTINUE * * Compute eigenvectors of the modified rank-1 modification. * DO 110 J = 1, K DO 90 I = 1, K Q( I, J ) = W( I ) / Q( I, J ) 90 CONTINUE TEMP = DNRM2( K, Q( 1, J ), 1 ) DO 100 I = 1, K S( I, J ) = Q( I, J ) / TEMP 100 CONTINUE 110 CONTINUE * 120 CONTINUE RETURN * * End of DLAED9 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlamrg.f0000644000000000000000000000013214061636515015272 xustar0030 mtime=1623670093.436103865 30 atime=1623670093.436103865 30 ctime=1623670093.436103865 elk-7.2.42/src/LAPACK/dlamrg.f0000644002504400250440000001071314061636515017331 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAMRG creates a permutation list to merge the entries of two independently sorted sets into a single set sorted in ascending order. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAMRG + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAMRG( N1, N2, A, DTRD1, DTRD2, INDEX ) * * .. Scalar Arguments .. * INTEGER DTRD1, DTRD2, N1, N2 * .. * .. Array Arguments .. * INTEGER INDEX( * ) * DOUBLE PRECISION A( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAMRG will create a permutation list which will merge the elements *> of A (which is composed of two independently sorted sets) into a *> single set which is sorted in ascending order. *> \endverbatim * * Arguments: * ========== * *> \param[in] N1 *> \verbatim *> N1 is INTEGER *> \endverbatim *> *> \param[in] N2 *> \verbatim *> N2 is INTEGER *> These arguments contain the respective lengths of the two *> sorted lists to be merged. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (N1+N2) *> The first N1 elements of A contain a list of numbers which *> are sorted in either ascending or descending order. Likewise *> for the final N2 elements. *> \endverbatim *> *> \param[in] DTRD1 *> \verbatim *> DTRD1 is INTEGER *> \endverbatim *> *> \param[in] DTRD2 *> \verbatim *> DTRD2 is INTEGER *> These are the strides to be taken through the array A. *> Allowable strides are 1 and -1. They indicate whether a *> subset of A is sorted in ascending (DTRDx = 1) or descending *> (DTRDx = -1) order. *> \endverbatim *> *> \param[out] INDEX *> \verbatim *> INDEX is INTEGER array, dimension (N1+N2) *> On exit this array will contain a permutation such that *> if B( I ) = A( INDEX( I ) ) for I=1,N1+N2, then B will be *> sorted in ascending order. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLAMRG( N1, N2, A, DTRD1, DTRD2, INDEX ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER DTRD1, DTRD2, N1, N2 * .. * .. Array Arguments .. INTEGER INDEX( * ) DOUBLE PRECISION A( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, IND1, IND2, N1SV, N2SV * .. * .. Executable Statements .. * N1SV = N1 N2SV = N2 IF( DTRD1.GT.0 ) THEN IND1 = 1 ELSE IND1 = N1 END IF IF( DTRD2.GT.0 ) THEN IND2 = 1 + N1 ELSE IND2 = N1 + N2 END IF I = 1 * while ( (N1SV > 0) & (N2SV > 0) ) 10 CONTINUE IF( N1SV.GT.0 .AND. N2SV.GT.0 ) THEN IF( A( IND1 ).LE.A( IND2 ) ) THEN INDEX( I ) = IND1 I = I + 1 IND1 = IND1 + DTRD1 N1SV = N1SV - 1 ELSE INDEX( I ) = IND2 I = I + 1 IND2 = IND2 + DTRD2 N2SV = N2SV - 1 END IF GO TO 10 END IF * end while IF( N1SV.EQ.0 ) THEN DO 20 N1SV = 1, N2SV INDEX( I ) = IND2 I = I + 1 IND2 = IND2 + DTRD2 20 CONTINUE ELSE * N2SV .EQ. 0 DO 30 N2SV = 1, N1SV INDEX( I ) = IND1 I = I + 1 IND1 = IND1 + DTRD1 30 CONTINUE END IF * RETURN * * End of DLAMRG * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zunmhr.f0000644000000000000000000000013214061636515015347 xustar0030 mtime=1623670093.438103863 30 atime=1623670093.437103864 30 ctime=1623670093.438103863 elk-7.2.42/src/LAPACK/zunmhr.f0000644002504400250440000002024714061636515017411 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZUNMHR * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZUNMHR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZUNMHR( SIDE, TRANS, M, N, ILO, IHI, A, LDA, TAU, C, * LDC, WORK, LWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER SIDE, TRANS * INTEGER IHI, ILO, INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. * COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZUNMHR overwrites the general complex M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q * C C * Q *> TRANS = 'C': Q**H * C C * Q**H *> *> where Q is a complex unitary matrix of order nq, with nq = m if *> SIDE = 'L' and nq = n if SIDE = 'R'. Q is defined as the product of *> IHI-ILO elementary reflectors, as returned by ZGEHRD: *> *> Q = H(ilo) H(ilo+1) . . . H(ihi-1). *> \endverbatim * * Arguments: * ========== * *> \param[in] SIDE *> \verbatim *> SIDE is CHARACTER*1 *> = 'L': apply Q or Q**H from the Left; *> = 'R': apply Q or Q**H from the Right. *> \endverbatim *> *> \param[in] TRANS *> \verbatim *> TRANS is CHARACTER*1 *> = 'N': apply Q (No transpose) *> = 'C': apply Q**H (Conjugate transpose) *> \endverbatim *> *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix C. M >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix C. N >= 0. *> \endverbatim *> *> \param[in] ILO *> \verbatim *> ILO is INTEGER *> \endverbatim *> *> \param[in] IHI *> \verbatim *> IHI is INTEGER *> *> ILO and IHI must have the same values as in the previous call *> of ZGEHRD. Q is equal to the unit matrix except in the *> submatrix Q(ilo+1:ihi,ilo+1:ihi). *> If SIDE = 'L', then 1 <= ILO <= IHI <= M, if M > 0, and *> ILO = 1 and IHI = 0, if M = 0; *> if SIDE = 'R', then 1 <= ILO <= IHI <= N, if N > 0, and *> ILO = 1 and IHI = 0, if N = 0. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension *> (LDA,M) if SIDE = 'L' *> (LDA,N) if SIDE = 'R' *> The vectors which define the elementary reflectors, as *> returned by ZGEHRD. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. *> LDA >= max(1,M) if SIDE = 'L'; LDA >= max(1,N) if SIDE = 'R'. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is COMPLEX*16 array, dimension *> (M-1) if SIDE = 'L' *> (N-1) if SIDE = 'R' *> TAU(i) must contain the scalar factor of the elementary *> reflector H(i), as returned by ZGEHRD. *> \endverbatim *> *> \param[in,out] C *> \verbatim *> C is COMPLEX*16 array, dimension (LDC,N) *> On entry, the M-by-N matrix C. *> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q. *> \endverbatim *> *> \param[in] LDC *> \verbatim *> LDC is INTEGER *> The leading dimension of the array C. LDC >= max(1,M). *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (MAX(1,LWORK)) *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the array WORK. *> If SIDE = 'L', LWORK >= max(1,N); *> if SIDE = 'R', LWORK >= max(1,M). *> For optimum performance LWORK >= N*NB if SIDE = 'L', and *> LWORK >= M*NB if SIDE = 'R', where NB is the optimal *> blocksize. *> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal size of the WORK array, returns *> this value as the first entry of the WORK array, and no error *> message related to LWORK is issued by XERBLA. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZUNMHR( SIDE, TRANS, M, N, ILO, IHI, A, LDA, TAU, C, $ LDC, WORK, LWORK, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER SIDE, TRANS INTEGER IHI, ILO, INFO, LDA, LDC, LWORK, M, N * .. * .. Array Arguments .. COMPLEX*16 A( LDA, * ), C( LDC, * ), TAU( * ), WORK( * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL LEFT, LQUERY INTEGER I1, I2, IINFO, LWKOPT, MI, NB, NH, NI, NQ, NW * .. * .. External Functions .. LOGICAL LSAME INTEGER ILAENV EXTERNAL LSAME, ILAENV * .. * .. External Subroutines .. EXTERNAL XERBLA, ZUNMQR * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN * .. * .. Executable Statements .. * * Test the input arguments * INFO = 0 NH = IHI - ILO LEFT = LSAME( SIDE, 'L' ) LQUERY = ( LWORK.EQ.-1 ) * * NQ is the order of Q and NW is the minimum dimension of WORK * IF( LEFT ) THEN NQ = M NW = N ELSE NQ = N NW = M END IF IF( .NOT.LEFT .AND. .NOT.LSAME( SIDE, 'R' ) ) THEN INFO = -1 ELSE IF( .NOT.LSAME( TRANS, 'N' ) .AND. .NOT.LSAME( TRANS, 'C' ) ) $ THEN INFO = -2 ELSE IF( M.LT.0 ) THEN INFO = -3 ELSE IF( N.LT.0 ) THEN INFO = -4 ELSE IF( ILO.LT.1 .OR. ILO.GT.MAX( 1, NQ ) ) THEN INFO = -5 ELSE IF( IHI.LT.MIN( ILO, NQ ) .OR. IHI.GT.NQ ) THEN INFO = -6 ELSE IF( LDA.LT.MAX( 1, NQ ) ) THEN INFO = -8 ELSE IF( LDC.LT.MAX( 1, M ) ) THEN INFO = -11 ELSE IF( LWORK.LT.MAX( 1, NW ) .AND. .NOT.LQUERY ) THEN INFO = -13 END IF * IF( INFO.EQ.0 ) THEN IF( LEFT ) THEN NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, NH, N, NH, -1 ) ELSE NB = ILAENV( 1, 'ZUNMQR', SIDE // TRANS, M, NH, NH, -1 ) END IF LWKOPT = MAX( 1, NW )*NB WORK( 1 ) = LWKOPT END IF * IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZUNMHR', -INFO ) RETURN ELSE IF( LQUERY ) THEN RETURN END IF * * Quick return if possible * IF( M.EQ.0 .OR. N.EQ.0 .OR. NH.EQ.0 ) THEN WORK( 1 ) = 1 RETURN END IF * IF( LEFT ) THEN MI = NH NI = N I1 = ILO + 1 I2 = 1 ELSE MI = M NI = NH I1 = 1 I2 = ILO + 1 END IF * CALL ZUNMQR( SIDE, TRANS, MI, NI, NH, A( ILO+1, ILO ), LDA, $ TAU( ILO ), C( I1, I2 ), LDC, WORK, LWORK, IINFO ) * WORK( 1 ) = LWKOPT RETURN * * End of ZUNMHR * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/ztrexc.f0000644000000000000000000000013214061636515015343 xustar0030 mtime=1623670093.440103861 30 atime=1623670093.439103862 30 ctime=1623670093.440103861 elk-7.2.42/src/LAPACK/ztrexc.f0000644002504400250440000001456314061636515017411 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZTREXC * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZTREXC + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZTREXC( COMPQ, N, T, LDT, Q, LDQ, IFST, ILST, INFO ) * * .. Scalar Arguments .. * CHARACTER COMPQ * INTEGER IFST, ILST, INFO, LDQ, LDT, N * .. * .. Array Arguments .. * COMPLEX*16 Q( LDQ, * ), T( LDT, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZTREXC reorders the Schur factorization of a complex matrix *> A = Q*T*Q**H, so that the diagonal element of T with row index IFST *> is moved to row ILST. *> *> The Schur form T is reordered by a unitary similarity transformation *> Z**H*T*Z, and optionally the matrix Q of Schur vectors is updated by *> postmultplying it with Z. *> \endverbatim * * Arguments: * ========== * *> \param[in] COMPQ *> \verbatim *> COMPQ is CHARACTER*1 *> = 'V': update the matrix Q of Schur vectors; *> = 'N': do not update Q. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix T. N >= 0. *> If N == 0 arguments ILST and IFST may be any value. *> \endverbatim *> *> \param[in,out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,N) *> On entry, the upper triangular matrix T. *> On exit, the reordered upper triangular matrix. *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of the array T. LDT >= max(1,N). *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is COMPLEX*16 array, dimension (LDQ,N) *> On entry, if COMPQ = 'V', the matrix Q of Schur vectors. *> On exit, if COMPQ = 'V', Q has been postmultiplied by the *> unitary transformation matrix Z which reorders T. *> If COMPQ = 'N', Q is not referenced. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= 1, and if *> COMPQ = 'V', LDQ >= max(1,N). *> \endverbatim *> *> \param[in] IFST *> \verbatim *> IFST is INTEGER *> \endverbatim *> *> \param[in] ILST *> \verbatim *> ILST is INTEGER *> *> Specify the reordering of the diagonal elements of T: *> The element with row index IFST is moved to row ILST by a *> sequence of transpositions between adjacent elements. *> 1 <= IFST <= N; 1 <= ILST <= N. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> < 0: if INFO = -i, the i-th argument had an illegal value *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERcomputational * * ===================================================================== SUBROUTINE ZTREXC( COMPQ, N, T, LDT, Q, LDQ, IFST, ILST, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. CHARACTER COMPQ INTEGER IFST, ILST, INFO, LDQ, LDT, N * .. * .. Array Arguments .. COMPLEX*16 Q( LDQ, * ), T( LDT, * ) * .. * * ===================================================================== * * .. Local Scalars .. LOGICAL WANTQ INTEGER K, M1, M2, M3 DOUBLE PRECISION CS COMPLEX*16 SN, T11, T22, TEMP * .. * .. External Functions .. LOGICAL LSAME EXTERNAL LSAME * .. * .. External Subroutines .. EXTERNAL XERBLA, ZLARTG, ZROT * .. * .. Intrinsic Functions .. INTRINSIC DCONJG, MAX * .. * .. Executable Statements .. * * Decode and test the input parameters. * INFO = 0 WANTQ = LSAME( COMPQ, 'V' ) IF( .NOT.LSAME( COMPQ, 'N' ) .AND. .NOT.WANTQ ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -2 ELSE IF( LDT.LT.MAX( 1, N ) ) THEN INFO = -4 ELSE IF( LDQ.LT.1 .OR. ( WANTQ .AND. LDQ.LT.MAX( 1, N ) ) ) THEN INFO = -6 ELSE IF(( IFST.LT.1 .OR. IFST.GT.N ).AND.( N.GT.0 )) THEN INFO = -7 ELSE IF(( ILST.LT.1 .OR. ILST.GT.N ).AND.( N.GT.0 )) THEN INFO = -8 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'ZTREXC', -INFO ) RETURN END IF * * Quick return if possible * IF( N.LE.1 .OR. IFST.EQ.ILST ) $ RETURN * IF( IFST.LT.ILST ) THEN * * Move the IFST-th diagonal element forward down the diagonal. * M1 = 0 M2 = -1 M3 = 1 ELSE * * Move the IFST-th diagonal element backward up the diagonal. * M1 = -1 M2 = 0 M3 = -1 END IF * DO 10 K = IFST + M1, ILST + M2, M3 * * Interchange the k-th and (k+1)-th diagonal elements. * T11 = T( K, K ) T22 = T( K+1, K+1 ) * * Determine the transformation to perform the interchange. * CALL ZLARTG( T( K, K+1 ), T22-T11, CS, SN, TEMP ) * * Apply transformation to the matrix T. * IF( K+2.LE.N ) $ CALL ZROT( N-K-1, T( K, K+2 ), LDT, T( K+1, K+2 ), LDT, CS, $ SN ) CALL ZROT( K-1, T( 1, K ), 1, T( 1, K+1 ), 1, CS, $ DCONJG( SN ) ) * T( K, K ) = T22 T( K+1, K+1 ) = T11 * IF( WANTQ ) THEN * * Accumulate transformation in the matrix Q. * CALL ZROT( N, Q( 1, K ), 1, Q( 1, K+1 ), 1, CS, $ DCONJG( SN ) ) END IF * 10 CONTINUE * RETURN * * End of ZTREXC * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr2.f0000644000000000000000000000013114061636515015236 xustar0030 mtime=1623670093.442103859 29 atime=1623670093.44110386 30 ctime=1623670093.442103859 elk-7.2.42/src/LAPACK/zlaqr2.f0000644002504400250440000004223614061636515017303 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR2 performs the unitary similarity transformation of a Hessenberg matrix to detect and deflate fully converged eigenvalues from a trailing principal submatrix (aggressive early deflation). * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR2 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR2( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, * IHIZ, Z, LDZ, NS, ND, SH, V, LDV, NH, T, LDT, * NV, WV, LDWV, WORK, LWORK ) * * .. Scalar Arguments .. * INTEGER IHIZ, ILOZ, KBOT, KTOP, LDH, LDT, LDV, LDWV, * $ LDZ, LWORK, N, ND, NH, NS, NV, NW * LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), SH( * ), T( LDT, * ), V( LDV, * ), * $ WORK( * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLAQR2 is identical to ZLAQR3 except that it avoids *> recursion by calling ZLAHQR instead of ZLAQR4. *> *> Aggressive early deflation: *> *> ZLAQR2 accepts as input an upper Hessenberg matrix *> H and performs an unitary similarity transformation *> designed to detect and deflate fully converged eigenvalues from *> a trailing principal submatrix. On output H has been over- *> written by a new Hessenberg matrix that is a perturbation of *> an unitary similarity transformation of H. It is to be *> hoped that the final version of H has many zero subdiagonal *> entries. *> *> \endverbatim * * Arguments: * ========== * *> \param[in] WANTT *> \verbatim *> WANTT is LOGICAL *> If .TRUE., then the Hessenberg matrix H is fully updated *> so that the triangular Schur factor may be *> computed (in cooperation with the calling subroutine). *> If .FALSE., then only enough of H is updated to preserve *> the eigenvalues. *> \endverbatim *> *> \param[in] WANTZ *> \verbatim *> WANTZ is LOGICAL *> If .TRUE., then the unitary matrix Z is updated so *> so that the unitary Schur factor may be computed *> (in cooperation with the calling subroutine). *> If .FALSE., then Z is not referenced. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The order of the matrix H and (if WANTZ is .TRUE.) the *> order of the unitary matrix Z. *> \endverbatim *> *> \param[in] KTOP *> \verbatim *> KTOP is INTEGER *> It is assumed that either KTOP = 1 or H(KTOP,KTOP-1)=0. *> KBOT and KTOP together determine an isolated block *> along the diagonal of the Hessenberg matrix. *> \endverbatim *> *> \param[in] KBOT *> \verbatim *> KBOT is INTEGER *> It is assumed without a check that either *> KBOT = N or H(KBOT+1,KBOT)=0. KBOT and KTOP together *> determine an isolated block along the diagonal of the *> Hessenberg matrix. *> \endverbatim *> *> \param[in] NW *> \verbatim *> NW is INTEGER *> Deflation window size. 1 <= NW <= (KBOT-KTOP+1). *> \endverbatim *> *> \param[in,out] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> On input the initial N-by-N section of H stores the *> Hessenberg matrix undergoing aggressive early deflation. *> On output H has been transformed by a unitary *> similarity transformation, perturbed, and the returned *> to Hessenberg form that (it is to be hoped) has some *> zero subdiagonal entries. *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> Leading dimension of H just as declared in the calling *> subroutine. N <= LDH *> \endverbatim *> *> \param[in] ILOZ *> \verbatim *> ILOZ is INTEGER *> \endverbatim *> *> \param[in] IHIZ *> \verbatim *> IHIZ is INTEGER *> Specify the rows of Z to which transformations must be *> applied if WANTZ is .TRUE.. 1 <= ILOZ <= IHIZ <= N. *> \endverbatim *> *> \param[in,out] Z *> \verbatim *> Z is COMPLEX*16 array, dimension (LDZ,N) *> IF WANTZ is .TRUE., then on output, the unitary *> similarity transformation mentioned above has been *> accumulated into Z(ILOZ:IHIZ,ILOZ:IHIZ) from the right. *> If WANTZ is .FALSE., then Z is unreferenced. *> \endverbatim *> *> \param[in] LDZ *> \verbatim *> LDZ is INTEGER *> The leading dimension of Z just as declared in the *> calling subroutine. 1 <= LDZ. *> \endverbatim *> *> \param[out] NS *> \verbatim *> NS is INTEGER *> The number of unconverged (ie approximate) eigenvalues *> returned in SR and SI that may be used as shifts by the *> calling subroutine. *> \endverbatim *> *> \param[out] ND *> \verbatim *> ND is INTEGER *> The number of converged eigenvalues uncovered by this *> subroutine. *> \endverbatim *> *> \param[out] SH *> \verbatim *> SH is COMPLEX*16 array, dimension (KBOT) *> On output, approximate eigenvalues that may *> be used for shifts are stored in SH(KBOT-ND-NS+1) *> through SR(KBOT-ND). Converged eigenvalues are *> stored in SH(KBOT-ND+1) through SH(KBOT). *> \endverbatim *> *> \param[out] V *> \verbatim *> V is COMPLEX*16 array, dimension (LDV,NW) *> An NW-by-NW work array. *> \endverbatim *> *> \param[in] LDV *> \verbatim *> LDV is INTEGER *> The leading dimension of V just as declared in the *> calling subroutine. NW <= LDV *> \endverbatim *> *> \param[in] NH *> \verbatim *> NH is INTEGER *> The number of columns of T. NH >= NW. *> \endverbatim *> *> \param[out] T *> \verbatim *> T is COMPLEX*16 array, dimension (LDT,NW) *> \endverbatim *> *> \param[in] LDT *> \verbatim *> LDT is INTEGER *> The leading dimension of T just as declared in the *> calling subroutine. NW <= LDT *> \endverbatim *> *> \param[in] NV *> \verbatim *> NV is INTEGER *> The number of rows of work array WV available for *> workspace. NV >= NW. *> \endverbatim *> *> \param[out] WV *> \verbatim *> WV is COMPLEX*16 array, dimension (LDWV,NW) *> \endverbatim *> *> \param[in] LDWV *> \verbatim *> LDWV is INTEGER *> The leading dimension of W just as declared in the *> calling subroutine. NW <= LDV *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension (LWORK) *> On exit, WORK(1) is set to an estimate of the optimal value *> of LWORK for the given values of N, NW, KTOP and KBOT. *> \endverbatim *> *> \param[in] LWORK *> \verbatim *> LWORK is INTEGER *> The dimension of the work array WORK. LWORK = 2*NW *> suffices, but greater efficiency may result from larger *> values of LWORK. *> *> If LWORK = -1, then a workspace query is assumed; ZLAQR2 *> only estimates the optimal workspace size for the given *> values of N, NW, KTOP and KBOT. The estimate is returned *> in WORK(1). No error message related to LWORK is issued *> by XERBLA. Neither H nor Z are accessed. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA *> * ===================================================================== SUBROUTINE ZLAQR2( WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, $ IHIZ, Z, LDZ, NS, ND, SH, V, LDV, NH, T, LDT, $ NV, WV, LDWV, WORK, LWORK ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER IHIZ, ILOZ, KBOT, KTOP, LDH, LDT, LDV, LDWV, $ LDZ, LWORK, N, ND, NH, NS, NV, NW LOGICAL WANTT, WANTZ * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), SH( * ), T( LDT, * ), V( LDV, * ), $ WORK( * ), WV( LDWV, * ), Z( LDZ, * ) * .. * * ================================================================ * * .. Parameters .. COMPLEX*16 ZERO, ONE PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ), $ ONE = ( 1.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO, RONE PARAMETER ( RZERO = 0.0d0, RONE = 1.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 BETA, CDUM, S, TAU DOUBLE PRECISION FOO, SAFMAX, SAFMIN, SMLNUM, ULP INTEGER I, IFST, ILST, INFO, INFQR, J, JW, KCOL, KLN, $ KNT, KROW, KWTOP, LTOP, LWK1, LWK2, LWKOPT * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. External Subroutines .. EXTERNAL DLABAD, ZCOPY, ZGEHRD, ZGEMM, ZLACPY, ZLAHQR, $ ZLARF, ZLARFG, ZLASET, ZTREXC, ZUNMHR * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DCONJG, DIMAG, INT, MAX, MIN * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. * * ==== Estimate optimal workspace. ==== * JW = MIN( NW, KBOT-KTOP+1 ) IF( JW.LE.2 ) THEN LWKOPT = 1 ELSE * * ==== Workspace query call to ZGEHRD ==== * CALL ZGEHRD( JW, 1, JW-1, T, LDT, WORK, WORK, -1, INFO ) LWK1 = INT( WORK( 1 ) ) * * ==== Workspace query call to ZUNMHR ==== * CALL ZUNMHR( 'R', 'N', JW, JW, 1, JW-1, T, LDT, WORK, V, LDV, $ WORK, -1, INFO ) LWK2 = INT( WORK( 1 ) ) * * ==== Optimal workspace ==== * LWKOPT = JW + MAX( LWK1, LWK2 ) END IF * * ==== Quick return in case of workspace query. ==== * IF( LWORK.EQ.-1 ) THEN WORK( 1 ) = DCMPLX( LWKOPT, 0 ) RETURN END IF * * ==== Nothing to do ... * ... for an empty active block ... ==== NS = 0 ND = 0 WORK( 1 ) = ONE IF( KTOP.GT.KBOT ) $ RETURN * ... nor for an empty deflation window. ==== IF( NW.LT.1 ) $ RETURN * * ==== Machine constants ==== * SAFMIN = DLAMCH( 'SAFE MINIMUM' ) SAFMAX = RONE / SAFMIN CALL DLABAD( SAFMIN, SAFMAX ) ULP = DLAMCH( 'PRECISION' ) SMLNUM = SAFMIN*( DBLE( N ) / ULP ) * * ==== Setup deflation window ==== * JW = MIN( NW, KBOT-KTOP+1 ) KWTOP = KBOT - JW + 1 IF( KWTOP.EQ.KTOP ) THEN S = ZERO ELSE S = H( KWTOP, KWTOP-1 ) END IF * IF( KBOT.EQ.KWTOP ) THEN * * ==== 1-by-1 deflation window: not much to do ==== * SH( KWTOP ) = H( KWTOP, KWTOP ) NS = 1 ND = 0 IF( CABS1( S ).LE.MAX( SMLNUM, ULP*CABS1( H( KWTOP, $ KWTOP ) ) ) ) THEN NS = 0 ND = 1 IF( KWTOP.GT.KTOP ) $ H( KWTOP, KWTOP-1 ) = ZERO END IF WORK( 1 ) = ONE RETURN END IF * * ==== Convert to spike-triangular form. (In case of a * . rare QR failure, this routine continues to do * . aggressive early deflation using that part of * . the deflation window that converged using INFQR * . here and there to keep track.) ==== * CALL ZLACPY( 'U', JW, JW, H( KWTOP, KWTOP ), LDH, T, LDT ) CALL ZCOPY( JW-1, H( KWTOP+1, KWTOP ), LDH+1, T( 2, 1 ), LDT+1 ) * CALL ZLASET( 'A', JW, JW, ZERO, ONE, V, LDV ) CALL ZLAHQR( .true., .true., JW, 1, JW, T, LDT, SH( KWTOP ), 1, $ JW, V, LDV, INFQR ) * * ==== Deflation detection loop ==== * NS = JW ILST = INFQR + 1 DO 10 KNT = INFQR + 1, JW * * ==== Small spike tip deflation test ==== * FOO = CABS1( T( NS, NS ) ) IF( FOO.EQ.RZERO ) $ FOO = CABS1( S ) IF( CABS1( S )*CABS1( V( 1, NS ) ).LE.MAX( SMLNUM, ULP*FOO ) ) $ THEN * * ==== One more converged eigenvalue ==== * NS = NS - 1 ELSE * * ==== One undeflatable eigenvalue. Move it up out of the * . way. (ZTREXC can not fail in this case.) ==== * IFST = NS CALL ZTREXC( 'V', JW, T, LDT, V, LDV, IFST, ILST, INFO ) ILST = ILST + 1 END IF 10 CONTINUE * * ==== Return to Hessenberg form ==== * IF( NS.EQ.0 ) $ S = ZERO * IF( NS.LT.JW ) THEN * * ==== sorting the diagonal of T improves accuracy for * . graded matrices. ==== * DO 30 I = INFQR + 1, NS IFST = I DO 20 J = I + 1, NS IF( CABS1( T( J, J ) ).GT.CABS1( T( IFST, IFST ) ) ) $ IFST = J 20 CONTINUE ILST = I IF( IFST.NE.ILST ) $ CALL ZTREXC( 'V', JW, T, LDT, V, LDV, IFST, ILST, INFO ) 30 CONTINUE END IF * * ==== Restore shift/eigenvalue array from T ==== * DO 40 I = INFQR + 1, JW SH( KWTOP+I-1 ) = T( I, I ) 40 CONTINUE * * IF( NS.LT.JW .OR. S.EQ.ZERO ) THEN IF( NS.GT.1 .AND. S.NE.ZERO ) THEN * * ==== Reflect spike back into lower triangle ==== * CALL ZCOPY( NS, V, LDV, WORK, 1 ) DO 50 I = 1, NS WORK( I ) = DCONJG( WORK( I ) ) 50 CONTINUE BETA = WORK( 1 ) CALL ZLARFG( NS, BETA, WORK( 2 ), 1, TAU ) WORK( 1 ) = ONE * CALL ZLASET( 'L', JW-2, JW-2, ZERO, ZERO, T( 3, 1 ), LDT ) * CALL ZLARF( 'L', NS, JW, WORK, 1, DCONJG( TAU ), T, LDT, $ WORK( JW+1 ) ) CALL ZLARF( 'R', NS, NS, WORK, 1, TAU, T, LDT, $ WORK( JW+1 ) ) CALL ZLARF( 'R', JW, NS, WORK, 1, TAU, V, LDV, $ WORK( JW+1 ) ) * CALL ZGEHRD( JW, 1, NS, T, LDT, WORK, WORK( JW+1 ), $ LWORK-JW, INFO ) END IF * * ==== Copy updated reduced window into place ==== * IF( KWTOP.GT.1 ) $ H( KWTOP, KWTOP-1 ) = S*DCONJG( V( 1, 1 ) ) CALL ZLACPY( 'U', JW, JW, T, LDT, H( KWTOP, KWTOP ), LDH ) CALL ZCOPY( JW-1, T( 2, 1 ), LDT+1, H( KWTOP+1, KWTOP ), $ LDH+1 ) * * ==== Accumulate orthogonal matrix in order update * . H and Z, if requested. ==== * IF( NS.GT.1 .AND. S.NE.ZERO ) $ CALL ZUNMHR( 'R', 'N', JW, NS, 1, NS, T, LDT, WORK, V, LDV, $ WORK( JW+1 ), LWORK-JW, INFO ) * * ==== Update vertical slab in H ==== * IF( WANTT ) THEN LTOP = 1 ELSE LTOP = KTOP END IF DO 60 KROW = LTOP, KWTOP - 1, NV KLN = MIN( NV, KWTOP-KROW ) CALL ZGEMM( 'N', 'N', KLN, JW, JW, ONE, H( KROW, KWTOP ), $ LDH, V, LDV, ZERO, WV, LDWV ) CALL ZLACPY( 'A', KLN, JW, WV, LDWV, H( KROW, KWTOP ), LDH ) 60 CONTINUE * * ==== Update horizontal slab in H ==== * IF( WANTT ) THEN DO 70 KCOL = KBOT + 1, N, NH KLN = MIN( NH, N-KCOL+1 ) CALL ZGEMM( 'C', 'N', JW, KLN, JW, ONE, V, LDV, $ H( KWTOP, KCOL ), LDH, ZERO, T, LDT ) CALL ZLACPY( 'A', JW, KLN, T, LDT, H( KWTOP, KCOL ), $ LDH ) 70 CONTINUE END IF * * ==== Update vertical slab in Z ==== * IF( WANTZ ) THEN DO 80 KROW = ILOZ, IHIZ, NV KLN = MIN( NV, IHIZ-KROW+1 ) CALL ZGEMM( 'N', 'N', KLN, JW, JW, ONE, Z( KROW, KWTOP ), $ LDZ, V, LDV, ZERO, WV, LDWV ) CALL ZLACPY( 'A', KLN, JW, WV, LDWV, Z( KROW, KWTOP ), $ LDZ ) 80 CONTINUE END IF END IF * * ==== Return the number of deflations ... ==== * ND = JW - NS * * ==== ... and the number of shifts. (Subtracting * . INFQR from the spike length takes care * . of the case of a rare QR failure while * . calculating eigenvalues of the deflation * . window.) ==== * NS = NS - INFQR * * ==== Return optimal workspace. ==== * WORK( 1 ) = DCMPLX( LWKOPT, 0 ) * * ==== End of ZLAQR2 ==== * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlaqr1.f0000644000000000000000000000013214061636515015236 xustar0030 mtime=1623670093.443103858 30 atime=1623670093.443103858 30 ctime=1623670093.443103858 elk-7.2.42/src/LAPACK/zlaqr1.f0000644002504400250440000001152214061636515017274 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLAQR1 sets a scalar multiple of the first column of the product of 2-by-2 or 3-by-3 matrix H and specified shifts. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLAQR1 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLAQR1( N, H, LDH, S1, S2, V ) * * .. Scalar Arguments .. * COMPLEX*16 S1, S2 * INTEGER LDH, N * .. * .. Array Arguments .. * COMPLEX*16 H( LDH, * ), V( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> Given a 2-by-2 or 3-by-3 matrix H, ZLAQR1 sets v to a *> scalar multiple of the first column of the product *> *> (*) K = (H - s1*I)*(H - s2*I) *> *> scaling to avoid overflows and most underflows. *> *> This is useful for starting double implicit shift bulges *> in the QR algorithm. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> Order of the matrix H. N must be either 2 or 3. *> \endverbatim *> *> \param[in] H *> \verbatim *> H is COMPLEX*16 array, dimension (LDH,N) *> The 2-by-2 or 3-by-3 matrix H in (*). *> \endverbatim *> *> \param[in] LDH *> \verbatim *> LDH is INTEGER *> The leading dimension of H as declared in *> the calling procedure. LDH >= N *> \endverbatim *> *> \param[in] S1 *> \verbatim *> S1 is COMPLEX*16 *> \endverbatim *> *> \param[in] S2 *> \verbatim *> S2 is COMPLEX*16 *> *> S1 and S2 are the shifts defining K in (*) above. *> \endverbatim *> *> \param[out] V *> \verbatim *> V is COMPLEX*16 array, dimension (N) *> A scalar multiple of the first column of the *> matrix K in (*). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup complex16OTHERauxiliary * *> \par Contributors: * ================== *> *> Karen Braman and Ralph Byers, Department of Mathematics, *> University of Kansas, USA *> * ===================================================================== SUBROUTINE ZLAQR1( N, H, LDH, S1, S2, V ) * * -- LAPACK auxiliary routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. COMPLEX*16 S1, S2 INTEGER LDH, N * .. * .. Array Arguments .. COMPLEX*16 H( LDH, * ), V( * ) * .. * * ================================================================ * * .. Parameters .. COMPLEX*16 ZERO PARAMETER ( ZERO = ( 0.0d0, 0.0d0 ) ) DOUBLE PRECISION RZERO PARAMETER ( RZERO = 0.0d0 ) * .. * .. Local Scalars .. COMPLEX*16 CDUM, H21S, H31S DOUBLE PRECISION S * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DIMAG * .. * .. Statement Functions .. DOUBLE PRECISION CABS1 * .. * .. Statement Function definitions .. CABS1( CDUM ) = ABS( DBLE( CDUM ) ) + ABS( DIMAG( CDUM ) ) * .. * .. Executable Statements .. * * Quick return if possible * IF( N.NE.2 .AND. N.NE.3 ) THEN RETURN END IF * IF( N.EQ.2 ) THEN S = CABS1( H( 1, 1 )-S2 ) + CABS1( H( 2, 1 ) ) IF( S.EQ.RZERO ) THEN V( 1 ) = ZERO V( 2 ) = ZERO ELSE H21S = H( 2, 1 ) / S V( 1 ) = H21S*H( 1, 2 ) + ( H( 1, 1 )-S1 )* $ ( ( H( 1, 1 )-S2 ) / S ) V( 2 ) = H21S*( H( 1, 1 )+H( 2, 2 )-S1-S2 ) END IF ELSE S = CABS1( H( 1, 1 )-S2 ) + CABS1( H( 2, 1 ) ) + $ CABS1( H( 3, 1 ) ) IF( S.EQ.ZERO ) THEN V( 1 ) = ZERO V( 2 ) = ZERO V( 3 ) = ZERO ELSE H21S = H( 2, 1 ) / S H31S = H( 3, 1 ) / S V( 1 ) = ( H( 1, 1 )-S1 )*( ( H( 1, 1 )-S2 ) / S ) + $ H( 1, 2 )*H21S + H( 1, 3 )*H31S V( 2 ) = H21S*( H( 1, 1 )+H( 2, 2 )-S1-S2 ) + H( 2, 3 )*H31S V( 3 ) = H31S*( H( 1, 1 )+H( 3, 3 )-S1-S2 ) + H21S*H( 3, 2 ) END IF END IF END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed3.f0000644000000000000000000000013214061636515015160 xustar0030 mtime=1623670093.445103856 30 atime=1623670093.445103856 30 ctime=1623670093.445103856 elk-7.2.42/src/LAPACK/dlaed3.f0000644002504400250440000002530014061636515017215 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED3 used by sstedc. Finds the roots of the secular equation and updates the eigenvectors. Used when the original matrix is tridiagonal. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED3 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED3( K, N, N1, D, Q, LDQ, RHO, DLAMDA, Q2, INDX, * CTOT, W, S, INFO ) * * .. Scalar Arguments .. * INTEGER INFO, K, LDQ, N, N1 * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER CTOT( * ), INDX( * ) * DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), Q2( * ), * $ S( * ), W( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED3 finds the roots of the secular equation, as defined by the *> values in D, W, and RHO, between 1 and K. It makes the *> appropriate calls to DLAED4 and then updates the eigenvectors by *> multiplying the matrix of eigenvectors of the pair of eigensystems *> being combined by the matrix of eigenvectors of the K-by-K system *> which is solved here. *> *> This code makes very mild assumptions about floating point *> arithmetic. It will work on machines with a guard digit in *> add/subtract, or on those binary machines without guard digits *> which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. *> It could conceivably fail on hexadecimal or decimal machines *> without guard digits, but we know of none. *> \endverbatim * * Arguments: * ========== * *> \param[in] K *> \verbatim *> K is INTEGER *> The number of terms in the rational function to be solved by *> DLAED4. K >= 0. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of rows and columns in the Q matrix. *> N >= K (deflation may result in N>K). *> \endverbatim *> *> \param[in] N1 *> \verbatim *> N1 is INTEGER *> The location of the last eigenvalue in the leading submatrix. *> min(1,N) <= N1 <= N/2. *> \endverbatim *> *> \param[out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> D(I) contains the updated eigenvalues for *> 1 <= I <= K. *> \endverbatim *> *> \param[out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ,N) *> Initially the first K columns are used as workspace. *> On output the columns 1 to K contain *> the updated eigenvectors. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The value of the parameter in the rank one update equation. *> RHO >= 0 required. *> \endverbatim *> *> \param[in,out] DLAMDA *> \verbatim *> DLAMDA is DOUBLE PRECISION array, dimension (K) *> The first K elements of this array contain the old roots *> of the deflated updating problem. These are the poles *> of the secular equation. May be changed on output by *> having lowest order bit set to zero on Cray X-MP, Cray Y-MP, *> Cray-2, or Cray C-90, as described above. *> \endverbatim *> *> \param[in] Q2 *> \verbatim *> Q2 is DOUBLE PRECISION array, dimension (LDQ2*N) *> The first K columns of this matrix contain the non-deflated *> eigenvectors for the split problem. *> \endverbatim *> *> \param[in] INDX *> \verbatim *> INDX is INTEGER array, dimension (N) *> The permutation used to arrange the columns of the deflated *> Q matrix into three groups (see DLAED2). *> The rows of the eigenvectors found by DLAED4 must be likewise *> permuted before the matrix multiply can take place. *> \endverbatim *> *> \param[in] CTOT *> \verbatim *> CTOT is INTEGER array, dimension (4) *> A count of the total number of the various types of columns *> in Q, as described in INDX. The fourth column type is any *> column which has been deflated. *> \endverbatim *> *> \param[in,out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (K) *> The first K elements of this array contain the components *> of the deflation-adjusted updating vector. Destroyed on *> output. *> \endverbatim *> *> \param[out] S *> \verbatim *> S is DOUBLE PRECISION array, dimension (N1 + 1)*K *> Will contain the eigenvectors of the repaired matrix which *> will be multiplied by the previously accumulated eigenvectors *> to update the system. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> > 0: if INFO = 1, an eigenvalue did not converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA \n *> Modified by Francoise Tisseur, University of Tennessee *> * ===================================================================== SUBROUTINE DLAED3( K, N, N1, D, Q, LDQ, RHO, DLAMDA, Q2, INDX, $ CTOT, W, S, INFO ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. INTEGER INFO, K, LDQ, N, N1 DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER CTOT( * ), INDX( * ) DOUBLE PRECISION D( * ), DLAMDA( * ), Q( LDQ, * ), Q2( * ), $ S( * ), W( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D0, ZERO = 0.0D0 ) * .. * .. Local Scalars .. INTEGER I, II, IQ2, J, N12, N2, N23 DOUBLE PRECISION TEMP * .. * .. External Functions .. DOUBLE PRECISION DLAMC3, DNRM2 EXTERNAL DLAMC3, DNRM2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DGEMM, DLACPY, DLAED4, DLASET, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC MAX, SIGN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( K.LT.0 ) THEN INFO = -1 ELSE IF( N.LT.K ) THEN INFO = -2 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -6 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED3', -INFO ) RETURN END IF * * Quick return if possible * IF( K.EQ.0 ) $ RETURN * * Modify values DLAMDA(i) to make sure all DLAMDA(i)-DLAMDA(j) can * be computed with high relative accuracy (barring over/underflow). * This is a problem on machines without a guard digit in * add/subtract (Cray XMP, Cray YMP, Cray C 90 and Cray 2). * The following code replaces DLAMDA(I) by 2*DLAMDA(I)-DLAMDA(I), * which on any of these machines zeros out the bottommost * bit of DLAMDA(I) if it is 1; this makes the subsequent * subtractions DLAMDA(I)-DLAMDA(J) unproblematic when cancellation * occurs. On binary machines with a guard digit (almost all * machines) it does not change DLAMDA(I) at all. On hexadecimal * and decimal machines with a guard digit, it slightly * changes the bottommost bits of DLAMDA(I). It does not account * for hexadecimal or decimal machines without guard digits * (we know of none). We use a subroutine call to compute * 2*DLAMBDA(I) to prevent optimizing compilers from eliminating * this code. * DO 10 I = 1, K DLAMDA( I ) = DLAMC3( DLAMDA( I ), DLAMDA( I ) ) - DLAMDA( I ) 10 CONTINUE * DO 20 J = 1, K CALL DLAED4( K, J, DLAMDA, W, Q( 1, J ), RHO, D( J ), INFO ) * * If the zero finder fails, the computation is terminated. * IF( INFO.NE.0 ) $ GO TO 120 20 CONTINUE * IF( K.EQ.1 ) $ GO TO 110 IF( K.EQ.2 ) THEN DO 30 J = 1, K W( 1 ) = Q( 1, J ) W( 2 ) = Q( 2, J ) II = INDX( 1 ) Q( 1, J ) = W( II ) II = INDX( 2 ) Q( 2, J ) = W( II ) 30 CONTINUE GO TO 110 END IF * * Compute updated W. * CALL DCOPY( K, W, 1, S, 1 ) * * Initialize W(I) = Q(I,I) * CALL DCOPY( K, Q, LDQ+1, W, 1 ) DO 60 J = 1, K DO 40 I = 1, J - 1 W( I ) = W( I )*( Q( I, J ) / ( DLAMDA( I )-DLAMDA( J ) ) ) 40 CONTINUE DO 50 I = J + 1, K W( I ) = W( I )*( Q( I, J ) / ( DLAMDA( I )-DLAMDA( J ) ) ) 50 CONTINUE 60 CONTINUE DO 70 I = 1, K W( I ) = SIGN( SQRT( -W( I ) ), S( I ) ) 70 CONTINUE * * Compute eigenvectors of the modified rank-1 modification. * DO 100 J = 1, K DO 80 I = 1, K S( I ) = W( I ) / Q( I, J ) 80 CONTINUE TEMP = DNRM2( K, S, 1 ) DO 90 I = 1, K II = INDX( I ) Q( I, J ) = S( II ) / TEMP 90 CONTINUE 100 CONTINUE * * Compute the updated eigenvectors. * 110 CONTINUE * N2 = N - N1 N12 = CTOT( 1 ) + CTOT( 2 ) N23 = CTOT( 2 ) + CTOT( 3 ) * CALL DLACPY( 'A', N23, K, Q( CTOT( 1 )+1, 1 ), LDQ, S, N23 ) IQ2 = N1*N12 + 1 IF( N23.NE.0 ) THEN CALL DGEMM( 'N', 'N', N2, K, N23, ONE, Q2( IQ2 ), N2, S, N23, $ ZERO, Q( N1+1, 1 ), LDQ ) ELSE CALL DLASET( 'A', N2, K, ZERO, ZERO, Q( N1+1, 1 ), LDQ ) END IF * CALL DLACPY( 'A', N12, K, Q, LDQ, S, N12 ) IF( N12.NE.0 ) THEN CALL DGEMM( 'N', 'N', N1, K, N12, ONE, Q2, N1, S, N12, ZERO, Q, $ LDQ ) ELSE CALL DLASET( 'A', N1, K, ZERO, ZERO, Q( 1, 1 ), LDQ ) END IF * * 120 CONTINUE RETURN * * End of DLAED3 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed8.f0000644000000000000000000000013214061636515015165 xustar0030 mtime=1623670093.447103854 30 atime=1623670093.447103854 30 ctime=1623670093.447103854 elk-7.2.42/src/LAPACK/dlaed8.f0000644002504400250440000003726214061636515017234 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED8 used by sstedc. Merges eigenvalues and deflates secular equation. Used when the original matrix is dense. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED8 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED8( ICOMPQ, K, N, QSIZ, D, Q, LDQ, INDXQ, RHO, * CUTPNT, Z, DLAMDA, Q2, LDQ2, W, PERM, GIVPTR, * GIVCOL, GIVNUM, INDXP, INDX, INFO ) * * .. Scalar Arguments .. * INTEGER CUTPNT, GIVPTR, ICOMPQ, INFO, K, LDQ, LDQ2, N, * $ QSIZ * DOUBLE PRECISION RHO * .. * .. Array Arguments .. * INTEGER GIVCOL( 2, * ), INDX( * ), INDXP( * ), * $ INDXQ( * ), PERM( * ) * DOUBLE PRECISION D( * ), DLAMDA( * ), GIVNUM( 2, * ), * $ Q( LDQ, * ), Q2( LDQ2, * ), W( * ), Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED8 merges the two sets of eigenvalues together into a single *> sorted set. Then it tries to deflate the size of the problem. *> There are two ways in which deflation can occur: when two or more *> eigenvalues are close together or if there is a tiny element in the *> Z vector. For each such occurrence the order of the related secular *> equation problem is reduced by one. *> \endverbatim * * Arguments: * ========== * *> \param[in] ICOMPQ *> \verbatim *> ICOMPQ is INTEGER *> = 0: Compute eigenvalues only. *> = 1: Compute eigenvectors of original dense symmetric matrix *> also. On entry, Q contains the orthogonal matrix used *> to reduce the original matrix to tridiagonal form. *> \endverbatim *> *> \param[out] K *> \verbatim *> K is INTEGER *> The number of non-deflated eigenvalues, and the order of the *> related secular equation. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The dimension of the symmetric tridiagonal matrix. N >= 0. *> \endverbatim *> *> \param[in] QSIZ *> \verbatim *> QSIZ is INTEGER *> The dimension of the orthogonal matrix used to reduce *> the full matrix to tridiagonal form. QSIZ >= N if ICOMPQ = 1. *> \endverbatim *> *> \param[in,out] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> On entry, the eigenvalues of the two submatrices to be *> combined. On exit, the trailing (N-K) updated eigenvalues *> (those which were deflated) sorted into increasing order. *> \endverbatim *> *> \param[in,out] Q *> \verbatim *> Q is DOUBLE PRECISION array, dimension (LDQ,N) *> If ICOMPQ = 0, Q is not referenced. Otherwise, *> on entry, Q contains the eigenvectors of the partially solved *> system which has been previously updated in matrix *> multiplies with other partially solved eigensystems. *> On exit, Q contains the trailing (N-K) updated eigenvectors *> (those which were deflated) in its last N-K columns. *> \endverbatim *> *> \param[in] LDQ *> \verbatim *> LDQ is INTEGER *> The leading dimension of the array Q. LDQ >= max(1,N). *> \endverbatim *> *> \param[in] INDXQ *> \verbatim *> INDXQ is INTEGER array, dimension (N) *> The permutation which separately sorts the two sub-problems *> in D into ascending order. Note that elements in the second *> half of this permutation must first have CUTPNT added to *> their values in order to be accurate. *> \endverbatim *> *> \param[in,out] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> On entry, the off-diagonal element associated with the rank-1 *> cut which originally split the two submatrices which are now *> being recombined. *> On exit, RHO has been modified to the value required by *> DLAED3. *> \endverbatim *> *> \param[in] CUTPNT *> \verbatim *> CUTPNT is INTEGER *> The location of the last eigenvalue in the leading *> sub-matrix. min(1,N) <= CUTPNT <= N. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (N) *> On entry, Z contains the updating vector (the last row of *> the first sub-eigenvector matrix and the first row of the *> second sub-eigenvector matrix). *> On exit, the contents of Z are destroyed by the updating *> process. *> \endverbatim *> *> \param[out] DLAMDA *> \verbatim *> DLAMDA is DOUBLE PRECISION array, dimension (N) *> A copy of the first K eigenvalues which will be used by *> DLAED3 to form the secular equation. *> \endverbatim *> *> \param[out] Q2 *> \verbatim *> Q2 is DOUBLE PRECISION array, dimension (LDQ2,N) *> If ICOMPQ = 0, Q2 is not referenced. Otherwise, *> a copy of the first K eigenvectors which will be used by *> DLAED7 in a matrix multiply (DGEMM) to update the new *> eigenvectors. *> \endverbatim *> *> \param[in] LDQ2 *> \verbatim *> LDQ2 is INTEGER *> The leading dimension of the array Q2. LDQ2 >= max(1,N). *> \endverbatim *> *> \param[out] W *> \verbatim *> W is DOUBLE PRECISION array, dimension (N) *> The first k values of the final deflation-altered z-vector and *> will be passed to DLAED3. *> \endverbatim *> *> \param[out] PERM *> \verbatim *> PERM is INTEGER array, dimension (N) *> The permutations (from deflation and sorting) to be applied *> to each eigenblock. *> \endverbatim *> *> \param[out] GIVPTR *> \verbatim *> GIVPTR is INTEGER *> The number of Givens rotations which took place in this *> subproblem. *> \endverbatim *> *> \param[out] GIVCOL *> \verbatim *> GIVCOL is INTEGER array, dimension (2, N) *> Each pair of numbers indicates a pair of columns to take place *> in a Givens rotation. *> \endverbatim *> *> \param[out] GIVNUM *> \verbatim *> GIVNUM is DOUBLE PRECISION array, dimension (2, N) *> Each number indicates the S value to be used in the *> corresponding Givens rotation. *> \endverbatim *> *> \param[out] INDXP *> \verbatim *> INDXP is INTEGER array, dimension (N) *> The permutation used to place deflated values of D at the end *> of the array. INDXP(1:K) points to the nondeflated D-values *> and INDXP(K+1:N) points to the deflated eigenvalues. *> \endverbatim *> *> \param[out] INDX *> \verbatim *> INDX is INTEGER array, dimension (N) *> The permutation used to sort the contents of D into ascending *> order. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit. *> < 0: if INFO = -i, the i-th argument had an illegal value. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Jeff Rutter, Computer Science Division, University of California *> at Berkeley, USA * * ===================================================================== SUBROUTINE DLAED8( ICOMPQ, K, N, QSIZ, D, Q, LDQ, INDXQ, RHO, $ CUTPNT, Z, DLAMDA, Q2, LDQ2, W, PERM, GIVPTR, $ GIVCOL, GIVNUM, INDXP, INDX, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER CUTPNT, GIVPTR, ICOMPQ, INFO, K, LDQ, LDQ2, N, $ QSIZ DOUBLE PRECISION RHO * .. * .. Array Arguments .. INTEGER GIVCOL( 2, * ), INDX( * ), INDXP( * ), $ INDXQ( * ), PERM( * ) DOUBLE PRECISION D( * ), DLAMDA( * ), GIVNUM( 2, * ), $ Q( LDQ, * ), Q2( LDQ2, * ), W( * ), Z( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION MONE, ZERO, ONE, TWO, EIGHT PARAMETER ( MONE = -1.0D0, ZERO = 0.0D0, ONE = 1.0D0, $ TWO = 2.0D0, EIGHT = 8.0D0 ) * .. * .. Local Scalars .. * INTEGER I, IMAX, J, JLAM, JMAX, JP, K2, N1, N1P1, N2 DOUBLE PRECISION C, EPS, S, T, TAU, TOL * .. * .. External Functions .. INTEGER IDAMAX DOUBLE PRECISION DLAMCH, DLAPY2 EXTERNAL IDAMAX, DLAMCH, DLAPY2 * .. * .. External Subroutines .. EXTERNAL DCOPY, DLACPY, DLAMRG, DROT, DSCAL, XERBLA * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Test the input parameters. * INFO = 0 * IF( ICOMPQ.LT.0 .OR. ICOMPQ.GT.1 ) THEN INFO = -1 ELSE IF( N.LT.0 ) THEN INFO = -3 ELSE IF( ICOMPQ.EQ.1 .AND. QSIZ.LT.N ) THEN INFO = -4 ELSE IF( LDQ.LT.MAX( 1, N ) ) THEN INFO = -7 ELSE IF( CUTPNT.LT.MIN( 1, N ) .OR. CUTPNT.GT.N ) THEN INFO = -10 ELSE IF( LDQ2.LT.MAX( 1, N ) ) THEN INFO = -14 END IF IF( INFO.NE.0 ) THEN CALL XERBLA( 'DLAED8', -INFO ) RETURN END IF * * Need to initialize GIVPTR to O here in case of quick exit * to prevent an unspecified code behavior (usually sigfault) * when IWORK array on entry to *stedc is not zeroed * (or at least some IWORK entries which used in *laed7 for GIVPTR). * GIVPTR = 0 * * Quick return if possible * IF( N.EQ.0 ) $ RETURN * N1 = CUTPNT N2 = N - N1 N1P1 = N1 + 1 * IF( RHO.LT.ZERO ) THEN CALL DSCAL( N2, MONE, Z( N1P1 ), 1 ) END IF * * Normalize z so that norm(z) = 1 * T = ONE / SQRT( TWO ) DO 10 J = 1, N INDX( J ) = J 10 CONTINUE CALL DSCAL( N, T, Z, 1 ) RHO = ABS( TWO*RHO ) * * Sort the eigenvalues into increasing order * DO 20 I = CUTPNT + 1, N INDXQ( I ) = INDXQ( I ) + CUTPNT 20 CONTINUE DO 30 I = 1, N DLAMDA( I ) = D( INDXQ( I ) ) W( I ) = Z( INDXQ( I ) ) 30 CONTINUE I = 1 J = CUTPNT + 1 CALL DLAMRG( N1, N2, DLAMDA, 1, 1, INDX ) DO 40 I = 1, N D( I ) = DLAMDA( INDX( I ) ) Z( I ) = W( INDX( I ) ) 40 CONTINUE * * Calculate the allowable deflation tolerance * IMAX = IDAMAX( N, Z, 1 ) JMAX = IDAMAX( N, D, 1 ) EPS = DLAMCH( 'Epsilon' ) TOL = EIGHT*EPS*ABS( D( JMAX ) ) * * If the rank-1 modifier is small enough, no more needs to be done * except to reorganize Q so that its columns correspond with the * elements in D. * IF( RHO*ABS( Z( IMAX ) ).LE.TOL ) THEN K = 0 IF( ICOMPQ.EQ.0 ) THEN DO 50 J = 1, N PERM( J ) = INDXQ( INDX( J ) ) 50 CONTINUE ELSE DO 60 J = 1, N PERM( J ) = INDXQ( INDX( J ) ) CALL DCOPY( QSIZ, Q( 1, PERM( J ) ), 1, Q2( 1, J ), 1 ) 60 CONTINUE CALL DLACPY( 'A', QSIZ, N, Q2( 1, 1 ), LDQ2, Q( 1, 1 ), $ LDQ ) END IF RETURN END IF * * If there are multiple eigenvalues then the problem deflates. Here * the number of equal eigenvalues are found. As each equal * eigenvalue is found, an elementary reflector is computed to rotate * the corresponding eigensubspace so that the corresponding * components of Z are zero in this new basis. * K = 0 K2 = N + 1 DO 70 J = 1, N IF( RHO*ABS( Z( J ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 INDXP( K2 ) = J IF( J.EQ.N ) $ GO TO 110 ELSE JLAM = J GO TO 80 END IF 70 CONTINUE 80 CONTINUE J = J + 1 IF( J.GT.N ) $ GO TO 100 IF( RHO*ABS( Z( J ) ).LE.TOL ) THEN * * Deflate due to small z component. * K2 = K2 - 1 INDXP( K2 ) = J ELSE * * Check if eigenvalues are close enough to allow deflation. * S = Z( JLAM ) C = Z( J ) * * Find sqrt(a**2+b**2) without overflow or * destructive underflow. * TAU = DLAPY2( C, S ) T = D( J ) - D( JLAM ) C = C / TAU S = -S / TAU IF( ABS( T*C*S ).LE.TOL ) THEN * * Deflation is possible. * Z( J ) = TAU Z( JLAM ) = ZERO * * Record the appropriate Givens rotation * GIVPTR = GIVPTR + 1 GIVCOL( 1, GIVPTR ) = INDXQ( INDX( JLAM ) ) GIVCOL( 2, GIVPTR ) = INDXQ( INDX( J ) ) GIVNUM( 1, GIVPTR ) = C GIVNUM( 2, GIVPTR ) = S IF( ICOMPQ.EQ.1 ) THEN CALL DROT( QSIZ, Q( 1, INDXQ( INDX( JLAM ) ) ), 1, $ Q( 1, INDXQ( INDX( J ) ) ), 1, C, S ) END IF T = D( JLAM )*C*C + D( J )*S*S D( J ) = D( JLAM )*S*S + D( J )*C*C D( JLAM ) = T K2 = K2 - 1 I = 1 90 CONTINUE IF( K2+I.LE.N ) THEN IF( D( JLAM ).LT.D( INDXP( K2+I ) ) ) THEN INDXP( K2+I-1 ) = INDXP( K2+I ) INDXP( K2+I ) = JLAM I = I + 1 GO TO 90 ELSE INDXP( K2+I-1 ) = JLAM END IF ELSE INDXP( K2+I-1 ) = JLAM END IF JLAM = J ELSE K = K + 1 W( K ) = Z( JLAM ) DLAMDA( K ) = D( JLAM ) INDXP( K ) = JLAM JLAM = J END IF END IF GO TO 80 100 CONTINUE * * Record the last eigenvalue. * K = K + 1 W( K ) = Z( JLAM ) DLAMDA( K ) = D( JLAM ) INDXP( K ) = JLAM * 110 CONTINUE * * Sort the eigenvalues and corresponding eigenvectors into DLAMDA * and Q2 respectively. The eigenvalues/vectors which were not * deflated go into the first K slots of DLAMDA and Q2 respectively, * while those which were deflated go into the last N - K slots. * IF( ICOMPQ.EQ.0 ) THEN DO 120 J = 1, N JP = INDXP( J ) DLAMDA( J ) = D( JP ) PERM( J ) = INDXQ( INDX( JP ) ) 120 CONTINUE ELSE DO 130 J = 1, N JP = INDXP( J ) DLAMDA( J ) = D( JP ) PERM( J ) = INDXQ( INDX( JP ) ) CALL DCOPY( QSIZ, Q( 1, PERM( J ) ), 1, Q2( 1, J ), 1 ) 130 CONTINUE END IF * * The deflated eigenvalues and their corresponding vectors go back * into the last N - K slots of D and Q respectively. * IF( K.LT.N ) THEN IF( ICOMPQ.EQ.0 ) THEN CALL DCOPY( N-K, DLAMDA( K+1 ), 1, D( K+1 ), 1 ) ELSE CALL DCOPY( N-K, DLAMDA( K+1 ), 1, D( K+1 ), 1 ) CALL DLACPY( 'A', QSIZ, N-K, Q2( 1, K+1 ), LDQ2, $ Q( 1, K+1 ), LDQ ) END IF END IF * RETURN * * End of DLAED8 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed4.f0000644000000000000000000000013214061636515015161 xustar0030 mtime=1623670093.449103853 30 atime=1623670093.449103853 30 ctime=1623670093.449103853 elk-7.2.42/src/LAPACK/dlaed4.f0000644002504400250440000006463114061636515017230 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED4 used by sstedc. Finds a single root of the secular equation. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED4 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED4( N, I, D, Z, DELTA, RHO, DLAM, INFO ) * * .. Scalar Arguments .. * INTEGER I, INFO, N * DOUBLE PRECISION DLAM, RHO * .. * .. Array Arguments .. * DOUBLE PRECISION D( * ), DELTA( * ), Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> This subroutine computes the I-th updated eigenvalue of a symmetric *> rank-one modification to a diagonal matrix whose elements are *> given in the array d, and that *> *> D(i) < D(j) for i < j *> *> and that RHO > 0. This is arranged by the calling routine, and is *> no loss in generality. The rank-one modified system is thus *> *> diag( D ) + RHO * Z * Z_transpose. *> *> where we assume the Euclidean norm of Z is 1. *> *> The method consists of approximating the rational functions in the *> secular equation by simpler interpolating rational functions. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The length of all arrays. *> \endverbatim *> *> \param[in] I *> \verbatim *> I is INTEGER *> The index of the eigenvalue to be computed. 1 <= I <= N. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (N) *> The original eigenvalues. It is assumed that they are in *> order, D(I) < D(J) for I < J. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (N) *> The components of the updating vector. *> \endverbatim *> *> \param[out] DELTA *> \verbatim *> DELTA is DOUBLE PRECISION array, dimension (N) *> If N > 2, DELTA contains (D(j) - lambda_I) in its j-th *> component. If N = 1, then DELTA(1) = 1. If N = 2, see DLAED5 *> for detail. The vector DELTA contains the information necessary *> to construct the eigenvectors by DLAED3 and DLAED9. *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> The scalar in the symmetric updating formula. *> \endverbatim *> *> \param[out] DLAM *> \verbatim *> DLAM is DOUBLE PRECISION *> The computed lambda_I, the I-th updated eigenvalue. *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> > 0: if INFO = 1, the updating process failed. *> \endverbatim * *> \par Internal Parameters: * ========================= *> *> \verbatim *> Logical variable ORGATI (origin-at-i?) is used for distinguishing *> whether D(i) or D(i+1) is treated as the origin. *> *> ORGATI = .true. origin at i *> ORGATI = .false. origin at i+1 *> *> Logical variable SWTCH3 (switch-for-3-poles?) is for noting *> if we are working with THREE poles! *> *> MAXIT is the maximum number of iterations allowed for each *> eigenvalue. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Contributors: * ================== *> *> Ren-Cang Li, Computer Science Division, University of California *> at Berkeley, USA *> * ===================================================================== SUBROUTINE DLAED4( N, I, D, Z, DELTA, RHO, DLAM, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER I, INFO, N DOUBLE PRECISION DLAM, RHO * .. * .. Array Arguments .. DOUBLE PRECISION D( * ), DELTA( * ), Z( * ) * .. * * ===================================================================== * * .. Parameters .. INTEGER MAXIT PARAMETER ( MAXIT = 30 ) DOUBLE PRECISION ZERO, ONE, TWO, THREE, FOUR, EIGHT, TEN PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ THREE = 3.0D0, FOUR = 4.0D0, EIGHT = 8.0D0, $ TEN = 10.0D0 ) * .. * .. Local Scalars .. LOGICAL ORGATI, SWTCH, SWTCH3 INTEGER II, IIM1, IIP1, IP1, ITER, J, NITER DOUBLE PRECISION A, B, C, DEL, DLTLB, DLTUB, DPHI, DPSI, DW, $ EPS, ERRETM, ETA, MIDPT, PHI, PREW, PSI, $ RHOINV, TAU, TEMP, TEMP1, W * .. * .. Local Arrays .. DOUBLE PRECISION ZZ( 3 ) * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. External Subroutines .. EXTERNAL DLAED5, DLAED6 * .. * .. Intrinsic Functions .. INTRINSIC ABS, MAX, MIN, SQRT * .. * .. Executable Statements .. * * Since this routine is called in an inner loop, we do no argument * checking. * * Quick return for N=1 and 2. * INFO = 0 IF( N.EQ.1 ) THEN * * Presumably, I=1 upon entry * DLAM = D( 1 ) + RHO*Z( 1 )*Z( 1 ) DELTA( 1 ) = ONE RETURN END IF IF( N.EQ.2 ) THEN CALL DLAED5( I, D, Z, DELTA, RHO, DLAM ) RETURN END IF * * Compute machine epsilon * EPS = DLAMCH( 'Epsilon' ) RHOINV = ONE / RHO * * The case I = N * IF( I.EQ.N ) THEN * * Initialize some basic variables * II = N - 1 NITER = 1 * * Calculate initial guess * MIDPT = RHO / TWO * * If ||Z||_2 is not one, then TEMP should be set to * RHO * ||Z||_2^2 / TWO * DO 10 J = 1, N DELTA( J ) = ( D( J )-D( I ) ) - MIDPT 10 CONTINUE * PSI = ZERO DO 20 J = 1, N - 2 PSI = PSI + Z( J )*Z( J ) / DELTA( J ) 20 CONTINUE * C = RHOINV + PSI W = C + Z( II )*Z( II ) / DELTA( II ) + $ Z( N )*Z( N ) / DELTA( N ) * IF( W.LE.ZERO ) THEN TEMP = Z( N-1 )*Z( N-1 ) / ( D( N )-D( N-1 )+RHO ) + $ Z( N )*Z( N ) / RHO IF( C.LE.TEMP ) THEN TAU = RHO ELSE DEL = D( N ) - D( N-1 ) A = -C*DEL + Z( N-1 )*Z( N-1 ) + Z( N )*Z( N ) B = Z( N )*Z( N )*DEL IF( A.LT.ZERO ) THEN TAU = TWO*B / ( SQRT( A*A+FOUR*B*C )-A ) ELSE TAU = ( A+SQRT( A*A+FOUR*B*C ) ) / ( TWO*C ) END IF END IF * * It can be proved that * D(N)+RHO/2 <= LAMBDA(N) < D(N)+TAU <= D(N)+RHO * DLTLB = MIDPT DLTUB = RHO ELSE DEL = D( N ) - D( N-1 ) A = -C*DEL + Z( N-1 )*Z( N-1 ) + Z( N )*Z( N ) B = Z( N )*Z( N )*DEL IF( A.LT.ZERO ) THEN TAU = TWO*B / ( SQRT( A*A+FOUR*B*C )-A ) ELSE TAU = ( A+SQRT( A*A+FOUR*B*C ) ) / ( TWO*C ) END IF * * It can be proved that * D(N) < D(N)+TAU < LAMBDA(N) < D(N)+RHO/2 * DLTLB = ZERO DLTUB = MIDPT END IF * DO 30 J = 1, N DELTA( J ) = ( D( J )-D( I ) ) - TAU 30 CONTINUE * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 40 J = 1, II TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 40 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * TEMP = Z( N ) / DELTA( N ) PHI = Z( N )*TEMP DPHI = TEMP*TEMP ERRETM = EIGHT*( -PHI-PSI ) + ERRETM - PHI + RHOINV + $ ABS( TAU )*( DPSI+DPHI ) * W = RHOINV + PHI + PSI * * Test for convergence * IF( ABS( W ).LE.EPS*ERRETM ) THEN DLAM = D( I ) + TAU GO TO 250 END IF * IF( W.LE.ZERO ) THEN DLTLB = MAX( DLTLB, TAU ) ELSE DLTUB = MIN( DLTUB, TAU ) END IF * * Calculate the new step * NITER = NITER + 1 C = W - DELTA( N-1 )*DPSI - DELTA( N )*DPHI A = ( DELTA( N-1 )+DELTA( N ) )*W - $ DELTA( N-1 )*DELTA( N )*( DPSI+DPHI ) B = DELTA( N-1 )*DELTA( N )*W IF( C.LT.ZERO ) $ C = ABS( C ) IF( C.EQ.ZERO ) THEN * ETA = B/A * ETA = RHO - TAU ETA = DLTUB - TAU ELSE IF( A.GE.ZERO ) THEN ETA = ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE ETA = TWO*B / ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF * * Note, eta should be positive if w is negative, and * eta should be negative otherwise. However, * if for some reason caused by roundoff, eta*w > 0, * we simply use one Newton step instead. This way * will guarantee eta*w < 0. * IF( W*ETA.GT.ZERO ) $ ETA = -W / ( DPSI+DPHI ) TEMP = TAU + ETA IF( TEMP.GT.DLTUB .OR. TEMP.LT.DLTLB ) THEN IF( W.LT.ZERO ) THEN ETA = ( DLTUB-TAU ) / TWO ELSE ETA = ( DLTLB-TAU ) / TWO END IF END IF DO 50 J = 1, N DELTA( J ) = DELTA( J ) - ETA 50 CONTINUE * TAU = TAU + ETA * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 60 J = 1, II TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 60 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * TEMP = Z( N ) / DELTA( N ) PHI = Z( N )*TEMP DPHI = TEMP*TEMP ERRETM = EIGHT*( -PHI-PSI ) + ERRETM - PHI + RHOINV + $ ABS( TAU )*( DPSI+DPHI ) * W = RHOINV + PHI + PSI * * Main loop to update the values of the array DELTA * ITER = NITER + 1 * DO 90 NITER = ITER, MAXIT * * Test for convergence * IF( ABS( W ).LE.EPS*ERRETM ) THEN DLAM = D( I ) + TAU GO TO 250 END IF * IF( W.LE.ZERO ) THEN DLTLB = MAX( DLTLB, TAU ) ELSE DLTUB = MIN( DLTUB, TAU ) END IF * * Calculate the new step * C = W - DELTA( N-1 )*DPSI - DELTA( N )*DPHI A = ( DELTA( N-1 )+DELTA( N ) )*W - $ DELTA( N-1 )*DELTA( N )*( DPSI+DPHI ) B = DELTA( N-1 )*DELTA( N )*W IF( A.GE.ZERO ) THEN ETA = ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE ETA = TWO*B / ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF * * Note, eta should be positive if w is negative, and * eta should be negative otherwise. However, * if for some reason caused by roundoff, eta*w > 0, * we simply use one Newton step instead. This way * will guarantee eta*w < 0. * IF( W*ETA.GT.ZERO ) $ ETA = -W / ( DPSI+DPHI ) TEMP = TAU + ETA IF( TEMP.GT.DLTUB .OR. TEMP.LT.DLTLB ) THEN IF( W.LT.ZERO ) THEN ETA = ( DLTUB-TAU ) / TWO ELSE ETA = ( DLTLB-TAU ) / TWO END IF END IF DO 70 J = 1, N DELTA( J ) = DELTA( J ) - ETA 70 CONTINUE * TAU = TAU + ETA * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 80 J = 1, II TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 80 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * TEMP = Z( N ) / DELTA( N ) PHI = Z( N )*TEMP DPHI = TEMP*TEMP ERRETM = EIGHT*( -PHI-PSI ) + ERRETM - PHI + RHOINV + $ ABS( TAU )*( DPSI+DPHI ) * W = RHOINV + PHI + PSI 90 CONTINUE * * Return with INFO = 1, NITER = MAXIT and not converged * INFO = 1 DLAM = D( I ) + TAU GO TO 250 * * End for the case I = N * ELSE * * The case for I < N * NITER = 1 IP1 = I + 1 * * Calculate initial guess * DEL = D( IP1 ) - D( I ) MIDPT = DEL / TWO DO 100 J = 1, N DELTA( J ) = ( D( J )-D( I ) ) - MIDPT 100 CONTINUE * PSI = ZERO DO 110 J = 1, I - 1 PSI = PSI + Z( J )*Z( J ) / DELTA( J ) 110 CONTINUE * PHI = ZERO DO 120 J = N, I + 2, -1 PHI = PHI + Z( J )*Z( J ) / DELTA( J ) 120 CONTINUE C = RHOINV + PSI + PHI W = C + Z( I )*Z( I ) / DELTA( I ) + $ Z( IP1 )*Z( IP1 ) / DELTA( IP1 ) * IF( W.GT.ZERO ) THEN * * d(i)< the ith eigenvalue < (d(i)+d(i+1))/2 * * We choose d(i) as origin. * ORGATI = .TRUE. A = C*DEL + Z( I )*Z( I ) + Z( IP1 )*Z( IP1 ) B = Z( I )*Z( I )*DEL IF( A.GT.ZERO ) THEN TAU = TWO*B / ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) ELSE TAU = ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) END IF DLTLB = ZERO DLTUB = MIDPT ELSE * * (d(i)+d(i+1))/2 <= the ith eigenvalue < d(i+1) * * We choose d(i+1) as origin. * ORGATI = .FALSE. A = C*DEL - Z( I )*Z( I ) - Z( IP1 )*Z( IP1 ) B = Z( IP1 )*Z( IP1 )*DEL IF( A.LT.ZERO ) THEN TAU = TWO*B / ( A-SQRT( ABS( A*A+FOUR*B*C ) ) ) ELSE TAU = -( A+SQRT( ABS( A*A+FOUR*B*C ) ) ) / ( TWO*C ) END IF DLTLB = -MIDPT DLTUB = ZERO END IF * IF( ORGATI ) THEN DO 130 J = 1, N DELTA( J ) = ( D( J )-D( I ) ) - TAU 130 CONTINUE ELSE DO 140 J = 1, N DELTA( J ) = ( D( J )-D( IP1 ) ) - TAU 140 CONTINUE END IF IF( ORGATI ) THEN II = I ELSE II = I + 1 END IF IIM1 = II - 1 IIP1 = II + 1 * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 150 J = 1, IIM1 TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 150 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * DPHI = ZERO PHI = ZERO DO 160 J = N, IIP1, -1 TEMP = Z( J ) / DELTA( J ) PHI = PHI + Z( J )*TEMP DPHI = DPHI + TEMP*TEMP ERRETM = ERRETM + PHI 160 CONTINUE * W = RHOINV + PHI + PSI * * W is the value of the secular function with * its ii-th element removed. * SWTCH3 = .FALSE. IF( ORGATI ) THEN IF( W.LT.ZERO ) $ SWTCH3 = .TRUE. ELSE IF( W.GT.ZERO ) $ SWTCH3 = .TRUE. END IF IF( II.EQ.1 .OR. II.EQ.N ) $ SWTCH3 = .FALSE. * TEMP = Z( II ) / DELTA( II ) DW = DPSI + DPHI + TEMP*TEMP TEMP = Z( II )*TEMP W = W + TEMP ERRETM = EIGHT*( PHI-PSI ) + ERRETM + TWO*RHOINV + $ THREE*ABS( TEMP ) + ABS( TAU )*DW * * Test for convergence * IF( ABS( W ).LE.EPS*ERRETM ) THEN IF( ORGATI ) THEN DLAM = D( I ) + TAU ELSE DLAM = D( IP1 ) + TAU END IF GO TO 250 END IF * IF( W.LE.ZERO ) THEN DLTLB = MAX( DLTLB, TAU ) ELSE DLTUB = MIN( DLTUB, TAU ) END IF * * Calculate the new step * NITER = NITER + 1 IF( .NOT.SWTCH3 ) THEN IF( ORGATI ) THEN C = W - DELTA( IP1 )*DW - ( D( I )-D( IP1 ) )* $ ( Z( I ) / DELTA( I ) )**2 ELSE C = W - DELTA( I )*DW - ( D( IP1 )-D( I ) )* $ ( Z( IP1 ) / DELTA( IP1 ) )**2 END IF A = ( DELTA( I )+DELTA( IP1 ) )*W - $ DELTA( I )*DELTA( IP1 )*DW B = DELTA( I )*DELTA( IP1 )*W IF( C.EQ.ZERO ) THEN IF( A.EQ.ZERO ) THEN IF( ORGATI ) THEN A = Z( I )*Z( I ) + DELTA( IP1 )*DELTA( IP1 )* $ ( DPSI+DPHI ) ELSE A = Z( IP1 )*Z( IP1 ) + DELTA( I )*DELTA( I )* $ ( DPSI+DPHI ) END IF END IF ETA = B / A ELSE IF( A.LE.ZERO ) THEN ETA = ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE ETA = TWO*B / ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF ELSE * * Interpolation using THREE most relevant poles * TEMP = RHOINV + PSI + PHI IF( ORGATI ) THEN TEMP1 = Z( IIM1 ) / DELTA( IIM1 ) TEMP1 = TEMP1*TEMP1 C = TEMP - DELTA( IIP1 )*( DPSI+DPHI ) - $ ( D( IIM1 )-D( IIP1 ) )*TEMP1 ZZ( 1 ) = Z( IIM1 )*Z( IIM1 ) ZZ( 3 ) = DELTA( IIP1 )*DELTA( IIP1 )* $ ( ( DPSI-TEMP1 )+DPHI ) ELSE TEMP1 = Z( IIP1 ) / DELTA( IIP1 ) TEMP1 = TEMP1*TEMP1 C = TEMP - DELTA( IIM1 )*( DPSI+DPHI ) - $ ( D( IIP1 )-D( IIM1 ) )*TEMP1 ZZ( 1 ) = DELTA( IIM1 )*DELTA( IIM1 )* $ ( DPSI+( DPHI-TEMP1 ) ) ZZ( 3 ) = Z( IIP1 )*Z( IIP1 ) END IF ZZ( 2 ) = Z( II )*Z( II ) CALL DLAED6( NITER, ORGATI, C, DELTA( IIM1 ), ZZ, W, ETA, $ INFO ) IF( INFO.NE.0 ) $ GO TO 250 END IF * * Note, eta should be positive if w is negative, and * eta should be negative otherwise. However, * if for some reason caused by roundoff, eta*w > 0, * we simply use one Newton step instead. This way * will guarantee eta*w < 0. * IF( W*ETA.GE.ZERO ) $ ETA = -W / DW TEMP = TAU + ETA IF( TEMP.GT.DLTUB .OR. TEMP.LT.DLTLB ) THEN IF( W.LT.ZERO ) THEN ETA = ( DLTUB-TAU ) / TWO ELSE ETA = ( DLTLB-TAU ) / TWO END IF END IF * PREW = W * DO 180 J = 1, N DELTA( J ) = DELTA( J ) - ETA 180 CONTINUE * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 190 J = 1, IIM1 TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 190 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * DPHI = ZERO PHI = ZERO DO 200 J = N, IIP1, -1 TEMP = Z( J ) / DELTA( J ) PHI = PHI + Z( J )*TEMP DPHI = DPHI + TEMP*TEMP ERRETM = ERRETM + PHI 200 CONTINUE * TEMP = Z( II ) / DELTA( II ) DW = DPSI + DPHI + TEMP*TEMP TEMP = Z( II )*TEMP W = RHOINV + PHI + PSI + TEMP ERRETM = EIGHT*( PHI-PSI ) + ERRETM + TWO*RHOINV + $ THREE*ABS( TEMP ) + ABS( TAU+ETA )*DW * SWTCH = .FALSE. IF( ORGATI ) THEN IF( -W.GT.ABS( PREW ) / TEN ) $ SWTCH = .TRUE. ELSE IF( W.GT.ABS( PREW ) / TEN ) $ SWTCH = .TRUE. END IF * TAU = TAU + ETA * * Main loop to update the values of the array DELTA * ITER = NITER + 1 * DO 240 NITER = ITER, MAXIT * * Test for convergence * IF( ABS( W ).LE.EPS*ERRETM ) THEN IF( ORGATI ) THEN DLAM = D( I ) + TAU ELSE DLAM = D( IP1 ) + TAU END IF GO TO 250 END IF * IF( W.LE.ZERO ) THEN DLTLB = MAX( DLTLB, TAU ) ELSE DLTUB = MIN( DLTUB, TAU ) END IF * * Calculate the new step * IF( .NOT.SWTCH3 ) THEN IF( .NOT.SWTCH ) THEN IF( ORGATI ) THEN C = W - DELTA( IP1 )*DW - $ ( D( I )-D( IP1 ) )*( Z( I ) / DELTA( I ) )**2 ELSE C = W - DELTA( I )*DW - ( D( IP1 )-D( I ) )* $ ( Z( IP1 ) / DELTA( IP1 ) )**2 END IF ELSE TEMP = Z( II ) / DELTA( II ) IF( ORGATI ) THEN DPSI = DPSI + TEMP*TEMP ELSE DPHI = DPHI + TEMP*TEMP END IF C = W - DELTA( I )*DPSI - DELTA( IP1 )*DPHI END IF A = ( DELTA( I )+DELTA( IP1 ) )*W - $ DELTA( I )*DELTA( IP1 )*DW B = DELTA( I )*DELTA( IP1 )*W IF( C.EQ.ZERO ) THEN IF( A.EQ.ZERO ) THEN IF( .NOT.SWTCH ) THEN IF( ORGATI ) THEN A = Z( I )*Z( I ) + DELTA( IP1 )* $ DELTA( IP1 )*( DPSI+DPHI ) ELSE A = Z( IP1 )*Z( IP1 ) + $ DELTA( I )*DELTA( I )*( DPSI+DPHI ) END IF ELSE A = DELTA( I )*DELTA( I )*DPSI + $ DELTA( IP1 )*DELTA( IP1 )*DPHI END IF END IF ETA = B / A ELSE IF( A.LE.ZERO ) THEN ETA = ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE ETA = TWO*B / ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF ELSE * * Interpolation using THREE most relevant poles * TEMP = RHOINV + PSI + PHI IF( SWTCH ) THEN C = TEMP - DELTA( IIM1 )*DPSI - DELTA( IIP1 )*DPHI ZZ( 1 ) = DELTA( IIM1 )*DELTA( IIM1 )*DPSI ZZ( 3 ) = DELTA( IIP1 )*DELTA( IIP1 )*DPHI ELSE IF( ORGATI ) THEN TEMP1 = Z( IIM1 ) / DELTA( IIM1 ) TEMP1 = TEMP1*TEMP1 C = TEMP - DELTA( IIP1 )*( DPSI+DPHI ) - $ ( D( IIM1 )-D( IIP1 ) )*TEMP1 ZZ( 1 ) = Z( IIM1 )*Z( IIM1 ) ZZ( 3 ) = DELTA( IIP1 )*DELTA( IIP1 )* $ ( ( DPSI-TEMP1 )+DPHI ) ELSE TEMP1 = Z( IIP1 ) / DELTA( IIP1 ) TEMP1 = TEMP1*TEMP1 C = TEMP - DELTA( IIM1 )*( DPSI+DPHI ) - $ ( D( IIP1 )-D( IIM1 ) )*TEMP1 ZZ( 1 ) = DELTA( IIM1 )*DELTA( IIM1 )* $ ( DPSI+( DPHI-TEMP1 ) ) ZZ( 3 ) = Z( IIP1 )*Z( IIP1 ) END IF END IF CALL DLAED6( NITER, ORGATI, C, DELTA( IIM1 ), ZZ, W, ETA, $ INFO ) IF( INFO.NE.0 ) $ GO TO 250 END IF * * Note, eta should be positive if w is negative, and * eta should be negative otherwise. However, * if for some reason caused by roundoff, eta*w > 0, * we simply use one Newton step instead. This way * will guarantee eta*w < 0. * IF( W*ETA.GE.ZERO ) $ ETA = -W / DW TEMP = TAU + ETA IF( TEMP.GT.DLTUB .OR. TEMP.LT.DLTLB ) THEN IF( W.LT.ZERO ) THEN ETA = ( DLTUB-TAU ) / TWO ELSE ETA = ( DLTLB-TAU ) / TWO END IF END IF * DO 210 J = 1, N DELTA( J ) = DELTA( J ) - ETA 210 CONTINUE * TAU = TAU + ETA PREW = W * * Evaluate PSI and the derivative DPSI * DPSI = ZERO PSI = ZERO ERRETM = ZERO DO 220 J = 1, IIM1 TEMP = Z( J ) / DELTA( J ) PSI = PSI + Z( J )*TEMP DPSI = DPSI + TEMP*TEMP ERRETM = ERRETM + PSI 220 CONTINUE ERRETM = ABS( ERRETM ) * * Evaluate PHI and the derivative DPHI * DPHI = ZERO PHI = ZERO DO 230 J = N, IIP1, -1 TEMP = Z( J ) / DELTA( J ) PHI = PHI + Z( J )*TEMP DPHI = DPHI + TEMP*TEMP ERRETM = ERRETM + PHI 230 CONTINUE * TEMP = Z( II ) / DELTA( II ) DW = DPSI + DPHI + TEMP*TEMP TEMP = Z( II )*TEMP W = RHOINV + PHI + PSI + TEMP ERRETM = EIGHT*( PHI-PSI ) + ERRETM + TWO*RHOINV + $ THREE*ABS( TEMP ) + ABS( TAU )*DW IF( W*PREW.GT.ZERO .AND. ABS( W ).GT.ABS( PREW ) / TEN ) $ SWTCH = .NOT.SWTCH * 240 CONTINUE * * Return with INFO = 1, NITER = MAXIT and not converged * INFO = 1 IF( ORGATI ) THEN DLAM = D( I ) + TAU ELSE DLAM = D( IP1 ) + TAU END IF * END IF * 250 CONTINUE * RETURN * * End of DLAED4 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/iladlc.f0000644000000000000000000000013014061636515015252 xustar0029 mtime=1623670093.45210385 30 atime=1623670093.451103851 29 ctime=1623670093.45210385 elk-7.2.42/src/LAPACK/iladlc.f0000644002504400250440000000564214061636515017320 0ustar00dewhurstdewhurst00000000000000*> \brief \b ILADLC scans a matrix for its last non-zero column. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ILADLC + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION ILADLC( M, N, A, LDA ) * * .. Scalar Arguments .. * INTEGER M, N, LDA * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ILADLC scans A for its last non-zero column. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The m by n matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== INTEGER FUNCTION ILADLC( M, N, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER M, N, LDA * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I * .. * .. Executable Statements .. * * Quick test for the common case where one corner is non-zero. IF( N.EQ.0 ) THEN ILADLC = N ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN ILADLC = N ELSE * Now scan each column from the end, returning with the first non-zero. DO ILADLC = N, 1, -1 DO I = 1, M IF( A(I, ILADLC).NE.ZERO ) RETURN END DO END DO END IF RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/iladlr.f0000644000000000000000000000013214061636515015273 xustar0030 mtime=1623670093.453103849 30 atime=1623670093.453103849 30 ctime=1623670093.453103849 elk-7.2.42/src/LAPACK/iladlr.f0000644002504400250440000000572514061636515017341 0ustar00dewhurstdewhurst00000000000000*> \brief \b ILADLR scans a matrix for its last non-zero row. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ILADLR + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * INTEGER FUNCTION ILADLR( M, N, A, LDA ) * * .. Scalar Arguments .. * INTEGER M, N, LDA * .. * .. Array Arguments .. * DOUBLE PRECISION A( LDA, * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ILADLR scans A for its last non-zero row. *> \endverbatim * * Arguments: * ========== * *> \param[in] M *> \verbatim *> M is INTEGER *> The number of rows of the matrix A. *> \endverbatim *> *> \param[in] N *> \verbatim *> N is INTEGER *> The number of columns of the matrix A. *> \endverbatim *> *> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> The m by n matrix A. *> \endverbatim *> *> \param[in] LDA *> \verbatim *> LDA is INTEGER *> The leading dimension of the array A. LDA >= max(1,M). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup OTHERauxiliary * * ===================================================================== INTEGER FUNCTION ILADLR( M, N, A, LDA ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER M, N, LDA * .. * .. Array Arguments .. DOUBLE PRECISION A( LDA, * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D+0 ) * .. * .. Local Scalars .. INTEGER I, J * .. * .. Executable Statements .. * * Quick test for the common case where one corner is non-zero. IF( M.EQ.0 ) THEN ILADLR = M ELSE IF( A(M, 1).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN ILADLR = M ELSE * Scan up each column tracking the last zero row seen. ILADLR = 0 DO J = 1, N I=M DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1)) I=I-1 ENDDO ILADLR = MAX( ILADLR, I ) END DO END IF RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq4.f0000644000000000000000000000013214061636515015214 xustar0030 mtime=1623670093.455103847 30 atime=1623670093.455103847 30 ctime=1623670093.455103847 elk-7.2.42/src/LAPACK/dlasq4.f0000644002504400250440000002663414061636515017264 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ4 computes an approximation to the smallest eigenvalue using values of d from the previous transform. Used by sbdsqr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ4 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN, * DN1, DN2, TAU, TTYPE, G ) * * .. Scalar Arguments .. * INTEGER I0, N0, N0IN, PP, TTYPE * DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DN1, DN2, G, TAU * .. * .. Array Arguments .. * DOUBLE PRECISION Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ4 computes an approximation TAU to the smallest eigenvalue *> using values of d from the previous transform. *> \endverbatim * * Arguments: * ========== * *> \param[in] I0 *> \verbatim *> I0 is INTEGER *> First index. *> \endverbatim *> *> \param[in] N0 *> \verbatim *> N0 is INTEGER *> Last index. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N0 ) *> Z holds the qd array. *> \endverbatim *> *> \param[in] PP *> \verbatim *> PP is INTEGER *> PP=0 for ping, PP=1 for pong. *> \endverbatim *> *> \param[in] N0IN *> \verbatim *> N0IN is INTEGER *> The value of N0 at start of EIGTEST. *> \endverbatim *> *> \param[in] DMIN *> \verbatim *> DMIN is DOUBLE PRECISION *> Minimum value of d. *> \endverbatim *> *> \param[in] DMIN1 *> \verbatim *> DMIN1 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ). *> \endverbatim *> *> \param[in] DMIN2 *> \verbatim *> DMIN2 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ) and D( N0-1 ). *> \endverbatim *> *> \param[in] DN *> \verbatim *> DN is DOUBLE PRECISION *> d(N) *> \endverbatim *> *> \param[in] DN1 *> \verbatim *> DN1 is DOUBLE PRECISION *> d(N-1) *> \endverbatim *> *> \param[in] DN2 *> \verbatim *> DN2 is DOUBLE PRECISION *> d(N-2) *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> This is the shift. *> \endverbatim *> *> \param[out] TTYPE *> \verbatim *> TTYPE is INTEGER *> Shift type. *> \endverbatim *> *> \param[in,out] G *> \verbatim *> G is DOUBLE PRECISION *> G is passed as an argument in order to save its value between *> calls to DLASQ4. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2016 * *> \ingroup auxOTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> CNST1 = 9/16 *> \endverbatim *> * ===================================================================== SUBROUTINE DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN, $ DN1, DN2, TAU, TTYPE, G ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2016 * * .. Scalar Arguments .. INTEGER I0, N0, N0IN, PP, TTYPE DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DN1, DN2, G, TAU * .. * .. Array Arguments .. DOUBLE PRECISION Z( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION CNST1, CNST2, CNST3 PARAMETER ( CNST1 = 0.5630D0, CNST2 = 1.010D0, $ CNST3 = 1.050D0 ) DOUBLE PRECISION QURTR, THIRD, HALF, ZERO, ONE, TWO, HUNDRD PARAMETER ( QURTR = 0.250D0, THIRD = 0.3330D0, $ HALF = 0.50D0, ZERO = 0.0D0, ONE = 1.0D0, $ TWO = 2.0D0, HUNDRD = 100.0D0 ) * .. * .. Local Scalars .. INTEGER I4, NN, NP DOUBLE PRECISION A2, B1, B2, GAM, GAP1, GAP2, S * .. * .. Intrinsic Functions .. INTRINSIC MAX, MIN, SQRT * .. * .. Executable Statements .. * * A negative DMIN forces the shift to take that absolute value * TTYPE records the type of shift. * IF( DMIN.LE.ZERO ) THEN TAU = -DMIN TTYPE = -1 RETURN END IF * NN = 4*N0 + PP IF( N0IN.EQ.N0 ) THEN * * No eigenvalues deflated. * IF( DMIN.EQ.DN .OR. DMIN.EQ.DN1 ) THEN * B1 = SQRT( Z( NN-3 ) )*SQRT( Z( NN-5 ) ) B2 = SQRT( Z( NN-7 ) )*SQRT( Z( NN-9 ) ) A2 = Z( NN-7 ) + Z( NN-5 ) * * Cases 2 and 3. * IF( DMIN.EQ.DN .AND. DMIN1.EQ.DN1 ) THEN GAP2 = DMIN2 - A2 - DMIN2*QURTR IF( GAP2.GT.ZERO .AND. GAP2.GT.B2 ) THEN GAP1 = A2 - DN - ( B2 / GAP2 )*B2 ELSE GAP1 = A2 - DN - ( B1+B2 ) END IF IF( GAP1.GT.ZERO .AND. GAP1.GT.B1 ) THEN S = MAX( DN-( B1 / GAP1 )*B1, HALF*DMIN ) TTYPE = -2 ELSE S = ZERO IF( DN.GT.B1 ) $ S = DN - B1 IF( A2.GT.( B1+B2 ) ) $ S = MIN( S, A2-( B1+B2 ) ) S = MAX( S, THIRD*DMIN ) TTYPE = -3 END IF ELSE * * Case 4. * TTYPE = -4 S = QURTR*DMIN IF( DMIN.EQ.DN ) THEN GAM = DN A2 = ZERO IF( Z( NN-5 ) .GT. Z( NN-7 ) ) $ RETURN B2 = Z( NN-5 ) / Z( NN-7 ) NP = NN - 9 ELSE NP = NN - 2*PP GAM = DN1 IF( Z( NP-4 ) .GT. Z( NP-2 ) ) $ RETURN A2 = Z( NP-4 ) / Z( NP-2 ) IF( Z( NN-9 ) .GT. Z( NN-11 ) ) $ RETURN B2 = Z( NN-9 ) / Z( NN-11 ) NP = NN - 13 END IF * * Approximate contribution to norm squared from I < NN-1. * A2 = A2 + B2 DO 10 I4 = NP, 4*I0 - 1 + PP, -4 IF( B2.EQ.ZERO ) $ GO TO 20 B1 = B2 IF( Z( I4 ) .GT. Z( I4-2 ) ) $ RETURN B2 = B2*( Z( I4 ) / Z( I4-2 ) ) A2 = A2 + B2 IF( HUNDRD*MAX( B2, B1 ).LT.A2 .OR. CNST1.LT.A2 ) $ GO TO 20 10 CONTINUE 20 CONTINUE A2 = CNST3*A2 * * Rayleigh quotient residual bound. * IF( A2.LT.CNST1 ) $ S = GAM*( ONE-SQRT( A2 ) ) / ( ONE+A2 ) END IF ELSE IF( DMIN.EQ.DN2 ) THEN * * Case 5. * TTYPE = -5 S = QURTR*DMIN * * Compute contribution to norm squared from I > NN-2. * NP = NN - 2*PP B1 = Z( NP-2 ) B2 = Z( NP-6 ) GAM = DN2 IF( Z( NP-8 ).GT.B2 .OR. Z( NP-4 ).GT.B1 ) $ RETURN A2 = ( Z( NP-8 ) / B2 )*( ONE+Z( NP-4 ) / B1 ) * * Approximate contribution to norm squared from I < NN-2. * IF( N0-I0.GT.2 ) THEN B2 = Z( NN-13 ) / Z( NN-15 ) A2 = A2 + B2 DO 30 I4 = NN - 17, 4*I0 - 1 + PP, -4 IF( B2.EQ.ZERO ) $ GO TO 40 B1 = B2 IF( Z( I4 ) .GT. Z( I4-2 ) ) $ RETURN B2 = B2*( Z( I4 ) / Z( I4-2 ) ) A2 = A2 + B2 IF( HUNDRD*MAX( B2, B1 ).LT.A2 .OR. CNST1.LT.A2 ) $ GO TO 40 30 CONTINUE 40 CONTINUE A2 = CNST3*A2 END IF * IF( A2.LT.CNST1 ) $ S = GAM*( ONE-SQRT( A2 ) ) / ( ONE+A2 ) ELSE * * Case 6, no information to guide us. * IF( TTYPE.EQ.-6 ) THEN G = G + THIRD*( ONE-G ) ELSE IF( TTYPE.EQ.-18 ) THEN G = QURTR*THIRD ELSE G = QURTR END IF S = G*DMIN TTYPE = -6 END IF * ELSE IF( N0IN.EQ.( N0+1 ) ) THEN * * One eigenvalue just deflated. Use DMIN1, DN1 for DMIN and DN. * IF( DMIN1.EQ.DN1 .AND. DMIN2.EQ.DN2 ) THEN * * Cases 7 and 8. * TTYPE = -7 S = THIRD*DMIN1 IF( Z( NN-5 ).GT.Z( NN-7 ) ) $ RETURN B1 = Z( NN-5 ) / Z( NN-7 ) B2 = B1 IF( B2.EQ.ZERO ) $ GO TO 60 DO 50 I4 = 4*N0 - 9 + PP, 4*I0 - 1 + PP, -4 A2 = B1 IF( Z( I4 ).GT.Z( I4-2 ) ) $ RETURN B1 = B1*( Z( I4 ) / Z( I4-2 ) ) B2 = B2 + B1 IF( HUNDRD*MAX( B1, A2 ).LT.B2 ) $ GO TO 60 50 CONTINUE 60 CONTINUE B2 = SQRT( CNST3*B2 ) A2 = DMIN1 / ( ONE+B2**2 ) GAP2 = HALF*DMIN2 - A2 IF( GAP2.GT.ZERO .AND. GAP2.GT.B2*A2 ) THEN S = MAX( S, A2*( ONE-CNST2*A2*( B2 / GAP2 )*B2 ) ) ELSE S = MAX( S, A2*( ONE-CNST2*B2 ) ) TTYPE = -8 END IF ELSE * * Case 9. * S = QURTR*DMIN1 IF( DMIN1.EQ.DN1 ) $ S = HALF*DMIN1 TTYPE = -9 END IF * ELSE IF( N0IN.EQ.( N0+2 ) ) THEN * * Two eigenvalues deflated. Use DMIN2, DN2 for DMIN and DN. * * Cases 10 and 11. * IF( DMIN2.EQ.DN2 .AND. TWO*Z( NN-5 ).LT.Z( NN-7 ) ) THEN TTYPE = -10 S = THIRD*DMIN2 IF( Z( NN-5 ).GT.Z( NN-7 ) ) $ RETURN B1 = Z( NN-5 ) / Z( NN-7 ) B2 = B1 IF( B2.EQ.ZERO ) $ GO TO 80 DO 70 I4 = 4*N0 - 9 + PP, 4*I0 - 1 + PP, -4 IF( Z( I4 ).GT.Z( I4-2 ) ) $ RETURN B1 = B1*( Z( I4 ) / Z( I4-2 ) ) B2 = B2 + B1 IF( HUNDRD*B1.LT.B2 ) $ GO TO 80 70 CONTINUE 80 CONTINUE B2 = SQRT( CNST3*B2 ) A2 = DMIN2 / ( ONE+B2**2 ) GAP2 = Z( NN-7 ) + Z( NN-9 ) - $ SQRT( Z( NN-11 ) )*SQRT( Z( NN-9 ) ) - A2 IF( GAP2.GT.ZERO .AND. GAP2.GT.B2*A2 ) THEN S = MAX( S, A2*( ONE-CNST2*A2*( B2 / GAP2 )*B2 ) ) ELSE S = MAX( S, A2*( ONE-CNST2*B2 ) ) END IF ELSE S = QURTR*DMIN2 TTYPE = -11 END IF ELSE IF( N0IN.GT.( N0+2 ) ) THEN * * Case 12, more than two eigenvalues deflated. No information. * S = ZERO TTYPE = -12 END IF * TAU = S RETURN * * End of DLASQ4 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq5.f0000644000000000000000000000013214061636515015215 xustar0030 mtime=1623670093.457103845 30 atime=1623670093.457103845 30 ctime=1623670093.457103845 elk-7.2.42/src/LAPACK/dlasq5.f0000644002504400250440000002625514061636515017264 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ5 computes one dqds transform in ping-pong form. Used by sbdsqr and sstegr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ5 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ5( I0, N0, Z, PP, TAU, SIGMA, DMIN, DMIN1, DMIN2, DN, * DNM1, DNM2, IEEE, EPS ) * * .. Scalar Arguments .. * LOGICAL IEEE * INTEGER I0, N0, PP * DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DNM1, DNM2, TAU, SIGMA, EPS * .. * .. Array Arguments .. * DOUBLE PRECISION Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ5 computes one dqds transform in ping-pong form, one *> version for IEEE machines another for non IEEE machines. *> \endverbatim * * Arguments: * ========== * *> \param[in] I0 *> \verbatim *> I0 is INTEGER *> First index. *> \endverbatim *> *> \param[in] N0 *> \verbatim *> N0 is INTEGER *> Last index. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N ) *> Z holds the qd array. EMIN is stored in Z(4*N0) to avoid *> an extra argument. *> \endverbatim *> *> \param[in] PP *> \verbatim *> PP is INTEGER *> PP=0 for ping, PP=1 for pong. *> \endverbatim *> *> \param[in] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> This is the shift. *> \endverbatim *> *> \param[in] SIGMA *> \verbatim *> SIGMA is DOUBLE PRECISION *> This is the accumulated shift up to this step. *> \endverbatim *> *> \param[out] DMIN *> \verbatim *> DMIN is DOUBLE PRECISION *> Minimum value of d. *> \endverbatim *> *> \param[out] DMIN1 *> \verbatim *> DMIN1 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ). *> \endverbatim *> *> \param[out] DMIN2 *> \verbatim *> DMIN2 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ) and D( N0-1 ). *> \endverbatim *> *> \param[out] DN *> \verbatim *> DN is DOUBLE PRECISION *> d(N0), the last value of d. *> \endverbatim *> *> \param[out] DNM1 *> \verbatim *> DNM1 is DOUBLE PRECISION *> d(N0-1). *> \endverbatim *> *> \param[out] DNM2 *> \verbatim *> DNM2 is DOUBLE PRECISION *> d(N0-2). *> \endverbatim *> *> \param[in] IEEE *> \verbatim *> IEEE is LOGICAL *> Flag for IEEE or non IEEE arithmetic. *> \endverbatim *> *> \param[in] EPS *> \verbatim *> EPS is DOUBLE PRECISION *> This is the value of epsilon used. *> \endverbatim *> * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date June 2017 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLASQ5( I0, N0, Z, PP, TAU, SIGMA, DMIN, DMIN1, DMIN2, $ DN, DNM1, DNM2, IEEE, EPS ) * * -- LAPACK computational routine (version 3.7.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * June 2017 * * .. Scalar Arguments .. LOGICAL IEEE INTEGER I0, N0, PP DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DNM1, DNM2, TAU, $ SIGMA, EPS * .. * .. Array Arguments .. DOUBLE PRECISION Z( * ) * .. * * ===================================================================== * * .. Parameter .. DOUBLE PRECISION ZERO, HALF PARAMETER ( ZERO = 0.0D0, HALF = 0.5 ) * .. * .. Local Scalars .. INTEGER J4, J4P2 DOUBLE PRECISION D, EMIN, TEMP, DTHRESH * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( ( N0-I0-1 ).LE.0 ) $ RETURN * DTHRESH = EPS*(SIGMA+TAU) IF( TAU.LT.DTHRESH*HALF ) TAU = ZERO IF( TAU.NE.ZERO ) THEN J4 = 4*I0 + PP - 3 EMIN = Z( J4+4 ) D = Z( J4 ) - TAU DMIN = D DMIN1 = -Z( J4 ) * IF( IEEE ) THEN * * Code for IEEE arithmetic. * IF( PP.EQ.0 ) THEN DO 10 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-2 ) = D + Z( J4-1 ) TEMP = Z( J4+1 ) / Z( J4-2 ) D = D*TEMP - TAU DMIN = MIN( DMIN, D ) Z( J4 ) = Z( J4-1 )*TEMP EMIN = MIN( Z( J4 ), EMIN ) 10 CONTINUE ELSE DO 20 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-3 ) = D + Z( J4 ) TEMP = Z( J4+2 ) / Z( J4-3 ) D = D*TEMP - TAU DMIN = MIN( DMIN, D ) Z( J4-1 ) = Z( J4 )*TEMP EMIN = MIN( Z( J4-1 ), EMIN ) 20 CONTINUE END IF * * Unroll last two steps. * DNM2 = D DMIN2 = DMIN J4 = 4*( N0-2 ) - PP J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM2 + Z( J4P2 ) Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DNM1 = Z( J4P2+2 )*( DNM2 / Z( J4-2 ) ) - TAU DMIN = MIN( DMIN, DNM1 ) * DMIN1 = DMIN J4 = J4 + 4 J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM1 + Z( J4P2 ) Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DN = Z( J4P2+2 )*( DNM1 / Z( J4-2 ) ) - TAU DMIN = MIN( DMIN, DN ) * ELSE * * Code for non IEEE arithmetic. * IF( PP.EQ.0 ) THEN DO 30 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-2 ) = D + Z( J4-1 ) IF( D.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4+1 )*( Z( J4-1 ) / Z( J4-2 ) ) D = Z( J4+1 )*( D / Z( J4-2 ) ) - TAU END IF DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4 ) ) 30 CONTINUE ELSE DO 40 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-3 ) = D + Z( J4 ) IF( D.LT.ZERO ) THEN RETURN ELSE Z( J4-1 ) = Z( J4+2 )*( Z( J4 ) / Z( J4-3 ) ) D = Z( J4+2 )*( D / Z( J4-3 ) ) - TAU END IF DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4-1 ) ) 40 CONTINUE END IF * * Unroll last two steps. * DNM2 = D DMIN2 = DMIN J4 = 4*( N0-2 ) - PP J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM2 + Z( J4P2 ) IF( DNM2.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DNM1 = Z( J4P2+2 )*( DNM2 / Z( J4-2 ) ) - TAU END IF DMIN = MIN( DMIN, DNM1 ) * DMIN1 = DMIN J4 = J4 + 4 J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM1 + Z( J4P2 ) IF( DNM1.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DN = Z( J4P2+2 )*( DNM1 / Z( J4-2 ) ) - TAU END IF DMIN = MIN( DMIN, DN ) * END IF ELSE * This is the version that sets d's to zero if they are small enough J4 = 4*I0 + PP - 3 EMIN = Z( J4+4 ) D = Z( J4 ) - TAU DMIN = D DMIN1 = -Z( J4 ) IF( IEEE ) THEN * * Code for IEEE arithmetic. * IF( PP.EQ.0 ) THEN DO 50 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-2 ) = D + Z( J4-1 ) TEMP = Z( J4+1 ) / Z( J4-2 ) D = D*TEMP - TAU IF( D.LT.DTHRESH ) D = ZERO DMIN = MIN( DMIN, D ) Z( J4 ) = Z( J4-1 )*TEMP EMIN = MIN( Z( J4 ), EMIN ) 50 CONTINUE ELSE DO 60 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-3 ) = D + Z( J4 ) TEMP = Z( J4+2 ) / Z( J4-3 ) D = D*TEMP - TAU IF( D.LT.DTHRESH ) D = ZERO DMIN = MIN( DMIN, D ) Z( J4-1 ) = Z( J4 )*TEMP EMIN = MIN( Z( J4-1 ), EMIN ) 60 CONTINUE END IF * * Unroll last two steps. * DNM2 = D DMIN2 = DMIN J4 = 4*( N0-2 ) - PP J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM2 + Z( J4P2 ) Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DNM1 = Z( J4P2+2 )*( DNM2 / Z( J4-2 ) ) - TAU DMIN = MIN( DMIN, DNM1 ) * DMIN1 = DMIN J4 = J4 + 4 J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM1 + Z( J4P2 ) Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DN = Z( J4P2+2 )*( DNM1 / Z( J4-2 ) ) - TAU DMIN = MIN( DMIN, DN ) * ELSE * * Code for non IEEE arithmetic. * IF( PP.EQ.0 ) THEN DO 70 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-2 ) = D + Z( J4-1 ) IF( D.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4+1 )*( Z( J4-1 ) / Z( J4-2 ) ) D = Z( J4+1 )*( D / Z( J4-2 ) ) - TAU END IF IF( D.LT.DTHRESH) D = ZERO DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4 ) ) 70 CONTINUE ELSE DO 80 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-3 ) = D + Z( J4 ) IF( D.LT.ZERO ) THEN RETURN ELSE Z( J4-1 ) = Z( J4+2 )*( Z( J4 ) / Z( J4-3 ) ) D = Z( J4+2 )*( D / Z( J4-3 ) ) - TAU END IF IF( D.LT.DTHRESH) D = ZERO DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4-1 ) ) 80 CONTINUE END IF * * Unroll last two steps. * DNM2 = D DMIN2 = DMIN J4 = 4*( N0-2 ) - PP J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM2 + Z( J4P2 ) IF( DNM2.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DNM1 = Z( J4P2+2 )*( DNM2 / Z( J4-2 ) ) - TAU END IF DMIN = MIN( DMIN, DNM1 ) * DMIN1 = DMIN J4 = J4 + 4 J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM1 + Z( J4P2 ) IF( DNM1.LT.ZERO ) THEN RETURN ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DN = Z( J4P2+2 )*( DNM1 / Z( J4-2 ) ) - TAU END IF DMIN = MIN( DMIN, DN ) * END IF END IF * Z( J4+2 ) = DN Z( 4*N0-PP ) = EMIN RETURN * * End of DLASQ5 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlasq6.f0000644000000000000000000000013214061636515015216 xustar0030 mtime=1623670093.459103843 30 atime=1623670093.459103843 30 ctime=1623670093.459103843 elk-7.2.42/src/LAPACK/dlasq6.f0000644002504400250440000001521414061636515017256 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLASQ6 computes one dqd transform in ping-pong form. Used by sbdsqr and sstegr. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLASQ6 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLASQ6( I0, N0, Z, PP, DMIN, DMIN1, DMIN2, DN, * DNM1, DNM2 ) * * .. Scalar Arguments .. * INTEGER I0, N0, PP * DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DNM1, DNM2 * .. * .. Array Arguments .. * DOUBLE PRECISION Z( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLASQ6 computes one dqd (shift equal to zero) transform in *> ping-pong form, with protection against underflow and overflow. *> \endverbatim * * Arguments: * ========== * *> \param[in] I0 *> \verbatim *> I0 is INTEGER *> First index. *> \endverbatim *> *> \param[in] N0 *> \verbatim *> N0 is INTEGER *> Last index. *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N ) *> Z holds the qd array. EMIN is stored in Z(4*N0) to avoid *> an extra argument. *> \endverbatim *> *> \param[in] PP *> \verbatim *> PP is INTEGER *> PP=0 for ping, PP=1 for pong. *> \endverbatim *> *> \param[out] DMIN *> \verbatim *> DMIN is DOUBLE PRECISION *> Minimum value of d. *> \endverbatim *> *> \param[out] DMIN1 *> \verbatim *> DMIN1 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ). *> \endverbatim *> *> \param[out] DMIN2 *> \verbatim *> DMIN2 is DOUBLE PRECISION *> Minimum value of d, excluding D( N0 ) and D( N0-1 ). *> \endverbatim *> *> \param[out] DN *> \verbatim *> DN is DOUBLE PRECISION *> d(N0), the last value of d. *> \endverbatim *> *> \param[out] DNM1 *> \verbatim *> DNM1 is DOUBLE PRECISION *> d(N0-1). *> \endverbatim *> *> \param[out] DNM2 *> \verbatim *> DNM2 is DOUBLE PRECISION *> d(N0-2). *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * * ===================================================================== SUBROUTINE DLASQ6( I0, N0, Z, PP, DMIN, DMIN1, DMIN2, DN, $ DNM1, DNM2 ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER I0, N0, PP DOUBLE PRECISION DMIN, DMIN1, DMIN2, DN, DNM1, DNM2 * .. * .. Array Arguments .. DOUBLE PRECISION Z( * ) * .. * * ===================================================================== * * .. Parameter .. DOUBLE PRECISION ZERO PARAMETER ( ZERO = 0.0D0 ) * .. * .. Local Scalars .. INTEGER J4, J4P2 DOUBLE PRECISION D, EMIN, SAFMIN, TEMP * .. * .. External Function .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Intrinsic Functions .. INTRINSIC MIN * .. * .. Executable Statements .. * IF( ( N0-I0-1 ).LE.0 ) $ RETURN * SAFMIN = DLAMCH( 'Safe minimum' ) J4 = 4*I0 + PP - 3 EMIN = Z( J4+4 ) D = Z( J4 ) DMIN = D * IF( PP.EQ.0 ) THEN DO 10 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-2 ) = D + Z( J4-1 ) IF( Z( J4-2 ).EQ.ZERO ) THEN Z( J4 ) = ZERO D = Z( J4+1 ) DMIN = D EMIN = ZERO ELSE IF( SAFMIN*Z( J4+1 ).LT.Z( J4-2 ) .AND. $ SAFMIN*Z( J4-2 ).LT.Z( J4+1 ) ) THEN TEMP = Z( J4+1 ) / Z( J4-2 ) Z( J4 ) = Z( J4-1 )*TEMP D = D*TEMP ELSE Z( J4 ) = Z( J4+1 )*( Z( J4-1 ) / Z( J4-2 ) ) D = Z( J4+1 )*( D / Z( J4-2 ) ) END IF DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4 ) ) 10 CONTINUE ELSE DO 20 J4 = 4*I0, 4*( N0-3 ), 4 Z( J4-3 ) = D + Z( J4 ) IF( Z( J4-3 ).EQ.ZERO ) THEN Z( J4-1 ) = ZERO D = Z( J4+2 ) DMIN = D EMIN = ZERO ELSE IF( SAFMIN*Z( J4+2 ).LT.Z( J4-3 ) .AND. $ SAFMIN*Z( J4-3 ).LT.Z( J4+2 ) ) THEN TEMP = Z( J4+2 ) / Z( J4-3 ) Z( J4-1 ) = Z( J4 )*TEMP D = D*TEMP ELSE Z( J4-1 ) = Z( J4+2 )*( Z( J4 ) / Z( J4-3 ) ) D = Z( J4+2 )*( D / Z( J4-3 ) ) END IF DMIN = MIN( DMIN, D ) EMIN = MIN( EMIN, Z( J4-1 ) ) 20 CONTINUE END IF * * Unroll last two steps. * DNM2 = D DMIN2 = DMIN J4 = 4*( N0-2 ) - PP J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM2 + Z( J4P2 ) IF( Z( J4-2 ).EQ.ZERO ) THEN Z( J4 ) = ZERO DNM1 = Z( J4P2+2 ) DMIN = DNM1 EMIN = ZERO ELSE IF( SAFMIN*Z( J4P2+2 ).LT.Z( J4-2 ) .AND. $ SAFMIN*Z( J4-2 ).LT.Z( J4P2+2 ) ) THEN TEMP = Z( J4P2+2 ) / Z( J4-2 ) Z( J4 ) = Z( J4P2 )*TEMP DNM1 = DNM2*TEMP ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DNM1 = Z( J4P2+2 )*( DNM2 / Z( J4-2 ) ) END IF DMIN = MIN( DMIN, DNM1 ) * DMIN1 = DMIN J4 = J4 + 4 J4P2 = J4 + 2*PP - 1 Z( J4-2 ) = DNM1 + Z( J4P2 ) IF( Z( J4-2 ).EQ.ZERO ) THEN Z( J4 ) = ZERO DN = Z( J4P2+2 ) DMIN = DN EMIN = ZERO ELSE IF( SAFMIN*Z( J4P2+2 ).LT.Z( J4-2 ) .AND. $ SAFMIN*Z( J4-2 ).LT.Z( J4P2+2 ) ) THEN TEMP = Z( J4P2+2 ) / Z( J4-2 ) Z( J4 ) = Z( J4P2 )*TEMP DN = DNM1*TEMP ELSE Z( J4 ) = Z( J4P2+2 )*( Z( J4P2 ) / Z( J4-2 ) ) DN = Z( J4P2+2 )*( DNM1 / Z( J4-2 ) ) END IF DMIN = MIN( DMIN, DN ) * Z( J4+2 ) = DN Z( 4*N0-PP ) = EMIN RETURN * * End of DLASQ6 * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zlartg.f0000644000000000000000000000013214061636515015327 xustar0030 mtime=1623670093.461103841 30 atime=1623670093.461103841 30 ctime=1623670093.461103841 elk-7.2.42/src/LAPACK/zlartg.f0000644002504400250440000001632214061636515017370 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZLARTG generates a plane rotation with real cosine and complex sine. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZLARTG + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZLARTG( F, G, CS, SN, R ) * * .. Scalar Arguments .. * DOUBLE PRECISION CS * COMPLEX*16 F, G, R, SN * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZLARTG generates a plane rotation so that *> *> [ CS SN ] [ F ] [ R ] *> [ __ ] . [ ] = [ ] where CS**2 + |SN|**2 = 1. *> [ -SN CS ] [ G ] [ 0 ] *> *> This is a faster version of the BLAS1 routine ZROTG, except for *> the following differences: *> F and G are unchanged on return. *> If G=0, then CS=1 and SN=0. *> If F=0, then CS=0 and SN is chosen so that R is real. *> \endverbatim * * Arguments: * ========== * *> \param[in] F *> \verbatim *> F is COMPLEX*16 *> The first component of vector to be rotated. *> \endverbatim *> *> \param[in] G *> \verbatim *> G is COMPLEX*16 *> The second component of vector to be rotated. *> \endverbatim *> *> \param[out] CS *> \verbatim *> CS is DOUBLE PRECISION *> The cosine of the rotation. *> \endverbatim *> *> \param[out] SN *> \verbatim *> SN is COMPLEX*16 *> The sine of the rotation. *> \endverbatim *> *> \param[out] R *> \verbatim *> R is COMPLEX*16 *> The nonzero component of the rotated vector. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * *> \par Further Details: * ===================== *> *> \verbatim *> *> 3-5-96 - Modified with a new algorithm by W. Kahan and J. Demmel *> *> This version has a few statements commented out for thread safety *> (machine parameters are computed on each entry). 10 feb 03, SJH. *> \endverbatim *> * ===================================================================== SUBROUTINE ZLARTG( F, G, CS, SN, R ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. DOUBLE PRECISION CS COMPLEX*16 F, G, R, SN * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION TWO, ONE, ZERO PARAMETER ( TWO = 2.0D+0, ONE = 1.0D+0, ZERO = 0.0D+0 ) COMPLEX*16 CZERO PARAMETER ( CZERO = ( 0.0D+0, 0.0D+0 ) ) * .. * .. Local Scalars .. * LOGICAL FIRST INTEGER COUNT, I DOUBLE PRECISION D, DI, DR, EPS, F2, F2S, G2, G2S, SAFMIN, $ SAFMN2, SAFMX2, SCALE COMPLEX*16 FF, FS, GS * .. * .. External Functions .. DOUBLE PRECISION DLAMCH, DLAPY2 LOGICAL DISNAN EXTERNAL DLAMCH, DLAPY2, DISNAN * .. * .. Intrinsic Functions .. INTRINSIC ABS, DBLE, DCMPLX, DCONJG, DIMAG, INT, LOG, $ MAX, SQRT * .. * .. Statement Functions .. DOUBLE PRECISION ABS1, ABSSQ * .. * .. Statement Function definitions .. ABS1( FF ) = MAX( ABS( DBLE( FF ) ), ABS( DIMAG( FF ) ) ) ABSSQ( FF ) = DBLE( FF )**2 + DIMAG( FF )**2 * .. * .. Executable Statements .. * SAFMIN = DLAMCH( 'S' ) EPS = DLAMCH( 'E' ) SAFMN2 = DLAMCH( 'B' )**INT( LOG( SAFMIN / EPS ) / $ LOG( DLAMCH( 'B' ) ) / TWO ) SAFMX2 = ONE / SAFMN2 SCALE = MAX( ABS1( F ), ABS1( G ) ) FS = F GS = G COUNT = 0 IF( SCALE.GE.SAFMX2 ) THEN 10 CONTINUE COUNT = COUNT + 1 FS = FS*SAFMN2 GS = GS*SAFMN2 SCALE = SCALE*SAFMN2 IF( SCALE.GE.SAFMX2 ) $ GO TO 10 ELSE IF( SCALE.LE.SAFMN2 ) THEN IF( G.EQ.CZERO.OR.DISNAN( ABS( G ) ) ) THEN CS = ONE SN = CZERO R = F RETURN END IF 20 CONTINUE COUNT = COUNT - 1 FS = FS*SAFMX2 GS = GS*SAFMX2 SCALE = SCALE*SAFMX2 IF( SCALE.LE.SAFMN2 ) $ GO TO 20 END IF F2 = ABSSQ( FS ) G2 = ABSSQ( GS ) IF( F2.LE.MAX( G2, ONE )*SAFMIN ) THEN * * This is a rare case: F is very small. * IF( F.EQ.CZERO ) THEN CS = ZERO R = DLAPY2( DBLE( G ), DIMAG( G ) ) * Do complex/real division explicitly with two real divisions D = DLAPY2( DBLE( GS ), DIMAG( GS ) ) SN = DCMPLX( DBLE( GS ) / D, -DIMAG( GS ) / D ) RETURN END IF F2S = DLAPY2( DBLE( FS ), DIMAG( FS ) ) * G2 and G2S are accurate * G2 is at least SAFMIN, and G2S is at least SAFMN2 G2S = SQRT( G2 ) * Error in CS from underflow in F2S is at most * UNFL / SAFMN2 .lt. sqrt(UNFL*EPS) .lt. EPS * If MAX(G2,ONE)=G2, then F2 .lt. G2*SAFMIN, * and so CS .lt. sqrt(SAFMIN) * If MAX(G2,ONE)=ONE, then F2 .lt. SAFMIN * and so CS .lt. sqrt(SAFMIN)/SAFMN2 = sqrt(EPS) * Therefore, CS = F2S/G2S / sqrt( 1 + (F2S/G2S)**2 ) = F2S/G2S CS = F2S / G2S * Make sure abs(FF) = 1 * Do complex/real division explicitly with 2 real divisions IF( ABS1( F ).GT.ONE ) THEN D = DLAPY2( DBLE( F ), DIMAG( F ) ) FF = DCMPLX( DBLE( F ) / D, DIMAG( F ) / D ) ELSE DR = SAFMX2*DBLE( F ) DI = SAFMX2*DIMAG( F ) D = DLAPY2( DR, DI ) FF = DCMPLX( DR / D, DI / D ) END IF SN = FF*DCMPLX( DBLE( GS ) / G2S, -DIMAG( GS ) / G2S ) R = CS*F + SN*G ELSE * * This is the most common case. * Neither F2 nor F2/G2 are less than SAFMIN * F2S cannot overflow, and it is accurate * F2S = SQRT( ONE+G2 / F2 ) * Do the F2S(real)*FS(complex) multiply with two real multiplies R = DCMPLX( F2S*DBLE( FS ), F2S*DIMAG( FS ) ) CS = ONE / F2S D = F2 + G2 * Do complex/real division explicitly with two real divisions SN = DCMPLX( DBLE( R ) / D, DIMAG( R ) / D ) SN = SN*DCONJG( GS ) IF( COUNT.NE.0 ) THEN IF( COUNT.GT.0 ) THEN DO 30 I = 1, COUNT R = R*SAFMX2 30 CONTINUE ELSE DO 40 I = 1, -COUNT R = R*SAFMN2 40 CONTINUE END IF END IF END IF RETURN * * End of ZLARTG * END elk-7.2.42/src/LAPACK/PaxHeaders.21776/zrot.f0000644000000000000000000000012714061636515015026 xustar0029 mtime=1623670093.46310384 29 atime=1623670093.46310384 29 ctime=1623670093.46310384 elk-7.2.42/src/LAPACK/zrot.f0000644002504400250440000001013414061636515017056 0ustar00dewhurstdewhurst00000000000000*> \brief \b ZROT applies a plane rotation with real cosine and complex sine to a pair of complex vectors. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download ZROT + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE ZROT( N, CX, INCX, CY, INCY, C, S ) * * .. Scalar Arguments .. * INTEGER INCX, INCY, N * DOUBLE PRECISION C * COMPLEX*16 S * .. * .. Array Arguments .. * COMPLEX*16 CX( * ), CY( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZROT applies a plane rotation, where the cos (C) is real and the *> sin (S) is complex, and the vectors CX and CY are complex. *> \endverbatim * * Arguments: * ========== * *> \param[in] N *> \verbatim *> N is INTEGER *> The number of elements in the vectors CX and CY. *> \endverbatim *> *> \param[in,out] CX *> \verbatim *> CX is COMPLEX*16 array, dimension (N) *> On input, the vector X. *> On output, CX is overwritten with C*X + S*Y. *> \endverbatim *> *> \param[in] INCX *> \verbatim *> INCX is INTEGER *> The increment between successive values of CY. INCX <> 0. *> \endverbatim *> *> \param[in,out] CY *> \verbatim *> CY is COMPLEX*16 array, dimension (N) *> On input, the vector Y. *> On output, CY is overwritten with -CONJG(S)*X + C*Y. *> \endverbatim *> *> \param[in] INCY *> \verbatim *> INCY is INTEGER *> The increment between successive values of CY. INCX <> 0. *> \endverbatim *> *> \param[in] C *> \verbatim *> C is DOUBLE PRECISION *> \endverbatim *> *> \param[in] S *> \verbatim *> S is COMPLEX*16 *> C and S define a rotation *> [ C S ] *> [ -conjg(S) C ] *> where C*C + S*CONJG(S) = 1.0. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup complex16OTHERauxiliary * * ===================================================================== SUBROUTINE ZROT( N, CX, INCX, CY, INCY, C, S ) * * -- LAPACK auxiliary routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. INTEGER INCX, INCY, N DOUBLE PRECISION C COMPLEX*16 S * .. * .. Array Arguments .. COMPLEX*16 CX( * ), CY( * ) * .. * * ===================================================================== * * .. Local Scalars .. INTEGER I, IX, IY COMPLEX*16 STEMP * .. * .. Intrinsic Functions .. INTRINSIC DCONJG * .. * .. Executable Statements .. * IF( N.LE.0 ) $ RETURN IF( INCX.EQ.1 .AND. INCY.EQ.1 ) $ GO TO 20 * * Code for unequal increments or equal increments not equal to 1 * IX = 1 IY = 1 IF( INCX.LT.0 ) $ IX = ( -N+1 )*INCX + 1 IF( INCY.LT.0 ) $ IY = ( -N+1 )*INCY + 1 DO 10 I = 1, N STEMP = C*CX( IX ) + S*CY( IY ) CY( IY ) = C*CY( IY ) - DCONJG( S )*CX( IX ) CX( IX ) = STEMP IX = IX + INCX IY = IY + INCY 10 CONTINUE RETURN * * Code for both increments equal to 1 * 20 CONTINUE DO 30 I = 1, N STEMP = C*CX( I ) + S*CY( I ) CY( I ) = C*CY( I ) - DCONJG( S )*CX( I ) CX( I ) = STEMP 30 CONTINUE RETURN END elk-7.2.42/src/LAPACK/PaxHeaders.21776/dlaed6.f0000644000000000000000000000013214061636515015163 xustar0030 mtime=1623670093.465103838 30 atime=1623670093.464103839 30 ctime=1623670093.465103838 elk-7.2.42/src/LAPACK/dlaed6.f0000644002504400250440000002655314061636515017233 0ustar00dewhurstdewhurst00000000000000*> \brief \b DLAED6 used by sstedc. Computes one Newton step in solution of the secular equation. * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly *> Download DLAED6 + dependencies *> *> [TGZ] *> *> [ZIP] *> *> [TXT] *> \endhtmlonly * * Definition: * =========== * * SUBROUTINE DLAED6( KNITER, ORGATI, RHO, D, Z, FINIT, TAU, INFO ) * * .. Scalar Arguments .. * LOGICAL ORGATI * INTEGER INFO, KNITER * DOUBLE PRECISION FINIT, RHO, TAU * .. * .. Array Arguments .. * DOUBLE PRECISION D( 3 ), Z( 3 ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> DLAED6 computes the positive or negative root (closest to the origin) *> of *> z(1) z(2) z(3) *> f(x) = rho + --------- + ---------- + --------- *> d(1)-x d(2)-x d(3)-x *> *> It is assumed that *> *> if ORGATI = .true. the root is between d(2) and d(3); *> otherwise it is between d(1) and d(2) *> *> This routine will be called by DLAED4 when necessary. In most cases, *> the root sought is the smallest in magnitude, though it might not be *> in some extremely rare situations. *> \endverbatim * * Arguments: * ========== * *> \param[in] KNITER *> \verbatim *> KNITER is INTEGER *> Refer to DLAED4 for its significance. *> \endverbatim *> *> \param[in] ORGATI *> \verbatim *> ORGATI is LOGICAL *> If ORGATI is true, the needed root is between d(2) and *> d(3); otherwise it is between d(1) and d(2). See *> DLAED4 for further details. *> \endverbatim *> *> \param[in] RHO *> \verbatim *> RHO is DOUBLE PRECISION *> Refer to the equation f(x) above. *> \endverbatim *> *> \param[in] D *> \verbatim *> D is DOUBLE PRECISION array, dimension (3) *> D satisfies d(1) < d(2) < d(3). *> \endverbatim *> *> \param[in] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension (3) *> Each of the elements in z must be positive. *> \endverbatim *> *> \param[in] FINIT *> \verbatim *> FINIT is DOUBLE PRECISION *> The value of f at 0. It is more accurate than the one *> evaluated inside this routine (if someone wants to do *> so). *> \endverbatim *> *> \param[out] TAU *> \verbatim *> TAU is DOUBLE PRECISION *> The root of the equation f(x). *> \endverbatim *> *> \param[out] INFO *> \verbatim *> INFO is INTEGER *> = 0: successful exit *> > 0: if INFO = 1, failure to converge *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \date December 2016 * *> \ingroup auxOTHERcomputational * *> \par Further Details: * ===================== *> *> \verbatim *> *> 10/02/03: This version has a few statements commented out for thread *> safety (machine parameters are computed on each entry). SJH. *> *> 05/10/06: Modified from a new version of Ren-Cang Li, use *> Gragg-Thornton-Warner cubic convergent scheme for better stability. *> \endverbatim * *> \par Contributors: * ================== *> *> Ren-Cang Li, Computer Science Division, University of California *> at Berkeley, USA *> * ===================================================================== SUBROUTINE DLAED6( KNITER, ORGATI, RHO, D, Z, FINIT, TAU, INFO ) * * -- LAPACK computational routine (version 3.7.0) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * December 2016 * * .. Scalar Arguments .. LOGICAL ORGATI INTEGER INFO, KNITER DOUBLE PRECISION FINIT, RHO, TAU * .. * .. Array Arguments .. DOUBLE PRECISION D( 3 ), Z( 3 ) * .. * * ===================================================================== * * .. Parameters .. INTEGER MAXIT PARAMETER ( MAXIT = 40 ) DOUBLE PRECISION ZERO, ONE, TWO, THREE, FOUR, EIGHT PARAMETER ( ZERO = 0.0D0, ONE = 1.0D0, TWO = 2.0D0, $ THREE = 3.0D0, FOUR = 4.0D0, EIGHT = 8.0D0 ) * .. * .. External Functions .. DOUBLE PRECISION DLAMCH EXTERNAL DLAMCH * .. * .. Local Arrays .. DOUBLE PRECISION DSCALE( 3 ), ZSCALE( 3 ) * .. * .. Local Scalars .. LOGICAL SCALE INTEGER I, ITER, NITER DOUBLE PRECISION A, B, BASE, C, DDF, DF, EPS, ERRETM, ETA, F, $ FC, SCLFAC, SCLINV, SMALL1, SMALL2, SMINV1, $ SMINV2, TEMP, TEMP1, TEMP2, TEMP3, TEMP4, $ LBD, UBD * .. * .. Intrinsic Functions .. INTRINSIC ABS, INT, LOG, MAX, MIN, SQRT * .. * .. Executable Statements .. * INFO = 0 * IF( ORGATI ) THEN LBD = D(2) UBD = D(3) ELSE LBD = D(1) UBD = D(2) END IF IF( FINIT .LT. ZERO )THEN LBD = ZERO ELSE UBD = ZERO END IF * NITER = 1 TAU = ZERO IF( KNITER.EQ.2 ) THEN IF( ORGATI ) THEN TEMP = ( D( 3 )-D( 2 ) ) / TWO C = RHO + Z( 1 ) / ( ( D( 1 )-D( 2 ) )-TEMP ) A = C*( D( 2 )+D( 3 ) ) + Z( 2 ) + Z( 3 ) B = C*D( 2 )*D( 3 ) + Z( 2 )*D( 3 ) + Z( 3 )*D( 2 ) ELSE TEMP = ( D( 1 )-D( 2 ) ) / TWO C = RHO + Z( 3 ) / ( ( D( 3 )-D( 2 ) )-TEMP ) A = C*( D( 1 )+D( 2 ) ) + Z( 1 ) + Z( 2 ) B = C*D( 1 )*D( 2 ) + Z( 1 )*D( 2 ) + Z( 2 )*D( 1 ) END IF TEMP = MAX( ABS( A ), ABS( B ), ABS( C ) ) A = A / TEMP B = B / TEMP C = C / TEMP IF( C.EQ.ZERO ) THEN TAU = B / A ELSE IF( A.LE.ZERO ) THEN TAU = ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE TAU = TWO*B / ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF IF( TAU .LT. LBD .OR. TAU .GT. UBD ) $ TAU = ( LBD+UBD )/TWO IF( D(1).EQ.TAU .OR. D(2).EQ.TAU .OR. D(3).EQ.TAU ) THEN TAU = ZERO ELSE TEMP = FINIT + TAU*Z(1)/( D(1)*( D( 1 )-TAU ) ) + $ TAU*Z(2)/( D(2)*( D( 2 )-TAU ) ) + $ TAU*Z(3)/( D(3)*( D( 3 )-TAU ) ) IF( TEMP .LE. ZERO )THEN LBD = TAU ELSE UBD = TAU END IF IF( ABS( FINIT ).LE.ABS( TEMP ) ) $ TAU = ZERO END IF END IF * * get machine parameters for possible scaling to avoid overflow * * modified by Sven: parameters SMALL1, SMINV1, SMALL2, * SMINV2, EPS are not SAVEd anymore between one call to the * others but recomputed at each call * EPS = DLAMCH( 'Epsilon' ) BASE = DLAMCH( 'Base' ) SMALL1 = BASE**( INT( LOG( DLAMCH( 'SafMin' ) ) / LOG( BASE ) / $ THREE ) ) SMINV1 = ONE / SMALL1 SMALL2 = SMALL1*SMALL1 SMINV2 = SMINV1*SMINV1 * * Determine if scaling of inputs necessary to avoid overflow * when computing 1/TEMP**3 * IF( ORGATI ) THEN TEMP = MIN( ABS( D( 2 )-TAU ), ABS( D( 3 )-TAU ) ) ELSE TEMP = MIN( ABS( D( 1 )-TAU ), ABS( D( 2 )-TAU ) ) END IF SCALE = .FALSE. IF( TEMP.LE.SMALL1 ) THEN SCALE = .TRUE. IF( TEMP.LE.SMALL2 ) THEN * * Scale up by power of radix nearest 1/SAFMIN**(2/3) * SCLFAC = SMINV2 SCLINV = SMALL2 ELSE * * Scale up by power of radix nearest 1/SAFMIN**(1/3) * SCLFAC = SMINV1 SCLINV = SMALL1 END IF * * Scaling up safe because D, Z, TAU scaled elsewhere to be O(1) * DO 10 I = 1, 3 DSCALE( I ) = D( I )*SCLFAC ZSCALE( I ) = Z( I )*SCLFAC 10 CONTINUE TAU = TAU*SCLFAC LBD = LBD*SCLFAC UBD = UBD*SCLFAC ELSE * * Copy D and Z to DSCALE and ZSCALE * DO 20 I = 1, 3 DSCALE( I ) = D( I ) ZSCALE( I ) = Z( I ) 20 CONTINUE END IF * FC = ZERO DF = ZERO DDF = ZERO DO 30 I = 1, 3 TEMP = ONE / ( DSCALE( I )-TAU ) TEMP1 = ZSCALE( I )*TEMP TEMP2 = TEMP1*TEMP TEMP3 = TEMP2*TEMP FC = FC + TEMP1 / DSCALE( I ) DF = DF + TEMP2 DDF = DDF + TEMP3 30 CONTINUE F = FINIT + TAU*FC * IF( ABS( F ).LE.ZERO ) $ GO TO 60 IF( F .LE. ZERO )THEN LBD = TAU ELSE UBD = TAU END IF * * Iteration begins -- Use Gragg-Thornton-Warner cubic convergent * scheme * * It is not hard to see that * * 1) Iterations will go up monotonically * if FINIT < 0; * * 2) Iterations will go down monotonically * if FINIT > 0. * ITER = NITER + 1 * DO 50 NITER = ITER, MAXIT * IF( ORGATI ) THEN TEMP1 = DSCALE( 2 ) - TAU TEMP2 = DSCALE( 3 ) - TAU ELSE TEMP1 = DSCALE( 1 ) - TAU TEMP2 = DSCALE( 2 ) - TAU END IF A = ( TEMP1+TEMP2 )*F - TEMP1*TEMP2*DF B = TEMP1*TEMP2*F C = F - ( TEMP1+TEMP2 )*DF + TEMP1*TEMP2*DDF TEMP = MAX( ABS( A ), ABS( B ), ABS( C ) ) A = A / TEMP B = B / TEMP C = C / TEMP IF( C.EQ.ZERO ) THEN ETA = B / A ELSE IF( A.LE.ZERO ) THEN ETA = ( A-SQRT( ABS( A*A-FOUR*B*C ) ) ) / ( TWO*C ) ELSE ETA = TWO*B / ( A+SQRT( ABS( A*A-FOUR*B*C ) ) ) END IF IF( F*ETA.GE.ZERO ) THEN ETA = -F / DF END IF * TAU = TAU + ETA IF( TAU .LT. LBD .OR. TAU .GT. UBD ) $ TAU = ( LBD + UBD )/TWO * FC = ZERO ERRETM = ZERO DF = ZERO DDF = ZERO DO 40 I = 1, 3 IF ( ( DSCALE( I )-TAU ).NE.ZERO ) THEN TEMP = ONE / ( DSCALE( I )-TAU ) TEMP1 = ZSCALE( I )*TEMP TEMP2 = TEMP1*TEMP TEMP3 = TEMP2*TEMP TEMP4 = TEMP1 / DSCALE( I ) FC = FC + TEMP4 ERRETM = ERRETM + ABS( TEMP4 ) DF = DF + TEMP2 DDF = DDF + TEMP3 ELSE GO TO 60 END IF 40 CONTINUE F = FINIT + TAU*FC ERRETM = EIGHT*( ABS( FINIT )+ABS( TAU )*ERRETM ) + $ ABS( TAU )*DF IF( ( ABS( F ).LE.FOUR*EPS*ERRETM ) .OR. $ ( (UBD-LBD).LE.FOUR*EPS*ABS(TAU) ) ) $ GO TO 60 IF( F .LE. ZERO )THEN LBD = TAU ELSE UBD = TAU END IF 50 CONTINUE INFO = 1 60 CONTINUE * * Undo scaling * IF( SCALE ) $ TAU = TAU*SCLINV RETURN * * End of DLAED6 * END elk-7.2.42/src/PaxHeaders.21776/fftlib0000644000000000000000000000013214061636515014113 xustar0030 mtime=1623670093.474103829 30 atime=1623670093.471103832 30 ctime=1623670093.474103829 elk-7.2.42/src/fftlib/0000755002504400250440000000000014061636515016225 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/fftlib/PaxHeaders.21776/Makefile0000644000000000000000000000012714061636515015634 xustar0029 mtime=1623670093.47310383 29 atime=1623670093.47310383 29 ctime=1623670093.47310383 elk-7.2.42/src/fftlib/Makefile0000644002504400250440000000107514061636515017670 0ustar00dewhurstdewhurst00000000000000 AR = ar include ../../make.inc #------------------------------------------------------------------------------- # Suffix Rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f90 .f90.o: $(F90) $(F90_OPTS) -c $< #------------------------------------------------------------------------------- # File dependencies #------------------------------------------------------------------------------- SRC = cfftnd.f90 OBJ = $(SRC:.f90=.o) fftlib: $(OBJ) $(AR) -rc fftlib.a $(OBJ) clean: rm -f *.o *.mod *~ *.a ifc* *.gcno elk-7.2.42/src/fftlib/PaxHeaders.21776/cfftnd.f900000644000000000000000000000013214061636515015754 xustar0030 mtime=1623670093.475103829 30 atime=1623670093.474103829 30 ctime=1623670093.475103829 elk-7.2.42/src/fftlib/cfftnd.f900000644002504400250440000016417414061636515020026 0ustar00dewhurstdewhurst00000000000000module fftpack5 integer, parameter :: prec=kind(1.d0) end module subroutine cfftnd(nd,n,sgn,c) ! ! DESCRIPTION: ! In-place fast Fourier transform for complex arrays in $n_d$ dimensions. The ! forward transform is scaled by one over the size of the array. Uses a ! modified version of the FFTPACK5 library. ! ! INPUT/OUTPUT PARAMETERS: ! nd : number of dimensions (in,integer) ! n : mesh size (in,integer(nd)) ! sgn : FFT direction, -1: forward, 1: backward (in,integer) ! c : array to transform (inout,complex(n(1)*n(2)*...*n(nd))) ! ! Copyright (C) 2005 J. K. Dewhurst ! Distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! use fftpack5 implicit none ! arguments integer, intent(in) :: nd integer, intent(in) :: n(nd) integer, intent(in) :: sgn complex(prec), intent(inout) :: c(*) ! local variables integer i,j,k,l,p,q,iw,iw1,ni integer lensav,lenwrk ! allocatable arrays real(prec), allocatable :: wsave(:) real(prec), allocatable :: work(:) if (nd.le.0) then write(*,*) write(*,'("Error(cfftnd): invalid number of dimensions : ",I8)') nd write(*,*) stop end if p=1 lensav=1 do i=1,nd if (n(i).le.0) then write(*,*) write(*,'("Error(cfftnd): invalid n : ",I8)') n(i) write(*,'(" for dimension ",I4)') i write(*,*) stop end if p=p*n(i) lensav=max(lensav,2*n(i)+int(log(real(n(i),prec)))+4) end do lenwrk=2*p allocate(wsave(lensav)) allocate(work(lenwrk)) if (sgn.gt.0) then q=1 do i=1,nd ni=n(i) if (ni.gt.1) then iw=ni+ni+1 iw1=iw+1 p=p/ni call cfftmi(ni,wsave,lensav) j=1 k=q*ni do l=1,p call cmfm1b(q,1,ni,q,c(j),work,wsave,wsave(iw),wsave(iw1)) j=j+k end do q=k end if end do else q=1 do i=1,nd ni=n(i) if (ni.gt.1) then iw=ni+ni+1 iw1=iw+1 p=p/ni call cfftmi(ni,wsave,lensav) j=1 k=q*ni do l=1,p call cmfm1f(q,1,ni,q,c(j),work,wsave,wsave(iw),wsave(iw1)) j=j+k end do q=k end if end do end if deallocate(wsave,work) return end subroutine subroutine cfftmi ( n, wsave, lensav ) !******************************************************************************* ! !! CFFTMI: initialization for CFFTMB and CFFTMF. ! ! Discussion: ! ! CFFTMI initializes array WSAVE for use in its companion routines ! CFFTMB and CFFTMF. CFFTMI must be called before the first call ! to CFFTMB or CFFTMF, and after whenever the value of integer N changes. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Modified: ! ! 24 March 2005 ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! ! Input, integer N, the length of each sequence to be transformed. ! The transform is most efficient when N is a product of small primes. ! ! Input, integer LENSAV, the dimension of the WSAVE array. LENSAV must be ! at least 2*N + INT(LOG(REAL(N))) + 4. ! ! Output, real WSAVE(LENSAV), containing the prime factors of N and ! also containing certain trigonometric values which will be used in ! routines CFFTMB or CFFTMF. ! ! use fftpack5 implicit none integer lensav integer iw1 integer n real(prec) wsave(lensav) if ( n == 1 ) then return end if iw1 = n + n + 1 call mcfti1 ( n, wsave, wsave(iw1), wsave(iw1+1) ) return end subroutine mcfti1 ( n, wa, fnf, fac ) !******************************************************************************* ! !! MCFTI1 is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none real(prec) fac(*) real(prec) fnf integer ido integer ip integer iw integer k1 integer l1 integer l2 integer n integer nf real(prec) wa(*) ! ! Get the factorization of N. ! call factor ( n, nf, fac ) fnf = real ( nf, prec ) iw = 1 l1 = 1 ! ! Set up the trigonometric tables. ! do k1 = 1, nf ip = int ( fac(k1) ) l2 = l1 * ip ido = n / l2 call tables ( ido, ip, wa(iw) ) iw = iw + ( ip - 1 ) * ( ido + ido ) l1 = l2 end do return end subroutine factor ( n, nf, fac ) !******************************************************************************* ! !! FACTOR determines the factors of an integer. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Modified: ! ! 28 March 2005 ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! ! Input, integer N, the number for which factorization and other information ! is needed. ! ! Output, integer NF, the number of factors. ! ! Output, real FAC(*), a list of factors of N. ! use fftpack5 implicit none real(prec) fac(*) integer j integer n integer nf integer nl integer nq integer nr integer ntry nl = n nf = 0 j = 0 do while ( 1 < nl ) j = j + 1 if ( j == 1 ) then ntry = 4 else if ( j == 2 ) then ntry = 2 else if ( j == 3 ) then ntry = 3 else if ( j == 4 ) then ntry = 5 else ntry = ntry + 2 end if do nq = nl / ntry nr = nl - ntry * nq if ( nr /= 0 ) then exit end if nf = nf + 1 fac(nf) = ntry nl = nq end do end do return end subroutine tables ( ido, ip, wa ) !******************************************************************************* ! !! TABLES computes trigonometric tables needed by the FFT routines. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer ip real(prec) arg1 real(prec) arg2 real(prec) arg3 real(prec) arg4 real(prec) argz integer i integer j real(prec) tpi real(prec) wa(ido,ip-1,2) tpi = 8.0E+00_prec * atan ( 1.0E+00_prec ) argz = tpi / real ( ip, prec ) arg1 = tpi / real ( ido * ip, prec ) do j = 2, ip arg2 = real ( j - 1, prec ) * arg1 do i = 1, ido arg3 = real ( i - 1, prec ) * arg2 wa(i,j-1,1) = cos ( arg3 ) wa(i,j-1,2) = sin ( arg3 ) end do if ( 5 < ip ) then arg4 = real ( j - 1, prec ) * argz wa(1,j-1,1) = cos ( arg4 ) wa(1,j-1,2) = sin ( arg4 ) end if end do return end subroutine cmfm1b ( lot, jump, n, inc, c, ch, wa, fnf, fac ) !******************************************************************************* ! !! CMFM1B is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none complex(prec) c(*) real(prec) ch(*) real(prec) fac(*) real(prec) fnf integer ido integer inc integer ip integer iw integer jump integer k1 integer l1 integer l2 integer lid integer lot integer n integer na integer nbr integer nf real(prec) wa(*) nf = int ( fnf ) na = 0 l1 = 1 iw = 1 do k1 = 1, nf ip = int ( fac(k1) ) l2 = ip * l1 ido = n / l2 lid = l1 * ido nbr = 1 + na + 2 * min ( ip - 2, 4 ) if ( nbr == 1 ) then call cmf2kb ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 2 ) then call cmf2kb ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 3 ) then call cmf3kb ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 4 ) then call cmf3kb ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 5 ) then call cmf4kb ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 6 ) then call cmf4kb ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 7 ) then call cmf5kb ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 8 ) then call cmf5kb ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 9 ) then call cmfgkb ( lot, ido, ip, l1, lid, na, c, c, jump, inc, ch, ch, & 1, lot, wa(iw) ) else if ( nbr == 10 ) then call cmfgkb ( lot, ido, ip, l1, lid, na, ch, ch, 1, lot, c, c, & jump, inc, wa(iw) ) end if l1 = l2 iw = iw + ( ip - 1 ) * ( ido + ido ) if ( ip <= 5 ) then na = 1 - na end if end do return end subroutine cmfm1f ( lot, jump, n, inc, c, ch, wa, fnf, fac ) !******************************************************************************* ! !! CMFM1F is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none complex(prec) c(*) real(prec) ch(*) real(prec) fac(*) real(prec) fnf integer ido integer inc integer ip integer iw integer jump integer k1 integer l1 integer l2 integer lid integer lot integer n integer na integer nbr integer nf real(prec) wa(*) nf = int ( fnf ) na = 0 l1 = 1 iw = 1 do k1 = 1, nf ip = int ( fac(k1) ) l2 = ip * l1 ido = n / l2 lid = l1 * ido nbr = 1 + na + 2 * min ( ip - 2, 4 ) if ( nbr == 1 ) then call cmf2kf ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 2 ) then call cmf2kf ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 3 ) then call cmf3kf ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 4 ) then call cmf3kf ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 5 ) then call cmf4kf ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 6 ) then call cmf4kf ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 7 ) then call cmf5kf ( lot, ido, l1, na, c, jump, inc, ch, 1, lot, wa(iw) ) else if ( nbr == 8 ) then call cmf5kf ( lot, ido, l1, na, ch, 1, lot, c, jump, inc, wa(iw) ) else if ( nbr == 9 ) then call cmfgkf ( lot, ido, ip, l1, lid, na, c, c, jump, inc, ch, ch, & 1, lot, wa(iw) ) else if ( nbr == 10 ) then call cmfgkf ( lot, ido, ip, l1, lid, na, ch, ch, 1, lot, c, c, & jump, inc, wa(iw) ) end if l1 = l2 iw = iw + ( ip - 1 ) * ( ido + ido ) if ( ip <= 5 ) then na = 1 - na end if end do return end subroutine cmf2kb ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF2KB is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,2) real(prec) ch(2,in2,l1,2,ido) real(prec) chold1 real(prec) chold2 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) ti2 real(prec) tr2 real(prec) wa(ido,1,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido .or. na == 1 ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch(1,m2,k,1,1) = cc(1,m1,k,1,1) + cc(1,m1,k,1,2) ch(1,m2,k,2,1) = cc(1,m1,k,1,1) - cc(1,m1,k,1,2) ch(2,m2,k,1,1) = cc(2,m1,k,1,1) + cc(2,m1,k,1,2) ch(2,m2,k,2,1) = cc(2,m1,k,1,1) - cc(2,m1,k,1,2) end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+cc(1,m1,k,i,2) tr2 = cc(1,m1,k,i,1)-cc(1,m1,k,i,2) ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+cc(2,m1,k,i,2) ti2 = cc(2,m1,k,i,1)-cc(2,m1,k,i,2) ch(2,m2,k,2,i) = wa(i,1,1)*ti2+wa(i,1,2)*tr2 ch(1,m2,k,2,i) = wa(i,1,1)*tr2-wa(i,1,2)*ti2 end do end do end do else do k = 1, l1 do m1 = 1, m1d, im1 chold1 = cc(1,m1,k,1,1) + cc(1,m1,k,1,2) cc(1,m1,k,1,2) = cc(1,m1,k,1,1) - cc(1,m1,k,1,2) cc(1,m1,k,1,1) = chold1 chold2 = cc(2,m1,k,1,1) + cc(2,m1,k,1,2) cc(2,m1,k,1,2) = cc(2,m1,k,1,1) - cc(2,m1,k,1,2) cc(2,m1,k,1,1) = chold2 end do end do end if return end subroutine cmf2kf ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF2KF is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,2) real(prec) ch(2,in2,l1,2,ido) real(prec) chold1 real(prec) chold2 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) sn real(prec) ti2 real(prec) tr2 real(prec) wa(ido,1,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch(1,m2,k,1,1) = cc(1,m1,k,1,1)+cc(1,m1,k,1,2) ch(1,m2,k,2,1) = cc(1,m1,k,1,1)-cc(1,m1,k,1,2) ch(2,m2,k,1,1) = cc(2,m1,k,1,1)+cc(2,m1,k,1,2) ch(2,m2,k,2,1) = cc(2,m1,k,1,1)-cc(2,m1,k,1,2) end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+cc(1,m1,k,i,2) tr2 = cc(1,m1,k,i,1)-cc(1,m1,k,i,2) ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+cc(2,m1,k,i,2) ti2 = cc(2,m1,k,i,1)-cc(2,m1,k,i,2) ch(2,m2,k,2,i) = wa(i,1,1)*ti2-wa(i,1,2)*tr2 ch(1,m2,k,2,i) = wa(i,1,1)*tr2+wa(i,1,2)*ti2 end do end do end do else if ( na == 1 ) then sn = 1.0E+00_prec / real ( 2 * l1, prec ) do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch(1,m2,k,1,1) = sn * ( cc(1,m1,k,1,1) + cc(1,m1,k,1,2) ) ch(1,m2,k,2,1) = sn * ( cc(1,m1,k,1,1) - cc(1,m1,k,1,2) ) ch(2,m2,k,1,1) = sn * ( cc(2,m1,k,1,1) + cc(2,m1,k,1,2) ) ch(2,m2,k,2,1) = sn * ( cc(2,m1,k,1,1) - cc(2,m1,k,1,2) ) end do end do else sn = 1.0E+00_prec / real ( 2 * l1, prec ) do k = 1, l1 do m1 = 1, m1d, im1 chold1 = sn * ( cc(1,m1,k,1,1) + cc(1,m1,k,1,2) ) cc(1,m1,k,1,2) = sn * ( cc(1,m1,k,1,1) - cc(1,m1,k,1,2) ) cc(1,m1,k,1,1) = chold1 chold2 = sn * ( cc(2,m1,k,1,1) + cc(2,m1,k,1,2) ) cc(2,m1,k,1,2) = sn * ( cc(2,m1,k,1,1) - cc(2,m1,k,1,2) ) cc(2,m1,k,1,1) = chold2 end do end do end if return end subroutine cmf3kb ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF3KB is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,3) real(prec) ch(2,in2,l1,3,ido) real(prec) ci2 real(prec) ci3 real(prec) cr2 real(prec) cr3 real(prec) di2 real(prec) di3 real(prec) dr2 real(prec) dr3 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec), parameter :: taui = 0.866025403784439E+00_prec real(prec), parameter :: taur = -0.5E+00_prec real(prec) ti2 real(prec) tr2 real(prec) wa(ido,2,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido .or. na == 1 ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,3) cr2 = cc(1,m1,k,1,1)+taur*tr2 ch(1,m2,k,1,1) = cc(1,m1,k,1,1)+tr2 ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,3) ci2 = cc(2,m1,k,1,1)+taur*ti2 ch(2,m2,k,1,1) = cc(2,m1,k,1,1)+ti2 cr3 = taui * (cc(1,m1,k,1,2)-cc(1,m1,k,1,3)) ci3 = taui * (cc(2,m1,k,1,2)-cc(2,m1,k,1,3)) ch(1,m2,k,2,1) = cr2-ci3 ch(1,m2,k,3,1) = cr2+ci3 ch(2,m2,k,2,1) = ci2+cr3 ch(2,m2,k,3,1) = ci2-cr3 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 tr2 = cc(1,m1,k,i,2)+cc(1,m1,k,i,3) cr2 = cc(1,m1,k,i,1)+taur*tr2 ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+tr2 ti2 = cc(2,m1,k,i,2)+cc(2,m1,k,i,3) ci2 = cc(2,m1,k,i,1)+taur*ti2 ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+ti2 cr3 = taui*(cc(1,m1,k,i,2)-cc(1,m1,k,i,3)) ci3 = taui*(cc(2,m1,k,i,2)-cc(2,m1,k,i,3)) dr2 = cr2-ci3 dr3 = cr2+ci3 di2 = ci2+cr3 di3 = ci2-cr3 ch(2,m2,k,2,i) = wa(i,1,1)*di2+wa(i,1,2)*dr2 ch(1,m2,k,2,i) = wa(i,1,1)*dr2-wa(i,1,2)*di2 ch(2,m2,k,3,i) = wa(i,2,1)*di3+wa(i,2,2)*dr3 ch(1,m2,k,3,i) = wa(i,2,1)*dr3-wa(i,2,2)*di3 end do end do end do else do k = 1, l1 do m1 = 1, m1d, im1 tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,3) cr2 = cc(1,m1,k,1,1)+taur*tr2 cc(1,m1,k,1,1) = cc(1,m1,k,1,1)+tr2 ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,3) ci2 = cc(2,m1,k,1,1)+taur*ti2 cc(2,m1,k,1,1) = cc(2,m1,k,1,1)+ti2 cr3 = taui*(cc(1,m1,k,1,2)-cc(1,m1,k,1,3)) ci3 = taui*(cc(2,m1,k,1,2)-cc(2,m1,k,1,3)) cc(1,m1,k,1,2) = cr2-ci3 cc(1,m1,k,1,3) = cr2+ci3 cc(2,m1,k,1,2) = ci2+cr3 cc(2,m1,k,1,3) = ci2-cr3 end do end do end if return end subroutine cmf3kf ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF3KF is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,3) real(prec) ch(2,in2,l1,3,ido) real(prec) ci2 real(prec) ci3 real(prec) cr2 real(prec) cr3 real(prec) di2 real(prec) di3 real(prec) dr2 real(prec) dr3 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) sn real(prec), parameter :: taui = -0.866025403784439E+00_prec real(prec), parameter :: taur = -0.5E+00_prec real(prec) ti2 real(prec) tr2 real(prec) wa(ido,2,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,3) cr2 = cc(1,m1,k,1,1)+taur*tr2 ch(1,m2,k,1,1) = cc(1,m1,k,1,1)+tr2 ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,3) ci2 = cc(2,m1,k,1,1)+taur*ti2 ch(2,m2,k,1,1) = cc(2,m1,k,1,1)+ti2 cr3 = taui*(cc(1,m1,k,1,2)-cc(1,m1,k,1,3)) ci3 = taui*(cc(2,m1,k,1,2)-cc(2,m1,k,1,3)) ch(1,m2,k,2,1) = cr2-ci3 ch(1,m2,k,3,1) = cr2+ci3 ch(2,m2,k,2,1) = ci2+cr3 ch(2,m2,k,3,1) = ci2-cr3 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 tr2 = cc(1,m1,k,i,2)+cc(1,m1,k,i,3) cr2 = cc(1,m1,k,i,1)+taur*tr2 ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+tr2 ti2 = cc(2,m1,k,i,2)+cc(2,m1,k,i,3) ci2 = cc(2,m1,k,i,1)+taur*ti2 ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+ti2 cr3 = taui*(cc(1,m1,k,i,2)-cc(1,m1,k,i,3)) ci3 = taui*(cc(2,m1,k,i,2)-cc(2,m1,k,i,3)) dr2 = cr2-ci3 dr3 = cr2+ci3 di2 = ci2+cr3 di3 = ci2-cr3 ch(2,m2,k,2,i) = wa(i,1,1)*di2-wa(i,1,2)*dr2 ch(1,m2,k,2,i) = wa(i,1,1)*dr2+wa(i,1,2)*di2 ch(2,m2,k,3,i) = wa(i,2,1)*di3-wa(i,2,2)*dr3 ch(1,m2,k,3,i) = wa(i,2,1)*dr3+wa(i,2,2)*di3 end do end do end do else if ( na == 1 ) then sn = 1.0E+00_prec / real ( 3 * l1, prec ) do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,3) cr2 = cc(1,m1,k,1,1)+taur*tr2 ch(1,m2,k,1,1) = sn*(cc(1,m1,k,1,1)+tr2) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,3) ci2 = cc(2,m1,k,1,1)+taur*ti2 ch(2,m2,k,1,1) = sn*(cc(2,m1,k,1,1)+ti2) cr3 = taui*(cc(1,m1,k,1,2)-cc(1,m1,k,1,3)) ci3 = taui*(cc(2,m1,k,1,2)-cc(2,m1,k,1,3)) ch(1,m2,k,2,1) = sn*(cr2-ci3) ch(1,m2,k,3,1) = sn*(cr2+ci3) ch(2,m2,k,2,1) = sn*(ci2+cr3) ch(2,m2,k,3,1) = sn*(ci2-cr3) end do end do else sn = 1.0E+00_prec / real ( 3 * l1, prec ) do k = 1, l1 do m1 = 1, m1d, im1 tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,3) cr2 = cc(1,m1,k,1,1)+taur*tr2 cc(1,m1,k,1,1) = sn*(cc(1,m1,k,1,1)+tr2) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,3) ci2 = cc(2,m1,k,1,1)+taur*ti2 cc(2,m1,k,1,1) = sn*(cc(2,m1,k,1,1)+ti2) cr3 = taui*(cc(1,m1,k,1,2)-cc(1,m1,k,1,3)) ci3 = taui*(cc(2,m1,k,1,2)-cc(2,m1,k,1,3)) cc(1,m1,k,1,2) = sn*(cr2-ci3) cc(1,m1,k,1,3) = sn*(cr2+ci3) cc(2,m1,k,1,2) = sn*(ci2+cr3) cc(2,m1,k,1,3) = sn*(ci2-cr3) end do end do end if return end subroutine cmf4kb ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF4KB is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,4) real(prec) ch(2,in2,l1,4,ido) real(prec) ci2 real(prec) ci3 real(prec) ci4 real(prec) cr2 real(prec) cr3 real(prec) cr4 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) ti1 real(prec) ti2 real(prec) ti3 real(prec) ti4 real(prec) tr1 real(prec) tr2 real(prec) tr3 real(prec) tr4 real(prec) wa(ido,3,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido .or. na == 1 ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti1 = cc(2,m1,k,1,1)-cc(2,m1,k,1,3) ti2 = cc(2,m1,k,1,1)+cc(2,m1,k,1,3) tr4 = cc(2,m1,k,1,4)-cc(2,m1,k,1,2) ti3 = cc(2,m1,k,1,2)+cc(2,m1,k,1,4) tr1 = cc(1,m1,k,1,1)-cc(1,m1,k,1,3) tr2 = cc(1,m1,k,1,1)+cc(1,m1,k,1,3) ti4 = cc(1,m1,k,1,2)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,2)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = tr2+tr3 ch(1,m2,k,3,1) = tr2-tr3 ch(2,m2,k,1,1) = ti2+ti3 ch(2,m2,k,3,1) = ti2-ti3 ch(1,m2,k,2,1) = tr1+tr4 ch(1,m2,k,4,1) = tr1-tr4 ch(2,m2,k,2,1) = ti1+ti4 ch(2,m2,k,4,1) = ti1-ti4 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti1 = cc(2,m1,k,i,1)-cc(2,m1,k,i,3) ti2 = cc(2,m1,k,i,1)+cc(2,m1,k,i,3) ti3 = cc(2,m1,k,i,2)+cc(2,m1,k,i,4) tr4 = cc(2,m1,k,i,4)-cc(2,m1,k,i,2) tr1 = cc(1,m1,k,i,1)-cc(1,m1,k,i,3) tr2 = cc(1,m1,k,i,1)+cc(1,m1,k,i,3) ti4 = cc(1,m1,k,i,2)-cc(1,m1,k,i,4) tr3 = cc(1,m1,k,i,2)+cc(1,m1,k,i,4) ch(1,m2,k,1,i) = tr2+tr3 cr3 = tr2-tr3 ch(2,m2,k,1,i) = ti2+ti3 ci3 = ti2-ti3 cr2 = tr1+tr4 cr4 = tr1-tr4 ci2 = ti1+ti4 ci4 = ti1-ti4 ch(1,m2,k,2,i) = wa(i,1,1)*cr2-wa(i,1,2)*ci2 ch(2,m2,k,2,i) = wa(i,1,1)*ci2+wa(i,1,2)*cr2 ch(1,m2,k,3,i) = wa(i,2,1)*cr3-wa(i,2,2)*ci3 ch(2,m2,k,3,i) = wa(i,2,1)*ci3+wa(i,2,2)*cr3 ch(1,m2,k,4,i) = wa(i,3,1)*cr4-wa(i,3,2)*ci4 ch(2,m2,k,4,i) = wa(i,3,1)*ci4+wa(i,3,2)*cr4 end do end do end do else do k = 1, l1 do m1 = 1, m1d, im1 ti1 = cc(2,m1,k,1,1)-cc(2,m1,k,1,3) ti2 = cc(2,m1,k,1,1)+cc(2,m1,k,1,3) tr4 = cc(2,m1,k,1,4)-cc(2,m1,k,1,2) ti3 = cc(2,m1,k,1,2)+cc(2,m1,k,1,4) tr1 = cc(1,m1,k,1,1)-cc(1,m1,k,1,3) tr2 = cc(1,m1,k,1,1)+cc(1,m1,k,1,3) ti4 = cc(1,m1,k,1,2)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,2)+cc(1,m1,k,1,4) cc(1,m1,k,1,1) = tr2+tr3 cc(1,m1,k,1,3) = tr2-tr3 cc(2,m1,k,1,1) = ti2+ti3 cc(2,m1,k,1,3) = ti2-ti3 cc(1,m1,k,1,2) = tr1+tr4 cc(1,m1,k,1,4) = tr1-tr4 cc(2,m1,k,1,2) = ti1+ti4 cc(2,m1,k,1,4) = ti1-ti4 end do end do end if return end subroutine cmf4kf ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF4KF is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,4) real(prec) ch(2,in2,l1,4,ido) real(prec) ci2 real(prec) ci3 real(prec) ci4 real(prec) cr2 real(prec) cr3 real(prec) cr4 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) sn real(prec) ti1 real(prec) ti2 real(prec) ti3 real(prec) ti4 real(prec) tr1 real(prec) tr2 real(prec) tr3 real(prec) tr4 real(prec) wa(ido,3,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti1 = cc(2,m1,k,1,1)-cc(2,m1,k,1,3) ti2 = cc(2,m1,k,1,1)+cc(2,m1,k,1,3) tr4 = cc(2,m1,k,1,2)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,2)+cc(2,m1,k,1,4) tr1 = cc(1,m1,k,1,1)-cc(1,m1,k,1,3) tr2 = cc(1,m1,k,1,1)+cc(1,m1,k,1,3) ti4 = cc(1,m1,k,1,4)-cc(1,m1,k,1,2) tr3 = cc(1,m1,k,1,2)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = tr2+tr3 ch(1,m2,k,3,1) = tr2-tr3 ch(2,m2,k,1,1) = ti2+ti3 ch(2,m2,k,3,1) = ti2-ti3 ch(1,m2,k,2,1) = tr1+tr4 ch(1,m2,k,4,1) = tr1-tr4 ch(2,m2,k,2,1) = ti1+ti4 ch(2,m2,k,4,1) = ti1-ti4 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti1 = cc(2,m1,k,i,1)-cc(2,m1,k,i,3) ti2 = cc(2,m1,k,i,1)+cc(2,m1,k,i,3) ti3 = cc(2,m1,k,i,2)+cc(2,m1,k,i,4) tr4 = cc(2,m1,k,i,2)-cc(2,m1,k,i,4) tr1 = cc(1,m1,k,i,1)-cc(1,m1,k,i,3) tr2 = cc(1,m1,k,i,1)+cc(1,m1,k,i,3) ti4 = cc(1,m1,k,i,4)-cc(1,m1,k,i,2) tr3 = cc(1,m1,k,i,2)+cc(1,m1,k,i,4) ch(1,m2,k,1,i) = tr2+tr3 cr3 = tr2-tr3 ch(2,m2,k,1,i) = ti2+ti3 ci3 = ti2-ti3 cr2 = tr1+tr4 cr4 = tr1-tr4 ci2 = ti1+ti4 ci4 = ti1-ti4 ch(1,m2,k,2,i) = wa(i,1,1)*cr2+wa(i,1,2)*ci2 ch(2,m2,k,2,i) = wa(i,1,1)*ci2-wa(i,1,2)*cr2 ch(1,m2,k,3,i) = wa(i,2,1)*cr3+wa(i,2,2)*ci3 ch(2,m2,k,3,i) = wa(i,2,1)*ci3-wa(i,2,2)*cr3 ch(1,m2,k,4,i) = wa(i,3,1)*cr4+wa(i,3,2)*ci4 ch(2,m2,k,4,i) = wa(i,3,1)*ci4-wa(i,3,2)*cr4 end do end do end do else if ( na == 1 ) then sn = 1.0E+00_prec / real ( 4 * l1, prec ) do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti1 = cc(2,m1,k,1,1)-cc(2,m1,k,1,3) ti2 = cc(2,m1,k,1,1)+cc(2,m1,k,1,3) tr4 = cc(2,m1,k,1,2)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,2)+cc(2,m1,k,1,4) tr1 = cc(1,m1,k,1,1)-cc(1,m1,k,1,3) tr2 = cc(1,m1,k,1,1)+cc(1,m1,k,1,3) ti4 = cc(1,m1,k,1,4)-cc(1,m1,k,1,2) tr3 = cc(1,m1,k,1,2)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = sn*(tr2+tr3) ch(1,m2,k,3,1) = sn*(tr2-tr3) ch(2,m2,k,1,1) = sn*(ti2+ti3) ch(2,m2,k,3,1) = sn*(ti2-ti3) ch(1,m2,k,2,1) = sn*(tr1+tr4) ch(1,m2,k,4,1) = sn*(tr1-tr4) ch(2,m2,k,2,1) = sn*(ti1+ti4) ch(2,m2,k,4,1) = sn*(ti1-ti4) end do end do else sn = 1.0E+00_prec / real ( 4 * l1, prec ) do k = 1, l1 do m1 = 1, m1d, im1 ti1 = cc(2,m1,k,1,1)-cc(2,m1,k,1,3) ti2 = cc(2,m1,k,1,1)+cc(2,m1,k,1,3) tr4 = cc(2,m1,k,1,2)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,2)+cc(2,m1,k,1,4) tr1 = cc(1,m1,k,1,1)-cc(1,m1,k,1,3) tr2 = cc(1,m1,k,1,1)+cc(1,m1,k,1,3) ti4 = cc(1,m1,k,1,4)-cc(1,m1,k,1,2) tr3 = cc(1,m1,k,1,2)+cc(1,m1,k,1,4) cc(1,m1,k,1,1) = sn*(tr2+tr3) cc(1,m1,k,1,3) = sn*(tr2-tr3) cc(2,m1,k,1,1) = sn*(ti2+ti3) cc(2,m1,k,1,3) = sn*(ti2-ti3) cc(1,m1,k,1,2) = sn*(tr1+tr4) cc(1,m1,k,1,4) = sn*(tr1-tr4) cc(2,m1,k,1,2) = sn*(ti1+ti4) cc(2,m1,k,1,4) = sn*(ti1-ti4) end do end do end if return end subroutine cmf5kb ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF5KB is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,5) real(prec) ch(2,in2,l1,5,ido) real(prec) chold1 real(prec) chold2 real(prec) ci2 real(prec) ci3 real(prec) ci4 real(prec) ci5 real(prec) cr2 real(prec) cr3 real(prec) cr4 real(prec) cr5 real(prec) di2 real(prec) di3 real(prec) di4 real(prec) di5 real(prec) dr2 real(prec) dr3 real(prec) dr4 real(prec) dr5 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) ti2 real(prec) ti3 real(prec) ti4 real(prec) ti5 real(prec), parameter :: ti11 = 0.9510565162951536E+00_prec real(prec), parameter :: ti12 = 0.5877852522924731E+00_prec real(prec) tr2 real(prec) tr3 real(prec) tr4 real(prec) tr5 real(prec), parameter :: tr11 = 0.3090169943749474E+00_prec real(prec), parameter :: tr12 = -0.8090169943749474E+00_prec real(prec) wa(ido,4,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido .or. na == 1 ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti5 = cc(2,m1,k,1,2)-cc(2,m1,k,1,5) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,5) ti4 = cc(2,m1,k,1,3)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,3)+cc(2,m1,k,1,4) tr5 = cc(1,m1,k,1,2)-cc(1,m1,k,1,5) tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,5) tr4 = cc(1,m1,k,1,3)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,3)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = cc(1,m1,k,1,1)+tr2+tr3 ch(2,m2,k,1,1) = cc(2,m1,k,1,1)+ti2+ti3 cr2 = cc(1,m1,k,1,1)+tr11*tr2+tr12*tr3 ci2 = cc(2,m1,k,1,1)+tr11*ti2+tr12*ti3 cr3 = cc(1,m1,k,1,1)+tr12*tr2+tr11*tr3 ci3 = cc(2,m1,k,1,1)+tr12*ti2+tr11*ti3 cr5 = ti11*tr5+ti12*tr4 ci5 = ti11*ti5+ti12*ti4 cr4 = ti12*tr5-ti11*tr4 ci4 = ti12*ti5-ti11*ti4 ch(1,m2,k,2,1) = cr2-ci5 ch(1,m2,k,5,1) = cr2+ci5 ch(2,m2,k,2,1) = ci2+cr5 ch(2,m2,k,3,1) = ci3+cr4 ch(1,m2,k,3,1) = cr3-ci4 ch(1,m2,k,4,1) = cr3+ci4 ch(2,m2,k,4,1) = ci3-cr4 ch(2,m2,k,5,1) = ci2-cr5 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti5 = cc(2,m1,k,i,2)-cc(2,m1,k,i,5) ti2 = cc(2,m1,k,i,2)+cc(2,m1,k,i,5) ti4 = cc(2,m1,k,i,3)-cc(2,m1,k,i,4) ti3 = cc(2,m1,k,i,3)+cc(2,m1,k,i,4) tr5 = cc(1,m1,k,i,2)-cc(1,m1,k,i,5) tr2 = cc(1,m1,k,i,2)+cc(1,m1,k,i,5) tr4 = cc(1,m1,k,i,3)-cc(1,m1,k,i,4) tr3 = cc(1,m1,k,i,3)+cc(1,m1,k,i,4) ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+tr2+tr3 ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+ti2+ti3 cr2 = cc(1,m1,k,i,1)+tr11*tr2+tr12*tr3 ci2 = cc(2,m1,k,i,1)+tr11*ti2+tr12*ti3 cr3 = cc(1,m1,k,i,1)+tr12*tr2+tr11*tr3 ci3 = cc(2,m1,k,i,1)+tr12*ti2+tr11*ti3 cr5 = ti11*tr5+ti12*tr4 ci5 = ti11*ti5+ti12*ti4 cr4 = ti12*tr5-ti11*tr4 ci4 = ti12*ti5-ti11*ti4 dr3 = cr3-ci4 dr4 = cr3+ci4 di3 = ci3+cr4 di4 = ci3-cr4 dr5 = cr2+ci5 dr2 = cr2-ci5 di5 = ci2-cr5 di2 = ci2+cr5 ch(1,m2,k,2,i) = wa(i,1,1) * dr2 - wa(i,1,2) * di2 ch(2,m2,k,2,i) = wa(i,1,1) * di2 + wa(i,1,2) * dr2 ch(1,m2,k,3,i) = wa(i,2,1) * dr3 - wa(i,2,2) * di3 ch(2,m2,k,3,i) = wa(i,2,1) * di3 + wa(i,2,2) * dr3 ch(1,m2,k,4,i) = wa(i,3,1) * dr4 - wa(i,3,2) * di4 ch(2,m2,k,4,i) = wa(i,3,1) * di4 + wa(i,3,2) * dr4 ch(1,m2,k,5,i) = wa(i,4,1) * dr5 - wa(i,4,2) * di5 ch(2,m2,k,5,i) = wa(i,4,1) * di5 + wa(i,4,2) * dr5 end do end do end do else do k = 1, l1 do m1 = 1, m1d, im1 ti5 = cc(2,m1,k,1,2)-cc(2,m1,k,1,5) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,5) ti4 = cc(2,m1,k,1,3)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,3)+cc(2,m1,k,1,4) tr5 = cc(1,m1,k,1,2)-cc(1,m1,k,1,5) tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,5) tr4 = cc(1,m1,k,1,3)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,3)+cc(1,m1,k,1,4) chold1 = cc(1,m1,k,1,1) + tr2 + tr3 chold2 = cc(2,m1,k,1,1) + ti2 + ti3 cr2 = cc(1,m1,k,1,1) + tr11 * tr2 + tr12 * tr3 ci2 = cc(2,m1,k,1,1) + tr11 * ti2 + tr12 * ti3 cr3 = cc(1,m1,k,1,1) + tr12 * tr2 + tr11 * tr3 ci3 = cc(2,m1,k,1,1) + tr12 * ti2 + tr11 * ti3 cc(1,m1,k,1,1) = chold1 cc(2,m1,k,1,1) = chold2 cr5 = ti11*tr5 + ti12*tr4 ci5 = ti11*ti5 + ti12*ti4 cr4 = ti12*tr5 - ti11*tr4 ci4 = ti12*ti5 - ti11*ti4 cc(1,m1,k,1,2) = cr2-ci5 cc(1,m1,k,1,5) = cr2+ci5 cc(2,m1,k,1,2) = ci2+cr5 cc(2,m1,k,1,3) = ci3+cr4 cc(1,m1,k,1,3) = cr3-ci4 cc(1,m1,k,1,4) = cr3+ci4 cc(2,m1,k,1,4) = ci3-cr4 cc(2,m1,k,1,5) = ci2-cr5 end do end do end if return end subroutine cmf5kf ( lot, ido, l1, na, cc, im1, in1, ch, im2, in2, wa ) !******************************************************************************* ! !! CMF5KF is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer l1 real(prec) cc(2,in1,l1,ido,5) real(prec) ch(2,in2,l1,5,ido) real(prec) chold1 real(prec) chold2 real(prec) ci2 real(prec) ci3 real(prec) ci4 real(prec) ci5 real(prec) cr2 real(prec) cr3 real(prec) cr4 real(prec) cr5 real(prec) di2 real(prec) di3 real(prec) di4 real(prec) di5 real(prec) dr2 real(prec) dr3 real(prec) dr4 real(prec) dr5 integer i integer im1 integer im2 integer k integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) sn real(prec) ti2 real(prec) ti3 real(prec) ti4 real(prec) ti5 real(prec), parameter :: ti11 = -0.9510565162951536E+00_prec real(prec), parameter :: ti12 = -0.5877852522924731E+00_prec real(prec) tr2 real(prec) tr3 real(prec) tr4 real(prec) tr5 real(prec), parameter :: tr11 = 0.3090169943749474E+00_prec real(prec), parameter :: tr12 = -0.8090169943749474E+00_prec real(prec) wa(ido,4,2) m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 if ( 1 < ido ) then do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti5 = cc(2,m1,k,1,2)-cc(2,m1,k,1,5) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,5) ti4 = cc(2,m1,k,1,3)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,3)+cc(2,m1,k,1,4) tr5 = cc(1,m1,k,1,2)-cc(1,m1,k,1,5) tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,5) tr4 = cc(1,m1,k,1,3)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,3)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = cc(1,m1,k,1,1)+tr2+tr3 ch(2,m2,k,1,1) = cc(2,m1,k,1,1)+ti2+ti3 cr2 = cc(1,m1,k,1,1)+tr11*tr2+tr12*tr3 ci2 = cc(2,m1,k,1,1)+tr11*ti2+tr12*ti3 cr3 = cc(1,m1,k,1,1)+tr12*tr2+tr11*tr3 ci3 = cc(2,m1,k,1,1)+tr12*ti2+tr11*ti3 cr5 = ti11*tr5+ti12*tr4 ci5 = ti11*ti5+ti12*ti4 cr4 = ti12*tr5-ti11*tr4 ci4 = ti12*ti5-ti11*ti4 ch(1,m2,k,2,1) = cr2-ci5 ch(1,m2,k,5,1) = cr2+ci5 ch(2,m2,k,2,1) = ci2+cr5 ch(2,m2,k,3,1) = ci3+cr4 ch(1,m2,k,3,1) = cr3-ci4 ch(1,m2,k,4,1) = cr3+ci4 ch(2,m2,k,4,1) = ci3-cr4 ch(2,m2,k,5,1) = ci2-cr5 end do end do do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti5 = cc(2,m1,k,i,2)-cc(2,m1,k,i,5) ti2 = cc(2,m1,k,i,2)+cc(2,m1,k,i,5) ti4 = cc(2,m1,k,i,3)-cc(2,m1,k,i,4) ti3 = cc(2,m1,k,i,3)+cc(2,m1,k,i,4) tr5 = cc(1,m1,k,i,2)-cc(1,m1,k,i,5) tr2 = cc(1,m1,k,i,2)+cc(1,m1,k,i,5) tr4 = cc(1,m1,k,i,3)-cc(1,m1,k,i,4) tr3 = cc(1,m1,k,i,3)+cc(1,m1,k,i,4) ch(1,m2,k,1,i) = cc(1,m1,k,i,1)+tr2+tr3 ch(2,m2,k,1,i) = cc(2,m1,k,i,1)+ti2+ti3 cr2 = cc(1,m1,k,i,1)+tr11*tr2+tr12*tr3 ci2 = cc(2,m1,k,i,1)+tr11*ti2+tr12*ti3 cr3 = cc(1,m1,k,i,1)+tr12*tr2+tr11*tr3 ci3 = cc(2,m1,k,i,1)+tr12*ti2+tr11*ti3 cr5 = ti11*tr5+ti12*tr4 ci5 = ti11*ti5+ti12*ti4 cr4 = ti12*tr5-ti11*tr4 ci4 = ti12*ti5-ti11*ti4 dr3 = cr3-ci4 dr4 = cr3+ci4 di3 = ci3+cr4 di4 = ci3-cr4 dr5 = cr2+ci5 dr2 = cr2-ci5 di5 = ci2-cr5 di2 = ci2+cr5 ch(1,m2,k,2,i) = wa(i,1,1)*dr2+wa(i,1,2)*di2 ch(2,m2,k,2,i) = wa(i,1,1)*di2-wa(i,1,2)*dr2 ch(1,m2,k,3,i) = wa(i,2,1)*dr3+wa(i,2,2)*di3 ch(2,m2,k,3,i) = wa(i,2,1)*di3-wa(i,2,2)*dr3 ch(1,m2,k,4,i) = wa(i,3,1)*dr4+wa(i,3,2)*di4 ch(2,m2,k,4,i) = wa(i,3,1)*di4-wa(i,3,2)*dr4 ch(1,m2,k,5,i) = wa(i,4,1)*dr5+wa(i,4,2)*di5 ch(2,m2,k,5,i) = wa(i,4,1)*di5-wa(i,4,2)*dr5 end do end do end do else if ( na == 1 ) then sn = 1.0E+00_prec / real ( 5 * l1, prec ) do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ti5 = cc(2,m1,k,1,2)-cc(2,m1,k,1,5) ti2 = cc(2,m1,k,1,2)+cc(2,m1,k,1,5) ti4 = cc(2,m1,k,1,3)-cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,3)+cc(2,m1,k,1,4) tr5 = cc(1,m1,k,1,2)-cc(1,m1,k,1,5) tr2 = cc(1,m1,k,1,2)+cc(1,m1,k,1,5) tr4 = cc(1,m1,k,1,3)-cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,3)+cc(1,m1,k,1,4) ch(1,m2,k,1,1) = sn*(cc(1,m1,k,1,1)+tr2+tr3) ch(2,m2,k,1,1) = sn*(cc(2,m1,k,1,1)+ti2+ti3) cr2 = cc(1,m1,k,1,1)+tr11*tr2+tr12*tr3 ci2 = cc(2,m1,k,1,1)+tr11*ti2+tr12*ti3 cr3 = cc(1,m1,k,1,1)+tr12*tr2+tr11*tr3 ci3 = cc(2,m1,k,1,1)+tr12*ti2+tr11*ti3 cr5 = ti11*tr5+ti12*tr4 ci5 = ti11*ti5+ti12*ti4 cr4 = ti12*tr5-ti11*tr4 ci4 = ti12*ti5-ti11*ti4 ch(1,m2,k,2,1) = sn*(cr2-ci5) ch(1,m2,k,5,1) = sn*(cr2+ci5) ch(2,m2,k,2,1) = sn*(ci2+cr5) ch(2,m2,k,3,1) = sn*(ci3+cr4) ch(1,m2,k,3,1) = sn*(cr3-ci4) ch(1,m2,k,4,1) = sn*(cr3+ci4) ch(2,m2,k,4,1) = sn*(ci3-cr4) ch(2,m2,k,5,1) = sn*(ci2-cr5) end do end do else sn = 1.0E+00_prec / real ( 5 * l1, prec ) do k = 1, l1 do m1 = 1, m1d, im1 ti5 = cc(2,m1,k,1,2) - cc(2,m1,k,1,5) ti2 = cc(2,m1,k,1,2) + cc(2,m1,k,1,5) ti4 = cc(2,m1,k,1,3) - cc(2,m1,k,1,4) ti3 = cc(2,m1,k,1,3) + cc(2,m1,k,1,4) tr5 = cc(1,m1,k,1,2) - cc(1,m1,k,1,5) tr2 = cc(1,m1,k,1,2) + cc(1,m1,k,1,5) tr4 = cc(1,m1,k,1,3) - cc(1,m1,k,1,4) tr3 = cc(1,m1,k,1,3) + cc(1,m1,k,1,4) chold1 = sn * ( cc(1,m1,k,1,1) + tr2 + tr3 ) chold2 = sn * ( cc(2,m1,k,1,1) + ti2 + ti3 ) cr2 = cc(1,m1,k,1,1) + tr11 * tr2 + tr12 * tr3 ci2 = cc(2,m1,k,1,1) + tr11 * ti2 + tr12 * ti3 cr3 = cc(1,m1,k,1,1) + tr12 * tr2 + tr11 * tr3 ci3 = cc(2,m1,k,1,1) + tr12 * ti2 + tr11 * ti3 cc(1,m1,k,1,1) = chold1 cc(2,m1,k,1,1) = chold2 cr5 = ti11 * tr5 + ti12 * tr4 ci5 = ti11 * ti5 + ti12 * ti4 cr4 = ti12 * tr5 - ti11 * tr4 ci4 = ti12 * ti5 - ti11 * ti4 cc(1,m1,k,1,2) = sn * ( cr2 - ci5 ) cc(1,m1,k,1,5) = sn * ( cr2 + ci5 ) cc(2,m1,k,1,2) = sn * ( ci2 + cr5 ) cc(2,m1,k,1,3) = sn * ( ci3 + cr4 ) cc(1,m1,k,1,3) = sn * ( cr3 - ci4 ) cc(1,m1,k,1,4) = sn * ( cr3 + ci4 ) cc(2,m1,k,1,4) = sn * ( ci3 - cr4 ) cc(2,m1,k,1,5) = sn * ( ci2 - cr5 ) end do end do end if return end subroutine cmfgkb ( lot, ido, ip, l1, lid, na, cc, cc1, im1, in1, & ch, ch1, im2, in2, wa ) !******************************************************************************* ! !! CMFGKB is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer ip integer l1 integer lid real(prec) cc(2,in1,l1,ip,ido) real(prec) cc1(2,in1,lid,ip) real(prec) ch(2,in2,l1,ido,ip) real(prec) ch1(2,in2,lid,ip) real(prec) chold1 real(prec) chold2 integer i integer idlj integer im1 integer im2 integer ipp2 integer ipph integer j integer jc integer k integer ki integer l integer lc integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) wa(ido,ip-1,2) real(prec) wai real(prec) war m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 ipp2 = ip + 2 ipph = ( ip + 1 ) / 2 do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,1) = cc1(1,m1,ki,1) ch1(2,m2,ki,1) = cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,j) = cc1(1,m1,ki,j) + cc1(1,m1,ki,jc) ch1(1,m2,ki,jc) = cc1(1,m1,ki,j) - cc1(1,m1,ki,jc) ch1(2,m2,ki,j) = cc1(2,m1,ki,j) + cc1(2,m1,ki,jc) ch1(2,m2,ki,jc) = cc1(2,m1,ki,j) - cc1(2,m1,ki,jc) end do end do end do do j = 2, ipph do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,1) = cc1(1,m1,ki,1) + ch1(1,m2,ki,j) cc1(2,m1,ki,1) = cc1(2,m1,ki,1) + ch1(2,m2,ki,j) end do end do end do do l = 2, ipph lc = ipp2 - l do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,l) = ch1(1,m2,ki,1) + wa(1,l-1,1) * ch1(1,m2,ki,2) cc1(1,m1,ki,lc) = wa(1,l-1,2) * ch1(1,m2,ki,ip) cc1(2,m1,ki,l) = ch1(2,m2,ki,1) + wa(1,l-1,1) * ch1(2,m2,ki,2) cc1(2,m1,ki,lc) = wa(1,l-1,2) * ch1(2,m2,ki,ip) end do end do do j = 3, ipph jc = ipp2 - j idlj = mod ( ( l - 1 ) * ( j - 1 ), ip ) war = wa(1,idlj,1) wai = wa(1,idlj,2) do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,l) = cc1(1,m1,ki,l) + war * ch1(1,m2,ki,j) cc1(1,m1,ki,lc) = cc1(1,m1,ki,lc) + wai * ch1(1,m2,ki,jc) cc1(2,m1,ki,l) = cc1(2,m1,ki,l) + war * ch1(2,m2,ki,j) cc1(2,m1,ki,lc) = cc1(2,m1,ki,lc) + wai * ch1(2,m2,ki,jc) end do end do end do end do if( 1 < ido .or. na == 1 ) then do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,1) = cc1(1,m1,ki,1) ch1(2,m2,ki,1) = cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,j) = cc1(1,m1,ki,j) - cc1(2,m1,ki,jc) ch1(1,m2,ki,jc) = cc1(1,m1,ki,j) + cc1(2,m1,ki,jc) ch1(2,m2,ki,jc) = cc1(2,m1,ki,j) - cc1(1,m1,ki,jc) ch1(2,m2,ki,j) = cc1(2,m1,ki,j) + cc1(1,m1,ki,jc) end do end do end do if ( ido == 1 ) then return end if do i = 1, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,1,i) = ch(1,m2,k,i,1) cc(2,m1,k,1,i) = ch(2,m2,k,i,1) end do end do end do do j = 2, ip do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,j,1) = ch(1,m2,k,1,j) cc(2,m1,k,j,1) = ch(2,m2,k,1,j) end do end do end do do j = 2, ip do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,j,i) = wa(i,j-1,1) * ch(1,m2,k,i,j) & - wa(i,j-1,2) * ch(2,m2,k,i,j) cc(2,m1,k,j,i) = wa(i,j-1,1) * ch(2,m2,k,i,j) & + wa(i,j-1,2) * ch(1,m2,k,i,j) end do end do end do end do else do j = 2, ipph jc = ipp2 - j do ki = 1, lid do m1 = 1, m1d, im1 chold1 = cc1(1,m1,ki,j) - cc1(2,m1,ki,jc) chold2 = cc1(1,m1,ki,j) + cc1(2,m1,ki,jc) cc1(1,m1,ki,j) = chold1 cc1(2,m1,ki,jc) = cc1(2,m1,ki,j) - cc1(1,m1,ki,jc) cc1(2,m1,ki,j) = cc1(2,m1,ki,j) + cc1(1,m1,ki,jc) cc1(1,m1,ki,jc) = chold2 end do end do end do end if return end subroutine cmfgkf ( lot, ido, ip, l1, lid, na, cc, cc1, im1, in1, & ch, ch1, im2, in2, wa ) !******************************************************************************* ! !! CMFGKF is an FFTPACK5 auxiliary routine. ! ! License: ! ! Licensed under the GNU General Public License (GPL). ! Copyright (C) 1995-2004, Scientific Computing Division, ! University Corporation for Atmospheric Research ! ! Author: ! ! Paul Swarztrauber ! Richard Valent ! ! Reference: ! ! Paul Swarztrauber, ! Vectorizing the Fast Fourier Transforms, ! in Parallel Computations, ! edited by G. Rodrigue, ! Academic Press, 1982. ! ! Paul Swarztrauber, ! Fast Fourier Transform Algorithms for Vector Computers, ! Parallel Computing, pages 45-63, 1984. ! ! Parameters: ! use fftpack5 implicit none integer ido integer in1 integer in2 integer ip integer l1 integer lid real(prec) cc(2,in1,l1,ip,ido) real(prec) cc1(2,in1,lid,ip) real(prec) ch(2,in2,l1,ido,ip) real(prec) ch1(2,in2,lid,ip) real(prec) chold1 real(prec) chold2 integer i integer idlj integer im1 integer im2 integer ipp2 integer ipph integer j integer jc integer k integer ki integer l integer lc integer lot integer m1 integer m1d integer m2 integer m2s integer na real(prec) sn real(prec) wa(ido,ip-1,2) real(prec) wai real(prec) war m1d = ( lot - 1 ) * im1 + 1 m2s = 1 - im2 ipp2 = ip + 2 ipph = ( ip + 1 ) / 2 do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,1) = cc1(1,m1,ki,1) ch1(2,m2,ki,1) = cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,j) = cc1(1,m1,ki,j) + cc1(1,m1,ki,jc) ch1(1,m2,ki,jc) = cc1(1,m1,ki,j) - cc1(1,m1,ki,jc) ch1(2,m2,ki,j) = cc1(2,m1,ki,j) + cc1(2,m1,ki,jc) ch1(2,m2,ki,jc) = cc1(2,m1,ki,j) - cc1(2,m1,ki,jc) end do end do end do do j = 2, ipph do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,1) = cc1(1,m1,ki,1) + ch1(1,m2,ki,j) cc1(2,m1,ki,1) = cc1(2,m1,ki,1) + ch1(2,m2,ki,j) end do end do end do do l = 2, ipph lc = ipp2 - l do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,l) = ch1(1,m2,ki,1) + wa(1,l-1,1) * ch1(1,m2,ki,2) cc1(1,m1,ki,lc) = - wa(1,l-1,2) * ch1(1,m2,ki,ip) cc1(2,m1,ki,l) = ch1(2,m2,ki,1) + wa(1,l-1,1) * ch1(2,m2,ki,2) cc1(2,m1,ki,lc) = - wa(1,l-1,2) * ch1(2,m2,ki,ip) end do end do do j = 3, ipph jc = ipp2 - j idlj = mod ( ( l - 1 ) * ( j - 1 ), ip ) war = wa(1,idlj,1) wai = -wa(1,idlj,2) do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,l) = cc1(1,m1,ki,l) + war * ch1(1,m2,ki,j) cc1(1,m1,ki,lc) = cc1(1,m1,ki,lc) + wai * ch1(1,m2,ki,jc) cc1(2,m1,ki,l) = cc1(2,m1,ki,l) + war * ch1(2,m2,ki,j) cc1(2,m1,ki,lc) = cc1(2,m1,ki,lc) + wai * ch1(2,m2,ki,jc) end do end do end do end do if ( 1 < ido ) then do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,1) = cc1(1,m1,ki,1) ch1(2,m2,ki,1) = cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,j) = cc1(1,m1,ki,j) - cc1(2,m1,ki,jc) ch1(2,m2,ki,j) = cc1(2,m1,ki,j) + cc1(1,m1,ki,jc) ch1(1,m2,ki,jc) = cc1(1,m1,ki,j) + cc1(2,m1,ki,jc) ch1(2,m2,ki,jc) = cc1(2,m1,ki,j) - cc1(1,m1,ki,jc) end do end do end do do i = 1, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,1,i) = ch(1,m2,k,i,1) cc(2,m1,k,1,i) = ch(2,m2,k,i,1) end do end do end do do j = 2, ip do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,j,1) = ch(1,m2,k,1,j) cc(2,m1,k,j,1) = ch(2,m2,k,1,j) end do end do end do do j = 2, ip do i = 2, ido do k = 1, l1 m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc(1,m1,k,j,i) = wa(i,j-1,1) * ch(1,m2,k,i,j) & + wa(i,j-1,2) * ch(2,m2,k,i,j) cc(2,m1,k,j,i) = wa(i,j-1,1) * ch(2,m2,k,i,j) & - wa(i,j-1,2) * ch(1,m2,k,i,j) end do end do end do end do else if ( na == 1 ) then sn = 1.0E+00_prec / real ( ip * l1, prec ) do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,1) = sn * cc1(1,m1,ki,1) ch1(2,m2,ki,1) = sn * cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 ch1(1,m2,ki,j) = sn * ( cc1(1,m1,ki,j) - cc1(2,m1,ki,jc) ) ch1(2,m2,ki,j) = sn * ( cc1(2,m1,ki,j) + cc1(1,m1,ki,jc) ) ch1(1,m2,ki,jc) = sn * ( cc1(1,m1,ki,j) + cc1(2,m1,ki,jc) ) ch1(2,m2,ki,jc) = sn * ( cc1(2,m1,ki,j) - cc1(1,m1,ki,jc) ) end do end do end do else sn = 1.0E+00_prec / real ( ip * l1, prec ) do ki = 1, lid m2 = m2s do m1 = 1, m1d, im1 m2 = m2 + im2 cc1(1,m1,ki,1) = sn * cc1(1,m1,ki,1) cc1(2,m1,ki,1) = sn * cc1(2,m1,ki,1) end do end do do j = 2, ipph jc = ipp2 - j do ki = 1, lid do m1 = 1, m1d, im1 chold1 = sn * ( cc1(1,m1,ki,j) - cc1(2,m1,ki,jc) ) chold2 = sn * ( cc1(1,m1,ki,j) + cc1(2,m1,ki,jc) ) cc1(1,m1,ki,j) = chold1 cc1(2,m1,ki,jc) = sn * ( cc1(2,m1,ki,j) - cc1(1,m1,ki,jc) ) cc1(2,m1,ki,j) = sn * ( cc1(2,m1,ki,j) + cc1(1,m1,ki,jc) ) cc1(1,m1,ki,jc) = chold2 end do end do end do end if return end elk-7.2.42/src/PaxHeaders.21776/eos0000644000000000000000000000013214061636515013433 xustar0030 mtime=1623670093.500103805 30 atime=1623670093.481103823 30 ctime=1623670093.500103805 elk-7.2.42/src/eos/0000755002504400250440000000000014061636515015545 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/eos/PaxHeaders.21776/Makefile0000644000000000000000000000013214061636515015150 xustar0030 mtime=1623670093.483103821 30 atime=1623670093.482103822 30 ctime=1623670093.483103821 elk-7.2.42/src/eos/Makefile0000644002504400250440000000134614061636515017211 0ustar00dewhurstdewhurst00000000000000 include ../../make.inc #------------------------------------------------------------------------------- # Suffix rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f90 .f90.o: $(F90) $(F90_OPTS) -c $< #------------------------------------------------------------------------------- # Source files #------------------------------------------------------------------------------- SRC = modmain.f90 eos.f90 eveos.f90 pveos.f90 readinput.f90 getedata.f90 \ fitdata.f90 output.f90 minf_nm.f90 fmin_nm.f90 OBJ = $(SRC:.f90=.o) EXE = eos eos: $(OBJ) $(F90) $(F90_OPTS) -o $(EXE) $(OBJ) clean: rm -f *.o *.mod *~ fort.* ifc* *.gcno *.OUT gmon.out $(EXE) spaces: ../rmspaces $(SRC) elk-7.2.42/src/eos/PaxHeaders.21776/README0000644000000000000000000000012714061636515014374 xustar0029 mtime=1623670093.48410382 29 atime=1623670093.48410382 29 ctime=1623670093.48410382 elk-7.2.42/src/eos/README0000644002504400250440000000254414061636515016432 0ustar00dewhurstdewhurst00000000000000 +---------------------------+ | EOS Version 1.4.0 | +---------------------------+ Equation of state (EOS) program for fitting energy-volume data. The following variables are set in the file eos.in: cname : name of crystal up to 256 characters natoms : number of atoms in unit cell etype : equation of state type (see below) vplt1, vplt2, nvplt : volume interval over which to plot energy, pressure etc. as well as the number of points in the plot nevpt : number of energy-volume points to be inputted vpt(i) ept(i) : energy-volume points (atomic units) Note that the input units are atomic - Bohr and Hartree (NOT Rydbergs). The equations of state currently implemented are: 1. Universal EOS (Vinet P et al., J. Phys.: Condens. Matter 1, p1941 (1989)) 2. Murnaghan EOS (Murnaghan F D, Am. J. Math. 49, p235 (1937)) 3. Birch-Murnaghan 3rd-order EOS (Birch F, Phys. Rev. 71, p809 (1947)) 4. Birch-Murnaghan 4th-order EOS 5. Natural strain 3rd-order EOS (Poirier J-P and Tarantola A, Phys. Earth Planet Int. 109, p1 (1998)) 6. Natural strain 4th-order EOS 7. Cubic polynomial in (V-V0) -------------------------------------------------------------------------------- J. K. Dewhurst August 2005 elk-7.2.42/src/eos/PaxHeaders.21776/eos.f900000644000000000000000000000013214061636515014616 xustar0030 mtime=1623670093.486103818 30 atime=1623670093.486103818 30 ctime=1623670093.486103818 elk-7.2.42/src/eos/eos.f900000644002504400250440000000051714061636515016656 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. program eos use modmain implicit none call readinput call getedata(etype,nparam,ename,pname) call fitdata call output stop end program elk-7.2.42/src/eos/PaxHeaders.21776/eos.in0000644000000000000000000000013214061636515014626 xustar0030 mtime=1623670093.487103817 30 atime=1623670093.487103817 30 ctime=1623670093.487103817 elk-7.2.42/src/eos/eos.in0000644002504400250440000000063514061636515016667 0ustar00dewhurstdewhurst00000000000000 "Silicon" : cname 2 : natoms 1 : etype 140.0 450.0 1000 : vplt1, vplt2, nvplt 8 : nevpt 165.8207473 -578.0660968 196.8383062 -578.1728409 231.5010189 -578.2305598 270.0113940 -578.2548962 312.5719400 -578.2566194 359.3851654 -578.2453281 410.6535788 -578.2253154 466.5796888 -578.2028836 elk-7.2.42/src/eos/PaxHeaders.21776/eveos.f900000644000000000000000000000013214061636515015151 xustar0030 mtime=1623670093.489103815 30 atime=1623670093.489103815 30 ctime=1623670093.489103815 elk-7.2.42/src/eos/eveos.f900000644002504400250440000000455614061636515017220 0ustar00dewhurstdewhurst00000000000000real(8) function eveos(etype,param,v) implicit none ! arguments integer, intent(in) :: etype real(8), intent(in) :: param(*) real(8), intent(in) :: v ! local variables real(8) v0,e0,b0,b0p,b0pp real(8) t1,t2,t3,t4,t5,t6,t7 eveos=0.d0 select case(etype) case(1) ! Universal equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) if (v0.lt.1.d-5) v0=1.d-5 if (abs(b0p-1.d0).lt.1.d-5) b0p=b0p+1.d-5 t1=b0*v0 t2=b0p-1.d0 t3=(v/v0)**(1.d0/3.d0) t4=exp(-3.d0/2.d0*t2*(-1.d0+t3)) t5=t2**2 t6=1.d0/t5 eveos=-2.d0*t1*t4*(3.d0*t3*b0p-3.d0*t3+5.d0-3.d0*b0p)*t6+4.d0*t1*t6+e0 case(2) ! Murnaghan equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) if (v0.lt.1.d-5) v0=1.d-5 if (abs(b0p).lt.1.d-5) b0p=1.d-5 if (abs(b0p-1.d0).lt.1.d-5) b0p=b0p+1.d-5 t1=(v0/v)**b0p t2=1.d0/(b0p-1.d0) eveos=b0*(b0p-1.d0+t1)/b0p*t2*v-b0*v0*t2+e0 case(3) ! Birch-Murnaghan third-order equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) if (v0.lt.1.d-5) v0=1.d-5 t1=(v0/v)**(1.d0/3.d0) t2=t1**2 t3=t2-1.d0 eveos=9.d0/8.d0*b0*v0*t3**2*(b0p*t3/2.d0-2.d0*t2+3.d0)+e0 case(4) ! Birch-Murnaghan fourth-order equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) b0pp=param(5) if (v0.lt.1.d-5) v0=1.d-5 t1=(v0/v)**(1.d0/3.d0) t2=t1**2 t3=t2-1.d0 t4=t3**2/4.d0 t5=b0p**2 eveos=3.d0/8.d0*b0*v0*t4*(9.d0*t4*b0*b0pp+9.d0*t4*t5-63.d0*t4*b0p+143.d0*t4 & +6.d0*b0p*t3-24.d0*t2+36.d0)+e0 case(5) ! Natural strain third-order equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) if (v0.lt.1.d-5) v0=1.d-5 t1=b0*v0 t2=log(v0/v) t3=t2**2 t4=t3*t2 eveos=t1*t3/2.d0+t1*t4*b0p/6.d0-t1*t4/3.d0+e0 case(6) ! Natural strain fourth-order equation of state v0=param(1) e0=param(2) b0=param(3) b0p=param(4) b0pp=param(5) if (v0.lt.1.d-5) v0=1.d-5 t1=b0*v0 t2=log(v0/v) t3=t2**2 t4=t3**2 t5=b0**2 t6=b0p**2 t7=t3*t2 eveos=t1*t4/8.d0+t5*v0*t4*b0pp/24.d0-t1*t4*b0p/8.d0+t1*t4*t6/24.d0 & +t1*t7*b0p/6.d0-t1*t7/3.d0+t1*t3/2.d0+e0 case(7) ! cubic polynomial v0=param(1) e0=param(2) b0=param(3) b0p=param(4) if (v0.lt.1.d-5) v0=1.d-5 t1=v0**2 t2=v0-v t3=t2**2 eveos=(1.d0+b0p)*b0/t1*t3*t2/6.d0+b0/v0*t3/2.d0+e0 case default write(*,*) write(*,'("Error(eveos): etype not defined : ",I4)') etype write(*,*) stop end select return end function elk-7.2.42/src/eos/PaxHeaders.21776/fitdata.f900000644000000000000000000000013214061636515015444 xustar0030 mtime=1623670093.490103815 30 atime=1623670093.490103815 30 ctime=1623670093.490103815 elk-7.2.42/src/eos/fitdata.f900000644002504400250440000000173214061636515017504 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine fitdata use modmain implicit none ! local variables integer, parameter :: maxit=1000000 integer i,iter real(8), parameter :: eps=1.d-14 ! automatic arrays real(8) x(nparam,nparam+1) ! initial guess: it is assumed that param(1)=V0, param(2)=E0 and param(3)=B0 x(:,1)=0.d0 x(1,1)=vpt(1) x(2,1)=ept(1) x(3,1)=0.003d0 ! fit V0 and E0 do i=1,nparam x(:,i+1)=x(:,1) end do x(1,2)=x(1,2)+1.d0 x(2,3)=x(2,3)+0.1d0 call minf_nm(nparam,x,maxit,iter,eps) ! fit V0, E0 and B0 do i=1,nparam x(:,i+1)=x(:,1) end do x(1,2)=x(1,2)+1.d0 x(2,3)=x(2,3)+0.1d0 x(3,4)=x(3,4)+0.001d0 call minf_nm(nparam,x,maxit,iter,eps) ! fit everything do i=1,nparam x(:,i+1)=x(:,1) x(i,i+1)=x(i,i+1)+0.1d0 end do call minf_nm(nparam,x,maxit,iter,eps) popt(1:nparam)=x(1:nparam,1) return end subroutine elk-7.2.42/src/eos/PaxHeaders.21776/fmin_nm.f900000644000000000000000000000013214061636515015453 xustar0030 mtime=1623670093.492103813 30 atime=1623670093.492103813 30 ctime=1623670093.492103813 elk-7.2.42/src/eos/fmin_nm.f900000644002504400250440000000074614061636515017517 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function fmin_nm(x) use modmain implicit none ! arguments real(8), intent(in) :: x ! local variables integer i real(8) sum ! external functions real(8) eveos external eveos sum=0.d0 do i=1,nevpt sum=sum+(eveos(etype,x,vpt(i))-ept(i))**2 end do fmin_nm=sum return end function elk-7.2.42/src/eos/PaxHeaders.21776/getedata.f900000644000000000000000000000013214061636515015606 xustar0030 mtime=1623670093.493103812 30 atime=1623670093.493103812 30 ctime=1623670093.493103812 elk-7.2.42/src/eos/getedata.f900000644002504400250440000000325114061636515017644 0ustar00dewhurstdewhurst00000000000000subroutine getedata(etype,nparam,ename,pname) ! get eos name and number of parameters implicit none ! arguments integer, intent(in) :: etype integer, intent(out) :: nparam character(256), intent(out) :: ename(2) character(256), intent(out) :: pname(*) select case(etype) case(1) ename(1)="Universal EOS" ename(2)="Vinet P et al., J. Phys.: Condens. Matter 1, p1941 (1989)" nparam=4 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" case(2) ename(1)="Murnaghan EOS" ename(2)="Murnaghan F D, Am. J. Math. 49, p235 (1937)" nparam=4 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" case(3) ename(1)="Birch-Murnaghan 3rd-order EOS" ename(2)="Birch F, Phys. Rev. 71, p809 (1947)" nparam=4 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" case(4) ename(1)="Birch-Murnaghan 4th-order EOS" ename(2)="Birch F, Phys. Rev. 71, p809 (1947)" nparam=5 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" pname(5)="B0''" case(5) ename(1)="Natural strain 3rd-order EOS" ename(2)="Poirier J-P and Tarantola A, Phys. Earth Planet Int. 109, p1 (1998)" nparam=4 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" case(6) ename(1)="Natural strain 4th-order EOS" ename(2)="Poirier J-P and Tarantola A, Phys. Earth Planet Int. 109, p1 (1998)" nparam=5 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" pname(5)="B0''" case(7) ename(1)="Cubic polynomial in (V-V0)" ename(2)="" nparam=4 pname(1)="V0" pname(2)="E0" pname(3)="B0" pname(4)="B0'" case default write(*,*) write(*,'("Error(getedata): etype not defined : ",I4)') etype write(*,*) stop end select return end subroutine elk-7.2.42/src/eos/PaxHeaders.21776/minf_nm.f900000644000000000000000000000012714061636515015457 xustar0029 mtime=1623670093.49510381 29 atime=1623670093.49510381 29 ctime=1623670093.49510381 elk-7.2.42/src/eos/minf_nm.f900000644002504400250440000000371214061636515017513 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst and D. W. H. Rankin. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine minf_nm(n,x,maxit,iter,eps) implicit none ! arguments integer, intent(in) :: n real(8), intent(inout) :: x(n,n+1) integer, intent(in) :: maxit integer, intent(out) :: iter real(8), intent(in) :: eps ! local variables integer i,j,il,iu ! Nelder-Mead parmeters real(8), parameter :: alpha=1.d0,gamma=2.d0 real(8), parameter :: beta=0.5d0,sigma=0.5d0 real(8) fr,fe,fc,sum,t1 ! automatic arrays real(8) f(n+1),xm(n),xr(n),xe(n),xc(n) ! external functions real(8) fmin_nm external fmin_nm if (n.lt.0) then write(*,*) write(*,'("Error(minf_nm): n <= 0 : ",I8)') n write(*,*) stop end if ! evaluate the function at each vertex do i=1,n+1 f(i)=fmin_nm(x(:,i)) end do iter=0 10 continue iter=iter+1 if (iter.ge.maxit) return ! find the lowest and highest vertex il=1 iu=1 do i=2,n+1 if (f(i).lt.f(il)) il=i if (f(i).gt.f(iu)) iu=i end do ! check for convergence if ((f(iu)-f(il)).lt.eps) return ! compute the mean of the n lowest vertices t1=1.d0/dble(n) do i=1,n sum=0.d0 do j=1,iu-1 sum=sum+x(i,j) end do do j=iu+1,n+1 sum=sum+x(i,j) end do xm(i)=t1*sum end do xr(:)=xm(:)+alpha*(xm(:)-x(:,iu)) fr=fmin_nm(xr) if (f(il).gt.fr) goto 30 if ((f(il).le.fr).and.(fr.lt.f(iu))) then ! reflection x(:,iu)=xr(:) f(iu)=fr goto 10 else goto 40 end if 30 continue xe(:)=xm(:)+gamma*(xr(:)-xm(:)) fe=fmin_nm(xe) if (fr.gt.fe) then ! expansion x(:,iu)=xe(:) f(iu)=fe else ! reflection x(:,iu)=xr(:) f(iu)=fr end if goto 10 40 continue xc(:)=xm(:)+beta*(x(:,iu)-xm(:)) fc=fmin_nm(xc) if (fc.lt.f(iu)) then ! contraction x(:,iu)=xc(:) f(iu)=fc goto 10 end if ! shrinkage do j=1,il-1 x(:,j)=x(:,il)+sigma*(x(:,j)-x(:,il)) f(j)=fmin_nm(x(1,j)) end do do j=il+1,n+1 x(:,j)=x(:,il)+sigma*(x(:,j)-x(:,il)) f(j)=fmin_nm(x(1,j)) end do goto 10 return end subroutine elk-7.2.42/src/eos/PaxHeaders.21776/modmain.f900000644000000000000000000000013214061636515015454 xustar0030 mtime=1623670093.496103809 30 atime=1623670093.496103809 30 ctime=1623670093.496103809 elk-7.2.42/src/eos/modmain.f900000644002504400250440000000276214061636515017520 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modmain ! crystal name character(256) cname ! number of atoms integer natoms ! EOS type integer etype ! number of volume points to plot integer nvplt ! volume plot range real(8) vplt1,vplt2 ! number of energy data points to fit integer nevpt ! volume and energy data point sets real(8), allocatable :: vpt(:) real(8), allocatable :: ept(:) ! maximum number of parameters for an EOS integer, parameter :: maxparam=100 ! number of parameters integer nparam ! EOS name character(256) ename(2) ! optimized parameter set real(8) popt(maxparam) ! parameter names character(256) pname(maxparam) !-----------------------------! ! numerical constants ! !-----------------------------! real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: twopi=6.2831853071795864769d0 ! CODATA 2006 constants ! Bohr in SI units real(8), parameter :: bohr_si=0.52917720859d-10 ! electron mass in SI units real(8), parameter :: emass_si=9.10938215d-31 ! atomic unit of time in SI units real(8), parameter :: autime_si=2.418884326505d-17 ! atomic pressure unit in GPa real(8), parameter :: aupress_gpa=1.d-9*emass_si/(bohr_si*autime_si**2) !---------------------------------! ! miscellaneous variables ! !---------------------------------! ! code version integer version(3) data version /1,4,0/ end module elk-7.2.42/src/eos/PaxHeaders.21776/output.f900000644000000000000000000000013214061636515015370 xustar0030 mtime=1623670093.498103807 30 atime=1623670093.498103807 30 ctime=1623670093.498103807 elk-7.2.42/src/eos/output.f900000644002504400250440000000505614061636515017433 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine output use modmain implicit none ! local variables integer ip,ipt,iplt real(8) v ! external functions real(8) eveos,pveos external eveos,pveos ! output parameters open(60,file='PARAM.OUT') write(60,*) write(60,'(A)') trim(cname) write(60,*) write(60,'(A)') trim(ename(1)) write(60,'(A)') trim(ename(2)) write(60,*) write(60,'("(Default units are atomic: Hartree, Bohr etc.) ")') write(60,*) do ip=1,nparam write(60,'(" ",A,T20,"=",T30,G18.10)') trim(pname(ip)),popt(ip) end do write(60,*) do ip=1,nparam if (trim(pname(ip)).eq."B0") then write(60,'(" B0 (GPa)",T20,"=",T30,G18.10)') popt(ip)*aupress_gpa end if if (trim(pname(ip)).eq."B0''") then write(60,'(A4," (/GPa)",T20,"=",T30,G18.10)') "B0''",popt(ip)/aupress_gpa end if end do write(60,*) close(60) ! output energy vs volume per atom at data points open(60,file='EVPAP.OUT') do ipt=1,nevpt write(60,*) vpt(ipt)/dble(natoms),ept(ipt)/dble(natoms) end do close(60) ! output energy vs volume per atom over volume interval open(60,file='EVPAI.OUT') do iplt=1,nvplt v=(vplt2-vplt1)*dble(iplt)/dble(nvplt)+vplt1 write(60,*) v/dble(natoms),eveos(etype,popt,v)/dble(natoms) end do close(60) ! output pressure vs volume per atom at data points open(60,file='PVPAP.OUT') do ipt=1,nevpt write(60,*) vpt(ipt)/dble(natoms),pveos(etype,popt,vpt(ipt))*aupress_gpa end do close(60) ! output pressure vs volume per atom over volume interval open(60,file='PVPAI.OUT') do iplt=1,nvplt v=(vplt2-vplt1)*dble(iplt)/dble(nvplt)+vplt1 write(60,*) v/dble(natoms),pveos(etype,popt,v)*aupress_gpa end do close(60) ! output enthalpy vs pressure per atom over volume interval open(60,file='HPPAI.OUT') do iplt=1,nvplt v=(vplt2-vplt1)*dble(iplt)/dble(nvplt)+vplt1 write(60,*) pveos(etype,popt,v)*aupress_gpa, & (eveos(etype,popt,v)+pveos(etype,popt,v)*v)/dble(natoms) end do close(60) write(*,*) write(*,'("All units are atomic unless otherwise stated")') write(*,'("EOS parameters written to PARAM.OUT")') write(*,'("Energy-volume per atom at data points written to EVPAP.OUT")') write(*,'("Energy-volume per atom over interval written to EVPAI.OUT")') write(*,'("Pressure(GPa)-volume per atom at data points written to PVPAP.OUT")') write(*,'("Pressure(GPa)-volume per atom over interval written to PVPAI.OUT")') write(*,'("Enthalpy-pressure(GPa) per atom over interval written to HPPAI.OUT")') write(*,*) return end subroutine elk-7.2.42/src/eos/PaxHeaders.21776/pveos.f900000644000000000000000000000013214061636515015164 xustar0030 mtime=1623670093.499103806 30 atime=1623670093.499103806 30 ctime=1623670093.499103806 elk-7.2.42/src/eos/pveos.f900000644002504400250440000000066114061636515017224 0ustar00dewhurstdewhurst00000000000000real(8) function pveos(etype,param,v) ! pressure-volume equation of state function implicit none ! arguments integer, intent(in) :: etype real(8), intent(in) :: param(*) real(8), intent(in) :: v ! local variables real(8) vm,vp,pm,pp,dv ! external functions real(8) eveos external eveos ! use central differences dv=1.d-3 vm=v-dv vp=v+dv pm=eveos(etype,param,vm) pp=eveos(etype,param,vp) pveos=-(pp-pm)/(2.d0*dv) return end function elk-7.2.42/src/eos/PaxHeaders.21776/readinput.f900000644000000000000000000000013214061636515016023 xustar0030 mtime=1623670093.501103804 30 atime=1623670093.501103804 30 ctime=1623670093.501103804 elk-7.2.42/src/eos/readinput.f900000644002504400250440000000144014061636515020057 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readinput use modmain implicit none ! local variables integer ipt open(50,file='eos.in',action='READ',status='OLD',form='FORMATTED') read(50,*) cname read(50,*) natoms if (natoms.le.0) then write(*,*) write(*,'("Error(readinput): natoms <= 0 : ",I8)') natoms write(*,*) stop end if read(50,*) etype read(50,*) vplt1,vplt2,nvplt read(50,*) nevpt if (nevpt.le.0) then write(*,*) write(*,'("Error(readinput): nevpt <= 0 : ",I8)') nevpt write(*,*) stop end if allocate(vpt(nevpt),ept(nevpt)) do ipt=1,nevpt read(50,*) vpt(ipt),ept(ipt) end do close(50) return end subroutine elk-7.2.42/src/PaxHeaders.21776/spacegroup0000644000000000000000000000013014061636515015013 xustar0029 mtime=1623670093.53810377 30 atime=1623670093.508103798 29 ctime=1623670093.53810377 elk-7.2.42/src/spacegroup/0000755002504400250440000000000014061636515017127 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/src/spacegroup/PaxHeaders.21776/spacegroup.in0000644000000000000000000000013214061636515017572 xustar0030 mtime=1623670093.510103796 30 atime=1623670093.509103797 30 ctime=1623670093.510103796 elk-7.2.42/src/spacegroup/spacegroup.in0000644002504400250440000000101714061636515021626 0ustar00dewhurstdewhurst00000000000000 'Bmab' : hrmg 10.0605232 10.0605232 24.972729 : a, b, c 90.0 90.0 90.0 : bc, ac, ab 1 1 1 : ncell .true. : primcell 3 : nspecies 'La' : spsymb 1 : nwpos 0.0000 0.0000 0.3608 : wpos 'Cu' 1 0.0000 0.0000 0.0000 'O' 2 0.2500 0.2500 0.0000 0.0000 0.0000 0.1820 elk-7.2.42/src/spacegroup/PaxHeaders.21776/Makefile0000644000000000000000000000013214061636515016532 xustar0030 mtime=1623670093.511103795 30 atime=1623670093.511103795 30 ctime=1623670093.511103795 elk-7.2.42/src/spacegroup/Makefile0000644002504400250440000000216714061636515020575 0ustar00dewhurstdewhurst00000000000000 include ../../make.inc #------------------------------------------------------------------------------- # Suffix rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f90 .f90.o: $(F90) $(F90_OPTS) -c $< #------------------------------------------------------------------------------- # Source files #------------------------------------------------------------------------------- SRC_modules = modmain.f90 SRC_main = main.f90 SRC_routines = readinput.f90 gencrystal.f90 sgsymb.f90 seitzgen.f90 \ gengroup.f90 seitzeq.f90 seitzmul.f90 writegeom.f90 geomplot.f90 \ findprimcell.f90 r3frac.f90 r3mv.f90 r3cross.f90 r3minv.f90 r3mm.f90 SRC = $(SRC_modules) $(SRC_main) $(SRC_routines) OBJ = $(SRC:.f90=.o) EXE = spacegroup spacegroup: $(OBJ) $(F90) $(F90_OPTS) -o $(EXE) $(OBJ) clean: rm -f *.o *.mod *~ fort.* ifc* *.gcno *.OUT *.xsf *.ascii gmon.out \ *.aux *.dvi *.log *.pdf *.tex *.toc *.out $(EXE) doc: ../protex -s $(SRC_main) $(SRC_modules) $(SRC_routines) > spacegroup.tex pdflatex spacegroup;pdflatex spacegroup;pdflatex spacegroup spaces: ../rmspaces $(SRC) elk-7.2.42/src/spacegroup/PaxHeaders.21776/findprimcell.f900000644000000000000000000000013214061636515020062 xustar0030 mtime=1623670093.513103793 30 atime=1623670093.512103794 30 ctime=1623670093.513103793 elk-7.2.42/src/spacegroup/findprimcell.f900000644002504400250440000000735614061636515022132 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: findprimcell ! !INTERFACE: subroutine findprimcell ! !USES: use modmain ! !DESCRIPTION: ! This routine finds the smallest primitive cell which produces the same ! crystal structure as the conventional cell. This is done by searching ! through all the vectors which connect atomic positions and finding those ! which leave the crystal structure invariant. Of these, the three shortest ! which produce a non-zero unit cell volume are chosen. ! ! !REVISION HISTORY: ! Created April 2007 (JKD) !EOP !BOC implicit none ! local variables integer is,js,ia,ja,ka,na integer i1,i2,i3,i,j,n real(8) v1(3),v2(3),v3(3) real(8) t1,t2 ! allocatable arrays real(8), allocatable :: dp(:) real(8), allocatable :: vp(:,:) do is=1,nspecies do ia=1,natoms(is) ! make sure all atomic coordinates are in [0,1) call r3frac(epslat,atposl(:,ia,is)) ! determine atomic Cartesian coordinates call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do ! find the smallest set of atoms is=1 do js=1,nspecies ! if a species has only one atom the cell must be primitive if (natoms(js).eq.1) return if (natoms(js).lt.natoms(is)) is=js end do n=27*natoms(is) allocate(dp(n),vp(3,n)) ! generate set of possible lattice vectors n=0 do ia=1,natoms(is) v1(:)=atposl(:,ia,is)-atposl(:,1,is) do i1=-1,1 v2(1)=v1(1)+dble(i1) do i2=-1,1 v2(2)=v1(2)+dble(i2) do i3=-1,1 v2(3)=v1(3)+dble(i3) t1=abs(v2(1))+abs(v2(2))+abs(v2(3)) if (t1.lt.epslat) goto 20 ! check if vector v2 leaves conventional cell invariant do js=1,nspecies do ja=1,natoms(js) v3(:)=atposl(:,ja,js)+v2(:) call r3frac(epslat,v3) do ka=1,natoms(js) ! check both positions and magnetic fields are the same t1=sum(abs(atposl(:,ka,js)-v3(:))) t2=sum(abs(bfcmt0(:,ja,js)-bfcmt0(:,ka,js))) if ((t1.lt.epslat).and.(t2.lt.epslat)) goto 10 end do ! atom ja has no equivalent under translation by v2 goto 20 10 continue end do end do ! cell invariant under translation by v2, so add to list n=n+1 call r3mv(avec,v2,vp(:,n)) dp(n)=sqrt(vp(1,n)**2+vp(2,n)**2+vp(3,n)**2) 20 continue end do end do end do end do if (n.eq.0) then write(*,*) write(*,'("Error(findprimcell): cannot find any lattice vectors")') write(*,*) stop end if ! find the shortest lattice vector j=1 t1=1.d8 do i=1,n if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end do avec(:,1)=vp(:,j) ! find the next shortest lattice vector not parallel to the first j=1 t1=1.d8 do i=1,n call r3cross(avec(:,1),vp(:,i),v1) t2=sqrt(v1(1)**2+v1(2)**2+v1(3)**2) if (t2.gt.epslat) then if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end if end do avec(:,2)=vp(:,j) ! find the next shortest lattice vector which gives non-zero unit cell volume call r3cross(avec(:,1),avec(:,2),v1) j=1 t1=1.d8 do i=1,n t2=dot_product(vp(:,i),v1(:)) if (abs(t2).gt.epslat) then if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end if end do avec(:,3)=vp(:,j) call r3minv(avec,ainv) ! remove redundant atoms do is=1,nspecies na=0 do ia=1,natoms(is) call r3mv(ainv,atposc(:,ia,is),v1) call r3frac(epslat,v1) do ja=1,na t1=sum(abs(atposl(:,ja,is)-v1(:))) if (t1.lt.epslat) goto 30 end do na=na+1 atposl(:,na,is)=v1(:) call r3mv(avec,atposl(:,na,is),atposc(:,na,is)) bfcmt0(:,na,is)=bfcmt0(:,ia,is) 30 continue end do natoms(is)=na end do deallocate(dp,vp) return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/gencrystal.f900000644000000000000000000000013214061636515017565 xustar0030 mtime=1623670093.514103792 30 atime=1623670093.514103792 30 ctime=1623670093.514103792 elk-7.2.42/src/spacegroup/gencrystal.f900000644002504400250440000000577314061636515021636 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gencrystal use modmain implicit none ! local variables integer is,ia,ip,i,j integer i1,i2,i3 integer ngen,ngrp real(8) abr,acr,bcr real(8) sab,cab,cac,cbc real(8) v1(3),v2(3),t1 ! space group generator Seitz matrices real(8) srgen(3,3,12),stgen(3,12) ! space group Seitz matrices real(8) srgrp(3,3,192),stgrp(3,192) ! convert angles from degrees to radians abr=ab*(pi/180.d0) acr=ac*(pi/180.d0) bcr=bc*(pi/180.d0) ! setup lattice vectors sab=sin(abr) if (abs(sab).lt.epslat) then write(*,*) write(*,'("Error(gencrystal): degenerate lattice vectors")') write(*,*) stop end if cab=cos(abr) cac=cos(acr) cbc=cos(bcr) avec(1,1)=a avec(2,1)=0.d0 avec(3,1)=0.d0 avec(1,2)=b*cab avec(2,2)=b*sab avec(3,2)=0.d0 avec(1,3)=c*cac avec(2,3)=c*(cbc-cab*cac)/sab avec(3,3)=c*sqrt(sab**2-cac**2+2.d0*cab*cac*cbc-cbc**2)/sab do i=1,3 do j=1,3 if (abs(avec(i,j)).lt.epslat) avec(i,j)=0.d0 end do end do ! scale lattice vectors by the number of unit cells do i=1,3 avec(:,i)=avec(:,i)*dble(ncell(i)) end do ! determine the Hall symbol from the Hermann-Mauguin symbol call sgsymb(hrmg,num,schn,hall) ! determine the space group generators call seitzgen(hall,ngen,srgen,stgen) ! compute the space group operations call gengroup(ngen,srgen,stgen,ngrp,srgrp,stgrp) ! compute the equivalent atomic positions do is=1,nspecies natoms(is)=0 do ip=1,nwpos(is) do j=1,ngrp ! apply the space group operation call r3mv(srgrp(:,1,j),wpos(:,ip,is),v1) v1(:)=v1(:)+stgrp(:,j) do i1=0,ncell(1)-1 do i2=0,ncell(2)-1 do i3=0,ncell(3)-1 v2(1)=(v1(1)+dble(i1))/dble(ncell(1)) v2(2)=(v1(2)+dble(i2))/dble(ncell(2)) v2(3)=(v1(3)+dble(i3))/dble(ncell(3)) call r3frac(epslat,v2) ! check if new position already exists do ia=1,natoms(is) t1=sum(abs(v2(:)-atposl(:,ia,is))) if (t1.lt.epslat) goto 30 end do ! add new position to list natoms(is)=natoms(is)+1 if (natoms(is).gt.maxatoms) then write(*,*) write(*,'("Error(gencrystal): natoms too large")') write(*,'(" for species ",I4)') is write(*,'("Adjust maxatoms and recompile code")') write(*,*) stop end if atposl(:,natoms(is),is)=v2(:) end do end do end do 30 continue end do end do natmtot=natmtot+natoms(is) end do ! set magnetic fields to zero bfcmt0(:,:,:)=0.d0 ! reduce conventional cell to primitive cell if required if (primcell) call findprimcell ! find the total number of atoms natmtot=0 do is=1,nspecies natmtot=natmtot+natoms(is) end do ! determine the Cartesian atomic coordinates do is=1,nspecies do ia=1,natoms(is) call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/gengroup.f900000644000000000000000000000013014061636515017236 xustar0029 mtime=1623670093.51610379 30 atime=1623670093.515103791 29 ctime=1623670093.51610379 elk-7.2.42/src/spacegroup/gengroup.f900000644002504400250440000000331714061636515021301 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gengroup(ngen,srgen,stgen,ngrp,srgrp,stgrp) implicit none ! arguments integer, intent(in) :: ngen real(8), intent(in) :: srgen(3,3,ngen) real(8), intent(in) :: stgen(3,ngen) integer, intent(out) :: ngrp real(8), intent(out) :: srgrp(3,3,192) real(8), intent(out) :: stgrp(3,192) ! local variables integer i,j,k real(8), parameter :: eps=1.d-6 real(8) sr(3,3),st(3) ! external functions logical seitzeq external seitzeq ! store the identity ngrp=1 srgrp(1,1,1)=1.d0; srgrp(1,2,1)=0.d0; srgrp(1,3,1)=0.d0 srgrp(2,1,1)=0.d0; srgrp(2,2,1)=1.d0; srgrp(2,3,1)=0.d0 srgrp(3,1,1)=0.d0; srgrp(3,2,1)=0.d0; srgrp(3,3,1)=1.d0 stgrp(:,1)=0.d0 10 continue ! right multiply by the generators do i=1,ngen do j=1,ngrp call seitzmul(eps,srgrp(:,:,j),stgrp(:,j),srgen(:,:,i),stgen(:,i),sr,st) ! check if the new element already exists do k=1,ngrp if (seitzeq(eps,srgrp(:,:,k),stgrp(:,k),sr,st)) goto 20 end do goto 40 20 continue end do end do ! left multiply by the generators do i=1,ngen do j=1,ngrp call seitzmul(eps,srgen(:,:,i),stgen(:,i),srgrp(:,:,j),stgrp(:,j),sr,st) ! check if the new element already exists do k=1,ngrp if (seitzeq(eps,srgrp(:,:,k),stgrp(:,k),sr,st)) goto 30 end do goto 40 30 continue end do end do ! all elements accounted for return 40 continue ! add new element ngrp=ngrp+1 if (ngrp.gt.192) then write(*,*) write(*,'("Error(gengroup): more than 192 group elements")') write(*,*) stop end if srgrp(:,:,ngrp)=sr(:,:) stgrp(:,ngrp)=st(:) goto 10 return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/geomplot.f900000644000000000000000000000012714061636515017244 xustar0029 mtime=1623670093.51710379 29 atime=1623670093.51710379 29 ctime=1623670093.51710379 elk-7.2.42/src/spacegroup/geomplot.f900000644002504400250440000000445314061636515021303 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine geomplot use modmain implicit none ! local variables integer is,ia ! Bohr to Angstroms (CODATA 2002) real(8), parameter :: au_to_ang=0.5291772108d0 real(8) v1(3),v2(3),v3(3),v4(3),t1 real(8) dxx,dyx,dyy,dzx,dzy,dzz !------------------------------------------------! ! write the XCrysden file to crystal.xsf ! !------------------------------------------------! open(50,file='crystal.xsf',action='WRITE',form='FORMATTED') write(50,*) write(50,'("CRYSTAL")') write(50,*) write(50,'("PRIMVEC")') write(50,'(3G18.10)') avec(:,1)*au_to_ang write(50,'(3G18.10)') avec(:,2)*au_to_ang write(50,'(3G18.10)') avec(:,3)*au_to_ang write(50,*) write(50,'("PRIMCOORD")') write(50,'(2I8)') natmtot,1 do is=1,nspecies do ia=1,natoms(is) call r3mv(avec,atposl(:,ia,is),v1) write(50,'(A,3G18.10)') trim(spsymb(is)),v1(:)*au_to_ang end do end do close(50) write(*,*) write(*,'("Info(writexsf):")') write(*,'(" XCrysDen file written to crystal.xsf")') !-----------------------------------------------! ! write the V_Sim file to crystal.ascii ! !-----------------------------------------------! ! determine coordinate system vectors t1=sqrt(avec(1,1)**2+avec(2,1)**2+avec(3,1)**2) v1(:)=avec(:,1)/t1 t1=sqrt(avec(1,2)**2+avec(2,2)**2+avec(3,2)**2) v2(:)=avec(:,2)/t1 call r3cross(v1,v2,v3) t1=sqrt(v3(1)**2+v3(2)**2+v3(3)**2) v3(:)=v3(:)/t1 call r3cross(v3,v1,v2) t1=sqrt(v2(1)**2+v2(2)**2+v2(3)**2) v2(:)=v2(:)/t1 dxx=dot_product(avec(:,1),v1(:)) dyx=dot_product(avec(:,2),v1(:)) dyy=dot_product(avec(:,2),v2(:)) dzx=dot_product(avec(:,3),v1(:)) dzy=dot_product(avec(:,3),v2(:)) dzz=dot_product(avec(:,3),v3(:)) open(50,file='crystal.ascii',action='WRITE',form='FORMATTED') write(50,*) write(50,'(3G18.10)') dxx,dyx,dyy write(50,'(3G18.10)') dzx,dzy,dzz write(50,*) do is=1,nspecies do ia=1,natoms(is) v4(1)=dot_product(atposc(:,ia,is),v1(:)) v4(2)=dot_product(atposc(:,ia,is),v2(:)) v4(3)=dot_product(atposc(:,ia,is),v3(:)) write(50,'(3G18.10," ",A)') v4,trim(spsymb(is)) end do end do close(50) write(*,*) write(*,'("Info(writevsim):")') write(*,'(" V_Sim file written to crystal.ascii")') return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/main.f900000644000000000000000000000013214061636515016336 xustar0030 mtime=1623670093.519103788 30 atime=1623670093.518103789 30 ctime=1623670093.519103788 elk-7.2.42/src/spacegroup/main.f900000644002504400250440000013267614061636515020412 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. program main implicit none ! read the input parameters from spacegroup.in call readinput ! generate the lattice and atomic basis call gencrystal ! write the structural data to GEOMETRY.OUT call writegeom ! write the XCrySDen and V_Sim files for plotting call geomplot stop end program !BOI ! !TITLE: {\huge{\sc The Spacegroup Manual}}\\ \Large{\sc Version 1.2.1} ! !AUTHORS: {\sc J. K. Dewhurst, S. Sharma and L. Nordstr\"{o}m} ! !AFFILIATION: ! !INTRODUCTION: Introduction ! Spacegroup is a utility which produces crystal geometry for use with the Elk ! code, from the space group defined by its Hermann-Mauguin symbol and lattice ! vector lengths and angles. Spacegroup recognises all 230 space groups in ! various coordinate settings giving a total of 530 possible symbols, which are ! tabulated below. The code also provides output compatible with the XCrysDen or ! V\_Sim packages for visualisation of the crystal structure. ! \section{Usage} ! Only one input file, {\tt spacegroup.in}, is required. The structure of this ! file is illustrated by the following example for the high $T_c$ superconductor ! La$_2$CuO$_4$: ! \begin{verbatim} ! 'Bmab' : hrmg ! 10.0605232 10.0605232 24.972729 : a, b, c ! 90.0 90.0 90.0 : bc, ac, ab ! 1 1 1 : ncell ! .true. : primcell ! 3 : nspecies ! 'La' : spsymb ! 1 : nwpos ! 0.0000 0.0000 0.3608 : wpos ! 'Cu' ! 1 ! 0.0000 0.0000 0.0000 ! 'O' ! 2 ! 0.2500 0.2500 0.0000 ! 0.0000 0.0000 0.1820 ! \end{verbatim} ! The input parameters are defined as follows: ! \vskip 6pt ! {\tt hrmg}\\ ! The Hermann-Mauguin symbol of a space group listed in the table below. ! (case-sensitive) ! \vskip 6pt ! {\tt a}, {\tt b}, {\tt c}\\ ! Lattice vector lengths in Bohr (i.e. atomic units, {\bf NOT} \AA ngstroms). ! \vskip 6pt ! {\tt bc}, {\tt ac}, {\tt ab}\\ ! Angles in degrees between lattice vectors ${\bf b}$ and ${\bf c}$ ($\alpha$); ! ${\bf a}$ and ${\bf c}$ ($\beta$); and ${\bf a}$ and ${\bf b}$ ($\gamma$). ! \vskip 6pt ! {\tt ncell}\\ ! The number of unit cells required in each direction. ! \vskip 6pt ! {\tt primcell}\\ ! Set to {\tt .true.} if the primitive unit cell should be found. ! \vskip 6pt ! {\tt nspecies}\\ ! Number of atomic species. ! \vskip 6pt ! {\tt spsymb}\\ ! The atomic species symbol. ! \vskip 6pt ! {\tt nwpos}\\ ! The number of Wyckoff positional coordinates. ! \vskip 6pt ! {\tt wpos}\\ ! Wyckoff positional coordinates in fractions of the lattice vectors. ! \vskip 6pt ! Note that {\tt nwpos} and {\tt wpos} are repeated as many times as there are ! species. After creating the input file, the {\tt spacegroup} command is run ! and the files {\tt GEOMETRY.OUT} and {\tt crystal.xsf} should be produced. ! The {\tt GEOMETRY.OUT} file can simply be appended to an {\tt elk.in} file. If ! XCrysDen is available, then use the command ! \vskip 6pt ! \hskip 24pt {\tt xcrysden --xsf crystal.xsf} ! \vskip 6pt ! to render the unit cell. ! \section{Table of space group symbols} ! We acknowledge Ralf W. Grosse-Kunstleve ({\tt http://cci.lbl.gov/sginfo/}) ! for the following table which associates space group numbers, Sch\"{o}nflies ! symbols, Hermann-Mauguin symbols, and Hall symbols. ! \newpage ! \begin{center} ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 1 & C$_{1}^{1}$ & P1 & P 1 \\ ! 2 & C$_{i}^{1}$ & P-1 & -P 1 \\ ! 3:b & C$_{2}^{1}$ & P2:b = P121 & P 2y \\ ! 3:c & C$_{2}^{1}$ & P2:c = P112 & P 2 \\ ! 3:a & C$_{2}^{1}$ & P2:a = P211 & P 2x \\ ! 4:b & C$_{2}^{2}$ & P21:b = P1211 & P 2yb \\ ! 4:c & C$_{2}^{2}$ & P21:c = P1121 & P 2c \\ ! 4:a & C$_{2}^{2}$ & P21:a = P2111 & P 2xa \\ ! 5:b1 & C$_{2}^{3}$ & C2:b1 = C121 & C 2y \\ ! 5:b2 & C$_{2}^{3}$ & C2:b2 = A121 & A 2y \\ ! 5:b3 & C$_{2}^{3}$ & C2:b3 = I121 & I 2y \\ ! 5:c1 & C$_{2}^{3}$ & C2:c1 = A112 & A 2 \\ ! 5:c2 & C$_{2}^{3}$ & C2:c2 = B112 = B2 & B 2 \\ ! 5:c3 & C$_{2}^{3}$ & C2:c3 = I112 & I 2 \\ ! 5:a1 & C$_{2}^{3}$ & C2:a1 = B211 & B 2x \\ ! 5:a2 & C$_{2}^{3}$ & C2:a2 = C211 & C 2x \\ ! 5:a3 & C$_{2}^{3}$ & C2:a3 = I211 & I 2x \\ ! 6:b & C$_{s}^{1}$ & Pm:b = P1m1 & P -2y \\ ! 6:c & C$_{s}^{1}$ & Pm:c = P11m & P -2 \\ ! 6:a & C$_{s}^{1}$ & Pm:a = Pm11 & P -2x \\ ! 7:b1 & C$_{s}^{2}$ & Pc:b1 = P1c1 & P -2yc \\ ! 7:b2 & C$_{s}^{2}$ & Pc:b2 = P1n1 & P -2yac \\ ! 7:b3 & C$_{s}^{2}$ & Pc:b3 = P1a1 & P -2ya \\ ! 7:c1 & C$_{s}^{2}$ & Pc:c1 = P11a & P -2a \\ ! 7:c2 & C$_{s}^{2}$ & Pc:c2 = P11n & P -2ab \\ ! 7:c3 & C$_{s}^{2}$ & Pc:c3 = P11b = Pb & P -2b \\ ! 7:a1 & C$_{s}^{2}$ & Pc:a1 = Pb11 & P -2xb \\ ! 7:a2 & C$_{s}^{2}$ & Pc:a2 = Pn11 & P -2xbc \\ ! 7:a3 & C$_{s}^{2}$ & Pc:a3 = Pc11 & P -2xc \\ ! 8:b1 & C$_{s}^{3}$ & Cm:b1 = C1m1 & C -2y \\ ! 8:b2 & C$_{s}^{3}$ & Cm:b2 = A1m1 & A -2y \\ ! 8:b3 & C$_{s}^{3}$ & Cm:b3 = I1m1 & I -2y \\ ! 8:c1 & C$_{s}^{3}$ & Cm:c1 = A11m & A -2 \\ ! 8:c2 & C$_{s}^{3}$ & Cm:c2 = B11m = Bm & B -2 \\ ! 8:c3 & C$_{s}^{3}$ & Cm:c3 = I11m & I -2 \\ ! 8:a1 & C$_{s}^{3}$ & Cm:a1 = Bm11 & B -2x \\ ! 8:a2 & C$_{s}^{3}$ & Cm:a2 = Cm11 & C -2x \\ ! 8:a3 & C$_{s}^{3}$ & Cm:a3 = Im11 & I -2x \\ ! 9:b1 & C$_{s}^{4}$ & Cc:b1 = C1c1 & C -2yc \\ ! 9:b2 & C$_{s}^{4}$ & Cc:b2 = A1n1 & A -2yac \\ ! 9:b3 & C$_{s}^{4}$ & Cc:b3 = I1a1 & I -2ya \\ ! 9:-b1 & C$_{s}^{4}$ & Cc:-b1 = A1a1 & A -2ya \\ ! 9:-b2 & C$_{s}^{4}$ & Cc:-b2 = C1n1 & C -2ybc \\ ! 9:-b3 & C$_{s}^{4}$ & Cc:-b3 = I1c1 & I -2yc \\ ! 9:c1 & C$_{s}^{4}$ & Cc:c1 = A11a & A -2a \\ ! 9:c2 & C$_{s}^{4}$ & Cc:c2 = B11n & B -2bc \\ ! 9:c3 & C$_{s}^{4}$ & Cc:c3 = I11b & I -2b \\ ! 9:-c1 & C$_{s}^{4}$ & Cc:-c1 = B11b = Bb & B -2b \\ ! 9:-c2 & C$_{s}^{4}$ & Cc:-c2 = A11n & A -2ac \\ ! 9:-c3 & C$_{s}^{4}$ & Cc:-c3 = I11a & I -2a \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 9:a1 & C$_{s}^{4}$ & Cc:a1 = Bb11 & B -2xb \\ ! 9:a2 & C$_{s}^{4}$ & Cc:a2 = Cn11 & C -2xbc \\ ! 9:a3 & C$_{s}^{4}$ & Cc:a3 = Ic11 & I -2xc \\ ! 9:-a1 & C$_{s}^{4}$ & Cc:-a1 = Cc11 & C -2xc \\ ! 9:-a2 & C$_{s}^{4}$ & Cc:-a2 = Bn11 & B -2xbc \\ ! 9:-a3 & C$_{s}^{4}$ & Cc:-a3 = Ib11 & I -2xb \\ ! 10:b & C$_{2h}^{1}$ & P2/m:b = P12/m1 & -P 2y \\ ! 10:c & C$_{2h}^{1}$ & P2/m:c = P112/m & -P 2 \\ ! 10:a & C$_{2h}^{1}$ & P2/m:a = P2/m11 & -P 2x \\ ! 11:b & C$_{2h}^{2}$ & P21/m:b = P121/m1 & -P 2yb \\ ! 11:c & C$_{2h}^{2}$ & P21/m:c = P1121/m & -P 2c \\ ! 11:a & C$_{2h}^{2}$ & P21/m:a = P21/m11 & -P 2xa \\ ! 12:b1 & C$_{2h}^{3}$ & C2/m:b1 = C12/m1 & -C 2y \\ ! 12:b2 & C$_{2h}^{3}$ & C2/m:b2 = A12/m1 & -A 2y \\ ! 12:b3 & C$_{2h}^{3}$ & C2/m:b3 = I12/m1 & -I 2y \\ ! 12:c1 & C$_{2h}^{3}$ & C2/m:c1 = A112/m & -A 2 \\ ! 12:c2 & C$_{2h}^{3}$ & C2/m:c2 = B112/m = B2/m & -B 2 \\ ! 12:c3 & C$_{2h}^{3}$ & C2/m:c3 = I112/m & -I 2 \\ ! 12:a1 & C$_{2h}^{3}$ & C2/m:a1 = B2/m11 & -B 2x \\ ! 12:a2 & C$_{2h}^{3}$ & C2/m:a2 = C2/m11 & -C 2x \\ ! 12:a3 & C$_{2h}^{3}$ & C2/m:a3 = I2/m11 & -I 2x \\ ! 13:b1 & C$_{2h}^{4}$ & P2/c:b1 = P12/c1 & -P 2yc \\ ! 13:b2 & C$_{2h}^{4}$ & P2/c:b2 = P12/n1 & -P 2yac \\ ! 13:b3 & C$_{2h}^{4}$ & P2/c:b3 = P12/a1 & -P 2ya \\ ! 13:c1 & C$_{2h}^{4}$ & P2/c:c1 = P112/a & -P 2a \\ ! 13:c2 & C$_{2h}^{4}$ & P2/c:c2 = P112/n & -P 2ab \\ ! 13:c3 & C$_{2h}^{4}$ & P2/c:c3 = P112/b = P2/b & -P 2b \\ ! 13:a1 & C$_{2h}^{4}$ & P2/c:a1 = P2/b11 & -P 2xb \\ ! 13:a2 & C$_{2h}^{4}$ & P2/c:a2 = P2/n11 & -P 2xbc \\ ! 13:a3 & C$_{2h}^{4}$ & P2/c:a3 = P2/c11 & -P 2xc \\ ! 14:b1 & C$_{2h}^{5}$ & P21/c:b1 = P121/c1 & -P 2ybc \\ ! 14:b2 & C$_{2h}^{5}$ & P21/c:b2 = P121/n1 & -P 2yn \\ ! 14:b3 & C$_{2h}^{5}$ & P21/c:b3 = P121/a1 & -P 2yab \\ ! 14:c1 & C$_{2h}^{5}$ & P21/c:c1 = P1121/a & -P 2ac \\ ! 14:c2 & C$_{2h}^{5}$ & P21/c:c2 = P1121/n & -P 2n \\ ! 14:c3 & C$_{2h}^{5}$ & P21/c:c3 = P1121/b = P21/b & -P 2bc \\ ! 14:a1 & C$_{2h}^{5}$ & P21/c:a1 = P21/b11 & -P 2xab \\ ! 14:a2 & C$_{2h}^{5}$ & P21/c:a2 = P21/n11 & -P 2xn \\ ! 14:a3 & C$_{2h}^{5}$ & P21/c:a3 = P21/c11 & -P 2xac \\ ! 15:b1 & C$_{2h}^{6}$ & C2/c:b1 = C12/c1 & -C 2yc \\ ! 15:b2 & C$_{2h}^{6}$ & C2/c:b2 = A12/n1 & -A 2yac \\ ! 15:b3 & C$_{2h}^{6}$ & C2/c:b3 = I12/a1 & -I 2ya \\ ! 15:-b1 & C$_{2h}^{6}$ & C2/c:-b1 = A12/a1 & -A 2ya \\ ! 15:-b2 & C$_{2h}^{6}$ & C2/c:-b2 = C12/n1 & -C 2ybc \\ ! 15:-b3 & C$_{2h}^{6}$ & C2/c:-b3 = I12/c1 & -I 2yc \\ ! 15:c1 & C$_{2h}^{6}$ & C2/c:c1 = A112/a & -A 2a \\ ! 15:c2 & C$_{2h}^{6}$ & C2/c:c2 = B112/n & -B 2bc \\ ! 15:c3 & C$_{2h}^{6}$ & C2/c:c3 = I112/b & -I 2b \\ ! 15:-c1 & C$_{2h}^{6}$ & C2/c:-c1 = B112/b = B2/b & -B 2b \\ ! 15:-c2 & C$_{2h}^{6}$ & C2/c:-c2 = A112/n & -A 2ac \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 15:-c3 & C$_{2h}^{6}$ & C2/c:-c3 = I112/a & -I 2a \\ ! 15:a1 & C$_{2h}^{6}$ & C2/c:a1 = B2/b11 & -B 2xb \\ ! 15:a2 & C$_{2h}^{6}$ & C2/c:a2 = C2/n11 & -C 2xbc \\ ! 15:a3 & C$_{2h}^{6}$ & C2/c:a3 = I2/c11 & -I 2xc \\ ! 15:-a1 & C$_{2h}^{6}$ & C2/c:-a1 = C2/c11 & -C 2xc \\ ! 15:-a2 & C$_{2h}^{6}$ & C2/c:-a2 = B2/n11 & -B 2xbc \\ ! 15:-a3 & C$_{2h}^{6}$ & C2/c:-a3 = I2/b11 & -I 2xb \\ ! 16 & D$_{2}^{1}$ & P222 & P 2 2 \\ ! 17 & D$_{2}^{2}$ & P2221 & P 2c 2 \\ ! 17:cab & D$_{2}^{2}$ & P2122 & P 2a 2a \\ ! 17:bca & D$_{2}^{2}$ & P2212 & P 2 2b \\ ! 18 & D$_{2}^{3}$ & P21212 & P 2 2ab \\ ! 18:cab & D$_{2}^{3}$ & P22121 & P 2bc 2 \\ ! 18:bca & D$_{2}^{3}$ & P21221 & P 2ac 2ac \\ ! 19 & D$_{2}^{4}$ & P212121 & P 2ac 2ab \\ ! 20 & D$_{2}^{5}$ & C2221 & C 2c 2 \\ ! 20:cab & D$_{2}^{5}$ & A2122 & A 2a 2a \\ ! 20:bca & D$_{2}^{5}$ & B2212 & B 2 2b \\ ! 21 & D$_{2}^{6}$ & C222 & C 2 2 \\ ! 21:cab & D$_{2}^{6}$ & A222 & A 2 2 \\ ! 21:bca & D$_{2}^{6}$ & B222 & B 2 2 \\ ! 22 & D$_{2}^{7}$ & F222 & F 2 2 \\ ! 23 & D$_{2}^{8}$ & I222 & I 2 2 \\ ! 24 & D$_{2}^{9}$ & I212121 & I 2b 2c \\ ! 25 & C$_{2v}^{1}$ & Pmm2 & P 2 -2 \\ ! 25:cab & C$_{2v}^{1}$ & P2mm & P -2 2 \\ ! 25:bca & C$_{2v}^{1}$ & Pm2m & P -2 -2 \\ ! 26 & C$_{2v}^{2}$ & Pmc21 & P 2c -2 \\ ! 26:ba-c & C$_{2v}^{2}$ & Pcm21 & P 2c -2c \\ ! 26:cab & C$_{2v}^{2}$ & P21ma & P -2a 2a \\ ! 26:-cba & C$_{2v}^{2}$ & P21am & P -2 2a \\ ! 26:bca & C$_{2v}^{2}$ & Pb21m & P -2 -2b \\ ! 26:a-cb & C$_{2v}^{2}$ & Pm21b & P -2b -2 \\ ! 27 & C$_{2v}^{3}$ & Pcc2 & P 2 -2c \\ ! 27:cab & C$_{2v}^{3}$ & P2aa & P -2a 2 \\ ! 27:bca & C$_{2v}^{3}$ & Pb2b & P -2b -2b \\ ! 28 & C$_{2v}^{4}$ & Pma2 & P 2 -2a \\ ! 28:ba-c & C$_{2v}^{4}$ & Pbm2 & P 2 -2b \\ ! 28:cab & C$_{2v}^{4}$ & P2mb & P -2b 2 \\ ! 28:-cba & C$_{2v}^{4}$ & P2cm & P -2c 2 \\ ! 28:bca & C$_{2v}^{4}$ & Pc2m & P -2c -2c \\ ! 28:a-cb & C$_{2v}^{4}$ & Pm2a & P -2a -2a \\ ! 29 & C$_{2v}^{5}$ & Pca21 & P 2c -2ac \\ ! 29:ba-c & C$_{2v}^{5}$ & Pbc21 & P 2c -2b \\ ! 29:cab & C$_{2v}^{5}$ & P21ab & P -2b 2a \\ ! 29:-cba & C$_{2v}^{5}$ & P21ca & P -2ac 2a \\ ! 29:bca & C$_{2v}^{5}$ & Pc21b & P -2bc -2c \\ ! 29:a-cb & C$_{2v}^{5}$ & Pb21a & P -2a -2ab \\ ! 30 & C$_{2v}^{6}$ & Pnc2 & P 2 -2bc \\ ! 30:ba-c & C$_{2v}^{6}$ & Pcn2 & P 2 -2ac \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 30:cab & C$_{2v}^{6}$ & P2na & P -2ac 2 \\ ! 30:-cba & C$_{2v}^{6}$ & P2an & P -2ab 2 \\ ! 30:bca & C$_{2v}^{6}$ & Pb2n & P -2ab -2ab \\ ! 30:a-cb & C$_{2v}^{6}$ & Pn2b & P -2bc -2bc \\ ! 31 & C$_{2v}^{7}$ & Pmn21 & P 2ac -2 \\ ! 31:ba-c & C$_{2v}^{7}$ & Pnm21 & P 2bc -2bc \\ ! 31:cab & C$_{2v}^{7}$ & P21mn & P -2ab 2ab \\ ! 31:-cba & C$_{2v}^{7}$ & P21nm & P -2 2ac \\ ! 31:bca & C$_{2v}^{7}$ & Pn21m & P -2 -2bc \\ ! 31:a-cb & C$_{2v}^{7}$ & Pm21n & P -2ab -2 \\ ! 32 & C$_{2v}^{8}$ & Pba2 & P 2 -2ab \\ ! 32:cab & C$_{2v}^{8}$ & P2cb & P -2bc 2 \\ ! 32:bca & C$_{2v}^{8}$ & Pc2a & P -2ac -2ac \\ ! 33 & C$_{2v}^{9}$ & Pna21 & P 2c -2n \\ ! 33:ba-c & C$_{2v}^{9}$ & Pbn21 & P 2c -2ab \\ ! 33:cab & C$_{2v}^{9}$ & P21nb & P -2bc 2a \\ ! 33:-cba & C$_{2v}^{9}$ & P21cn & P -2n 2a \\ ! 33:bca & C$_{2v}^{9}$ & Pc21n & P -2n -2ac \\ ! 33:a-cb & C$_{2v}^{9}$ & Pn21a & P -2ac -2n \\ ! 34 & C$_{2v}^{10}$ & Pnn2 & P 2 -2n \\ ! 34:cab & C$_{2v}^{10}$ & P2nn & P -2n 2 \\ ! 34:bca & C$_{2v}^{10}$ & Pn2n & P -2n -2n \\ ! 35 & C$_{2v}^{11}$ & Cmm2 & C 2 -2 \\ ! 35:cab & C$_{2v}^{11}$ & A2mm & A -2 2 \\ ! 35:bca & C$_{2v}^{11}$ & Bm2m & B -2 -2 \\ ! 36 & C$_{2v}^{12}$ & Cmc21 & C 2c -2 \\ ! 36:ba-c & C$_{2v}^{12}$ & Ccm21 & C 2c -2c \\ ! 36:cab & C$_{2v}^{12}$ & A21ma & A -2a 2a \\ ! 36:-cba & C$_{2v}^{12}$ & A21am & A -2 2a \\ ! 36:bca & C$_{2v}^{12}$ & Bb21m & B -2 -2b \\ ! 36:a-cb & C$_{2v}^{12}$ & Bm21b & B -2b -2 \\ ! 37 & C$_{2v}^{13}$ & Ccc2 & C 2 -2c \\ ! 37:cab & C$_{2v}^{13}$ & A2aa & A -2a 2 \\ ! 37:bca & C$_{2v}^{13}$ & Bb2b & B -2b -2b \\ ! 38 & C$_{2v}^{14}$ & Amm2 & A 2 -2 \\ ! 38:ba-c & C$_{2v}^{14}$ & Bmm2 & B 2 -2 \\ ! 38:cab & C$_{2v}^{14}$ & B2mm & B -2 2 \\ ! 38:-cba & C$_{2v}^{14}$ & C2mm & C -2 2 \\ ! 38:bca & C$_{2v}^{14}$ & Cm2m & C -2 -2 \\ ! 38:a-cb & C$_{2v}^{14}$ & Am2m & A -2 -2 \\ ! 39 & C$_{2v}^{15}$ & Abm2 & A 2 -2c \\ ! 39:ba-c & C$_{2v}^{15}$ & Bma2 & B 2 -2c \\ ! 39:cab & C$_{2v}^{15}$ & B2cm & B -2c 2 \\ ! 39:-cba & C$_{2v}^{15}$ & C2mb & C -2b 2 \\ ! 39:bca & C$_{2v}^{15}$ & Cm2a & C -2b -2b \\ ! 39:a-cb & C$_{2v}^{15}$ & Ac2m & A -2c -2c \\ ! 40 & C$_{2v}^{16}$ & Ama2 & A 2 -2a \\ ! 40:ba-c & C$_{2v}^{16}$ & Bbm2 & B 2 -2b \\ ! 40:cab & C$_{2v}^{16}$ & B2mb & B -2b 2 \\ ! 40:-cba & C$_{2v}^{16}$ & C2cm & C -2c 2 \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 40:bca & C$_{2v}^{16}$ & Cc2m & C -2c -2c \\ ! 40:a-cb & C$_{2v}^{16}$ & Am2a & A -2a -2a \\ ! 41 & C$_{2v}^{17}$ & Aba2 & A 2 -2ac \\ ! 41:ba-c & C$_{2v}^{17}$ & Bba2 & B 2 -2bc \\ ! 41:cab & C$_{2v}^{17}$ & B2cb & B -2bc 2 \\ ! 41:-cba & C$_{2v}^{17}$ & C2cb & C -2bc 2 \\ ! 41:bca & C$_{2v}^{17}$ & Cc2a & C -2bc -2bc \\ ! 41:a-cb & C$_{2v}^{17}$ & Ac2a & A -2ac -2ac \\ ! 42 & C$_{2v}^{18}$ & Fmm2 & F 2 -2 \\ ! 42:cab & C$_{2v}^{18}$ & F2mm & F -2 2 \\ ! 42:bca & C$_{2v}^{18}$ & Fm2m & F -2 -2 \\ ! 43 & C$_{2v}^{19}$ & Fdd2 & F 2 -2d \\ ! 43:cab & C$_{2v}^{19}$ & F2dd & F -2d 2 \\ ! 43:bca & C$_{2v}^{19}$ & Fd2d & F -2d -2d \\ ! 44 & C$_{2v}^{20}$ & Imm2 & I 2 -2 \\ ! 44:cab & C$_{2v}^{20}$ & I2mm & I -2 2 \\ ! 44:bca & C$_{2v}^{20}$ & Im2m & I -2 -2 \\ ! 45 & C$_{2v}^{21}$ & Iba2 & I 2 -2c \\ ! 45:cab & C$_{2v}^{21}$ & I2cb & I -2a 2 \\ ! 45:bca & C$_{2v}^{21}$ & Ic2a & I -2b -2b \\ ! 46 & C$_{2v}^{22}$ & Ima2 & I 2 -2a \\ ! 46:ba-c & C$_{2v}^{22}$ & Ibm2 & I 2 -2b \\ ! 46:cab & C$_{2v}^{22}$ & I2mb & I -2b 2 \\ ! 46:-cba & C$_{2v}^{22}$ & I2cm & I -2c 2 \\ ! 46:bca & C$_{2v}^{22}$ & Ic2m & I -2c -2c \\ ! 46:a-cb & C$_{2v}^{22}$ & Im2a & I -2a -2a \\ ! 47 & D$_{2h}^{1}$ & Pmmm & -P 2 2 \\ ! 48:1 & D$_{2h}^{2}$ & Pnnn:1 & P 2 2 -1n \\ ! 48:2 & D$_{2h}^{2}$ & Pnnn:2 & -P 2ab 2bc \\ ! 49 & D$_{2h}^{3}$ & Pccm & -P 2 2c \\ ! 49:cab & D$_{2h}^{3}$ & Pmaa & -P 2a 2 \\ ! 49:bca & D$_{2h}^{3}$ & Pbmb & -P 2b 2b \\ ! 50:1 & D$_{2h}^{4}$ & Pban:1 & P 2 2 -1ab \\ ! 50:2 & D$_{2h}^{4}$ & Pban:2 & -P 2ab 2b \\ ! 50:1cab & D$_{2h}^{4}$ & Pncb:1 & P 2 2 -1bc \\ ! 50:2cab & D$_{2h}^{4}$ & Pncb:2 & -P 2b 2bc \\ ! 50:1bca & D$_{2h}^{4}$ & Pcna:1 & P 2 2 -1ac \\ ! 50:2bca & D$_{2h}^{4}$ & Pcna:2 & -P 2a 2c \\ ! 51 & D$_{2h}^{5}$ & Pmma & -P 2a 2a \\ ! 51:ba-c & D$_{2h}^{5}$ & Pmmb & -P 2b 2 \\ ! 51:cab & D$_{2h}^{5}$ & Pbmm & -P 2 2b \\ ! 51:-cba & D$_{2h}^{5}$ & Pcmm & -P 2c 2c \\ ! 51:bca & D$_{2h}^{5}$ & Pmcm & -P 2c 2 \\ ! 51:a-cb & D$_{2h}^{5}$ & Pmam & -P 2 2a \\ ! 52 & D$_{2h}^{6}$ & Pnna & -P 2a 2bc \\ ! 52:ba-c & D$_{2h}^{6}$ & Pnnb & -P 2b 2n \\ ! 52:cab & D$_{2h}^{6}$ & Pbnn & -P 2n 2b \\ ! 52:-cba & D$_{2h}^{6}$ & Pcnn & -P 2ab 2c \\ ! 52:bca & D$_{2h}^{6}$ & Pncn & -P 2ab 2n \\ ! 52:a-cb & D$_{2h}^{6}$ & Pnan & -P 2n 2bc \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 53 & D$_{2h}^{7}$ & Pmna & -P 2ac 2 \\ ! 53:ba-c & D$_{2h}^{7}$ & Pnmb & -P 2bc 2bc \\ ! 53:cab & D$_{2h}^{7}$ & Pbmn & -P 2ab 2ab \\ ! 53:-cba & D$_{2h}^{7}$ & Pcnm & -P 2 2ac \\ ! 53:bca & D$_{2h}^{7}$ & Pncm & -P 2 2bc \\ ! 53:a-cb & D$_{2h}^{7}$ & Pman & -P 2ab 2 \\ ! 54 & D$_{2h}^{8}$ & Pcca & -P 2a 2ac \\ ! 54:ba-c & D$_{2h}^{8}$ & Pccb & -P 2b 2c \\ ! 54:cab & D$_{2h}^{8}$ & Pbaa & -P 2a 2b \\ ! 54:-cba & D$_{2h}^{8}$ & Pcaa & -P 2ac 2c \\ ! 54:bca & D$_{2h}^{8}$ & Pbcb & -P 2bc 2b \\ ! 54:a-cb & D$_{2h}^{8}$ & Pbab & -P 2b 2ab \\ ! 55 & D$_{2h}^{9}$ & Pbam & -P 2 2ab \\ ! 55:cab & D$_{2h}^{9}$ & Pmcb & -P 2bc 2 \\ ! 55:bca & D$_{2h}^{9}$ & Pcma & -P 2ac 2ac \\ ! 56 & D$_{2h}^{10}$ & Pccn & -P 2ab 2ac \\ ! 56:cab & D$_{2h}^{10}$ & Pnaa & -P 2ac 2bc \\ ! 56:bca & D$_{2h}^{10}$ & Pbnb & -P 2bc 2ab \\ ! 57 & D$_{2h}^{11}$ & Pbcm & -P 2c 2b \\ ! 57:ba-c & D$_{2h}^{11}$ & Pcam & -P 2c 2ac \\ ! 57:cab & D$_{2h}^{11}$ & Pmca & -P 2ac 2a \\ ! 57:-cba & D$_{2h}^{11}$ & Pmab & -P 2b 2a \\ ! 57:bca & D$_{2h}^{11}$ & Pbma & -P 2a 2ab \\ ! 57:a-cb & D$_{2h}^{11}$ & Pcmb & -P 2bc 2c \\ ! 58 & D$_{2h}^{12}$ & Pnnm & -P 2 2n \\ ! 58:cab & D$_{2h}^{12}$ & Pmnn & -P 2n 2 \\ ! 58:bca & D$_{2h}^{12}$ & Pnmn & -P 2n 2n \\ ! 59:1 & D$_{2h}^{13}$ & Pmmn:1 & P 2 2ab -1ab \\ ! 59:2 & D$_{2h}^{13}$ & Pmmn:2 & -P 2ab 2a \\ ! 59:1cab & D$_{2h}^{13}$ & Pnmm:1 & P 2bc 2 -1bc \\ ! 59:2cab & D$_{2h}^{13}$ & Pnmm:2 & -P 2c 2bc \\ ! 59:1bca & D$_{2h}^{13}$ & Pmnm:1 & P 2ac 2ac -1ac \\ ! 59:2bca & D$_{2h}^{13}$ & Pmnm:2 & -P 2c 2a \\ ! 60 & D$_{2h}^{14}$ & Pbcn & -P 2n 2ab \\ ! 60:ba-c & D$_{2h}^{14}$ & Pcan & -P 2n 2c \\ ! 60:cab & D$_{2h}^{14}$ & Pnca & -P 2a 2n \\ ! 60:-cba & D$_{2h}^{14}$ & Pnab & -P 2bc 2n \\ ! 60:bca & D$_{2h}^{14}$ & Pbna & -P 2ac 2b \\ ! 60:a-cb & D$_{2h}^{14}$ & Pcnb & -P 2b 2ac \\ ! 61 & D$_{2h}^{15}$ & Pbca & -P 2ac 2ab \\ ! 61:ba-c & D$_{2h}^{15}$ & Pcab & -P 2bc 2ac \\ ! 62 & D$_{2h}^{16}$ & Pnma & -P 2ac 2n \\ ! 62:ba-c & D$_{2h}^{16}$ & Pmnb & -P 2bc 2a \\ ! 62:cab & D$_{2h}^{16}$ & Pbnm & -P 2c 2ab \\ ! 62:-cba & D$_{2h}^{16}$ & Pcmn & -P 2n 2ac \\ ! 62:bca & D$_{2h}^{16}$ & Pmcn & -P 2n 2a \\ ! 62:a-cb & D$_{2h}^{16}$ & Pnam & -P 2c 2n \\ ! 63 & D$_{2h}^{17}$ & Cmcm & -C 2c 2 \\ ! 63:ba-c & D$_{2h}^{17}$ & Ccmm & -C 2c 2c \\ ! 63:cab & D$_{2h}^{17}$ & Amma & -A 2a 2a \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 63:-cba & D$_{2h}^{17}$ & Amam & -A 2 2a \\ ! 63:bca & D$_{2h}^{17}$ & Bbmm & -B 2 2b \\ ! 63:a-cb & D$_{2h}^{17}$ & Bmmb & -B 2b 2 \\ ! 64 & D$_{2h}^{18}$ & Cmca & -C 2bc 2 \\ ! 64:ba-c & D$_{2h}^{18}$ & Ccmb & -C 2bc 2bc \\ ! 64:cab & D$_{2h}^{18}$ & Abma & -A 2ac 2ac \\ ! 64:-cba & D$_{2h}^{18}$ & Acam & -A 2 2ac \\ ! 64:bca & D$_{2h}^{18}$ & Bbcm & -B 2 2bc \\ ! 64:a-cb & D$_{2h}^{18}$ & Bmab & -B 2bc 2 \\ ! 65 & D$_{2h}^{19}$ & Cmmm & -C 2 2 \\ ! 65:cab & D$_{2h}^{19}$ & Ammm & -A 2 2 \\ ! 65:bca & D$_{2h}^{19}$ & Bmmm & -B 2 2 \\ ! 66 & D$_{2h}^{20}$ & Cccm & -C 2 2c \\ ! 66:cab & D$_{2h}^{20}$ & Amaa & -A 2a 2 \\ ! 66:bca & D$_{2h}^{20}$ & Bbmb & -B 2b 2b \\ ! 67 & D$_{2h}^{21}$ & Cmma & -C 2b 2 \\ ! 67:ba-c & D$_{2h}^{21}$ & Cmmb & -C 2b 2b \\ ! 67:cab & D$_{2h}^{21}$ & Abmm & -A 2c 2c \\ ! 67:-cba & D$_{2h}^{21}$ & Acmm & -A 2 2c \\ ! 67:bca & D$_{2h}^{21}$ & Bmcm & -B 2 2c \\ ! 67:a-cb & D$_{2h}^{21}$ & Bmam & -B 2c 2 \\ ! 68:1 & D$_{2h}^{22}$ & Ccca:1 & C 2 2 -1bc \\ ! 68:2 & D$_{2h}^{22}$ & Ccca:2 & -C 2b 2bc \\ ! 68:1ba-c & D$_{2h}^{22}$ & Cccb:1 & C 2 2 -1bc \\ ! 68:2ba-c & D$_{2h}^{22}$ & Cccb:2 & -C 2b 2c \\ ! 68:1cab & D$_{2h}^{22}$ & Abaa:1 & A 2 2 -1ac \\ ! 68:2cab & D$_{2h}^{22}$ & Abaa:2 & -A 2a 2c \\ ! 68:1-cba & D$_{2h}^{22}$ & Acaa:1 & A 2 2 -1ac \\ ! 68:2-cba & D$_{2h}^{22}$ & Acaa:2 & -A 2ac 2c \\ ! 68:1bca & D$_{2h}^{22}$ & Bbcb:1 & B 2 2 -1bc \\ ! 68:2bca & D$_{2h}^{22}$ & Bbcb:2 & -B 2bc 2b \\ ! 68:1a-cb & D$_{2h}^{22}$ & Bbab:1 & B 2 2 -1bc \\ ! 68:2a-cb & D$_{2h}^{22}$ & Bbab:2 & -B 2b 2bc \\ ! 69 & D$_{2h}^{23}$ & Fmmm & -F 2 2 \\ ! 70:1 & D$_{2h}^{24}$ & Fddd:1 & F 2 2 -1d \\ ! 70:2 & D$_{2h}^{24}$ & Fddd:2 & -F 2uv 2vw \\ ! 71 & D$_{2h}^{25}$ & Immm & -I 2 2 \\ ! 72 & D$_{2h}^{26}$ & Ibam & -I 2 2c \\ ! 72:cab & D$_{2h}^{26}$ & Imcb & -I 2a 2 \\ ! 72:bca & D$_{2h}^{26}$ & Icma & -I 2b 2b \\ ! 73 & D$_{2h}^{27}$ & Ibca & -I 2b 2c \\ ! 73:ba-c & D$_{2h}^{27}$ & Icab & -I 2a 2b \\ ! 74 & D$_{2h}^{28}$ & Imma & -I 2b 2 \\ ! 74:ba-c & D$_{2h}^{28}$ & Immb & -I 2a 2a \\ ! 74:cab & D$_{2h}^{28}$ & Ibmm & -I 2c 2c \\ ! 74:-cba & D$_{2h}^{28}$ & Icmm & -I 2 2b \\ ! 74:bca & D$_{2h}^{28}$ & Imcm & -I 2 2a \\ ! 74:a-cb & D$_{2h}^{28}$ & Imam & -I 2c 2 \\ ! 75 & C$_{4}^{1}$ & P4 & P 4 \\ ! 76 & C$_{4}^{2}$ & P41 & P 4w \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 77 & C$_{4}^{3}$ & P42 & P 4c \\ ! 78 & C$_{4}^{4}$ & P43 & P 4cw \\ ! 79 & C$_{4}^{5}$ & I4 & I 4 \\ ! 80 & C$_{4}^{6}$ & I41 & I 4bw \\ ! 81 & S$_{4}^{1}$ & P-4 & P -4 \\ ! 82 & S$_{4}^{2}$ & I-4 & I -4 \\ ! 83 & C$_{4h}^{1}$ & P4/m & -P 4 \\ ! 84 & C$_{4h}^{2}$ & P42/m & -P 4c \\ ! 85:1 & C$_{4h}^{3}$ & P4/n:1 & P 4ab -1ab \\ ! 85:2 & C$_{4h}^{3}$ & P4/n:2 & -P 4a \\ ! 86:1 & C$_{4h}^{4}$ & P42/n:1 & P 4n -1n \\ ! 86:2 & C$_{4h}^{4}$ & P42/n:2 & -P 4bc \\ ! 87 & C$_{4h}^{5}$ & I4/m & -I 4 \\ ! 88:1 & C$_{4h}^{6}$ & I41/a:1 & I 4bw -1bw \\ ! 88:2 & C$_{4h}^{6}$ & I41/a:2 & -I 4ad \\ ! 89 & D$_{4}^{1}$ & P422 & P 4 2 \\ ! 90 & D$_{4}^{2}$ & P4212 & P 4ab 2ab \\ ! 91 & D$_{4}^{3}$ & P4122 & P 4w 2c \\ ! 92 & D$_{4}^{4}$ & P41212 & P 4abw 2nw \\ ! 93 & D$_{4}^{5}$ & P4222 & P 4c 2 \\ ! 94 & D$_{4}^{6}$ & P42212 & P 4n 2n \\ ! 95 & D$_{4}^{7}$ & P4322 & P 4cw 2c \\ ! 96 & D$_{4}^{8}$ & P43212 & P 4nw 2abw \\ ! 97 & D$_{4}^{9}$ & I422 & I 4 2 \\ ! 98 & D$_{4}^{10}$ & I4122 & I 4bw 2bw \\ ! 99 & C$_{4v}^{1}$ & P4mm & P 4 -2 \\ ! 100 & C$_{4v}^{2}$ & P4bm & P 4 -2ab \\ ! 101 & C$_{4v}^{3}$ & P42cm & P 4c -2c \\ ! 102 & C$_{4v}^{4}$ & P42nm & P 4n -2n \\ ! 103 & C$_{4v}^{5}$ & P4cc & P 4 -2c \\ ! 104 & C$_{4v}^{6}$ & P4nc & P 4 -2n \\ ! 105 & C$_{4v}^{7}$ & P42mc & P 4c -2 \\ ! 106 & C$_{4v}^{8}$ & P42bc & P 4c -2ab \\ ! 107 & C$_{4v}^{9}$ & I4mm & I 4 -2 \\ ! 108 & C$_{4v}^{10}$ & I4cm & I 4 -2c \\ ! 109 & C$_{4v}^{11}$ & I41md & I 4bw -2 \\ ! 110 & C$_{4v}^{12}$ & I41cd & I 4bw -2c \\ ! 111 & D$_{2d}^{1}$ & P-42m & P -4 2 \\ ! 112 & D$_{2d}^{2}$ & P-42c & P -4 2c \\ ! 113 & D$_{2d}^{3}$ & P-421m & P -4 2ab \\ ! 114 & D$_{2d}^{4}$ & P-421c & P -4 2n \\ ! 115 & D$_{2d}^{5}$ & P-4m2 & P -4 -2 \\ ! 116 & D$_{2d}^{6}$ & P-4c2 & P -4 -2c \\ ! 117 & D$_{2d}^{7}$ & P-4b2 & P -4 -2ab \\ ! 118 & D$_{2d}^{8}$ & P-4n2 & P -4 -2n \\ ! 119 & D$_{2d}^{9}$ & I-4m2 & I -4 -2 \\ ! 120 & D$_{2d}^{10}$ & I-4c2 & I -4 -2c \\ ! 121 & D$_{2d}^{11}$ & I-42m & I -4 2 \\ ! 122 & D$_{2d}^{12}$ & I-42d & I -4 2bw \\ ! 123 & D$_{4h}^{1}$ & P4/mmm & -P 4 2 \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 124 & D$_{4h}^{2}$ & P4/mcc & -P 4 2c \\ ! 125:1 & D$_{4h}^{3}$ & P4/nbm:1 & P 4 2 -1ab \\ ! 125:2 & D$_{4h}^{3}$ & P4/nbm:2 & -P 4a 2b \\ ! 126:1 & D$_{4h}^{4}$ & P4/nnc:1 & P 4 2 -1n \\ ! 126:2 & D$_{4h}^{4}$ & P4/nnc:2 & -P 4a 2bc \\ ! 127 & D$_{4h}^{5}$ & P4/mbm & -P 4 2ab \\ ! 128 & D$_{4h}^{6}$ & P4/mnc & -P 4 2n \\ ! 129:1 & D$_{4h}^{7}$ & P4/nmm:1 & P 4ab 2ab -1ab \\ ! 129:2 & D$_{4h}^{7}$ & P4/nmm:2 & -P 4a 2a \\ ! 130:1 & D$_{4h}^{8}$ & P4/ncc:1 & P 4ab 2n -1ab \\ ! 130:2 & D$_{4h}^{8}$ & P4/ncc:2 & -P 4a 2ac \\ ! 131 & D$_{4h}^{9}$ & P42/mmc & -P 4c 2 \\ ! 132 & D$_{4h}^{10}$ & P42/mcm & -P 4c 2c \\ ! 133:1 & D$_{4h}^{11}$ & P42/nbc:1 & P 4n 2c -1n \\ ! 133:2 & D$_{4h}^{11}$ & P42/nbc:2 & -P 4ac 2b \\ ! 134:1 & D$_{4h}^{12}$ & P42/nnm:1 & P 4n 2 -1n \\ ! 134:2 & D$_{4h}^{12}$ & P42/nnm:2 & -P 4ac 2bc \\ ! 135 & D$_{4h}^{13}$ & P42/mbc & -P 4c 2ab \\ ! 136 & D$_{4h}^{14}$ & P42/mnm & -P 4n 2n \\ ! 137:1 & D$_{4h}^{15}$ & P42/nmc:1 & P 4n 2n -1n \\ ! 137:2 & D$_{4h}^{15}$ & P42/nmc:2 & -P 4ac 2a \\ ! 138:1 & D$_{4h}^{16}$ & P42/ncm:1 & P 4n 2ab -1n \\ ! 138:2 & D$_{4h}^{16}$ & P42/ncm:2 & -P 4ac 2ac \\ ! 139 & D$_{4h}^{17}$ & I4/mmm & -I 4 2 \\ ! 140 & D$_{4h}^{18}$ & I4/mcm & -I 4 2c \\ ! 141:1 & D$_{4h}^{19}$ & I41/amd:1 & I 4bw 2bw -1bw \\ ! 141:2 & D$_{4h}^{19}$ & I41/amd:2 & -I 4bd 2 \\ ! 142:1 & D$_{4h}^{20}$ & I41/acd:1 & I 4bw 2aw -1bw \\ ! 142:2 & D$_{4h}^{20}$ & I41/acd:2 & -I 4bd 2c \\ ! 143 & C$_{3}^{1}$ & P3 & P 3 \\ ! 144 & C$_{3}^{2}$ & P31 & P 31 \\ ! 145 & C$_{3}^{3}$ & P32 & P 32 \\ ! 146:H & C$_{3}^{4}$ & R3:H & R 3 \\ ! 146:R & C$_{3}^{4}$ & R3:R & P 3* \\ ! 147 & C$_{3i}^{1}$ & P-3 & -P 3 \\ ! 148:H & C$_{3i}^{2}$ & R-3:H & -R 3 \\ ! 148:R & C$_{3i}^{2}$ & R-3:R & -P 3* \\ ! 149 & D$_{3}^{1}$ & P312 & P 3 2 \\ ! 150 & D$_{3}^{2}$ & P321 & P 3 2$''$ \\ ! 151 & D$_{3}^{3}$ & P3112 & P 31 2c (0 0 1) \\ ! 152 & D$_{3}^{4}$ & P3121 & P 31 2$''$ \\ ! 153 & D$_{3}^{5}$ & P3212 & P 32 2c (0 0 -1) \\ ! 154 & D$_{3}^{6}$ & P3221 & P 32 2$''$ \\ ! 155:H & D$_{3}^{7}$ & R32:H & R 3 2$''$ \\ ! 155:R & D$_{3}^{7}$ & R32:R & P 3* 2 \\ ! 156 & C$_{3v}^{1}$ & P3m1 & P 3 -2$''$ \\ ! 157 & C$_{3v}^{2}$ & P31m & P 3 -2 \\ ! 158 & C$_{3v}^{3}$ & P3c1 & P 3 -2$''$c \\ ! 159 & C$_{3v}^{4}$ & P31c & P 3 -2c \\ ! 160:H & C$_{3v}^{5}$ & R3m:H & R 3 -2$''$ \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 160:R & C$_{3v}^{5}$ & R3m:R & P 3* -2 \\ ! 161:H & C$_{3v}^{6}$ & R3c:H & R 3 -2$''$c \\ ! 161:R & C$_{3v}^{6}$ & R3c:R & P 3* -2n \\ ! 162 & D$_{3d}^{1}$ & P-31m & -P 3 2 \\ ! 163 & D$_{3d}^{2}$ & P-31c & -P 3 2c \\ ! 164 & D$_{3d}^{3}$ & P-3m1 & -P 3 2$''$ \\ ! 165 & D$_{3d}^{4}$ & P-3c1 & -P 3 2$''$c \\ ! 166:H & D$_{3d}^{5}$ & R-3m:H & -R 3 2$''$ \\ ! 166:R & D$_{3d}^{5}$ & R-3m:R & -P 3* 2 \\ ! 167:H & D$_{3d}^{6}$ & R-3c:H & -R 3 2$''$c \\ ! 167:R & D$_{3d}^{6}$ & R-3c:R & -P 3* 2n \\ ! 168 & C$_{6}^{1}$ & P6 & P 6 \\ ! 169 & C$_{6}^{2}$ & P61 & P 61 \\ ! 170 & C$_{6}^{3}$ & P65 & P 65 \\ ! 171 & C$_{6}^{4}$ & P62 & P 62 \\ ! 172 & C$_{6}^{5}$ & P64 & P 64 \\ ! 173 & C$_{6}^{6}$ & P63 & P 6c \\ ! 174 & C$_{3h}^{1}$ & P-6 & P -6 \\ ! 175 & C$_{6h}^{1}$ & P6/m & -P 6 \\ ! 176 & C$_{6h}^{2}$ & P63/m & -P 6c \\ ! 177 & D$_{6}^{1}$ & P622 & P 6 2 \\ ! 178 & D$_{6}^{2}$ & P6122 & P 61 2 (0 0 -1) \\ ! 179 & D$_{6}^{3}$ & P6522 & P 65 2 (0 0 1) \\ ! 180 & D$_{6}^{4}$ & P6222 & P 62 2c (0 0 1) \\ ! 181 & D$_{6}^{5}$ & P6422 & P 64 2c (0 0 -1) \\ ! 182 & D$_{6}^{6}$ & P6322 & P 6c 2c \\ ! 183 & C$_{6v}^{1}$ & P6mm & P 6 -2 \\ ! 184 & C$_{6v}^{2}$ & P6cc & P 6 -2c \\ ! 185 & C$_{6v}^{3}$ & P63cm & P 6c -2 \\ ! 186 & C$_{6v}^{4}$ & P63mc & P 6c -2c \\ ! 187 & D$_{3h}^{1}$ & P-6m2 & P -6 2 \\ ! 188 & D$_{3h}^{2}$ & P-6c2 & P -6c 2 \\ ! 189 & D$_{3h}^{3}$ & P-62m & P -6 -2 \\ ! 190 & D$_{3h}^{4}$ & P-62c & P -6c -2c \\ ! 191 & D$_{6h}^{1}$ & P6/mmm & -P 6 2 \\ ! 192 & D$_{6h}^{2}$ & P6/mcc & -P 6 2c \\ ! 193 & D$_{6h}^{3}$ & P63/mcm & -P 6c 2 \\ ! 194 & D$_{6h}^{4}$ & P63/mmc & -P 6c 2c \\ ! 195 & T$_{}^{1}$ & P23 & P 2 2 3 \\ ! 196 & T$_{}^{2}$ & F23 & F 2 2 3 \\ ! 197 & T$_{}^{3}$ & I23 & I 2 2 3 \\ ! 198 & T$_{}^{4}$ & P213 & P 2ac 2ab 3 \\ ! 199 & T$_{}^{5}$ & I213 & I 2b 2c 3 \\ ! 200 & T$_{h}^{1}$ & Pm-3 & -P 2 2 3 \\ ! 201:1 & T$_{h}^{2}$ & Pn-3:1 & P 2 2 3 -1n \\ ! 201:2 & T$_{h}^{2}$ & Pn-3:2 & -P 2ab 2bc 3 \\ ! 202 & T$_{h}^{3}$ & Fm-3 & -F 2 2 3 \\ ! 203:1 & T$_{h}^{4}$ & Fd-3:1 & F 2 2 3 -1d \\ ! 203:2 & T$_{h}^{4}$ & Fd-3:2 & -F 2uv 2vw 3 \\ ! 204 & T$_{h}^{5}$ & Im-3 & -I 2 2 3 \\ ! \hline ! \end{tabular} ! \newpage ! \begin{tabular}{|l|l|l|l|} ! \hline ! Number & Schoenflies & Hermann-Mauguin & Hall \\ ! \hline ! 205 & T$_{h}^{6}$ & Pa-3 & -P 2ac 2ab 3 \\ ! 206 & T$_{h}^{7}$ & Ia-3 & -I 2b 2c 3 \\ ! 207 & O$^{1}$ & P432 & P 4 2 3 \\ ! 208 & O$^{2}$ & P4232 & P 4n 2 3 \\ ! 209 & O$^{3}$ & F432 & F 4 2 3 \\ ! 210 & O$^{4}$ & F4132 & F 4d 2 3 \\ ! 211 & O$^{5}$ & I432 & I 4 2 3 \\ ! 212 & O$^{6}$ & P4332 & P 4acd 2ab 3 \\ ! 213 & O$^{7}$ & P4132 & P 4bd 2ab 3 \\ ! 214 & O$^{8}$ & I4132 & I 4bd 2c 3 \\ ! 215 & T$_{d}^{1}$ & P-43m & P -4 2 3 \\ ! 216 & T$_{d}^{2}$ & F-43m & F -4 2 3 \\ ! 217 & T$_{d}^{3}$ & I-43m & I -4 2 3 \\ ! 218 & T$_{d}^{4}$ & P-43n & P -4n 2 3 \\ ! 219 & T$_{d}^{5}$ & F-43c & F -4c 2 3 \\ ! 220 & T$_{d}^{6}$ & I-43d & I -4bd 2c 3 \\ ! 221 & O$_{h}^{1}$ & Pm-3m & -P 4 2 3 \\ ! 222:1 & O$_{h}^{2}$ & Pn-3n:1 & P 4 2 3 -1n \\ ! 222:2 & O$_{h}^{2}$ & Pn-3n:2 & -P 4a 2bc 3 \\ ! 223 & O$_{h}^{3}$ & Pm-3n & -P 4n 2 3 \\ ! 224:1 & O$_{h}^{4}$ & Pn-3m:1 & P 4n 2 3 -1n \\ ! 224:2 & O$_{h}^{4}$ & Pn-3m:2 & -P 4bc 2bc 3 \\ ! 225 & O$_{h}^{5}$ & Fm-3m & -F 4 2 3 \\ ! 226 & O$_{h}^{6}$ & Fm-3c & -F 4c 2 3 \\ ! 227:1 & O$_{h}^{7}$ & Fd-3m:1 & F 4d 2 3 -1d \\ ! 227:2 & O$_{h}^{7}$ & Fd-3m:2 & -F 4vw 2vw 3 \\ ! 228:1 & O$_{h}^{8}$ & Fd-3c:1 & F 4d 2 3 -1cd \\ ! 228:2 & O$_{h}^{8}$ & Fd-3c:2 & -F 4cvw 2vw 3 \\ ! 229 & O$_{h}^{9}$ & Im-3m & -I 4 2 3 \\ ! 230 & O$_{h}^{10}$ & Ia-3d & -I 4bd 2c 3 \\ ! \hline ! \end{tabular} ! \end{center} ! !EOI elk-7.2.42/src/spacegroup/PaxHeaders.21776/modmain.f900000644000000000000000000000013214061636515017036 xustar0030 mtime=1623670093.521103786 30 atime=1623670093.521103786 30 ctime=1623670093.521103786 elk-7.2.42/src/spacegroup/modmain.f900000644002504400250440000000454314061636515021101 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !MODULE: modmain ! !DESCRIPTION: ! Contains all the global variables required by the spacegroup code. ! ! !REVISION HISTORY: ! Created October 2006 (JKD) !EOP !BOC module modmain !-------------------------------! ! space group variables ! !-------------------------------! ! Hermann-Mauguin symbol character(20) hrmg ! space-group number character(20) num ! Schoenflies symbol character(20) schn ! Hall symbol character(20) hall !----------------------------! ! lattice parameters ! !----------------------------! ! number of unit cells integer ncell(3) ! lattice vector lengths real(8) a,b,c ! lattice vector angles real(8) ab,ac,bc ! lattice vectors stored column-wise real(8) avec(3,3) ! inverse of lattice vector matrix real(8) ainv(3,3) ! any vector with length less than epslat is considered zero real(8), parameter :: epslat=1.d-6 !--------------------------! ! atomic variables ! !--------------------------! ! maximum allowed species integer, parameter :: maxspecies=8 ! maximum allowed atoms per species integer, parameter :: maxatoms=1000 ! number of species integer nspecies ! number of atoms for each species integer natoms(maxspecies) ! total number of atoms integer natmtot ! primcell is .true. if primitive unit cell is to be found automatically logical primcell ! maximum allowed Wyckoff positions integer, parameter :: maxwpos=100 ! number of Wyckoff positions integer nwpos(maxspecies) ! Wyckoff positions real(8) wpos(3,maxwpos,maxspecies) ! atomic positions in lattice coordinates real(8) atposl(3,maxatoms,maxspecies) ! atomic positions in Cartesian coordinates real(8) atposc(3,maxatoms,maxspecies) ! magnetic fields real(8) bfcmt0(3,maxatoms,maxspecies) !----------------------------------! ! atomic species variables ! !----------------------------------! ! species symbol character(256) spsymb(maxspecies) !-----------------------------! ! numerical constants ! !-----------------------------! real(8), parameter :: pi=3.1415926535897932385d0 !---------------------------------! ! miscellaneous variables ! !---------------------------------! ! code version integer version(3) data version / 1,2,1 / end module !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/r3cross.f900000644000000000000000000000013214061636515017010 xustar0030 mtime=1623670093.523103784 30 atime=1623670093.522103785 30 ctime=1623670093.523103784 elk-7.2.42/src/spacegroup/r3cross.f900000644002504400250440000000137314061636515021051 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3cross ! !INTERFACE: subroutine r3cross(x,y,z) ! !INPUT/OUTPUT PARAMETERS: ! x : input vector 1 (in,real(3)) ! y : input vector 2 (in,real(3)) ! z : output cross-product (out,real(3)) ! !DESCRIPTION: ! Returns the cross product of two real 3-vectors. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x(3) real(8), intent(in) :: y(3) real(8), intent(out) :: z(3) z(1)=x(2)*y(3)-x(3)*y(2) z(2)=x(3)*y(1)-x(1)*y(3) z(3)=x(1)*y(2)-x(2)*y(1) return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/r3frac.f900000644000000000000000000000013214061636515016572 xustar0030 mtime=1623670093.524103783 30 atime=1623670093.524103783 30 ctime=1623670093.524103783 elk-7.2.42/src/spacegroup/r3frac.f900000644002504400250440000000176014061636515020633 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3frac ! !INTERFACE: subroutine r3frac(eps,v) ! !INPUT/OUTPUT PARAMETERS: ! eps : zero component tolerance (in,real) ! v : input vector (inout,real(3)) ! !DESCRIPTION: ! Finds the fractional part of each component of a real 3-vector using the ! function ${\rm frac}\,(x)=x-\lfloor x\rfloor$. A component is taken to be ! zero if it lies within the intervals $[0,\epsilon)$ or $(1-\epsilon,1]$. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) ! Removed iv, September 2011 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: eps real(8), intent(inout) :: v(3) ! local variables integer i do i=1,3 v(i)=v(i)-int(v(i)) if (v(i).lt.0.d0) v(i)=v(i)+1.d0 if ((1.d0-v(i)).lt.eps) v(i)=0.d0 if (v(i).lt.eps) v(i)=0.d0 end do return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/r3minv.f900000644000000000000000000000013214061636515016630 xustar0030 mtime=1623670093.526103781 30 atime=1623670093.525103782 30 ctime=1623670093.526103781 elk-7.2.42/src/spacegroup/r3minv.f900000644002504400250440000000236214061636515020670 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3minv ! !INTERFACE: subroutine r3minv(a,b) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,real(3,3)) ! b : output matrix (in,real(3,3)) ! !DESCRIPTION: ! Computes the inverse of a real $3\times 3$ matrix. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3) real(8), intent(out) :: b(3,3) ! local variables real(8) t1 t1=a(1,2)*a(2,3)*a(3,1)-a(1,3)*a(2,2)*a(3,1)+a(1,3)*a(2,1)*a(3,2) & -a(1,1)*a(2,3)*a(3,2)+a(1,1)*a(2,2)*a(3,3)-a(1,2)*a(2,1)*a(3,3) if (abs(t1).lt.1.d-40) then write(*,*) write(*,'("Error(r3minv): singular matrix")') write(*,*) stop end if t1=1.d0/t1 b(1,1)=(a(2,2)*a(3,3)-a(2,3)*a(3,2))*t1 b(1,2)=(a(1,3)*a(3,2)-a(1,2)*a(3,3))*t1 b(1,3)=(a(1,2)*a(2,3)-a(1,3)*a(2,2))*t1 b(2,1)=(a(2,3)*a(3,1)-a(2,1)*a(3,3))*t1 b(2,2)=(a(1,1)*a(3,3)-a(1,3)*a(3,1))*t1 b(2,3)=(a(1,3)*a(2,1)-a(1,1)*a(2,3))*t1 b(3,1)=(a(2,1)*a(3,2)-a(2,2)*a(3,1))*t1 b(3,2)=(a(1,2)*a(3,1)-a(1,1)*a(3,2))*t1 b(3,3)=(a(1,1)*a(2,2)-a(1,2)*a(2,1))*t1 return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/r3mm.f900000644000000000000000000000012714061636515016274 xustar0029 mtime=1623670093.52710378 29 atime=1623670093.52710378 29 ctime=1623670093.52710378 elk-7.2.42/src/spacegroup/r3mm.f900000644002504400250440000000213514061636515020326 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3mm ! !INTERFACE: subroutine r3mm(a,b,c) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix 1 (in,real(3,3)) ! b : input matrix 2 (in,real(3,3)) ! c : output matrix (out,real(3,3)) ! !DESCRIPTION: ! Multiplies two real $3\times 3$ matrices. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3) real(8), intent(in) :: b(3,3) real(8), intent(out) :: c(3,3) c(1,1)=a(1,1)*b(1,1)+a(1,2)*b(2,1)+a(1,3)*b(3,1) c(2,1)=a(2,1)*b(1,1)+a(2,2)*b(2,1)+a(2,3)*b(3,1) c(3,1)=a(3,1)*b(1,1)+a(3,2)*b(2,1)+a(3,3)*b(3,1) c(1,2)=a(1,1)*b(1,2)+a(1,2)*b(2,2)+a(1,3)*b(3,2) c(2,2)=a(2,1)*b(1,2)+a(2,2)*b(2,2)+a(2,3)*b(3,2) c(3,2)=a(3,1)*b(1,2)+a(3,2)*b(2,2)+a(3,3)*b(3,2) c(1,3)=a(1,1)*b(1,3)+a(1,2)*b(2,3)+a(1,3)*b(3,3) c(2,3)=a(2,1)*b(1,3)+a(2,2)*b(2,3)+a(2,3)*b(3,3) c(3,3)=a(3,1)*b(1,3)+a(3,2)*b(2,3)+a(3,3)*b(3,3) return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/r3mv.f900000644000000000000000000000013214061636515016301 xustar0030 mtime=1623670093.528103779 30 atime=1623670093.528103779 30 ctime=1623670093.528103779 elk-7.2.42/src/spacegroup/r3mv.f900000644002504400250440000000143714061636515020343 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3mv ! !INTERFACE: subroutine r3mv(a,x,y) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,real(3,3)) ! x : input vector (in,real(3)) ! y : output vector (out,real(3)) ! !DESCRIPTION: ! Multiplies a real $3\times 3$ matrix with a vector. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3) real(8), intent(in) :: x(3) real(8), intent(out) :: y(3) y(1)=a(1,1)*x(1)+a(1,2)*x(2)+a(1,3)*x(3) y(2)=a(2,1)*x(1)+a(2,2)*x(2)+a(2,3)*x(3) y(3)=a(3,1)*x(1)+a(3,2)*x(2)+a(3,3)*x(3) return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/readinput.f900000644000000000000000000000013214061636515017405 xustar0030 mtime=1623670093.530103777 30 atime=1623670093.530103777 30 ctime=1623670093.530103777 elk-7.2.42/src/spacegroup/readinput.f900000644002504400250440000000300314061636515021436 0ustar00dewhurstdewhurst00000000000000subroutine readinput use modmain implicit none ! local variables integer is,ip open(50,file='spacegroup.in',action='READ',status='OLD',form='FORMATTED') ! read the Hermann-Mauguin symbol read(50,*) hrmg hrmg=adjustl(hrmg) ! read lattice vector lengths read(50,*) a,b,c ! read angles between lattice vectors: alpha, beta, gamma ! (convention fixed by F. Cricchio) read(50,*) bc,ac,ab ! read number of unit cells read(50,*) ncell if ((ncell(1).lt.1).or.(ncell(2).lt.1).or.(ncell(3).lt.1)) then write(*,*) write(*,'("Error(readinput): invalid ncell : ",3I8)') ncell write(*,*) stop end if read(50,*) primcell read(50,*) nspecies if (nspecies.le.0) then write(*,*) write(*,'("Error(readinput): nspecies <= 0 : ",I8)') nspecies write(*,*) stop end if if (nspecies.gt.maxspecies) then write(*,*) write(*,'("Error(readinput): nspecies too large : ",I8)') nspecies write(*,'("Adjust maxspecies and recompile code")') write(*,*) stop end if do is=1,nspecies read(50,*) spsymb(is) read(50,*) nwpos(is) if (nwpos(is).le.0) then write(*,*) write(*,'("Error(readinput): nwpos <= 0 : ",I8)') nwpos(is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (nwpos(is).gt.maxwpos) then write(*,*) write(*,'("Error(readinput): nwpos too large : ",I8)') nwpos(is) write(*,'(" for species ",I4)') is write(*,'("Adjust maxwpos and reompile code")') write(*,*) stop end if do ip=1,nwpos(is) read(50,*) wpos(:,ip,is) end do end do close(50) return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/seitzeq.f900000644000000000000000000000013214061636515017076 xustar0030 mtime=1623670093.531103777 30 atime=1623670093.531103777 30 ctime=1623670093.531103777 elk-7.2.42/src/spacegroup/seitzeq.f900000644002504400250440000000127114061636515021134 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. logical function seitzeq(eps,sr1,st1,sr2,st2) implicit none ! arguments real(8), intent(in) :: eps real(8), intent(in) :: sr1(3,3) real(8), intent(in) :: st1(3) real(8), intent(in) :: sr2(3,3) real(8), intent(in) :: st2(3) ! local variables integer j real(8) v1(3),v2(3) seitzeq=.false. do j=1,3 v1(:)=sr1(:,j)+st1(:) v2(:)=sr2(:,j)+st2(:) if ((abs(v1(1)-v2(1)).gt.eps).or. & (abs(v1(2)-v2(2)).gt.eps).or. & (abs(v1(3)-v2(3)).gt.eps)) return end do seitzeq=.true. return end function elk-7.2.42/src/spacegroup/PaxHeaders.21776/seitzgen.f900000644000000000000000000000013214061636515017242 xustar0030 mtime=1623670093.533103775 30 atime=1623670093.533103775 30 ctime=1623670093.533103775 elk-7.2.42/src/spacegroup/seitzgen.f900000644002504400250440000002566714061636515021317 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine seitzgen(hall,ngen,srgen,stgen) implicit none character(20), intent(in) :: hall integer, intent(out) :: ngen real(8), intent(out) :: srgen(3,3,12) real(8), intent(out) :: stgen(3,12) ! local variables logical pr integer i,m,n,no,nop,axis ! zero vector tolerance real(8), parameter :: eps=1.d-6 real(8) av(3),r(3,3),t1 real(8) v1(3),v2(3),v3(3) character(20) str1,str2,str3 str1=trim(adjustl(hall))//' ' no=0 nop=0 axis=0 n=0 10 continue ! check for origin shift vector if (scan(str1,'(').eq.1) then if (index(str1,'(0 0 1)').ne.0) then v1(1)=0.d0; v1(2)=0.d0; v1(3)=1.d0 else if (index(str1,'(0 0 -1)').ne.0) then v1(1)=0.d0; v1(2)=0.d0; v1(3)=-1.d0 else write(*,*) write(*,'("Error(seitzgen): origin-shift not available : ",A)') trim(str1) write(*,*) stop end if v1(:)=v1(:)/12.d0 ! apply vector shift to all Seitz matrices do i=1,ngen v3(:)=-v1(:) call r3mv(srgen(:,:,i),v3,v2) v2(:)=v2(:)+stgen(:,i) stgen(:,i)=v2(:)+v1(:) end do goto 20 end if m=scan(str1,' ') if (m.le.1) goto 20 str2=str1(1:m-1) n=n+1 !------------------------------! ! lattice translations ! !------------------------------! if (n.eq.1) then stgen(:,1)=0.d0 if (scan(str2,'P').ne.0) then ngen=1 else if (scan(str2,'A').ne.0) then stgen(1,2)=0.d0 stgen(2,2)=0.5d0 stgen(3,2)=0.5d0 ngen=2 else if (scan(str2,'B').ne.0) then stgen(1,2)=0.5d0 stgen(2,2)=0.d0 stgen(3,2)=0.5d0 ngen=2 else if (scan(str2,'C').ne.0) then stgen(1,2)=0.5d0 stgen(2,2)=0.5d0 stgen(3,2)=0.d0 ngen=2 else if (scan(str2,'I').ne.0) then stgen(:,2)=0.5d0 ngen=2 else if (scan(str2,'R').ne.0) then stgen(1,2)=0.6666666666666666667d0 stgen(2,2)=0.3333333333333333333d0 stgen(3,2)=0.3333333333333333333d0 stgen(1,3)=0.3333333333333333333d0 stgen(2,3)=0.6666666666666666667d0 stgen(3,3)=0.6666666666666666667d0 ngen=3 else if (scan(str2,'S').ne.0) then stgen(1,2)=0.3333333333333333333d0 stgen(2,2)=0.3333333333333333333d0 stgen(3,2)=0.6666666666666666667d0 stgen(1,3)=0.6666666666666666667d0 stgen(2,3)=0.6666666666666666667d0 stgen(3,3)=0.3333333333333333333d0 ngen=3 else if (scan(str2,'T').ne.0) then stgen(1,2)=0.3333333333333333333d0 stgen(2,2)=0.6666666666666666667d0 stgen(3,2)=0.3333333333333333333d0 stgen(1,3)=0.6666666666666666667d0 stgen(2,3)=0.3333333333333333333d0 stgen(3,3)=0.6666666666666666667d0 ngen=3 else if (scan(str2,'F').ne.0) then stgen(1,2)=0.d0 stgen(2,2)=0.5d0 stgen(3,2)=0.5d0 stgen(1,3)=0.5d0 stgen(2,3)=0.d0 stgen(3,3)=0.5d0 stgen(1,4)=0.5d0 stgen(2,4)=0.5d0 stgen(3,4)=0.d0 ngen=4 else write(*,*) write(*,'("Error(seitzgen): Lattice symbol ''",A,"'' not found")') & trim(str2) write(*,*) stop end if ! set the rotations to the identity do i=1,ngen srgen(1,1,i)=1.d0; srgen(1,2,i)=0.d0; srgen(1,3,i)=0.d0 srgen(2,1,i)=0.d0; srgen(2,2,i)=1.d0; srgen(2,3,i)=0.d0 srgen(3,1,i)=0.d0; srgen(3,2,i)=0.d0; srgen(3,3,i)=1.d0 end do ! check if lattice is centrosymmetric if (scan(str2,'-').ne.0) then do i=ngen+1,2*ngen srgen(:,:,i)=-srgen(:,:,i-ngen) stgen(:,i)=stgen(:,i-ngen) end do ngen=2*ngen end if end if !-------------------------------! ! rotation-translations ! !-------------------------------! if (n.ge.2) then ! determine if rotation is proper or improper if (scan(str2,'-').eq.1) then pr=.false. ! remove the minus sign str3=str2(2:) str2=str3 else pr=.true. end if ! determine the order of rotation if (scan(str2,'1').eq.1) then no=1 else if (scan(str2,'2').eq.1) then no=2 else if (scan(str2,'3').eq.1) then no=3 else if (scan(str2,'4').eq.1) then no=4 else if (scan(str2,'6').eq.1) then no=6 else write(*,*) write(*,'("Error(seitzgen): invalid rotation order for Hall symbol ''",A,& &"''")') trim(hall) write(*,*) stop end if ! determine the axis of rotation if (scan(str2,'x').ne.0) then ! a axis axis=1 else if (scan(str2,'y').ne.0) then ! b axis axis=2 else if (scan(str2,'z').ne.0) then ! c axis axis=3 else if (scan(str2,'"').ne.0) then ! a+b axis=5 else if (scan(str2,'*').ne.0) then ! a+b+c axis axis=6 else if (n.eq.2) then ! default first rotation is along c axis=3 else if ((n.eq.3).and.(no.eq.2)) then ! default second rotation if ((nop.eq.2).or.(nop.eq.4)) then ! a axis axis=1 else if ((nop.eq.3).or.(nop.eq.6)) then ! a-b axis axis=4 else write(*,*) write(*,'("Error(seitzgen): malformed Hall symbol ''",A,"''")') trim(hall) write(*,'(" for default second rotation")') write(*,*) stop end if else if ((n.eq.4).and.(no.eq.3)) then ! third rotation around a+b+c axis axis=6 else if (no.eq.1) then ! arbitrary axis for identity axis=1 else write(*,*) write(*,'("Error(seitzgen): malformed Hall symbol ''",A,"''")') trim(hall) write(*,*) stop end if ! determine axis vector av(:)=0.d0 if (axis.eq.1) then ! a axis av(1)=1.d0 else if (axis.eq.2) then ! b axis av(2)=1.d0 else if (axis.eq.3) then ! c axis av(3)=1.d0 else if (axis.eq.4) then ! a-b axis av(1)=1.d0 av(2)=-1.d0 else if (axis.eq.5) then ! a+b axis av(1)=1.d0 av(2)=1.d0 else if (axis.eq.6) then ! a+b+c axis av(:)=1.d0 end if ! compute the rotation part of the Seitz matrix if (axis.eq.1) then ! a axis if (no.eq.1) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.2) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)=-1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)=-1.d0 else if (no.eq.3) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 0.d0; r(2,3)=-1.d0 r(3,1)= 0.d0; r(3,2)= 1.d0; r(3,3)=-1.d0 else if (no.eq.4) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 0.d0; r(2,3)=-1.d0 r(3,1)= 0.d0; r(3,2)= 1.d0; r(3,3)= 0.d0 else if (no.eq.6) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)=-1.d0 r(3,1)= 0.d0; r(3,2)= 1.d0; r(3,3)= 0.d0 end if else if (axis.eq.2) then ! b axis if (no.eq.1) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.2) then r(1,1)=-1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)=-1.d0 else if (no.eq.3) then r(1,1)=-1.d0; r(1,2)= 0.d0; r(1,3)= 1.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)=-1.d0; r(3,2)= 0.d0; r(3,3)= 0.d0 else if (no.eq.4) then r(1,1)= 0.d0; r(1,2)= 0.d0; r(1,3)= 1.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)=-1.d0; r(3,2)= 0.d0; r(3,3)= 0.d0 else if (no.eq.6) then r(1,1)= 0.d0; r(1,2)= 0.d0; r(1,3)= 1.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)=-1.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 end if else if (axis.eq.3) then ! c axis if (no.eq.1) then r(1,1)= 1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)= 1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.2) then r(1,1)=-1.d0; r(1,2)= 0.d0; r(1,3)= 0.d0 r(2,1)= 0.d0; r(2,2)=-1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.3) then r(1,1)= 0.d0; r(1,2)=-1.d0; r(1,3)= 0.d0 r(2,1)= 1.d0; r(2,2)=-1.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.4) then r(1,1)= 0.d0; r(1,2)=-1.d0; r(1,3)= 0.d0 r(2,1)= 1.d0; r(2,2)= 0.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 else if (no.eq.6) then r(1,1)= 1.d0; r(1,2)=-1.d0; r(1,3)= 0.d0 r(2,1)= 1.d0; r(2,2)= 0.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)= 1.d0 end if else if (axis.eq.4) then ! a-b axis r(1,1)= 0.d0; r(1,2)=-1.d0; r(1,3)= 0.d0 r(2,1)=-1.d0; r(2,2)= 0.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)=-1.d0 else if (axis.eq.5) then ! a+b axis r(1,1)= 0.d0; r(1,2)= 1.d0; r(1,3)= 0.d0 r(2,1)= 1.d0; r(2,2)= 0.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 0.d0; r(3,3)=-1.d0 else if (axis.eq.6) then ! a+b+c axis r(1,1)= 0.d0; r(1,2)= 0.d0; r(1,3)= 1.d0 r(2,1)= 1.d0; r(2,2)= 0.d0; r(2,3)= 0.d0 r(3,1)= 0.d0; r(3,2)= 1.d0; r(3,3)= 0.d0 end if ! check if axis is invariant with respect to rotation call r3mv(r,av,v1) t1=sum(abs(av(:)-v1(:))) if (t1.gt.eps) then write(*,*) write(*,'("Error(seitzgen): axis not invariant with respect to rotation")') write(*,'(" for Hall symbol ''",A,"''")') trim(hall) write(*,*) stop end if ! apply inverse for improper rotation if (.not.pr) r(:,:)=-r(:,:) ! increment Seitz matrix count ngen=ngen+1 ! store rotation in main array srgen(:,:,ngen)=r(:,:) ! remove rotation symbol str3=str2(2:) str2=str3 ! determine translations stgen(:,ngen)=0.d0 if (scan(str2,'a').ne.0) then stgen(1,ngen)=stgen(1,ngen)+0.5d0 end if if (scan(str2,'b').ne.0) then stgen(2,ngen)=stgen(2,ngen)+0.5d0 end if if (scan(str2,'c').ne.0) then stgen(3,ngen)=stgen(3,ngen)+0.5d0 end if if (scan(str2,'n').ne.0) then stgen(:,ngen)=stgen(:,ngen)+0.5d0 end if if (scan(str2,'u').ne.0) then stgen(1,ngen)=stgen(1,ngen)+0.25d0 end if if (scan(str2,'v').ne.0) then stgen(2,ngen)=stgen(2,ngen)+0.25d0 end if if (scan(str2,'w').ne.0) then stgen(3,ngen)=stgen(3,ngen)+0.25d0 end if if (scan(str2,'d').ne.0) then stgen(:,ngen)=stgen(:,ngen)+0.25d0 end if if (scan(str2,'1').ne.0) then if (no.eq.3) then stgen(:,ngen)=stgen(:,ngen)+0.3333333333333333333d0*av(:) else if (no.eq.4) then stgen(:,ngen)=stgen(:,ngen)+0.25d0*av(:) else if (no.eq.6) then stgen(:,ngen)=stgen(:,ngen)+0.1666666666666666667d0*av(:) end if else if (scan(str2,'2').ne.0) then if (no.eq.3) then stgen(:,ngen)=stgen(:,ngen)+0.6666666666666666667d0*av(:) else if (no.eq.6) then stgen(:,ngen)=stgen(:,ngen)+0.3333333333333333333d0*av(:) end if else if (scan(str2,'3').ne.0) then if (no.eq.4) then stgen(:,ngen)=stgen(:,ngen)+0.75d0*av(:) end if else if (scan(str2,'4').ne.0) then if (no.eq.6) then stgen(:,ngen)=stgen(:,ngen)+0.6666666666666666667d0*av(:) end if else if (scan(str2,'5').ne.0) then if (no.eq.6) then stgen(:,ngen)=stgen(:,ngen)+0.8333333333333333333d0*av(:) end if end if end if str3=adjustl(str1(m:)) str1=str3 nop=no goto 10 20 continue ! map translations to [0,1) do i=1,ngen call r3frac(eps,stgen(:,i)) end do return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/seitzmul.f900000644000000000000000000000013214061636515017266 xustar0030 mtime=1623670093.535103773 30 atime=1623670093.534103774 30 ctime=1623670093.535103773 elk-7.2.42/src/spacegroup/seitzmul.f900000644002504400250440000000112314061636515021320 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine seitzmul(eps,sr1,st1,sr2,st2,sr3,st3) implicit none ! arguments real(8), intent(in) :: eps real(8), intent(in) :: sr1(3,3) real(8), intent(in) :: st1(3) real(8), intent(in) :: sr2(3,3) real(8), intent(in) :: st2(3) real(8), intent(out) :: sr3(3,3) real(8), intent(out) :: st3(3) call r3mv(sr1,st2,st3) st3(:)=st3(:)+st1(:) call r3frac(eps,st3) call r3mm(sr1,sr2,sr3) return end subroutine elk-7.2.42/src/spacegroup/PaxHeaders.21776/sgsymb.f900000644000000000000000000000013214061636515016716 xustar0030 mtime=1623670093.536103772 30 atime=1623670093.536103772 30 ctime=1623670093.536103772 elk-7.2.42/src/spacegroup/sgsymb.f900000644002504400250440000010040014061636515020746 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: sgsymb ! !INTERFACE: subroutine sgsymb(hrmg,num,schn,hall) ! !INPUT/OUTPUT PARAMETERS: ! hrmg : Hermann-Mauguin symbol (in,character(20)) ! num : space group number (out,character(20)) ! schn : Schoenflies symbol (out,character(20)) ! hall : Hall symbol (out,character(20)) ! !DESCRIPTION: ! Returns the space group number, Schoenflies and Hall symbols given the ! Hermann-Mauguin symbol. The routine is case-sensitive. With acknowledgements ! to Ralf W. Grosse-Kunstleve and the tables available at ! {\tt http://cci.lbl.gov/sginfo/}. ! ! !REVISION HISTORY: ! Created October 2006 (JKD) !EOP !BOC implicit none ! arguments character(20), intent(in) :: hrmg character(20), intent(out) :: num character(20), intent(out) :: schn character(20), intent(out) :: hall select case(trim(adjustl(hrmg))) case('P1') num='1' schn='C1^1' hall='P 1' case('P-1') num='2' schn='Ci^1' hall='-P 1' case('P2:b') num='3:b' schn='C2^1' hall='P 2y' case('P2:c') num='3:c' schn='C2^1' hall='P 2' case('P2:a') num='3:a' schn='C2^1' hall='P 2x' case('P21:b') num='4:b' schn='C2^2' hall='P 2yb' case('P21:c') num='4:c' schn='C2^2' hall='P 2c' case('P21:a') num='4:a' schn='C2^2' hall='P 2xa' case('C2:b1') num='5:b1' schn='C2^3' hall='C 2y' case('C2:b2') num='5:b2' schn='C2^3' hall='A 2y' case('C2:b3') num='5:b3' schn='C2^3' hall='I 2y' case('C2:c1') num='5:c1' schn='C2^3' hall='A 2' case('C2:c2') num='5:c2' schn='C2^3' hall='B 2' case('C2:c3') num='5:c3' schn='C2^3' hall='I 2' case('C2:a1') num='5:a1' schn='C2^3' hall='B 2x' case('C2:a2') num='5:a2' schn='C2^3' hall='C 2x' case('C2:a3') num='5:a3' schn='C2^3' hall='I 2x' case('Pm:b') num='6:b' schn='Cs^1' hall='P -2y' case('Pm:c') num='6:c' schn='Cs^1' hall='P -2' case('Pm:a') num='6:a' schn='Cs^1' hall='P -2x' case('Pc:b1') num='7:b1' schn='Cs^2' hall='P -2yc' case('Pc:b2') num='7:b2' schn='Cs^2' hall='P -2yac' case('Pc:b3') num='7:b3' schn='Cs^2' hall='P -2ya' case('Pc:c1') num='7:c1' schn='Cs^2' hall='P -2a' case('Pc:c2') num='7:c2' schn='Cs^2' hall='P -2ab' case('Pc:c3') num='7:c3' schn='Cs^2' hall='P -2b' case('Pc:a1') num='7:a1' schn='Cs^2' hall='P -2xb' case('Pc:a2') num='7:a2' schn='Cs^2' hall='P -2xbc' case('Pc:a3') num='7:a3' schn='Cs^2' hall='P -2xc' case('Cm:b1') num='8:b1' schn='Cs^3' hall='C -2y' case('Cm:b2') num='8:b2' schn='Cs^3' hall='A -2y' case('Cm:b3') num='8:b3' schn='Cs^3' hall='I -2y' case('Cm:c1') num='8:c1' schn='Cs^3' hall='A -2' case('Cm:c2') num='8:c2' schn='Cs^3' hall='B -2' case('Cm:c3') num='8:c3' schn='Cs^3' hall='I -2' case('Cm:a1') num='8:a1' schn='Cs^3' hall='B -2x' case('Cm:a2') num='8:a2' schn='Cs^3' hall='C -2x' case('Cm:a3') num='8:a3' schn='Cs^3' hall='I -2x' case('Cc:b1') num='9:b1' schn='Cs^4' hall='C -2yc' case('Cc:b2') num='9:b2' schn='Cs^4' hall='A -2yac' case('Cc:b3') num='9:b3' schn='Cs^4' hall='I -2ya' case('Cc:-b1') num='9:-b1' schn='Cs^4' hall='A -2ya' case('Cc:-b2') num='9:-b2' schn='Cs^4' hall='C -2ybc' case('Cc:-b3') num='9:-b3' schn='Cs^4' hall='I -2yc' case('Cc:c1') num='9:c1' schn='Cs^4' hall='A -2a' case('Cc:c2') num='9:c2' schn='Cs^4' hall='B -2bc' case('Cc:c3') num='9:c3' schn='Cs^4' hall='I -2b' case('Cc:-c1') num='9:-c1' schn='Cs^4' hall='B -2b' case('Cc:-c2') num='9:-c2' schn='Cs^4' hall='A -2ac' case('Cc:-c3') num='9:-c3' schn='Cs^4' hall='I -2a' case('Cc:a1') num='9:a1' schn='Cs^4' hall='B -2xb' case('Cc:a2') num='9:a2' schn='Cs^4' hall='C -2xbc' case('Cc:a3') num='9:a3' schn='Cs^4' hall='I -2xc' case('Cc:-a1') num='9:-a1' schn='Cs^4' hall='C -2xc' case('Cc:-a2') num='9:-a2' schn='Cs^4' hall='B -2xbc' case('Cc:-a3') num='9:-a3' schn='Cs^4' hall='I -2xb' case('P2/m:b') num='10:b' schn='C2h^1' hall='-P 2y' case('P2/m:c') num='10:c' schn='C2h^1' hall='-P 2' case('P2/m:a') num='10:a' schn='C2h^1' hall='-P 2x' case('P21/m:b') num='11:b' schn='C2h^2' hall='-P 2yb' case('P21/m:c') num='11:c' schn='C2h^2' hall='-P 2c' case('P21/m:a') num='11:a' schn='C2h^2' hall='-P 2xa' case('C2/m:b1') num='12:b1' schn='C2h^3' hall='-C 2y' case('C2/m:b2') num='12:b2' schn='C2h^3' hall='-A 2y' case('C2/m:b3') num='12:b3' schn='C2h^3' hall='-I 2y' case('C2/m:c1') num='12:c1' schn='C2h^3' hall='-A 2' case('C2/m:c2') num='12:c2' schn='C2h^3' hall='-B 2' case('C2/m:c3') num='12:c3' schn='C2h^3' hall='-I 2' case('C2/m:a1') num='12:a1' schn='C2h^3' hall='-B 2x' case('C2/m:a2') num='12:a2' schn='C2h^3' hall='-C 2x' case('C2/m:a3') num='12:a3' schn='C2h^3' hall='-I 2x' case('P2/c:b1') num='13:b1' schn='C2h^4' hall='-P 2yc' case('P2/c:b2') num='13:b2' schn='C2h^4' hall='-P 2yac' case('P2/c:b3') num='13:b3' schn='C2h^4' hall='-P 2ya' case('P2/c:c1') num='13:c1' schn='C2h^4' hall='-P 2a' case('P2/c:c2') num='13:c2' schn='C2h^4' hall='-P 2ab' case('P2/c:c3') num='13:c3' schn='C2h^4' hall='-P 2b' case('P2/c:a1') num='13:a1' schn='C2h^4' hall='-P 2xb' case('P2/c:a2') num='13:a2' schn='C2h^4' hall='-P 2xbc' case('P2/c:a3') num='13:a3' schn='C2h^4' hall='-P 2xc' case('P21/c:b1') num='14:b1' schn='C2h^5' hall='-P 2ybc' case('P21/c:b2') num='14:b2' schn='C2h^5' hall='-P 2yn' case('P21/c:b3') num='14:b3' schn='C2h^5' hall='-P 2yab' case('P21/c:c1') num='14:c1' schn='C2h^5' hall='-P 2ac' case('P21/c:c2') num='14:c2' schn='C2h^5' hall='-P 2n' case('P21/c:c3') num='14:c3' schn='C2h^5' hall='-P 2bc' case('P21/c:a1') num='14:a1' schn='C2h^5' hall='-P 2xab' case('P21/c:a2') num='14:a2' schn='C2h^5' hall='-P 2xn' case('P21/c:a3') num='14:a3' schn='C2h^5' hall='-P 2xac' case('C2/c:b1') num='15:b1' schn='C2h^6' hall='-C 2yc' case('C2/c:b2') num='15:b2' schn='C2h^6' hall='-A 2yac' case('C2/c:b3') num='15:b3' schn='C2h^6' hall='-I 2ya' case('C2/c:-b1') num='15:-b1' schn='C2h^6' hall='-A 2ya' case('C2/c:-b2') num='15:-b2' schn='C2h^6' hall='-C 2ybc' case('C2/c:-b3') num='15:-b3' schn='C2h^6' hall='-I 2yc' case('C2/c:c1') num='15:c1' schn='C2h^6' hall='-A 2a' case('C2/c:c2') num='15:c2' schn='C2h^6' hall='-B 2bc' case('C2/c:c3') num='15:c3' schn='C2h^6' hall='-I 2b' case('C2/c:-c1') num='15:-c1' schn='C2h^6' hall='-B 2b' case('C2/c:-c2') num='15:-c2' schn='C2h^6' hall='-A 2ac' case('C2/c:-c3') num='15:-c3' schn='C2h^6' hall='-I 2a' case('C2/c:a1') num='15:a1' schn='C2h^6' hall='-B 2xb' case('C2/c:a2') num='15:a2' schn='C2h^6' hall='-C 2xbc' case('C2/c:a3') num='15:a3' schn='C2h^6' hall='-I 2xc' case('C2/c:-a1') num='15:-a1' schn='C2h^6' hall='-C 2xc' case('C2/c:-a2') num='15:-a2' schn='C2h^6' hall='-B 2xbc' case('C2/c:-a3') num='15:-a3' schn='C2h^6' hall='-I 2xb' case('P222') num='16' schn='D2^1' hall='P 2 2' case('P2221') num='17' schn='D2^2' hall='P 2c 2' case('P2122') num='17:cab' schn='D2^2' hall='P 2a 2a' case('P2212') num='17:bca' schn='D2^2' hall='P 2 2b' case('P21212') num='18' schn='D2^3' hall='P 2 2ab' case('P22121') num='18:cab' schn='D2^3' hall='P 2bc 2' case('P21221') num='18:bca' schn='D2^3' hall='P 2ac 2ac' case('P212121') num='19' schn='D2^4' hall='P 2ac 2ab' case('C2221') num='20' schn='D2^5' hall='C 2c 2' case('A2122') num='20:cab' schn='D2^5' hall='A 2a 2a' case('B2212') num='20:bca' schn='D2^5' hall='B 2 2b' case('C222') num='21' schn='D2^6' hall='C 2 2' case('A222') num='21:cab' schn='D2^6' hall='A 2 2' case('B222') num='21:bca' schn='D2^6' hall='B 2 2' case('F222') num='22' schn='D2^7' hall='F 2 2' case('I222') num='23' schn='D2^8' hall='I 2 2' case('I212121') num='24' schn='D2^9' hall='I 2b 2c' case('Pmm2') num='25' schn='C2v^1' hall='P 2 -2' case('P2mm') num='25:cab' schn='C2v^1' hall='P -2 2' case('Pm2m') num='25:bca' schn='C2v^1' hall='P -2 -2' case('Pmc21') num='26' schn='C2v^2' hall='P 2c -2' case('Pcm21') num='26:ba-c' schn='C2v^2' hall='P 2c -2c' case('P21ma') num='26:cab' schn='C2v^2' hall='P -2a 2a' case('P21am') num='26:-cba' schn='C2v^2' hall='P -2 2a' case('Pb21m') num='26:bca' schn='C2v^2' hall='P -2 -2b' case('Pm21b') num='26:a-cb' schn='C2v^2' hall='P -2b -2' case('Pcc2') num='27' schn='C2v^3' hall='P 2 -2c' case('P2aa') num='27:cab' schn='C2v^3' hall='P -2a 2' case('Pb2b') num='27:bca' schn='C2v^3' hall='P -2b -2b' case('Pma2') num='28' schn='C2v^4' hall='P 2 -2a' case('Pbm2') num='28:ba-c' schn='C2v^4' hall='P 2 -2b' case('P2mb') num='28:cab' schn='C2v^4' hall='P -2b 2' case('P2cm') num='28:-cba' schn='C2v^4' hall='P -2c 2' case('Pc2m') num='28:bca' schn='C2v^4' hall='P -2c -2c' case('Pm2a') num='28:a-cb' schn='C2v^4' hall='P -2a -2a' case('Pca21') num='29' schn='C2v^5' hall='P 2c -2ac' case('Pbc21') num='29:ba-c' schn='C2v^5' hall='P 2c -2b' case('P21ab') num='29:cab' schn='C2v^5' hall='P -2b 2a' case('P21ca') num='29:-cba' schn='C2v^5' hall='P -2ac 2a' case('Pc21b') num='29:bca' schn='C2v^5' hall='P -2bc -2c' case('Pb21a') num='29:a-cb' schn='C2v^5' hall='P -2a -2ab' case('Pnc2') num='30' schn='C2v^6' hall='P 2 -2bc' case('Pcn2') num='30:ba-c' schn='C2v^6' hall='P 2 -2ac' case('P2na') num='30:cab' schn='C2v^6' hall='P -2ac 2' case('P2an') num='30:-cba' schn='C2v^6' hall='P -2ab 2' case('Pb2n') num='30:bca' schn='C2v^6' hall='P -2ab -2ab' case('Pn2b') num='30:a-cb' schn='C2v^6' hall='P -2bc -2bc' case('Pmn21') num='31' schn='C2v^7' hall='P 2ac -2' case('Pnm21') num='31:ba-c' schn='C2v^7' hall='P 2bc -2bc' case('P21mn') num='31:cab' schn='C2v^7' hall='P -2ab 2ab' case('P21nm') num='31:-cba' schn='C2v^7' hall='P -2 2ac' case('Pn21m') num='31:bca' schn='C2v^7' hall='P -2 -2bc' case('Pm21n') num='31:a-cb' schn='C2v^7' hall='P -2ab -2' case('Pba2') num='32' schn='C2v^8' hall='P 2 -2ab' case('P2cb') num='32:cab' schn='C2v^8' hall='P -2bc 2' case('Pc2a') num='32:bca' schn='C2v^8' hall='P -2ac -2ac' case('Pna21') num='33' schn='C2v^9' hall='P 2c -2n' case('Pbn21') num='33:ba-c' schn='C2v^9' hall='P 2c -2ab' case('P21nb') num='33:cab' schn='C2v^9' hall='P -2bc 2a' case('P21cn') num='33:-cba' schn='C2v^9' hall='P -2n 2a' case('Pc21n') num='33:bca' schn='C2v^9' hall='P -2n -2ac' case('Pn21a') num='33:a-cb' schn='C2v^9' hall='P -2ac -2n' case('Pnn2') num='34' schn='C2v^10' hall='P 2 -2n' case('P2nn') num='34:cab' schn='C2v^10' hall='P -2n 2' case('Pn2n') num='34:bca' schn='C2v^10' hall='P -2n -2n' case('Cmm2') num='35' schn='C2v^11' hall='C 2 -2' case('A2mm') num='35:cab' schn='C2v^11' hall='A -2 2' case('Bm2m') num='35:bca' schn='C2v^11' hall='B -2 -2' case('Cmc21') num='36' schn='C2v^12' hall='C 2c -2' case('Ccm21') num='36:ba-c' schn='C2v^12' hall='C 2c -2c' case('A21ma') num='36:cab' schn='C2v^12' hall='A -2a 2a' case('A21am') num='36:-cba' schn='C2v^12' hall='A -2 2a' case('Bb21m') num='36:bca' schn='C2v^12' hall='B -2 -2b' case('Bm21b') num='36:a-cb' schn='C2v^12' hall='B -2b -2' case('Ccc2') num='37' schn='C2v^13' hall='C 2 -2c' case('A2aa') num='37:cab' schn='C2v^13' hall='A -2a 2' case('Bb2b') num='37:bca' schn='C2v^13' hall='B -2b -2b' case('Amm2') num='38' schn='C2v^14' hall='A 2 -2' case('Bmm2') num='38:ba-c' schn='C2v^14' hall='B 2 -2' case('B2mm') num='38:cab' schn='C2v^14' hall='B -2 2' case('C2mm') num='38:-cba' schn='C2v^14' hall='C -2 2' case('Cm2m') num='38:bca' schn='C2v^14' hall='C -2 -2' case('Am2m') num='38:a-cb' schn='C2v^14' hall='A -2 -2' case('Abm2') num='39' schn='C2v^15' hall='A 2 -2c' case('Bma2') num='39:ba-c' schn='C2v^15' hall='B 2 -2c' case('B2cm') num='39:cab' schn='C2v^15' hall='B -2c 2' case('C2mb') num='39:-cba' schn='C2v^15' hall='C -2b 2' case('Cm2a') num='39:bca' schn='C2v^15' hall='C -2b -2b' case('Ac2m') num='39:a-cb' schn='C2v^15' hall='A -2c -2c' case('Ama2') num='40' schn='C2v^16' hall='A 2 -2a' case('Bbm2') num='40:ba-c' schn='C2v^16' hall='B 2 -2b' case('B2mb') num='40:cab' schn='C2v^16' hall='B -2b 2' case('C2cm') num='40:-cba' schn='C2v^16' hall='C -2c 2' case('Cc2m') num='40:bca' schn='C2v^16' hall='C -2c -2c' case('Am2a') num='40:a-cb' schn='C2v^16' hall='A -2a -2a' case('Aba2') num='41' schn='C2v^17' hall='A 2 -2ac' case('Bba2') num='41:ba-c' schn='C2v^17' hall='B 2 -2bc' case('B2cb') num='41:cab' schn='C2v^17' hall='B -2bc 2' case('C2cb') num='41:-cba' schn='C2v^17' hall='C -2bc 2' case('Cc2a') num='41:bca' schn='C2v^17' hall='C -2bc -2bc' case('Ac2a') num='41:a-cb' schn='C2v^17' hall='A -2ac -2ac' case('Fmm2') num='42' schn='C2v^18' hall='F 2 -2' case('F2mm') num='42:cab' schn='C2v^18' hall='F -2 2' case('Fm2m') num='42:bca' schn='C2v^18' hall='F -2 -2' case('Fdd2') num='43' schn='C2v^19' hall='F 2 -2d' case('F2dd') num='43:cab' schn='C2v^19' hall='F -2d 2' case('Fd2d') num='43:bca' schn='C2v^19' hall='F -2d -2d' case('Imm2') num='44' schn='C2v^20' hall='I 2 -2' case('I2mm') num='44:cab' schn='C2v^20' hall='I -2 2' case('Im2m') num='44:bca' schn='C2v^20' hall='I -2 -2' case('Iba2') num='45' schn='C2v^21' hall='I 2 -2c' case('I2cb') num='45:cab' schn='C2v^21' hall='I -2a 2' case('Ic2a') num='45:bca' schn='C2v^21' hall='I -2b -2b' case('Ima2') num='46' schn='C2v^22' hall='I 2 -2a' case('Ibm2') num='46:ba-c' schn='C2v^22' hall='I 2 -2b' case('I2mb') num='46:cab' schn='C2v^22' hall='I -2b 2' case('I2cm') num='46:-cba' schn='C2v^22' hall='I -2c 2' case('Ic2m') num='46:bca' schn='C2v^22' hall='I -2c -2c' case('Im2a') num='46:a-cb' schn='C2v^22' hall='I -2a -2a' case('Pmmm') num='47' schn='D2h^1' hall='-P 2 2' case('Pnnn:1') num='48:1' schn='D2h^2' hall='P 2 2 -1n' case('Pnnn:2') num='48:2' schn='D2h^2' hall='-P 2ab 2bc' case('Pccm') num='49' schn='D2h^3' hall='-P 2 2c' case('Pmaa') num='49:cab' schn='D2h^3' hall='-P 2a 2' case('Pbmb') num='49:bca' schn='D2h^3' hall='-P 2b 2b' case('Pban:1') num='50:1' schn='D2h^4' hall='P 2 2 -1ab' case('Pban:2') num='50:2' schn='D2h^4' hall='-P 2ab 2b' case('Pncb:1') num='50:1cab' schn='D2h^4' hall='P 2 2 -1bc' case('Pncb:2') num='50:2cab' schn='D2h^4' hall='-P 2b 2bc' case('Pcna:1') num='50:1bca' schn='D2h^4' hall='P 2 2 -1ac' case('Pcna:2') num='50:2bca' schn='D2h^4' hall='-P 2a 2c' case('Pmma') num='51' schn='D2h^5' hall='-P 2a 2a' case('Pmmb') num='51:ba-c' schn='D2h^5' hall='-P 2b 2' case('Pbmm') num='51:cab' schn='D2h^5' hall='-P 2 2b' case('Pcmm') num='51:-cba' schn='D2h^5' hall='-P 2c 2c' case('Pmcm') num='51:bca' schn='D2h^5' hall='-P 2c 2' case('Pmam') num='51:a-cb' schn='D2h^5' hall='-P 2 2a' case('Pnna') num='52' schn='D2h^6' hall='-P 2a 2bc' case('Pnnb') num='52:ba-c' schn='D2h^6' hall='-P 2b 2n' case('Pbnn') num='52:cab' schn='D2h^6' hall='-P 2n 2b' case('Pcnn') num='52:-cba' schn='D2h^6' hall='-P 2ab 2c' case('Pncn') num='52:bca' schn='D2h^6' hall='-P 2ab 2n' case('Pnan') num='52:a-cb' schn='D2h^6' hall='-P 2n 2bc' case('Pmna') num='53' schn='D2h^7' hall='-P 2ac 2' case('Pnmb') num='53:ba-c' schn='D2h^7' hall='-P 2bc 2bc' case('Pbmn') num='53:cab' schn='D2h^7' hall='-P 2ab 2ab' case('Pcnm') num='53:-cba' schn='D2h^7' hall='-P 2 2ac' case('Pncm') num='53:bca' schn='D2h^7' hall='-P 2 2bc' case('Pman') num='53:a-cb' schn='D2h^7' hall='-P 2ab 2' case('Pcca') num='54' schn='D2h^8' hall='-P 2a 2ac' case('Pccb') num='54:ba-c' schn='D2h^8' hall='-P 2b 2c' case('Pbaa') num='54:cab' schn='D2h^8' hall='-P 2a 2b' case('Pcaa') num='54:-cba' schn='D2h^8' hall='-P 2ac 2c' case('Pbcb') num='54:bca' schn='D2h^8' hall='-P 2bc 2b' case('Pbab') num='54:a-cb' schn='D2h^8' hall='-P 2b 2ab' case('Pbam') num='55' schn='D2h^9' hall='-P 2 2ab' case('Pmcb') num='55:cab' schn='D2h^9' hall='-P 2bc 2' case('Pcma') num='55:bca' schn='D2h^9' hall='-P 2ac 2ac' case('Pccn') num='56' schn='D2h^10' hall='-P 2ab 2ac' case('Pnaa') num='56:cab' schn='D2h^10' hall='-P 2ac 2bc' case('Pbnb') num='56:bca' schn='D2h^10' hall='-P 2bc 2ab' case('Pbcm') num='57' schn='D2h^11' hall='-P 2c 2b' case('Pcam') num='57:ba-c' schn='D2h^11' hall='-P 2c 2ac' case('Pmca') num='57:cab' schn='D2h^11' hall='-P 2ac 2a' case('Pmab') num='57:-cba' schn='D2h^11' hall='-P 2b 2a' case('Pbma') num='57:bca' schn='D2h^11' hall='-P 2a 2ab' case('Pcmb') num='57:a-cb' schn='D2h^11' hall='-P 2bc 2c' case('Pnnm') num='58' schn='D2h^12' hall='-P 2 2n' case('Pmnn') num='58:cab' schn='D2h^12' hall='-P 2n 2' case('Pnmn') num='58:bca' schn='D2h^12' hall='-P 2n 2n' case('Pmmn:1') num='59:1' schn='D2h^13' hall='P 2 2ab -1ab' case('Pmmn:2') num='59:2' schn='D2h^13' hall='-P 2ab 2a' case('Pnmm:1') num='59:1cab' schn='D2h^13' hall='P 2bc 2 -1bc' case('Pnmm:2') num='59:2cab' schn='D2h^13' hall='-P 2c 2bc' case('Pmnm:1') num='59:1bca' schn='D2h^13' hall='P 2ac 2ac -1ac' case('Pmnm:2') num='59:2bca' schn='D2h^13' hall='-P 2c 2a' case('Pbcn') num='60' schn='D2h^14' hall='-P 2n 2ab' case('Pcan') num='60:ba-c' schn='D2h^14' hall='-P 2n 2c' case('Pnca') num='60:cab' schn='D2h^14' hall='-P 2a 2n' case('Pnab') num='60:-cba' schn='D2h^14' hall='-P 2bc 2n' case('Pbna') num='60:bca' schn='D2h^14' hall='-P 2ac 2b' case('Pcnb') num='60:a-cb' schn='D2h^14' hall='-P 2b 2ac' case('Pbca') num='61' schn='D2h^15' hall='-P 2ac 2ab' case('Pcab') num='61:ba-c' schn='D2h^15' hall='-P 2bc 2ac' case('Pnma') num='62' schn='D2h^16' hall='-P 2ac 2n' case('Pmnb') num='62:ba-c' schn='D2h^16' hall='-P 2bc 2a' case('Pbnm') num='62:cab' schn='D2h^16' hall='-P 2c 2ab' case('Pcmn') num='62:-cba' schn='D2h^16' hall='-P 2n 2ac' case('Pmcn') num='62:bca' schn='D2h^16' hall='-P 2n 2a' case('Pnam') num='62:a-cb' schn='D2h^16' hall='-P 2c 2n' case('Cmcm') num='63' schn='D2h^17' hall='-C 2c 2' case('Ccmm') num='63:ba-c' schn='D2h^17' hall='-C 2c 2c' case('Amma') num='63:cab' schn='D2h^17' hall='-A 2a 2a' case('Amam') num='63:-cba' schn='D2h^17' hall='-A 2 2a' case('Bbmm') num='63:bca' schn='D2h^17' hall='-B 2 2b' case('Bmmb') num='63:a-cb' schn='D2h^17' hall='-B 2b 2' case('Cmca') num='64' schn='D2h^18' hall='-C 2bc 2' case('Ccmb') num='64:ba-c' schn='D2h^18' hall='-C 2bc 2bc' case('Abma') num='64:cab' schn='D2h^18' hall='-A 2ac 2ac' case('Acam') num='64:-cba' schn='D2h^18' hall='-A 2 2ac' case('Bbcm') num='64:bca' schn='D2h^18' hall='-B 2 2bc' case('Bmab') num='64:a-cb' schn='D2h^18' hall='-B 2bc 2' case('Cmmm') num='65' schn='D2h^19' hall='-C 2 2' case('Ammm') num='65:cab' schn='D2h^19' hall='-A 2 2' case('Bmmm') num='65:bca' schn='D2h^19' hall='-B 2 2' case('Cccm') num='66' schn='D2h^20' hall='-C 2 2c' case('Amaa') num='66:cab' schn='D2h^20' hall='-A 2a 2' case('Bbmb') num='66:bca' schn='D2h^20' hall='-B 2b 2b' case('Cmma') num='67' schn='D2h^21' hall='-C 2b 2' case('Cmmb') num='67:ba-c' schn='D2h^21' hall='-C 2b 2b' case('Abmm') num='67:cab' schn='D2h^21' hall='-A 2c 2c' case('Acmm') num='67:-cba' schn='D2h^21' hall='-A 2 2c' case('Bmcm') num='67:bca' schn='D2h^21' hall='-B 2 2c' case('Bmam') num='67:a-cb' schn='D2h^21' hall='-B 2c 2' case('Ccca:1') num='68:1' schn='D2h^22' hall='C 2 2 -1bc' case('Ccca:2') num='68:2' schn='D2h^22' hall='-C 2b 2bc' case('Cccb:1') num='68:1ba-c' schn='D2h^22' hall='C 2 2 -1bc' case('Cccb:2') num='68:2ba-c' schn='D2h^22' hall='-C 2b 2c' case('Abaa:1') num='68:1cab' schn='D2h^22' hall='A 2 2 -1ac' case('Abaa:2') num='68:2cab' schn='D2h^22' hall='-A 2a 2c' case('Acaa:1') num='68:1-cba' schn='D2h^22' hall='A 2 2 -1ac' case('Acaa:2') num='68:2-cba' schn='D2h^22' hall='-A 2ac 2c' case('Bbcb:1') num='68:1bca' schn='D2h^22' hall='B 2 2 -1bc' case('Bbcb:2') num='68:2bca' schn='D2h^22' hall='-B 2bc 2b' case('Bbab:1') num='68:1a-cb' schn='D2h^22' hall='B 2 2 -1bc' case('Bbab:2') num='68:2a-cb' schn='D2h^22' hall='-B 2b 2bc' case('Fmmm') num='69' schn='D2h^23' hall='-F 2 2' case('Fddd:1') num='70:1' schn='D2h^24' hall='F 2 2 -1d' case('Fddd:2') num='70:2' schn='D2h^24' hall='-F 2uv 2vw' case('Immm') num='71' schn='D2h^25' hall='-I 2 2' case('Ibam') num='72' schn='D2h^26' hall='-I 2 2c' case('Imcb') num='72:cab' schn='D2h^26' hall='-I 2a 2' case('Icma') num='72:bca' schn='D2h^26' hall='-I 2b 2b' case('Ibca') num='73' schn='D2h^27' hall='-I 2b 2c' case('Icab') num='73:ba-c' schn='D2h^27' hall='-I 2a 2b' case('Imma') num='74' schn='D2h^28' hall='-I 2b 2' case('Immb') num='74:ba-c' schn='D2h^28' hall='-I 2a 2a' case('Ibmm') num='74:cab' schn='D2h^28' hall='-I 2c 2c' case('Icmm') num='74:-cba' schn='D2h^28' hall='-I 2 2b' case('Imcm') num='74:bca' schn='D2h^28' hall='-I 2 2a' case('Imam') num='74:a-cb' schn='D2h^28' hall='-I 2c 2' case('P4') num='75' schn='C4^1' hall='P 4' case('P41') num='76' schn='C4^2' hall='P 4w' case('P42') num='77' schn='C4^3' hall='P 4c' case('P43') num='78' schn='C4^4' hall='P 4cw' case('I4') num='79' schn='C4^5' hall='I 4' case('I41') num='80' schn='C4^6' hall='I 4bw' case('P-4') num='81' schn='S4^1' hall='P -4' case('I-4') num='82' schn='S4^2' hall='I -4' case('P4/m') num='83' schn='C4h^1' hall='-P 4' case('P42/m') num='84' schn='C4h^2' hall='-P 4c' case('P4/n:1') num='85:1' schn='C4h^3' hall='P 4ab -1ab' case('P4/n:2') num='85:2' schn='C4h^3' hall='-P 4a' case('P42/n:1') num='86:1' schn='C4h^4' hall='P 4n -1n' case('P42/n:2') num='86:2' schn='C4h^4' hall='-P 4bc' case('I4/m') num='87' schn='C4h^5' hall='-I 4' case('I41/a:1') num='88:1' schn='C4h^6' hall='I 4bw -1bw' case('I41/a:2') num='88:2' schn='C4h^6' hall='-I 4ad' case('P422') num='89' schn='D4^1' hall='P 4 2' case('P4212') num='90' schn='D4^2' hall='P 4ab 2ab' case('P4122') num='91' schn='D4^3' hall='P 4w 2c' case('P41212') num='92' schn='D4^4' hall='P 4abw 2nw' case('P4222') num='93' schn='D4^5' hall='P 4c 2' case('P42212') num='94' schn='D4^6' hall='P 4n 2n' case('P4322') num='95' schn='D4^7' hall='P 4cw 2c' case('P43212') num='96' schn='D4^8' hall='P 4nw 2abw' case('I422') num='97' schn='D4^9' hall='I 4 2' case('I4122') num='98' schn='D4^10' hall='I 4bw 2bw' case('P4mm') num='99' schn='C4v^1' hall='P 4 -2' case('P4bm') num='100' schn='C4v^2' hall='P 4 -2ab' case('P42cm') num='101' schn='C4v^3' hall='P 4c -2c' case('P42nm') num='102' schn='C4v^4' hall='P 4n -2n' case('P4cc') num='103' schn='C4v^5' hall='P 4 -2c' case('P4nc') num='104' schn='C4v^6' hall='P 4 -2n' case('P42mc') num='105' schn='C4v^7' hall='P 4c -2' case('P42bc') num='106' schn='C4v^8' hall='P 4c -2ab' case('I4mm') num='107' schn='C4v^9' hall='I 4 -2' case('I4cm') num='108' schn='C4v^10' hall='I 4 -2c' case('I41md') num='109' schn='C4v^11' hall='I 4bw -2' case('I41cd') num='110' schn='C4v^12' hall='I 4bw -2c' case('P-42m') num='111' schn='D2d^1' hall='P -4 2' case('P-42c') num='112' schn='D2d^2' hall='P -4 2c' case('P-421m') num='113' schn='D2d^3' hall='P -4 2ab' case('P-421c') num='114' schn='D2d^4' hall='P -4 2n' case('P-4m2') num='115' schn='D2d^5' hall='P -4 -2' case('P-4c2') num='116' schn='D2d^6' hall='P -4 -2c' case('P-4b2') num='117' schn='D2d^7' hall='P -4 -2ab' case('P-4n2') num='118' schn='D2d^8' hall='P -4 -2n' case('I-4m2') num='119' schn='D2d^9' hall='I -4 -2' case('I-4c2') num='120' schn='D2d^10' hall='I -4 -2c' case('I-42m') num='121' schn='D2d^11' hall='I -4 2' case('I-42d') num='122' schn='D2d^12' hall='I -4 2bw' case('P4/mmm') num='123' schn='D4h^1' hall='-P 4 2' case('P4/mcc') num='124' schn='D4h^2' hall='-P 4 2c' case('P4/nbm:1') num='125:1' schn='D4h^3' hall='P 4 2 -1ab' case('P4/nbm:2') num='125:2' schn='D4h^3' hall='-P 4a 2b' case('P4/nnc:1') num='126:1' schn='D4h^4' hall='P 4 2 -1n' case('P4/nnc:2') num='126:2' schn='D4h^4' hall='-P 4a 2bc' case('P4/mbm') num='127' schn='D4h^5' hall='-P 4 2ab' case('P4/mnc') num='128' schn='D4h^6' hall='-P 4 2n' case('P4/nmm:1') num='129:1' schn='D4h^7' hall='P 4ab 2ab -1ab' case('P4/nmm:2') num='129:2' schn='D4h^7' hall='-P 4a 2a' case('P4/ncc:1') num='130:1' schn='D4h^8' hall='P 4ab 2n -1ab' case('P4/ncc:2') num='130:2' schn='D4h^8' hall='-P 4a 2ac' case('P42/mmc') num='131' schn='D4h^9' hall='-P 4c 2' case('P42/mcm') num='132' schn='D4h^10' hall='-P 4c 2c' case('P42/nbc:1') num='133:1' schn='D4h^11' hall='P 4n 2c -1n' case('P42/nbc:2') num='133:2' schn='D4h^11' hall='-P 4ac 2b' case('P42/nnm:1') num='134:1' schn='D4h^12' hall='P 4n 2 -1n' case('P42/nnm:2') num='134:2' schn='D4h^12' hall='-P 4ac 2bc' case('P42/mbc') num='135' schn='D4h^13' hall='-P 4c 2ab' case('P42/mnm') num='136' schn='D4h^14' hall='-P 4n 2n' case('P42/nmc:1') num='137:1' schn='D4h^15' hall='P 4n 2n -1n' case('P42/nmc:2') num='137:2' schn='D4h^15' hall='-P 4ac 2a' case('P42/ncm:1') num='138:1' schn='D4h^16' hall='P 4n 2ab -1n' case('P42/ncm:2') num='138:2' schn='D4h^16' hall='-P 4ac 2ac' case('I4/mmm') num='139' schn='D4h^17' hall='-I 4 2' case('I4/mcm') num='140' schn='D4h^18' hall='-I 4 2c' case('I41/amd:1') num='141:1' schn='D4h^19' hall='I 4bw 2bw -1bw' case('I41/amd:2') num='141:2' schn='D4h^19' hall='-I 4bd 2' case('I41/acd:1') num='142:1' schn='D4h^20' hall='I 4bw 2aw -1bw' case('I41/acd:2') num='142:2' schn='D4h^20' hall='-I 4bd 2c' case('P3') num='143' schn='C3^1' hall='P 3' case('P31') num='144' schn='C3^2' hall='P 31' case('P32') num='145' schn='C3^3' hall='P 32' case('R3:H') num='146:H' schn='C3^4' hall='R 3' case('R3:R') num='146:R' schn='C3^4' hall='P 3*' case('P-3') num='147' schn='C3i^1' hall='-P 3' case('R-3:H') num='148:H' schn='C3i^2' hall='-R 3' case('R-3:R') num='148:R' schn='C3i^2' hall='-P 3*' case('P312') num='149' schn='D3^1' hall='P 3 2' case('P321') num='150' schn='D3^2' hall='P 3 2"' case('P3112') num='151' schn='D3^3' hall='P 31 2c (0 0 1)' case('P3121') num='152' schn='D3^4' hall='P 31 2"' case('P3212') num='153' schn='D3^5' hall='P 32 2c (0 0 -1)' case('P3221') num='154' schn='D3^6' hall='P 32 2"' case('R32:H') num='155:H' schn='D3^7' hall='R 3 2"' case('R32:R') num='155:R' schn='D3^7' hall='P 3* 2' case('P3m1') num='156' schn='C3v^1' hall='P 3 -2"' case('P31m') num='157' schn='C3v^2' hall='P 3 -2' case('P3c1') num='158' schn='C3v^3' hall='P 3 -2"c' case('P31c') num='159' schn='C3v^4' hall='P 3 -2c' case('R3m:H') num='160:H' schn='C3v^5' hall='R 3 -2"' case('R3m:R') num='160:R' schn='C3v^5' hall='P 3* -2' case('R3c:H') num='161:H' schn='C3v^6' hall='R 3 -2"c' case('R3c:R') num='161:R' schn='C3v^6' hall='P 3* -2n' case('P-31m') num='162' schn='D3d^1' hall='-P 3 2' case('P-31c') num='163' schn='D3d^2' hall='-P 3 2c' case('P-3m1') num='164' schn='D3d^3' hall='-P 3 2"' case('P-3c1') num='165' schn='D3d^4' hall='-P 3 2"c' case('R-3m:H') num='166:H' schn='D3d^5' hall='-R 3 2"' case('R-3m:R') num='166:R' schn='D3d^5' hall='-P 3* 2' case('R-3c:H') num='167:H' schn='D3d^6' hall='-R 3 2"c' case('R-3c:R') num='167:R' schn='D3d^6' hall='-P 3* 2n' case('P6') num='168' schn='C6^1' hall='P 6' case('P61') num='169' schn='C6^2' hall='P 61' case('P65') num='170' schn='C6^3' hall='P 65' case('P62') num='171' schn='C6^4' hall='P 62' case('P64') num='172' schn='C6^5' hall='P 64' case('P63') num='173' schn='C6^6' hall='P 6c' case('P-6') num='174' schn='C3h^1' hall='P -6' case('P6/m') num='175' schn='C6h^1' hall='-P 6' case('P63/m') num='176' schn='C6h^2' hall='-P 6c' case('P622') num='177' schn='D6^1' hall='P 6 2' case('P6122') num='178' schn='D6^2' hall='P 61 2 (0 0 -1)' case('P6522') num='179' schn='D6^3' hall='P 65 2 (0 0 1)' case('P6222') num='180' schn='D6^4' hall='P 62 2c (0 0 1)' case('P6422') num='181' schn='D6^5' hall='P 64 2c (0 0 -1)' case('P6322') num='182' schn='D6^6' hall='P 6c 2c' case('P6mm') num='183' schn='C6v^1' hall='P 6 -2' case('P6cc') num='184' schn='C6v^2' hall='P 6 -2c' case('P63cm') num='185' schn='C6v^3' hall='P 6c -2' case('P63mc') num='186' schn='C6v^4' hall='P 6c -2c' case('P-6m2') num='187' schn='D3h^1' hall='P -6 2' case('P-6c2') num='188' schn='D3h^2' hall='P -6c 2' case('P-62m') num='189' schn='D3h^3' hall='P -6 -2' case('P-62c') num='190' schn='D3h^4' hall='P -6c -2c' case('P6/mmm') num='191' schn='D6h^1' hall='-P 6 2' case('P6/mcc') num='192' schn='D6h^2' hall='-P 6 2c' case('P63/mcm') num='193' schn='D6h^3' hall='-P 6c 2' case('P63/mmc') num='194' schn='D6h^4' hall='-P 6c 2c' case('P23') num='195' schn='T^1' hall='P 2 2 3' case('F23') num='196' schn='T^2' hall='F 2 2 3' case('I23') num='197' schn='T^3' hall='I 2 2 3' case('P213') num='198' schn='T^4' hall='P 2ac 2ab 3' case('I213') num='199' schn='T^5' hall='I 2b 2c 3' case('Pm-3') num='200' schn='Th^1' hall='-P 2 2 3' case('Pn-3:1') num='201:1' schn='Th^2' hall='P 2 2 3 -1n' case('Pn-3:2') num='201:2' schn='Th^2' hall='-P 2ab 2bc 3' case('Fm-3') num='202' schn='Th^3' hall='-F 2 2 3' case('Fd-3:1') num='203:1' schn='Th^4' hall='F 2 2 3 -1d' case('Fd-3:2') num='203:2' schn='Th^4' hall='-F 2uv 2vw 3' case('Im-3') num='204' schn='Th^5' hall='-I 2 2 3' case('Pa-3') num='205' schn='Th^6' hall='-P 2ac 2ab 3' case('Ia-3') num='206' schn='Th^7' hall='-I 2b 2c 3' case('P432') num='207' schn='O^1' hall='P 4 2 3' case('P4232') num='208' schn='O^2' hall='P 4n 2 3' case('F432') num='209' schn='O^3' hall='F 4 2 3' case('F4132') num='210' schn='O^4' hall='F 4d 2 3' case('I432') num='211' schn='O^5' hall='I 4 2 3' case('P4332') num='212' schn='O^6' hall='P 4acd 2ab 3' case('P4132') num='213' schn='O^7' hall='P 4bd 2ab 3' case('I4132') num='214' schn='O^8' hall='I 4bd 2c 3' case('P-43m') num='215' schn='Td^1' hall='P -4 2 3' case('F-43m') num='216' schn='Td^2' hall='F -4 2 3' case('I-43m') num='217' schn='Td^3' hall='I -4 2 3' case('P-43n') num='218' schn='Td^4' hall='P -4n 2 3' case('F-43c') num='219' schn='Td^5' hall='F -4c 2 3' case('I-43d') num='220' schn='Td^6' hall='I -4bd 2c 3' case('Pm-3m') num='221' schn='Oh^1' hall='-P 4 2 3' case('Pn-3n:1') num='222:1' schn='Oh^2' hall='P 4 2 3 -1n' case('Pn-3n:2') num='222:2' schn='Oh^2' hall='-P 4a 2bc 3' case('Pm-3n') num='223' schn='Oh^3' hall='-P 4n 2 3' case('Pn-3m:1') num='224:1' schn='Oh^4' hall='P 4n 2 3 -1n' case('Pn-3m:2') num='224:2' schn='Oh^4' hall='-P 4bc 2bc 3' case('Fm-3m') num='225' schn='Oh^5' hall='-F 4 2 3' case('Fm-3c') num='226' schn='Oh^6' hall='-F 4c 2 3' case('Fd-3m:1') num='227:1' schn='Oh^7' hall='F 4d 2 3 -1d' case('Fd-3m:2') num='227:2' schn='Oh^7' hall='-F 4vw 2vw 3' case('Fd-3c:1') num='228:1' schn='Oh^8' hall='F 4d 2 3 -1cd' case('Fd-3c:2') num='228:2' schn='Oh^8' hall='-F 4cvw 2vw 3' case('Im-3m') num='229' schn='Oh^9' hall='-I 4 2 3' case('Ia-3d') num='230' schn='Oh^10' hall='-I 4bd 2c 3' case default write(*,*) write(*,'("Error(sgsymb): Hermann-Mauguin symbol ''",A,"'' not found")') & trim(adjustl(hrmg)) write(*,*) stop end select return end subroutine !EOC elk-7.2.42/src/spacegroup/PaxHeaders.21776/writegeom.f900000644000000000000000000000012714061636515017420 xustar0029 mtime=1623670093.53810377 29 atime=1623670093.53810377 29 ctime=1623670093.53810377 elk-7.2.42/src/spacegroup/writegeom.f900000644002504400250440000000334614061636515021457 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writegeom use modmain implicit none ! local variables integer is,ia,ip open(50,file='GEOMETRY.OUT',action='WRITE',form='FORMATTED') write(50,*) write(50,'("! Atomic positions generated by spacegroup version ",& &I1.1,".",I1.1,".",I2.2)') version write(50,'("! Hermann-Mauguin symbol : ",A)') trim(hrmg) write(50,'("! Hall symbol : ",A)') trim(hall) write(50,'("! Schoenflies symbol : ",A)') trim(schn) write(50,'("! space group number : ",A)') trim(num) write(50,'("! lattice constants (a,b,c) : ",3G18.10)') a,b,c write(50,'("! angles in degrees (bc,ac,ab) : ",3G18.10)') bc,ac,ab write(50,'("! number of conventional unit cells : ",3I4)') ncell write(50,'("! reduction to primitive cell : ",L1)') primcell write(50,'("! Wyckoff positions :")') do is=1,nspecies write(50,'("! species : ",I4,", ",A)') is,trim(spsymb(is)) do ip=1,nwpos(is) write(50,'("! ",3G18.10)') wpos(:,ip,is) end do end do write(50,*) write(50,'("avec")') write(50,'(3G18.10)') avec(:,1) write(50,'(3G18.10)') avec(:,2) write(50,'(3G18.10)') avec(:,3) write(50,*) write(50,'("atoms")') write(50,'(I4,T40," : nspecies")') nspecies do is=1,nspecies write(50,'("''",A,"''",T40," : spfname")') trim(spsymb(is))//'.in' write(50,'(I4,T40," : natoms; atposl, bfcmt below")') natoms(is) do ia=1,natoms(is) write(50,'(3F14.8," ",3F12.8)') atposl(:,ia,is),bfcmt0(:,ia,is) end do end do close(50) write(*,*) write(*,'("Info(writegeom):")') write(*,'(" Elk lattice vectors and atomic positions written to GEOMETRY.OUT")') return end subroutine elk-7.2.42/src/PaxHeaders.21776/modmain.f900000644000000000000000000000013214061636516014667 xustar0030 mtime=1623670094.832102569 30 atime=1623670093.546103763 30 ctime=1623670094.832102569 elk-7.2.42/src/modmain.f900000644002504400250440000012014514061636516016727 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2009 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modmain !----------------------------! ! lattice parameters ! !----------------------------! ! lattice vectors stored column-wise real(8) avec(3,3) ! magnitude of random displacements added to lattice vectors real(8) rndavec ! inverse of lattice vector matrix real(8) ainv(3,3) ! reciprocal lattice vectors real(8) bvec(3,3) ! inverse of reciprocal lattice vector matrix real(8) binv(3,3) ! unit cell volume real(8) omega ! Brillouin zone volume real(8) omegabz ! any vector with length less than epslat is considered zero real(8) epslat !--------------------------! ! atomic variables ! !--------------------------! ! maximum allowed species integer, parameter :: maxspecies=8 ! maximum allowed atoms per species integer, parameter :: maxatoms=200 ! number of species integer nspecies ! number of atoms for each species integer natoms(maxspecies) ! maximum number of atoms over all the species integer natmmax ! total number of atoms integer natmtot ! index to atoms and species integer idxas(maxatoms,maxspecies) ! inverse atoms and species indices integer idxis(maxatoms*maxspecies) integer idxia(maxatoms*maxspecies) ! molecule is .true. is the system is an isolated molecule logical molecule ! primcell is .true. if primitive unit cell is to be found automatically logical primcell ! atomic positions in lattice coordinates real(8) atposl(3,maxatoms,maxspecies) ! atomic positions in Cartesian coordinates real(8) atposc(3,maxatoms,maxspecies) ! magnitude of random displacements added to the atomic positions real(8) rndatposc ! tdatpos is .true. if small amplitude displacements are to be included when ! calculating the Coulomb potential logical :: tdatpos=.false. ! trddatpos is .true. if the small amplitude displacements and velocities are to ! be read from file logical :: trddatpos=.false. ! small amplitude atomic displacements and velocities real(8) datposc(3,0:1,maxatoms,maxspecies) !----------------------------------! ! atomic species variables ! !----------------------------------! ! species files path character(256) sppath ! species filenames character(256) spfname(maxspecies) ! species name character(256) spname(maxspecies) ! species symbol character(256) spsymb(maxspecies) ! species nuclear charge real(8) spzn(maxspecies) ! ptnucl is .true. if the nuclei are to be treated as point charges, if .false. ! the nuclei have a finite spherical distribution logical ptnucl ! nuclear radius real(8) rnucl(maxspecies) ! nuclear volume real(8) volnucl(maxspecies) ! number of radial mesh points to nuclear radius integer nrnucl(maxspecies) ! nuclear Coulomb potential real(8), allocatable :: vcln(:,:) ! species electronic charge real(8) spze(maxspecies) ! species mass real(8) spmass(maxspecies) ! smallest radial point for each species real(8) rminsp(maxspecies) ! effective infinity for species real(8) rmaxsp(maxspecies) ! number of radial points to effective infinity for each species integer nrsp(maxspecies) ! maximum nrsp over all the species integer nrspmax ! maximum allowed states for each species integer, parameter :: maxstsp=40 ! number of states for each species integer nstsp(maxspecies) ! maximum nstsp over all the species integer nstspmax ! core-valence cut-off energy for species file generation real(8) ecvcut ! semi-core-valence cut-off energy for species file generation real(8) esccut ! state principle quantum number for each species integer nsp(maxstsp,maxspecies) ! state l value for each species integer lsp(maxstsp,maxspecies) ! state k value for each species integer ksp(maxstsp,maxspecies) ! spcore is .true. if species state is core logical spcore(maxstsp,maxspecies) ! total number of core states integer nstcr ! state eigenvalue for each species real(8) evalsp(maxstsp,maxspecies) ! state occupancy for each species real(8) occsp(maxstsp,maxspecies) ! species radial mesh to effective infinity real(8), allocatable :: rsp(:,:) ! species charge density real(8), allocatable :: rhosp(:,:) ! species self-consistent potential real(8), allocatable :: vrsp(:,:) ! exchange-correlation type for atomic species (the converged ground-state of ! the crystal does not depend on this choice) integer xctsp(3) !---------------------------------------------------------------! ! muffin-tin radial mesh and angular momentum variables ! !---------------------------------------------------------------! ! scale factor for number of muffin-tin points real(8) nrmtscf ! number of muffin-tin radial points for each species integer nrmt(maxspecies) ! maximum nrmt over all the species integer nrmtmax ! optional default muffin-tin radius for all atoms real(8) rmtall ! minimum allowed distance between muffin-tin surfaces real(8) rmtdelta ! muffin-tin radii real(8) rmt(maxspecies) ! total muffin-tin volume real(8) omegamt ! radial step length for coarse mesh integer lradstp ! number of coarse radial mesh points integer nrcmt(maxspecies) ! maximum nrcmt over all the species integer nrcmtmax ! coarse muffin-tin radial mesh real(8), allocatable :: rcmt(:,:) ! r^l on fine radial mesh real(8), allocatable :: rlmt(:,:,:) ! r^l on coarse radial mesh real(8), allocatable :: rlcmt(:,:,:) ! weights for spline integration on fine radial mesh real(8), allocatable :: wrmt(:,:) ! weights for spline partial integration on fine radial mesh real(8), allocatable :: wprmt(:,:,:) ! weights for spline coefficients on fine radial mesh real(8), allocatable :: wcrmt(:,:,:) ! weights for spline integration on coarse radial mesh real(8), allocatable :: wrcmt(:,:) ! weights for spline partial integration on coarse radial mesh real(8), allocatable :: wprcmt(:,:,:) ! weights for spline coefficients on coarse radial mesh real(8), allocatable :: wcrcmt(:,:,:) ! maximum allowable angular momentum for augmented plane waves integer, parameter :: maxlapw=30 ! maximum angular momentum for augmented plane waves integer lmaxapw ! (lmaxapw+1)^2 integer lmmaxapw ! maximum angular momentum on the outer part of the muffin-tin integer lmaxo ! (lmaxo+1)^2 integer lmmaxo ! maximum angular momentum on the inner part of the muffin-tin integer lmaxi ! (lmaxi+1)^2 integer lmmaxi ! fraction of muffin-tin radius which constitutes the inner part real(8) fracinr ! number of fine/coarse radial points on the inner part of the muffin-tin integer nrmti(maxspecies),nrcmti(maxspecies) ! number of fine/coarse points in packed muffin-tins integer npmti(maxspecies),npmt(maxspecies) integer npcmti(maxspecies),npcmt(maxspecies) ! maximum number of points over all packed muffin-tins integer npmtmax,npcmtmax !--------------------------------! ! spin related variables ! !--------------------------------! ! spinpol is .true. for spin-polarised calculations logical spinpol ! spinorb is .true. for spin-orbit coupling logical spinorb ! scale factor of spin-orbit coupling term in Hamiltonian real(8) socscf ! dimension of magnetisation and magnetic vector fields (1 or 3) integer ndmag ! ncmag is .true. if the magnetisation is non-collinear, i.e. when ndmag = 3 logical ncmag ! if cmagz is .true. then collinear magnetism along the z-axis is enforced logical cmagz ! spcpl is .true. if the up and down spins are coupled logical spcpl ! fixed spin moment type ! 0 : none ! 1 (-1) : total moment (direction) ! 2 (-2) : individual muffin-tin moments (direction) ! 3 (-3) : total and muffin-tin moments (direction) integer fsmtype ! fixed total spin magnetic moment real(8) momfix(3) ! fixed spin moment global effective field in Cartesian coordinates real(8) bfsmc(3) ! muffin-tin fixed spin moments real(8) mommtfix(3,maxatoms,maxspecies) ! muffin-tin fixed spin moment effective fields in Cartesian coordinates real(8), allocatable :: bfsmcmt(:,:) ! fixed spin moment field step size real(8) taufsm ! second-variational spinor dimension (1 or 2) integer nspinor ! global external magnetic field in Cartesian coordinates real(8) bfieldc(3) ! initial field real(8) bfieldc0(3) ! external magnetic field in each muffin-tin in Cartesian coordinates real(8) bfcmt(3,maxatoms,maxspecies) ! initial field as read in from input file real(8) bfcmt0(3,maxatoms,maxspecies) ! magnitude of random vectors added to muffin-tin fields real(8) rndbfcmt ! external magnetic fields are multiplied by reducebf after each s.c. loop real(8) reducebf ! spinsprl is .true. if a spin-spiral is to be calculated logical spinsprl ! ssdph is .true. if the muffin-tin spin-spiral magnetisation is de-phased logical ssdph ! spin-spiral phase factor for each atom complex(8), allocatable :: zqss(:) ! number of spin-dependent first-variational functions per state integer nspnfv ! map from second- to first-variational spin index integer jspnfv(2) ! spin-spiral q-vector in lattice coordinates real(8) vqlss(3) ! spin-spiral q-vector in Cartesian coordinates real(8) vqcss(3) ! current q-point in spin-spiral supercell calculation integer iqss ! number of primitive unit cells in spin-spiral supercell integer nscss ! number of fixed spin direction points on the sphere for finding the magnetic ! anisotropy energy (MAE) integer npmae0,npmae ! (theta,phi) coordinates for each MAE direction real(8), allocatable :: tpmae(:,:) !---------------------------------------------! ! electric field and vector potential ! !---------------------------------------------! ! tefield is .true. if a polarising constant electric field is applied logical tefield ! electric field vector in Cartesian coordinates real(8) efieldc(3) ! electric field vector in lattice coordinates real(8) efieldl(3) ! tafield is .true. if a constant vector potential is applied logical tafield ! vector potential A-field which couples to paramagnetic current real(8) afieldc(3) ! A-field in lattice coordinates real(8) afieldl(3) !----------------------------! ! symmetry variables ! !----------------------------! ! type of symmetry allowed for the crystal ! 0 : only the identity element is used ! 1 : full symmetry group is used ! 2 : only symmorphic symmetries are allowed integer symtype ! number of Bravais lattice point group symmetries integer nsymlat ! Bravais lattice point group symmetries integer symlat(3,3,48) ! determinants of lattice symmetry matrices (1 or -1) integer symlatd(48) ! index to inverses of the lattice symmetries integer isymlat(48) ! lattice point group symmetries in Cartesian coordinates real(8) symlatc(3,3,48) ! tshift is .true. if atomic basis is allowed to be shifted logical tshift ! tsyminv is .true. if the crystal has inversion symmetry logical tsyminv ! maximum of symmetries allowed integer, parameter :: maxsymcrys=192 ! number of crystal symmetries integer nsymcrys ! crystal symmetry translation vector in lattice and Cartesian coordinates real(8) vtlsymc(3,maxsymcrys) real(8) vtcsymc(3,maxsymcrys) ! tv0symc is .true. if the translation vector is zero logical tv0symc(maxsymcrys) ! spatial rotation element in lattice point group for each crystal symmetry integer lsplsymc(maxsymcrys) ! global spin rotation element in lattice point group for each crystal symmetry integer lspnsymc(maxsymcrys) ! equivalent atom index for each crystal symmetry integer, allocatable :: ieqatom(:,:,:) ! eqatoms(ia,ja,is) is .true. if atoms ia and ja are equivalent logical, allocatable :: eqatoms(:,:,:) ! number of site symmetries integer, allocatable :: nsymsite(:) ! site symmetry spatial rotation element in lattice point group integer, allocatable :: lsplsyms(:,:) ! site symmetry global spin rotation element in lattice point group integer, allocatable :: lspnsyms(:,:) !----------------------------! ! G-vector variables ! !----------------------------! ! G-vector cut-off for interstitial potential and density real(8) gmaxvr ! G-vector grid sizes integer ngridg(3) ! G-vector grid sizes for coarse grid (G < 2*gkmax) integer ngdgc(3) ! total number of G-vectors integer ngtot ! total number of G-vectors for coarse grid (G < 2*gkmax) integer ngtc ! integer grid intervals for each direction integer intgv(2,3) ! number of G-vectors with G < gmaxvr integer ngvec ! number of G-vectors for coarse grid (G < 2*gkmax) integer ngvc ! G-vector integer coordinates (i1,i2,i3) integer, allocatable :: ivg(:,:) ! map from (i1,i2,i3) to G-vector index integer, allocatable :: ivgig(:,:,:) ! map from G-vector index to FFT array integer, allocatable :: igfft(:) ! map from G-vector index to FFT array for coarse grid (G < 2*gkmax) integer, allocatable :: igfc(:) ! G-vectors in Cartesian coordinates real(8), allocatable :: vgc(:,:) ! length of G-vectors real(8), allocatable :: gc(:) ! Coulomb Green's function in G-space = 4 pi / G^2 real(8), allocatable :: gclg(:) ! spherical Bessel functions j_l(|G|R_mt) real(8), allocatable :: jlgrmt(:,:,:) ! spherical harmonics of the G-vectors complex(8), allocatable :: ylmg(:,:) ! structure factors for the G-vectors complex(8), allocatable :: sfacg(:,:) ! smooth step function form factors for all species and G-vectors real(8), allocatable :: ffacg(:,:) ! characteristic function in G-space: 0 inside the muffin-tins and 1 outside complex(8), allocatable :: cfunig(:) ! characteristic function in real-space: 0 inside the muffin-tins and 1 outside real(8), allocatable :: cfunir(:) ! characteristic function in real-space for coarse grid (G < 2*gkmax) real(8), allocatable :: cfrc(:) !---------------------------! ! k-point variables ! !---------------------------! ! autokpt is .true. if the k-point set is determined automatically logical autokpt ! radius of sphere used to determine k-point density when autokpt is .true. real(8) radkpt ! k-point grid sizes integer ngridk(3) ! k-point offset real(8) vkloff(3) ! type of reduction to perform on k-point set ! 0 : no reduction ! 1 : reduce with full crystal symmetry group ! 2 : reduce with symmorphic symmetries only integer reducek ! number of point group symmetries used for k-point reduction integer nsymkpt ! point group symmetry matrices used for k-point reduction integer symkpt(3,3,48) ! total number of reduced k-points integer nkpt ! total number of non-reduced k-points integer nkptnr ! locations of k-points on integer grid integer, allocatable :: ivk(:,:) ! map from integer grid to reduced k-point index integer, allocatable :: ivkik(:,:,:) ! map from integer grid to non-reduced k-point index integer, allocatable :: ivkiknr(:,:,:) ! k-points in lattice coordinates real(8), allocatable :: vkl(:,:) ! k-points in Cartesian coordinates real(8), allocatable :: vkc(:,:) ! reduced k-point weights real(8), allocatable :: wkpt(:) ! weight of each non-reduced k-point real(8) wkptnr ! k-point at which to determine effective mass tensor real(8) vklem(3) ! displacement size for computing the effective mass tensor real(8) deltaem ! number of displacements in each direction integer ndspem ! number of k-points subdivision used for calculating the polarisation phase integer nkspolar !------------------------------! ! G+k-vector variables ! !------------------------------! ! species for which the muffin-tin radius will be used for calculating gkmax integer isgkmax ! smallest muffin-tin radius times gkmax real(8) rgkmax ! maximum |G+k| cut-off for APW functions real(8) gkmax ! number of G+k-vectors for augmented plane waves integer, allocatable :: ngk(:,:) ! maximum number of G+k-vectors over all k-points integer ngkmax ! index from G+k-vectors to G-vectors integer, allocatable :: igkig(:,:,:) ! G+k-vectors in lattice coordinates real(8), allocatable :: vgkl(:,:,:,:) ! G+k-vectors in Cartesian coordinates real(8), allocatable :: vgkc(:,:,:,:) ! length of G+k-vectors real(8), allocatable :: gkc(:,:,:) ! structure factors for the G+k-vectors complex(8), allocatable :: sfacgk(:,:,:,:) !---------------------------! ! q-point variables ! !---------------------------! ! q-point grid sizes integer ngridq(3) ! integer grid intervals for the q-points integer intq(2,3) ! type of reduction to perform on q-point set (see reducek) integer reduceq ! number of point group symmetries used for q-point reduction integer nsymqpt ! point group symmetry matrices used for q-point reduction integer symqpt(3,3,48) ! total number of reduced q-points integer nqpt ! total number of non-reduced q-points integer nqptnr ! locations of q-points on integer grid integer, allocatable :: ivq(:,:) ! map from integer grid to reduced index integer, allocatable :: ivqiq(:,:,:) ! map from integer grid to non-reduced index integer, allocatable :: ivqiqnr(:,:,:) ! map from q-vector index to complex-complex FFT array integer, allocatable :: iqfft(:) ! number of complex FFT elements for real-complex transforms integer nfqrz ! map from q-point index to real-complex FFT index integer, allocatable :: ifqrz(:) ! map from real-complex FFT index to q-point index integer, allocatable :: iqrzf(:) ! q-points in lattice coordinates real(8), allocatable :: vql(:,:) ! q-points in Cartesian coordinates real(8), allocatable :: vqc(:,:) ! q-point weights real(8), allocatable :: wqpt(:) ! weight for each non-reduced q-point real(8) wqptnr ! regularised Coulomb Green's function in q-space real(8), allocatable :: gclq(:) ! if t0gclq0 is .true. then the Coulomb Green's function at q = 0 is set to zero logical t0gclq0 !-----------------------------------------------------! ! spherical harmonic transform (SHT) matrices ! !-----------------------------------------------------! ! trotsht is .true. if the spherical cover used for the SHT is to be rotated logical :: trotsht=.false. ! spherical cover rotation matrix real(8) rotsht(3,3) ! real backward SHT matrix for lmaxi real(8), allocatable :: rbshti(:,:) ! real forward SHT matrix for lmaxi real(8), allocatable :: rfshti(:,:) ! real backward SHT matrix for lmaxo real(8), allocatable :: rbshto(:,:) ! real forward SHT matrix for lmaxo real(8), allocatable :: rfshto(:,:) ! complex backward SHT matrix for lmaxi complex(8), allocatable :: zbshti(:,:) ! complex forward SHT matrix for lmaxi complex(8), allocatable :: zfshti(:,:) ! complex backward SHT matrix for lmaxo complex(8), allocatable :: zbshto(:,:) ! complex forward SHT matrix for lmaxo complex(8), allocatable :: zfshto(:,:) !---------------------------------------------------------------! ! density, potential and exchange-correlation variables ! !---------------------------------------------------------------! ! exchange-correlation functional type integer xctype(3) ! exchange-correlation functional description character(512) xcdescr ! exchange-correlation functional spin requirement integer xcspin ! exchange-correlation functional density gradient requirement integer xcgrad ! small constant used to stabilise non-collinear GGA real(8) dncgga ! muffin-tin and interstitial charge density real(8), allocatable :: rhomt(:,:),rhoir(:) ! trhonorm is .true. if the density is to be normalised after every iteration logical trhonorm ! muffin-tin and interstitial magnetisation vector field real(8), allocatable :: magmt(:,:,:),magir(:,:) ! tjr is .true. if the current density j(r) is to be calculated logical tjr ! muffin-tin and interstitial gauge-invariant current density vector field real(8), allocatable :: jrmt(:,:,:),jrir(:,:) ! amount of smoothing to be applied to the exchange-correlation potentials and ! magnetic field integer msmooth ! muffin-tin and interstitial Coulomb potential real(8), allocatable :: vclmt(:,:),vclir(:) ! Poisson solver pseudocharge density constant integer npsd ! lmaxo+npsd+1 integer lnpsd ! muffin-tin and interstitial exchange energy density real(8), allocatable :: exmt(:,:),exir(:) ! muffin-tin and interstitial correlation energy density real(8), allocatable :: ecmt(:,:),ecir(:) ! muffin-tin and interstitial exchange-correlation potential real(8), allocatable :: vxcmt(:,:),vxcir(:) ! muffin-tin and interstitial exchange-correlation magnetic field real(8), allocatable :: bxcmt(:,:,:),bxcir(:,:) ! muffin-tin and interstitial magnetic dipole field real(8), allocatable :: bdmt(:,:,:),bdir(:,:) ! tbdip is .true. if the spin and current dipole fields are to be added to the ! Kohn-Sham magnetic field logical tbdip ! combined target array for vsmt, vsir, bsmt and bsir real(8), allocatable, target :: vsbs(:) ! muffin-tin and interstitial Kohn-Sham effective potential real(8), pointer :: vsmt(:,:),vsir(:) ! muffin-tin Kohn-Sham effective magnetic field in spherical coordinates and on ! a coarse radial mesh real(8), pointer :: bsmt(:,:,:) ! interstitial Kohn-Sham effective magnetic field real(8), pointer :: bsir(:,:) ! G-space interstitial Kohn-Sham effective potential complex(8), allocatable :: vsig(:) ! nosource is .true. if the field is to be made source-free logical nosource ! tssxc is .true. if scaled spin exchange-correlation is to be used logical tssxc ! spin exchange-correlation scaling factor real(8) sxcscf ! spin-orbit coupling radial function real(8), allocatable :: socfr(:,:) ! kinetic energy density real(8), allocatable :: taumt(:,:,:),tauir(:,:) ! core kinetic energy density real(8), allocatable :: taucr(:,:,:) ! taudft is .true. if meta-GGA is to be treated as a meta-GGA functional logical taudft ! meta-GGA exchange-correlation potential real(8), allocatable :: wxcmt(:,:),wxcir(:) ! meta-GGA Kohn-Sham potential real(8), allocatable :: wsmt(:,:),wsir(:) ! Tran-Blaha '09 constant c [Phys. Rev. Lett. 102, 226401 (2009)] real(8) c_tb09 ! tc_tb09 is .true. if the Tran-Blaha constant has been read in logical tc_tb09 ! if trdstate is .true. the density and potential can be read from STATE.OUT logical :: trdstate=.false. ! temperature in degrees Kelvin real(8) tempk !--------------------------! ! mixing variables ! !--------------------------! ! type of mixing to use for the potential integer mixtype ! mixing type description character(256) mixdescr ! adaptive mixing parameters (formerly beta0 and betamax) real(8) amixpm(2) ! subspace dimension for Broyden mixing integer mixsdb ! Broyden mixing parameters alpha and w0 real(8) broydpm(2) !----------------------------------------------! ! charge, moment and current variables ! !----------------------------------------------! ! tolerance for error in total charge real(8) epschg ! total nuclear charge real(8) chgzn ! core charges real(8) chgcr(maxspecies) ! total core charge real(8) chgcrtot ! core leakage charge real(8), allocatable :: chgcrlk(:) ! total valence charge real(8) chgval ! excess charge real(8) chgexs ! total charge real(8) chgtot ! calculated total charge real(8) chgcalc ! interstitial region charge real(8) chgir ! muffin-tin charges real(8), allocatable :: chgmt(:) ! total muffin-tin charge real(8) chgmttot ! effective Wigner radius real(8) rwigner ! total moment real(8) momtot(3) ! total moment magnitude real(8) momtotm ! interstitial region moment real(8) momir(3) ! muffin-tin moments real(8), allocatable :: mommt(:,:) ! total muffin-tin moment real(8) mommttot(3) ! total gauge-invariant current and its magnitude real(8) jtot(3),jtotm !-----------------------------------------! ! APW and local-orbital variables ! !-----------------------------------------! ! energy step used for numerical calculation of energy derivatives real(8) deapwlo ! maximum allowable APW order integer, parameter :: maxapword=4 ! APW order integer apword(0:maxlapw,maxspecies) ! maximum of apword over all angular momenta and species integer apwordmax ! total number of APW coefficients (l, m and order) for each species integer lmoapw(maxspecies) ! polynomial order used for APW radial derivatives integer npapw ! APW initial linearisation energies real(8) apwe0(maxapword,0:maxlapw,maxspecies) ! APW linearisation energies real(8), allocatable :: apwe(:,:,:) ! APW derivative order integer apwdm(maxapword,0:maxlapw,maxspecies) ! apwve is .true. if the linearisation energies are allowed to vary logical apwve(maxapword,0:maxlapw,maxspecies) ! APW radial functions real(8), allocatable :: apwfr(:,:,:,:,:) ! derivate of radial functions at the muffin-tin surface real(8), allocatable :: apwdfr(:,:,:) ! maximum number of local-orbitals integer, parameter :: maxlorb=200 ! maximum allowable local-orbital order integer, parameter :: maxlorbord=5 ! number of local-orbitals integer nlorb(maxspecies) ! maximum nlorb over all species integer nlomax ! total number of local-orbitals integer nlotot ! local-orbital order integer lorbord(maxlorb,maxspecies) ! maximum lorbord over all species integer lorbordmax ! polynomial order used for local-orbital radial derivatives integer nplorb ! local-orbital angular momentum integer lorbl(maxlorb,maxspecies) ! maximum lorbl over all species integer lolmax ! (lolmax+1)^2 integer lolmmax ! local-orbital initial energies real(8) lorbe0(maxlorbord,maxlorb,maxspecies) ! local-orbital energies real(8), allocatable :: lorbe(:,:,:) ! local-orbital derivative order integer lorbdm(maxlorbord,maxlorb,maxspecies) ! lorbve is .true. if the linearisation energies are allowed to vary logical lorbve(maxlorbord,maxlorb,maxspecies) ! local-orbital radial functions real(8), allocatable :: lofr(:,:,:,:) ! band energy search tolerance real(8) epsband ! maximum allowed change in energy during band energy search; enforced only if ! default energy is less than zero real(8) demaxbnd ! minimum default linearisation energy over all APWs and local-orbitals real(8) e0min ! if autolinengy is .true. then the fixed linearisation energies are set to the ! Fermi energy minus dlefe logical autolinengy ! difference between linearisation and Fermi energies when autolinengy is .true. real(8) dlefe ! lorbcnd is .true. if conduction state local-orbitals should be added logical lorbcnd ! conduction state local-orbital order integer lorbordc ! excess order of the APW and local-orbital functions integer nxoapwlo ! excess local orbitals integer nxlo !-------------------------------------------! ! overlap and Hamiltonian variables ! !-------------------------------------------! ! overlap and Hamiltonian matrices sizes at each k-point integer, allocatable :: nmat(:,:) ! maximum nmat over all k-points integer nmatmax ! index to the position of the local-orbitals in the H and O matrices integer, allocatable :: idxlo(:,:,:) ! APW-local-orbital overlap integrals real(8), allocatable :: oalo(:,:,:) ! local-orbital-local-orbital overlap integrals real(8), allocatable :: ololo(:,:,:) ! APW-APW Hamiltonian integrals real(8), allocatable :: haa(:,:,:,:,:,:) ! local-orbital-APW Hamiltonian integrals real(8), allocatable :: hloa(:,:,:,:,:) ! local-orbital-local-orbital Hamiltonian integrals real(8), allocatable :: hlolo(:,:,:,:) ! complex Gaunt coefficient array complex(8), allocatable :: gntyry(:,:,:) ! tefvr is .true. if the first-variational eigenvalue equation is to be solved ! as a real symmetric problem logical tefvr ! tefvit is .true. if the first-variational eigenvalue equation is to be solved ! iteratively logical tefvit ! minimum and maximum allowed number of eigenvalue equation iterations integer minitefv,maxitefv ! eigenvalue mixing parameter for iterative solver real(8) befvit ! iterative solver convergence tolerance real(8) epsefvit !--------------------------------------------! ! eigenvalue and occupancy variables ! !--------------------------------------------! ! number of empty states per atom and spin real(8) nempty0 ! number of empty states integer nempty ! number of first-variational states integer nstfv ! number of second-variational states integer nstsv ! smearing type integer stype ! smearing function description character(256) sdescr ! smearing width real(8) swidth ! autoswidth is .true. if the smearing width is to be determined automatically logical autoswidth ! effective mass used in smearing width formula real(8) mstar ! maximum allowed occupancy (1 or 2) real(8) occmax ! convergence tolerance for occupancies real(8) epsocc ! second-variational occupation numbers real(8), allocatable :: occsv(:,:) ! Fermi energy for second-variational states real(8) efermi ! scissor correction applied when computing response functions real(8) scissor ! density of states at the Fermi energy real(8) fermidos ! estimated indirect and direct band gaps real(8) bandgap(2) ! k-points of indirect and direct gaps integer ikgap(3) ! error tolerance for the first-variational eigenvalues real(8) evaltol ! second-variational eigenvalues real(8), allocatable :: evalsv(:,:) ! tevecsv is .true. if second-variational eigenvectors are calculated logical tevecsv ! maximum number of k-point and states indices in user-defined list integer, parameter :: maxkst=20 ! number of k-point and states indices in user-defined list integer nkstlist ! user-defined list of k-point and state indices integer kstlist(2,maxkst) !------------------------------! ! core state variables ! !------------------------------! ! occupancies for core states real(8), allocatable :: occcr(:,:) ! eigenvalues for core states real(8), allocatable :: evalcr(:,:) ! radial wavefunctions for core states real(8), allocatable :: rwfcr(:,:,:,:) ! radial charge density for core states real(8), allocatable :: rhocr(:,:,:) ! spincore is .true. if the core is to be treated as spin-polarised logical spincore ! number of core spin-channels integer nspncr !--------------------------! ! energy variables ! !--------------------------! ! eigenvalue sum real(8) evalsum ! electron kinetic energy real(8) engykn ! core electron kinetic energy real(8) engykncr ! nuclear-nuclear energy real(8) engynn ! electron-nuclear energy real(8) engyen ! Hartree energy real(8) engyhar ! Coulomb energy (E_nn + E_en + E_H) real(8) engycl ! electronic Coulomb potential energy real(8) engyvcl ! Madelung term real(8) engymad ! exchange-correlation potential energy real(8) engyvxc ! exchange-correlation effective field energy real(8) engybxc ! energy of external global magnetic field real(8) engybext ! exchange energy real(8) engyx ! correlation energy real(8) engyc ! electronic entropy real(8) entrpy ! entropic contribution to free energy real(8) engyts ! total energy real(8) engytot !--------------------------------------------! ! force, stress and strain variables ! !--------------------------------------------! ! tforce is .true. if force should be calculated logical tforce ! Hellmann-Feynman force on each atom real(8), allocatable :: forcehf(:,:) ! incomplete basis set (IBS) force on each atom real(8), allocatable :: forceibs(:,:) ! total force on each atom real(8), allocatable :: forcetot(:,:) ! previous total force on each atom real(8), allocatable :: forcetotp(:,:) ! maximum force magnitude over all atoms real(8) forcemax ! tfav0 is .true. if the average force should be zero in order to prevent ! translation of the atomic basis logical tfav0 ! average force real(8) forceav(3) ! atomic position optimisation type ! 0 : no optimisation ! 1 : unconstrained optimisation integer atpopt ! maximum number of atomic position optimisation steps integer maxatpstp ! default step size parameter for atomic position optimisation real(8) tau0atp ! step size parameters for each atom real(8), allocatable :: tauatp(:) ! number of strain tensors integer nstrain ! current strain tensor integer :: istrain=0 ! strain tensors real(8) strain(3,3,9) ! infinitesimal displacement parameter multiplied by the strain tensor for ! computing the stress tensor real(8) deltast ! symmetry reduced stress tensor components real(8) stress(9) ! previous stress tensor real(8) stressp(9) ! stress tensor component magnitude maximum real(8) stressmax ! lattice vector optimisation type ! 0 : no optimisation ! 1 : unconstrained optimisation ! 2 : iso-volumetric optimisation integer latvopt ! maximum number of lattice vector optimisation steps integer maxlatvstp ! default step size parameter for lattice vector optimisation real(8) tau0latv ! step size for each stress tensor component acting on the lattice vectors real(8) taulatv(9) !-------------------------------! ! convergence variables ! !-------------------------------! ! maximum number of self-consistent loops integer maxscl ! current self-consistent loop number integer iscl ! Kohn-Sham potential convergence tolerance real(8) epspot ! energy convergence tolerance real(8) epsengy ! force convergence tolerance real(8) epsforce ! stress tensor convergence tolerance real(8) epsstress !----------------------------------------------------------! ! density of states, optics and response variables ! !----------------------------------------------------------! ! number of energy intervals in the DOS/optics function plot integer nwplot ! fine k-point grid size for integration of functions in the Brillouin zone integer ngrkf ! smoothing level for DOS/optics function plot integer nswplot ! energy interval for DOS/optics function plot real(8) wplot(2) ! maximum angular momentum for the partial DOS plot integer lmaxdos ! dosocc is .true. if the DOS is to be weighted by the occupancy logical dosocc ! dosmsum is .true. if the partial DOS is to be summed over m logical dosmsum ! dosssum is .true. if the partial DOS is to be summed over spin logical dosssum ! number of optical matrix components required integer noptcomp ! required optical matrix components integer optcomp(3,27) ! intraband is .true. if the intraband term is to be added to the optical matrix logical intraband ! lmirep is .true. if the (l,m) band characters should correspond to the ! irreducible representations of the site symmetries logical lmirep ! spin-quantisation axis in Cartesian coordinates used when plotting the ! spin-resolved DOS (z-axis by default) real(8) sqados(3) ! q-vector in lattice and Cartesian coordinates for calculating the matrix ! elements < i,k+q | exp(iq.r) | j,k > real(8) vecql(3),vecqc(3) ! maximum initial-state energy allowed in ELNES transitions real(8) emaxelnes ! structure factor energy window real(8) wsfac(2) !-------------------------------------! ! 1D/2D/3D plotting variables ! !-------------------------------------! ! number of vertices in 1D plot integer nvp1d ! total number of points in 1D plot integer npp1d ! vertices in lattice coordinates for 1D plot real(8), allocatable :: vvlp1d(:,:) ! distance to vertices in 1D plot real(8), allocatable :: dvp1d(:) ! plot vectors in lattice coordinates for 1D plot real(8), allocatable :: vplp1d(:,:) ! distance to points in 1D plot real(8), allocatable :: dpp1d(:) ! corner vectors of 2D plot in lattice coordinates real(8) vclp2d(3,0:2) ! grid sizes of 2D plot integer np2d(2) ! corner vectors of 3D plot in lattice coordinates real(8) vclp3d(3,0:3) ! grid sizes of 3D plot integer np3d(3) !----------------------------------------! ! OEP and Hartree-Fock variables ! !----------------------------------------! ! maximum number of core states over all species integer ncrmax ! maximum number of OEP iterations integer maxitoep ! OEP step size and fraction of previous potential to be used as starting point real(8) tauoep(2) ! magnitude of the OEP residual real(8) resoep ! exchange potential and magnetic field real(8), allocatable :: vxmt(:,:),vxir(:) real(8), allocatable :: bxmt(:,:,:),bxir(:,:) ! hybrid is .true. if a hybrid functional is to be used logical hybrid,hybrid0 ! hybrid functional mixing coefficient real(8) hybridc !-------------------------------------------------------------! ! response function and perturbation theory variables ! !-------------------------------------------------------------! ! |G| cut-off for response functions real(8) gmaxrf ! energy cut-off for response functions real(8) emaxrf ! number of G-vectors for response functions integer ngrf ! number of response function frequencies integer nwrf ! complex response function frequencies complex(8), allocatable :: wrf(:) ! maximum number of spherical Bessel functions on the coarse radial mesh over ! all species integer njcmax !-------------------------------------------------! ! Bethe-Salpeter equation (BSE) variables ! !-------------------------------------------------! ! number of valence and conduction states for transitions integer nvbse,ncbse ! default number of valence and conduction states integer nvbse0,ncbse0 ! maximum number of extra valence and conduction states integer, parameter :: maxxbse=20 ! number of extra valence and conduction states integer nvxbse,ncxbse ! extra valence and conduction states integer istxbse(maxxbse),jstxbse(maxxbse) ! total number of transitions integer nvcbse ! size of blocks in BSE Hamiltonian matrix integer nbbse ! size of BSE matrix (= 2*nbbse) integer nmbse ! index from BSE valence states to second-variational states integer, allocatable :: istbse(:,:) ! index from BSE conduction states to second-variational states integer, allocatable :: jstbse(:,:) ! index from BSE valence-conduction pair and k-point to location in BSE matrix integer, allocatable :: ijkbse(:,:,:) ! BSE Hamiltonian complex(8), allocatable :: hmlbse(:,:) ! BSE Hamiltonian eigenvalues real(8), allocatable :: evalbse(:) ! if bsefull is .true. then the full BSE Hamiltonian is calculated, otherwise ! only the Hermitian block logical bsefull ! if hxbse/hdbse is .true. then the exchange/direct term is included in the BSE ! Hamiltonian logical hxbse,hdbse !--------------------------! ! timing variables ! !--------------------------! ! initialisation real(8) timeinit ! Hamiltonian and overlap matrix set up real(8) timemat ! first-variational calculation real(8) timefv ! second-variational calculation real(8) timesv ! charge density calculation real(8) timerho ! potential calculation real(8) timepot ! force calculation real(8) timefor !-----------------------------! ! numerical constants ! !-----------------------------! real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: twopi=6.2831853071795864769d0 real(8), parameter :: fourpi=12.566370614359172954d0 ! spherical harmonic for l=m=0 real(8), parameter :: y00=0.28209479177387814347d0 ! complex constants complex(8), parameter :: zzero=(0.d0,0.d0) complex(8), parameter :: zone=(1.d0,0.d0) complex(8), parameter :: zi=(0.d0,1.d0) ! array of i^l and (-i)^l values integer, private :: l complex(8), parameter :: zil(0:maxlapw)=[((0.d0,1.d0)**l,l=0,maxlapw)] complex(8), parameter :: zilc(0:maxlapw)=[((0.d0,-1.d0)**l,l=0,maxlapw)] ! Pauli spin matrices: ! sigma_x = ( 0 1 ) sigma_y = ( 0 -i ) sigma_z = ( 1 0 ) ! ( 1 0 ) ( i 0 ) ( 0 -1 ) ! Planck constant in SI units (exact, CODATA 2018) real(8), parameter :: h_si=6.62607015d-34 ! reduced Planck constant in SI units real(8), parameter :: hbar_si=h_si/twopi ! speed of light in SI units (exact, CODATA 2018) real(8), parameter :: sol_si=299792458d0 ! speed of light in atomic units (=1/alpha) (CODATA 2018) real(8), parameter :: sol=137.035999084d0 ! scaled speed of light real(8) solsc ! Hartree in SI units (CODATA 2018) real(8), parameter :: ha_si=4.3597447222071d-18 ! Hartree in eV (CODATA 2018) real(8), parameter :: ha_ev=27.211386245988d0 ! Hartree in inverse meters real(8), parameter :: ha_im=ha_si/(h_si*sol_si) ! Boltzmann constant in SI units (exact, CODATA 2018) real(8), parameter :: kb_si=1.380649d-23 ! Boltzmann constant in Hartree/kelvin real(8), parameter :: kboltz=kb_si/ha_si ! electron charge in SI units (exact, CODATA 2018) real(8), parameter :: e_si=1.602176634d-19 ! Bohr radius in SI units (CODATA 2018) real(8), parameter :: br_si=0.529177210903d-10 ! Bohr radius in Angstroms real(8), parameter :: br_ang=br_si*1.d10 ! atomic unit of magnetic flux density in SI real(8), parameter :: b_si=hbar_si/(e_si*br_si**2) ! atomic unit of electric field in SI real(8), parameter :: ef_si=ha_si/(e_si*br_si) ! atomic unit of time in SI real(8), parameter :: t_si=hbar_si/ha_si ! electron g-factor (CODATA 2018) real(8), parameter :: gfacte=2.00231930436256d0 ! electron mass in SI (CODATA 2018) real(8), parameter :: em_si=9.1093837015d-31 ! atomic mass unit in SI (CODATA 2018) real(8), parameter :: amu_si=1.66053906660d-27 ! atomic mass unit in electron masses real(8), parameter :: amu=amu_si/em_si !---------------------------------! ! miscellaneous variables ! !---------------------------------! ! code version integer, parameter :: version(3)=[7,2,42] ! maximum number of tasks integer, parameter :: maxtasks=40 ! number of tasks integer ntasks ! task array integer tasks(maxtasks) ! current task integer task ! tlast is .true. if the calculation is on the last self-consistent loop logical tlast ! tstop is .true. if the STOP file exists logical tstop ! number of self-consistent loops after which STATE.OUT is written integer nwrite ! filename extension for files generated by gndstate character(256) :: filext='.OUT' ! scratch space path character(256) scrpath ! number of note lines integer notelns ! notes to include in INFO.OUT character(256), allocatable :: notes(:) end module elk-7.2.42/src/PaxHeaders.21776/mpi_stub.f900000644000000000000000000000013114061636517015065 xustar0030 mtime=1623670095.967101515 29 atime=1623670093.54910376 30 ctime=1623670095.967101515 elk-7.2.42/src/mpi_stub.f900000644002504400250440000000353014061636517017124 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for MPI. module mpi integer mpi_comm_world integer mpi_in_place integer mpi_sum integer mpi_logical integer mpi_integer integer mpi_double_precision integer mpi_double_complex end module subroutine mpi_init(ierror) implicit none integer, intent(out) :: ierror ierror=0 end subroutine subroutine mpi_finalize(ierror) implicit none integer, intent(out) :: ierror ierror=0 end subroutine subroutine mpi_comm_dup(comm,newcomm,ierror) implicit none integer, intent(in) :: comm integer, intent(out) :: newcomm integer, intent(out) :: ierror newcomm=comm ierror=0 end subroutine subroutine mpi_comm_size(comm,size,ierror) implicit none integer, intent(in) :: comm integer, intent(out) :: size integer, intent(out) :: ierror size=1 ierror=0 end subroutine subroutine mpi_comm_rank(comm,rank,ierror) implicit none integer, intent(in) :: comm integer, intent(out) :: rank integer, intent(out) :: ierror rank=0 ierror=0 end subroutine subroutine mpi_barrier(comm,ierror) implicit none integer, intent(in) :: comm integer, intent(out) :: ierror ierror=0 end subroutine subroutine mpi_bcast(buffer,count,datatype,root,comm,ierror) implicit none real(8), intent(in) :: buffer(*) integer, intent(in) :: count integer, intent(in) :: datatype integer, intent(in) :: root integer, intent(in) :: comm integer, intent(out) :: ierror ierror=0 end subroutine subroutine mpi_allreduce(sendbuf,recvbuf,count,datatype,op,comm,ierror) implicit none real(8), intent(in) :: sendbuf(*) real(8), intent(in) :: recvbuf(*) integer, intent(in) :: count integer, intent(in) :: datatype integer, intent(in) :: op integer, intent(in) :: comm integer, intent(out) :: ierror ierror=0 end subroutine elk-7.2.42/src/PaxHeaders.21776/modmpi.f900000644000000000000000000000013214061636516014530 xustar0030 mtime=1623670094.836102565 30 atime=1623670093.551103758 30 ctime=1623670094.836102565 elk-7.2.42/src/modmpi.f900000644002504400250440000000074214061636516016570 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modmpi use mpi ! MPI communicator for main code integer mpicom ! number of MPI processes integer np_mpi ! local MPI process number integer lp_mpi ! mp_mpi is .true. if the local MPI process is the master (0) logical mp_mpi ! commonly used error variable integer ierror end module elk-7.2.42/src/PaxHeaders.21776/modramdisk.f900000644000000000000000000000013214061636516015375 xustar0030 mtime=1623670094.838102563 30 atime=1623670093.553103756 30 ctime=1623670094.838102563 elk-7.2.42/src/modramdisk.f900000644002504400250440000001636314061636516017443 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modramdisk ! ramdisk is .true. if the RAM disk should be used logical ramdisk ! maximum allowed number of files in the RAM disk integer, parameter, private :: maxfiles=20 ! maximum number of records per file integer, parameter, private :: maxrec=10000 ! record data stored as 4-byte words type, private :: rec_t integer(4), allocatable :: dat(:) end type ! RAM disk file consisting of the filename and an array of records type, private :: file_t character(256) fname type(rec_t), allocatable :: rec(:) end type ! arrays of files constituting the RAM disk type(file_t), allocatable, private :: file(:) ! private subroutines private findfile,openfile contains subroutine initrd ! this subroutine should not be called from a parallel region implicit none ! local variables integer i if (allocated(file)) then write(*,*) write(*,'("Error(initrd): RAM disk already initialised")') write(*,*) stop end if allocate(file(maxfiles)) do i=1,maxfiles file(i)%fname='' end do end subroutine subroutine findfile(fname,fnum) implicit none ! arguments character(*), intent(in) :: fname integer, intent(out) :: fnum ! local variables integer i if (.not.allocated(file)) then write(*,*) write(*,'("Error(findfile): RAM disk not initialised")') write(*,*) stop end if fnum=0 do i=1,maxfiles if (file(i)%fname.eq.fname) then fnum=i return end if end do end subroutine subroutine openfile(fname,fnum) implicit none ! arguments character(*), intent(in) :: fname integer, intent(out) :: fnum ! local variables integer i ! check to see if the file already exists call findfile(fname,fnum) if (fnum.ne.0) return ! use the first available file number do i=1,maxfiles if (file(i)%fname.eq.'') then ! assign the filename file(i)%fname=fname ! allocate the record array allocate(file(i)%rec(maxrec)) fnum=i return end if end do write(*,*) write(*,'("Error(openfile): too many RAM disk files open : ",I8)') maxfiles write(*,*) stop end subroutine subroutine delfrd(fname) ! this subroutine should not be called from a parallel region implicit none ! arguments character(*), intent(in) :: fname ! local variables integer fnum,i ! determine the file number call findfile(fname,fnum) ! return if the file does not exist if (fnum.eq.0) return ! erase filename file(fnum)%fname='' ! deallocate associated arrays do i=1,maxrec if (allocated(file(fnum)%rec(i)%dat)) then deallocate(file(fnum)%rec(i)%dat) end if end do deallocate(file(fnum)%rec) end subroutine subroutine putrd(fname,irec,n1,n2,n3,v1,v2,nrv,rva,nzv,zva) ! this subroutine should be called from a critical section implicit none ! arguments character(*), intent(in) :: fname integer, intent(in) :: irec integer, optional, intent(in) :: n1,n2,n3 real(8), optional, intent(in) :: v1(3),v2(3) integer, optional, intent(in) :: nrv real(8), optional, intent(in) :: rva(*) integer, optional, intent(in) :: nzv complex(8), optional, intent(in) :: zva(*) ! local variables integer fnum,n,i if (irec.gt.maxrec) return ! find the record length in 4-byte words n=0 if (present(n1)) n=n+1 if (present(n2)) n=n+1 if (present(n3)) n=n+1 if (present(v1)) n=n+6 if (present(v2)) n=n+6 if (present(rva)) then if (present(nrv)) then n=n+2*nrv else write(*,*) write(*,'("Error(putrd): missing argument nrv")') write(*,*) stop end if end if if (present(zva)) then if (present(nzv)) then n=n+4*nzv else write(*,*) write(*,'("Error(putrd): missing argument nzv")') write(*,*) stop end if end if ! open the file call openfile(fname,fnum) ! allocate the record data array if required if (allocated(file(fnum)%rec(irec)%dat)) then if (size(file(fnum)%rec(irec)%dat).lt.n) then deallocate(file(fnum)%rec(irec)%dat) end if end if if (.not.allocated(file(fnum)%rec(irec)%dat)) then allocate(file(fnum)%rec(irec)%dat(n)) end if i=1 if (present(n1)) then file(fnum)%rec(irec)%dat(i)=n1 i=i+1 end if if (present(n2)) then file(fnum)%rec(irec)%dat(i)=n2 i=i+1 end if if (present(n3)) then file(fnum)%rec(irec)%dat(i)=n3 i=i+1 end if if (present(v1)) then call dcopy(3,v1,1,file(fnum)%rec(irec)%dat(i),1) i=i+6 end if if (present(v2)) then call dcopy(3,v2,1,file(fnum)%rec(irec)%dat(i),1) i=i+6 end if if (present(rva)) then call dcopy(nrv,rva,1,file(fnum)%rec(irec)%dat(i),1) i=i+2*nrv end if if (present(zva)) then call zcopy(nzv,zva,1,file(fnum)%rec(irec)%dat(i),1) end if end subroutine subroutine getrd(fname,irec,tgs,n1,n2,n3,v1,v2,nrv,rva,nzv,zva) implicit none ! arguments character(*), intent(in) :: fname integer, intent(in) :: irec logical, intent(out) :: tgs integer, optional, intent(out) :: n1,n2,n3 real(8), optional, intent(out) :: v1(3),v2(3) integer, optional, intent(in) :: nrv real(8), optional, intent(out) :: rva(*) integer, optional, intent(in) :: nzv complex(8), optional, intent(out) :: zva(*) ! local variables integer fnum,n,i if (present(rva)) then if (.not.present(nrv)) then write(*,*) write(*,'("Error(getrd): missing argument nrv")') write(*,*) stop end if end if if (present(zva)) then if (.not.present(nzv)) then write(*,*) write(*,'("Error(getrd): missing argument nzv")') write(*,*) stop end if end if tgs=.false. if (irec.gt.maxrec) return ! determine the file number call findfile(fname,fnum) ! return unsuccessfully if file is not found or record is unavailable if (fnum.eq.0) return if (.not.allocated(file(fnum)%rec(irec)%dat)) return n=size(file(fnum)%rec(irec)%dat) i=1 if (present(n1)) then if (n.lt.1) return n1=file(fnum)%rec(irec)%dat(i) i=i+1 n=n-1 end if if (present(n2)) then if (n.lt.1) return n2=file(fnum)%rec(irec)%dat(i) i=i+1 n=n-1 end if if (present(n3)) then if (n.lt.1) return n3=file(fnum)%rec(irec)%dat(i) i=i+1 n=n-1 end if if (present(v1)) then if (n.lt.6) return call dcopy(3,file(fnum)%rec(irec)%dat(i),1,v1,1) i=i+6 n=n-6 end if if (present(v2)) then if (n.lt.6) return call dcopy(3,file(fnum)%rec(irec)%dat(i),1,v2,1) i=i+6 n=n-6 end if if (present(rva)) then if (n.lt.2*nrv) return call dcopy(nrv,file(fnum)%rec(irec)%dat(i),1,rva,1) i=i+2*nrv n=n-2*nrv end if if (present(zva)) then if (n.lt.4*nzv) return call zcopy(nzv,file(fnum)%rec(irec)%dat(i),1,zva,1) end if ! flag the get operation as successful tgs=.true. end subroutine subroutine rdstatus ! this subroutine should not be called from a parallel region implicit none ! local variables integer nf,nr,i,j integer(8) m,n write(*,*) write(*,'("Info(rdstatus):")') if (.not.allocated(file)) then write(*,'(" RAM disk not initialised")') return end if nf=0 n=0 do i=1,maxfiles if (file(i)%fname.ne.'') then write(*,*) write(*,'(" Filename : ",A)') trim(file(i)%fname) nf=nf+1 nr=0 m=0 do j=1,maxrec if (allocated(file(i)%rec(j)%dat)) then nr=nr+1 m=m+size(file(i)%rec(j)%dat) end if end do n=n+m write(*,'(" number of records : ",I8)') nr write(*,'(" total number of bytes : ",I14)') 4*m end if end do write(*,*) write(*,'(" Number of files on RAM disk : ",I4)') nf write(*,'(" Total number of bytes used by RAM disk : ",I14)') 4*n end subroutine end module elk-7.2.42/src/PaxHeaders.21776/libxcifc_stub.f900000644000000000000000000000013214061636517016064 xustar0030 mtime=1623670095.987101497 30 atime=1623670093.555103754 30 ctime=1623670095.987101497 elk-7.2.42/src/libxcifc_stub.f900000644002504400250440000000416314061636517020125 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for libxc. See Elk manual for libxc installation instructions. module libxcifc integer libxcv(3) integer, parameter :: XC_MGGA_X_TB09=208 contains subroutine xcifc_libxc(xctype,n,c_tb09,tempa,rho,rhoup,rhodn,g2rho,g2up,g2dn, & grho2,gup2,gdn2,gupdn,tau,tauup,taudn,ex,ec,vx,vc,vxup,vxdn,vcup,vcdn,dxdgr2, & dxdgu2,dxdgd2,dxdgud,dcdgr2,dcdgu2,dcdgd2,dcdgud,dxdg2r,dxdg2u,dxdg2d,dcdg2r, & dcdg2u,dcdg2d,wx,wxup,wxdn,wc,wcup,wcdn) implicit none ! mandatory arguments integer, intent(in) :: xctype(3),n ! optional arguments real(8), optional :: c_tb09,tempa real(8), optional :: rho(n),rhoup(n),rhodn(n) real(8), optional :: g2rho(n),g2up(n),g2dn(n) real(8), optional :: grho2(n),gup2(n),gdn2(n),gupdn(n) real(8), optional :: tau(n),tauup(n),taudn(n) real(8), optional :: ex(n),ec(n),vx(n),vc(n) real(8), optional :: vxup(n),vxdn(n),vcup(n),vcdn(n) real(8), optional :: dxdgr2(n),dxdgu2(n),dxdgd2(n),dxdgud(n) real(8), optional :: dcdgr2(n),dcdgu2(n),dcdgd2(n),dcdgud(n) real(8), optional :: dxdg2r(n),dxdg2u(n),dxdg2d(n) real(8), optional :: dcdg2r(n),dcdg2u(n),dcdg2d(n) real(8), optional :: wx(n),wxup(n),wxdn(n) real(8), optional :: wc(n),wcup(n),wcdn(n) write(*,*) write(*,'("Error(libxcifc): libxc not or improperly installed")') write(*,*) stop end subroutine subroutine fxcifc_libxc(fxctype,n,rho,rhoup,rhodn,fxc,fxcuu,fxcud,fxcdd) implicit none ! mandatory arguments integer, intent(in) :: fxctype(3),n ! optional arguments real(8), optional :: rho(n),rhoup(n),rhodn(n) real(8), optional :: fxc(n),fxcuu(n),fxcud(n),fxcdd(n) write(*,*) write(*,'("Error(libxcifc): libxc not or improperly installed")') write(*,*) stop end subroutine subroutine xcdata_libxc(xctype,xcdescr,xcspin,xcgrad,hybrid,hybridc) implicit none ! arguments integer xctype(3) character(512) xcdescr integer xcspin integer xcgrad logical hybrid real(8) hybridc write(*,*) write(*,'("Error(libxcifc): libxc not or improperly installed")') write(*,*) stop end subroutine !EOC end module elk-7.2.42/src/PaxHeaders.21776/modxcifc.f900000644000000000000000000000013214061636516015037 xustar0030 mtime=1623670094.841102561 30 atime=1623670093.556103753 30 ctime=1623670094.841102561 elk-7.2.42/src/modxcifc.f900000644002504400250440000004073114061636516017101 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modxcifc use libxcifc contains !BOP ! !ROUTINE: xcifc ! !INTERFACE: subroutine xcifc(xctype,n,c_tb09,tempa,rho,rhoup,rhodn,grho,gup,gdn,g2rho, & g2up,g2dn,g3rho,g3up,g3dn,grho2,gup2,gdn2,gupdn,tau,tauup,taudn,ex,ec,vx,vc, & vxup,vxdn,vcup,vcdn,dxdgr2,dxdgu2,dxdgd2,dxdgud,dcdgr2,dcdgu2,dcdgd2,dcdgud, & dxdg2r,dxdg2u,dxdg2d,dcdg2r,dcdg2u,dcdg2d,wx,wxup,wxdn,wc,wcup,wcdn) ! !INPUT/OUTPUT PARAMETERS: ! xctype : type of exchange-correlation functional (in,integer(3)) ! n : number of density points (in,integer) ! c_tb09 : Tran-Blaha '09 constant c (in,real,optional) ! tempa : temperature in atomic units (in,real,optional) ! rho : spin-unpolarised charge density (in,real(n),optional) ! rhoup : spin-up charge density (in,real(n),optional) ! rhodn : spin-down charge density (in,real(n),optional) ! grho : |grad rho| (in,real(n),optional) ! gup : |grad rhoup| (in,real(n),optional) ! gdn : |grad rhodn| (in,real(n),optional) ! g2rho : grad^2 rho (in,real(n),optional) ! g2up : grad^2 rhoup (in,real(n),optional) ! g2dn : grad^2 rhodn (in,real(n),optional) ! g3rho : (grad rho).(grad |grad rho|) (in,real(n),optional) ! g3up : (grad rhoup).(grad |grad rhoup|) (in,real(n),optional) ! g3dn : (grad rhodn).(grad |grad rhodn|) (in,real(n),optional) ! grho2 : |grad rho|^2 (in,real(n),optional) ! gup2 : |grad rhoup|^2 (in,real(n),optional) ! gdn2 : |grad rhodn|^2 (in,real(n),optional) ! gupdn : (grad rhoup).(grad rhodn) (in,real(n),optional) ! tau : kinetic energy density (in,real(n),optional) ! tauup : spin-up kinetic energy density (in,real(n),optional) ! taudn : spin-down kinetic energy density (in,real(n),optional) ! ex : exchange energy density (out,real(n),optional) ! ec : correlation energy density (out,real(n),optional) ! vx : spin-unpolarised exchange potential (out,real(n),optional) ! vc : spin-unpolarised correlation potential (out,real(n),optional) ! vxup : spin-up exchange potential (out,real(n),optional) ! vxdn : spin-down exchange potential (out,real(n),optional) ! vcup : spin-up correlation potential (out,real(n),optional) ! vcdn : spin-down correlation potential (out,real(n),optional) ! dxdgr2 : de_x/d(|grad rho|^2) (out,real(n),optional) ! dxdgu2 : de_x/d(|grad rhoup|^2) (out,real(n),optional) ! dxdgd2 : de_x/d(|grad rhodn|^2) (out,real(n),optional) ! dxdgud : de_x/d((grad rhoup).(grad rhodn)) (out,real(n),optional) ! dcdgr2 : de_c/d(|grad rho|^2) (out,real(n),optional) ! dcdgu2 : de_c/d(|grad rhoup|^2) (out,real(n),optional) ! dcdgd2 : de_c/d(|grad rhodn|^2) (out,real(n),optional) ! dcdgud : de_c/d((grad rhoup).(grad rhodn)) (out,real(n),optional) ! dxdg2r : de_x/d(grad^2 rho) (out,real(n),optional) ! dxdg2u : de_x/d(grad^2 rhoup) (out,real(n),optional) ! dxdg2d : de_x/d(grad^2 rhodn) (out,real(n),optional) ! dcdg2r : de_c/d(grad^2 rho) (out,real(n),optional) ! dcdg2u : de_c/d(grad^2 rhoup) (out,real(n),optional) ! dcdg2d : de_c/d(grad^2 rhodn) (out,real(n),optional) ! wx : de_x/dtau (out,real(n),optional) ! wxup : de_x/dtauup (out,real(n),optional) ! wxdn : de_x/dtaudn (out,real(n),optional) ! wc : de_c/dtau (out,real(n),optional) ! wcup : de_c/dtauup (out,real(n),optional) ! wcdn : de_c/dtaudn (out,real(n),optional) ! !DESCRIPTION: ! Interface to the exchange-correlation routines. In the most general case ! (meta-GGA), the exchange-correlation energy is given by ! $$ E_{xc}[\rho^{\uparrow},\rho^{\downarrow}]=\int d^3r\, ! \rho({\bf r})\,\varepsilon_{xc}(\rho^{\uparrow},\rho^{\downarrow}, ! |\nabla\rho|,|\nabla\rho^{\uparrow}|,|\nabla\rho^{\downarrow}|, ! \nabla^2\rho^{\uparrow},\nabla^2\rho^{\downarrow},\tau), $$ ! where $\rho({\bf r})=\rho^{\uparrow}({\bf r})+\rho^{\downarrow}({\bf r})$ is ! the density; ! $$ \tau({\bf r})\equiv\sum_{i\;{\rm occ}}\nabla\psi({\bf r})\cdot ! \nabla\psi({\bf r}) $$ ! is twice the spin-contracted kinetic energy density; and $\varepsilon_{xc}$ ! is the exchange-correlation energy per electron. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! mandatory arguments integer, intent(in) :: xctype(3) integer, intent(in) :: n ! optional arguments real(8), optional, intent(in) :: c_tb09,tempa real(8), optional, intent(in) :: rho(n),rhoup(n),rhodn(n) real(8), optional, intent(in) :: grho(n),gup(n),gdn(n) real(8), optional, intent(in) :: g2rho(n),g2up(n),g2dn(n) real(8), optional, intent(in) :: g3rho(n),g3up(n),g3dn(n) real(8), optional, intent(in) :: grho2(n),gup2(n),gdn2(n),gupdn(n) real(8), optional, intent(in) :: tau(n),tauup(n),taudn(n) real(8), optional, intent(out) :: ex(n),ec(n),vx(n),vc(n) real(8), optional, intent(out) :: vxup(n),vxdn(n),vcup(n),vcdn(n) real(8), optional, intent(out) :: dxdgr2(n),dxdgu2(n),dxdgd2(n),dxdgud(n) real(8), optional, intent(out) :: dxdg2r(n),dxdg2u(n),dxdg2d(n) real(8), optional, intent(out) :: wx(n),wxup(n),wxdn(n) real(8), optional, intent(out) :: dcdgr2(n),dcdgu2(n),dcdgd2(n),dcdgud(n) real(8), optional, intent(out) :: dcdg2r(n),dcdg2u(n),dcdg2d(n) real(8), optional, intent(out) :: wc(n),wcup(n),wcdn(n) ! local variables real(8) kappa,mu,beta ! allocatable arrays real(8), allocatable :: ra(:,:) if (n.le.0) then write(*,*) write(*,'("Error(xcifc): n <= 0 : ",I8)') n write(*,*) stop end if select case(abs(xctype(1))) case(1) ! No density-derived exchange-correlation energy or potential if (present(ex)) ex(:)=0.d0 if (present(ec)) ec(:)=0.d0 if (present(vx)) vx(:)=0.d0 if (present(vc)) vc(:)=0.d0 if (present(vxup)) vxup(:)=0.d0 if (present(vxdn)) vxdn(:)=0.d0 if (present(vcup)) vcup(:)=0.d0 if (present(vcdn)) vcdn(:)=0.d0 case(2) ! Perdew-Zunger parameterisation of Ceperley-Alder electron gas ! J. Perdew and A. Zunger, Phys. Rev. B 23, 5048 (1981) ! D. M. Ceperly and B. J. Alder, Phys. Rev. Lett. 45, 566 (1980) if (present(rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then call xc_pzca(n,rho,ex,ec,vx,vc) else goto 10 end if case(3) ! Perdew-Wang parameterisation of the spin-polarised Ceperley-Alder electron gas ! J. Perdew and Y. Wang, Phys. Rev. B 45, 13244 (1992) ! D. M. Ceperly and B. J. Alder, Phys. Rev. Lett. 45, 566 (1980) if (present(rhoup).and.present(rhodn).and.present(ex).and.present(ec) & .and.present(vxup).and.present(vxdn).and.present(vcup) & .and.present(vcdn)) then ! spin-polarised density call xc_pwca(n,rhoup,rhodn,ex,ec,vxup,vxdn,vcup,vcdn) else if (present(rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then ! divide spin-unpolarised density into up and down allocate(ra(n,1)) ra(:,1)=0.5d0*rho(:) call xc_pwca(n,ra,ra,ex,ec,vx,vx,vc,vc) deallocate(ra) else goto 10 end if case(4) ! X-alpha approximation ! J. C. Slater, Phys. Rev. 81, 385 (1951) if (present(rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then call xc_xalpha(n,rho,ex,vx) ! set correlation energy and potential to zero ec(:)=0.d0 vc(:)=0.d0 else goto 10 end if case(5) ! U. von Barth and L. Hedin parameterisation of LSDA ! J. Phys. C, 5, 1629 (1972) if (present(rhoup).and.present(rhodn).and.present(ex).and.present(ec) & .and.present(vxup).and.present(vxdn).and.present(vcup) & .and.present(vcdn)) then ! spin-polarised density call xc_vbh(n,rhoup,rhodn,ex,ec,vxup,vxdn,vcup,vcdn) else if (present(rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then ! divide spin-unpolarised density into up and down allocate(ra(n,1)) ra(:,1)=0.5d0*rho(:) call xc_vbh(n,ra,ra,ex,ec,vx,vx,vc,vc) deallocate(ra) else goto 10 end if case(20,21,22) ! original PBE kappa kappa=0.804d0 if (xctype(1).eq.21) then ! Zhang-Yang kappa kappa=1.245d0 end if ! original PBE mu and beta mu=0.2195149727645171d0 beta=0.06672455060314922d0 if (xctype(1).eq.22) then ! PBEsol parameters mu=10.d0/81.d0 beta=0.046d0 end if ! Perdew-Burke-Ernzerhof generalised gradient approximation ! Phys. Rev. Lett. 77, 3865 (1996); 78, 1396(E) (1997) ! Revised PBE, Zhang-Yang, Phys. Rev. Lett. 80, 890 (1998) if (present(rhoup).and.present(rhodn).and.present(grho).and.present(gup) & .and.present(gdn).and.present(g2up).and.present(g2dn).and.present(g3rho) & .and.present(g3up).and.present(g3dn).and.present(ex).and.present(ec) & .and.present(vxup).and.present(vxdn).and.present(vcup) & .and.present(vcdn)) then call xc_pbe(n,kappa,mu,beta,rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho,g3up, & g3dn,ex,ec,vxup,vxdn,vcup,vcdn) else if (present(rho).and.present(grho).and.present(g2rho) & .and.present(g3rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then allocate(ra(n,6)) ra(:,1)=0.5d0*rho(:) ra(:,2)=0.5d0*grho(:) ra(:,3)=0.5d0*g2rho(:) ra(:,4)=0.25d0*g3rho(:) call xc_pbe(n,kappa,mu,beta,ra,ra,grho,ra(:,2),ra(:,2),ra(:,3),ra(:,3), & g3rho,ra(:,4),ra(:,4),ex,ec,vx,ra(:,5),vc,ra(:,6)) deallocate(ra) else goto 10 end if case(26) ! Wu-Cohen exchange with PBE correlation generalised gradient functional ! Zhigang Wu and R. E. Cohen, Phys. Rev. B 73, 235116 (2006) if (present(rho).and.present(grho).and.present(g2rho).and.present(g3rho) & .and.present(ex).and.present(ec).and.present(vx).and.present(vc)) then call xc_wc06(n,rho,grho,g2rho,g3rho,ex,ec,vx,vc) else goto 10 end if case(30) ! Armiento-Mattsson generalised gradient functional ! R. Armiento and A. E. Mattsson, Phys. Rev. B 72, 085108 (2005) if (present(rho).and.present(grho).and.present(g2rho).and.present(g3rho) & .and.present(ex).and.present(ec).and.present(vx).and.present(vc)) then call xc_am05(n,rho,grho,g2rho,g3rho,ex,ec,vx,vc) else goto 10 end if case(100) ! libxc library functionals if (present(rhoup).and.present(rhodn).and.present(g2up).and.present(g2dn) & .and.present(gup2).and.present(gdn2).and.present(gupdn).and.present(tauup) & .and.present(taudn).and.present(ex).and.present(ec).and.present(vxup) & .and.present(vxdn).and.present(vcup).and.present(vcdn).and.present(dxdgu2) & .and.present(dxdgd2).and.present(dxdgud).and.present(dcdgu2) & .and.present(dcdgd2).and.present(dcdgud).and.present(dxdg2u) & .and.present(dxdg2d).and.present(dcdg2u).and.present(dcdg2d) & .and.present(wxup).and.present(wxdn).and.present(wcup) & .and.present(wcdn)) then ! spin-polarised energy meta-GGA call xcifc_libxc(xctype,n,rhoup=rhoup,rhodn=rhodn,g2up=g2up,g2dn=g2dn, & gup2=gup2,gdn2=gdn2,gupdn=gupdn,tauup=tauup,taudn=taudn,ex=ex,ec=ec, & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn,dxdgu2=dxdgu2,dxdgd2=dxdgd2, & dxdgud=dxdgud,dcdgu2=dcdgu2,dcdgd2=dcdgd2,dcdgud=dcdgud,dxdg2u=dxdg2u, & dxdg2d=dxdg2d,dcdg2u=dcdg2u,dcdg2d=dcdg2d,wxup=wxup,wxdn=wxdn,wcup=wcup, & wcdn=wcdn) else if (present(rhoup).and.present(rhodn).and.present(g2up) & .and.present(g2dn).and.present(gup2).and.present(gdn2).and.present(gupdn) & .and.present(tauup).and.present(taudn).and.present(vxup).and.present(vxdn) & .and.present(vcup).and.present(vcdn)) then ! spin-polarised potential-only meta-GGA call xcifc_libxc(xctype,n,c_tb09=c_tb09,rhoup=rhoup,rhodn=rhodn,g2up=g2up, & g2dn=g2dn,gup2=gup2,gdn2=gdn2,gupdn=gupdn,tauup=tauup,taudn=taudn, & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (present(rhoup).and.present(rhodn).and.present(gup2) & .and.present(gdn2).and.present(gupdn).and.present(ex).and.present(ec) & .and.present(vxup).and.present(vxdn).and.present(vcup).and.present(vcdn) & .and.present(dxdgu2).and.present(dxdgd2).and.present(dxdgud) & .and.present(dcdgu2).and.present(dcdgd2).and.present(dcdgud)) then ! spin-polarised GGA call xcifc_libxc(xctype,n,rhoup=rhoup,rhodn=rhodn,gup2=gup2,gdn2=gdn2, & gupdn=gupdn,ex=ex,ec=ec,vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn, & dxdgu2=dxdgu2,dxdgd2=dxdgd2,dxdgud=dxdgud,dcdgu2=dcdgu2,dcdgd2=dcdgd2, & dcdgud=dcdgud) else if (present(rhoup).and.present(rhodn).and.present(ex).and.present(ec) & .and.present(vxup).and.present(vxdn).and.present(vcup) & .and.present(vcdn)) then ! LSDA call xcifc_libxc(xctype,n,tempa=tempa,rhoup=rhoup,rhodn=rhodn,ex=ex,ec=ec, & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (present(rho).and.present(g2rho).and.present(grho2).and.present(tau) & .and.present(ex).and.present(ec).and.present(vx).and.present(vc) & .and.present(dxdgr2).and.present(dcdgr2).and.present(dxdg2r) & .and.present(dcdg2r).and.present(wx).and.present(wc)) then ! spin-unpolarised energy meta-GGA call xcifc_libxc(xctype,n,rho=rho,g2rho=g2rho,grho2=grho2,tau=tau,ex=ex, & ec=ec,vx=vx,vc=vc,dxdgr2=dxdgr2,dcdgr2=dcdgr2,dxdg2r=dxdg2r, & dcdg2r=dcdg2r,wx=wx,wc=wc) else if (present(rho).and.present(g2rho).and.present(grho2).and.present(tau) & .and.present(vx).and.present(vc)) then ! spin-unpolarised potential-only meta-GGA call xcifc_libxc(xctype,n,c_tb09=c_tb09,rho=rho,g2rho=g2rho,grho2=grho2, & tau=tau,vx=vx,vc=vc) else if (present(rho).and.present(grho2).and.present(ex).and.present(ec) & .and.present(vx).and.present(vc).and.present(dxdgr2) & .and.present(dcdgr2)) then ! spin-unpolarised GGA call xcifc_libxc(xctype,n,rho=rho,grho2=grho2,ex=ex,ec=ec,vx=vx,vc=vc, & dxdgr2=dxdgr2,dcdgr2=dcdgr2) else if (present(rho).and.present(ex).and.present(ec).and.present(vx) & .and.present(vc)) then ! LDA call xcifc_libxc(xctype,n,tempa=tempa,rho=rho,ex=ex,ec=ec,vx=vx,vc=vc) else goto 10 end if case default write(*,*) write(*,'("Error(xcifc): xctype not defined : ",I8)') xctype(1) write(*,*) stop end select ! set exchange potential to zero for EXX if (xctype(1).le.-2) then if (present(vx)) vx(:)=0.d0 if (present(vxup)) vxup(:)=0.d0 if (present(vxdn)) vxdn(:)=0.d0 end if return 10 continue write(*,*) write(*,'("Error(xcifc): missing arguments for exchange-correlation type ",& &3I6)') xctype(:) write(*,*) stop end subroutine !EOC !BOP ! !ROUTINE: getxcdata ! !INTERFACE: subroutine getxcdata(xctype,xcdescr,xcspin,xcgrad,hybrid,hybridc) ! !INPUT/OUTPUT PARAMETERS: ! xctype : type of exchange-correlation functional (in,integer(3)) ! xcdescr : description of functional (out,character(512)) ! xcspin : spin treatment (out,integer) ! xcgrad : gradient treatment (out,integer) ! hybrid : .true. if functional a hybrid (out,logical) ! hybridc : hybrid exact exchange mixing coefficient (out,real(8)) ! !DESCRIPTION: ! Returns data on the exchange-correlation functional labeled by {\tt xctype}. ! The character array {\tt xcdescr} contains a short description of the ! functional including journal references. The variable {\tt xcspin} is set to ! 1 or 0 for spin-polarised or -unpolarised functionals, respectively. For ! functionals which require the gradients of the density {\tt xcgrad} is set ! to 1, otherwise it is set to 0. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: xctype(3) character(512), intent(out) :: xcdescr integer, intent(out) :: xcspin,xcgrad logical, intent(out) :: hybrid real(8), intent(out) :: hybridc select case(abs(xctype(1))) case(1) xcdescr='No density-derived exchange-correlation energy or potential' ! spin-polarisation or gradient status not required xcspin=-1 xcgrad=-1 case(2) xcdescr='Perdew-Zunger/Ceperley-Alder, Phys. Rev. B 23, 5048 (1981)' xcspin=0 xcgrad=0 case(3) xcdescr='Perdew-Wang/Ceperley-Alder, Phys. Rev. B 45, 13244 (1992)' xcspin=1 xcgrad=0 case(4) xcdescr='X-alpha approximation, J. C. Slater, Phys. Rev. 81, 385 (1951)' xcspin=0 xcgrad=0 case(5) xcdescr='von Barth-Hedin, J. Phys. C 5, 1629 (1972)' xcspin=1 xcgrad=0 case(20) xcdescr='Perdew-Burke-Ernzerhof, Phys. Rev. Lett. 77, 3865 (1996)' xcspin=1 xcgrad=1 case(21) xcdescr='Revised PBE, Zhang-Yang, Phys. Rev. Lett. 80, 890 (1998)' xcspin=1 xcgrad=1 case(22) xcdescr='PBEsol, Phys. Rev. Lett. 100, 136406 (2008)' xcspin=1 xcgrad=1 case(26) xcdescr='Wu-Cohen exchange + PBE correlation, Phys. Rev. B 73, 235116 (2006)' xcspin=0 xcgrad=1 case(30) xcdescr='Armiento-Mattsson functional, Phys. Rev. B 72, 85108 (2005)' xcspin=0 xcgrad=1 case(100) ! libxc library functionals call xcdata_libxc(xctype,xcdescr,xcspin,xcgrad,hybrid,hybridc) case default write(*,*) write(*,'("Error(getxcdata): xctype not defined : ",I8)') xctype(1) write(*,*) stop end select end subroutine !EOC end module elk-7.2.42/src/PaxHeaders.21776/modfxcifc.f900000644000000000000000000000013214061636516015205 xustar0030 mtime=1623670094.843102559 30 atime=1623670093.558103751 30 ctime=1623670094.843102559 elk-7.2.42/src/modfxcifc.f900000644002504400250440000000412714061636516017246 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modfxcifc use libxcifc contains subroutine fxcifc(fxctype,n,rho,rhoup,rhodn,fxc,fxcuu,fxcud,fxcdd) implicit none ! mandatory arguments integer, intent(in) :: fxctype(3),n ! optional arguments real(8), optional, intent(in) :: rho(n),rhoup(n),rhodn(n) real(8), optional, intent(out) :: fxc(n),fxcuu(n),fxcud(n),fxcdd(n) ! allocatable arrays real(8), allocatable :: ra(:,:) if (n.le.0) then write(*,*) write(*,'("Error(fxcifc): n <= 0 : ",I8)') n write(*,*) stop end if select case(abs(fxctype(1))) case(0,1) ! f_xc = 0 if (present(fxcuu).and.present(fxcud).and.present(fxcdd)) then fxcuu(:)=0.d0 fxcud(:)=0.d0 fxcdd(:)=0.d0 else if (present(fxc)) then fxc(:)=0.d0 else goto 10 end if case(3) ! Perdew-Wang-Ceperley-Alder if (present(rhoup).and.present(rhodn).and.present(fxcuu).and.present(fxcud) & .and.present(fxcdd)) then ! spin-polarised density call fxc_pwca(n,rhoup,rhodn,fxcuu,fxcud,fxcdd) else if (present(rho).and.present(fxc)) then ! divide spin-unpolarised density into up and down allocate(ra(n,4)) ra(:,1)=0.5d0*rho(:) call fxc_pwca(n,ra(:,1),ra(:,1),ra(:,2),ra(:,3),ra(:,4)) fxc(:)=0.5d0*(ra(:,2)+ra(:,3)) deallocate(ra) else goto 10 end if case(100) ! libxc library functionals if (present(rhoup).and.present(rhodn).and.present(fxcuu).and.present(fxcud) & .and.present(fxcdd)) then ! LSDA call fxcifc_libxc(fxctype,n,rhoup=rhoup,rhodn=rhodn,fxcuu=fxcuu, & fxcud=fxcud,fxcdd=fxcdd) else if (present(rho).and.present(fxc)) then ! LDA call fxcifc_libxc(fxctype,n,rho=rho,fxc=fxc) else goto 10 end if case default write(*,*) write(*,'("Error(fxcifc): response function unavailable for fxctype ",3I8)') & fxctype write(*,*) stop end select return 10 continue write(*,*) write(*,'("Error(fxcifc): missing arguments for exchange-correlation type ",& &3I6)') fxctype(:) write(*,*) stop end subroutine end module elk-7.2.42/src/PaxHeaders.21776/moddftu.f900000644000000000000000000000013114061636516014704 xustar0030 mtime=1623670094.844102558 29 atime=1623670093.56010375 30 ctime=1623670094.844102558 elk-7.2.42/src/moddftu.f900000644002504400250440000000627714061636516016756 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module moddftu use modmain !-----------------------------------------------------------! ! muffin-tin density and potential matrix variables ! !-----------------------------------------------------------! ! maximum angular momentum for muffin-tin density matrix integer, parameter :: lmaxdm=3 integer, parameter :: lmmaxdm=(lmaxdm+1)**2 ! density matrix in each muffin-tin complex(8), allocatable :: dmatmt(:,:,:,:,:) ! potential matrix in each muffin-tin complex(8), allocatable :: vmatmt(:,:,:,:,:) ! tvmatmt is .true. if the potential matrices are calculated logical tvmatmt ! tvmmt is .true. if the potential matrix for that l and atom is non-zero logical, allocatable :: tvmmt(:,:) !-------------------------! ! DFT+U variables ! !-------------------------! ! type of DFT+U to use (0 = none) integer dftu ! input type for DFT+U calculation (1:5) integer inpdftu ! maximum number of DFT+U entries integer, parameter :: maxdftu=40 ! number of DFT+U entries integer ndftu ! species and angular momentum for each entry integer idftu(2,maxdftu) ! U and J values for each entry real(8) ujdu(2,maxdftu) ! interpolation constant alpha for each atom and entry [PRB 67, 153106 (2003)] real(8), allocatable :: alphadu(:,:) ! readadu is .true. if alphadu is to be read from file logical readadu ! DFT+U energy for each atom and entry real(8), allocatable :: engyadu(:,:) ! energy from the DFT+U correction real(8) engydu ! Slater parameters real(8) fdu(0:2*lmaxdm,maxdftu) ! Racah parameters real(8) edu(0:lmaxdm,maxdftu) ! screening length of Yukawa potential to calculate Slater integrals real(8) lambdadu(maxdftu) ! energies to calculate radial functions for Slater integrals real(8), allocatable :: fdue(:,:) ! radial functions to calculate Slater integrals real(8), allocatable :: fdufr(:,:,:) ! fixed value of U for which screening length has to be determined real(8) udufix(maxdftu) ! initial values of screening length if U is fixed real(8) lambdadu0(maxdftu) !---------------------------------! ! tensor moment variables ! !---------------------------------! ! tmwrite is .true. if tensor moments are written out at every s.c. loop logical tmwrite ! fixed tensor moment type ! 0 : none ! 2 (-2) : fixed 2-index tensor moment (or just lowering the symmetry) ! 3 (-3) : fixed 3-index tensor moment (or just lowering the symmetry) integer ftmtype ! number of fixed tensor moment entries integer ntmfix ! tensor moment indices for each entry: is, ia, l, n and k, p, x, y for the ! 2-index tensor or k, p, r, t for the 3-index tensor integer, allocatable :: itmfix(:,:) ! tensor component complex(8), allocatable :: tmfix(:) ! spatial and spin rotation matrices of tensor real(8), allocatable :: rtmfix(:,:,:,:) ! density matrices corresponding to the fixed tensor moments complex(8), allocatable :: dmftm(:,:,:,:,:) ! fixed tensor moment potential matrix complex(8), allocatable :: vmftm(:,:,:,:,:) ! fixed tensor moment step size real(8) tauftm ! number of self-consistent loops after which FTM field is updated integer ftmstep end module elk-7.2.42/src/PaxHeaders.21776/modrdm.f900000644000000000000000000000013214061636516014525 xustar0030 mtime=1623670094.846102556 30 atime=1623670093.562103748 30 ctime=1623670094.846102556 elk-7.2.42/src/modrdm.f900000644002504400250440000000213214061636516016560 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modrdm use modmain !--------------------------------------------------------------------! ! reduced density matrix functional theory (RDMFT) variables ! !--------------------------------------------------------------------! ! Coulomb potential matrix elements complex(8), allocatable :: vclmat(:,:,:) ! derivative of kinetic energy w.r.t. natural orbital coefficients complex(8), allocatable :: dkdc(:,:,:) ! step size for occupation numbers real(8) taurdmn ! step size for natural orbital coefficients real(8) taurdmc ! xc functional integer rdmxctype ! maximum number of self-consistent loops integer rdmmaxscl ! maximum number of iterations for occupation number optimisation integer maxitn ! maximum number of iteration for natural orbital optimisation integer maxitc ! exponent for the power and hybrid functional real(8) rdmalpha ! temperature real(8) rdmtemp ! entropy real(8) rdmentrpy end module elk-7.2.42/src/PaxHeaders.21776/modphonon.f900000644000000000000000000000013214061636516015244 xustar0030 mtime=1623670094.847102555 30 atime=1623670093.564103746 30 ctime=1623670094.847102555 elk-7.2.42/src/modphonon.f900000644002504400250440000001261114061636516017302 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modphonon use modmain !--------------------------! ! phonon variables ! !--------------------------! ! number of phonon branches (3*natmtot) integer nbph ! current phonon q-point, species, atom and polarisation index integer iqph,isph,iaph,iasph,ipph ! tphq0 is .true. if q = 0 logical tphq0 ! number of vectors for writing out frequencies and eigenvectors integer nphwrt ! vectors in lattice coordinates for writing out frequencies and eigenvectors real(8), allocatable :: vqlwrt(:,:) ! Coulomb pseudopotential real(8) mustar ! number of temperatures for the Eliashberg equations and thermal properties integer ntemp ! phonon frequencies for all q-points real(8), allocatable :: wphq(:,:) !-----------------------------! ! supercell variables ! !-----------------------------! ! number of primitive unit cells in phonon supercell integer nscph ! Cartesian offset vectors for each primitive cell in the supercell real(8), allocatable :: vscph(:,:) ! phonon displacement distance real(8) deltaph !---------------------! ! k+q-vectors ! !---------------------! ! k+q-vectors in lattice coordinates real(8), allocatable :: vkql(:,:) ! k+q-vectors in Cartesian coordinates real(8), allocatable :: vkqc(:,:) !------------------------------! ! G+q-vector variables ! !------------------------------! ! G+q-vectors in Cartesian coordinates real(8), allocatable :: vgqc(:,:) ! G+q-vector lengths real(8), allocatable :: gqc(:) ! regularised Coulomb Green's function in G+q-space real(8), allocatable :: gclgq(:) ! spherical Bessel functions j_l(|G+q|R_mt) real(8), allocatable :: jlgqrmt(:,:,:) ! spherical harmonics for G+q-vectors complex(8), allocatable :: ylmgq(:,:) ! structure factors for G+q-vectors complex(8), allocatable :: sfacgq(:,:) ! smooth step function form factors for all species and G+q-vectors real(8), allocatable :: ffacgq(:,:) ! characteristic function derivative in G- and G+q-space complex(8), allocatable :: dcfunig(:) ! characteristic function derivative in real-space complex(8), allocatable :: dcfunir(:) !--------------------------------! ! G+k+q-vector variables ! !--------------------------------! ! number of G+k+q-vector for each k-point integer, allocatable :: ngkq(:,:) ! index from G+k+q-vectors to G-vectors integer, allocatable :: igkqig(:,:,:) ! G+k+q-vectors in lattice and Cartesian coordinates real(8), allocatable :: vgkql(:,:,:,:),vgkqc(:,:,:,:) ! G+k+q-vector lengths real(8), allocatable :: gkqc(:,:,:) ! structure factors for the G+k+q-vectors complex(8), allocatable :: sfacgkq(:,:,:,:) !----------------------------------------------------------! ! density functional perturbation theory variables ! !----------------------------------------------------------! ! density derivative complex(8), allocatable :: drhomt(:,:),drhoir(:) ! magnetisation derivative complex(8), allocatable :: dmagmt(:,:,:),dmagir(:,:) ! Coulomb potential derivative complex(8), allocatable :: dvclmt(:,:),dvclir(:) ! if tphdyn is .true. then the phonon dynamical matrix is being calculated logical :: tphdyn=.false. ! nuclear potential without the self-term; used for the phonon dynamical matrix complex(8), allocatable :: zvnmt(:) ! gradient of vsmt for the displaced muffin-tin complex(8), allocatable :: gvsmt(:) ! combined target array for dvsmt, dvsir, dbsmt and dbsir complex(8), allocatable, target :: dvsbs(:) ! Kohn-Sham potential derivative complex(8), pointer :: dvsmt(:,:),dvsir(:) ! Kohn-Sham effective magnetic field derivative complex(8), pointer :: dbsmt(:,:,:),dbsir(:,:) ! G+q-space interstitial Kohn-Sham potential derivative complex(8), allocatable :: dvsig(:) ! spin-orbit coupling radial function derivative complex(8), allocatable :: dsocfr(:,:) ! APW-APW Hamiltonian integral derivatives complex(8), allocatable :: dhaa(:,:,:,:,:,:) ! local-orbital-APW Hamiltonian integral derivatives complex(8), allocatable :: dhloa(:,:,:,:,:) ! local-orbital-local-orbital Hamiltonian integral derivatives complex(8), allocatable :: dhlolo(:,:,:,:) ! real Gaunt coefficient array real(8), allocatable :: gntyyy(:,:,:) ! smallest allowed perturbation theory denominator for eigenvector derivatives real(8) epsdev ! Fermi energy derivative real(8) defermi ! first-variational eigenvalue derivatives real(8), allocatable :: devalfv(:,:,:) ! second-variational eigenvalue derivatives real(8), allocatable :: devalsv(:,:) ! second-variational occupation number derivatives real(8), allocatable :: doccsv(:,:) !-------------------------------------------+ ! electron-phonon mean-field theory | !-------------------------------------------+ ! energy change of the electron system real(8) dengye ! energy change of the phonon system real(8) dengyph ! sum of energy changes in electron and phonon systems real(8) dengy ! phonon frequency cut-off below which modes are neglected real(8) wphcut ! scale factor of the electron-phonon term and its mixing parameter real(8) ephscf(2) ! anomalous is .true. if only the anomalous density matrix is to be used in the ! construction of the electron-phonon Hamiltonian logical anomalous ! tephde is .true. if D = D0 + E, otherwise D = D0 logical tephde ! single-precision electron-phonon matrix element array for each k- and q-point complex(4), allocatable :: ephmkq(:,:,:,:,:) end module elk-7.2.42/src/PaxHeaders.21776/modtest.f900000644000000000000000000000013214061636516014722 xustar0030 mtime=1623670094.849102553 30 atime=1623670093.565103745 30 ctime=1623670094.849102553 elk-7.2.42/src/modtest.f900000644002504400250440000000470214061636516016762 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modtest use modmpi ! if test is .true. then the test variables are written to file logical test contains subroutine writetest(id,descr,nv,iv,iva,tol,rv,rva,zv,zva) implicit none ! arguments integer, intent(in) :: id character(*), intent(in) :: descr integer, optional, intent(in) :: nv integer, optional, intent(in) :: iv integer, optional, intent(in) :: iva(*) real(8), optional, intent(in) :: tol real(8), optional, intent(in) :: rv real(8), optional, intent(in) :: rva(*) complex(8), optional, intent(in) :: zv complex(8), optional, intent(in) :: zva(*) ! local variables integer j character(256) fname if (.not.test) return if (.not.mp_mpi) return if ((id.lt.0).or.(id.gt.999)) then write(*,*) write(*,'("Error(writetest): id out of range : ",I8)') id write(*,*) stop end if if ((present(iva)).or.(present(rva)).or.(present(zva))) then if (.not.present(nv)) then write(*,*) write(*,'("Error(writetest): missing argument nv")') write(*,*) stop else if (nv.le.0) then write(*,*) write(*,'("Error(writetest): nv <= 0 : ",I8)') nv write(*,*) stop end if end if end if if ((present(rv)).or.(present(rva)).or.(present(zv)).or.(present(zva))) then if (.not.present(tol)) then write(*,*) write(*,'("Error(writetest): missing argument tol")') write(*,*) stop end if end if write(fname,'("TEST_",I3.3,".OUT")') id !$OMP CRITICAL(writetest_) open(90,file=trim(fname),form='FORMATTED',action='WRITE') write(90,'("''",A,"''")') trim(descr) if (present(iv)) then write(90,'(2I8)') 1,1 write(90,'(2I8)') 1,iv else if (present(rv)) then write(90,'(2I8)') 2,1 write(90,'(G22.12)') tol write(90,'(I8,G22.12)') 1,rv else if (present(zv)) then write(90,'(2I8)') 3,1 write(90,'(G22.12)') tol write(90,'(I8,2G22.12)') 1,dble(zv),aimag(zv) else if (present(iva)) then write(90,'(2I8)') 1,nv do j=1,nv write(90,'(2I8)') j,iva(j) end do else if (present(rva)) then write(90,'(2I8)') 2,nv write(90,'(G22.12)') tol do j=1,nv write(90,'(I8,G22.12)') j,rva(j) end do else if (present(zva)) then write(90,'(2I8)') 3,nv write(90,'(G22.12)') tol do j=1,nv write(90,'(I8,2G22.12)') j,dble(zva(j)),aimag(zva(j)) end do end if close(90) !$OMP END CRITICAL(writetest_) end subroutine end module elk-7.2.42/src/PaxHeaders.21776/modrandom.f900000644000000000000000000000013214061636516015223 xustar0030 mtime=1623670094.851102551 30 atime=1623670093.567103743 30 ctime=1623670094.851102551 elk-7.2.42/src/modrandom.f900000644002504400250440000000251414061636516017262 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modrandom ! random number generator state integer(8) :: rndstate(0:5)=[799047353, 1322018920, 1014372120, 1198189977, & 832907020, 5678910] contains !BOP ! !ROUTINE: randomu ! !INTERFACE: real(8) function randomu() ! !DESCRIPTION: ! Generates random numbers with a uniform distribution in the interval $[0,1]$ ! using the fifth-order multiple recursive generator of P. L'Ecuyer, ! F. Blouin, and R. Coutre, {\it ACM Trans. Modeling Comput. Simulation} ! {\bf 3}, 87 (1993). The sequence of numbers $r_i$ is produced from ! $$ x_i=(a_1 x_{i-1}+a_5 x_{i-5})\mod m $$ ! with $r_i=x_i/m$. The period is about $2^{155}$. ! ! !REVISION HISTORY: ! Created January 2012 (JKD) ! Changed initial state, April 2017 (JKD) !EOP !BOC implicit none ! local variables ! parameters taken from the GNU Scientific Library (GSL) integer(8), parameter :: a1=107374182, a5=104480, m=2147483647 integer(8) :: i=0 integer(8) i1,i5 !$OMP CRITICAL(randomu_) i=modulo(i+1,6_8) i1=modulo(i-1,6_8) i5=modulo(i-5,6_8) rndstate(i)=int(mod(a1*rndstate(i1)+a5*rndstate(i5),m)) randomu=dble(rndstate(i))/dble(m) !$OMP END CRITICAL(randomu_) end function !EOC end module elk-7.2.42/src/PaxHeaders.21776/modstore.f900000644000000000000000000000013014061636516015075 xustar0029 mtime=1623670094.85210255 30 atime=1623670093.569103741 29 ctime=1623670094.85210255 elk-7.2.42/src/modstore.f900000644002504400250440000000220514061636516017133 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !---------------------------------------------------------! ! variables for storing original input parameters ! !---------------------------------------------------------! module modstore use modmain real(8) avec_(3,3) real(8) bvec_(3,3),binv_(3,3) real(8) omega_ logical tshift_ logical primcell_ integer natoms_(maxspecies) integer natmtot_ integer idxis_(maxatoms*maxspecies) real(8) atposl_(3,maxatoms,maxspecies) real(8) atposc_(3,maxatoms,maxspecies) integer ngridg_(3),ngtot_ integer, allocatable :: ivg_(:,:),igfft_(:) logical spinpol_,spinorb_,cmagz_,spinsprl_ real(8) bfieldc0_(3) real(8) bfcmt0_(3,maxatoms,maxspecies) real(8) afieldc_(3) real(8) reducebf_ integer fsmtype_ real(8) momfix_(3) real(8) mommtfix_(3,maxatoms,maxspecies) logical tforce_ logical autokpt_ integer ngridk_(3) real(8) vkloff_(3) integer lmaxi_ logical tfav0_ real(8) vqlss_(3) integer msmooth_ integer reducek_ integer maxscl_ logical tjr_ real(8) swidth_ end module elk-7.2.42/src/PaxHeaders.21776/modpw.f900000644000000000000000000000013214061636516014371 xustar0030 mtime=1623670094.854102548 30 atime=1623670093.571103739 30 ctime=1623670094.854102548 elk-7.2.42/src/modpw.f900000644002504400250440000000320214061636516016423 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modpw !----------------------------! ! H-vector variables ! !----------------------------! ! reduceh is .true. if the H-vectors are reduced with the crystal symmetries logical reduceh ! H-vector cut-off for interstitial potential and density real(8) hmaxvr ! H-vector grid sizes integer ngridh(3) ! total number of H-vectors integer nhtot ! integer grid intervals for each direction integer inthv(2,3) ! number of H-vectors with |H| < hmaxvr integer nhvec ! H-vector integer coordinates (i1,i2,i3) integer, allocatable :: ivh(:,:) ! H-vector multiplicity after symmetry reduction integer, allocatable :: mulh(:) ! H-vectors in Cartesian coordinates real(8), allocatable :: vhc(:,:) ! length of H-vectors real(8), allocatable :: hc(:) ! H-vector transformation matrix real(8) vhmat(3,3) !------------------------------! ! H+k-vector variables ! !------------------------------! ! maximum |H+k| cut-off for plane wave real(8) hkmax ! number of H+k-vectors for plane waves integer, allocatable :: nhk(:,:) ! maximum number of H+k-vectors over all k-points integer nhkmax ! index from H+k-vectors to G-vectors integer, allocatable :: ihkig(:,:,:) ! H+k-vectors in lattice coordinates real(8), allocatable :: vhkl(:,:,:,:) ! H+k-vectors in Cartesian coordinates real(8), allocatable :: vhkc(:,:,:,:) ! length of H+k-vectors real(8), allocatable :: hkc(:,:,:) ! structure factors for the H+k-vectors complex(8), allocatable :: sfachk(:,:,:,:) end module elk-7.2.42/src/PaxHeaders.21776/modvars.f900000644000000000000000000000013214061636516014716 xustar0030 mtime=1623670094.855102548 30 atime=1623670093.572103738 30 ctime=1623670094.855102548 elk-7.2.42/src/modvars.f900000644002504400250440000000465014061636516016760 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modvars use modmpi ! if wrtvars is .true. then variables are written to VARIABLES.OUT logical wrtvars contains subroutine delvars implicit none if (.not.mp_mpi) return ! delete existing variables file open(95,file='VARIABLES.OUT') close(95,status='DELETE') end subroutine subroutine writevars(vname,l,m,nv,iv,iva,rv,rva,zv,zva,sv,sva) implicit none ! arguments character(*), intent(in) :: vname integer, optional, intent(in) :: l,m integer, optional, intent(in) :: nv integer, optional, intent(in) :: iv integer, optional, intent(in) :: iva(*) real(8), optional, intent(in) :: rv real(8), optional, intent(in) :: rva(*) complex(8), optional, intent(in) :: zv complex(8), optional, intent(in) :: zva(*) character(*), optional, intent(in) :: sv character(*), optional, intent(in) :: sva(*) ! local variables integer i if (.not.wrtvars) return if (.not.mp_mpi) return if ((present(iva)).or.(present(rva)).or.(present(zva)).or.(present(sva))) then if (.not.present(nv)) then write(*,*) write(*,'("Error(writevars): missing argument nv")') write(*,*) stop else if (nv.lt.0) then write(*,*) write(*,'("Error(writevars): nv < 0 : ",I8)') nv write(*,*) stop end if end if end if open(95,file='VARIABLES.OUT',position='APPEND',form='FORMATTED',action='WRITE') write(95,*) write(95,'(A)',advance='NO') trim(vname) if (present(l)) write(95,'(I8)',advance='NO') l if (present(m)) write(95,'(I8)',advance='NO') m write(95,*) if (present(iv)) then write(95,'(2I8)') 1,1 write(95,'(I8)') iv else if (present(rv)) then write(95,'(2I8)') 2,1 write(95,'(G22.12)') rv else if (present(zv)) then write(95,'(2I8)') 3,1 write(95,'(2G22.12)') dble(zv),aimag(zv) else if (present(sv)) then write(95,'(2I8)') 4,1 write(95,'(A)') trim(sv) else if (present(iva)) then write(95,'(2I8)') 1,nv do i=1,nv write(95,'(I8)') iva(i) end do else if (present(rva)) then write(95,'(2I8)') 2,nv do i=1,nv write(95,'(G22.12)') rva(i) end do else if (present(zva)) then write(95,'(2I8)') 3,nv do i=1,nv write(95,'(2G22.12)') dble(zva(i)),aimag(zva(i)) end do else if (present(sva)) then write(95,'(2I8)') 4,nv do i=1,nv write(95,'(A)') trim(sva(i)) end do end if close(95) end subroutine end module elk-7.2.42/src/PaxHeaders.21776/modtddft.f900000644000000000000000000000013214061636516015050 xustar0030 mtime=1623670094.857102546 30 atime=1623670093.574103737 30 ctime=1623670094.857102546 elk-7.2.42/src/modtddft.f900000644002504400250440000000607714061636516017117 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modtddft !-----------------------------------------! ! TDDFT linear response variables ! !-----------------------------------------! ! exchange-correlation kernel type integer fxctype(3) ! parameters for long-range correction (LRC) kernel real(8) fxclrc(2) ! number of independent spin components of the f_xc spin tensor integer nscfxc ! magnetic linear dichroism (MLD) angle between the electric and magnetic fields real(8) thetamld !---------------------------------------------! ! TDDFT real-time evolution variables ! !---------------------------------------------! ! number of laser pulses defining the time-dependent A-field integer npulse ! laser pulse parameters: vector amplitude, peak time, full-width at ! half-maximum, frequency and phase real(8), allocatable :: pulse(:,:) ! number of A-field ramps integer nramp ! ramp parameters: vector amplitude, ramp start time, linear, quadratic, cubic, ! etc. coefficients real(8), allocatable :: ramp(:,:) ! total simulation time real(8) tstime ! time step length real(8) dtimes ! number of time steps integer ntimes ! current time step integer itimes ! time steps real(8), allocatable :: times(:) ! phase defining complex direction of time evolution real(8) tdphi ! number of time steps after which the time-dependent eigenvectors are backed up integer ntsbackup ! tafieldt is .true. if a time-dependent vector potential is applied logical tafieldt ! time-dependent total A-field (external plus induced) real(8), allocatable :: afieldt(:,:) ! induced A-field and its time derivative at the current time step real(8) afindt(3,0:1) ! induced A-field scale factor real(8) afindscf ! if tafindt is .true. then the induced A-field is determined from Maxwell's ! equation and added to the total logical tafindt ! electric field at current time step real(8) efieldt(3) ! observables are written to file every ntswrite(1) time steps; this begins ! at or after time step ntswrite(2); writing occurs at the first time step ! irrespective of ntswrite integer ntswrite(2) ! static charge density real(8), allocatable :: rhosmt(:,:,:),rhosir(:,:) ! total static charge real(8) chgstot(3) ! muffin-tin static charge real(8), allocatable :: chgsmt(:,:) ! gradient of the Coulomb potential of the nucleus plus static density complex(8), allocatable :: gvclns(:,:,:) ! the following variables are .true. if the corresponding quantities are to be ! written every ntswrite time steps logical tdrho1d,tdrho2d,tdrho3d logical tdmag1d,tdmag2d,tdmag3d logical tdjr1d,tdjr2d,tdjr3d logical tddos,tdlsj ! magnitude of complex numbers added to initial eigenvectors real(8) rndevt0 ! starting time for the Fourier transform when calculating the linear response ! dielectric function from the real-time evolved current real(8) t0tdlr ! number of time steps between force calculations integer ntsforce ! total atomic forces at each time step real(8), allocatable :: forcet(:,:,:) end module elk-7.2.42/src/PaxHeaders.21776/modgw.f900000644000000000000000000000013214061636516014360 xustar0030 mtime=1623670094.858102545 30 atime=1623670093.576103735 30 ctime=1623670094.858102545 elk-7.2.42/src/modgw.f900000644002504400250440000000242714061636516016422 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. module modgw ! maximum Matsubara frequency for the GW calculation real(8) wmaxgw ! maximum number of Matsubara frequencies integer nwgw ! integer grid intervals for Matsubara frequencies integer intwgw(2) ! map from frequency index to FFT array integer, allocatable :: iwfft(:) ! maximum fermionic Matsubara frequency index to be used for the GW calculation integer nwfm ! maximum bosonic frequency index integer nwbs ! imaginary frequencies used for the GW calculation real(8), allocatable :: wgw(:) ! complex fermionic frequencies complex(8), allocatable :: wfm(:) ! twdiag is .true. if the screened interaction W is taken to be diagonal logical twdiag ! tsediag is .true. if the GW self-energy is taken to be diagonal logical tsediag ! type of analytic continuation to be used for determining the self-energy on ! the real axis integer actype ! number of poles used for fitting the self-energy matrix elements integer npole ! number of complex shifts used in averaging the Pade approximant for the ! analytic continuation of the self-energy to the real axis integer nspade end module elk-7.2.42/src/PaxHeaders.21776/modulr.f900000644000000000000000000000013214061636516014545 xustar0030 mtime=1623670094.860102543 30 atime=1623670093.577103734 30 ctime=1623670094.860102543 elk-7.2.42/src/modulr.f900000644002504400250440000000626514061636516016613 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modulr !-----------------------------! ! ultracell variables ! !-----------------------------! ! ultracell lattice vectors stored column-wise real(8) avecu(3,3) ! ultracell reciprocal lattice vectors real(8) bvecu(3,3) ! ultracell volume and Brillouin zone volume real(8) omegau,omegabzu ! original number of k-points integer nkpt0 ! kappa-point grid sizes integer ngridkpa(3) ! integer grid intervals for the kappa-points integer intkpa(2,3) ! number of kappa-points integer nkpa ! R-vectors in Cartesian coordinates spanning the ultracell real(8), allocatable :: vrcu(:,:) !------------------------------! ! G+Q-vector variables ! !------------------------------! ! small Q cut-off for non-zero Q-vectors real(8) q0cut ! G+Q-vectors in Cartesian coordinates real(8), allocatable :: vgqc(:,:,:) ! |G+Q| for all G+Q-vectors real(8), allocatable :: gqc(:,:) ! Coulomb Green's function in G+Q-space = 4 pi / |G+Q|^2 real(8), allocatable :: gclgq(:,:) ! spherical Bessel functions j_l(|G+Q|R_mt) real(8), allocatable :: jlgqrmt(:,:,:,:) ! spherical harmonics of the G+Q-vectors complex(8), allocatable :: ylmgq(:,:,:) ! structure factors for the G+Q-vectors complex(8), allocatable :: sfacgq(:,:,:) ! phase factor functions exp(iQ.r) in each muffin-tin complex(8), allocatable :: expqmt(:,:,:) !---------------------------------------------------! ! ultra long-range densities and potentials ! !---------------------------------------------------! ! trdvclr is .true. if the real-space external Coulomb potential should be read ! in from file logical trdvclr ! Q-dependent external Coulomb potential (FFT ordering) complex(8), allocatable :: vclq(:) ! Q-dependent external magnetic field complex(8), allocatable :: bfcq(:,:) ! Q-dependent external muffin-tin magnetic fields complex(8), allocatable :: bfcmtq(:,:,:) ! electric field vector in Cartesian coordinates real(8) efielduc(3) ! R-dependent density and magnetisation real(8), allocatable :: rhormt(:,:,:),rhorir(:,:) real(8), allocatable :: magrmt(:,:,:,:),magrir(:,:,:) ! muffin-tin charges and moments for each R-vector real(8), allocatable :: chgmtru(:,:) real(8), allocatable :: mommtru(:,:,:) ! Q-dependent density and magnetisation complex(8), allocatable :: rhoqmt(:,:,:),rhoqir(:,:) complex(8), allocatable :: magqmt(:,:,:,:),magqir(:,:,:) ! Q-dependent Kohn-Sham potential and magnetic field complex(8), allocatable, target :: vsbsq(:) complex(8), pointer :: vsqmt(:,:,:),vsqir(:,:) complex(8), pointer :: bsqmt(:,:,:,:),bsqir(:,:,:) ! random amplitude used for initialising the long-range magnetic field real(8) rndbfcu ! if tplotq0 is .true. then the Q=0 term is included when generating plots logical tplotq0 !----------------------------------------------! ! eigenvalue and eigenvector variables ! !----------------------------------------------! ! number of ultra long-range states integer nstulr ! long-range eigenvalues real(8), allocatable :: evalu(:,:) ! long-range occupation numbers real(8), allocatable :: occulr(:,:) end module elk-7.2.42/src/PaxHeaders.21776/modbog.f900000644000000000000000000000013214061636516014512 xustar0030 mtime=1623670094.861102542 30 atime=1623670093.579103732 30 ctime=1623670094.861102542 elk-7.2.42/src/modbog.f900000644002504400250440000000231214061636516016545 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modbog ! combined target array for fermionic and bosonic density matrices complex(8), allocatable, target :: duvwx(:) !----------------------------------------! ! fermionic Bogoliubov variables ! !----------------------------------------! ! Bogoliubov equation eigenvalues real(8), allocatable :: evaluv(:,:) ! V-norm for each state and k-point real(8), allocatable :: vnorm(:,:) ! Fermi energy adjustment step size real(8) tauefm ! Fermi energy convergence tolerance real(8) epsefm ! Hartree-Fock-Bogoliubov coupling constant real(8) ehfb ! density matrices VV† and UV† complex(8), pointer :: dvv(:,:,:),duv(:,:,:) ! fermionic anomalous correlation entropy real(8) face ! bdiag is .true. if the matrix B is taken to be diagonal logical bdiag !--------------------------------------! ! bosonic Bogoliubov variables ! !--------------------------------------! ! Bogoliubov equation eigenvalues real(8), allocatable :: evalwx(:,:) ! density matrices XX† and WX† complex(8), pointer :: dxx(:,:,:),dwx(:,:,:) end module elk-7.2.42/src/PaxHeaders.21776/moddelf.f900000644000000000000000000000012714061636516014661 xustar0029 mtime=1623670094.86310254 29 atime=1623670093.58110373 29 ctime=1623670094.86310254 elk-7.2.42/src/moddelf.f900000644002504400250440000000517014061636516016715 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module moddelf use modramdisk use modmpi contains subroutine delfiles(evec,devec,eval,occ,pmat,epsi) use modphonon implicit none ! arguments logical, optional, intent(in) :: evec,devec,eval,occ,pmat,epsi ! local variables integer ios character(256) fext,fname if (present(evec)) then ! delete the first-variational eigenvector file fname=trim(scrpath)//'EVECFV'//trim(filext) if (mp_mpi) then open(202,file=fname,form='UNFORMATTED',iostat=ios) close(202,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd(fname) ! delete the second-variational eigenvector file fname=trim(scrpath)//'EVECSV'//trim(filext) if (mp_mpi) then open(206,file=fname,form='UNFORMATTED',iostat=ios) close(206,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd(fname) end if if (present(devec)) then ! construct the dynamical matrix file extension call dynfext(iqph,isph,iaph,ipph,fext) ! delete the eigenvector derivative files fname=trim(scrpath)//'DEVECFV'//trim(fext) if (mp_mpi) then open(222,file=fname,form='UNFORMATTED',iostat=ios) close(222,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd(fname) fname=trim(scrpath)//'DEVECSV'//trim(fext) if (mp_mpi) then open(226,file=fname,form='UNFORMATTED',iostat=ios) close(226,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd(fname) end if if (present(eval)) then ! delete the first-variational eigenvalue file fname='EVALFV'//trim(filext) if (mp_mpi) then open(200,file=fname,form='UNFORMATTED',iostat=ios) close(200,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd(fname) ! delete the second-variational eigenvalue file if (mp_mpi) then open(204,file='EVALSV'//trim(filext),form='UNFORMATTED',iostat=ios) close(204,status='DELETE',iostat=ios) end if end if if (present(occ)) then ! delete the occupation number file if (mp_mpi) then open(208,file='OCCSV'//trim(filext),form='UNFORMATTED',iostat=ios) close(208,status='DELETE',iostat=ios) end if end if if (present(pmat)) then ! delete the momentum matrix elements file if (mp_mpi) then open(230,file='PMAT.OUT',form='UNFORMATTED',iostat=ios) close(230,status='DELETE',iostat=ios) end if if (ramdisk) call delfrd('PMAT.OUT') end if if (present(epsi)) then ! delete the inverse epsilon file if (mp_mpi) then open(245,file='EPSINV.OUT',form='UNFORMATTED',iostat=ios) close(245,status='DELETE',iostat=ios) end if end if end subroutine end module elk-7.2.42/src/PaxHeaders.21776/modomp.f900000644000000000000000000000013214061636516014536 xustar0030 mtime=1623670094.864102539 30 atime=1623670093.582103729 30 ctime=1623670094.864102539 elk-7.2.42/src/modomp.f900000644002504400250440000000735014061636516016600 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module modomp ! maximum number of OpenMP threads available integer maxthd ! maximum number of OpenMP threads for the first nesting level integer maxthd1 ! maximum number of threads available to MKL integer maxthdmkl ! maximum OpenMP nesting level integer maxlvl ! number of active OpenMP threads for each nesting level integer, allocatable, protected :: nathd(:) interface integer function omp_get_num_procs() end function integer function omp_get_max_threads() end function integer function omp_get_num_threads() end function integer function omp_get_thread_num() end function integer function omp_get_max_active_levels() end function logical function omp_get_dynamic() end function integer function omp_get_level() end function subroutine omp_set_num_threads(num_threads) integer, intent(in) :: num_threads end subroutine integer function mkl_set_num_threads_local(num_threads) integer, intent(in) :: num_threads end function subroutine omp_set_nested(nested) logical, intent(in) :: nested end subroutine subroutine omp_set_max_active_levels(max_levels) integer, intent(in) :: max_levels end subroutine subroutine omp_set_dynamic(dynamic_threads) logical, intent(in) :: dynamic_threads end subroutine end interface contains subroutine omp_init implicit none ! determine the maximum number of available threads select case(maxthd) case(:-1) ! set the number of threads equal to a fraction of the number of processors maxthd=omp_get_num_procs()/abs(maxthd) maxthd=max(maxthd,1) call omp_set_num_threads(maxthd) case(0) ! use the system default number of threads maxthd=omp_get_max_threads() case default ! use the number of threads specified in the input file call omp_set_num_threads(maxthd) end select ! determine the maximum number of threads available at first nesting level select case(maxthd1) case(:-1) maxthd1=maxthd/abs(maxthd1) maxthd1=max(maxthd1,1) case(0) maxthd1=maxthd case default maxthd1=min(maxthd1,maxthd) end select ! switch off dynamic allocation of threads call omp_set_dynamic(.false.) ! allow nested parallelism (deprecated in OpenMP version 5) call omp_set_nested(.true.) ! set the maximum nesting level call omp_set_max_active_levels(maxlvl) ! allocate the number of active threads array if (allocated(nathd)) deallocate(nathd) allocate(nathd(0:maxlvl)) ! initialise the number of active threads call omp_reset end subroutine subroutine omp_reset implicit none ! number of active threads at each nesting level nathd(0)=1 nathd(1:)=0 end subroutine subroutine holdthd(nloop,nthd) implicit none ! arguments integer, intent(in) :: nloop integer, intent(out) :: nthd ! local variables integer lvl,na,n ! current nesting level lvl=omp_get_level() if ((lvl.lt.0).or.(lvl.ge.maxlvl)) then nthd=1 return end if !$OMP CRITICAL(modomp_) ! determine number of active threads at the current nesting level na=nathd(lvl) na=max(min(na,maxthd),1) ! number of threads allowed for this loop nthd=maxthd/na if (mod(maxthd,na).gt.0) nthd=nthd+1 if (lvl.eq.0) nthd=min(nthd,maxthd1) nthd=max(min(nthd,maxthd,nloop),1) ! add to number of active threads in next nesting level n=nathd(lvl+1)+nthd n=max(min(n,maxthd),0) nathd(lvl+1)=n !$OMP END CRITICAL(modomp_) end subroutine subroutine freethd(nthd) implicit none ! arguments integer, intent(in) :: nthd ! local variables integer lvl,n ! current nesting level lvl=omp_get_level() if ((lvl.lt.0).or.(lvl.ge.maxlvl)) return !$OMP CRITICAL(modomp_) ! subtract from the number of active threads in next nesting level n=nathd(lvl+1)-nthd n=max(min(n,maxthd),0) nathd(lvl+1)=n !$OMP END CRITICAL(modomp_) end subroutine end module elk-7.2.42/src/PaxHeaders.21776/mkl_stub.f900000644000000000000000000000013214061636517015064 xustar0030 mtime=1623670095.970101513 30 atime=1623670093.584103727 30 ctime=1623670095.970101513 elk-7.2.42/src/mkl_stub.f900000644002504400250440000000107714061636517017126 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for Intel MKL subroutine mkl_set_num_threads(num_threads) implicit none integer, intent(in) :: num_threads end subroutine integer function mkl_set_num_threads_local(num_threads) implicit none integer, intent(in) :: num_threads mkl_set_num_threads_local=0 end function subroutine mkl_set_dynamic(dynamic) implicit none logical, intent(in) :: dynamic end subroutine elk-7.2.42/src/PaxHeaders.21776/mkl_init.f900000644000000000000000000000013214061636516015051 xustar0030 mtime=1623670094.867102536 30 atime=1623670093.586103725 30 ctime=1623670094.867102536 elk-7.2.42/src/mkl_init.f900000644002504400250440000000117614061636516017113 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine mkl_init use modomp implicit none ! set the initial global number of MKL threads equal to one call mkl_set_num_threads(1) ! set the maximum number of threads available to MKL select case(maxthdmkl) case(:-1) maxthdmkl=maxthd/abs(maxthdmkl) maxthdmkl=max(maxthdmkl,1) case(0) maxthdmkl=maxthd case default maxthdmkl=min(maxthdmkl,maxthd) end select ! enable dynamic thread allocation call mkl_set_dynamic(.true.) end subroutine elk-7.2.42/src/PaxHeaders.21776/oblas_stub.f900000644000000000000000000000013214061636517015401 xustar0030 mtime=1623670095.972101511 30 atime=1623670093.587103725 30 ctime=1623670095.972101511 elk-7.2.42/src/oblas_stub.f900000644002504400250440000000051714061636517017441 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for OpenBLAS subroutine openblas_set_num_threads(num_threads) implicit none integer, intent(in) :: num_threads end subroutine elk-7.2.42/src/PaxHeaders.21776/oblas_init.f900000644000000000000000000000013214061636516015366 xustar0030 mtime=1623670094.870102534 30 atime=1623670093.589103723 30 ctime=1623670094.870102534 elk-7.2.42/src/oblas_init.f900000644002504400250440000000051614061636516017425 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine oblas_init implicit none ! set the initial number of OpenBLAS threads equal to one call openblas_set_num_threads(1) end subroutine elk-7.2.42/src/PaxHeaders.21776/blis_stub.f900000644000000000000000000000013014061636517015230 xustar0029 mtime=1623670095.97310151 30 atime=1623670093.591103721 29 ctime=1623670095.97310151 elk-7.2.42/src/blis_stub.f900000644002504400250440000000051514061636517017270 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for BLIS subroutine bli_thread_set_num_threads(num_threads) implicit none integer, intent(in) :: num_threads end subroutine elk-7.2.42/src/PaxHeaders.21776/blis_init.f900000644000000000000000000000013114061636516015216 xustar0030 mtime=1623670094.873102531 29 atime=1623670093.59210372 30 ctime=1623670094.873102531 elk-7.2.42/src/blis_init.f900000644002504400250440000000051314061636516017253 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine blis_init implicit none ! set the initial number of BLIS threads equal to one call bli_thread_set_num_threads(1) end subroutine elk-7.2.42/src/PaxHeaders.21776/w90_stub.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.975101508 30 atime=1623670093.594103718 30 ctime=1623670095.975101508 elk-7.2.42/src/w90_stub.f900000644002504400250440000000322114061636517016753 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin and Lars Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for Wannier90 library. subroutine wannier_setup(seed__name,mp_grid_loc,num_kpts_loc, & real_lattice_loc,recip_lattice_loc,kpt_latt_loc,num_bands_tot, & num_atoms_loc,atom_symbols_loc,atoms_cart_loc, gamma_only_loc,spinors_loc, & nntot_loc,nnlist_loc,nncell_loc,num_bands_loc,num_wann_loc, & proj_site_loc,proj_l_loc,proj_m_loc,proj_radial_loc,proj_z_loc, & proj_x_loc,proj_zona_loc,exclude_bands_loc,proj_s_loc,proj_s_qaxis_loc) implicit none ! arguments character(*) seed__name integer mp_grid_loc(3) integer num_kpts_loc real(8) real_lattice_loc(3,3) real(8) recip_lattice_loc(3,3) real(8) kpt_latt_loc(3,num_kpts_loc) integer num_bands_tot integer num_atoms_loc character(*) atom_symbols_loc(num_atoms_loc) real(8) atoms_cart_loc(3,num_atoms_loc) logical gamma_only_loc logical spinors_loc integer nntot_loc integer nnlist_loc(num_kpts_loc,*) integer nncell_loc(3,num_kpts_loc,*) integer num_bands_loc integer num_wann_loc real(8) proj_site_loc(3,num_bands_tot) integer proj_l_loc(num_bands_tot) integer proj_m_loc(num_bands_tot) integer proj_radial_loc(num_bands_tot) real(8) proj_z_loc(3,num_bands_tot) real(8) proj_x_loc(3,num_bands_tot) real(8) proj_zona_loc(num_bands_tot) integer exclude_bands_loc(num_bands_tot) integer, optional :: proj_s_loc(num_bands_tot) real(8), optional :: proj_s_qaxis_loc(3,num_bands_tot) write(*,*) write(*,'("Error(wannier_setup): libwannier not or improperly installed")') write(*,*) error stop end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/modw90.f900000644000000000000000000000013214061636516014362 xustar0030 mtime=1623670094.876102528 30 atime=1623670093.596103716 30 ctime=1623670094.876102528 elk-7.2.42/src/modw90.f900000644002504400250440000000227414061636516016424 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Jon Lafuente and Manh Duc Le; 2017-18 Arsenii Gerasimov, ! Yaroslav Kvashnin and Lars Nordstrom. This file is distributed under the terms ! of the GNU General Public License. See the file COPYING for license details. module modw90 !---------------------------------------! ! Wannier90 interface variables ! !---------------------------------------! ! seedname for all Wannier90 files character(256) seedname ! number of extra lines to write to .win file integer nxlwin ! extra lines to write to .win file character(256), allocatable :: xlwin(:) ! number of Wannier functions to calculate integer num_wann ! number of bands to pass to Wannier90 integer num_bands ! index to bands integer, allocatable :: idxw90(:) ! number of iterations for the minimisation of omega integer num_iter ! trial step for the line search minimisation real(8) trial_step ! maximum number of nearest neighbours per k-point integer, parameter :: num_nnmax=12 ! total number of nearest neighbours for each k-point integer nntot ! list of nearest neighbours for each k-point integer, allocatable :: nnlist(:,:) ! G-vector offset for each nearest neighbour integer, allocatable :: nncell(:,:,:) end module elk-7.2.42/src/PaxHeaders.21776/zfftifc.f900000644000000000000000000000013014061636517014675 xustar0029 mtime=1623670095.99410149 30 atime=1623670093.597103715 29 ctime=1623670095.99410149 elk-7.2.42/src/zfftifc.f900000644002504400250440000000234714061636517016742 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zfftifc ! !INTERFACE: subroutine zfftifc(nd,n,sgn,z) ! !INPUT/OUTPUT PARAMETERS: ! nd : number of dimensions (in,integer) ! n : grid sizes (in,integer(nd)) ! sgn : FFT direction, -1: forward; 1: backward (in,integer) ! z : array to transform (inout,complex(n(1)*n(2)*...*n(nd))) ! !DESCRIPTION: ! Interface to the double-precision complex fast Fourier transform routine. ! This is to allow machine-optimised routines to be used without affecting the ! rest of the code. See routine {\tt nfftifc}. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn complex(8), intent(inout) :: z(*) ! interface to modified FFTPACK5 call cfftnd(nd,n,sgn,z) end subroutine !EOC subroutine rzfftifc(nd,n,sgn,r,z) implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn real(8), intent(inout) :: r(*) complex(8), intent(inout) :: z(*) write(*,*) write(*,'("Error(rzfftifc): FFTW or MKL required for real to complex FFT")') write(*,*) stop end subroutine elk-7.2.42/src/PaxHeaders.21776/elk.f900000644000000000000000000000013214061636516014016 xustar0030 mtime=1623670094.880102524 30 atime=1623670093.599103713 30 ctime=1623670094.880102524 elk-7.2.42/src/elk.f900000644002504400250440000024622714061636516016070 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2011 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! main routine for the Elk code program elk use modmain use modmpi use modomp use modvars use modramdisk implicit none ! local variables logical exist integer itask ! initialise MPI execution environment call mpi_init(ierror) ! duplicate mpi_comm_world call mpi_comm_dup(mpi_comm_world,mpicom,ierror) ! determine the number of MPI processes call mpi_comm_size(mpicom,np_mpi,ierror) ! determine the local MPI process number call mpi_comm_rank(mpicom,lp_mpi,ierror) ! determine if the local process is the master if (lp_mpi.eq.0) then mp_mpi=.true. write(*,*) write(*,'("Elk code version ",I1.1,".",I1.1,".",I2.2," started")') version else mp_mpi=.false. end if ! read input files call readinput ! initialise OpenMP variables call omp_init ! initialise the MKL library call mkl_init ! initialise the OpenBLAS library call oblas_init ! initialise the BLIS library call blis_init if (mp_mpi) then write(*,*) write(*,'("Number of MPI processes : ",I6)') np_mpi write(*,'("Number of OpenMP threads per MPI process : ",I4)') maxthd write(*,'("Total number of threads (MPI x OpenMP) : ",I6)') np_mpi*maxthd write(*,'("Maximum OpenMP nesting level : ",I4)') maxlvl write(*,'("Number of OpenMP threads at first nesting level : ",I4)') maxthd1 write(*,'("Number of MKL threads : ",I4)') maxthdmkl end if ! delete the VARIABLES.OUT file call delvars ! write version number to VARIABLES.OUT call writevars('version',nv=3,iva=version) ! check if Elk is already running in this directory if (mp_mpi) then inquire(file='RUNNING',exist=exist) if (exist) then write(*,*) write(*,'("Info(elk): several copies of Elk may be running in this path")') write(*,'("(this could be intentional, or result from a previous crash,")') write(*,'(" or arise from an incorrect MPI compilation)")') else open(50,file='RUNNING') close(50) end if end if ! initialise the RAM disk if required if (ramdisk) then call initrd if (mp_mpi) then write(*,*) write(*,'("RAM disk enabled")') end if end if ! perform the tasks do itask=1,ntasks task=tasks(itask) if (mp_mpi) then write(*,*) write(*,'("Info(elk): current task : ",I6)') task end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! check if task can be run with MPI if (lp_mpi.gt.0) then if (any(task.eq.[0,1,2,3,5,15,16,28,29,61,62,63,110,120,135,136,162,170, & 180,185,188,200,201,205,208,240,241,270,271,300,320,330,331,350,351,371, & 372,373,440,460,461,462,463,471,478,600,610,620,630,640,700,701,800, & 801])) then continue else write(*,'("Info(elk): MPI process ",I6," idle for task ",I6)') lp_mpi,task cycle end if end if ! write task to VARIABLES.OUT call writevars('task',iv=task) select case(task) case(0,1) call gndstate case(2,3) call geomopt case(5) call hartfock case(10) call writedos case(14) call writesf case(15,16) call writelsj case(20,21,22,23) call bandstr case(25) call effmass case(28,29) call mae case(31,32,33) call rhoplot case(41,42,43) call potplot case(51,52,53) call elfplot case(61,62,63,162) call wfplot case(65) call wfcrplot case(68) call rdstatus case(71,72,73,81,82,83,141,142,143,151,152,153) call vecplot case(91,92,93) call dbxcplot case(100,101) call fermisurf case(102) call fermisurfbxsf case(105) call nesting case(110) call mossbauer case(115) call writeefg case(120) call writepmat case(121) call dielectric case(122) call moke case(125) call nonlinopt case(130) call writeexpmat case(135) call writewfpw case(140) call elnes case(150) call writeevsp case(160) call torque case(170) call writeemd case(171,172,173) call emdplot case(180) call writeepsinv case(185) call writehmlbse case(186) call writeevbse case(187) call dielectric_bse case(190) call geomplot case(195) call sfacrho case(196) call sfacmag case(200,201,202) call phononsc case(205) call phonon case(208,209) call bornechg case(210) call phdos case(220) call phdisp case(230) call writephn case(240,241) call ephcouple case(245) call phlwidth case(250) call alpha2f case(260) call eliashberg case(270,271) call gndsteph case(280) call ephdos case(285) call aceplot case(300) call rdmft case(320) call tddftlr case(330,331) call tddftsplr case(341,342,343) call wxcplot case(350,351,352) call spiralsc case(371,372,373) call jprplot case(400) call writetmdu case(430) call writestrain case(440) call writestress case(450) call genafieldt case(460,461,462,463) call tddft case(471) call rhosplot case(478) call bornectd case(480,481) call dielectric_tdrt case(500) call testcheck case(550) call writew90 case(600) call gwsefm case(610) call gwspecf case(620) call gwbandstr case(630) call gwscrho case(640) call gwdmat case(700,701) call gndstulr case(731,732,733) call rhouplot case(741,742,743) call potuplot case(771,772,773) call maguplot case(800,801) !*********** case default write(*,*) write(*,'("Error(elk): task not defined : ",I8)') task write(*,*) stop end select ! reset the OpenMP thread variables call omp_reset ! close all opened files call closefiles end do if (mp_mpi) then open(50,file='RUNNING') close(50,status='DELETE') write(*,*) write(*,'("Elk code stopped")') end if ! terminate MPI execution environment call mpi_finalize(ierror) end program !BOI ! !TITLE: {\huge{\sc The Elk Code Manual}}\\ \Large{\sc Version 7.2.42}\\ \vskip 20pt \includegraphics[height=1cm]{elk_silhouette.pdf} ! !AUTHORS: {\sc J. K. Dewhurst, S. Sharma} \\ {\sc L. Nordstr\"{o}m, F. Cricchio, O. Gr\aa n\"{a}s} \\ {\sc E. K. U. Gross} ! !AFFILIATION: ! !INTRODUCTION: Introduction ! Welcome to the Elk Code! Elk is an all-electron full-potential linearised ! augmented-plane-wave (FP-LAPW) code for determining the properties of ! crystalline solids. It was developed originally at the ! Karl-Franzens-Universit\"{a}t Graz as part of the EXCITING EU Research and ! Training Network project\footnote{EXCITING code developed under the Research ! and Training Network EXCITING funded by the EU, contract No. ! HPRN-CT-2002-00317}. The guiding philosophy during the implementation of the ! code was to keep it as simple as possible for both users and developers ! without compromising on its capabilities. All the routines are released ! under either the GNU General Public License (GPL) or the GNU Lesser General ! Public License (LGPL) in the hope that they may inspire other scientists to ! implement new developments in the field of density functional theory and ! beyond. ! ! \section{Acknowledgments} ! Lots of people contributed to the Elk code with ideas, checking and testing, ! writing code or documentation and general encouragement. They include ! Claudia Ambrosch-Draxl, Clas Persson, Fredrik Bultmark, Christian Brouder, ! Rickard Armiento, Andrew Chizmeshya, Per Anderson, Igor Nekrasov, Sushil ! Auluck, Frank Wagner, Fateh Kalarasse, J\"{u}rgen Spitaler, Stefano ! Pittalis, Nektarios Lathiotakis, Tobias Burnus, Stephan Sagmeister, ! Christian Meisenbichler, S\'{e}bastien Leb\`{e}gue, Yigang Zhang, Fritz ! K\"{o}rmann, Alexey Baranov, Anton Kozhevnikov, Shigeru Suehara, Frank ! Essenberger, Antonio Sanna, Tyrel McQueen, Tim Baldsiefen, Marty Blaber, ! Anton Filanovich, Torbj\"{o}rn Bj\"{o}rkman, Martin Stankovski, Jerzy ! Goraus, Markus Meinert, Daniel Rohr, Vladimir Nazarov, Kevin Krieger, Pink ! Floyd, Arkardy Davydov, Florian Eich, Aldo Romero Castro, Koichi Kitahara, ! James Glasbrenner, Konrad Bussmann, Igor Mazin, Matthieu Verstraete, David ! Ernsting, Stephen Dugdale, Peter Elliott, Marcin Dulak, Jos\'{e} A. Flores ! Livas, Stefaan Cottenier, Yasushi Shinohara, Michael Fechner, Yaroslav ! Kvashnin, Tristan M\"uller, Arsenii Gerasimov, Manh Duc Le, Jon Lafuente ! Bartolom\'{e}, Ren\'{e} Wirnata, Jagdish Kumar, Andrew Shyichuk, Nisha ! Singh, Pietro Bonfa, Ronald Cohen and Alyn James. Special mention of David ! Singh's very useful book on the LAPW method\footnote{D. J. Singh, ! {\it Planewaves, Pseudopotentials and the LAPW Method} (Kluwer Academic ! Publishers, Boston, 1994).} must also be made. Finally we would like to ! acknowledge the generous support of Karl-Franzens-Universit\"{a}t Graz, the ! EU Marie-Curie Research Training Networks initiative, the Max Born Institute ! and the Max Planck Society. ! ! \vspace{24pt} ! Kay Dewhurst\newline ! Sangeeta Sharma\newline ! Lars Nordstr\"{o}m\newline ! Francesco Cricchio\newline ! Oscar Gr\aa n\"{a}s\newline ! Hardy Gross ! ! \vspace{12pt} ! Berlin, Halle, Jerusalem and Uppsala, June 2021 ! \newpage ! ! \section{Units} ! Unless explicitly stated otherwise, Elk uses atomic units. In this system ! $\hbar=1$, the electron mass $m=1$, the Bohr radius $a_0=1$ and the electron ! charge $e=1$ (note that the electron charge is positive, so that the atomic ! numbers $Z$ are negative). Thus the atomic unit of length is ! 0.529177210903(80) \AA, and the atomic unit of energy is the Hartree which ! equals 27.211386245988(53) eV. The unit of the external magnetic fields is ! defined such that one unit of magnetic field in {\tt elk.in} equals ! 1715.255541 Tesla. ! ! \section{Compiling and running Elk} ! \subsection{Compiling the code} ! Unpack the code from the archive file. Run the command ! \begin{verbatim} ! setup ! \end{verbatim} ! in the {\tt elk} directory and select the appropriate system and compiler. ! We highly recommend that you edit the file {\tt make.inc} and tune the ! compiler options for your computer system. In particular, use of ! machine-optimised BLAS/LAPACK libraries can result in significant increase ! in performance, but make sure they are of version $3.x$. Following this, run ! \begin{verbatim} ! make ! \end{verbatim} ! This will hopefully compile the entire code and all the libraries into one ! executable, {\tt elk}, located in the {\tt elk/src} directory. It will also ! compile two useful auxiliary programs, namely {\tt spacegroup} for producing ! crystal geometries from spacegroup data and {\tt eos} for fitting equations ! of state to energy-volume data. If you want to compile everything all over ! again, then run {\tt make clean} from the {\tt elk} directory, followed by ! {\tt make}. ! \subsubsection{Parallelism in Elk} ! Three forms of parallelism are implemented in Elk, and all can be used in ! combination with each other, with efficiency depending on the particular ! task, crystal structure and computer system. You may need to contact your ! system administrator for assistance with running Elk in parallel. ! \begin{enumerate} ! \item ! OpenMP works for symmetric multiprocessors, i.e. computers that have many ! cores with the same unified memory accessible to each. It is enabled by ! setting the appropriate command-line options (e.g. {\tt -qopenmp} for the ! Intel compiler) before compiling, and also at runtime by the environment ! variable ! \begin{verbatim} ! export OMP_NUM_THREADS=n ! \end{verbatim} ! where n is the number of cores available on a particular node. The same can ! be accomplished in {\tt elk.in} with ! \begin{verbatim} ! maxthd ! n ! \end{verbatim} ! In addition, some vendor-supplied BLAS/LAPACK libraries use OpenMP ! internally. The maximum number of threads used for LAPACK operations by ! Intel's MKL can be set with ! \begin{verbatim} ! maxthdmkl ! n ! \end{verbatim} ! \item ! The message passing interface (MPI) is particularly suitable for running ! Elk across multiple nodes of a cluster, with scaling to hundreds of ! processors possible. To enable MPI, comment out the lines indicated in ! {\tt elk/make.inc}. Then run {\tt make clean} followed by {\tt make}. If ! $y$ is the number of nodes and $x$ is the number of cores per node, then at ! runtime envoke ! \begin{verbatim} ! mpirun -np z ./elk ! \end{verbatim} ! where $z=x y$ is the total number of cores available on the machine. ! Highest efficiency is obtained by using hybrid parallelism with OpenMP on ! each node and MPI across nodes. This can be done by compiling the code ! using the MPI Fortran compiler in combination with the OpenMP command-line ! option. At runtime set {\tt export OMP\_NUM\_THREADS=x} and start the MPI ! run with {\em one process per node} as follows ! \begin{verbatim} ! mpirun -pernode -np y ./elk ! \end{verbatim} ! The number of MPI processes is reported in the file {\tt INFO.OUT} which ! serves as a check that MPI is running correctly. Note that version 2 of the ! MPI libraries is required to run Elk. ! \item ! Phonon calculations use a simple form of parallelism by just examining the ! run directory for dynamical matrix files. These files are of the form ! \begin{verbatim} ! DYN_Qqqqq_qqqq_qqqq_Sss_Aaa_Pp.OUT ! \end{verbatim} ! and contain a single row of a particular dynamical matrix. Elk simply finds ! which {\tt DYN} files do not exist, chooses one and runs it. This way many ! independent runs of Elk can be started in the same directory on a networked ! file system (NFS), and will run until all the dynamical matrices files are ! completed. Should a particular run crash, then delete the associated empty ! {\tt DYN} file and rerun Elk. ! \end{enumerate} ! ! \subsection{Memory requirements} ! Elk is a memory-bound code and runs best on processors with large caches and ! a large number of memory channels per core. Some tasks in Elk require a ! considerable amount of memory which can exceed the physical memory of the ! computer. In such cases, the number of threads at the first nesting level ! can be reduced with (for example) ! \begin{verbatim} ! maxthd1 ! -4 ! \end{verbatim} ! which restricts the number of threads at the first nesting level to ! maxthd/4. Deeper nesting levels, which generally require less memory, will ! still utilise the full compliment of available threads. ! \subsubsection{Stack space} ! The latest versions of Elk use stack space aggressively. This is because ! accessing variables is faster on the stack than on the heap. This can, ! however, result in the code crashing as threads run out of their stack ! space. To avoid this, increase the stack size for each OpenMP thread with ! (for example) ! \begin{verbatim} ! export OMP_STACKSIZE=64M ! \end{verbatim} ! before running the code. ! ! \subsection{Linking with the Libxc functional library} ! Libxc is the ETSF library of exchange-correlation functionals. Elk can use ! the complete set of LDA and GGA functionals available in Libxc as well as ! the potential-only metaGGA's. In order to enable this, first download and ! compile Libxc version 5. This should have produced the files {\tt libxc.a} ! and {\tt libxcf90.a}. Copy these files to the {\tt elk/src} directory and ! then uncomment the lines indicated for Libxc in the file {\tt elk/make.inc}. ! Once this is done, run {\tt make clean} followed by {\tt make}. To select a ! particular functional of Libxc, use the block ! \begin{verbatim} ! xctype ! 100 nx nc ! \end{verbatim} ! where {\tt nx} and {\tt nc} are, respectively, the numbers of the exchange ! and correlation functionals in the Libxc library. See the file ! {\tt elk/src/libxcf90.f90} for a list of the functionals and their ! associated numbers. ! ! \subsection{Running the code} ! As a rule, all input files for the code are in lower case and end with the ! extension {\tt .in}. All output files are uppercase and have the extension ! {\tt .OUT}. For most cases, the user will only need to modify the file ! {\tt elk.in}. In this file input parameters are arranged in blocks. ! Each block consists of a block name on one line and the block variables on ! subsequent lines. Almost all blocks are optional: the code uses reasonable ! default values in cases where they are absent. Blocks can appear in any ! order, if a block is repeated then the second instance is used. Comment ! lines can be included in the input file and begin with the {\tt !} ! character. ! ! \subsubsection{Species files} ! The only other input files are those describing the atomic species which go ! into the crystal. These files are found in the {\tt species} directory and ! are named with the element symbol and the extension {\tt .in}, for example ! {\tt Sb.in}. They contain parameters like the atomic charge, mass, ! muffin-tin radius, occupied atomic states and the type of linearisation ! required. Here as an example is the copper species file {\tt Cu.in}: ! \begin{verbatim} ! 'Cu' : spsymb ! 'copper' : spname ! -29.0000 : spzn ! 115837.2716 : spmass ! 0.371391E-06 2.0000 34.8965 500 : rminsp, rmt, rmaxsp, nrmt ! 10 : nstsp ! 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore ! 2 0 1 2.00000 T ! 2 1 1 2.00000 T ! 2 1 2 4.00000 T ! 3 0 1 2.00000 T ! 3 1 1 2.00000 F ! 3 1 2 4.00000 F ! 3 2 2 4.00000 F ! 3 2 3 6.00000 F ! 4 0 1 1.00000 F ! 1 : apword ! 0.1500 0 F : apwe0, apwdm, apwve ! 1 : nlx ! 2 2 : lx, apword ! 0.1500 0 T : apwe0, apwdm, apwve ! 0.1500 1 T ! 4 : nlorb ! 0 2 : lorbl, lorbord ! 0.1500 0 F : lorbe0, lorbdm, lorbve ! 0.1500 1 F ! 1 2 ! 0.1500 0 F ! 0.1500 1 F ! 2 2 ! 0.1500 0 F ! 0.1500 1 F ! 1 3 ! 0.1500 0 F ! 0.1500 1 F ! -2.8652 0 T ! \end{verbatim} ! The input parameters are defined as follows: ! \vskip 6pt ! {\tt spsymb} \\ ! The symbol of the element. ! \vskip 6pt ! {\tt spname} \\ ! The name of the element. ! \vskip 6pt ! {\tt spzn} \\ ! Nuclear charge: should be negative since the electron charge is taken to be ! postive in the code; it can also be fractional for purposes of doping. ! \vskip 6pt ! {\tt spmass} \\ ! Nuclear mass in atomic units. ! \vskip 6pt ! {\tt rminsp}, {\tt rmt}, {\tt rmaxsp}, {\tt nrmt} \\ ! Respectively, the minimum radius on logarithmic radial mesh; muffin-tin ! radius; effective infinity for atomic radial mesh; and number of radial mesh ! points to muffin-tin radius. ! \vskip 6pt ! {\tt nstsp} \\ ! Number of atomic states. ! \vskip 6pt ! {\tt nsp}, {\tt lsp}, {\tt ksp}, {\tt occsp}, {\tt spcore} \\ ! Respectively, the principal quantum number of the radial Dirac equation; ! quantum number $l$; quantum number $k$ ($l$ or $l+1$); occupancy of atomic ! state (can be fractional); {\tt .T.} if state is in the core and therefore ! treated with the Dirac equation in the spherical part of the muffin-tin ! Kohn-Sham potential. ! \vskip 6pt ! {\tt apword} \\ ! Default APW function order, i.e. the number of radial functions and ! therefore the order of the radial derivative matching at the muffin-tin ! surface. ! \vskip 6pt ! {\tt apwe0}, {\tt apwdm}, {\tt apwve} \\ ! Respectively, the default APW linearisation energy; the order of the energy ! derivative of the APW radial function $\partial^m u(r)/\partial E^m$; and ! {\tt .T.} if the linearisation energy is allowed to vary. ! \vskip 6pt ! {\tt nlx} \\ ! The number of exceptions to the default APW configuration. These should be ! listed on subsequent lines for particular angular momenta. In this example, ! the fixed energy APW with angular momentum $d$ ({\tt lx} $=2$) is replaced ! with a LAPW, which has variable linearisation energy. ! \vskip 6pt ! {\tt nlorb} \\ ! Number of local-orbitals. ! \vskip 6pt ! {\tt lorbl}, {\tt lorbord} \\ ! Respectively, the angular momentum $l$ of the local-orbital; and the order ! of the radial derivative which goes to zero at the muffin-tin surface. ! \vskip 6pt ! {\tt lorbe0}, {\tt lorbdm}, {\tt lorbve} \\ ! Respectively, the default local-orbital linearisation energy; the order of ! the energy derivative of the local-orbital radial function; and {\tt .T.} if ! the linearisation energy is allowed to vary. ! ! \subsubsection{Examples} ! The best way to learn to use Elk is to run the examples included with the ! package. These can be found in the {\tt examples} directory and use many of ! the code's capabilities. The following section which describes all the input ! parameters will be of invaluable assistance. ! ! \section{Input blocks} ! This section lists all the input blocks available. It is arranged with the ! name of the block followed by a table which lists each parameter name, what ! the parameter does, its type and default value. A horizontal line in the ! table indicates a new line in {\tt elk.in}. Below the table is a brief ! overview of the block's function. ! ! \block{atoms}{ ! {\tt nspecies} & number of species & integer & 0 \\ ! \hline ! {\tt spfname(i)} & species filename for species $i$ & string & - \\ ! \hline ! {\tt natoms(i)} & number of atoms for species $i$ & integer & - \\ ! \hline ! {\tt atposl(j,i)} & atomic position in lattice coordinates for atom $j$ ! & real(3) & - \\ ! {\tt bfcmt(j,i)} & muffin-tin external magnetic field in Cartesian ! coordinates for atom $j$ & real(3) & -} ! Defines the atomic species as well as their positions in the unit cell and ! the external magnetic field applied throughout the muffin-tin. These fields ! are used to break spin symmetry and should be considered infinitesimal as ! they do not contribute directly to the total energy. Collinear calculations ! are more efficient if the field is applied in the $z$-direction. One could, ! for example, set up an antiferromagnetic crystal by pointing the field on ! one atom in the positive $z$-direction and in the opposite direction on ! another atom. If {\tt molecule} is {\tt .true.} then the atomic positions ! are assumed to be in Cartesian coordinates. See also {\tt sppath}, ! {\tt bfieldc} and {\tt molecule}. ! ! \block{autokpt}{ ! {\tt autokpt} & {\tt .true.} if the $k$-point set is to be determined ! automatically & logical & {\tt .false.}} ! See {\tt radkpt} for details. ! ! \block{autolinengy}{ ! {\tt autolinengy} & {\tt .true.} if the fixed linearisation energies are ! to be determined automatically & logical & {\tt .false.}} ! See {\tt dlefe} for details. ! ! \block{autoswidth}{ ! {\tt autoswidth} & {\tt .true.} if the smearing parameter {\tt swidth} ! should be determined automatically & logical & {\tt .false.}} ! Calculates the smearing width from the $k$-point density, $V_{\rm BZ}/n_k$; ! the valence band width, $W$; and an effective mass parameter, $m^{*}$; ! according to ! $$ \sigma=\frac{\sqrt{2W}}{m^{*}}\left(\frac{3}{4\pi} ! \frac{V_{\rm BZ}}{n_k}\right)^{1/3}. $$ ! The variable {\tt mstar} then replaces {\tt swidth} as the control parameter ! of the smearing width. A large value of $m^{*}$ gives a narrower smearing ! function. Since {\tt swidth} is adjusted according to the fineness of the ! ${\bf k}$-mesh, the smearing parameter can then be eliminated. It is not ! recommended that {\tt autoswidth} be used in conjunction with the ! Fermi-Dirac smearing function, since the electronic temperature will then be ! a function of the $k$-point mesh. See T. Bj\"orkman and O. Gr\aa n\"as, ! {\it Int. J. Quant. Chem.} DOI: 10.1002/qua.22476 (2010) for details. See ! also {\tt stype} and {\tt swidth}. ! ! \block{avec}{ ! {\tt avec(1)} & first lattice vector & real(3) & $(1.0,0.0,0.0)$ \\ ! \hline ! {\tt avec(2)} & second lattice vector & real(3) & $(0.0,1.0,0.0)$ \\ ! \hline ! {\tt avec(3)} & third lattice vector & real(3) & $(0.0,0.0,1.0)$} ! Lattice vectors of the crystal in atomic units (Bohr). ! ! \block{beta0}{ ! {\tt beta0} & adaptive mixing parameter & real & $0.05$} ! This determines how much of the potential from the previous self-consistent ! loop is mixed with the potential from the current loop. It should be made ! smaller if the calculation is unstable. See {\tt betamax} and also the ! routine {\tt mixadapt}. ! ! \block{betamax}{ ! {\tt betamax} & maximum adaptive mixing parameter & real & $0.5$} ! Maximum allowed mixing parameter used in routine {\tt mixadapt}. ! ! \block{bfieldc}{ ! {\tt bfieldc} & global external magnetic field in Cartesian coordinates & ! real(3) & $(0.0,0.0,0.0)$} ! This is a constant magnetic field applied throughout the entire unit cell ! and enters the second-variational Hamiltonian as ! $$ \frac{g_e}{4c}\,\vec{\sigma}\cdot{\bf B}_{\rm ext}, $$ ! where $g_e$ is the electron $g$-factor. This field is normally used to break ! spin symmetry for spin-polarised calculations and considered to be ! infinitesimal with no direct contribution to the total energy. In cases ! where the magnetic field is finite (for example when computing magnetic ! response) the external ${\bf B}$-field energy reported in {\tt INFO.OUT} ! should be added to the total by hand. This field is applied throughout the ! entire unit cell. To apply magnetic fields in particular muffin-tins use the ! {\tt bfcmt} vectors in the {\tt atoms} block. Collinear calculations are ! more efficient if the field is applied in the $z$-direction. ! ! \block{broydpm}{ ! {\tt broydpm} & Broyden mixing parameters $\alpha$ and $w_0$ & real & ! $(0.4,0.15)$} ! See {\tt mixtype} and {\tt mixsdb}. ! ! \block{c\_tb09}{ ! {\tt c\_tb09} & Tran-Blaha constant $c$ & real & -} ! Sets the constant $c$ in the Tran-Blaha '09 functional. Normally this is ! calculated from the density, but there may be situations where this needs to ! be adjusted by hand. See {\it Phys. Rev. Lett.} {\bf 102}, 226401 (2009). ! ! \block{chgexs}{ ! {\tt chgexs} & excess electronic charge & real & $0.0$} ! This controls the amount of charge in the unit cell beyond that required to ! maintain neutrality. It can be set positive or negative depending on whether ! electron or hole doping is required. ! ! \block{cmagz}{ ! {\tt cmagz} & .true. if $z$-axis collinear magnetism is to be enforced & ! logical & {\tt .false.}} ! This variable can be set to .true. in cases where the magnetism is ! predominantly collinear in the $z$-direction, for example a ferromagnet with ! spin-orbit coupling. This will make the calculation considerably faster at ! the slight expense of precision. ! ! \block{deltaem}{ ! {\tt deltaem} & the size of the ${\bf k}$-vector displacement used when ! calculating numerical derivatives for the effective mass tensor & real & ! $0.025$} ! See {\tt ndspem} and {\tt vklem}. ! ! \block{deltaph}{ ! {\tt deltaph} & size of the atomic displacement used for calculating ! dynamical matrices & real & $0.01$} ! Phonon calculations are performed by constructing a supercell corresponding ! to a particular ${\bf q}$-vector and making a small periodic displacement of ! the atoms. The magnitude of this displacement is given by {\tt deltaph}. ! This should not be made too large, as anharmonic terms could then become ! significant, neither should it be too small as this can introduce numerical ! error. ! ! \block{deltast}{ ! {\tt deltast} & size of the change in lattice vectors used for calculating ! the stress tensor & real & $0.005$} ! The stress tensor is computed by changing the lattice vector matrix $A$ by ! $$ A\rightarrow (1+\delta t\,e_i)A, $$ ! where $dt$ is an infinitesimal equal in practice to {\tt deltast} and $e_i$ ! is the $i^{\rm th}$ strain tensor. Numerical finite differences are used to ! compute the stress tensor as the derivative of the total energy $dE_i/dt$. ! ! \block{dft+u}{ ! {\tt dftu} & type of DFT+$U$ calculation & integer & 0 \\ ! {\tt inpdftu} & type of input for DFT+U calculation & integer & 1 \\ ! \hline ! {\tt is} & species number & integer & - \\ ! {\tt l} & angular momentum value & integer & -1 \\ ! {\tt u} & the desired $U$ value & real & $0.0$ \\ ! {\tt j} & the desired $J$ value & real & $0.0$} ! This block contains the parameters required for an DFT+$U$ calculation, with ! the list of parameters for each species terminated with a blank line. The ! type of double counting required is set with the parameter {\tt dftu}. ! Currently implemented are: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! 0 & No DFT+$U$ calculation \\ ! 1 & Fully localised limit (FLL) \\ ! 2 & Around mean field (AFM) \\ ! 3 & An interpolation between FLL and AFM \\ ! \end{tabularx} ! \vskip 6pt ! The type of input parameters is set with the parameter {\tt inpdftu}. ! The current possibilities are: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! 1 & U and J \\ ! 2 & Slater parameters \\ ! 3 & Racah parameters \\ ! 4 & Yukawa screening length \\ ! 5 & U and determination of corresponding Yukawa screening length ! \end{tabularx} ! \vskip 6pt ! See (amongst others) {\it Phys. Rev. B} {\bf 67}, 153106 (2003), ! {\it Phys. Rev. B} {\bf 52}, R5467 (1995), {\it Phys. Rev. B} {\bf 60}, ! 10763 (1999), and {\it Phys. Rev. B} {\bf 80}, 035121 (2009). ! ! \block{dlefe}{ ! {\tt dlefe} & difference between the fixed linearisation energy and the ! Fermi energy & real & $-0.1$} ! When {\tt autolinengy} is {\tt .true.} then the fixed linearisation energies ! are set to the Fermi energy plus {\tt dlefe}. ! ! \block{dncgga}{ ! {\tt dncgga} & small constant used to stabilise non-collinear GGA & ! real & $1\times 10^{-8}$} ! This small constant, $d$, is required in order to remove the infinite ! gradients obtained when using `Kubler's trick' in conjunction with GGA and ! non-collinear magnetism. It is applied by calculating the up and down ! densities as ! $$ \rho^{\uparrow}({\bf r})=\rho({\bf r})+\widetilde{m}({\bf r}) ! \qquad \rho^{\downarrow}({\bf r})=\rho({\bf r})-\widetilde{m}({\bf r}), $$ ! where $\widetilde{m}({\bf r})=\sqrt{{\bf m}^2({\bf r})+d}$, ! and should be taken as the smallest value for which the exchange-correlation ! magnetic field ${\bf B}_{\rm xc}$ is smooth. ! ! \block{dosmsum}{ ! {\tt dosmsum} & {\tt .true.} if the partial DOS is to be summed over $m$ & ! logical & {\tt .false.}} ! By default, the partial density of states is resolved over $(l,m)$ quantum ! numbers. If {\tt dosmsum} is set to {\tt .true.} then the partial DOS is ! summed over $m$, and thus depends only on $l$. ! ! \block{dosssum}{ ! {\tt dosssum} & {\tt .true.} if the partial DOS is to be summed over spin & ! logical & {\tt .false.}} ! By default, the partial density of states for spin-polarised systems is spin ! resolved. ! ! \block{dtimes}{ ! {\tt dtimes} & time step used in time evolution run & real & $0.1$} ! See also {\tt tstime}. ! ! \block{epsband}{ ! {\tt epsband} & convergence tolerance for determining band energies & real & ! $1\times 10^{-12}$} ! APW and local-orbital linearisation energies are determined from the band ! energies. This is done by first searching upwards in energy until the radial ! wavefunction at the muffin-tin radius is zero. This is the energy at the top ! of the band, denoted $E_{\rm t}$. A downward search is now performed from ! $E_{\rm t}$ until the slope of the radial wavefunction at the muffin-tin ! radius is zero. This energy, $E_{\rm b}$, is at the bottom of the band. The ! band energy is taken as $(E_{\rm t}+E_{\rm b})/2$. If either $E_{\rm t}$ or ! $E_{\rm b}$ is not found, then the band energy is set to the default value. ! ! \block{epschg}{ ! {\tt epschg} & maximum allowed error in the calculated total charge beyond ! which a warning message will be issued & real & $1\times 10^{-3}$} ! ! \block{epsengy}{ ! {\tt epsengy} & convergence criterion for the total energy & real & ! $1\times 10^{-4}$} ! See {\tt epspot}. ! ! \block{epsforce}{ ! {\tt epsforce} & convergence tolerance for the forces during a geometry ! optimisation run & real & $2\times 10^{-3}$} ! If the mean absolute value of the atomic forces is less than {\tt epsforce} ! then the geometry optimisation run is ended. See also {\tt tasks} and ! {\tt latvopt}. ! ! \block{epslat}{ ! {\tt epslat } & vectors with lengths less than this are considered zero & ! real & $10^{-6}$} ! Sets the tolerance for determining if a vector or its components are zero. ! This is to account for any numerical error in real or reciprocal space ! vectors. ! ! \block{epsocc}{ ! {\tt epsocc} & smallest occupancy for which a state will contribute to the ! density & real & $1\times 10^{-8}$} ! ! \block{epspot}{ ! {\tt epspot} & convergence criterion for the Kohn-Sham potential and field & ! real & $1\times 10^{-6}$} ! If the RMS change in the Kohn-Sham potential and magnetic field is smaller ! than {\tt epspot} and the absolute change in the total energy is less than ! {\tt epsengy}, then the self-consistent loop is considered converged ! and exited. For geometry optimisation runs this results in the forces being ! calculated, the atomic positions updated and the loop restarted. See also ! {\tt epsengy} and {\tt maxscl}. ! ! \block{epsstress}{ ! {\tt epsstress} & convergence tolerance for the stress tensor during a ! geometry optimisation run with lattice vector relaxation & real & ! $5\times 10^{-4}$} ! See also {\tt epsforce} and {\tt latvopt}. ! ! \block{emaxelnes}{ ! {\tt emaxelnes} & maximum allowed initial-state eigenvalue for ELNES ! calculations & real & $-1.2$} ! ! \block{emaxrf}{ ! {\tt emaxrf} & energy cut-off used when calculating Kohn-Sham response ! functions & real & $10^6$} ! A typical Kohn-Sham response function is of the form ! \begin{align*} ! \chi_s({\bf r},{\bf r}',\omega) ! \equiv\frac{\delta\rho({\bf r},\omega)}{\delta v_s({\bf r}',\omega)} ! =\frac{1}{N_k}\sum_{i{\bf k},j{\bf k}'}(f_{i{\bf k}}-f_{j{\bf k}'}) ! \frac{\langle i{\bf k}|\hat{\rho}({\bf r})|j{\bf k}'\rangle ! \langle j{\bf k}'|\hat{\rho}({\bf r}')|i{\bf k}\rangle} ! {w+(\varepsilon_{i{\bf k}}-\varepsilon_{j{\bf k}'})+i\eta}, ! \end{align*} ! where $\hat{\rho}$ is the density operator; $N_k$ is the number of ! $k$-points; $\varepsilon_{i{\bf k}}$ and $f_{i{\bf k}}$ are the eigenvalues ! and occupation numbers, respectively. The variable {\tt emaxrf} is an energy ! window which limits the summation over states in the formula above so that ! $|\varepsilon_{i{\bf k}}-\varepsilon_{\rm Fermi}|<{\tt emaxrf}$. Reducing ! this can result in a faster calculation at the expense of accuracy. ! ! \block{fracinr}{ ! {\tt fracinr} & fraction of the muffin-tin radius up to which {\tt lmaxi} ! is used as the angular momentum cut-off & real & $0.01$} ! If {\tt fracinr} is negative then the fraction is determined from ! $f=\sqrt{({\tt lmaxi}+1)^2/({\tt lmaxo}+1)^2}$ in order to ! maintain a minimum density of points throughout the muffin-tin. See ! {\tt lmaxi} and {\tt lmaxo}. ! ! \block{fsmtype}{ ! {\tt fsmtype} & 0 for no fixed spin moment (FSM), 1 for total FSM, 2 for ! local muffin-tin FSM, and 3 for both total and local FSM & integer & 0} ! Set to 1, 2 or 3 for fixed spin moment calculations. To fix only the ! direction and not the magnitude set to $-1$, $-2$ or $-3$. See also ! {\tt momfix}, {\tt mommtfix}, {\tt taufsm} and {\tt spinpol}. ! ! \block{ftmtype}{ ! {\tt ftmtype} & 1 to enable a fixed tensor moment (FTM) calculation, ! 0 otherwise & integer & 0} ! If {\tt ftmtype} is $-1$ then the symmetry corresponding to the tensor ! moment is broken but no FTM calculation is performed. See {\it Phys. Rev. ! Lett.} {\bf 103}, 107202 (2009) and also {\tt tmomfix}. ! ! \block{fxclrc}{ ! {\tt fxclrc} & parameters for the dynamical long-range contribution (LRC) to ! the TDDFT exchange-correlation kernel & real(2) & $(0.0,0.0)$} ! These are the parameters $\alpha$ and $\beta$ for the kernel proposed in ! {\it Phys. Rev. B} {\bf 72}, 125203 (2005), namely ! $$ f_{xc}({\bf G},{\bf G}',{\bf q},\omega)=-\frac{\alpha+\beta\omega^2}{q^2} ! \delta_{{\bf G},{\bf G}'}\delta_{{\bf G},{\bf 0}}. $$ ! ! \block{fxctype}{ ! {\tt fxctype} & integer defining the type of exchange-correlation kernel ! $f_{\rm xc}$ & integer & $-1$} ! The acceptable values are: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! $-1$ & $f_{\rm xc}$ defined by {\tt xctype} \\ ! 0,1 & RPA ($f_{\rm xc}=0$) \\ ! 200 & Long-range contribution (LRC) kernel, S. Botti {\it et al.}, ! {\it Phys. Rev. B} {\bf 72}, 125203 (2005); see {\tt fxclrc} \\ ! 210 & `Bootstrap' kernel, S. Sharma, J. K. Dewhurst, A. Sanna and ! E. K. U. Gross, {\it Phys. Rev. Lett.} {\bf 107}, 186401 (2011) \\ ! 211 & Single iteration bootstrap ! \end{tabularx} ! ! \block{gmaxrf}{ ! {\tt gmaxrf} & maximum length of $|{\bf G}|$ for computing response ! functions & real & $3.0$} ! ! \block{gmaxvr}{ ! {\tt gmaxvr} & maximum length of $|{\bf G}|$ for expanding the interstitial ! density and potential & real & $12.0$} ! This variable has a lower bound which is enforced by the code as follows: ! $$ {\rm gmaxvr}\rightarrow\max\,({\rm gmaxvr},2\times{\rm gkmax} ! +{\rm epslat}) $$ ! See {\tt rgkmax}. ! ! \block{hdbse}{ ! {\tt hdbse} & {\tt .true.} if the direct term is to be included in the BSE ! Hamiltonian & logical & {\tt .true.}} ! ! \block{highq}{ ! {\tt highq} & {\tt .true.} if a high quality parameter set should be used & ! logical & {\tt .false.}} ! Setting this to {\tt .true.} results in some default parameters being ! changed to ensure good convergence in most situations. These changes can be ! overruled by subsequent blocks in the input file. See also {\tt vhighq}. ! ! \block{hmaxvr}{ ! {\tt hmaxvr} & maximum length of ${\bf H}$-vectors & real & $6.0$} ! The ${\bf H}$-vectors are used for calculating X-ray and magnetic structure ! factors. They are also used in linear response phonon calculations for ! expanding the density and potential in plane waves. See also {\tt gmaxvr}, ! {\tt vhmat}, {\tt reduceh}, {\tt wsfac} and {\tt hkmax}. ! ! \block{hxbse}{ ! {\tt hxbse} & {\tt .true.} if the exchange term is to be included in the BSE ! Hamiltonian & {\tt .true.}} ! ! \block{hybrid}{ ! {\tt hybrid} & {\tt .true} if a hybrid functional is to be used when running ! a Hartree-Fock calculation & logical & {\tt .false}} ! See also {\tt hybridc} and {\tt xctype}. ! ! \block{hybridc}{ ! {\tt hybridc} & hybrid functional mixing coefficient & real & $1.0$} ! ! \block{intraband}{ ! {\tt intraband} & {\tt .true.} if the intraband (Drude-like) contribution is ! to be added to the dieletric tensor & logical & {\tt .false.}} ! ! \block{isgkmax}{ ! {\tt isgkmax} & species for which the muffin-tin radius will be used for ! calculating {\tt gkmax} & integer & $-1$} ! The APW cut-off is determined from ${\tt gkmax}={\tt rgkmax}/R$. The ! variable {\tt isgkmax} determines which muffin-tin radius is to be used for ! $R$. These are the options: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! -4 & Use the largest radius \\ ! -3 & Use the smallest radius \\ ! -2 & Use the fixed value $R=2.0$ \\ ! -1 & Use the average of the muffin-tin radii \\ ! $n\ge 1$ & Use the radius of species $n$ ! \end{tabularx} ! ! \block{kstlist}{ ! {\tt kstlist(i)} & $i$th $k$-point and state pair & integer(2) & $(1,1)$} ! This is a user-defined list of $k$-point and state index pairs which are ! those used for plotting wavefunctions and writing ${\bf L}$, ${\bf S}$ and ! ${\bf J}$ expectation values. Only the first pair is used by the ! aforementioned tasks. The list should be terminated by a blank line. ! ! \block{latvopt}{ ! {\tt latvopt} & type of lattice vector optimisation to be performed during ! structural relaxation & integer & 0} ! Optimisation of the lattice vectors will be performed with ${\tt task}=2,3$ ! when ${\tt latvopt}\ne 0$. When ${\tt latvopt}=1$ the lattice vector ! optimisation will be constrained only by symmetry. Optimisation over all ! symmetry-preserving strains except isotropic scaling is performed when ! ${\tt latvopt}=2$. If ${\tt latvopt}<0$ then the optimisation will be over ! strain number $|{\tt latvopt}|$. The list of symmetric strain tensors can be ! produced with ${\tt task}=430$. By default (${\tt latvopt}=0$) no lattice ! vector optimisation is performed during structural relaxation. See also ! {\tt tau0latv} and {\tt atpopt}. ! ! \block{lmaxapw}{ ! {\tt lmaxapw} & angular momentum cut-off for the APW functions & integer & ! $8$} ! ! \block{lmaxdos}{ ! {\tt lmaxdos} & angular momentum cut-off for the partial DOS plot & ! integer & $3$} ! ! \block{lmaxi}{ ! {\tt lmaxi} & angular momentum cut-off for the muffin-tin density and ! potential on the inner part of the muffin-tin & integer & 2} ! Close to the nucleus, the density and potential is almost spherical and ! therefore the spherical harmonic expansion can be truncated a low angular ! momentum. See also {\tt fracinr}. ! ! \block{lmaxo}{ ! {\tt lmaxo} & angular momentum cut-off for the muffin-tin density and ! potential & integer & 6} ! ! \block{lmirep}{ ! {\tt lmirep} & {\tt .true.} if the $Y_{lm}$ basis is to be transformed ! into the basis of irreducible representations of the site symmetries for ! DOS plotting & logical & {\tt .true.}} ! When lmirep is set to .true., the spherical harmonic basis is transformed ! into one in which the site symmetries are block diagonal. Band characters ! determined from the density matrix expressed in this basis correspond to ! irreducible representations, and allow the partial DOS to be resolved into ! physically relevant contributions, for example $e_g$ and $t_{2g}$. ! ! \block{lorbcnd}{ ! {\tt lorbcnd} & {\tt .true.} if conduction state local-orbitals are to be ! automatically added to the basis & logical & {\tt .false.}} ! Adding these higher energy local-orbitals can improve calculations which ! rely on accurate unoccupied states, such as the response function. See also ! {\tt lorbordc}. ! ! \block{lorbordc}{ ! {\tt lorbordc} & the order of the conduction state local-orbitals & ! integer & 2} ! See {\tt lorbcnd}. ! ! \block{lradstp}{ ! {\tt lradstp} & radial step length for determining coarse radial mesh & ! integer & 4} ! Some muffin-tin functions (such as the density) are calculated on a coarse ! radial mesh and then interpolated onto a fine mesh. This is done for the ! sake of efficiency. {\tt lradstp} defines the step size in going from the ! fine to the coarse radial mesh. If it is too large, loss of precision may ! occur. ! ! \block{maxitoep}{ ! {\tt maxitoep} & maximum number of iterations when solving the exact ! exchange integral equations & integer & 300} ! See {\tt tau0oep}. ! ! \block{maxscl}{ ! {\tt maxscl } & maximum number of self-consistent loops allowed & integer & ! 200} ! This determines after how many loops the self-consistent cycle will ! terminate if the convergence criterion is not met. If {\tt maxscl} is $1$ ! then the density and potential file, {\tt STATE.OUT}, will {\bf not} be ! written to disk at the end of the loop. See {\tt epspot}. ! ! \block{mixtype}{ ! {\tt mixtype } & type of mixing required for the potential & integer & 1} ! Currently implemented are: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! 0 & Linear mixing \\ ! 1 & Adaptive linear mixing \\ ! 3 & Broyden mixing, {\it J. Phys. A: Math. Gen.} {\bf 17}, L317 (1984) ! \end{tabularx} ! ! \block{mixsdb}{ ! {\tt mixsdb} & subspace dimension for Broyden mixing & integer & 5} ! This is the number of mixing vectors which define the subspace in which the ! Hessian matrix is calculated. See {\tt mixtype} and {\tt broydpm}. ! ! \block{molecule}{ ! {\tt molecule} & {\tt .true.} if the system is an isolated molecule & ! logical & {\tt .false.}} ! If {\tt molecule} is {\tt .true.}, then the atomic positions, ${\bf a}$, ! given in the {\tt atoms} block are assumed to be in Cartesian coordinates. ! ! \block{momfix}{ ! {\tt momfix} & the desired total moment for a FSM calculation & ! real(3) & $(0.0,0.0,0.0)$} ! Note that all three components must be specified (even for collinear ! calculations). See {\tt fsmtype}, {\tt taufsm} and {\tt spinpol}. ! ! \block{mommtfix}{ ! {\tt is} & species number & integer & 0 \\ ! {\tt ia} & atom number & integer & 0 \\ ! {\tt mommtfix} & the desired muffin-tin moment for a FSM calculation & ! real(3) & $(0.0,0.0,0.0)$} ! The local muffin-tin moments are specified for a subset of atoms, with the ! list terminated with a blank line. Note that all three components must be ! specified (even for collinear calculations). See {\tt fsmtype}, {\tt taufsm} ! and {\tt spinpol}. ! ! \block{msmooth}{ ! {\tt msmooth} & amount of smoothing to be applied to the ! exchange-correlation potentials and magnetic field & integer & 0} ! Smoothing operations can be applied to the exchange-correlation potentials ! $v_{xc}$, $w_{xc}$ and the magnetic field ${\bf B}_{xc}$ in order to improve ! convergence. In the muffin-tin, this smoothing takes the form of $m$ ! successive three-point running averages applied to the radial component. In ! the interstitial region, the potential is first Fourier transformed to ! $G$-space, then a low-pass filter of the form $\exp[-2m(G/G_{\rm max})^8]$ ! is applied and the function is transformed back to real-space. ! ! \block{mstar}{ ! {\tt mstar} & value of the effective mass parameter used for adaptive ! determination of {\tt swidth} & real & $10.0$} ! See {\tt autoswidth}. ! ! \block{mustar}{ ! {\tt mustar} & Coulomb pseudopotential, $\mu^*$, used in the ! McMillan-Allen-Dynes equation & real & $0.15$} ! This is used when calculating the superconducting critical temperature with ! the formula {\it Phys. Rev. B 12, 905 (1975)} ! $$ T_c=\frac{\omega_{\rm log}}{1.2 k_B}\exp\left[\frac{-1.04(1+\lambda)} ! {\lambda-\mu^*(1+0.62\lambda)}\right], $$ ! where $\omega_{\rm log}$ is the logarithmic average frequency and $\lambda$ ! is the electron-phonon coupling constant. ! ! \block{ncbse}{ ! {\tt ncbse} & number of conduction states to be used for BSE calculations & ! integer & 3} ! See also {\tt nvbse}. ! ! \block{ndspem}{ ! {\tt ndspem} & the number of {\bf k}-vector displacements in each direction ! around {\tt vklem} when computing the numerical derivatives for the ! effective mass tensor & integer & 1} ! See {\tt deltaem} and {\tt vklem}. ! ! \block{nempty}{ ! {\tt nempty} & the number of empty states per atom and spin & real & $4.0$ } ! Defines the number of eigenstates beyond that required for charge ! neutrality. When running metals it is not known {\it a priori} how many ! states will be below the Fermi energy for each $k$-point. Setting ! {\tt nempty} greater than zero allows the additional states to act as a ! buffer in such cases. Furthermore, magnetic calculations use the ! first-variational eigenstates as a basis for setting up the ! second-variational Hamiltonian, and thus {\tt nempty} will determine the ! size of this basis set. Convergence with respect to this quantity should be ! checked. ! ! \block{ngridk}{ ! {\tt ngridk } & the $k$-point mesh sizes & integer(3) & $(1,1,1)$} ! The ${\bf k}$-vectors are generated using ! $$ {\bf k}=(\frac{i_1+v_1}{n_1},\frac{i_2+v_2}{n_2},\frac{i_3+v_3}{n_3}), $$ ! where $i_j$ runs from 0 to $n_j-1$ and $0\le v_j<1$ for $j=1,2,3$. The ! vector ${\bf v}$ is given by the variable {\tt vkloff}. See also ! {\tt reducek}. ! ! \block{ngridq}{ ! {\tt ngridq } & the phonon $q$-point mesh sizes & integer(3) & $(1,1,1)$} ! Same as {\tt ngridk}, except that this mesh is for the phonon $q$-points ! and other tasks. See also {\tt reduceq}. ! ! \block{nosource}{ ! {\tt nosource} & when set to {\tt .true.}, source fields are projected out ! of the exchange-correlation magnetic field & logical & {\tt .false.}} ! Experimental feature. ! ! \block{notes}{ ! {\tt notes(i)} & the $i$th line of the notes & string & -} ! This block allows users to add their own notes to the file {\tt INFO.OUT}. ! The block should be terminated with a blank line, and no line should exceed ! 80 characters. ! ! \block{npmae}{ ! {\tt npmae } & number or distribution of directions for MAE calculations & ! integer & $-1$} ! Automatic determination of the magnetic anisotropy energy (MAE) requires ! that the total energy is determined for a set of directions of the total ! magnetic moment. This variable controls the number or distribution of these ! directions. The convention is: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! $-4,-3,-2,-1$ & Cardinal directions given by the primitive translation ! vectors $n_1{\bf A}_1+n_2{\bf A}_2+n_3{\bf A}_3$, where ! $1\le n_i\le|{\tt npmae}|$ \\ ! 2 & Cartesian $x$ and $z$ directions \\ ! 3 & Cartesian $x$, $y$ and $z$ directions \\ ! $4,5,\ldots$ & Even distribution of {\tt npmae} directions ! \end{tabularx} ! ! \block{ntemp}{ ! {\tt ntemp} & number of temperature steps & integer & 40} ! This is the number of temperature steps to be used in the Eliashberg gap ! and thermodynamic properties calculations. ! ! \block{nvbse}{ ! {\tt nvbse} & number of valence states to be used for BSE calculations & ! integer & 2} ! See also {\tt ncbse}. ! ! \block{nwrite}{ ! {\tt nwrite} & number of self-consistent loops after which {\tt STATE.OUT} ! is to be written & integer & 0} ! Normally, the density and potentials are written to the file {\tt STATE.OUT} ! only after completion of the self-consistent loop. By setting {\tt nwrite} ! to a positive integer the file will instead be written every {\tt nwrite} ! loops. ! ! \block{nxoapwlo}{ ! {\tt nxoapwlo} & extra order of radial functions to be added to the existing ! APW and local-orbital set & integer & 0} ! Setting this variable will result in the APWs and local-orbitals for all ! species becoming higher order with corresponding increase in derivative ! matching at the muffin-tin surface. For example, setting {\tt nxoapwlo}=1 ! turns all APWs into LAPWs. ! ! \block{optcomp}{ ! {\tt optcomp} & the components of the first- or second-order optical tensor ! to be calculated & integer(3) & $(1,1,1)$} ! This selects which components of the optical tensor you would like to plot. ! Only the first two are used for the first-order tensor. Several components ! can be listed one after the other with a blank line terminating the list. ! ! \block{phwrite}{ ! {\tt nphwrt} & number of $q$-points for which phonon modes are to be found & ! integer & 1 \\ ! \hline ! {\tt vqlwrt(i)} & the $i$th $q$-point in lattice coordinates & real(3) & ! $(0.0,0.0,0.0)$} ! This is used in conjunction with {\tt task}=230. The code will write the ! phonon frequencies and eigenvectors to the file {\tt PHONON.OUT} for all the ! $q$-points in the list. The $q$-points can be anywhere in the Brillouin zone ! and do not have to lie on the mesh defined by {\tt ngridq}. Obviously, all ! the dynamical matrices have to be computed first using {\tt task}=200. ! ! \block{plot1d}{ ! {\tt nvp1d} & number of vertices & integer & 2 \\ ! {\tt npp1d} & number of plotting points & integer & 200 \\ ! \hline ! {\tt vvlp1d(i)} & lattice coordinates for vertex $i$ & real(3) & ! $(0.0,0.0,0.0)\rightarrow(1.0,1.0,1.0)$} ! Defines the path in either real or reciprocal space along which the 1D plot ! is to be produced. The user should provide {\tt nvp1d} vertices in lattice ! coordinates. ! ! \block{plot2d}{ ! {\tt vclp2d(0)} & zeroth corner (origin) & real(3) & $(0.0,0.0,0.0)$ \\ ! \hline ! {\tt vclp2d(1)} & first corner & real(3) & $(1.0,0.0,0.0)$ \\ ! \hline ! {\tt vclp2d(2)} & second corner & real(3) & $(0.0,1.0,0.0)$ \\ ! \hline ! {\tt np2d} & number of plotting points in both directions & integer(2) & ! $(40,40)$} ! Defines the corners of a parallelogram and the grid size used for producing ! 2D plots. ! ! \block{plot3d}{ ! {\tt vclp3d(0)} & zeroth corner (origin) & real(3) & $(0.0,0.0,0.0)$ \\ ! \hline ! {\tt vclp3d(1)} & first corner & real(3) & $(1.0,0.0,0.0)$ \\ ! \hline ! {\tt vclp3d(2)} & second corner & real(3) & $(0.0,1.0,0.0)$ \\ ! \hline ! {\tt vclp3d(3)} & third corner & real(3) & $(0.0,0.0,1.0)$ \\ ! \hline ! {\tt np3d} & number of plotting points each direction & integer(3) & ! $(20,20,20)$} ! Defines the corners of a box and the grid size used for producing 3D plots. ! ! \block{primcell}{ ! {\tt primcell} & {\tt .true.} if the primitive unit cell should be found ! & logical & {\tt .false.}} ! Allows the primitive unit cell to be determined automatically from the ! conventional cell. This is done by searching for lattice vectors among all ! those which connect atomic sites, and using the three shortest which produce ! a unit cell with non-zero volume. ! ! \block{pulse}{ ! {\tt n} & number of pulses & integer & - \\ ! \hline ! {\tt a0(i)} & polarisation vector (including amplitude) & real(3) & - \\ ! {\tt w(i)} & frequency & real & - \\ ! {\tt phi(i)} & phase in degrees & real & - \\ ! {\tt rc(i)} & chirp rate & real & - \\ ! {\tt t0(i)} & peak time & real & - \\ ! {\tt d(i)} & full-width at half-maximum & real & -} ! Parameters used to generate a time-dependent vector potential ${\bf A}(t)$ ! representing a laser pulse. The total vector potential is the sum of ! individual pulses and is given by the formula ! $$ {\bf A}(t)=\sum_{i=1}^n {\bf A}_0^i\exp ! \left[-(t-t_0^i)^2/2\sigma_i^2\right] ! \sin\left[w_i(t-t_0^i)+\phi_i+r_{\rm c}^i t^2/2\right], $$ ! where $\sigma=d/2\sqrt{2\ln 2}$. See also {\tt ramp}. ! ! \block{radkpt}{ ! {\tt radkpt } & radius of sphere used to determine $k$-point density & ! real & $40.0$} ! Used for the automatic determination of the $k$-point mesh. If {\tt autokpt} ! is set to {\tt .true.} then the mesh sizes will be determined by ! $n_i=R_k|{\bf B}_i|+1$, where ${\bf B}_i$ are the primitive reciprocal ! lattice vectors. ! ! \block{ramp}{ ! {\tt n} & number of ramps & integer & - \\ ! \hline ! {\tt a0(i)} & polarisation vector (including amplitude) & real(3) & - \\ ! {\tt t0(i)} & ramp start time & real & - \\ ! {\tt c1(i)} & linear coefficient of ${\bf A}(t)$ & real & - \\ ! {\tt c2(i)} & quadratic coefficient & real & -} ! Parameters used to generate a time-dependent vector potential ${\bf A}(t)$ ! representing a constant or linearly increasing electric field ! ${\bf E}(t)=-\partial{\bf A}(t)/\partial t$. The vector potential is given ! by ! $$ {\bf A}(t)=\sum_{i=1}^n {\bf A}_0^i ! \left[c_1(t-t_0)+c_2(t-t_0)^2\right]\Theta(t-t_0). $$ ! ! \block{readadu}{ ! {\tt readadu} & set to {\tt .true.} if the interpolation constant for ! DFT+$U$ should be read from file rather than calculated & logical & ! {\tt .false.}} ! When {\tt dftu}=3, the DFT+$U$ energy and potential are interpolated ! between FLL and AFM. The interpolation constant, $\alpha$, is normally ! calculated from the density matrix, but can also be read in from the file ! {\tt ALPHADU.OUT}. This allows the user to fix $\alpha$, but is also ! necessary when calculating forces, since the contribution of the potential ! of the variation of $\alpha$ with respect to the density matrix is not ! computed. See {\tt dft+u}. ! ! \block{reducebf}{ ! {\tt reducebf} & reduction factor for the external magnetic fields & real & ! $1.0$} ! After each self-consistent loop, the external magnetic fields are multiplied ! with {\tt reducebf}. This allows for a large external magnetic field at the ! start of the self-consistent loop to break spin symmetry, while at the end ! of the loop the field will be effectively zero, i.e. infinitesimal. See ! {\tt bfieldc} and {\tt atoms}. ! ! \block{reduceh}{ ! {\tt reduceh} & set to {\tt .true.} if the reciprocal ${\bf H}$-vectors ! should be reduced by the symmorphic crystal symmetries & logical & .true.} ! See {\tt hmaxvr} and {\tt vmat}. ! ! \block{reducek}{ ! {\tt reducek} & type of reduction of the $k$-point set & integer & 1} ! Types of reduction are defined by the symmetry group used: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! 0 & no reduction \\ ! 1 & reduce with full crystal symmetry group (including non-symmorphic ! symmetries) \\ ! 2 & reduce with symmorphic symmetries only ! \end{tabularx} ! \vskip 6pt ! See also {\tt ngridk} and {\tt vkloff}. ! ! \block{reduceq}{ ! {\tt reduceq} & type of reduction of the $q$-point set & integer & 1} ! See {\tt reducek} and {\tt ngridq}. ! ! \block{rgkmax}{ ! {\tt rgkmax} & $R^{\rm MT}_{\rm min}\times\max\{|{\bf G}+{\bf k}|\}$ & ! real & $7.0$} ! This sets the maximum length for the ${\bf G}+{\bf k}$ vectors, defined as ! {\tt rgkmax} divided by the average muffin-tin radius. See {\tt isgkmax}. ! ! \block{rotavec}{ ! {\tt axang} & axis-angle representation of lattice vector rotation & ! real(4) & $(0.0,0.0,0.0,0.0)$} ! This determines the rotation matrix which is applied to the lattice vectors ! prior to any calculation. The first three components specify the axis and ! the last component is the angle in degrees. The `right-hand rule' convention ! is followed. ! ! \block{scale}{ ! {\tt scale } & lattice vector scaling factor & real & $1.0$} ! Scaling factor for all three lattice vectors. Applied in conjunction with ! {\tt scale1}, {\tt scale2} and {\tt scale3}. ! ! \block{scale1/2/3}{ ! {\tt scale1/2/3 } & separate scaling factors for each lattice vector & ! real & $1.0$} ! ! \block{scissor}{ ! {\tt scissor} & the scissor correction & real & $0.0$} ! This is the scissor shift applied to states above the Fermi energy ! {\it Phys. Rev. B} {\bf 43}, 4187 (1991). Affects optics calculations only. ! ! \block{scrpath}{ ! {\tt scrpath} & scratch space path & string & null} ! This is the scratch space path where the eigenvector files {\tt EVALFV.OUT} ! and {\tt EVALSV.OUT} will be written. If the run directory is accessed via a ! network then {\tt scrpath} can be set to a directory on the local disk, for ! example {\tt /tmp/}. Note that the forward slash {\tt /} at the end of the ! path must be included. ! ! \block{socscf}{ ! {\tt socscf} & scaling factor for the spin-orbit coupling term in the ! Hamiltonian & real & $1.0$} ! This can be used to enhance the effect of spin-orbit coupling in order to ! accurately determine the magnetic anisotropy energy (MAE). ! ! \block{spincore}{ ! {\tt spincore} & set to {\tt .true.} if the core should be spin-polarised ! & logical & {\tt .false.}} ! ! \block{spinorb}{ ! {\tt spinorb} & set to {\tt .true.} if a spin-orbit coupling is required ! & logical & {\tt .false.}} ! If {\tt spinorb} is {\tt .true.}, then a $\boldsymbol\sigma\cdot{\bf L}$ ! term is added to the second-variational Hamiltonian. See {\tt spinpol}. ! ! \block{spinpol}{ ! {\tt spinpol} & set to {\tt .true.} if a spin-polarised calculation is ! required & logical & {\tt .false.}} ! If {\tt spinpol} is {\tt .true.}, then the spin-polarised Hamiltonian is ! solved as a second-variational step using two-component spinors in the ! Kohn-Sham magnetic field. The first variational scalar wavefunctions are ! used as a basis for setting this Hamiltonian. ! ! \block{spinsprl}{ ! {\tt spinsprl} & set to {\tt .true.} if a spin-spiral calculation is ! required & logical & {\tt .false.}} ! Experimental feature for the calculation of spin-spiral states. See ! {\tt vqlss} for details. ! ! \block{sppath}{ ! {\tt sppath} & path where the species files can be found & string & null} ! Note that the forward slash {\tt /} at the end of the path must be included. ! ! \block{ssdph}{ ! {\tt ssdph} & set to {\tt .true.} if a complex de-phasing factor is to be ! used in spin-spiral calculations & logical & {\tt .true.}} ! If this is {\tt .true.} then spin-spiral wavefunctions in each muffin-tin at ! position ${\bf r}_{\alpha}$ are de-phased by the matrix ! $$ \begin{pmatrix} e^{-i{\bf q}\cdot{\bf r}_{\alpha}/2} & 0 \\ ! 0 & e^{i{\bf q}\cdot{\bf r}_{\alpha}/2} \end{pmatrix}. $$ ! In simple situations, this has the advantage of producing magnon dynamical ! matrices which are already in diagonal form. This option should be used with ! care, and a full understanding of the spin-spiral configuration is required. ! See {\tt spinsprl}. ! ! \block{stype}{ ! {\tt stype} & integer defining the type of smearing to be used & integer & ! $3$} ! A smooth approximation to the Dirac delta function is needed to compute the ! occupancies of the Kohn-Sham states. The variable {\tt swidth} determines ! the width of the approximate delta function. Currently implemented are ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! 0 & Gaussian \\ ! 1 & Methfessel-Paxton order 1, Phys. Rev. B {\bf 40}, 3616 (1989) \\ ! 2 & Methfessel-Paxton order 2 \\ ! 3 & Fermi-Dirac ! \end{tabularx} ! \vskip 6pt ! See also {\tt autoswidth}, {\tt swidth} and {\tt tempk}. ! ! \block{swidth}{ ! {\tt swidth} & width of the smooth approximation to the Dirac delta ! function & real & $0.001$} ! See {\tt stype} for details and the variable {\tt tempk}. ! ! \newpage ! \block{tasks}{ ! {\tt task(i) } & the $i$th task & integer & $-1$} ! A list of tasks for the code to perform sequentially. The list should be ! terminated with a blank line. Each task has an associated integer as ! follows: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! -1 & Write out the version number of the code. \\ ! 0 & Ground state run starting from the atomic densities. \\ ! 1 & Resumption of ground-state run using density in {\tt STATE.OUT}. \\ ! 2 & Geometry optimisation run starting from the atomic densities, with ! atomic positions written to {\tt GEOMETRY.OUT}. \\ ! 3 & Resumption of geometry optimisation run using density in {\tt STATE.OUT} ! but with positions from {\tt elk.in}. \\ ! 5 & Ground state Hartree-Fock run. \\ ! 10 & Total, partial and interstitial density of states (DOS). \\ ! 14 & Plots the smooth Dirac delta and Heaviside step functions used by the ! code to calculate occupancies. \\ ! 15 & Output ${\bf L}$, ${\bf S}$ and ${\bf J}$ total expectation values. \\ ! 16 & Output ${\bf L}$, ${\bf S}$ and ${\bf J}$ expectation values for each ! $k$-point and state in {\tt kstlist}. \\ ! 20 & Band structure plot. \\ ! 21 & Band structure plot which includes total and angular momentum ! characters for every atom. \\ ! 22 & Band structure plot which includes $(l,m)$ character for every atom. \\ ! 23 & Band structure plot which includes spin character for every atom. \\ ! 25 & Compute the effective mass tensor at the $k$-point given by ! {\tt vklem}. \\ ! 31, 32, 33 & 1/2/3D charge density plot. \\ ! 41, 42, 43 & 1/2/3D exchange-correlation and Coulomb potential plots. \\ ! 51, 52, 53 & 1/2/3D electron localisation function (ELF) plot. \\ ! 61, 62, 63 & 1/2/3D wavefunction plot: ! $\left|\Psi_{i{\bf k}}({\bf r})\right|^2$. \\ ! 65 & Write the core wavefunctions to file for plotting. \\ ! 71, 72, 73 & 1/2/3D plot of magnetisation vector field, ! ${\bf m}({\bf r})$. \\ ! 81, 82, 83 & 1/2/3D plot of exchange-correlation magnetic vector field, ! ${\bf B}_{\rm xc}({\bf r})$. \\ ! 91, 92, 93 & 1/2/3D plot of $\nabla\cdot{\bf B}_{\rm xc}({\bf r})$. \\ ! 100 & 3D Fermi surface plot using the scalar product ! $p({\bf k})=\Pi_i(\epsilon_{i{\bf k}}-\epsilon_{\rm F})$. \\ ! 101 & 3D Fermi surface plot using separate bands (minus the Fermi ! energy). \\ ! 102 & 3D Fermi surface which can be plotted with XCrysDen. \\ ! 105 & 3D nesting function plot. \\ ! 110 & Calculation of M\"{o}ssbauer contact charge densities and magnetic ! fields at the nuclear sites. \\ ! 115 & Calculation of the electric field gradient (EFG) at the nuclear ! sites. \\ ! 120 & Output of the momentum matrix elements ! $\langle\Psi_{i{\bf k}}|-i\nabla|\Psi_{j{\bf k}}\rangle$. \\ ! 121 & Linear optical dielectric response tensor calculated within the random ! phase approximation (RPA) and in the $q\rightarrow 0$ limit, with no ! microscopic contributions. \\ ! 122 & Magneto optical Kerr effect (MOKE) angle. \\ ! 125 & Non-linear optical second harmonic generation. ! \end{tabularx} ! ! \begin{tabularx}{\textwidth}[h]{lX} ! 130 & Output matrix elements of the type ! $\langle\Psi_{i{\bf k+q}}|\exp[i({\bf G+q})\cdot{\bf r}]| ! \Psi_{j{\bf k}}\rangle$. \\ ! 135 & Output all wavefunctions expanded in the plane wave basis up to a ! cut-off defined by {\tt rgkmax}. \\ ! 140 & Energy loss near edge structure (ELNES). \\ ! 141, 142, 143 & 1/2/3D plot of the electric field ! ${\bf E}({\bf r})\equiv\nabla V_{\rm C}({\bf r})$. \\ ! 151, 152, 153 & 1/2/3D plot of ! ${\bf m}({\bf r})\times{\bf B}_{\rm xc}({\bf r})$. \\ ! 162 & Scanning-tunneling microscopy (STM) image. \\ ! 180 & Generate the RPA inverse dielectric function with local contributions ! and write it to file. \\ ! 185 & Write the Bethe-Salpeter equation (BSE) Hamiltonian to file. \\ ! 186 & Diagonalise the BSE Hamiltonian and write the eigenvectors and ! eigenvalues to file. \\ ! 187 & Output the BSE dielectric response function. \\ ! 190 & Write the atomic geometry to file for plotting with XCrySDen and ! V\_Sim. \\ ! 195 & Calculation of X-ray density structure factors. \\ ! 196 & Calculation of magnetic structure factors. \\ ! 200 & Calculation of phonon dynamical matrices on a $q$-point set defined by ! {\tt ngridq} using the supercell method. \\ ! 202 & Phonon dry run: just produce a set of empty DYN files. \\ ! 205 & Calculation of phonon dynamical matrices using density functional ! perturbation theory (DFPT). \\ ! 210 & Phonon density of states. \\ ! 220 & Phonon dispersion plot. \\ ! 230 & Phonon frequencies and eigenvectors for an arbitrary $q$-point. \\ ! 240, 241 & Generate the ${\bf q}$-dependent phonon linewidths and ! electron-phonon coupling constants and write them to file. \\ ! 245 & Phonon linewidths plot. \\ ! 250 & Eliashberg function $\alpha^2F(\omega)$, electron-phonon coupling ! constant $\lambda$, and the McMillan-Allen-Dynes critical temperature ! $T_c$. \\ ! 300 & Reduced density matrix functional theory (RDMFT) calculation. \\ ! 320 & Time-dependent density functional theory (TDDFT) calculation of the ! dielectric response function including microscopic contributions. \\ ! 330, 331 & TDDFT calculation of the spin-polarised response function for ! arbitrary ${\bf q}$-vectors. Task 331 writes the entire response function ! $\overleftrightarrow{\chi}({\bf G},{\bf G}',q,\omega)$ to file. \\ ! 400 & Calculation of tensor moments and corresponding DFT+$U$ Hartree-Fock ! energy contributions. \\ ! 450 & Generates a laser pulse in the form of a time-dependent vector ! potential ${\bf A}(t)$ and writes it to AFIELDT.OUT. \\ ! 460 & Time evolution run using TDDFT under the influence of ${\bf A}(t)$. ! \end{tabularx} ! ! \block{tau0atp}{ ! {\tt tau0atp} & the step size to be used for atomic position optimisation & ! real & $0.25$} ! The position of atom $\alpha$ is updated on step $m$ of a geometry ! optimisation run using ! $$ {\bf r}_{\alpha}^{m+1}={\bf r}_{\alpha}^m+\tau_{\alpha}^m ! \left({\bf F}_{\alpha}^m+{\bf F}_{\alpha}^{m-1}\right), $$ ! where $\tau_{\alpha}$ is set to {\tt tau0atp} for $m=0$, and incremented by ! the same amount if the atom is moving in the same direction between steps. ! If the direction changes then $\tau_{\alpha}$ is reset to {\tt tau0atp}. ! ! \block{tau0latv}{ ! {\tt tau0latv} & the step size to be used for lattice vector optimisation & ! real & $0.25$} ! This parameter is used for lattice vector optimisation in a procedure ! identical to that for atomic position optimisation. See {\tt tau0atp} and ! {\tt latvopt}. ! ! \block{tauoep}{ ! {\tt tauoep} & step length and starting fraction for the OEP iterative ! solver & real(2) & $(0.05, 0.95)$} ! The optimised effective potential is determined using an interative method ! [Phys. Rev. Lett. 98, 196405 (2007)]. This variable sets the step length ! described in the article. The second number defines the fraction of the ! existing potential to be used as the starting point of the iterative ! procedure. These parameters are also used for inverting the Kohn-Sham ! equations as required by the self-consistent density $GW$ method. See ! {\tt maxitoep}. ! ! \block{taufsm}{ ! {\tt taufsm} & the step size to be used when finding the effective magnetic ! field in fixed spin moment calculations & real & $0.01$} ! An effective magnetic field, ${\bf B}_{\rm FSM}$, is required for fixing the ! spin moment to a given value, ${\bf M}_{\rm FSM}$. This is found by adding a ! vector to the field which is proportional to the difference between the ! moment calculated in the $i$th self-consistent loop and the required moment: ! $$ {\bf B}_{\rm FSM}^{i+1}={\bf B}_{\rm FSM}^i+\lambda\left({\bf M}^i ! -{\bf M}_{\rm FSM}\right), $$ ! where $\lambda$ is proportional to {\tt taufsm}. See also {\tt fsmtype}, ! {\tt momfix} and {\tt spinpol}. ! ! \block{tempk}{ ! {\tt tempk} & temperature $T$ of the electronic system in kelvin & real & -} ! Assigning a value to this variable sets {\tt stype} to 3 (Fermi-Dirac) and ! the smearing width to $k_{\rm B}T$. ! ! \block{tforce}{ ! {\tt tforce} & set to {\tt .true.} if the force should be calculated at the ! end of the self-consistent cycle & logical & {\tt .false.}} ! This variable is automatically set to {\tt .true.} when performing geometry ! optimisation. ! ! \block{tefvit}{ ! {\tt tefvit} & set to {\tt .true.} if the first-variational eigenvalue ! equation should be solved iteratively & logical & {\tt .false.}} ! ! \block{tefvr}{ ! {\tt tefvr} & set to {\tt .true.} if a real symmetric eigenvalue solver ! should be used for crystals which have inversion symmetry & logical & ! {\tt .true.}} ! For crystals with inversion symmetry, the first-variational Hamiltonian and ! overlap matrices can be made real by using appropriate transformations. In ! this case, a real symmetric (instead of complex Hermitian) eigenvalue solver ! can be used. This makes the calculation about three times faster. ! ! \block{tmomfix}{ ! {\tt ntmfix} & number of tensor moments (TM) to be fixed & integer & 0 \\ ! \hline ! {\tt is(i)} & species number for entry $i$ & integer & - \\ ! {\tt ia(i)} & atom number & integer & - \\ ! {\tt (l, n)(i)} & $l$ and $n$ indices of TM & integer & - \\ ! \hline ! {\tt (k, p, x, y)(i)} or & & & \\ ! {\tt (k, p, r, t)(i)} & indices for the 2-index or 3-index TM, ! respectively & integer & - \\ ! \hline ! {\tt z(i)} & complex TM value & complex & - \\ ! \hline ! {\tt p(i)} & parity of spatial rotation & integer & - \\ ! {\tt aspl(i)} & Euler angles of spatial rotation & real(3) & - \\ ! {\tt aspn(i)} & Euler angles of spin rotation & real(3) & - } ! This block sets up the fixed tensor moment (FTM). There should be as many ! TM entries as {\tt ntmfix}. See {\it Phys. Rev. Lett.} {\bf 103}, 107202 ! (2009) for the tensor moment indexing convention. This is a highly ! complicated feature of the code, and should only be attempted with a full ! understanding of tensor moments. ! ! \block{tmwrite}{ ! {\tt tmwrite} & set to {\tt .true.} if the tensor moments and the ! corresponding decomposition of DFT+$U$ energy should be calculated ! at every loop of the self-consistent cycle & logical & {\tt .false.}} ! This variable is useful to check the convergence of the tensor moments in ! DFT+$U$ caculations. Alternatively, with {\tt task} equal to 400, one can ! calculate the tensor moments and corresponding DFT+$U$ energy contributions ! from a given density matrix and set of Slater parameters at the end of the ! self-consistent cycle. ! ! \block{tsediag}{ ! {\tt tsediag} & set to {\tt .true.} if the self-energy matrix should be ! treated as diagonal & logical & {\tt .true.}} ! When this variable is {\tt .true.}, the self-energy used in a $GW$ ! calculation $\Sigma_{ij}({\bf k},\omega)$ is taken to be diagonal in the ! Kohn-Sham state indices $i$ and $j$. When {\tt tsediag} is {\tt .false.}, ! the entire matrix is used. See also {\tt twdiag}. ! ! \block{tshift}{ ! {\tt tshift} & set to {\tt .true.} if the crystal can be shifted so that the ! atom closest to the origin is exactly at the origin & ! logical & {\tt .true.}} ! ! \block{tstime}{ ! {\tt tstime} & total simulation time of time evolution run & real & ! $1000.0$} ! See also {\tt dtimes}. ! ! \block{twdiag}{ ! {\tt twdiag} & set to {\tt .true.} if the screened interaction matrix should ! be treated as diagonal & logical & {\tt .false.}} ! When this variable is {\tt .true.}, the screened interaction used in a $GW$ ! calculation $W({\bf G},{\bf G}',{\bf q},\omega)$ is taken to be diagonal in ! the plane wave indices ${\bf G}$ and ${\bf G}'$. See also {\tt tsediag}. ! ! \block{vhmat}{ ! {\tt vhmat(1)} & matrix row 1 & real(3) & $(1.0,0.0,0.0)$ \\ ! \hline ! {\tt vhmat(2)} & matrix row 2 & real(3) & $(0.0,1.0,0.0)$ \\ ! \hline ! {\tt vhmat(3)} & matrix row 3 & real(3) & $(0.0,0.0,1.0)$} ! This is the transformation matrix $M$ applied to every vector $\bf H$ in the ! structure factor output files {\tt SFACRHO.OUT} and {\tt SFACMAG.OUT}. It is ! stored in the usual row-column setting and applied directly as ! ${\bf H}'=M{\bf H}$ to every vector but {\em only} when writing the output ! files. See also {\tt hmaxvr} and {\tt reduceh}. ! ! \block{vhighq}{ ! {\tt vhighq} & {\tt .true.} if a very high quality parameter set should be ! used & logical & {\tt .false.}} ! Setting this to {\tt .true.} results in some default parameters being ! changed to ensure excellent convergence in most situations. See also ! {\tt highq}. ! ! \block{vklem}{ ! {\tt vklem} & the $k$-point in lattice coordinates at which to compute the ! effective mass tensors & real(3) & $(0.0,0.0,0.0)$} ! See {\tt deltaem} and {\tt ndspem}. ! ! \block{vkloff}{ ! {\tt vkloff } & the $k$-point offset vector in lattice coordinates & ! real(3) & $(0.0,0.0,0.0)$} ! See {\tt ngridk}. ! ! \block{vqlss}{ ! {\tt vqlss} & the ${\bf q}$-vector of the spin-spiral state in lattice ! coordinates & real(3) & $(0.0,0.0,0.0)$} ! Spin-spirals arise from spinor states assumed to be of the form ! $$ \Psi^{\bf q}_{\bf k}({\bf r})= ! \left( \begin{array}{c} ! U^{{\bf q}\uparrow}_{\bf k}({\bf r})e^{i({\bf k+q/2})\cdot{\bf r}} \\ ! U^{{\bf q}\downarrow}_{\bf k}({\bf r})e^{i({\bf k-q/2})\cdot{\bf r}} \\ ! \end{array} \right). $$ ! These are determined using a second-variational approach, and give rise to a ! magnetisation density of the form ! $$ {\bf m}^{\bf q}({\bf r})=(m_x({\bf r})\cos({\bf q \cdot r}), ! m_y({\bf r})\sin({\bf q \cdot r}),m_z({\bf r})), $$ ! where $m_x$, $m_y$ and $m_z$ are lattice periodic. See also {\tt spinsprl}. ! ! \block{wmaxgw}{ ! {\tt wmaxgw} & maximum Matsubara frequency for $GW$ calculations & real & ! $-5.0$} ! This defines the cut-off of the Matsubara frequencies on the imaginary ! axis for calculating the $GW$ self-energy and solving the Dyson equation. ! If this number is negative then the cut-off is taken to be ! $|{\tt wmaxgw}|\times\Delta\epsilon$, where $\Delta\epsilon$ is the ! difference between the largest and smallest Kohn-Sham valence eigenvalues. ! ! \block{wplot}{ ! {\tt nwplot} & number of frequency/energy points in the DOS or optics plot & ! integer & $500$ \\ ! {\tt ngrkf} & fine $k$-point grid size used for integrating functions in the ! Brillouin zone & integer & $100$ \\ ! {\tt nswplot} & level of smoothing applied to DOS/optics output & integer & ! $1$ \\ ! \hline ! {\tt wplot} & frequency/energy window for the DOS or optics plot & real(2) & ! $(-0.5,0.5)$} ! DOS and optics plots require integrals of the kind ! $$ g(\omega_i)=\frac{\Omega}{(2\pi)^3}\int_{\rm BZ} f({\bf k}) ! \delta(\omega_i-e({\bf k}))d{\bf k}. $$ ! These are calculated by first interpolating the functions $e({\bf k})$ and ! $f({\bf k})$ with the trilinear method on a much finer mesh whose size is ! determined by {\tt ngrkf}. Then the $\omega$-dependent histogram of the ! integrand is accumulated over the fine mesh. If the output function is noisy ! then either {\tt ngrkf} should be increased or {\tt nwplot} decreased. ! Alternatively, the output function can be artificially smoothed up to a ! level given by {\tt nswplot}. This is the number of successive 3-point ! averages to be applied to the function $g$. ! ! \block{wsfac}{ ! {\tt wsfac} & energy window to be used when calculating density or magnetic ! structure factors & real(2) & $(-10^6,10^6)$} ! Only those states with eigenvalues within this window will contribute to the ! density or magnetisation. See also {\tt hmaxvr} and {\tt vhmat}. ! ! \block{xctype}{ ! {\tt xctype} & integers defining the type of exchange-correlation functional ! to be used & integer(3) & $(3,0,0)$} ! Normally only the first value is used to define the functional type. The ! other value may be used for external libraries. Currently implemented are: ! \vskip 6pt ! \begin{tabularx}{\textwidth}[h]{lX} ! $-n$ & Exact-exchange optimised effective potential (EXX-OEP) method with ! correlation energy and potential given by functional number $n$ \\ ! 1 & No exchange-correlation funtional ($E_{\rm xc}\equiv 0$) \\ ! 2 & LDA, Perdew-Zunger/Ceperley-Alder, {\it Phys. Rev. B} {\bf 23}, 5048 ! (1981) \\ ! 3 & LSDA, Perdew-Wang/Ceperley-Alder, {\it Phys. Rev. B} {\bf 45}, 13244 ! (1992) \\ ! 4 & LDA, X-alpha approximation, J. C. Slater, {\it Phys. Rev.} {\bf 81}, 385 ! (1951) \\ ! 5 & LSDA, von Barth-Hedin, {\it J. Phys. C} {\bf 5}, 1629 (1972) \\ ! 20 & GGA, Perdew-Burke-Ernzerhof, {\it Phys. Rev. Lett.} {\bf 77}, 3865 ! (1996) \\ ! 21 & GGA, Revised PBE, Zhang-Yang, {\it Phys. Rev. Lett.} {\bf 80}, 890 ! (1998) \\ ! 22 & GGA, PBEsol, Phys. Rev. Lett. 100, 136406 (2008) \\ ! 26 & GGA, Wu-Cohen exchange (WC06) with PBE correlation, {\it Phys. Rev. B} ! {\bf 73}, 235116 (2006) \\ ! 30 & GGA, Armiento-Mattsson (AM05) spin-unpolarised functional, ! {\it Phys. Rev. B} {\bf 72}, 085108 (2005) \\ ! 100 & Libxc functionals; the second and third values of {\tt xctype} define ! the exchange and correlation functionals in the Libxc library, ! respectively \\ ! \end{tabularx} ! ! \section{Contributing to Elk} ! Please bear in mind when writing code for the Elk project that it should be ! an exercise in physics and not software engineering. All code should ! therefore be kept as simple and concise as possible, and above all it should ! be easy for anyone to locate and follow the Fortran representation of the ! original mathematics. We would also appreciate the following conventions ! being adhered to: ! \begin{itemize} ! \item Strict Fortran 2003 should be used. Features which are marked as ! obsolescent in Fortran 2003 should be avoided. These include assigned ! format specifiers, labeled do-loops, computed goto statements and statement ! functions. ! \item Modules should be used in place of common blocks for declaring ! global variables. Use the existing modules to declare new global variables. ! \item Any code should be written in lower-case free form style, starting ! from column one. Try and keep the length of each line to fewer than 80 ! characters using the \& character for line continuation. ! \item Every function or subroutine, no matter how small, should be in its ! own file named {\tt routine.f90}, where {\tt routine} is the function or ! subroutine name. It is recommended that the routines are named so as to ! make their purpose apparent from the name alone. ! \item Use of {\tt implicit none} is mandatory. Remember also to define the ! {\tt intent} of any passed arguments. ! \item Local allocatable arrays must be deallocated on exit of the routine to ! prevent memory leakage. Use of automatic arrays should be limited to arrays ! of small size. ! \item Every function or subroutine must be documented with the Protex source ! code documentation system. This should include a short \LaTeX\ description ! of the algorithms and methods involved. Equations which need to be ! referenced should be labeled with {\tt routine\_1}, {\tt routine\_2}, etc. ! The authorship of each new piece of code or modification should be ! indicated in the {\tt REVISION HISTORY} part of the header. See the Protex ! documentation for details. ! \item Ensure as much as possible that a routine will terminate the program ! when given improper input instead of continuing with erroneous results. ! Specifically, functions should have a well-defined domain for which they ! return accurate results. Input outside that domain should result in an ! error message and termination. ! \item Report errors prior to termination with a short description, for ! example: ! \begin{verbatim} ! write(*,*) ! write(*,'("Error(readinput): natoms <= 0 : ",I8)') natoms(is) ! write(*,'(" for species ",I4)') is ! write(*,*) ! stop ! \end{verbatim} ! \item Wherever possible, real numbers outputted as ASCII data should be ! formatted with the {\tt G18.10} specifier. ! \item Avoid redundant or repeated code: check to see if the routine you need ! already exists, before writing a new one. ! \item All reading in of ASCII data should be done in the subroutine ! {\tt readinput}. For binary data, separate routines for reading and writing ! should be used (for example {\tt writestate} and {\tt readstate}). ! \item Input filenames should be in lowercase and have the extension ! {\tt .in} . All output filenames should be in uppercase with the extension ! {\tt .OUT} . ! \item All internal units should be atomic. Input and output units should be ! atomic by default and clearly stated otherwise. Rydbergs should not be used ! under any circumstances. ! \end{itemize} ! \subsection{Licensing} ! Routines which constitute the main part of the code are released under the ! GNU General Public License (GPL). Library routines are released under the ! less restrictive GNU Lesser General Public License (LGPL). Both licenses ! are contained in the file {\tt COPYING}. Any contribution to the code must ! be licensed at the authors' discretion under either the GPL or LGPL. ! Author(s) of the code retain the copyrights. Copyright and (L)GPL ! information must be included at the beginning of every file, and no code ! will be accepted without this. ! !EOI elk-7.2.42/src/PaxHeaders.21776/olpistl.f900000644000000000000000000000013214061636516014731 xustar0030 mtime=1623670094.883102522 30 atime=1623670093.602103711 30 ctime=1623670094.883102522 elk-7.2.42/src/olpistl.f900000644002504400250440000000237514061636516016775 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: olpistl ! !INTERFACE: pure subroutine olpistl(ngp,igpig,ld,o) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer) ! igpig : index from G+p-vectors to G-vectors (in,integer(ngkmax)) ! ld : leading dimension of o (in,integer) ! o : overlap matrix (inout,complex(*)) ! !DESCRIPTION: ! Computes the interstitial contribution to the overlap matrix for the APW ! basis functions. The overlap is given by ! $$ O^{\rm I}({\bf G+k,G'+k})=\tilde{\Theta}({\bf G-G'}), $$ ! where $\tilde{\Theta}$ is the characteristic function. See routine ! {\tt gencfun}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp,igpig(ngkmax) integer, intent(in) :: ld complex(8), intent(inout) :: o(ld,*) ! local variables integer ig,j1,j2,j3,i,j do j=1,ngp ig=igpig(j) j1=ivg(1,ig); j2=ivg(2,ig); j3=ivg(3,ig) do i=1,j ig=igpig(i) ig=ivgig(ivg(1,ig)-j1,ivg(2,ig)-j2,ivg(3,ig)-j3) o(i,j)=o(i,j)+cfunig(ig) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/hmlistl.f900000644000000000000000000000013114061636516014716 xustar0030 mtime=1623670094.884102521 29 atime=1623670093.60310371 30 ctime=1623670094.884102521 elk-7.2.42/src/hmlistl.f900000644002504400250440000000316314061636516016757 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: hmlistl ! !INTERFACE: pure subroutine hmlistl(ngp,igpig,vgpc,ld,h) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer) ! igpig : index from G+p-vectors to G-vectors (in,integer(ngkmax)) ! vgpc : G+p-vectors in Cartesian coordinates (in,real(3,ngkmax)) ! ld : leading dimension of h (in,integer) ! h : Hamiltonian matrix (inout,complex(*)) ! !DESCRIPTION: ! Computes the interstitial contribution to the Hamiltonian matrix for the APW ! basis functions. The Hamiltonian is given by ! $$ H^{\rm I}({\bf G+k,G'+k})=\frac{1}{2}({\bf G+k})\cdot({\bf G'+k}) ! \tilde{\Theta}({\bf G-G'})+V_s({\bf G-G'}), $$ ! where $V_s$ is the interstitial Kohn-Sham potential and $\tilde{\Theta}$ is ! the characteristic function. See routine {\tt gencfun}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp,igpig(ngkmax) real(8), intent(in) :: vgpc(3,ngkmax) integer, intent(in) :: ld complex(8), intent(inout) :: h(ld,*) ! local variables integer ig,j1,j2,j3,i,j real(8) v1,v2,v3,t1 do j=1,ngp ig=igpig(j) j1=ivg(1,ig); j2=ivg(2,ig); j3=ivg(3,ig) v1=0.5d0*vgpc(1,j); v2=0.5d0*vgpc(2,j); v3=0.5d0*vgpc(3,j) do i=1,j ig=igpig(i) ig=ivgig(ivg(1,ig)-j1,ivg(2,ig)-j2,ivg(3,ig)-j3) t1=vgpc(1,i)*v1+vgpc(2,i)*v2+vgpc(3,i)*v3 h(i,j)=h(i,j)+vsig(ig)+t1*cfunig(ig) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/olpalo.f900000644000000000000000000000013014061636516014527 xustar0029 mtime=1623670094.88510252 30 atime=1623670093.605103708 29 ctime=1623670094.88510252 elk-7.2.42/src/olpalo.f900000644002504400250440000000136314061636516016571 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine olpalo(is,ias,ngp,apwalm,ld,o) use modmain implicit none ! arguments integer, intent(in) :: is,ias,ngp complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: o(ld,*) ! local variables integer ilo,io,l,lm,i,j real(8) t1 do ilo=1,nlorb(is) l=lorbl(ilo,is) do lm=l**2+1,(l+1)**2 j=ngp+idxlo(lm,ilo,ias) do io=1,apword(l,is) t1=oalo(io,ilo,ias) do i=1,ngp o(i,j)=o(i,j)+t1*conjg(apwalm(i,io,lm)) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlalo.f900000644000000000000000000000013214061636516014517 xustar0030 mtime=1623670094.887102518 30 atime=1623670093.607103706 30 ctime=1623670094.887102518 elk-7.2.42/src/hmlalo.f900000644002504400250440000000237214061636516016560 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine hmlalo(is,ias,ngp,apwalm,ld,h) use modmain implicit none ! arguments integer, intent(in) :: is,ias,ngp complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: h(ld,*) ! local variables integer io,ilo,i,j integer l1,l2,l3 integer lm1,lm2,lm3 complex(8) z1 do ilo=1,nlorb(is) l1=lorbl(ilo,is) do lm1=l1**2+1,(l1+1)**2 j=ngp+idxlo(lm1,ilo,ias) do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do io=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*hloa(lm2,io,l3,ilo,ias) end do end if end do ! note that what is actually computed is the Hermitian conjugate of if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then do i=1,ngp h(i,j)=h(i,j)+conjg(z1*apwalm(i,io,lm3)) end do end if end do end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/olplolo.f900000644000000000000000000000013214061636516014723 xustar0030 mtime=1623670094.888102517 30 atime=1623670093.608103705 30 ctime=1623670094.888102517 elk-7.2.42/src/olplolo.f900000644002504400250440000000125714061636516016765 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine olplolo(is,ias,ngp,ld,o) use modmain implicit none ! arguments integer, intent(in) :: is,ias,ngp,ld complex(8), intent(inout) :: o(ld,*) ! local variables integer ilo,jlo,l,lm,i,j do ilo=1,nlorb(is) l=lorbl(ilo,is) do jlo=1,nlorb(is) if (lorbl(jlo,is).eq.l) then do lm=l**2+1,(l+1)**2 i=ngp+idxlo(lm,ilo,ias) j=ngp+idxlo(lm,jlo,ias) if (i.le.j) o(i,j)=o(i,j)+ololo(ilo,jlo,ias) end do end if end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/hmllolo.f900000644000000000000000000000013214061636516014711 xustar0030 mtime=1623670094.890102515 30 atime=1623670093.610103703 30 ctime=1623670094.890102515 elk-7.2.42/src/hmllolo.f900000644002504400250440000000172614061636516016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine hmllolo(is,ias,ngp,ld,h) use modmain implicit none ! arguments integer, intent(in) :: is,ias,ngp,ld complex(8), intent(inout) :: h(ld,*) ! local variables integer ilo,jlo,i,j integer l1,l2,l3 integer lm1,lm2,lm3 complex(8) z1 do jlo=1,nlorb(is) l3=lorbl(jlo,is) do lm3=l3**2+1,(l3+1)**2 j=ngp+idxlo(lm3,jlo,ias) do ilo=1,nlorb(is) l1=lorbl(ilo,is) do lm1=l1**2+1,(l1+1)**2 i=ngp+idxlo(lm1,ilo,ias) if (i.gt.j) cycle z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*hlolo(lm2,jlo,ilo,ias) end do end if end do h(i,j)=h(i,j)+z1 end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/olpaa.f900000644000000000000000000000013214061636516014337 xustar0030 mtime=1623670094.891102514 30 atime=1623670093.612103701 30 ctime=1623670094.891102514 elk-7.2.42/src/olpaa.f900000644002504400250440000000134414061636516016376 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine olpaa(tor,is,ngp,apwalm,ld,o) use modmain implicit none ! arguments logical, intent(in) :: tor integer, intent(in) :: is,ngp complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: o(*) ! local variables integer io,l,lm,i ! automatic arrays complex(8) a(lmoapw(is),ngp) i=0 do l=0,lmaxapw do lm=l**2+1,(l+1)**2 do io=1,apword(l,is) i=i+1 a(i,1:ngp)=apwalm(1:ngp,io,lm) end do end do end do call zmctmu(tor,lmoapw(is),ngp,a,a,ld,o) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlaa.f900000644000000000000000000000013014061636516014323 xustar0030 mtime=1623670094.893102512 28 atime=1623670093.6131037 30 ctime=1623670094.893102512 elk-7.2.42/src/hmlaa.f900000644002504400250440000000426014061636516016364 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: hmlaa ! !INTERFACE: subroutine hmlaa(thr,is,ias,ngp,apwalm,ld,h) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! thr : .true. if the matrix h is real valued (in,logical) ! is : species number (in,integer) ! ias : joint atom and species number (in,integer) ! ngp : number of G+p-vectors (in,integer) ! apwalm : APW matching coefficients (in,complex(ngkmax,apwordmax,lmmaxapw)) ! ld : leading dimension of h (in,integer) ! h : Hamiltonian matrix (inout,complex(*)) ! !DESCRIPTION: ! Calculates the APW-APW contribution to the Hamiltonian matrix. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: thr integer, intent(in) :: is,ias,ngp complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: h(*) ! local variables integer lmo,io,jo,i integer l1,l2,l3 integer lm1,lm2,lm3 real(8) t0 complex(8) z1 ! automatic arrays complex(8) a(lmoapw(is),ngp),b(lmoapw(is),ngp) lmo=lmoapw(is) t0=0.5d0*rmt(is)**2 i=0 do l1=0,lmaxapw do lm1=l1**2+1,(l1+1)**2 do io=1,apword(l1,is) i=i+1 b(i,:)=0.d0 do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do jo=1,apword(l3,is) z1=0.d0 ! kinetic and potential contribution do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*haa(lm2,jo,l3,io,l1,ias) end do end if end do ! kinetic surface contribution if (lm1.eq.lm3) then z1=z1+t0*apwfr(nrmt(is),1,io,l1,ias)*apwdfr(jo,l1,ias) end if if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then call zaxpy(ngp,z1,apwalm(:,jo,lm3),1,b(i,1),lmo) end if end do end do end do a(i,1:ngp)=apwalm(1:ngp,io,lm1) end do end do end do call zmctmu(thr,lmo,ngp,a,b,ld,h) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gengclg.f900000644000000000000000000000013214061636516014651 xustar0030 mtime=1623670094.894102511 30 atime=1623670093.615103699 30 ctime=1623670094.894102511 elk-7.2.42/src/gengclg.f900000644002504400250440000000057314061636516016713 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gengclg use modmain implicit none ! local variables if (allocated(gclg)) deallocate(gclg) allocate(gclg(ngvec)) gclg(1)=0.d0 gclg(2:ngvec)=fourpi/gc(2:ngvec)**2 end subroutine elk-7.2.42/src/PaxHeaders.21776/rhomagsh.f900000644000000000000000000000013014061636516015051 xustar0029 mtime=1623670094.89610251 30 atime=1623670093.617103697 29 ctime=1623670094.89610251 elk-7.2.42/src/rhomagsh.f900000644002504400250440000000235714061636516017117 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rhomagsh ! !INTERFACE: subroutine rhomagsh ! !USES: use modmain use modomp ! !DESCRIPTION: ! Converts the muffin-tin density and magnetisation from spherical coordinates ! to a spherical harmonic expansion. See {\tt rhomagk}. ! ! !REVISION HISTORY: ! Created January 2009 (JKD) !EOP !BOC implicit none ! local variables integer idm,is,ias integer npc,nthd ! automatic arrays real(8) rfmt(npcmtmax) call holdthd(natmtot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(rfmt,is,npc,idm) & !$OMP NUM_THREADS(nthd) !$OMP DO do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! convert the density to spherical harmonics rfmt(1:npc)=rhomt(1:npc,ias) call rfsht(nrcmt(is),nrcmti(is),rfmt,rhomt(:,ias)) end do !$OMP END DO NOWAIT do idm=1,ndmag !$OMP DO do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! convert the magnetisation to spherical harmonics rfmt(1:npc)=magmt(1:npc,ias,idm) call rfsht(nrcmt(is),nrcmti(is),rfmt,magmt(:,ias,idm)) end do !$OMP END DO end do !$OMP END PARALLEL call freethd(nthd) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/charge.f900000644000000000000000000000013214061636516014474 xustar0030 mtime=1623670094.897102509 30 atime=1623670093.618103696 30 ctime=1623670094.897102509 elk-7.2.42/src/charge.f900000644002504400250440000000201114061636516016523 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: charge ! !INTERFACE: subroutine charge ! !USES: use modmain use modtest ! !DESCRIPTION: ! Computes the muffin-tin, interstitial and total charges by integrating the ! density. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ias real(8) t1 ! external functions real(8), external :: rfmtint ! find the muffin-tin charges chgmttot=0.d0 do ias=1,natmtot is=idxis(ias) chgmt(ias)=rfmtint(nrmt(is),nrmti(is),wrmt(:,is),rhomt(:,ias)) chgmttot=chgmttot+chgmt(ias) end do ! find the interstitial charge t1=dot_product(rhoir(1:ngtot),cfunir(1:ngtot)) chgir=t1*omega/dble(ngtot) ! total calculated charge chgcalc=chgmttot+chgir ! write total calculated charge to test file call writetest(400,'calculated total charge',tol=1.d-6,rv=chgcalc) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/moment.f900000644000000000000000000000013214061636516014542 xustar0030 mtime=1623670094.899102507 30 atime=1623670093.620103694 30 ctime=1623670094.899102507 elk-7.2.42/src/moment.f900000644002504400250440000000253714061636516016606 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: moment ! !INTERFACE: subroutine moment ! !USES: use modmain use modtest ! !DESCRIPTION: ! Computes the muffin-tin, interstitial and total moments by integrating the ! magnetisation. ! ! !REVISION HISTORY: ! Created January 2005 (JKD) !EOP !BOC implicit none ! local variables integer idm,is,ias real(8) t1 ! external functions real(8), external :: rfmtint if (.not.spinpol) then mommt(:,:)=0.d0 mommttot(:)=0.d0 momir(:)=0.d0 momtot(:)=0.d0 momtotm=0.d0 return end if ! find the muffin-tin moments mommttot(:)=0.d0 do idm=1,ndmag do ias=1,natmtot is=idxis(ias) mommt(idm,ias)=rfmtint(nrmt(is),nrmti(is),wrmt(:,is),magmt(:,ias,idm)) mommttot(idm)=mommttot(idm)+mommt(idm,ias) end do end do ! find the interstitial moments do idm=1,ndmag t1=dot_product(magir(1:ngtot,idm),cfunir(1:ngtot)) momir(idm)=t1*omega/dble(ngtot) end do momtot(:)=mommttot(:)+momir(:) ! total moment magnitude if (ncmag) then momtotm=sqrt(momtot(1)**2+momtot(2)**2+momtot(3)**2) else momtotm=abs(momtot(1)) end if ! write total moment magnitude to test file call writetest(450,'total moment magnitude',tol=1.d-3,rv=momtotm) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rfint0.f900000644000000000000000000000013214061636516014445 xustar0030 mtime=1623670094.900102506 30 atime=1623670093.622103692 30 ctime=1623670094.900102506 elk-7.2.42/src/rfint0.f900000644002504400250440000000136714061636516016511 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rfint0(rf0,rfmt,rfir) use modmain implicit none ! arguments real(8), intent(in) :: rf0 real(8), intent(inout) :: rfmt(npmtmax,natmtot),rfir(ngtot) ! local variables integer is,ias integer nr,nri,ir,i real(8) t1 ! external functions real(8), external :: rfint t1=rfint(rfmt,rfir) t1=rf0-t1/omega rfir(:)=rfir(:)+t1 t1=t1/y00 do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri rfmt(i,ias)=rfmt(i,ias)+t1 i=i+lmmaxi end do do ir=nri+1,nr rfmt(i,ias)=rfmt(i,ias)+t1 i=i+lmmaxo end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/potnucl.f900000644000000000000000000000013214061636516014727 xustar0030 mtime=1623670094.902102504 30 atime=1623670093.623103691 30 ctime=1623670094.902102504 elk-7.2.42/src/potnucl.f900000644002504400250440000000313214061636516016763 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: potnucl ! !INTERFACE: subroutine potnucl(ptnucl,nr,r,zn,vn) ! !INPUT/OUTPUT PARAMETERS: ! ptnucl : .true. if the nucleus is a point charge (in,logical) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! zn : nuclear charge (in,real) ! vn : potential on radial mesh (out,real(nr)) ! !DESCRIPTION: ! Computes the nuclear Coulomb potential on a radial mesh. The nuclear radius ! $R$ is estimated from the nuclear charge $Z$ and the potential is given by ! $$ V(r)=\begin{cases} ! Z(3R^2-r^2)/2R^3 & r nstrain : ",2I8)') i,nstrain write(*,*) stop end if strain(:,:,1)=strain(:,:,i) nstrain=1 end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/symmetry.f900000644000000000000000000000013214061636517015135 xustar0030 mtime=1623670095.012102402 30 atime=1623670093.744103579 30 ctime=1623670095.012102402 elk-7.2.42/src/symmetry.f900000644002504400250440000000204514061636517017173 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine symmetry use modmain use modvars implicit none ! inverse of the lattice vector matrix call r3minv(avec,ainv) ! find Bravais lattice symmetries call findsymlat ! use only the identity if required if (symtype.eq.0) nsymlat=1 ! find the crystal symmetries and shift atomic positions if required call findsymcrys ! find the site symmetries call findsymsite ! check if fixed spin moments are invariant under the symmetry group call checkfsm ! check if real symmetric first-variational eigen solver can be used if (.not.tsyminv) tefvr=.false. ! write to VARIABLES.OUT call writevars('nsymlat',iv=nsymlat) call writevars('symlat',nv=9*nsymlat,iva=symlat) call writevars('nsymcrys',iv=nsymcrys) call writevars('vtlsymc',nv=3*nsymcrys,rva=vtlsymc) call writevars('lsplsymc',nv=nsymcrys,iva=lsplsymc) call writevars('lspnsymc',nv=nsymcrys,iva=lspnsymc) end subroutine elk-7.2.42/src/PaxHeaders.21776/linengy.f900000644000000000000000000000013214061636517014711 xustar0030 mtime=1623670095.013102401 30 atime=1623670093.746103577 30 ctime=1623670095.013102401 elk-7.2.42/src/linengy.f900000644002504400250440000000671214061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: linengy ! !INTERFACE: subroutine linengy ! !USES: use modmain use modmpi ! !DESCRIPTION: ! Calculates the new linearisation energies for both the APW and local-orbital ! radial functions. See the routine {\tt findband}. ! ! !REVISION HISTORY: ! Created May 2003 (JKD) !EOP !BOC implicit none ! local variables logical fnd integer is,ia,ja,ias,jas integer nr,nri,iro,ir,l,i integer ilo,io,jo,nnf ! automatic arrays logical done(natmmax) real(8) vr(nrmtmax) nnf=0 ! begin loops over atoms and species do is=1,nspecies nr=nrmt(is) nri=nrmti(is) iro=nri+1 done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) i=1 do ir=1,nri vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxi end do do ir=iro,nr vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxo end do !-----------------------! ! APW functions ! !-----------------------! do l=0,lmaxapw do io=1,apword(l,is) if (apwve(io,l,is)) then ! check if previous radial functions have same default energies do jo=1,io-1 if (apwve(jo,l,is)) then if (abs(apwe0(io,l,is)-apwe0(jo,l,is)).lt.1.d-4) then apwe(io,l,ias)=apwe(jo,l,ias) goto 10 end if end if end do ! find the band energy starting from default apwe(io,l,ias)=apwe0(io,l,is) call findband(solsc,l,nr,rlmt(:,1,is),vr,epsband,demaxbnd, & apwe(io,l,ias),fnd) if (.not.fnd) nnf=nnf+1 else ! set linearisation energy automatically if (autolinengy) apwe(io,l,ias)=efermi+dlefe end if 10 continue end do end do !---------------------------------! ! local-orbital functions ! !---------------------------------! do ilo=1,nlorb(is) do io=1,lorbord(ilo,is) if (lorbve(io,ilo,is)) then ! check if previous radial functions have same default energies do jo=1,io-1 if (lorbve(jo,ilo,is)) then if (abs(lorbe0(io,ilo,is)-lorbe0(jo,ilo,is)).lt.1.d-4) then lorbe(io,ilo,ias)=lorbe(jo,ilo,ias) goto 20 end if end if end do l=lorbl(ilo,is) ! find the band energy starting from default lorbe(io,ilo,ias)=lorbe0(io,ilo,is) call findband(solsc,l,nr,rlmt(:,1,is),vr,epsband,demaxbnd, & lorbe(io,ilo,ias),fnd) if (.not.fnd) nnf=nnf+1 else ! set linearisation energy automatically if (autolinengy) lorbe(io,ilo,ias)=efermi+dlefe end if 20 continue end do end do done(ia)=.true. ! copy to equivalent atoms do ja=1,natoms(is) if ((.not.done(ja)).and.(eqatoms(ia,ja,is))) then jas=idxas(ja,is) do l=0,lmaxapw do io=1,apword(l,is) apwe(io,l,jas)=apwe(io,l,ias) end do end do do ilo=1,nlorb(is) do io=1,lorbord(ilo,is) lorbe(io,ilo,jas)=lorbe(io,ilo,ias) end do end do done(ja)=.true. end if end do ! end loops over atoms and species end do end do if (mp_mpi.and.(nnf.gt.0)) then write(*,*) write(*,'("Warning(linengy): could not find ",I3," linearisation energies & &in s.c. loop ",I5)') nnf,iscl end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writestress.f900000644000000000000000000000013214061636517015642 xustar0030 mtime=1623670095.015102399 30 atime=1623670093.748103575 30 ctime=1623670095.015102399 elk-7.2.42/src/writestress.f900000644002504400250440000000245214061636517017702 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writestress use modmain use modmpi use modtest implicit none ! local variables integer i,j,k ! initialise universal variables call init0 ! start from the atomic densities trdstate=.false. ! generate the stress tensors call genstress ! write the stress tensors to file if (mp_mpi) then open(50,file='STRESS.OUT',form='FORMATTED',action='WRITE') write(50,*) write(50,'("Lattice vector matrix, A, changed by")') write(50,*) write(50,'(" A --> A + e_i dt,")') write(50,*) write(50,'("where dt is an infinitesimal scalar and e_i is a strain tensor")') write(50,*) write(50,'("Stress is given by the derivative of the total energy dE/dt")') do k=1,nstrain write(50,*) write(50,'("Strain tensor : ",I1)') k do j=1,3 write(50,'(3G18.10)') (strain(i,j,k),i=1,3) end do write(50,'("Stress : ",G18.10)') stress(k) end do close(50) write(*,*) write(*,'("Info(writestress):")') write(*,'(" Stress tensor components written to STRESS.OUT")') end if ! write test file if required call writetest(440,'Stress tensor components',nv=nstrain,tol=1.d-2,rva=stress) end subroutine elk-7.2.42/src/PaxHeaders.21776/eulerrot.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.016102398 30 atime=1623670093.749103574 30 ctime=1623670095.016102398 elk-7.2.42/src/eulerrot.f900000644002504400250440000000215714061636517017147 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: eulerrot ! !INTERFACE: pure subroutine eulerrot(ang,rot) ! !INPUT/OUTPUT PARAMETERS: ! ang : Euler angles (alpha, beta, gamma) (in,real(3)) ! rot : rotation matrix (out,real(3,3)) ! !DESCRIPTION: ! Given a set of Euler angles, $(\alpha,\beta,\gamma)$, this routine ! determines the corresponding $3\times 3$ rotation matrix. The so-called ! `y-convention' is taken for the Euler angles. See the routine {\tt roteuler} ! for details. ! ! !REVISION HISTORY: ! Created January 2014 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: ang(3) real(8), intent(out) :: rot(3,3) ! local variables real(8) sa,sb,sg,ca,cb,cg sa=sin(ang(1)); ca=cos(ang(1)) sb=sin(ang(2)); cb=cos(ang(2)) sg=sin(ang(3)); cg=cos(ang(3)) rot(1,1)=cg*cb*ca-sg*sa rot(2,1)=-sg*cb*ca-cg*sa rot(3,1)=sb*ca rot(1,2)=cg*cb*sa+sg*ca rot(2,2)=-sg*cb*sa+cg*ca rot(3,2)=sb*sa rot(1,3)=-cg*sb rot(2,3)=sg*sb rot(3,3)=cb end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zftwfir.f900000644000000000000000000000013214061636517014737 xustar0030 mtime=1623670095.018102396 30 atime=1623670093.751103572 30 ctime=1623670095.018102396 elk-7.2.42/src/zftwfir.f900000644002504400250440000000173614061636517017003 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zftwfir(ngp,igpig,wfir) use modmain use modomp implicit none ! arguments integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) complex(8), intent(inout) :: wfir(ngtc,nspinor,nstsv) ! local variables integer ist,ispn,jspn integer igp,ifg,nthd real(8) t0 ! automatic arrays complex(8) z(ngkmax) t0=1.d0/sqrt(omega) call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(z,ispn,jspn,igp,ifg) & !$OMP NUM_THREADS(nthd) do ist=1,nstsv do ispn=1,nspinor jspn=jspnfv(ispn) call zcopy(ngp(jspn),wfir(:,ispn,ist),1,z,1) wfir(:,ispn,ist)=0.d0 do igp=1,ngp(jspn) ifg=igfc(igpig(igp,jspn)) wfir(ifg,ispn,ist)=t0*z(igp) end do call zfftifc(3,ngdgc,1,wfir(:,ispn,ist)) end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/rschrodint.f900000644000000000000000000000013214061636517015423 xustar0030 mtime=1623670095.019102395 30 atime=1623670093.752103571 30 ctime=1623670095.019102395 elk-7.2.42/src/rschrodint.f900000644002504400250440000001051214061636517017457 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2015 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rschrodint ! !INTERFACE: pure subroutine rschrodint(sol,l,e,nr,r,vr,nn,p0,p1,q0,q1) ! !INPUT/OUTPUT PARAMETERS: ! sol : speed of light in atomic units (in,real) ! l : angular momentum quantum number (in,integer) ! e : energy (in,real) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! vr : potential on radial mesh (in,real(nr)) ! nn : number of nodes (out,integer) ! p0 : m th energy derivative of P (out,real(nr)) ! p1 : radial derivative of p0 (out,real(nr)) ! q0 : m th energy derivative of Q (out,real(nr)) ! q1 : radial derivative of q0 (out,real(nr)) ! !DESCRIPTION: ! Integrates the scalar relativistic radial Schr\"{o}dinger equation from ! $r=0$ outwards. This involves using the predictor-corrector method to solve ! the coupled first-order equations (in atomic units) ! \begin{align*} ! \frac{d}{dr}P_l&=2MQ_l+\frac{1}{r}P_l\\ ! \frac{d}{dr}Q_l&=-\frac{1}{r}Q_l+\left[\frac{l(l+1)}{2Mr^2} ! +(V-E)\right]P_l, ! \end{align*} ! where $V$ is the external potential, $E$ is the eigen energy and ! $M=1+(E-V)/2c^2$. Following the convention of Koelling and Harmon, ! {\it J. Phys. C: Solid State Phys.} {\bf 10}, 3107 (1977), the functions ! $P_l$ and $Q_l$ are defined by ! \begin{align*} ! P_l&=rg_l\\ ! Q_l&=\frac{r}{2M}\frac{dg_l}{dr}, ! \end{align*} ! where $g_l$ is the major component of the Dirac equation (see the routine ! {\tt rdiracint}). ! ! !REVISION HISTORY: ! Created October 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: sol integer, intent(in) :: l real(8), intent(in) :: e integer, intent(in) :: nr real(8), intent(in) :: r(nr),vr(nr) integer, intent(out) :: nn real(8), intent(out) :: p0(nr),p1(nr) real(8), intent(out) :: q0(nr),q1(nr) ! local variables integer ir,ir0 real(8) ri,t1,t2,t3,t4 t1=1.d0/sol**2 t2=dble(l*(l+1)) ! determine the r -> 0 boundary values of P and Q ri=1.d0/r(1) t3=2.d0+t1*(e-vr(1)) t4=t2/(t3*r(1)**2)+vr(1)-e q0(1)=1.d0 q1(1)=0.d0 p0(1)=(q1(1)+q0(1)*ri)/t4 p1(1)=t3*q0(1)+p0(1)*ri ! extrapolate to the first four points p1(2:4)=p1(1) q1(2:4)=q1(1) nn=0 do ir=2,nr ri=1.d0/r(ir) t3=2.d0+t1*(e-vr(ir)) t4=t2/(t3*r(ir)**2)+vr(ir)-e ir0=ir-3 if (ir0.lt.1) ir0=1 p1(ir)=poly3(r(ir0),p1(ir0),r(ir)) q1(ir)=poly3(r(ir0),q1(ir0),r(ir)) ! integrate to find wavefunction p0(ir)=poly4i(r(ir0),p1(ir0),r(ir))+p0(ir0) q0(ir)=poly4i(r(ir0),q1(ir0),r(ir))+q0(ir0) ! compute the derivatives p1(ir)=t3*q0(ir)+p0(ir)*ri q1(ir)=t4*p0(ir)-q0(ir)*ri ! integrate for correction p0(ir)=poly4i(r(ir0),p1(ir0),r(ir))+p0(ir0) q0(ir)=poly4i(r(ir0),q1(ir0),r(ir))+q0(ir0) ! compute the derivatives again p1(ir)=t3*q0(ir)+p0(ir)*ri q1(ir)=t4*p0(ir)-q0(ir)*ri ! check for overflow if ((abs(p0(ir)).gt.1.d100).or.(abs(p1(ir)).gt.1.d100).or. & (abs(q0(ir)).gt.1.d100).or.(abs(q1(ir)).gt.1.d100)) then p0(ir:nr)=p0(ir) p1(ir:nr)=p1(ir) q0(ir:nr)=q0(ir) q1(ir:nr)=q1(ir) return end if ! check for node if (p0(ir-1)*p0(ir).lt.0.d0) nn=nn+1 end do return contains pure real(8) function poly3(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(3),ya(3),x ! local variables real(8) x0,x1,x2,y0,y1,y2 real(8) c1,c2,t0,t1,t2 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0 t0=1.d0/(x1*x2*(x2-x1)) t1=x1*y2; t2=x2*y1 c1=x2*t2-x1*t1 c2=t1-t2 t1=x-x0 ! evaluate the polynomial poly3=y0+t0*t1*(c1+c2*t1) end function pure real(8) function poly4i(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(4),ya(4),x ! local variables real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) c1,c2,c3,t0,t1,t2,t3,t4,t5,t6 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0; x3=xa(4)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0; y3=ya(4)-y0 t4=x1-x2; t5=x1-x3; t6=x2-x3 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 c3=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 c2=t1*(t5-t4)+t2*(t6-t5)+t3*(t4-t6) c1=t1*(x2*t4-x1*t5)+t2*(x3*t5-x2*t6)+t3*(x1*t6-x3*t4) t1=x-x0 ! integrate the polynomial poly4i=t1*(y0+t0*t1*(0.5d0*c1+t1*(0.3333333333333333333d0*c2+0.25d0*c3*t1))) end function end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writegclq.f900000644000000000000000000000013214061636517015245 xustar0030 mtime=1623670095.021102393 30 atime=1623670093.754103569 30 ctime=1623670095.021102393 elk-7.2.42/src/writegclq.f900000644002504400250440000000201314061636517017276 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writegclq ! !INTERFACE: subroutine writegclq ! !USES: use modmain ! !DESCRIPTION: ! Outputs the volume-averaged integral of $4\pi/q^2$ in the small ! parallelepiped around each discrete $q$-point to the file {\tt GCLQ.OUT}. ! These represent the regularised Coulomb Green's function in reciprocal ! space for small $q$. See the routine gengclq. ! ! !REVISION HISTORY: ! Created June 2005 (JKD) !EOP !BOC implicit none ! local variables integer iq real(8) t1 open(50,file='GCLQ'//trim(filext),form='FORMATTED',action='WRITE') write(50,'(I6," : nqpt; q-point, vql, gclq, 4π/q² below")') nqpt do iq=1,nqpt t1=vqc(1,iq)**2+vqc(2,iq)**2+vqc(3,iq)**2 if (t1.gt.1.d-12) then t1=fourpi/t1 else t1=0.d0 end if write(50,'(I6,5G18.10)') iq,vql(:,iq),gclq(iq),t1 end do close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writegeom.f900000644000000000000000000000013214061636517015246 xustar0030 mtime=1623670095.022102393 30 atime=1623670093.756103568 30 ctime=1623670095.022102393 elk-7.2.42/src/writegeom.f900000644002504400250440000000346214061636517017310 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writegeom ! !INTERFACE: subroutine writegeom(fnum) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! fnum : file number for writing output (in,integer) ! !DESCRIPTION: ! Outputs the lattice vectors and atomic positions to file, in a format ! which may be then used directly in {\tt elk.in}. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,ia,i real(8) v1(3),v2(3) write(fnum,*) write(fnum,'("scale")') write(fnum,'(" 1.0")') write(fnum,*) write(fnum,'("scale1")') write(fnum,'(" 1.0")') write(fnum,*) write(fnum,'("scale2")') write(fnum,'(" 1.0")') write(fnum,*) write(fnum,'("scale3")') write(fnum,'(" 1.0")') write(fnum,*) write(fnum,'("avec")') write(fnum,'(3G18.10)') avec(:,1) write(fnum,'(3G18.10)') avec(:,2) write(fnum,'(3G18.10)') avec(:,3) if (molecule) then write(fnum,*) write(fnum,'("molecule")') write(fnum,'(" ",L1)') molecule end if write(fnum,*) write(fnum,'("atoms")') write(fnum,'(I4,T40," : nspecies")') nspecies do is=1,nspecies write(fnum,'("''",A,"''",T40," : spfname")') trim(spfname(is)) write(fnum,'(I4,T40," : natoms; atpos, bfcmt below")') natoms(is) do ia=1,natoms(is) if (molecule) then ! map lattice coordinates to [-0.5,0.5) and write as Cartesian coordinates v1(:)=atposl(:,ia,is) do i=1,3 if (v1(i).gt.0.5d0) v1(i)=v1(i)-1.d0 end do call r3mv(avec,v1,v2) else ! otherwise write lattice coordinates v2(:)=atposl(:,ia,is) end if write(fnum,'(3F14.8," ",3F12.8)') v2(:),bfcmt(:,ia,is) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writemom.f900000644000000000000000000000013214061636517015107 xustar0030 mtime=1623670095.023102392 30 atime=1623670093.757103567 30 ctime=1623670095.023102392 elk-7.2.42/src/writemom.f900000644002504400250440000000152614061636517017150 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine writemom(fnum) use modmain implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,ia,ias write(fnum,*) write(fnum,'("Moments :")') write(fnum,'(" interstitial",T30,": ",3G18.10)') momir(1:ndmag) write(fnum,'(" muffin-tins")') do is=1,nspecies write(fnum,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(fnum,'(" atom ",I4,T30,": ",3G18.10)') ia,mommt(1:ndmag,ias) end do end do write(fnum,'(" total in muffin-tins",T30,": ",3G18.10)') mommttot(1:ndmag) write(fnum,'(" total moment",T30,": ",3G18.10)') momtot(1:ndmag) flush(fnum) end subroutine elk-7.2.42/src/PaxHeaders.21776/gendmat.f900000644000000000000000000000013014061636517014661 xustar0029 mtime=1623670095.02510239 30 atime=1623670093.759103565 29 ctime=1623670095.02510239 elk-7.2.42/src/gendmat.f900000644002504400250440000000435014061636517016722 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendmat(tspndg,tlmdg,lmin,lmax,ld,dmat) use modmain use modmpi use modomp implicit none ! arguments logical, intent(in) :: tspndg,tlmdg integer, intent(in) :: lmin,lmax,ld complex(8), intent(out) :: dmat(ld,nspinor,ld,nspinor,natmtot) ! local variables integer ik,ispn,ist integer ias,n,nthd real(8) wo ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:,:),evecsv(:,:) complex(8), allocatable :: dmatk(:,:,:,:,:) ! zero the density matrix dmat(:,:,:,:,:)=0.d0 ! begin parallel loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(apwalm,evecfv,evecsv,dmatk) & !$OMP PRIVATE(ispn,ias,ist,wo) & !$OMP NUM_THREADS(nthd) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) allocate(dmatk(ld,nspinor,ld,nspinor,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! begin loop over atoms and species do ias=1,natmtot call gendmatk(tspndg,tlmdg,lmin,lmax,ias,ngk(:,ik),apwalm,evecfv,evecsv, & ld,dmatk) do ist=1,nstsv wo=occsv(ist,ik) if (abs(wo).lt.epsocc) cycle wo=wo*wkpt(ik) !$OMP CRITICAL(gendmat_) dmat(:,:,:,:,ias)=dmat(:,:,:,:,ias)+wo*dmatk(:,:,:,:,ist) !$OMP END CRITICAL(gendmat_) end do end do end do !$OMP END DO deallocate(apwalm,evecfv,evecsv,dmatk) !$OMP END PARALLEL call freethd(nthd) ! add density matrices from each process and redistribute if (np_mpi.gt.1) then n=((ld*nspinor)**2)*natmtot call mpi_allreduce(mpi_in_place,dmat,n,mpi_double_complex,mpi_sum,mpicom, & ierror) end if ! symmetrise the density matrix call symdmat(lmax,ld,dmat) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/curlrvf.f900000644000000000000000000000013214061636517014727 xustar0030 mtime=1623670095.027102388 30 atime=1623670093.761103563 30 ctime=1623670095.027102388 elk-7.2.42/src/curlrvf.f900000644002504400250440000000265714061636517016776 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine curlrvf(rvfmt,rvfir,curlmt,curlir) use modmain use modomp implicit none ! arguments real(8), intent(in) :: rvfmt(npmtmax,natmtot,3),rvfir(ngtot,3) real(8), intent(out) :: curlmt(npmtmax,natmtot,3),curlir(ngtot,3) ! local variables integer is,ias,np,i,nthd ! allocatable arrays real(8), allocatable :: grfmt(:,:,:,:),grfir(:,:,:) allocate(grfmt(npmtmax,natmtot,3,3),grfir(ngtot,3,3)) ! compute the gradients call holdthd(3,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do i=1,3 call gradrf(rvfmt(:,:,i),rvfir(:,i),grfmt(:,:,:,i),grfir(:,:,i)) end do !$OMP END PARALLEL DO call freethd(nthd) ! determine the muffin-tin and interstitial curl call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP PRIVATE(ias,is,np) & !$OMP NUM_THREADS(nthd) !$OMP SECTION do ias=1,natmtot is=idxis(ias) np=npmt(is) curlmt(1:np,ias,1)=grfmt(1:np,ias,2,3)-grfmt(1:np,ias,3,2) curlmt(1:np,ias,2)=grfmt(1:np,ias,3,1)-grfmt(1:np,ias,1,3) curlmt(1:np,ias,3)=grfmt(1:np,ias,1,2)-grfmt(1:np,ias,2,1) end do !$OMP SECTION curlir(:,1)=grfir(:,2,3)-grfir(:,3,2) curlir(:,2)=grfir(:,3,1)-grfir(:,1,3) curlir(:,3)=grfir(:,1,2)-grfir(:,2,1) !$OMP END PARALLEL SECTIONS call freethd(nthd) deallocate(grfmt,grfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/genzvclmt.f900000644000000000000000000000013214061636517015255 xustar0030 mtime=1623670095.028102387 30 atime=1623670093.762103562 30 ctime=1623670095.028102387 elk-7.2.42/src/genzvclmt.f900000644002504400250440000000164214061636517017315 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genzvclmt(nr,nri,ld1,rl,wpr,ld2,zrhomt,zvclmt) use modmain use modomp implicit none ! arguments integer, intent(in) :: nr(nspecies),nri(nspecies) integer, intent(in) :: ld1 real(8), intent(in) :: rl(ld1,-lmaxo-1:lmaxo+2,nspecies) real(8), intent(in) :: wpr(4,ld1,nspecies) integer, intent(in) :: ld2 complex(8), intent(in) :: zrhomt(ld2,natmtot) complex(8), intent(out) :: zvclmt(ld2,natmtot) ! local variables integer is,ias,nthd call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call zpotclmt(nr(is),nri(is),ld1,rl(:,:,is),wpr(:,:,is),zrhomt(:,ias), & zvclmt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/genjtot.f900000644000000000000000000000013114061636517014715 xustar0030 mtime=1623670095.030102385 29 atime=1623670093.76410356 30 ctime=1623670095.030102385 elk-7.2.42/src/genjtot.f900000644002504400250440000000077014061636517016757 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genjtot use modmain implicit none ! local variables integer i ! external functions real(8), external :: rfint if (.not.tjr) return ! compute the total current in the unit cell do i=1,3 jtot(i)=rfint(jrmt(:,:,i),jrir(:,i)) end do ! total current magnitude jtotm=sqrt(jtot(1)**2+jtot(2)**2+jtot(3)**2) end subroutine elk-7.2.42/src/PaxHeaders.21776/symvec.f900000644000000000000000000000013214061636517014552 xustar0030 mtime=1623670095.031102384 30 atime=1623670093.766103558 30 ctime=1623670095.031102384 elk-7.2.42/src/symvec.f900000644002504400250440000000104214061636517016604 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine symvec(vc) use modmain implicit none ! arguments real(8), intent(inout) :: vc(3) ! local variables integer isym,lspl real(8) vs(3),v(3),t1 ! make symmetric average vs(:)=0.d0 do isym=1,nsymcrys lspl=lsplsymc(isym) call r3mv(symlatc(:,:,lspl),vc,v) vs(:)=vs(:)+v(:) end do ! normalise t1=1.d0/dble(nsymcrys) vc(:)=t1*vs(:) end subroutine elk-7.2.42/src/PaxHeaders.21776/checkwrite.f900000644000000000000000000000013214061636517015374 xustar0030 mtime=1623670095.033102382 30 atime=1623670093.767103558 30 ctime=1623670095.033102382 elk-7.2.42/src/checkwrite.f900000644002504400250440000000075214061636517017435 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine checkwrite(twrite) use modmain implicit none ! arguments logical, intent(out) :: twrite ! check for WRITE file inquire(file='WRITE',exist=twrite) if (twrite) then write(*,*) write(*,'("Info(checkwrite): WRITE file exists")') open(50,file='WRITE') close(50,status='DELETE') end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genjprk.f900000644000000000000000000000013214061636517014704 xustar0030 mtime=1623670095.034102381 30 atime=1623670093.769103556 30 ctime=1623670095.034102381 elk-7.2.42/src/genjprk.f900000644002504400250440000000717314061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genjprk(ik,lock) use modmain implicit none ! arguments integer, intent(in) :: ik integer(8), intent(in) :: lock(natmtot) ! local variables integer ispn,jspn,nst,ist,jst integer is,ia,ias,nrc,nrci,npc integer igk,ifg,i real(8) wo complex(8) z1 ! automatic arrays integer idx(nstsv) real(8) rfmt(npcmtmax) complex(8) gzfmt(npcmtmax,3),zfmt1(npcmtmax),zfmt2(npcmtmax) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgp(:,:,:) complex(8), allocatable :: zfft1(:),zfft2(:) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! count and index the occupied states nst=0 do ist=1,nstsv if (abs(occsv(ist,ik)).lt.epsocc) cycle nst=nst+1 idx(nst)=ist end do ! calculate the second-variational wavefunctions for occupied states allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfgp(ngkmax,nspinor,nst)) call genwfsv(.true.,.true.,nst,idx,ngdgc,igfc,ngk(:,ik),igkig(:,:,ik),apwalm, & evecfv,evecsv,wfmt,ngkmax,wfgp) deallocate(apwalm,evecfv,evecsv) !-------------------------------------------------! ! muffin-tin paramagnetic current density ! !-------------------------------------------------! do ist=1,nst jst=idx(ist) wo=wkpt(ik)*occsv(jst,ik) do ispn=1,nspinor do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) ! compute the gradient of the wavefunction call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is), & wfmt(:,ias,ispn,ist),npcmtmax,gzfmt) ! convert wavefunction to spherical coordinates and conjugate call zbsht(nrc,nrci,wfmt(:,ias,ispn,ist),zfmt1) zfmt1(1:npc)=conjg(zfmt1(1:npc)) do i=1,3 ! convert wavefunction gradient to spherical coordinates call zbsht(nrc,nrci,gzfmt(:,i),zfmt2) ! compute the partial current density rfmt(1:npc)=aimag(zfmt1(1:npc)*zfmt2(1:npc)) call omp_set_lock(lock(ias)) call daxpy(npc,wo,rfmt,1,jrmt(:,ias,i),1) call omp_unset_lock(lock(ias)) end do end do end do end do end do deallocate(wfmt) !---------------------------------------------------! ! interstitial paramagnetic current density ! !---------------------------------------------------! allocate(zfft1(ngtc),zfft2(ngtc)) do ist=1,nst jst=idx(ist) wo=wkpt(ik)*occsv(jst,ik)/omega do ispn=1,nspinor jspn=jspnfv(ispn) ! Fourier transform to real-space and conjugate zfft1(:)=0.d0 do igk=1,ngk(jspn,ik) ifg=igfc(igkig(igk,jspn,ik)) zfft1(ifg)=wfgp(igk,ispn,ist) end do call zfftifc(3,ngdgc,1,zfft1) zfft1(:)=conjg(zfft1(:)) do i=1,3 ! compute the gradient of the wavefunction zfft2(:)=0.d0 do igk=1,ngk(jspn,ik) ifg=igfc(igkig(igk,jspn,ik)) z1=wfgp(igk,ispn,ist) zfft2(ifg)=vgkc(i,igk,jspn,ik)*cmplx(-aimag(z1),dble(z1),8) end do call zfftifc(3,ngdgc,1,zfft2) !$OMP CRITICAL(currentk_) jrir(1:ngtc,i)=jrir(1:ngtc,i)+wo*aimag(zfft1(1:ngtc)*zfft2(1:ngtc)) !$OMP END CRITICAL(currentk_) end do end do end do deallocate(wfgp,zfft1,zfft2) end subroutine elk-7.2.42/src/PaxHeaders.21776/proj2d.f900000644000000000000000000000013014061636517014442 xustar0029 mtime=1623670095.03610238 30 atime=1623670093.771103554 29 ctime=1623670095.03610238 elk-7.2.42/src/proj2d.f900000644002504400250440000000254514061636517016507 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine proj2d(np,fp) use modmain implicit none ! arguments integer, intent(in) :: np real(8), intent(inout) :: fp(np,3) ! local variables integer i real(8) vl1(3),vl2(3),t1,t2,t3 real(8) vc1(3),vc2(3),vc3(3),vc4(3) ! determine the 2D plotting plane vectors in Cartesian coordinates vl1(:)=vclp2d(:,1)-vclp2d(:,0) vl2(:)=vclp2d(:,2)-vclp2d(:,0) call r3mv(avec,vl1,vc1) call r3mv(avec,vl2,vc2) ! the z axis is orthogonal to the plotting plane vectors call r3cross(vc1,vc2,vc3) t1=sqrt(vc1(1)**2+vc1(2)**2+vc1(3)**2) t2=sqrt(vc2(1)**2+vc2(2)**2+vc2(3)**2) t3=sqrt(vc3(1)**2+vc3(2)**2+vc3(3)**2) if ((t1.lt.epslat).or.(t2.lt.epslat).or.(t3.lt.epslat)) then write(*,*) write(*,'("Error(proj2d): degenerate 2D plotting directions")') write(*,*) stop end if ! normalise the x and z axes vc1(:)=vc1(:)/t1 vc3(:)=vc3(:)/t3 ! create new y axis orthogonal to x and z axes call r3cross(vc3,vc1,vc2) t1=sqrt(vc2(1)**2+vc2(2)**2+vc2(3)**2) vc2(:)=vc2(:)/t1 ! project the vector function onto the orthogonalised plotting plane axes do i=1,np vc4(:)=fp(i,:) fp(i,1)=dot_product(vc4(:),vc1(:)) fp(i,2)=dot_product(vc4(:),vc2(:)) fp(i,3)=dot_product(vc4(:),vc3(:)) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/genidxbse.f900000644000000000000000000000013214061636517015214 xustar0030 mtime=1623670095.037102379 30 atime=1623670093.772103553 30 ctime=1623670095.037102379 elk-7.2.42/src/genidxbse.f900000644002504400250440000000756714061636517017270 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genidxbse use modmain implicit none integer ik,jk,a,ntop integer ist,jst,i,j,k ! automatic arrays integer idx(nstsv) ! check if the BSE extra valence or conduction states are in range do i=1,nvxbse ist=istxbse(i) if ((ist.lt.1).or.(ist.gt.nstsv)) then write(*,*) write(*,'("Error(genidxbse): extra valence state out of range : ",I8)') ist write(*,*) stop end if end do do j=1,ncxbse jst=jstxbse(j) if ((jst.lt.1).or.(jst.gt.nstsv)) then write(*,*) write(*,'("Error(genidxbse): extra conduction state out of range : ",I8)') & jst write(*,*) stop end if end do ! number of valence states for transitions nvbse=nvbse0+nvxbse ! number of conduction states for transitions ncbse=ncbse0+ncxbse if ((nvbse.le.0).or.(ncbse.le.0)) then write(*,*) write(*,'("Error(genidxbse): invalid number of valence or conduction & &transition states : ",2I8)') nvbse,ncbse write(*,*) stop end if ! total number of transitions nvcbse=nvbse*ncbse ! block size in BSE matrix nbbse=nvcbse*nkptnr ! BSE matrix size if (bsefull) then nmbse=2*nbbse else nmbse=nbbse end if ! allocate global BSE index arrays if (allocated(istbse)) deallocate(istbse) allocate(istbse(nvbse,nkptnr)) if (allocated(jstbse)) deallocate(jstbse) allocate(jstbse(ncbse,nkptnr)) if (allocated(ijkbse)) deallocate(ijkbse) allocate(ijkbse(nvbse,ncbse,nkptnr)) a=0 ! loop over non-reduced k-points do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! index for sorting the eigenvalues into ascending order call sortidx(nstsv,evalsv(:,jk),idx) ! find the topmost occupied band ntop=nstsv do ist=nstsv,1,-1 if (evalsv(idx(ist),jk).lt.efermi) then ntop=ist exit end if end do if ((ntop-nvbse0+1).lt.1) then write(*,*) write(*,'("Error(genidxbse): not enough valence states, reduce nvbse")') write(*,*) stop end if if ((ntop+ncbse0).gt.nstsv) then write(*,*) write(*,'("Error(genidxbse): not enough conduction states")') write(*,'(" reduce ncbse or increase nempty")') write(*,*) stop end if ! index from BSE valence states to second-variational state numbers do i=1,nvbse0 istbse(i,ik)=idx(ntop-nvbse0+i) end do ! index from BSE conduction states to second-variational state numbers do j=1,ncbse0 jstbse(j,ik)=idx(ntop+j) end do ! add extra states to the list do i=1,nvxbse ist=istxbse(i) if (evalsv(ist,jk).gt.efermi) then write(*,*) write(*,'("Error(genidxbse): extra valence state above Fermi energy : ",& &I6)') ist write(*,'(" for k-point ",I8)') jk write(*,*) stop end if do k=1,nvbse0+i-1 if (ist.eq.istbse(k,ik)) then write(*,*) write(*,'("Error(genidxbse): redundant extra valence state : ",I6)') ist write(*,'(" for k-point ",I8)') jk write(*,*) stop end if end do istbse(nvbse0+i,ik)=ist end do do j=1,ncxbse jst=jstxbse(j) if (evalsv(jst,jk).lt.efermi) then write(*,*) write(*,'("Error(genidxbse): extra conduction state below Fermi & &energy : ",I6)') jst write(*,'(" for k-point ",I8)') jk write(*,*) stop end if do k=1,ncbse0+j-1 if (jst.eq.jstbse(k,ik)) then write(*,*) write(*,'("Error(genidxbse): redundant extra conduction state : ",& &I6)') jst write(*,'(" for k-point ",I8)') jk write(*,*) stop end if end do jstbse(ncbse0+j,ik)=jst end do ! index from BSE valence-conduction pair and k-point to location in BSE matrix do i=1,nvbse do j=1,ncbse a=a+1 ijkbse(i,j,ik)=a end do end do ! end loop over non-reduced k-points end do end subroutine elk-7.2.42/src/PaxHeaders.21776/symrvfir.f900000644000000000000000000000013214061636517015125 xustar0030 mtime=1623670095.039102377 30 atime=1623670093.774103551 30 ctime=1623670095.039102377 elk-7.2.42/src/symrvfir.f900000644002504400250440000001020614061636517017161 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: symrvfir subroutine symrvfir(tspin,tnc,ngdg,ngt,ngv,igf,ld,rvfir) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! tspin : .true. if spin rotations should be used (in,logical) ! tnc : .true. if the vector field is non-collinear, otherwise it is ! collinear along the z-axis (in,logical) ! ngdg : G-vector grid sizes (in,integer(3)) ! ngt : total number of G-vectors (in,integer) ! ngv : number of G-vectors within cut-off (in,integer) ! igf : map from G-vector index to FFT array (in,integer(ngv)) ! ld : leading dimension (in,integer) ! rvfir : real interstitial vector function (inout,real(ld,*)) ! !DESCRIPTION: ! Symmetrises a real interstitial vector function. See routines {\tt symrvf} ! and {\tt symrfir} for details. ! ! !REVISION HISTORY: ! Created July 2007 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: tspin,tnc integer, intent(in) :: ngdg(3),ngt,ngv,igf(ngv) integer, intent(in) :: ld real(8), intent(inout) :: rvfir(ld,*) ! local variables logical tv0 integer nd,isym,lspl,ilspl,lspn integer sym(3,3),ig,ifg,jfg integer i1,i2,i3,j1,j2,j3,i real(8) sc(3,3),v1,v2,v3,t1 complex(8) x1,x2,x3,z1 ! allocatable arrays complex(8), allocatable :: zfft1(:,:),zfft2(:,:) ! dimension of the vector field if (tnc) then nd=3 else nd=1 end if allocate(zfft1(ngt,nd),zfft2(ngt,nd)) ! Fourier transform vector function to G-space do i=1,nd zfft1(1:ngt,i)=rvfir(1:ngt,i) call zfftifc(3,ngdg,-1,zfft1(:,i)) end do zfft2(:,:)=0.d0 do isym=1,nsymcrys ! zero translation vector flag tv0=tv0symc(isym) ! translation vector in Cartesian coordinates if (.not.tv0) then v1=vtcsymc(1,isym) v2=vtcsymc(2,isym) v3=vtcsymc(3,isym) end if ! index to spatial rotation lattice symmetry lspl=lsplsymc(isym) ! inverse rotation required for rotation of G-vectors ilspl=isymlat(lspl) sym(:,:)=symlat(:,:,ilspl) if (tspin) then ! global spin proper rotation in Cartesian coordinates lspn=lspnsymc(isym) sc(:,:)=symlatd(lspn)*symlatc(:,:,lspn) else ! set spin rotation equal to spatial rotation lspn=lspl sc(:,:)=symlatc(:,:,lspl) end if do ig=1,ngv ifg=igf(ig) ! multiply the transpose of the inverse symmetry matrix with the G-vector if (lspl.eq.1) then jfg=ifg else i1=ivg(1,ig); i2=ivg(2,ig); i3=ivg(3,ig) j1=sym(1,1)*i1+sym(2,1)*i2+sym(3,1)*i3 j2=sym(1,2)*i1+sym(2,2)*i2+sym(3,2)*i3 j3=sym(1,3)*i1+sym(2,3)*i2+sym(3,3)*i3 jfg=igf(ivgig(j1,j2,j3)) end if ! translation, spatial rotation and global spin rotation if (tv0) then ! zero translation vector if (lspn.eq.1) then ! global spin symmetry is the identity zfft2(jfg,:)=zfft2(jfg,:)+zfft1(ifg,:) else if (tnc) then ! non-collinear case x1=zfft1(ifg,1); x2=zfft1(ifg,2); x3=zfft1(ifg,3) zfft2(jfg,1)=zfft2(jfg,1)+sc(1,1)*x1+sc(1,2)*x2+sc(1,3)*x3 zfft2(jfg,2)=zfft2(jfg,2)+sc(2,1)*x1+sc(2,2)*x2+sc(2,3)*x3 zfft2(jfg,3)=zfft2(jfg,3)+sc(3,1)*x1+sc(3,2)*x2+sc(3,3)*x3 else ! collinear case zfft2(jfg,1)=zfft2(jfg,1)+sc(3,3)*zfft1(ifg,1) end if end if else ! complex phase factor for translation t1=-(vgc(1,ig)*v1+vgc(2,ig)*v2+vgc(3,ig)*v3) z1=cmplx(cos(t1),sin(t1),8) if (lspn.eq.1) then zfft2(jfg,:)=zfft2(jfg,:)+z1*zfft1(ifg,:) else if (tnc) then x1=zfft1(ifg,1); x2=zfft1(ifg,2); x3=zfft1(ifg,3) zfft2(jfg,1)=zfft2(jfg,1)+z1*(sc(1,1)*x1+sc(1,2)*x2+sc(1,3)*x3) zfft2(jfg,2)=zfft2(jfg,2)+z1*(sc(2,1)*x1+sc(2,2)*x2+sc(2,3)*x3) zfft2(jfg,3)=zfft2(jfg,3)+z1*(sc(3,1)*x1+sc(3,2)*x2+sc(3,3)*x3) else zfft2(jfg,1)=zfft2(jfg,1)+sc(3,3)*z1*zfft1(ifg,1) end if end if end if end do end do ! Fourier transform to real-space and normalise t1=1.d0/dble(nsymcrys) do i=1,nd call zfftifc(3,ngdg,1,zfft2(:,i)) rvfir(1:ngt,i)=t1*dble(zfft2(1:ngt,i)) end do deallocate(zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genjpr.f900000644000000000000000000000013214061636517014531 xustar0030 mtime=1623670095.040102376 30 atime=1623670093.776103549 30 ctime=1623670095.040102376 elk-7.2.42/src/genjpr.f900000644002504400250440000000442714061636517016575 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genjpr use modmain use modmpi use modomp implicit none ! local variables integer ik,is,ias integer nrc,nrci,npc integer n,i,nthd ! automatic arrays integer(8) lock(natmtot) real(8) rfmt(npcmtmax) ! set the current density to zero do i=1,3 do ias=1,natmtot is=idxis(ias) jrmt(1:npcmt(is),ias,i)=0.d0 end do end do jrir(1:ngtc,:)=0.d0 ! current density cannot be computed if wavefunctions do not exist if (iscl.le.0) return ! initialise the OpenMP locks do ias=1,natmtot call omp_init_lock(lock(ias)) end do call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call genjprk(ik,lock) end do !$OMP END PARALLEL DO call freethd(nthd) ! destroy the OpenMP locks do ias=1,natmtot call omp_destroy_lock(lock(ias)) end do ! convert muffin-tin current density to spherical harmonics call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(rfmt,is,nrc,nrci,npc,i) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do i=1,3 rfmt(1:npc)=jrmt(1:npc,ias,i) call rfsht(nrc,nrci,rfmt,jrmt(:,ias,i)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! symmetrise the current density call symrvf(.false.,.true.,nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npmtmax, & jrmt,ngtot,jrir) ! convert muffin-tin and interstitial current density from coarse to fine grids call holdthd(3,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP DO do i=1,3 call rfmtctof(jrmt(:,:,i)) end do !$OMP END DO NOWAIT !$OMP DO do i=1,3 call rfirctof(jrir(:,i),jrir(:,i)) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! add current densities from each process and redistribute if (np_mpi.gt.1) then n=npmtmax*natmtot*3 call mpi_allreduce(mpi_in_place,jrmt,n,mpi_double_precision,mpi_sum,mpicom, & ierror) n=ngtot*3 call mpi_allreduce(mpi_in_place,jrir,n,mpi_double_precision,mpi_sum,mpicom, & ierror) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnfvr.f900000644000000000000000000000013214061636517015100 xustar0030 mtime=1623670095.042102374 30 atime=1623670093.777103548 30 ctime=1623670095.042102374 elk-7.2.42/src/eveqnfvr.f900000644002504400250440000001677514061636517017155 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: eveqnfvr ! !INTERFACE: subroutine eveqnfvr(nmatp,ngp,vpc,h,o,evalfv,evecfv) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! nmatp : order of overlap and Hamiltonian matrices (in,integer) ! ngp : number of G+p-vectors (in,integer) ! vpc : p-vector in Cartesian coordinates (in,real(3)) ! h,o : Hamiltonian and overlap matrices in upper triangular form ! (in,complex(*)) ! evalfv : first-variational eigenvalues (out,real(nstfv)) ! evecfv : first-variational eigenvectors (out,complex(nmatmax,nstfv)) ! !DESCRIPTION: ! This routine solves the first-variational eigenvalue equation for the ! special case when inversion symmetry is present. In this case the ! Hamiltonian and overlap matrices can be made real by using appropriate ! linear combinations of the local-orbitals for atoms related by inversion ! symmetry. These are derived from the effect of parity and complex ! conjugation on the spherical harmonics: $P Y_{lm}=(-1)^l Y_{lm}$ and ! $(Y_{lm})^*=(-1)^mY_{l-m}$. ! ! !REVISION HISTORY: ! Created May 2011 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nmatp,ngp real(8), intent(in) :: vpc(3) complex(8), intent(in) :: h(*),o(*) real(8), intent(out) :: evalfv(nstfv) complex(8), intent(out) :: evecfv(nmatmax,nstfv) ! local variables integer is,ia,ja,jas integer ilo,i,j,k,l,m integer i1,i2,j1,j2 integer k1,k2,k3,k4 integer l1,l2,m1,m2 integer lwork,info integer nthd,nts real(8) v(3),vl,vu real(8) t1,t2,t3,t4 real(8) ts0,ts1 complex(8) h1,h2,o1,o2,z1 ! automatic arrays logical tr(nlotot),tp(nlotot) integer idx(nlotot),s(nlotot) integer iwork(5*nmatp),ifail(nmatp) real(8) w(nmatp) complex(8) zp(nlotot) ! allocatable arrays real(8), allocatable :: rh(:),ro(:),rv(:,:),work(:) call timesec(ts0) tp(:)=.false. i=0 do is=1,nspecies do ia=1,natoms(is) ! symmetry equivalent atom, mapped with inversion ja=ieqatom(ia,is,2) jas=idxas(ja,is) ! residual phase factor v(:)=atposc(:,ia,is)+atposc(:,ja,is) t1=0.5d0*(vpc(1)*v(1)+vpc(2)*v(2)+vpc(3)*v(3)) z1=cmplx(cos(t1),sin(t1),8) do ilo=1,nlorb(is) l=lorbl(ilo,is) do m=-l,l i=i+1 ! index to conjugate local-orbital in symmetry equivalent atom idx(i)=idxlo(l*(l+1)-m+1,ilo,jas) if (ia.ne.ja) then ! sign of parity and conjugation operators if (mod(l+m,2).eq.0) then s(i)=1 else s(i)=-1 end if if (ia.lt.ja) then ! if ia < ja use the real part of the sum of matrix elements tr(i)=.true. else if (ia.gt.ja) then ! if ia > ja use the imaginary part of the difference of matrix elements s(i)=-s(i) tr(i)=.false. end if else ! if ia = ja then use real function when l even and imaginary when l is odd if (mod(m,2).eq.0) then s(i)=1 else s(i)=-1 end if ! new function should be real if symmetric or imaginary if antisymmetric if (mod(l,2).eq.0) then ! l even if (m.ge.0) then tr(i)=.true. else s(i)=-s(i) tr(i)=.false. end if else ! l odd if (m.ge.0) then tr(i)=.false. else s(i)=-s(i) tr(i)=.true. end if end if end if ! phase factors if required if (abs(t1).gt.1.d-8) then zp(i)=z1 tp(i)=.true. end if end do end do end do end do !---------------------------------! ! real Hamiltonian matrix ! !---------------------------------! allocate(rh(nmatp**2)) ! do j=1,ngp k=(j-1)*nmatp+1 rh(k:k+j-1)=dble(h(k:k+j-1)) end do ! do m1=1,nlotot j1=ngp+m1 j2=ngp+idx(m1) do i=1,ngp k1=i+(j1-1)*nmatp k2=i+(j2-1)*nmatp h1=h(k1); h2=h(k2) if (tp(m1)) then h1=h1*zp(m1); h2=h2*zp(m1) end if if (tr(m1)) then rh(k1)=dble(h1)+s(m1)*dble(h2) else rh(k1)=aimag(h1)+s(m1)*aimag(h2) end if end do end do ! do m1=1,nlotot m2=idx(m1) do l1=1,m1 l2=idx(l1) k1=map(l1,m1); k2=map(l1,m2); k3=map(l2,m1); k4=map(l2,m2) if ((tr(l1).and.tr(m1)).or.((.not.tr(l1)).and.(.not.tr(m1)))) then rh(k1)=dble(h(k1))+s(m1)*dble(h(k2))+s(l1)*(dble(h(k3))+s(m1)*dble(h(k4))) else t2=aimag(h(k2)) if (l1.gt.m2) t2=-t2 t3=aimag(h(k3)) if (l2.gt.m1) t3=-t3 t4=aimag(h(k4)) if (l2.gt.m2) t4=-t4 rh(k1)=aimag(h(k1))+s(m1)*t2+s(l1)*(t3+s(m1)*t4) if (.not.tr(l1)) rh(k1)=-rh(k1) end if end do end do !-----------------------------! ! real overlap matrix ! !-----------------------------! allocate(ro(nmatp**2)) ! do j=1,ngp k=(j-1)*nmatp+1 ro(k:k+j-1)=dble(o(k:k+j-1)) end do ! do m1=1,nlotot j1=ngp+m1 j2=ngp+idx(m1) do i=1,ngp k1=i+(j1-1)*nmatp k2=i+(j2-1)*nmatp o1=o(k1); o2=o(k2) if (tp(m1)) then o1=o1*zp(m1); o2=o2*zp(m1) end if if (tr(m1)) then ro(k1)=dble(o1)+s(m1)*dble(o2) else ro(k1)=aimag(o1)+s(m1)*aimag(o2) end if end do end do ! do m1=1,nlotot m2=idx(m1) do l1=1,m1 l2=idx(l1) k1=map(l1,m1); k2=map(l1,m2); k3=map(l2,m1); k4=map(l2,m2) if ((tr(l1).and.tr(m1)).or.((.not.tr(l1)).and.(.not.tr(m1)))) then ro(k1)=dble(o(k1))+s(m1)*dble(o(k2))+s(l1)*(dble(o(k3))+s(m1)*dble(o(k4))) else t2=aimag(o(k2)) if (l1.gt.m2) t2=-t2 t3=aimag(o(k3)) if (l2.gt.m1) t3=-t3 t4=aimag(o(k4)) if (l2.gt.m2) t4=-t4 ro(k1)=aimag(o(k1))+s(m1)*t2+s(l1)*(t3+s(m1)*t4) if (.not.tr(l1)) ro(k1)=-ro(k1) end if end do end do ! solve the generalised eigenvalue problem for real symmetric matrices allocate(rv(nmatp,nstfv)) lwork=8*nmatp allocate(work(lwork)) ! enable MKL parallelism call holdthd(maxthdmkl,nthd) nts=mkl_set_num_threads_local(nthd) ! diagonalise the matrix call dsygvx(1,'V','I','U',nmatp,rh,nmatp,ro,nmatp,vl,vu,1,nstfv,evaltol,m,w, & rv,nmatp,work,lwork,iwork,ifail,info) nts=mkl_set_num_threads_local(0) call freethd(nthd) if (info.ne.0) then write(*,*) write(*,'("Error(eveqnfvr): diagonalisation failed")') write(*,'(" DSYGVX returned INFO = ",I8)') info if (info.gt.nmatp) then i=info-nmatp write(*,'(" The leading minor of the overlap matrix of order ",I8)') i write(*,'(" is not positive definite")') write(*,'(" Order of overlap matrix : ",I8)') nmatp end if write(*,*) stop end if evalfv(1:nstfv)=w(1:nstfv) ! reconstruct the complex eigenvectors do j=1,nstfv evecfv(1:ngp,j)=rv(1:ngp,j) evecfv(ngp+1:nmatp,j)=0.d0 do l1=1,nlotot i1=ngp+l1 i2=ngp+idx(l1) t1=rv(i1,j) if (tr(l1)) then evecfv(i1,j)=evecfv(i1,j)+t1 evecfv(i2,j)=evecfv(i2,j)+s(l1)*t1 else evecfv(i1,j)=evecfv(i1,j)-cmplx(0.d0,t1,8) evecfv(i2,j)=evecfv(i2,j)-cmplx(0.d0,s(l1)*t1,8) end if end do do l1=1,nlotot if (tp(l1)) then i1=ngp+l1 evecfv(i1,j)=evecfv(i1,j)*zp(l1) end if end do end do deallocate(rh,ro,rv,work) call timesec(ts1) !$OMP ATOMIC timefv=timefv+ts1-ts0 contains elemental integer function map(i,j) implicit none ! arguments integer, intent(in) :: i,j ! map from local-orbital indices to position in matrix if (i.le.j) then map=ngp+i+(ngp+j-1)*nmatp else map=ngp+j+(ngp+i-1)*nmatp end if end function end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gentau.f900000644000000000000000000000013214061636517014527 xustar0030 mtime=1623670095.043102373 30 atime=1623670093.779103546 30 ctime=1623670095.043102373 elk-7.2.42/src/gentau.f900000644002504400250440000000634014061636517016567 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gentau use modmain use modmpi use modomp implicit none ! local variables integer ik,ispn,is,ias integer np,npc,n,nthd ! allocatable arrays real(8), allocatable :: rfmt(:,:),rfir(:) real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) ! set the kinetic energy density to zero do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) taumt(1:npcmt(is),ias,ispn)=0.d0 end do end do tauir(1:ngtc,:)=0.d0 ! tau cannot be computed if wavefunctions do not exist if (iscl.le.0) return call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call gentauk(ik) end do !$OMP END PARALLEL DO call freethd(nthd) allocate(rfmt(npcmtmax,natmtot)) ! convert taumt to spherical harmonics do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) call dcopy(npcmt(is),taumt(:,ias,ispn),1,rfmt,1) call rfsht(nrcmt(is),nrcmti(is),rfmt,taumt(:,ias,ispn)) end do end do ! symmetrise tau if (spinpol) then ! spin-polarised case: convert to scalar-vector form allocate(rvfmt(npcmtmax,natmtot,ndmag)) allocate(rvfir(ngtc,ndmag),rfir(ngtc)) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) rfmt(1:npc,ias)=taumt(1:npc,ias,1)+taumt(1:npc,ias,2) rvfmt(1:npc,ias,1:ndmag-1)=0.d0 rvfmt(1:npc,ias,ndmag)=taumt(1:npc,ias,1)-taumt(1:npc,ias,2) end do rfir(1:ngtc)=tauir(1:ngtc,1)+tauir(1:ngtc,2) rvfir(1:ngtc,1:ndmag-1)=0.d0 rvfir(1:ngtc,ndmag)=tauir(1:ngtc,1)-tauir(1:ngtc,2) call symrf(nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npcmtmax,rfmt,rfir) call symrvf(.true.,ncmag,nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npcmtmax,& rvfmt,ngtc,rvfir) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) taumt(1:npc,ias,1)=0.5d0*(rfmt(1:npc,ias)+rvfmt(1:npc,ias,ndmag)) taumt(1:npc,ias,2)=0.5d0*(rfmt(1:npc,ias)-rvfmt(1:npc,ias,ndmag)) end do tauir(1:ngtc,1)=0.5d0*(rfir(1:ngtc)+rvfir(1:ngtc,ndmag)) tauir(1:ngtc,2)=0.5d0*(rfir(1:ngtc)-rvfir(1:ngtc,ndmag)) deallocate(rvfmt,rvfir,rfir) else ! spin-unpolarised case call symrf(nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npmtmax,taumt,tauir) end if ! convert muffin-tin tau from coarse to fine radial mesh do ispn=1,nspinor call rfmtctof(taumt(:,:,ispn)) end do ! convert interstitial tau from coarse to fine grid do ispn=1,nspinor call rfirctof(tauir(:,ispn),tauir(:,ispn)) end do ! add tau from each process and redistribute if (np_mpi.gt.1) then n=npmtmax*natmtot*nspinor call mpi_allreduce(mpi_in_place,taumt,n,mpi_double_precision,mpi_sum,mpicom, & ierror) n=ngtot*nspinor call mpi_allreduce(mpi_in_place,tauir,n,mpi_double_precision,mpi_sum,mpicom, & ierror) end if ! generate the core kinetic energy density call gentaucr do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) np=npmt(is) ! add the core contribution taumt(1:np,ias,ispn)=taumt(1:np,ias,ispn)+taucr(1:np,ias,ispn) ! zero tau on the inner part of the muffin-tin taumt(1:npmti(is),ias,ispn)=0.d0 end do end do deallocate(rfmt) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/genjlgpr.f900000644000000000000000000000013214061636517015054 xustar0030 mtime=1623670095.045102371 30 atime=1623670093.781103544 30 ctime=1623670095.045102371 elk-7.2.42/src/genjlgpr.f900000644002504400250440000000211414061636517017107 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genjlgpr(ngp,gpc,jlgpr) use modmain use modomp implicit none ! arguments integer, intent(in) :: ngp real(8), intent(in) :: gpc(ngp) real(8), intent(out) :: jlgpr(njcmax,nspecies,ngp) ! local variables integer ig,is,n,i,nthd integer nrc,nrci,irc real(8) t1,t2 ! generate spherical Bessel functions on the coarse radial mesh over all species call holdthd(ngp,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(t1,t2,is,nrc) & !$OMP PRIVATE(nrci,n,i,irc) & !$OMP NUM_THREADS(nthd) do ig=1,ngp t1=gpc(ig) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) n=lmaxi+1 i=1 do irc=1,nrci t2=t1*rcmt(irc,is) call sbessel(lmaxi,t2,jlgpr(i,is,ig)) i=i+n end do n=lmaxo+1 do irc=nrci+1,nrc t2=t1*rcmt(irc,is) call sbessel(lmaxo,t2,jlgpr(i,is,ig)) i=i+n end do end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/writestrain.f900000644000000000000000000000013014061636517015615 xustar0029 mtime=1623670095.04610237 30 atime=1623670093.782103544 29 ctime=1623670095.04610237 elk-7.2.42/src/writestrain.f900000644002504400250440000000142314061636517017654 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writestrain use modmain implicit none ! local variables integer i,j,k ! initialise universal variables call init0 ! generate the strain tensors call genstrain ! write the strain tensors to file open(50,file='STRAIN.OUT',form='FORMATTED',action='WRITE') do k=1,nstrain write(50,*) write(50,'("Strain tensor : ",I1)') k do j=1,3 write(50,'(3G18.10)') (strain(i,j,k),i=1,3) end do end do close(50) write(*,*) write(*,'("Info(writestrain)")') write(*,'(" Strain tensors written to STRAIN.OUT")') write(*,'(" (the first strain tensor is isotropic expansion)")') end subroutine elk-7.2.42/src/PaxHeaders.21776/writefermi.f900000644000000000000000000000013214061636517015421 xustar0030 mtime=1623670095.048102368 30 atime=1623670093.784103542 30 ctime=1623670095.048102368 elk-7.2.42/src/writefermi.f900000644002504400250440000000106214061636517017455 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writefermi ! !INTERFACE: subroutine writefermi ! !USES: use modmain ! !DESCRIPTION: ! Writes the Fermi energy to the file {\tt EFERMI.OUT}. ! ! !REVISION HISTORY: ! Created March 2005 (JKD) !EOP !BOC implicit none open(50,file='EFERMI'//trim(filext),form='FORMATTED',action='WRITE') write(50,'(G18.10)') efermi close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rfmtctof.f900000644000000000000000000000013114061636517015067 xustar0030 mtime=1623670095.049102368 29 atime=1623670093.78610354 30 ctime=1623670095.049102368 elk-7.2.42/src/rfmtctof.f900000644002504400250440000000432214061636517017126 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rfmtctof ! !INTERFACE: subroutine rfmtctof(rfmt) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! rfmt : real muffin-tin function (in,real(npmtmax,natmtot)) ! !DESCRIPTION: ! Converts a real muffin-tin function from a coarse to a fine radial mesh by ! using cubic spline interpolation. See {\tt rfinterp} and {\tt spline}. ! ! !REVISION HISTORY: ! Created October 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(inout) :: rfmt(npmtmax,natmtot) ! local variables integer is,ias,lm,nthd integer nr,nri,nro integer iro,ir,npi,i integer nrc,nrci,nrco integer irco,irc,npci ! automatic arrays real(8) rfmt1(npcmtmax),fr(nrmtmax),frc(nrcmtmax) if (lradstp.eq.1) return call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(rfmt1,fr,frc,is,nr,nri,nro) & !$OMP PRIVATE(iro,npi,nrc,nrci,nrco) & !$OMP PRIVATE(irco,npci,lm,i,irc,ir) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) nro=nr-nri iro=nri+1 npi=npmti(is) nrc=nrcmt(is) nrci=nrcmti(is) nrco=nrc-nrci irco=nrci+1 npci=npcmti(is) ! copy the input function call dcopy(npcmt(is),rfmt(:,ias),1,rfmt1,1) ! interpolate up to lmaxi over entire muffin-tin do lm=1,lmmaxi i=lm do irc=1,nrci frc(irc)=rfmt1(i) i=i+lmmaxi end do do irc=irco,nrc frc(irc)=rfmt1(i) i=i+lmmaxo end do call rfinterp(nrc,rcmt(:,is),wcrcmt(:,:,is),frc,nr,rlmt(:,1,is),fr) i=lm do ir=1,nri rfmt(i,ias)=fr(ir) i=i+lmmaxi end do do ir=iro,nr rfmt(i,ias)=fr(ir) i=i+lmmaxo end do end do ! interpolate up to lmaxo on outer part of muffin-tin do lm=lmmaxi+1,lmmaxo i=npci+lm do irc=irco,nrc frc(irc)=rfmt1(i) i=i+lmmaxo end do call rfinterp(nrco,rcmt(irco,is),wcrcmt(:,irco,is),frc(irco),nro, & rsp(iro,is),fr(iro)) i=npi+lm do ir=iro,nr rfmt(i,ias)=fr(ir) i=i+lmmaxo end do end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/findsym.f900000644000000000000000000000013214061636517014715 xustar0030 mtime=1623670095.051102366 30 atime=1623670093.787103539 30 ctime=1623670095.051102366 elk-7.2.42/src/findsym.f900000644002504400250440000001265314061636517016761 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: findsym ! !INTERFACE: subroutine findsym(apl1,apl2,nsym,lspl,lspn,iea) ! !USES: use modmain use moddftu ! !INPUT/OUTPUT PARAMETERS: ! apl1 : first set of atomic positions in lattice coordinates ! (in,real(3,maxatoms,maxspecies)) ! apl2 : second set of atomic positions in lattice coordinates ! (in,real(3,maxatoms,maxspecies)) ! nsym : number of symmetries (out,integer) ! lspl : spatial rotation element in lattice point group for each symmetry ! (out,integer(48)) ! lspn : spin rotation element in lattice point group for each symmetry ! (out,integer(48)) ! iea : equivalent atom index for each symmetry ! (out,integer(iea(natmmax,nspecies,48)) ! !DESCRIPTION: ! Finds the symmetries which rotate one set of atomic positions into another. ! Both sets of positions differ only by a translation vector and have the same ! muffin-tin magnetic fields (stored in the global array {\tt bfcmt}). Any ! symmetry element consists of a spatial rotation of the atomic position ! vectors followed by a global magnetic rotation: $\{\alpha_S|\alpha_R\}$. In ! the case of spin-orbit coupling $\alpha_S=\alpha_R$. The symmetries are ! returned as indices of elements in the Bravais lattice point group. An ! index to equivalent atoms is stored in the array {\tt iea}. ! ! !REVISION HISTORY: ! Created April 2007 (JKD) ! Fixed use of proper rotations for spin, February 2008 (L. Nordstrom) !EOP !BOC implicit none ! arguments real(8), intent(in) :: apl1(3,maxatoms,maxspecies) real(8), intent(in) :: apl2(3,maxatoms,maxspecies) integer, intent(out) :: nsym,lspl(48),lspn(48) integer, intent(out) :: iea(natmmax,nspecies,48) ! local variables integer isym,jsym,jsym0,jsym1 integer is,ia,ias,ja,jas,md,n real(8) sl(3,3),sc(3,3),v(3),t1 ! automatic arrays integer jea(natmmax,nspecies) real(8) apl3(3,natmmax) complex(8) dmat(lmmaxdm,nspinor,lmmaxdm,nspinor) ! external functions real(8), external :: dnrm2 nsym=0 ! loop over lattice symmetries (spatial rotations) do isym=1,nsymlat ! make real copy of lattice rotation symmetry sl(:,:)=dble(symlat(:,:,isym)) ! loop over species do is=1,nspecies ! map apl1 coordinates to [0,1) and store in apl3 do ia=1,natoms(is) apl3(:,ia)=apl1(:,ia,is) call r3frac(epslat,apl3(:,ia)) end do do ja=1,natoms(is) ! apply lattice symmetry to atomic positions v(:)=sl(:,1)*apl2(1,ja,is)+sl(:,2)*apl2(2,ja,is)+sl(:,3)*apl2(3,ja,is) ! map coordinates to [0,1) call r3frac(epslat,v) ! check if atomic positions are invariant do ia=1,natoms(is) t1=abs(apl3(1,ia)-v(1))+abs(apl3(2,ia)-v(2))+abs(apl3(3,ia)-v(3)) if (t1.lt.epslat) then ! equivalent atom index jea(ia,is)=ja goto 10 end if end do ! not invariant so try new spatial rotation goto 40 10 continue end do end do ! all atomic positions invariant at this point jsym=1 ! spin polarised case if (spinpol) then ! check invariance of magnetic fields under global spin rotation if (spinorb) then ! with spin-orbit coupling spin rotation equals spatial rotation jsym0=isym jsym1=isym else ! without spin-orbit coupling spin rotation independent of spatial rotation jsym0=1 jsym1=nsymlat end if do jsym=jsym0,jsym1 ! determinant of the symmetry matrix md=symlatd(jsym) sc(:,:)=dble(md)*symlatc(:,:,jsym) ! rotate global field and check invariance using proper part of symmetry matrix v(:)=sc(:,1)*bfieldc0(1)+sc(:,2)*bfieldc0(2)+sc(:,3)*bfieldc0(3) t1=abs(bfieldc0(1)-v(1))+abs(bfieldc0(2)-v(2))+abs(bfieldc0(3)-v(3)) ! if not invariant try a different global spin rotation if (t1.gt.epslat) goto 20 ! rotate muffin-tin magnetic fields and check invariance do is=1,nspecies do ia=1,natoms(is) ! equivalent atom ja=jea(ia,is) v(:)=sc(:,1)*bfcmt0(1,ja,is) & +sc(:,2)*bfcmt0(2,ja,is) & +sc(:,3)*bfcmt0(3,ja,is) t1=abs(bfcmt0(1,ia,is)-v(1)) & +abs(bfcmt0(2,ia,is)-v(2)) & +abs(bfcmt0(3,ia,is)-v(3)) ! if not invariant try a different global spin rotation if (t1.gt.epslat) goto 20 end do end do ! all fields invariant goto 30 20 continue ! end loop over global spin rotations end do ! magnetic fields not invariant so try different spatial rotation goto 40 end if 30 continue ! check invariance of density matrices for fixed tensor moment calculations if (ftmtype.ne.0) then n=2*(lmmaxdm*nspinor)**2 do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! equivalent atom ja=jea(ia,is) jas=idxas(ja,is) ! rotate the fixed tensor moment density matrix dmat(:,:,:,:)=0.d0 call rotdmat(symlatc(:,:,isym),symlatc(:,:,jsym),lmaxdm,nspinor, & lmmaxdm,dmftm(:,:,:,:,jas),dmat) ! check invariance call daxpy(n,-1.d0,dmftm(:,:,:,:,ias),1,dmat,1) t1=dnrm2(n,dmat,1)/dble(n) if (t1.gt.epslat) goto 40 end do end do end if ! everything invariant so add symmetry to set nsym=nsym+1 lspl(nsym)=isym lspn(nsym)=jsym do is=1,nspecies do ia=1,natoms(is) iea(ia,is,nsym)=jea(ia,is) end do end do 40 continue ! end loop over spatial rotations end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zfsht.f900000644000000000000000000000013214061636517014402 xustar0030 mtime=1623670095.052102365 30 atime=1623670093.789103537 30 ctime=1623670095.052102365 elk-7.2.42/src/zfsht.f900000644002504400250440000000261414061636517016442 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zfsht ! !INTERFACE: subroutine zfsht(nr,nri,zfmt1,zfmt2) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on the inner part of the muffin-tin (in,integer) ! zfmt1 : input complex muffin-tin function in spherical coordinates ! (in,complex(*)) ! zfmt2 : output complex muffin-tin function in spherical harmonics ! (out,complex(*)) ! !DESCRIPTION: ! Performs a forward spherical harmonic transform (SHT) on a complex ! muffin-tin function in spherical coordinates to obtain a function expressed ! in spherical harmonics. See also {\tt genshtmat} and {\tt zbsht}. ! !REVISION HISTORY: ! Created October 2013 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri complex(8), intent(in) :: zfmt1(*) complex(8), intent(out) :: zfmt2(*) ! local variables integer i ! transform the inner part of the muffin-tin call zgemm('N','N',lmmaxi,nri,lmmaxi,zone,zfshti,lmmaxi,zfmt1,lmmaxi,zzero, & zfmt2,lmmaxi) ! transform the outer part of the muffin-tin i=lmmaxi*nri+1 call zgemm('N','N',lmmaxo,nr-nri,lmmaxo,zone,zfshto,lmmaxo,zfmt1(i),lmmaxo, & zzero,zfmt2(i),lmmaxo) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rhonorm.f900000644000000000000000000000013214061636517014730 xustar0030 mtime=1623670095.054102363 30 atime=1623670093.791103535 30 ctime=1623670095.054102363 elk-7.2.42/src/rhonorm.f900000644002504400250440000000341614061636517016771 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rhonorm ! !INTERFACE: subroutine rhonorm ! !USES: use modmain ! !DESCRIPTION: ! Loss of precision of the calculated total charge can result because the ! muffin-tin density is computed on a set of $(\theta,\phi)$ points and then ! transformed to a spherical harmonic representation. This routine adds a ! constant to the density so that the total charge is correct. If the error in ! total charge exceeds a certain tolerance then a warning is issued. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Changed from rescaling to adding, September 2006 (JKD) !EOP !BOC implicit none ! local variables integer is,ia,ias integer nr,nri,ir,i real(8) t1,t2 if (.not.trhonorm) return ! check error in total charge t1=chgcalc/chgtot-1.d0 if (abs(t1).gt.epschg) then write(*,*) write(*,'("Warning(rhonorm): total charge density incorrect for s.c. & &loop ",I5)') iscl write(*,'(" Calculated : ",G18.10)') chgcalc write(*,'(" Required : ",G18.10)') chgtot end if ! error in average density t1=(chgtot-chgcalc)/omega ! add the constant difference to the density t2=t1/y00 do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri rhomt(i,ias)=rhomt(i,ias)+t2 i=i+lmmaxi end do do ir=nri+1,nr rhomt(i,ias)=rhomt(i,ias)+t2 i=i+lmmaxo end do end do rhoir(1:ngtot)=rhoir(1:ngtot)+t1 ! add the difference to the charges t1=t1*(fourpi/3.d0) do is=1,nspecies t2=t1*rmt(is)**3 do ia=1,natoms(is) ias=idxas(ia,is) chgmt(ias)=chgmt(ias)+t2 chgmttot=chgmttot+t2 end do end do chgir=chgtot-chgmttot end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genvchi0.f900000644000000000000000000000013214061636517014747 xustar0030 mtime=1623670095.055102362 30 atime=1623670093.792103534 30 ctime=1623670095.055102362 elk-7.2.42/src/genvchi0.f900000644002504400250440000001277114061636517017014 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvchi0(t3hw,ik,lock,ssr,vqpl,gclgq,jlgqr,ylmgq,sfacgq,nm,vchi0) use modmain use modomp implicit none ! local variables logical, intent(in) :: t3hw integer, intent(in) :: ik integer(8), intent(in) :: lock(nwrf) real(8), intent(in) :: ssr,vqpl(3),gclgq(ngrf) real(8), intent(in) :: jlgqr(njcmax,nspecies,ngrf) complex(8), intent(in) :: ylmgq(lmmaxo,ngrf) complex(8), intent(in) :: sfacgq(ngrf,natmtot) integer, intent(in) :: nm complex(8), intent(inout) :: vchi0(nm,nm,nwrf) ! local variables logical tq0,tssr integer isym,jk,jkq,iw integer nst,nstq,ist,jst,kst,lst integer nm2,ig,jg,i,j,nthd real(8) vkql(3),ei,ej,eij,t1,t2 complex(8) a(3,3),z1 ! automatic arrays integer idx(nstsv),idxq(nstsv) integer ngp(nspnfv),ngpq(nspnfv) ! allocatable arrays integer, allocatable :: igpig(:,:),igpqig(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: wfmtq(:,:,:,:),wfirq(:,:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:),zrhoig(:) complex(8), allocatable :: pmat(:,:,:),zw(:),b(:,:) ! check if q=0 tq0=.false. if (sum(abs(vqpl(:))).lt.epslat) tq0=.true. ! k+q-vector in lattice coordinates vkql(:)=vkl(:,ik)+vqpl(:) ! equivalent reduced k-points for k and k+q jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) call findkpt(vkql,isym,jkq) ! count and index states at k and k+q in energy window nst=0 do ist=1,nstsv if (abs(evalsv(ist,jk)-efermi).lt.emaxrf) then nst=nst+1 idx(nst)=ist end if end do nstq=0 do jst=1,nstsv if (abs(evalsv(jst,jkq)-efermi).lt.emaxrf) then nstq=nstq+1 idxq(nstq)=jst end if end do ! set flag for scissor operator if (abs(ssr).gt.1.d-8) then tssr=.true. else tssr=.false. end if ! generate the wavefunctions for all states at k and k+q in energy window allocate(igpig(ngkmax,nspnfv)) allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfir(ngtc,nspinor,nst)) call genwfsvp(.false.,.false.,nst,idx,ngdgc,igfc,vkl(:,ik),ngp,igpig,wfmt,ngtc,& wfir) deallocate(igpig) allocate(igpqig(ngkmax,nspnfv)) allocate(wfmtq(npcmtmax,natmtot,nspinor,nstq),wfirq(ngtc,nspinor,nstq)) call genwfsvp(.false.,.false.,nstq,idxq,ngdgc,igfc,vkql,ngpq,igpqig,wfmtq,ngtc,& wfirq) deallocate(igpqig) ! read the momentum matrix elements from file for q=0 if (tq0) then allocate(pmat(nstsv,nstsv,3)) call getpmat(vkl(:,ik),pmat) ! divide by unit cell volume t1=1.d0/omega pmat(:,:,:)=t1*pmat(:,:,:) end if nm2=nm**2 call holdthd(nst,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,zrhoig,zw,b) & !$OMP PRIVATE(jst,kst,lst,ei,ej,eij,t1,t2) & !$OMP PRIVATE(iw,ig,jg,z1,i,j,a) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) allocate(zrhoig(ngrf),zw(nwrf)) if (tq0.and.t3hw) then allocate(b(-1:ngrf,-1:ngrf)) else allocate(b(ngrf,ngrf)) end if !$OMP DO do ist=1,nst kst=idx(ist) ei=evalsv(kst,jk) do jst=1,nstq lst=idxq(jst) t1=wkptnr*omega*(occsv(kst,jk)-occsv(lst,jkq)) if (abs(t1).lt.1.d-8) cycle ej=evalsv(lst,jkq) eij=ei-ej ! scissor operator if (tssr) then t2=eij if ((ei.gt.efermi).and.(ej.le.efermi)) then eij=eij+ssr else if ((ei.le.efermi).and.(ej.gt.efermi)) then eij=eij-ssr end if t2=eij/t2 ! scale the momentum matrix elements for q=0 if (tq0) pmat(kst,lst,1:3)=t2*pmat(kst,lst,1:3) end if ! frequency-dependent part in response function formula for all frequencies do iw=1,nwrf zw(iw)=t1/(eij+wrf(iw)) end do ! compute the complex density in G+q-space call genzrho(.true.,.true.,ngtc,wfmt(:,:,:,ist),wfir(:,:,ist), & wfmtq(:,:,:,jst),wfirq(:,:,jst),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zrhoig) ! Hermitian part of body do jg=1,ngrf do ig=1,jg-1 b(ig,jg)=conjg(b(jg,ig)) end do z1=gclgq(jg)*conjg(zrhoig(jg)) do ig=jg,ngrf b(ig,jg)=gclgq(ig)*zrhoig(ig)*z1 end do end do ! case of q=0 if (tq0) then if (t3hw) then b(-1:1,-1:1)=0.d0 ! calculate 3 x ngrf wings of matrix t1=-sqrt(fourpi)/eij do i=-1,1 z1=t1*pmat(kst,lst,i+2) b(i,2:)=z1*conjg(zrhoig(2:))*gclgq(2:) b(2:,i)=conjg(b(i,2:)) end do else ! use trace of 3 x 3 head of matrix t1=sum(dble(pmat(kst,lst,1:3))**2+aimag(pmat(kst,lst,1:3))**2)/3.d0 b(1,1)=(fourpi/eij**2)*t1 ! wings of matrix t1=-sqrt(fourpi)/eij z1=(t1/3.d0)*(pmat(kst,lst,1)+pmat(kst,lst,2)+pmat(kst,lst,3)) b(1,2:)=z1*conjg(zrhoig(2:))*gclgq(2:) b(2:,1)=conjg(b(1,2:)) end if end if ! add to body and wings of the response function do iw=1,nwrf call omp_set_lock(lock(iw)) call zaxpy(nm2,zw(iw),b,1,vchi0(1,1,iw),1) call omp_unset_lock(lock(iw)) end do ! calculate 3 x 3 head if (tq0.and.t3hw) then t1=-fourpi/eij zw(1:nwrf)=zw(1:nwrf)/wrf(1:nwrf) do j=1,3 do i=1,3 a(i,j)=t1*pmat(kst,lst,i)*conjg(pmat(kst,lst,j)) end do end do ! add to the head of the response function do iw=1,nwrf call omp_set_lock(lock(iw)) vchi0(1:3,1:3,iw)=vchi0(1:3,1:3,iw)+a(1:3,1:3)*zw(iw) call omp_unset_lock(lock(iw)) end do end if ! end loop over jst end do ! end loop over ist end do !$OMP END DO deallocate(zrhomt,zrhoir,zrhoig,zw,b) !$OMP END PARALLEL call freethd(nthd) deallocate(wfmt,wfir,wfmtq,wfirq) if (tq0) deallocate(pmat) end subroutine elk-7.2.42/src/PaxHeaders.21776/zfmtconj.f900000644000000000000000000000013014061636517015074 xustar0029 mtime=1623670095.05710236 30 atime=1623670093.794103532 29 ctime=1623670095.05710236 elk-7.2.42/src/zfmtconj.f900000644002504400250440000000376514061636517017146 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine zfmtconj(nr,nri,np,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri,np complex(8), intent(inout) :: zfmt(np) ! local variables integer i ! automatic arrays complex(8) zfmt1(np) zfmt1(:)=zfmt(:) call zflmnconj(lmaxi,nri,lmmaxi,zfmt1,zfmt) i=lmmaxi*nri+1 call zflmnconj(lmaxo,nr-nri,lmmaxo,zfmt1(i),zfmt(i)) return contains !BOP ! !ROUTINE: zflmnconj ! !INTERFACE: pure subroutine zflmnconj(lmax,n,ld,zflm1,zflm2) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! n : number of functions to conjugate (in,integer) ! ld : leading dimension (in,integer) ! zflm1 : coefficients of input complex spherical harmonic expansion ! (in,complex((lmax+1)**2))) ! zflm2 : coefficients of output complex spherical harmonic expansion ! (out,complex((lmax+1)**2))) ! !DESCRIPTION: ! Returns the complex conjugate of a function expanded in spherical harmonics. ! In other words, given the input function coefficients $z_{lm}$, the routine ! returns $z'_{lm}=(-1)^m z^*_{l-m}$ so that ! $$ \sum_{lm}z'_{lm}Y_{lm}(\theta,\phi)=\left(\sum_{lm}z_{lm}Y_{lm} ! (\theta,\phi)\right)^* $$ ! for all $(\theta,\phi)$. ! ! !REVISION HISTORY: ! Created April 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax,n,ld complex(8), intent(in) :: zflm1(ld,n) complex(8), intent(out) :: zflm2(ld,n) ! local variables integer l,m,lm1,lm2 do l=0,lmax lm1=l**2 lm2=(l+1)**2+1 do m=-l,-1 lm1=lm1+1 lm2=lm2-1 if (mod(m,2).eq.0) then zflm2(lm1,:)=conjg(zflm1(lm2,:)) zflm2(lm2,:)=conjg(zflm1(lm1,:)) else zflm2(lm1,:)=-conjg(zflm1(lm2,:)) zflm2(lm2,:)=-conjg(zflm1(lm1,:)) end if end do ! m=0 case lm1=lm1+1 zflm2(lm1,:)=conjg(zflm1(lm1,:)) end do end subroutine !EOC end subroutine elk-7.2.42/src/PaxHeaders.21776/stheta_sq.f900000644000000000000000000000013214061636517015237 xustar0030 mtime=1623670095.058102359 30 atime=1623670093.796103531 30 ctime=1623670095.058102359 elk-7.2.42/src/stheta_sq.f900000644002504400250440000000160114061636517017272 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: stheta_sq ! !INTERFACE: elemental real(8) function stheta_sq(x) ! !INPUT/OUTPUT PARAMETERS: ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the Heaviside step function corresponding to the square-wave pulse ! approximation to the Dirac delta function ! $$ \tilde\Theta(x)=\left\{\begin{array}{ll} ! 0 & \quad x \le -1/2 \\ ! x+1/2 & \quad -1/2 < x < 1/2 \\ ! 1 & \quad x\ge 1 \end{array}\right. $$ ! ! !REVISION HISTORY: ! Created July 2008 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x if (x.le.-0.5d0) then stheta_sq=0.d0 return end if if (x.lt.0.5d0) then stheta_sq=x+0.5d0 else stheta_sq=1.d0 end if end function !EOC elk-7.2.42/src/PaxHeaders.21776/sdelta_lr.f900000644000000000000000000000013114061636517015214 xustar0030 mtime=1623670095.060102357 29 atime=1623670093.79710353 30 ctime=1623670095.060102357 elk-7.2.42/src/sdelta_lr.f900000644002504400250440000000063114061636517017252 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. elemental real(8) function sdelta_lr(x) implicit none ! arguments real(8), intent(in) :: x ! local variables real(8), parameter :: twopi=6.2831853071795864769d0 sdelta_lr=1.d0/(twopi*(x**2+0.25d0)) end function elk-7.2.42/src/PaxHeaders.21776/stheta_lr.f900000644000000000000000000000013214061636517015231 xustar0030 mtime=1623670095.061102356 30 atime=1623670093.799103528 30 ctime=1623670095.061102356 elk-7.2.42/src/stheta_lr.f900000644002504400250440000000062114061636517017265 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. elemental real(8) function stheta_lr(x) implicit none ! arguments real(8), intent(in) :: x ! local variables real(8), parameter :: pi=3.1415926535897932385d0 stheta_lr=0.5d0+atan(2.d0*x)/pi end function elk-7.2.42/src/PaxHeaders.21776/findsymsite.f900000644000000000000000000000013214061636517015602 xustar0030 mtime=1623670095.063102355 30 atime=1623670093.800103527 30 ctime=1623670095.063102355 elk-7.2.42/src/findsymsite.f900000644002504400250440000000163614061636517017645 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine findsymsite use modmain implicit none ! local variables integer is,js,ia,ja,ias real(8) apl(3,maxatoms,maxspecies) ! automatic arrays real(8) iea(natmmax,nspecies,48) ! allocate the site symmetry arrays if (allocated(nsymsite)) deallocate(nsymsite) allocate(nsymsite(natmtot)) if (allocated(lsplsyms)) deallocate(lsplsyms) allocate(lsplsyms(48,natmtot)) if (allocated(lspnsyms)) deallocate(lspnsyms) allocate(lspnsyms(48,natmtot)) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) do js=1,nspecies do ja=1,natoms(js) apl(:,ja,js)=atposl(:,ja,js)-atposl(:,ia,is) end do end do call findsym(apl,apl,nsymsite(ias),lsplsyms(:,ias),lspnsyms(:,ias),iea) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/genlmirep.f900000644000000000000000000000013214061636517015226 xustar0030 mtime=1623670095.064102354 30 atime=1623670093.802103525 30 ctime=1623670095.064102354 elk-7.2.42/src/genlmirep.f900000644002504400250440000000430414061636517017264 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genlmirep(lmax,ld,elm,ulm) use modmain implicit none ! arguments integer, intent(in) :: lmax integer, intent(in) :: ld real(8), intent(out) :: elm(ld,natmtot) complex(8), intent(out) :: ulm(ld,ld,natmtot) ! local variables integer isym,lspl,is,ia,ias integer lmmax,i,j,l,lm,n,p integer info,lwork ! allocatable arrays real(8), allocatable :: rwork(:) complex(8), allocatable :: ulat(:,:,:) complex(8), allocatable :: a(:,:),b(:,:) complex(8), allocatable :: h(:,:),work(:) lmmax=(lmax+1)**2 allocate(rwork(3*lmmax)) allocate(ulat(lmmax,lmmax,nsymlat)) allocate(a(lmmax,lmmax),b(lmmax,lmmax)) allocate(h(lmmax,lmmax)) lwork=2*lmmax allocate(work(lwork)) ! construct (l,m) rotation matrix for each lattice symmetry a(:,:)=0.d0 do i=1,lmmax a(i,i)=1.d0 end do do isym=1,nsymlat call rotzflm(symlatc(:,:,isym),0,lmax,lmmax,lmmax,lmmax,a,ulat(:,:,isym)) end do ! set up pseudorandom symmetric matrix H h(:,:)=0.d0 p=1 do l=0,lmax n=2*l+1 lm=l*(l+1)-l+1 do i=lm,lm+n-1 do j=i,lm+n-1 ! Park and Miller linear congruential generator p=mod(p*171,30269) h(i,j)=mod(p,lmmax) h(j,i)=h(i,j) end do end do end do ! loop over species and atoms do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! symmetrise H with site symmetries b(:,:)=0.d0 do isym=1,nsymsite(ias) ! spatial rotation element in lattice point group lspl=lsplsyms(isym,ias) ! apply lattice symmetry as U*H*conjg(U') call zgemm('N','N',lmmax,lmmax,lmmax,zone,ulat(:,:,lspl),lmmax,h,lmmax, & zzero,a,lmmax) call zgemm('N','C',lmmax,lmmax,lmmax,zone,a,lmmax,ulat(:,:,lspl),lmmax, & zone,b,lmmax) end do ! block diagonalise symmetrised H do l=0,lmax n=2*l+1 lm=l*(l+1)-l+1 call zheev('V','U',n,b(lm,lm),lmmax,elm(lm,ias),work,lwork,rwork,info) end do ! the unitary matrix U is the transpose of the eigenvector array do i=1,lmmax do j=1,lmmax ulm(i,j,ias)=b(j,i) end do end do end do end do deallocate(rwork,ulat,a,b,h,work) end subroutine elk-7.2.42/src/PaxHeaders.21776/writespecies.f900000644000000000000000000000013214061636517015752 xustar0030 mtime=1623670095.066102352 30 atime=1623670093.804103523 30 ctime=1623670095.066102352 elk-7.2.42/src/writespecies.f900000644002504400250440000000526414061636517020016 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writespecies(symb,name,zn,mass,rmin,rm,rmax,nrm,nst,n,l,k,occ,eval) use modmain use modmpi implicit none ! arguments character(*), intent(in) :: symb,name real(8), intent(in) :: zn,mass real(8), intent(in) :: rmin,rm,rmax integer, intent(in) :: nrm,nst integer, intent(in) :: n(nst),l(nst),k(nst) real(8), intent(in) :: occ(nst) real(8), intent(in) :: eval(nst) ! local variables integer lmax,nlo integer ist,jst,i logical core(maxstsp),lorb(maxstsp) ! default APW band energy real(8), parameter :: e0=0.15d0 ! find which states belong to core do ist=1,nst if (eval(ist).lt.ecvcut) then core(ist)=.true. else core(ist)=.false. end if end do ! check that the state for same n and l but different k is also core do ist=1,nst if (core(ist)) then do jst=1,nst if ((n(ist).eq.n(jst)).and.(l(ist).eq.l(jst))) core(jst)=.true. end do end if end do lmax=1 do ist=1,nst if (.not.core(ist)) lmax=max(lmax,l(ist)) end do ! determine the local orbitals nlo=lmax+1 lorb(:)=.false. do ist=1,nst if (.not.core(ist)) then if ((l(ist).eq.0).or.(l(ist).lt.k(ist))) then if ((eval(ist).lt.esccut).or.(l(ist).ge.2)) then lorb(ist)=.true. nlo=nlo+1 end if end if end if end do if (mp_mpi) then open(55,file=trim(symb)//'.in',form='FORMATTED') write(55,'(" ''",A,"''",T45,": spsymb")') trim(symb) write(55,'(" ''",A,"''",T45,": spname")') trim(name) write(55,'(G14.6,T45,": spzn")') zn write(55,'(G18.10,T45,": spmass")') mass write(55,'(G14.6,2F10.4,I6,T45,": rminsp, rmt, rmaxsp, nrmt")') rmin,rm, & rmax,nrm write(55,'(I4,T45,": nstsp")') nst write(55,'(3I4,G14.6,L1,T45,": nsp, lsp, ksp, occsp, spcore")') n(1),l(1), & k(1),occ(1),core(1) do ist=2,nst write(55,'(3I4,G14.6,L1)') n(ist),l(ist),k(ist),occ(ist),core(ist) end do write(55,'(I4,T45,": apword")') 1 write(55,'(F10.4,I4," ",L1,T45,": apwe0, apwdm, apwve")') e0,0,.false. write(55,'(I4,T45,": nlx")') 0 write(55,'(I4,T45,": nlorb")') nlo do i=0,lmax write(55,'(2I4,T45,": lorbl, lorbord")') i,2 write(55,'(F10.4,I4," ",L1,T45,": lorbe0, lorbdm, lorbve")') e0,0,.false. write(55,'(F10.4,I4," ",L1)') e0,1,.false. end do do ist=1,nst if (lorb(ist)) then write(55,'(2I4,T45,": lorbl, lorbord")') l(ist),2 write(55,'(F10.4,I4," ",L1,T45,": lorbe0, lorbdm, lorbve")') e0,0,.false. write(55,'(F10.4,I4," ",L1)') eval(ist),0,.true. end if end do close(55) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhomagk.f900000644000000000000000000000013214061636517014674 xustar0030 mtime=1623670095.067102351 30 atime=1623670093.805103522 30 ctime=1623670095.067102351 elk-7.2.42/src/rhomagk.f900000644002504400250440000001706114061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2010 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rhomagk ! !INTERFACE: subroutine rhomagk(ngp,igpig,lock,wppt,occsvp,apwalm,evecfv,evecsv) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer(nspnfv)) ! igpig : index from G+p-vectors to G-vectors (in,integer(ngkmax,nspnfv)) ! lock : OpenMP lock for each atom (in,integer(natmtot)) ! wppt : weight of input p-point (in,real) ! occsvp : occupation number for each state (in,real(nstsv)) ! apwalm : APW matching coefficients ! (in,complex(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) ! evecfv : first-variational eigenvectors (in,complex(nmatmax,nstfv,nspnfv)) ! evecsv : second-variational eigenvectors (in,complex(nstsv,nstsv)) ! !DESCRIPTION: ! Generates the partial valence charge density and magnetisation from the ! eigenvectors at a particular $k$-point. In the muffin-tin region, the ! wavefunction is obtained in terms of its $(l,m)$-components from both the ! APW and local-orbital functions. Using a backward spherical harmonic ! transform (SHT), the wavefunction is converted to real-space and the density ! obtained from its modulus squared. A similar proccess is used for the ! intersitial density in which the wavefunction in real-space is obtained from ! a Fourier transform of the APW functions. See routines {\tt wavefmt}, ! {\tt genshtmat} and {\tt eveqn}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Removed conversion to spherical harmonics, January 2009 (JKD) ! Partially de-phased the muffin-tin magnetisation for spin-spirals, ! February 2009 (FC, FB & LN) ! Optimisations, July 2010 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) integer(8), intent(in) :: lock(natmtot) real(8), intent(in) :: wppt,occsvp(nstsv) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv) ! local variables integer ispn,jspn,ist integer is,ias,i,j,n,nthd integer nrc,nrci,npc real(8) wo real(8) ts0,ts1 complex(8) zq(2),z1 ! automatic arrays logical done(nstfv,nspnfv) complex(8) wfmt1(npcmtmax),wfmt2(npcmtmax,nspinor) complex(8) wfir(ngtc,nspinor),wfgp(ngkmax) ! allocatable arrays complex(8), allocatable :: wfmt3(:,:,:) call timesec(ts0) !----------------------------------------------! ! muffin-tin density and magnetisation ! !----------------------------------------------! call holdthd(natmtot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfmt1,wfmt2,wfmt3) & !$OMP PRIVATE(is,nrc,nrci,npc) & !$OMP PRIVATE(zq,done,i,j,wo) & !$OMP PRIVATE(ispn,jspn,n,ist,z1) & !$OMP NUM_THREADS(nthd) if (tevecsv) allocate(wfmt3(npcmtmax,nstfv,nspnfv)) !$OMP DO do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! de-phasing factor for spin-spirals if (ssdph) then zq(1)=zqss(ias) zq(2)=conjg(zq(1)) end if done(:,:)=.false. do j=1,nstsv wo=occsvp(j) if (abs(wo).lt.epsocc) cycle wo=wo*wppt if (tevecsv) then ! generate spinor wavefunction from second-variational eigenvectors i=0 do ispn=1,nspinor jspn=jspnfv(ispn) n=ngp(jspn) wfmt2(1:npc,ispn)=0.d0 do ist=1,nstfv i=i+1 z1=evecsv(i,j) if (abs(dble(z1))+abs(aimag(z1)).lt.epsocc) cycle if (ssdph) z1=z1*zq(ispn) if (.not.done(ist,jspn)) then call wavefmt(lradstp,ias,n,apwalm(:,:,:,ias,jspn), & evecfv(:,ist,jspn),wfmt1) ! convert to spherical coordinates call zbsht(nrc,nrci,wfmt1,wfmt3(:,ist,jspn)) done(ist,jspn)=.true. end if ! add to spinor wavefunction call zaxpy(npc,z1,wfmt3(:,ist,jspn),1,wfmt2(:,ispn),1) end do end do else ! spin-unpolarised wavefunction call wavefmt(lradstp,ias,ngp,apwalm(:,:,:,ias,1),evecfv(:,j,1),wfmt1) ! convert to spherical coordinates call zbsht(nrc,nrci,wfmt1,wfmt2) end if ! add to density and magnetisation call omp_set_lock(lock(ias)) if (spinpol) then ! spin-polarised if (ncmag) then ! non-collinear call rmk1(npc,wo,wfmt2,wfmt2(:,2),rhomt(:,ias),magmt(:,ias,1), & magmt(:,ias,2),magmt(:,ias,3)) else ! collinear call rmk2(npc,wo,wfmt2,wfmt2(:,2),rhomt(:,ias),magmt(:,ias,1)) end if else ! spin-unpolarised call rmk3(npc,wo,wfmt2,rhomt(:,ias)) end if call omp_unset_lock(lock(ias)) end do ! end loop over atoms end do !$OMP END DO if (tevecsv) deallocate(wfmt3) !$OMP END PARALLEL call freethd(nthd) !------------------------------------------------! ! interstitial density and magnetisation ! !------------------------------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfir,wfgp,wo,i) & !$OMP PRIVATE(ispn,jspn,n,ist,z1) & !$OMP NUM_THREADS(nthd) do j=1,nstsv wo=occsvp(j) if (abs(wo).lt.epsocc) cycle wo=wo*wppt/omega if (tevecsv) then ! generate spinor wavefunction from second-variational eigenvectors i=0 do ispn=1,nspinor jspn=jspnfv(ispn) n=ngp(jspn) wfgp(1:n)=0.d0 do ist=1,nstfv i=i+1 z1=evecsv(i,j) if (abs(dble(z1))+abs(aimag(z1)).lt.epsocc) cycle call zaxpy(n,z1,evecfv(:,ist,jspn),1,wfgp,1) end do wfir(:,ispn)=0.d0 wfir(igfc(igpig(1:n,jspn)),ispn)=wfgp(1:n) ! Fourier transform wavefunction to real-space call zfftifc(3,ngdgc,1,wfir(:,ispn)) end do else ! spin-unpolarised wavefunction wfir(:,1)=0.d0 wfir(igfc(igpig(1:ngp(1),1)),1)=evecfv(1:ngp(1),j,1) call zfftifc(3,ngdgc,1,wfir) end if ! add to density and magnetisation !$OMP CRITICAL(rhomagk_) if (spinpol) then ! spin-polarised if (ncmag) then ! non-collinear call rmk1(ngtc,wo,wfir,wfir(:,2),rhoir,magir,magir(:,2),magir(:,3)) else ! collinear call rmk2(ngtc,wo,wfir,wfir(:,2),rhoir,magir) end if else ! spin-unpolarised call rmk3(ngtc,wo,wfir,rhoir) end if !$OMP END CRITICAL(rhomagk_) end do !$OMP END PARALLEL DO call freethd(nthd) call timesec(ts1) !$OMP ATOMIC timerho=timerho+ts1-ts0 return contains pure subroutine rmk1(n,wo,wf1,wf2,rho,mag1,mag2,mag3) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) real(8), intent(inout) :: rho(n),mag1(n),mag2(n),mag3(n) ! local variables integer i real(8) wo2,t1,t2 real(8) a1,b1,a2,b2 wo2=2.d0*wo !$OMP SIMD PRIVATE(a1,b1,a2,b2,t1,t2) SIMDLEN(8) do i=1,n a1=dble(wf1(i)); b1=aimag(wf1(i)) a2=dble(wf2(i)); b2=aimag(wf2(i)) t1=a1**2+b1**2; t2=a2**2+b2**2 mag1(i)=mag1(i)+wo2*(a1*a2+b1*b2) mag2(i)=mag2(i)+wo2*(a1*b2-b1*a2) mag3(i)=mag3(i)+wo*(t1-t2) rho(i)=rho(i)+wo*(t1+t2) end do end subroutine pure subroutine rmk2(n,wo,wf1,wf2,rho,mag) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) real(8), intent(inout) :: rho(n),mag(n) ! local variables integer i real(8) t1,t2 !$OMP SIMD PRIVATE(t1,t2) SIMDLEN(8) do i=1,n t1=dble(wf1(i))**2+aimag(wf1(i))**2 t2=dble(wf2(i))**2+aimag(wf2(i))**2 mag(i)=mag(i)+wo*(t1-t2) rho(i)=rho(i)+wo*(t1+t2) end do end subroutine pure subroutine rmk3(n,wo,wf,rho) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf(n) real(8), intent(inout) :: rho(n) rho(:)=rho(:)+wo*(dble(wf(:))**2+aimag(wf(:))**2) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/symrvfmt.f900000644000000000000000000000013114061636517015132 xustar0030 mtime=1623670095.069102349 29 atime=1623670093.80710352 30 ctime=1623670095.069102349 elk-7.2.42/src/symrvfmt.f900000644002504400250440000000720114061636517017170 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine symrvfmt(tspin,tnc,nr,nri,np,ld,rvfmt) use modmain implicit none ! arguments logical, intent(in) :: tspin,tnc integer, intent(in) :: nr(nspecies),nri(nspecies),np(nspecies) integer, intent(in) :: ld real(8), intent(inout) :: rvfmt(ld,natmtot,*) ! local variables integer is,ia,ja,ias,jas integer nd,isym,lspl,lspn,i real(8) sc(3,3),t0 real(8) x1,x2,x3,y1,y2,y3 ! automatic arrays logical done(natmmax) ! allocatable arrays real(8), allocatable :: rvfmt1(:,:,:),rvfmt2(:,:) ! dimension of the vector field if (tnc) then nd=3 else nd=1 end if allocate(rvfmt1(ld,natmmax,nd),rvfmt2(ld,nd)) t0=1.d0/dble(nsymcrys) do is=1,nspecies ! make copy of vector field for all atoms of current species do i=1,nd do ia=1,natoms(is) ias=idxas(ia,is) call dcopy(np(is),rvfmt(:,ias,i),1,rvfmt1(:,ia,i),1) end do end do done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) rvfmt(1:np(is),ias,1:nd)=0.d0 ! begin loop over crystal symmetries do isym=1,nsymcrys ! equivalent atom ja=ieqatom(ia,is,isym) ! parallel transport of vector field lspl=lsplsymc(isym) do i=1,nd call rotrfmt(symlatc(:,:,lspl),nr(is),nri(is),rvfmt1(:,ja,i), & rvfmt2(:,i)) end do if (tspin) then ! global spin proper rotation matrix in Cartesian coordinates lspn=lspnsymc(isym) sc(:,:)=symlatd(lspn)*symlatc(:,:,lspn) else ! set spin rotation equal to spatial rotation lspn=lspl sc(:,:)=symlatc(:,:,lspl) end if ! global spin rotation of vector field if (tnc) then ! non-collinear case do i=1,np(is) x1=rvfmt2(i,1); x2=rvfmt2(i,2); x3=rvfmt2(i,3) y1=sc(1,1)*x1+sc(1,2)*x2+sc(1,3)*x3 y2=sc(2,1)*x1+sc(2,2)*x2+sc(2,3)*x3 y3=sc(3,1)*x1+sc(3,2)*x2+sc(3,3)*x3 rvfmt(i,ias,1)=rvfmt(i,ias,1)+y1 rvfmt(i,ias,2)=rvfmt(i,ias,2)+y2 rvfmt(i,ias,3)=rvfmt(i,ias,3)+y3 end do else ! collinear case call daxpy(np(is),sc(3,3),rvfmt2,1,rvfmt(:,ias,1),1) end if ! end loop over crystal symmetries end do ! normalise do i=1,nd call dscal(np(is),t0,rvfmt(:,ias,i),1) end do ! mark atom as done done(ia)=.true. ! rotate into equivalent atoms do isym=1,nsymcrys ja=ieqatom(ia,is,isym) if (done(ja)) cycle jas=idxas(ja,is) ! parallel transport of vector field (using operation inverse) lspl=isymlat(lsplsymc(isym)) do i=1,nd call rotrfmt(symlatc(:,:,lspl),nr(is),nri(is),rvfmt(:,ias,i), & rvfmt(:,jas,i)) end do if (tspin) then ! inverse of global proper rotation matrix in Cartesian coordinates lspn=isymlat(lspnsymc(isym)) sc(:,:)=symlatd(lspn)*symlatc(:,:,lspn) else ! set spin rotation equal to spatial rotation lspn=lspl sc(:,:)=symlatc(:,:,lspl) end if ! global spin rotation of vector field if (tnc) then ! non-collinear case do i=1,np(is) x1=rvfmt(i,jas,1); x2=rvfmt(i,jas,2); x3=rvfmt(i,jas,3) y1=sc(1,1)*x1+sc(1,2)*x2+sc(1,3)*x3 y2=sc(2,1)*x1+sc(2,2)*x2+sc(2,3)*x3 y3=sc(3,1)*x1+sc(3,2)*x2+sc(3,3)*x3 rvfmt(i,jas,1)=y1; rvfmt(i,jas,2)=y2; rvfmt(i,jas,3)=y3 end do else ! collinear case call dscal(np(is),sc(3,3),rvfmt(:,jas,1),1) end if ! mark atom as done done(ja)=.true. end do ! end loop over atoms and species end do end do deallocate(rvfmt1,rvfmt2) end subroutine elk-7.2.42/src/PaxHeaders.21776/wigner3jf.f900000644000000000000000000000013214061636517015142 xustar0030 mtime=1623670095.070102348 30 atime=1623670093.808103519 30 ctime=1623670095.070102348 elk-7.2.42/src/wigner3jf.f900000644002504400250440000000523014061636517017177 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: wigner3jf ! !INTERFACE: real(8) function wigner3jf(j12,j22,j32,m12,m22,m32) ! !INPUT/OUTPUT PARAMETERS: ! j12, j22, j32 : angular momentum quantum numbers times 2 (in,integer) ! m12, m22, m32 : magnetic quantum numbers times 2 (in,integer) ! !DESCRIPTION: ! Returns the Wigner $3j$-symbol for the case where the arguments may be ! fractional, i.e. multiples of $\frac{1}{2}$. The input parameters to this ! function are taken to be twice their actual values, which allows them to ! remain integers. The formula used is identical to that in {\tt wigner3j}. ! ! !REVISION HISTORY: ! Created January 2014 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: j12,j22,j32 integer, intent(in) :: m12,m22,m32 ! local variables integer jm1,jm2,jm3,n1,n2 integer l12,l22,l32,l42 integer k,k1,k2,l1,l2,l3 real(8) sgn,sm,t1 ! external functions real(8), external :: factnm,factr ! check input variables if ((j12.lt.0).or.(j22.lt.0).or.(j32.lt.0).or.(abs(m12).gt.j12).or. & (abs(m22).gt.j22).or.(abs(m32).gt.j32)) then write(*,*) write(*,'("Error(wigner3jf): invalid arguments :")') write(*,'("j12 = ",I8," j22 = ",I8," j32 = ",I8)') j12,j22,j32 write(*,'("m12 = ",I8," m22 = ",I8," m32 = ",I8)') m12,m22,m32 write(*,*) stop end if if ((j12.eq.0).and.(j22.eq.0).and.(j32.eq.0)) then wigner3jf=1.d0 return end if if ((j12.gt.100).or.(j22.gt.100).or.(j32.gt.100)) then write(*,*) write(*,'("Error(wigner3jf): angular momenta out of range : ",3I8)') j12, & j22,j32 write(*,*) stop end if jm1=j12+m12 jm2=j22+m22 jm3=j32+m32 if ((mod(jm1,2).ne.0).or.(mod(jm2,2).ne.0).or.(mod(jm3,2).ne.0)) then wigner3jf=0.d0 return end if l12=j22-j12+j32 l22=j12-j22+j32 l32=j12+j22-j32 l42=j12+j22+j32 if ((mod(l12,2).ne.0).or.(mod(l22,2).ne.0).or.(mod(l32,2).ne.0).or. & (mod(l42,2).ne.0)) then wigner3jf=0.d0 return end if l1=l12/2 l2=l22/2 l3=l32/2 if ((m12+m22+m32.ne.0).or.(l1.lt.0).or.(l2.lt.0).or.(l3.lt.0)) then wigner3jf=0.d0 return end if n1=(j12-m12)/2 n2=(j22+m22)/2 k1=max(0,n1-l2,n2-l1) k2=min(l3,n1,n2) k=k1+(j22-j12+m32)/2 if (mod(k,2).ne.0) then sgn=-1.d0 else sgn=1.d0 end if sm=0.d0 do k=k1,k2 t1=sgn*factr(l1,l1-n2+k)*factr(l2,l2-n1+k)*factr(l3,l3-k) sm=sm+t1/(factnm(k,1)*factnm(n1-k,1)*factnm(n2-k,1)) sgn=-sgn end do jm1=jm1/2 jm2=jm2/2 jm3=jm3/2 t1=factr(jm1,l1)*factr(jm2,l2)*factr(jm3,l3) jm1=(j12-m12)/2 jm2=(j22-m22)/2 jm3=(j32-m32)/2 t1=t1*factr(jm3,1+l42/2)*factnm(jm1,1)*factnm(jm2,1) wigner3jf=sm*sqrt(t1) end function !EOC elk-7.2.42/src/PaxHeaders.21776/wigner6j.f900000644000000000000000000000013214061636517014777 xustar0030 mtime=1623670095.072102346 30 atime=1623670093.810103517 30 ctime=1623670095.072102346 elk-7.2.42/src/wigner6j.f900000644002504400250440000000610714061636517017040 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: wigner6j ! !INTERFACE: real(8) function wigner6j(j1,j2,j3,k1,k2,k3) ! !INPUT/OUTPUT PARAMETERS: ! j1, j2, j3 : angular momentum quantum numbers (in,integer) ! k1, k2, k3 : angular momentum quantum numbers (in,integer) ! !DESCRIPTION: ! Returns the Wigner $6j$-symbol for integer arguments. This is computed using ! the Racah formula: ! \begin{align*} ! &\left\{\begin{matrix} j_1 & j_2 & j_3 \\ k_1 & k_2 & k_3 \end{matrix} ! \right\}=\sqrt{\Delta(j_1\,j_2\,j_3)\Delta(j_1\,k_2\,k_3) ! \Delta(k_1\,j_2\,k_3)\Delta(k_1\,k_2\,j_3)}\, ! \sum_n\frac{(-1)^n(n+1)!}{f(n)}, ! \end{align*} ! where ! \begin{align*} ! f(n)=&(n-j_1-j_2-j_3)!\,(n-j_1-k_2-k_3)!\,(n-k_1-j_2-k_3)!\, ! (n-k_1-k_2-j_3)! \\ ! &\times(j_1+j_2+k_1+k_2-n)!\,(j_2+j_3+k_2+k_3-n)!\,(j_1+j_3+k_1+k_3-n)! ! \end{align*} ! and ! $$ \Delta(a,b,c)=\frac{(a+b-c)!\,(a-b+c)!\,(-a+b+c)!}{(a+b+c+1)!} $$ ! is the triangle coefficient, and where the sum is over all integers $n$ for ! which the factorials in $f(n)$ have non-negative arguments. The Wigner-$6j$ ! function is zero unless each triad, $(j_1\,j_2\,j_3)$, $(j_1\,k_2\,k_3)$, ! $(k_1\,j_2\,k_3)$ and $(k_1\,k_2\,j_3)$, satifies the triangle inequalities: ! $$ |x-y|\le z \le x+y, $$ ! for triad $(x,y,z)$. See, for example, A. Messiah, {\it Quantum Mechanics}, ! Vol. 2., 1061-1066 (1962). ! ! !REVISION HISTORY: ! Created August 2009 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: j1,j2,j3 integer, intent(in) :: k1,k2,k3 ! local variables integer n0,n1,n real(8) sm,t1,t2 ! external functions real(8), external :: factnm,factr wigner6j=0.d0 if ((abs(j1-j2).gt.j3).or.((j1+j2).lt.j3)) return if ((abs(j1-k2).gt.k3).or.((j1+k2).lt.k3)) return if ((abs(k1-j2).gt.k3).or.((k1+j2).lt.k3)) return if ((abs(k1-k2).gt.j3).or.((k1+k2).lt.j3)) return if ((abs(j1).gt.50).or.(abs(j2).gt.50).or.(abs(j3).gt.50).or. & (abs(k1).gt.50).or.(abs(k2).gt.50).or.(abs(k3).gt.50)) then write(*,*) write(*,'("Error(wigner6j): arguments out of range :")') write(*,'(" j1, j2, j3 = ",3I8)') j1,j2,j3 write(*,'(" k1, k2, k3 = ",3I8)') k1,k2,k3 write(*,*) stop end if ! range for summation n0=max(j1+j2+j3,j1+k2+k3,k1+j2+k3,k1+k2+j3) n1=min(j1+j2+k1+k2,j2+j3+k2+k3,j1+j3+k1+k3) ! Racah formula summation sm=0.d0 do n=n0,n1 t1=dble((-1)**n)*factr(n+1,n-(j1+j2+j3)) t2=factnm(n-(j1+k2+k3),1)*factnm(n-(k1+j2+k3),1)*factnm(n-(k1+k2+j3),1) t2=t2*factnm(j1+j2+k1+k2-n,1)*factnm(j2+j3+k2+k3-n,1)*factnm(j1+j3+k1+k3-n,1) sm=sm+t1/t2 end do ! multiply by prefactor wigner6j=sqrt(triangle(j1,j2,j3)*triangle(j1,k2,k3) & *triangle(k1,j2,k3)*triangle(k1,k2,j3))*sm return contains real(8) function triangle(a,b,c) implicit none ! arguments integer, intent(in) :: a,b,c ! external functions real(8), external :: factnm,factr triangle=factr(a+b-c,a+b+c+1)*factnm(a-b+c,1)*factnm(-a+b+c,1) end function end function !EOC elk-7.2.42/src/PaxHeaders.21776/genhvec.f900000644000000000000000000000013214061636517014663 xustar0030 mtime=1623670095.073102345 30 atime=1623670093.812103516 30 ctime=1623670095.073102345 elk-7.2.42/src/genhvec.f900000644002504400250440000000611214061636517016720 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 Alexey I. Baranov. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genhvec use modmain use modpw implicit none ! local variables logical lsym(48) integer ih,jh,kh,lh,k integer i1,i2,i3,iv(3) integer nsym,isym,sym(3,3,48) real(8) v1(3),v2(3),v3(3) ! allocatable arrays integer, allocatable :: idx(:),ivh0(:,:) real(8), allocatable :: vhc0(:,:),hc0(:) ! find the H-vector grid sizes call gridsize(avec,hmaxvr,ngridh,nhtot,inthv) ! allocate global H-vector arrays if (allocated(ivh)) deallocate(ivh) allocate(ivh(3,nhtot)) if (allocated(mulh)) deallocate(mulh) allocate(mulh(nhtot)) if (allocated(vhc)) deallocate(vhc) allocate(vhc(3,nhtot)) if (allocated(hc)) deallocate(hc) allocate(hc(nhtot)) ! allocate local arrays allocate(idx(nhtot),ivh0(3,nhtot)) allocate(vhc0(3,nhtot),hc0(nhtot)) ih=0 do i1=inthv(1,1),inthv(2,1) v1(:)=dble(i1)*bvec(:,1) do i2=inthv(1,2),inthv(2,2) v2(:)=v1(:)+dble(i2)*bvec(:,2) do i3=inthv(1,3),inthv(2,3) v3(:)=v2(:)+dble(i3)*bvec(:,3) ih=ih+1 ! map from H-vector to (i1,i2,i3) index ivh0(1,ih)=i1 ivh0(2,ih)=i2 ivh0(3,ih)=i3 ! H-vector in Cartesian coordinates vhc0(:,ih)=v3(:) ! length of each H-vector hc0(ih)=sqrt(v3(1)**2+v3(2)**2+v3(3)**2) end do end do end do ! sort by vector length call sortidx(nhtot,hc0,idx) ! reorder arrays do ih=1,nhtot jh=idx(ih) ivh(:,ih)=ivh0(:,jh) hc(ih)=hc0(jh) vhc(:,ih)=vhc0(:,jh) end do ! find the number of vectors with H < hmaxvr nhvec=1 do ih=nhtot,1,-1 if (hc(ih).lt.hmaxvr) then nhvec=ih exit end if end do ! find the subgroup of symmorphic, non-magnetic symmetries lsym(:)=.false. do isym=1,nsymcrys if (tv0symc(isym).and.(lspnsymc(isym).eq.1)) lsym(lsplsymc(isym))=.true. end do nsym=0 do isym=1,nsymlat if (lsym(isym)) then nsym=nsym+1 sym(:,:,nsym)=symlat(:,:,isym) end if end do if (reduceh) then ! find the subgroup of symmorphic, non-magnetic symmetries lsym(:)=.false. do isym=1,nsymcrys if (tv0symc(isym).and.(lspnsymc(isym).eq.1)) lsym(lsplsymc(isym))=.true. end do nsym=0 do isym=1,nsymlat if (lsym(isym)) then nsym=nsym+1 sym(:,:,nsym)=symlat(:,:,isym) end if end do else ! use only the identity element if no reduction is required nsym=1 end if ! reduce the H-vector set with the symmetries if required if (nsym.gt.1) then ivh0(:,1:nhvec)=ivh(:,1:nhvec) hc0(1:nhvec)=hc(1:nhvec) vhc0(:,1:nhvec)=vhc(:,1:nhvec) kh=0 lh=nhvec do ih=1,nhvec do isym=1,nsym call i3mtv(sym(:,:,isym),ivh0(:,ih),iv(:)) do jh=1,kh k=abs(ivh(1,jh)-iv(1))+abs(ivh(2,jh)-iv(2))+abs(ivh(3,jh)-iv(3)) if (k.eq.0) then ivh(:,lh)=ivh0(:,ih) hc(lh)=hc0(ih) vhc(:,lh)=vhc0(:,ih) lh=lh-1 mulh(jh)=mulh(jh)+1 goto 10 end if end do end do kh=kh+1 ivh(:,kh)=ivh0(:,ih) hc(kh)=hc0(ih) vhc(:,kh)=vhc0(:,ih) mulh(kh)=1 10 continue end do nhvec=kh else mulh(:)=1 end if deallocate(idx,ivh0,vhc0,hc0) end subroutine elk-7.2.42/src/PaxHeaders.21776/ylmrot.f900000644000000000000000000000013214061636517014572 xustar0030 mtime=1623670095.075102343 30 atime=1623670093.813103515 30 ctime=1623670095.075102343 elk-7.2.42/src/ylmrot.f900000644002504400250440000000407214061636517016632 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: ylmrot ! !INTERFACE: subroutine ylmrot(p,ang,lmax,ld,d) ! !INPUT/OUTPUT PARAMETERS: ! p : if p=-1 then the rotation matrix is improper (in,integer) ! ang : Euler angles; alpha, beta, gamma (in,real(3)) ! lmax : maximum angular momentum (in,integer) ! ld : leading dimension (in,integer) ! d : complex spherical harmonic rotation matrix (out,complex(ld,*)) ! !DESCRIPTION: ! Returns the rotation matrix in the basis of complex spherical harmonics ! given the three Euler angles, $(\alpha,\beta,\gamma)$, and the parity, $p$, ! of the rotation. The matrix is given by the formula ! $$ D^l_{m_1m_2}(\alpha,\beta,\gamma)=d^l_{m_1m_2}(\beta) ! e^{-i(m_1\alpha+m_2\gamma)}, $$ ! where $d$ is the rotation matrix about the $y$-axis. For improper rotations, ! i.e. those which are a combination of a rotation and inversion, $D$ is ! modified with $D^l_{m_1m_2}\rightarrow(-1)^l D^l_{m_1m_2}$. See the routines ! {\tt roteuler} and {\tt ylmroty}. ! ! !REVISION HISTORY: ! Created December 2008 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: p real(8), intent(in) :: ang(3) integer, intent(in) :: lmax,ld complex(8), intent(out) :: d(ld,*) ! local variables integer l,m1,m2 integer lm1,lm2,n real(8) t1 ! automatic arrays real(8) dy(ld,ld) if (lmax.lt.0) then write(*,*) write(*,'("Error(ylmrot): lmax < 0 : ",I8)') lmax write(*,*) stop end if ! generate the rotation matrix about the y-axis call ylmroty(ang(2),lmax,ld,dy) ! apply inversion if required if (p.eq.-1) then do l=1,lmax,2 lm1=l**2+1 lm2=lm1+2*l dy(lm1:lm2,lm1:lm2)=-dy(lm1:lm2,lm1:lm2) end do end if ! rotation by alpha and gamma do l=0,lmax n=l*(l+1)+1 do m1=-l,l lm1=n+m1 do m2=-l,l lm2=n+m2 t1=-dble(m1)*ang(1)-dble(m2)*ang(3) d(lm1,lm2)=dy(lm1,lm2)*cmplx(cos(t1),sin(t1),8) end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/wxcplot.f900000644000000000000000000000013214061636517014744 xustar0030 mtime=1623670095.076102343 30 atime=1623670093.815103513 30 ctime=1623670095.076102343 elk-7.2.42/src/wxcplot.f900000644002504400250440000000252214061636517017002 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wxcplot use modmain implicit none ! initialise universal variables call init0 if (xcgrad.ne.4) then write(*,*) write(*,'("Error(wxcplot): meta-GGA not in use")') write(*,*) stop end if ! read the density and potentials from file call readstate ! write the potential plots to file select case(task) case(341) open(50,file='WXC1D.OUT',form='FORMATTED') open(51,file='WLINES.OUT',form='FORMATTED') call plot1d(50,51,1,wxcmt,wxcir) close(50) close(51) write(*,*) write(*,'("Info(wxcplot):")') write(*,'(" 1D meta-GGA exchange-correlation potential written to & &WXC1D.OUT")') write(*,'(" vertex location lines written to WLINES.OUT")') case(342) open(50,file='WXC2D.OUT',form='FORMATTED') call plot2d(.false.,50,1,wxcmt,wxcir) close(50) write(*,*) write(*,'("Info(wxcplot):")') write(*,'(" 2D meta-GGA exchange-correlation potential written to & &WXC2D.OUT")') case(343) open(50,file='WXC3D.OUT',form='FORMATTED') call plot3d(50,1,wxcmt,wxcir) close(50) write(*,*) write(*,'("Info(wxcplot):")') write(*,'(" 3D meta-GGA exchange-correlation potential written to & &WXC3D.OUT")') end select end subroutine elk-7.2.42/src/PaxHeaders.21776/massnucl.f900000644000000000000000000000013214061636517015071 xustar0030 mtime=1623670095.078102341 30 atime=1623670093.816103512 30 ctime=1623670095.078102341 elk-7.2.42/src/massnucl.f900000644002504400250440000000373514061636517017136 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: massnucl ! !INTERFACE: elemental real(8) function massnucl(z) ! !INPUT/OUTPUT PARAMETERS: ! z : atomic number (in,real) ! !DESCRIPTION: ! Computes an approximate nuclear mass from the atomic number $Z$. The nuclear ! mass number, $A$, is first estimated using ! $$ A=4.467\times 10^{-3}Z^2+2.163 Z-1.168, $$ ! [D. Andrae in {\it Relativistic Electronic Structure Theory - Fundamentals} ! {\bf 11}, 203 (2002)]. Then the nuclear mass can be determined from: ! $$ M=Z m_p+N m_n-\frac{B}{c^2}, $$ ! where $m_p$ is the proton mass, $m_n$ is the neutron mass and $B$ is the ! nuclear binding energy. The binding energy is approximated by the ! Weizs\"{a}cker formula: ! $$ B=a_V A-a_S A^{2/3}-a_C Z^2 A^{-1/3}-a_{\rm sym}(Z-N)^2A^{-1} ! +B_p+B_{\rm shell}. $$ ! See F. Yang and J. H. Hamilton in {\it Modern Atomic and Nuclear Physics}, ! Revised Edition 2010, for details on the quantities in this formula. In this ! implementation, $B_p$ and $B_{\rm shell}$ are set to zero. ! ! !REVISION HISTORY: ! Created February 2014 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: z ! local variables ! coefficients for computing mass number real(8), parameter :: c2=4.467d-3, c1=2.163d0, c0=-1.168d0 ! Weizsacker coefficients in MeV real(8), parameter :: av=15.8d0, as=18.3d0, ac=0.72d0, asym=23.2d0 ! proton and neutron masses in MeV/c^2 (CODATA 2018) real(8), parameter :: mp=938.27208816d0 real(8), parameter :: mn=939.56542052d0 ! atomic mass unit in MeV/c^2 (CODATA 2018) real(8), parameter :: mu=931.49410242d0 real(8) za,n,a,b za=abs(z) ! approximate nuclear mass number if (za.le.1.d0) then a=1.d0 else a=abs(c2*za**2+c1*za+c0) end if n=a-za b=av*a-as*a**(2.d0/3.d0)-ac*(za**2)/a**(1.d0/3.d0)-asym*(za-n)**2/a massnucl=(za*mp+n*mn-b)/mu end function !EOC elk-7.2.42/src/PaxHeaders.21776/gendmatk.f900000644000000000000000000000012714061636517015042 xustar0029 mtime=1623670095.07910234 29 atime=1623670093.81810351 29 ctime=1623670095.07910234 elk-7.2.42/src/gendmatk.f900000644002504400250440000000674014061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendmatk(tspndg,tlmdg,lmin,lmax,ias,ngp,apwalm,evecfv,evecsv,ld,dmat) use modmain implicit none ! arguments logical, intent(in) :: tspndg,tlmdg integer, intent(in) :: lmin,lmax integer, intent(in) :: ias integer, intent(in) :: ngp(nspnfv) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv,nspnfv) complex(8), intent(in) :: evecsv(nstsv,nstsv) integer, intent(in) :: ld complex(8), intent(out) :: dmat(ld,nspinor,ld,nspinor,nstsv) ! local variables integer ist,ispn,jspn,is integer nrc,nrci,irco,irc integer l,lma,lmb,lm1,lm2 integer npc,npci,i1,i2,i,j complex(8) zq(2),zsm,z1 ! automatic arrays logical done(nstfv,nspnfv) ! allocatable arrays complex(8), allocatable :: wfmt1(:,:,:),wfmt2(:,:) if (lmin.lt.0) then write(*,*) write(*,'("Error(gendmatk): lmin < 0 : ",I8)') lmin write(*,*) stop end if if (lmax.gt.lmaxo) then write(*,*) write(*,'("Error(gendmatk): lmax > lmaxo : ",2I8)') lmax,lmaxo write(*,*) stop end if ! allocate local arrays allocate(wfmt1(npcmtmax,nstfv,nspnfv),wfmt2(npcmtmax,nspinor)) ! species and atom numbers is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) irco=nrci+1 npc=npcmt(is) npci=npcmti(is) ! de-phasing factor for spin-spirals if (ssdph) then zq(1)=zqss(ias) zq(2)=conjg(zq(1)) end if ! zero the density matrix dmat(:,:,:,:,:)=0.d0 done(:,:)=.false. ! begin loop over second-variational states do j=1,nstsv if (tevecsv) then ! generate spinor wavefunction from second-variational eigenvectors wfmt2(1:npc,:)=0.d0 i=0 do ispn=1,nspinor jspn=jspnfv(ispn) do ist=1,nstfv i=i+1 z1=evecsv(i,j) if (ssdph) z1=z1*zq(ispn) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then if (.not.done(ist,jspn)) then call wavefmt(lradstp,ias,ngp(jspn),apwalm(:,:,:,ias,jspn), & evecfv(:,ist,jspn),wfmt1(:,ist,jspn)) done(ist,jspn)=.true. end if ! add to spinor wavefunction wfmt2(1:npc,ispn)=wfmt2(1:npc,ispn)+z1*wfmt1(1:npc,ist,jspn) end if end do end do else ! spin-unpolarised wavefunction call wavefmt(lradstp,ias,ngp,apwalm(:,:,:,ias,1),evecfv(:,j,1),wfmt2) end if do ispn=1,nspinor do jspn=1,nspinor if (tspndg.and.(ispn.ne.jspn)) cycle do l=lmin,lmax lma=l**2+1; lmb=lma+2*l do lm1=lma,lmb do lm2=lma,lmb if (tlmdg.and.(lm1.ne.lm2)) cycle if (l.le.lmaxi) then zsm=0.d0 i1=lm1; i2=lm2 do irc=1,nrci zsm=zsm+wfmt2(i1,ispn)*conjg(wfmt2(i2,jspn))*wrcmt(irc,is) i1=i1+lmmaxi; i2=i2+lmmaxi end do do irc=irco,nrc zsm=zsm+wfmt2(i1,ispn)*conjg(wfmt2(i2,jspn))*wrcmt(irc,is) i1=i1+lmmaxo; i2=i2+lmmaxo end do else zsm=0.d0 i1=npci+lm1; i2=npci+lm2 do irc=irco,nrc zsm=zsm+wfmt2(i1,ispn)*conjg(wfmt2(i2,jspn))*wrcmt(irc,is) i1=i1+lmmaxo; i2=i2+lmmaxo end do end if dmat(lm1,ispn,lm2,jspn,j)=zsm end do end do end do end do end do ! end loop over second-variational states end do deallocate(wfmt1,wfmt2) end subroutine elk-7.2.42/src/PaxHeaders.21776/rfplot.f900000644000000000000000000000013214061636517014552 xustar0030 mtime=1623670095.081102338 30 atime=1623670093.820103508 30 ctime=1623670095.081102338 elk-7.2.42/src/rfplot.f900000644002504400250440000000756414061636517016623 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rfplot(np,vpl,rfmt,rfir,fp) use modmain use modomp implicit none ! arguments integer, intent(in) :: np real(8), intent(in) :: vpl(3,np) real(8), intent(in) :: rfmt(npmtmax,natmtot),rfir(ngtot) real(8), intent(out) :: fp(np) ! local variables integer ias,is,ip,nthd ! allocatable arrays real(8), allocatable :: rfmt1(:,:,:) complex(8), allocatable :: zfft(:) ! unpack the muffin-tin function allocate(rfmt1(lmmaxo,nrmtmax,natmtot)) call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call rfmtpack(.false.,nrmt(is),nrmti(is),rfmt(:,ias),rfmt1(:,:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! Fourier transform rfir to G-space allocate(zfft(ngtot)) zfft(:)=rfir(:) call zfftifc(3,ngridg,-1,zfft) ! begin loop over all points call holdthd(np,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ip=1,np call rfip(ip) end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(rfmt1,zfft) return contains subroutine rfip(ip) implicit none ! arguments integer, intent(in) :: ip ! local variables integer is,ia,ias,nr,nri integer ir0,ir,lmax,l,m,lm integer ig,ifg,i1,i2,i3,i,j real(8) rmt2,r,sm,ya(4),t1 real(8) v1(3),v2(3),v3(3),v4(3),v5(3) ! automatic arrays real(8) rlm(lmmaxo) v2(:)=vpl(:,ip) call r3frac(epslat,v2) ! convert point to Cartesian coordinates call r3mv(avec,v2,v1) ! check if point is in a muffin-tin do is=1,nspecies nr=nrmt(is) nri=nrmti(is) rmt2=rmt(is)**2 do ia=1,natoms(is) ias=idxas(ia,is) v2(:)=v1(:)-atposc(:,ia,is) do i1=-1,1 v3(:)=v2(:)+dble(i1)*avec(:,1) do i2=-1,1 v4(:)=v3(:)+dble(i2)*avec(:,2) do i3=-1,1 v5(:)=v4(:)+dble(i3)*avec(:,3) t1=v5(1)**2+v5(2)**2+v5(3)**2 if (t1.lt.rmt2) then r=sqrt(t1) call genrlmv(lmaxo,v5,rlm) do ir=1,nr if (rsp(ir,is).ge.r) then if (ir.le.3) then ir0=1 else if (ir.gt.nr-2) then ir0=nr-3 else ir0=ir-2 end if r=max(r,rsp(1,is)) if (ir0.le.nri) then lmax=lmaxi else lmax=lmaxo end if sm=0.d0 lm=0 do l=0,lmax do m=-l,l lm=lm+1 do j=1,4 i=ir0+j-1 ya(j)=rfmt1(lm,i,ias) end do t1=poly4(rsp(ir0,is),ya,r) sm=sm+t1*rlm(lm) end do end do goto 10 end if end do end if end do end do end do end do end do ! otherwise use direct Fourier transform of interstitial function sm=0.d0 do ig=1,ngvec ifg=igfft(ig) t1=vgc(1,ig)*v1(1)+vgc(2,ig)*v1(2)+vgc(3,ig)*v1(3) sm=sm+dble(zfft(ifg)*cmplx(cos(t1),sin(t1),8)) end do 10 continue fp(ip)=sm end subroutine pure real(8) function poly4(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(4),ya(4),x ! local variables real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) c1,c2,c3,t0,t1,t2,t3,t4,t5,t6 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0; x3=xa(4)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0; y3=ya(4)-y0 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 c3=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 c2=t1*(t5-t4)+t2*(t6-t5)+t3*(t4-t6) c1=t1*(x2*t4-x1*t5)+t2*(x3*t5-x2*t6)+t3*(x1*t6-x3*t4) t1=x-x0 ! evaluate the polynomial poly4=y0+t0*t1*(c1+t1*(c2+c3*t1)) end function end subroutine elk-7.2.42/src/PaxHeaders.21776/straingkq.f900000644000000000000000000000013214061636517015247 xustar0030 mtime=1623670095.082102337 30 atime=1623670093.821103507 30 ctime=1623670095.082102337 elk-7.2.42/src/straingkq.f900000644002504400250440000000443314061636517017310 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine straingkq use modmain use modulr use modstore implicit none integer is,ia,ig integer nppt,ik,igk integer jspn,iq real(8) ta(3,3),tb(3,3),vc(3) if ((istrain.lt.1).or.(istrain.gt.nstrain)) return ! compute the strained lattice vectors avec(:,:)=avec_(:,:)+deltast*strain(:,:,istrain) ! generate the strained reciprocal lattice vectors and unit cell volume call reciplat(avec,bvec,omega,omegabz) ! determine the transformation matrix to the strained vectors call r3mm(avec,ainv,ta) call r3mm(bvec,binv,tb) ! recalculate all required variables which depend on avec call r3minv(avec,ainv) call r3minv(bvec,binv) call r3mv(bvec,vqlss,vqcss) do is=1,nspecies do ia=1,natoms(is) call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do call r3mv(bvec,vecql,vecqc) call r3mv(ainv,efieldc,efieldl) call r3mv(ainv,afieldc,afieldl) call symmetry ! apply the transformation matrix to the G-vectors do ig=1,ngtot vc(:)=vgc(:,ig) call r3mv(tb,vc,vgc(:,ig)) gc(ig)=sqrt(vgc(1,ig)**2+vgc(2,ig)**2+vgc(3,ig)**2) end do ! recalculate variables which depend on the G-vectors call gengclg call genjlgprmt(lnpsd,ngvec,gc,ngvec,jlgrmt) call genylmg call gensfacgp(ngvec,vgc,ngvec,sfacg) do is=1,nspecies call genffacgp(is,gc,ffacg(:,is)) end do call gencfun call gencfrc call energynn ! apply the transformation to the k-vectors do ik=1,nkptnr vc(:)=vkc(:,ik) call r3mv(tb,vc,vkc(:,ik)) end do ! apply the transformation to G+k-vectors and recalculate dependent variables if (xctype(1).lt.0) then nppt=nkptnr else nppt=nkpt end if do ik=1,nppt do jspn=1,nspnfv do igk=1,ngk(jspn,ik) vc(:)=vgkc(:,igk,jspn,ik) call r3mv(tb,vc,vgkc(:,igk,jspn,ik)) gkc(igk,jspn,ik)=sqrt(vgkc(1,igk,jspn,ik)**2 & +vgkc(2,igk,jspn,ik)**2 & +vgkc(3,igk,jspn,ik)**2) end do call gensfacgp(ngk(jspn,ik),vgkc(:,:,jspn,ik),ngkmax,sfacgk(:,:,jspn,ik)) end do end do ! apply the transformation to the q-vectors if required if (xctype(1).lt.0) then do iq=1,nqptnr vc(:)=vqc(:,iq) call r3mv(tb,vc,vqc(:,iq)) end do call gengclq end if end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnit.f900000644000000000000000000000013214061636517014717 xustar0030 mtime=1623670095.084102335 30 atime=1623670093.823103505 30 ctime=1623670095.084102335 elk-7.2.42/src/eveqnit.f900000644002504400250440000001351114061636517016755 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnit(nmatp,ngp,igpig,vpl,vgpl,vgpc,apwalm,evalfv,evecfv) use modmain use modomp implicit none ! arguments integer, intent(in) :: nmatp,ngp integer, intent(in) :: igpig(ngkmax) real(8), intent(in) :: vpl(3) real(8), intent(in) :: vgpl(3,ngkmax),vgpc(3,ngkmax) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) real(8), intent(out) :: evalfv(nstfv) complex(8), intent(out) :: evecfv(nmatmax,nstfv) ! local variables integer n2,ns,ist,i integer is,ias,it,nthd integer lwork,info real(8) rmax,t1 real(8) ts1,ts0 ! allocatable arrays real(8), allocatable :: w(:),rwork(:) complex(8), allocatable :: h(:,:),o(:,:),hv(:,:),ov(:,:) complex(8), allocatable :: u(:,:),hu(:,:),ou(:,:) complex(8), allocatable :: hs(:,:),os(:,:),work(:) ! external functions complex(8), external :: zdotc n2=2*nmatp ns=2*nstfv if (iscl.ge.2) then ! read in the eigenvalues/vectors from file call getevalfv(filext,0,vpl,evalfv) call getevecfv(filext,0,vpl,vgpl,evecfv) else ! initialise the eigenvectors to canonical basis vectors evecfv(1:nmatp,:)=0.d0 do ist=1,nstfv evecfv(ist,ist)=1.d0 end do end if ! compute Hamiltonian and overlap matrices call timesec(ts0) allocate(h(nmatp,nmatp),o(nmatp,nmatp)) call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP PRIVATE(i,ias,is) & !$OMP NUM_THREADS(nthd) !$OMP SECTION ! Hamiltonian do i=1,nmatp h(1:i,i)=0.d0 end do do ias=1,natmtot is=idxis(ias) call hmlaa(tefvr,is,ias,ngp,apwalm(:,:,:,ias),nmatp,h) call hmlalo(is,ias,ngp,apwalm(:,:,:,ias),nmatp,h) call hmllolo(is,ias,ngp,nmatp,h) end do call hmlistl(ngp,igpig,vgpc,nmatp,h) !$OMP SECTION ! overlap do i=1,nmatp o(1:i,i)=0.d0 end do do ias=1,natmtot is=idxis(ias) call olpaa(tefvr,is,ngp,apwalm(:,:,:,ias),nmatp,o) call olpalo(is,ias,ngp,apwalm(:,:,:,ias),nmatp,o) call olplolo(is,ias,ngp,nmatp,o) end do call olpistl(ngp,igpig,nmatp,o) !$OMP END PARALLEL SECTIONS call freethd(nthd) call timesec(ts1) !$OMP ATOMIC timemat=timemat+ts1-ts0 call timesec(ts0) allocate(w(ns),rwork(3*ns)) allocate(hv(nmatp,nstfv),ov(nmatp,nstfv)) allocate(u(nmatp,nstfv),hu(nmatp,nstfv),ou(nmatp,nstfv)) allocate(hs(ns,ns),os(ns,ns)) lwork=2*ns allocate(work(lwork)) ! start iteration loop do it=1,maxitefv rmax=0.d0 call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(t1) & !$OMP NUM_THREADS(nthd) do ist=1,nstfv ! operate with O on the current eigenvector call zhemv('U',nmatp,zone,o,nmatp,evecfv(:,ist),1,zzero,ov(:,ist),1) ! normalise the eigenvector t1=dble(zdotc(nmatp,evecfv(:,ist),1,ov(:,ist),1)) if (t1.gt.0.d0) then t1=1.d0/sqrt(t1) call dscal(n2,t1,evecfv(:,ist),1) call dscal(n2,t1,ov(:,ist),1) end if ! operate with H on the current eigenvector call zhemv('U',nmatp,zone,h,nmatp,evecfv(:,ist),1,zzero,hv(:,ist),1) ! estimate the eigenvalue t1=dble(zdotc(nmatp,evecfv(:,ist),1,hv(:,ist),1)) if ((iscl.le.1).and.(it.eq.1)) then evalfv(ist)=t1 else evalfv(ist)=(1.d0-befvit)*evalfv(ist)+befvit*t1 end if ! compute the residual |u> = (H - eO)|v> call zcopy(nmatp,hv(:,ist),1,u(:,ist),1) call daxpy(n2,-evalfv(ist),ov(:,ist),1,u(:,ist),1) ! apply the overlap matrix to the residual call zhemv('U',nmatp,zone,o,nmatp,u(:,ist),1,zzero,ou(:,ist),1) ! compute the overlap of the residual with itself t1=dble(zdotc(nmatp,u(:,ist),1,ou(:,ist),1)) !$OMP CRITICAL(eveqnit_) if (t1.gt.rmax) rmax=t1 !$OMP END CRITICAL(eveqnit_) ! normalise the residual if (t1.gt.0.d0) then t1=1.d0/sqrt(t1) call dscal(n2,t1,u(:,ist),1) call dscal(n2,t1,ou(:,ist),1) end if ! apply the Hamiltonian matrix to the residual call zhemv('U',nmatp,zone,h,nmatp,u(:,ist),1,zzero,hu(:,ist),1) end do !$OMP END PARALLEL DO call freethd(nthd) ! compute the Hamiltonian and overlap matrices in the subspace formed by the ! eigenvectors and their residuals call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist=1,nstfv call zgemv('C',nmatp,nstfv,zone,evecfv,nmatmax,hv(:,ist),1,zzero, & hs(1,ist),1) call zgemv('C',nmatp,nstfv,zone,evecfv,nmatmax,hu(:,ist),1,zzero, & hs(1,nstfv+ist),1) call zgemv('C',nmatp,nstfv,zone,u,nmatp,hu(:,ist),1,zzero, & hs(nstfv+1,nstfv+ist),1) end do !$OMP END PARALLEL DO call freethd(nthd) call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist=1,nstfv call zgemv('C',nmatp,nstfv,zone,evecfv,nmatmax,ov(:,ist),1,zzero, & os(1,ist),1) call zgemv('C',nmatp,nstfv,zone,evecfv,nmatmax,ou(:,ist),1,zzero, & os(1,nstfv+ist),1) call zgemv('C',nmatp,nstfv,zone,u,nmatp,ou(:,ist),1,zzero, & os(nstfv+1,nstfv+ist),1) end do !$OMP END PARALLEL DO call freethd(nthd) ! solve the generalised eigenvalue problem in the subspace call zhegv(1,'V','U',ns,hs,ns,os,ns,w,work,lwork,rwork,info) if (info.ne.0) exit ! construct the new eigenvectors call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist=1,nstfv call zgemv('N',nmatp,nstfv,zone,evecfv,nmatmax,hs(1,ist),1,zzero, & ov(:,ist),1) call zgemv('N',nmatp,nstfv,zone,u,nmatp,hs(nstfv+1,ist),1,zone,ov(:,ist),1) end do !$OMP END PARALLEL DO call freethd(nthd) call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist=1,nstfv call zcopy(nmatp,ov(:,ist),1,evecfv(:,ist),1) end do !$OMP END PARALLEL DO call freethd(nthd) ! check for convergence rmax=sqrt(abs(rmax)/dble(nmatp)) if ((it.ge.minitefv).and.(rmax.lt.epsefvit)) exit ! end iteration loop end do deallocate(w,rwork,h,o,hv,ov) deallocate(u,hu,ou,hs,os,work) call timesec(ts1) !$OMP ATOMIC timefv=timefv+ts1-ts0 end subroutine elk-7.2.42/src/PaxHeaders.21776/oepmain.f900000644000000000000000000000013214061636517014674 xustar0030 mtime=1623670095.085102334 30 atime=1623670093.825103504 30 ctime=1623670095.085102334 elk-7.2.42/src/oepmain.f900000644002504400250440000001321414061636517016732 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine oepmain use modmain use modmpi use modomp implicit none ! local variables integer ik,idm,is,ias integer nrc,nrci,np,npc integer n,nthd,it real(8) tau,t1 ! allocatable arrays real(8), allocatable :: dvxmt(:,:),dvxir(:) real(8), allocatable :: dbxmt(:,:,:),dbxir(:,:) real(8), allocatable :: rfmt1(:,:),rfmt2(:),rfir(:) real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) complex(8), allocatable :: vclcv(:,:,:,:),vclvv(:,:,:) ! external functions real(8), external :: rfint,rfinpc if (iscl.le.0) return ! calculate Coulomb matrix elements allocate(vclcv(ncrmax,natmtot,nstsv,nkpt),vclvv(nstsv,nstsv,nkpt)) call oepvcl(vclcv,vclvv) ! allocate local arrays allocate(dvxmt(npcmtmax,natmtot),dvxir(ngtot)) allocate(rfmt1(npmtmax,natmtot),rfir(ngtot)) if (spinpol) then allocate(dbxmt(npcmtmax,natmtot,ndmag),dbxir(ngtot,ndmag)) allocate(rvfmt(npmtmax,natmtot,ndmag),rvfir(ngtot,ndmag)) end if ! initialise the exchange potential and magnetic field tau=tauoep(2) vxmt(:,:)=tau*vxmt(:,:) vxir(:)=tau*vxir(:) if (spinpol) then bxmt(:,:,:)=tau*bxmt(:,:,:) bxir(:,:)=tau*bxir(:,:) end if ! iterative method step size tau=tauoep(1) !------------------------------! ! start iteration loop ! !------------------------------! do it=1,maxitoep if (mp_mpi.and.(mod(it,10).eq.0)) then write(*,'("Info(oepmain): done ",I4," iterations of ",I4)') it,maxitoep end if ! zero the residuals dvxmt(:,:)=0.d0 dvxir(:)=0.d0 if (spinpol) then dbxmt(:,:,:)=0.d0 dbxir(:,:)=0.d0 end if ! calculate the k-dependent residuals call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call oepresk(ik,vclcv,vclvv,dvxmt,dvxir,dbxmt,dbxir) end do !$OMP END PARALLEL DO call freethd(nthd) ! add residuals from each process and redistribute if (np_mpi.gt.1) then n=npcmtmax*natmtot call mpi_allreduce(mpi_in_place,dvxmt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) call mpi_allreduce(mpi_in_place,dvxir,ngtot,mpi_double_precision, & mpi_sum,mpicom,ierror) if (spinpol) then n=n*ndmag call mpi_allreduce(mpi_in_place,dbxmt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) n=ngtot*ndmag call mpi_allreduce(mpi_in_place,dbxir,n,mpi_double_precision,mpi_sum, & mpicom,ierror) end if end if ! convert muffin-tin residuals to spherical harmonics call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is,nrc,nrci,idm) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) call rfsht(nrc,nrci,dvxmt(:,ias),rfmt1(:,ias)) do idm=1,ndmag call rfsht(nrc,nrci,dbxmt(:,ias,idm),rvfmt(:,ias,idm)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! symmetrise the residuals call symrf(nrcmt,nrcmti,npcmt,ngridg,ngtot,ngvec,igfft,npmtmax,rfmt1,dvxir) if (spinpol) call symrvf(.true.,ncmag,nrcmt,nrcmti,npcmt,ngridg,ngtot,ngvec, & igfft,npmtmax,rvfmt,ngtot,dbxir) ! magnitude of residuals resoep=rfinpc(npmtmax,rfmt1,dvxir,rfmt1,dvxir) do idm=1,ndmag t1=rfinpc(npmtmax,rvfmt(:,:,idm),dbxir(:,idm),rvfmt(:,:,idm),dbxir(:,idm)) resoep=resoep+t1 end do resoep=sqrt(resoep)/omega ! update exchange potential and magnetic field call holdthd(natmtot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(rfmt2,is,nrc,nrci,npc,idm) & !$OMP NUM_THREADS(nthd) allocate(rfmt2(npcmtmax)) !$OMP DO do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! convert residual to spherical coordinates call rbsht(nrc,nrci,rfmt1(:,ias),rfmt2) ! subtract from exchange potential vxmt(1:npc,ias)=vxmt(1:npc,ias)-tau*rfmt2(1:npc) ! repeat for exchange magnetic field do idm=1,ndmag call rbsht(nrc,nrci,rvfmt(:,ias,idm),rfmt2) bxmt(1:npc,ias,idm)=bxmt(1:npc,ias,idm)-tau*rfmt2(1:npc) end do end do !$OMP END DO deallocate(rfmt2) !$OMP END PARALLEL call freethd(nthd) vxir(:)=vxir(:)-tau*dvxir(:) do idm=1,ndmag bxir(:,idm)=bxir(:,idm)-tau*dbxir(:,idm) end do ! end iteration loop end do ! convert the exchange potential and field to spherical harmonics call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is,nrc,nrci,idm) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) call rfsht(nrc,nrci,vxmt(:,ias),rfmt1(:,ias)) do idm=1,ndmag call rfsht(nrc,nrci,bxmt(:,ias,idm),rvfmt(:,ias,idm)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! convert potential and field from a coarse to a fine radial mesh call rfmtctof(rfmt1) do idm=1,ndmag call rfmtctof(rvfmt(:,:,idm)) end do ! add to existing (density derived) correlation potential and field do ias=1,natmtot is=idxis(ias) np=npmt(is) vxcmt(1:np,ias)=vxcmt(1:np,ias)+rfmt1(1:np,ias) do idm=1,ndmag bxcmt(1:np,ias,idm)=bxcmt(1:np,ias,idm)+rvfmt(1:np,ias,idm) end do end do vxcir(:)=vxcir(:)+vxir(:) do idm=1,ndmag bxcir(:,idm)=bxcir(:,idm)+bxir(:,idm) end do ! symmetrise the exchange potential and field call symrf(nrmt,nrmti,npmt,ngridg,ngtot,ngvec,igfft,npmtmax,vxcmt,vxcir) if (spinpol) call symrvf(.true.,ncmag,nrmt,nrmti,npmt,ngridg,ngtot,ngvec,igfft,& npmtmax,bxcmt,ngtot,bxcir) deallocate(rfmt1,rfir,vclcv,vclvv) deallocate(dvxmt,dvxir) if (spinpol) then deallocate(rvfmt,rvfir) deallocate(dbxmt,dbxir) end if ! set the constant part of the exchange potential equal to zero call rfint0(0.d0,vxcmt,vxcir) end subroutine elk-7.2.42/src/PaxHeaders.21776/rdirac.f900000644000000000000000000000013214061636517014510 xustar0030 mtime=1623670095.087102332 30 atime=1623670093.826103503 30 ctime=1623670095.087102332 elk-7.2.42/src/rdirac.f900000644002504400250440000000714514061636517016554 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdirac ! !INTERFACE: subroutine rdirac(sol,n,l,k,nr,r,vr,eval,g0,f0) ! !INPUT/OUTPUT PARAMETERS: ! sol : speed of light in atomic units (in,real) ! n : principal quantum number (in,integer) ! l : quantum number l (in,integer) ! k : quantum number k (l or l+1) (in,integer) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! vr : potential on radial mesh (in,real(nr)) ! eval : eigenvalue without rest-mass energy (inout,real) ! g0 : major component of the radial wavefunction (out,real(nr)) ! f0 : minor component of the radial wavefunction (out,real(nr)) ! !DESCRIPTION: ! Finds the solution to the radial Dirac equation for a given potential $v(r)$ ! and quantum numbers $n$, $k$ and $l$. The method involves integrating the ! equation using the predictor-corrector method and adjusting $E$ until the ! number of nodes in the wavefunction equals $n-l-1$. The calling routine must ! provide an initial estimate for the eigenvalue. Note that the arrays ! {\tt g0} and {\tt f0} represent the radial functions multiplied by $r$. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: sol integer, intent(in) :: n,l,k,nr real(8), intent(in) :: r(nr),vr(nr) real(8), intent(inout) :: eval real(8), intent(out) :: g0(nr),f0(nr) ! local variables integer, parameter :: maxit=2000 integer kpa,it,ir integer nn,nnd,nndp ! energy convergence tolerance real(8), parameter :: eps=1.d-12 real(8) t1,de ! automatic arrays real(8) g1(nr),f1(nr),fr(nr) ! external functions real(8), external :: splint if (k.le.0) then write(*,*) write(*,'("Error(rdirac): k <= 0 : ",I8)') k write(*,*) stop end if if (k.gt.n) then write(*,*) write(*,'("Error(rdirac): incompatible n and k : ",2I8)') n,k write(*,*) stop end if if ((k.eq.n).and.(l.ne.k-1)) then write(*,*) write(*,'("Error(rdirac): incompatible n, k and l : ",3I8)') n,k,l write(*,*) stop end if if (k.eq.l) then kpa=k else if (k.eq.l+1) then kpa=-k else write(*,*) write(*,'("Error(rdirac): incompatible l and k : ",2I8)') l,k write(*,*) stop end if if (nr.lt.4) then write(*,*) write(*,'("Error(rdirac): nr < 4 : ",I8)') nr write(*,*) stop end if de=1.d0 nndp=0 do it=1,maxit ! integrate the Dirac equation call rdiracint(sol,kpa,eval,nr,r,vr,nn,g0,g1,f0,f1) ! check the number of nodes nnd=nn-(n-l-1) if (nnd.gt.0) then eval=eval-de else eval=eval+de end if if (it.gt.1) then if ((nnd.ne.0).or.(nndp.ne.0)) then if (nnd*nndp.le.0) then de=de*0.5d0 else de=de*1.1d0 end if end if end if nndp=nnd if (de.lt.eps*(abs(eval)+1.d0)) goto 20 end do write(*,*) write(*,'("Warning(rdirac): maximum iterations exceeded")') 20 continue ! find effective infinity and set wavefunction to zero after that point ! major component do ir=nr,2,-1 if ((g0(ir-1)*g0(ir).lt.0.d0).or.(g1(ir-1)*g1(ir).lt.0.d0)) then g0(ir:nr)=0.d0 exit end if end do ! minor component do ir=nr,2,-1 if ((f0(ir-1)*f0(ir).lt.0.d0).or.(f1(ir-1)*f1(ir).lt.0.d0)) then f0(ir:nr)=0.d0 exit end if end do ! normalise do ir=1,nr fr(ir)=g0(ir)**2+f0(ir)**2 end do t1=splint(nr,r,fr) t1=sqrt(abs(t1)) if (t1.le.0.d0) then write(*,*) write(*,'("Error(rdirac): zero wavefunction")') write(*,*) stop end if t1=1.d0/t1 call dscal(nr,t1,g0,1) call dscal(nr,t1,f0,1) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/unitary.f900000644000000000000000000000013214061636517014737 xustar0030 mtime=1623670095.088102331 30 atime=1623670093.828103501 30 ctime=1623670095.088102331 elk-7.2.42/src/unitary.f900000644002504400250440000000203314061636517016772 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine unitary(n,a) implicit none ! arguments integer, intent(in) :: n complex(8), intent(inout) :: a(n,n) ! local variables integer lwork,info complex(8), parameter :: zzero=(0.d0,0.d0) complex(8), parameter :: zone=(1.d0,0.d0) ! allocatable arrays real(8), allocatable :: s(:),rwork(:) complex(8), allocatable :: u(:,:),vt(:,:),work(:) ! perform singular value decomposition on matrix lwork=3*n allocate(s(n),rwork(5*n)) allocate(u(n,n),vt(n,n),work(lwork)) call zgesvd('A','A',n,n,a,n,s,u,n,vt,n,work,lwork,rwork,info) if (info.ne.0) then write(*,*) write(*,'("Error(unitary): singular value decomposition failed")') write(*,'(" ZGESVD returned INFO = ",I8)') info write(*,*) stop end if ! multiply the two unitary matrices together and store in the input matrix call zgemm('N','N',n,n,n,zone,u,n,vt,n,zzero,a,n) deallocate(s,rwork,u,vt,work) end subroutine elk-7.2.42/src/PaxHeaders.21776/bandstr.f900000644000000000000000000000013014061636517014677 xustar0030 mtime=1623670095.090102329 28 atime=1623670093.8291035 30 ctime=1623670095.090102329 elk-7.2.42/src/bandstr.f900000644002504400250440000001563314061636517016746 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: bandstr ! !INTERFACE: subroutine bandstr ! !USES: use modmain use modomp ! !DESCRIPTION: ! Produces a band structure along the path in reciprocal space which connects ! the vertices in the array {\tt vvlp1d}. The band structure is obtained from ! the second-variational eigenvalues and is written to the file {\tt BAND.OUT} ! with the Fermi energy set to zero. If required, band structures are plotted ! to files {\tt BAND\_Sss\_Aaaaa.OUT} for atom {\tt aaaa} of species {\tt ss}, ! which include the band characters for each $l$ component of that atom in ! columns 4 onwards. Column 3 contains the sum over $l$ of the characters. ! Vertex location lines are written to {\tt BANDLINES.OUT}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer ik,ist,ispn,is,ia,ias integer lmax,lmmax,l,m,lm,iv,nthd real(8) emin,emax,sm character(256) fname ! allocatable arrays real(8), allocatable :: evalfv(:,:),e(:,:) ! low precision for band character array saves memory real(4), allocatable :: bc(:,:,:,:) complex(8), allocatable :: dmat(:,:,:,:,:),apwalm(:,:,:,:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) ! initialise universal variables call init0 call init1 ! allocate array for storing the eigenvalues allocate(e(nstsv,nkpt)) ! maximum angular momentum for band character lmax=min(3,lmaxo) lmmax=(lmax+1)**2 if (task.eq.21) then allocate(bc(0:lmax,natmtot,nstsv,nkpt)) else if (task.eq.22) then allocate(bc(lmmax,natmtot,nstsv,nkpt)) else allocate(bc(nspinor,natmtot,nstsv,nkpt)) end if ! read density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr emin=1.d5 emax=-1.d5 ! begin parallel loop over k-points call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evalfv,evecfv,evecsv) & !$OMP PRIVATE(dmat,apwalm,ist,ispn) & !$OMP PRIVATE(ias,l,m,lm,sm) & !$OMP NUM_THREADS(nthd) allocate(evalfv(nstfv,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) if (task.ge.21) then allocate(dmat(lmmax,nspinor,lmmax,nspinor,nstsv)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) end if !$OMP DO do ik=1,nkpt !$OMP CRITICAL(bandstr_1) write(*,'("Info(bandstr): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(bandstr_1) ! solve the first- and second-variational eigenvalue equations call eveqn(ik,evalfv,evecfv,evecsv) do ist=1,nstsv ! subtract the Fermi energy e(ist,ik)=evalsv(ist,ik)-efermi !$OMP CRITICAL(bandstr_2) emin=min(emin,e(ist,ik)) emax=max(emax,e(ist,ik)) !$OMP END CRITICAL(bandstr_2) end do ! compute the band characters if required if (task.ge.21) then ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! average band character over spin and m for all atoms do ias=1,natmtot ! generate the diagonal of the density matrix call gendmatk(.true.,.true.,0,lmax,ias,ngk(:,ik),apwalm,evecfv,evecsv, & lmmax,dmat) do ist=1,nstsv if (task.eq.21) then ! l character of band lm=0 do l=0,lmax sm=0.d0 do m=-l,l lm=lm+1 do ispn=1,nspinor sm=sm+dble(dmat(lm,ispn,lm,ispn,ist)) end do end do bc(l,ias,ist,ik)=real(sm) end do else if (task.eq.22) then ! (l,m) character of band lm=0 do l=0,lmax do m=-l,l lm=lm+1 sm=0.d0 do ispn=1,nspinor sm=sm+dble(dmat(lm,ispn,lm,ispn,ist)) end do bc(lm,ias,ist,ik)=real(sm) end do end do else ! spin character of band do ispn=1,nspinor sm=0.d0 lm=0 do l=0,lmax do m=-l,l lm=lm+1 sm=sm+dble(dmat(lm,ispn,lm,ispn,ist)) end do end do bc(ispn,ias,ist,ik)=real(sm) end do end if end do end do end if ! end loop over k-points end do !$OMP END DO deallocate(evalfv,evecfv,evecsv) if (task.ge.21) deallocate(dmat,apwalm) !$OMP END PARALLEL call freethd(nthd) emax=emax+(emax-emin)*0.5d0 emin=emin-(emax-emin)*0.5d0 ! output the band structure if (task.eq.20) then open(50,file='BAND.OUT',form='FORMATTED',action='WRITE') do ist=1,nstsv do ik=1,nkpt write(50,'(2G18.10)') dpp1d(ik),e(ist,ik) end do write(50,*) end do close(50) write(*,*) write(*,'("Info(bandstr):")') write(*,'(" band structure plot written to BAND.OUT")') else do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(fname,'("BAND_S",I2.2,"_A",I4.4,".OUT")') is,ia open(50,file=trim(fname),form='FORMATTED',action='WRITE') do ist=1,nstsv do ik=1,nkpt if (task.eq.21) then ! sum band character over l to find total atomic character sm=0.d0 do l=0,lmax sm=sm+bc(l,ias,ist,ik) end do write(50,'(2G18.10,5F12.6)') dpp1d(ik),e(ist,ik),sm, & (bc(l,ias,ist,ik),l=0,lmax) else if (task.eq.22) then write(50,'(2G18.10,16F12.6)') dpp1d(ik),e(ist,ik), & (bc(lm,ias,ist,ik),lm=1,lmmax) else write(50,'(2G18.10,2F12.6)') dpp1d(ik),e(ist,ik), & (bc(ispn,ias,ist,ik),ispn=1,nspinor) end if end do write(50,*) end do close(50) end do end do write(*,*) write(*,'("Info(bandstr):")') write(*,'(" Band structure plot written to BAND_Sss_Aaaaa.OUT")') write(*,'(" for all species and atoms")') write(*,*) write(*,'(" Columns in the file are :")') if (task.eq.21) then write(*,'(" distance, eigenvalue, total atomic character, l character & &(l = 0...",I1,")")') lmax else if (task.eq.22) then write(*,'(" distance, eigenvalue, (l,m) character & &(l = 0...",I1,", m = -l...l)")') lmax else write(*,'(" distance, eigenvalue, spin-up and spin-down characters")') end if end if write(*,*) write(*,'(" Fermi energy is at zero in plot")') ! output the vertex location lines open(50,file='BANDLINES.OUT',form='FORMATTED',action='WRITE') do iv=1,nvp1d write(50,'(2G18.10)') dvp1d(iv),emin write(50,'(2G18.10)') dvp1d(iv),emax write(50,*) end do close(50) write(*,*) write(*,'(" Vertex location lines written to BANDLINES.OUT")') deallocate(e) if (task.ge.21) deallocate(bc) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/sfacinit.f900000644000000000000000000000013214061636517015044 xustar0030 mtime=1623670095.092102328 30 atime=1623670093.831103498 30 ctime=1623670095.092102328 elk-7.2.42/src/sfacinit.f900000644002504400250440000000353014061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 A. I. Baranov and F. Wagner. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine sfacinit use modmain use modpw implicit none ! local variables logical trhonorm0 integer ik,ist,is,ias ! allocatable arrays real(8), allocatable :: occcr0(:,:) ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! use existing density if wsfac is default if ((wsfac(1).le.-1.d6).or.(wsfac(2).ge.1.d6)) goto 10 ! make a copy of the core state occupancies allocate(occcr0(nstspmax,natmtot)) occcr0(:,:)=occcr(:,:) ! zero the core state occupancies for eigenvalues not in energy window do ias=1,natmtot is=idxis(ias) do ist=1,nstsp(is) if (spcore(ist,is)) then if ((evalcr(ist,ias).lt.wsfac(1)).or.(evalcr(ist,ias).gt.wsfac(2))) then occcr(ist,ias)=0.d0 end if end if end do end do ! generate the core wavefunctions and densities call gencore ! restore the core state occupancies occcr(:,:)=occcr0(:,:) deallocate(occcr0) ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr do ik=1,nkpt ! get the eigenvalues and occupancies from file call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) ! zero occupancies for eigenvalues not in energy window do ist=1,nstsv if ((evalsv(ist,ik).lt.wsfac(1)).or.(evalsv(ist,ik).gt.wsfac(2))) then occsv(ist,ik)=0.d0 end if end do end do ! computed density should not be normalised trhonorm0=trhonorm trhonorm=.false. ! generate the density and magnetisation call rhomag trhonorm=trhonorm0 10 continue ! generate the H-vectors call genhvec end subroutine elk-7.2.42/src/PaxHeaders.21776/findscq.f900000644000000000000000000000013214061636517014673 xustar0030 mtime=1623670095.093102327 30 atime=1623670093.833103496 30 ctime=1623670095.093102327 elk-7.2.42/src/findscq.f900000644002504400250440000000705314061636517016735 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine findscq(iq,avec0,nsc,vsc) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq real(8), intent(in) :: avec0(3,3) integer, intent(out) :: nsc real(8), intent(out) :: vsc(3,nqptnr) ! local variables integer i1,i2,i3 integer scl(3,3),i,n real(8) dmin,t1 real(8) v1(3),v2(3) ! check for Gamma-point phonon if (tphq0) then scl(:,:)=0 scl(1,1)=1 scl(2,2)=1 scl(3,3)=1 nsc=1 goto 10 end if ! find the first lattice vector dmin=1.d8 do i1=-ngridq(1),ngridq(1) do i2=-ngridq(2),ngridq(2) do i3=-ngridq(3),ngridq(3) t1=dble(i1)*vql(1,iq)+dble(i2)*vql(2,iq)+dble(i3)*vql(3,iq) if (abs(t1-nint(t1)).lt.epslat) then v1(:)=dble(i1)*avec0(:,1)+dble(i2)*avec0(:,2)+dble(i3)*avec0(:,3) t1=sqrt(v1(1)**2+v1(2)**2+v1(3)**2) if ((t1.lt.dmin).and.(t1.gt.epslat)) then scl(1,1)=i1 scl(2,1)=i2 scl(3,1)=i3 dmin=t1 end if end if end do end do end do ! find the second lattice vector dmin=1.d8 do i1=-ngridq(1),ngridq(1) do i2=-ngridq(2),ngridq(2) do i3=-ngridq(3),ngridq(3) t1=dble(i1)*vql(1,iq)+dble(i2)*vql(2,iq)+dble(i3)*vql(3,iq) if (abs(t1-nint(t1)).lt.epslat) then ! area defined by first two lattice vectors n=(i2*scl(3,1)-i3*scl(2,1))**2 & +(i3*scl(1,1)-i1*scl(3,1))**2 & +(i1*scl(2,1)-i2*scl(1,1))**2 if (n.ne.0) then v1(:)=dble(i1)*avec0(:,1)+dble(i2)*avec0(:,2)+dble(i3)*avec0(:,3) t1=v1(1)**2+v1(2)**2+v1(3)**2 if (t1.lt.dmin) then scl(1,2)=i1 scl(2,2)=i2 scl(3,2)=i3 dmin=t1 end if end if end if end do end do end do ! find the third lattice vector nsc=0 dmin=1.d8 do i1=-ngridq(1),ngridq(1) do i2=-ngridq(2),ngridq(2) do i3=-ngridq(3),ngridq(3) t1=dble(i1)*vql(1,iq)+dble(i2)*vql(2,iq)+dble(i3)*vql(3,iq) if (abs(t1-nint(t1)).lt.epslat) then ! number of primitive unit cells in supercell n=scl(1,2)*(i2*scl(3,1)-i3*scl(2,1)) & +scl(2,2)*(i3*scl(1,1)-i1*scl(3,1)) & +scl(3,2)*(i1*scl(2,1)-i2*scl(1,1)) if (n.ne.0) then v1(:)=dble(i1)*avec0(:,1)+dble(i2)*avec0(:,2)+dble(i3)*avec0(:,3) t1=v1(1)**2+v1(2)**2+v1(3)**2 if (t1.lt.dmin) then nsc=abs(n) scl(1,3)=i1 scl(2,3)=i2 scl(3,3)=i3 dmin=t1 end if end if end if end do end do end do if (nsc.eq.0) goto 30 10 continue ! new lattice vectors do i=1,3 avec(:,i)=dble(scl(1,i))*avec0(:,1) & +dble(scl(2,i))*avec0(:,2) & +dble(scl(3,i))*avec0(:,3) end do ! inverse of lattice vector matrix call r3minv(avec,ainv) ! generate offset vectors for each primitive cell in the supercell n=1 vsc(:,1)=0.d0 do i1=-ngridq(1),ngridq(1) do i2=-ngridq(2),ngridq(2) do i3=-ngridq(3),ngridq(3) if (n.eq.nsc) return v1(:)=dble(i1)*avec0(:,1)+dble(i2)*avec0(:,2)+dble(i3)*avec0(:,3) call r3mv(ainv,v1,v2) call r3frac(epslat,v2) call r3mv(avec,v2,v1) do i=1,n t1=abs(v1(1)-vsc(1,i))+abs(v1(2)-vsc(2,i))+abs(v1(3)-vsc(3,i)) if (t1.lt.epslat) goto 20 end do n=n+1 vsc(:,n)=v1(:) 20 continue end do end do end do 30 continue write(*,*) write(*,'("Error(findscq): unable to generate supercell")') write(*,*) stop end subroutine elk-7.2.42/src/PaxHeaders.21776/plot1d.f900000644000000000000000000000013214061636517014447 xustar0030 mtime=1623670095.095102325 30 atime=1623670093.834103495 30 ctime=1623670095.095102325 elk-7.2.42/src/plot1d.f900000644002504400250440000000351214061636517016505 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: plot1d ! !INTERFACE: subroutine plot1d(fnum1,fnum2,nf,rfmt,rfir) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! fnum1 : plot file number (in,integer) ! fnum2 : vertex location file number (in,integer) ! nf : number of functions (in,integer) ! rfmt : real muffin-tin function (in,real(npmtmax,natmtot,nf)) ! rfir : real intersitial function (in,real(ngtot,nf)) ! !DESCRIPTION: ! Produces a 1D plot of the real functions contained in arrays {\tt rfmt} and ! {\tt rfir} along the lines connecting the vertices in the global array ! {\tt vvlp1d}. See routine {\tt rfplot}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: fnum1,fnum2,nf real(8), intent(in) :: rfmt(npmtmax,natmtot,nf),rfir(ngtot,nf) ! local variables integer jf,ip,iv real(8) fmin,fmax,t1 ! allocatable arrays real(8), allocatable :: fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plot1d): invalid number of functions : ",I8)') nf write(*,*) stop end if allocate(fp(npp1d,nf)) ! connect the 1D plotting vertices call plotpt1d(avec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) do jf=1,nf ! evaluate function at each point call rfplot(npp1d,vplp1d,rfmt(:,:,jf),rfir(:,jf),fp(:,jf)) end do do ip=1,npp1d ! write the point distances and function to file write(fnum1,'(5G18.10)') dpp1d(ip),(fp(ip,jf),jf=1,nf) end do ! write the vertex location lines fmin=minval(fp(:,:)) fmax=maxval(fp(:,:)) t1=0.5d0*(fmax-fmin) do iv=1,nvp1d write(fnum2,'(2G18.10)') dvp1d(iv),fmax+t1 write(fnum2,'(2G18.10)') dvp1d(iv),fmin-t1 write(fnum2,*) end do deallocate(fp) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/plot2d.f900000644000000000000000000000013214061636517014450 xustar0030 mtime=1623670095.096102324 30 atime=1623670093.836103493 30 ctime=1623670095.096102324 elk-7.2.42/src/plot2d.f900000644002504400250440000000367514061636517016520 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: plot2d ! !INTERFACE: subroutine plot2d(tproj,fnum,nf,rfmt,rfir) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! tproj : .true. if nf=3 and the vector function should be projected onto the ! 2D plotting plane axes (in,logical) ! fnum : plot file number (in,integer) ! nf : number of functions (in,integer) ! rfmt : real muffin-tin function (in,real(npmtmax,natmtot,nf)) ! rfir : real intersitial function (in,real(ngtot,nf)) ! !DESCRIPTION: ! Produces a 2D plot of the real functions contained in arrays {\tt rfmt} and ! {\tt rfir} on the parallelogram defined by the corner vertices in the global ! array {\tt vclp2d}. See routine {\tt rfplot}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: tproj integer, intent(in) :: fnum,nf real(8), intent(in) :: rfmt(npmtmax,natmtot,nf),rfir(ngtot,nf) ! local variables integer np,jf,ip real(8) vpnl(3) ! allocatable arrays real(8), allocatable :: vpl(:,:),vppc(:,:),fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plot2d): invalid number of functions : ",I8)') nf write(*,*) stop end if ! allocate local arrays np=np2d(1)*np2d(2) allocate(vpl(3,np),vppc(2,np),fp(np,nf)) ! generate the 2D plotting points call plotpt2d(avec,ainv,vpnl,vpl,vppc) ! evaluate the functions at the grid points do jf=1,nf call rfplot(np,vpl,rfmt(:,:,jf),rfir(:,jf),fp(:,jf)) end do ! project the vector function onto the 2D plotting plane axes if required if (tproj.and.(nf.eq.3)) then call proj2d(np,fp) end if ! write the functions to file write(fnum,'(2I6," : grid size")') np2d(:) do ip=1,np write(fnum,'(6G18.10)') vppc(1,ip),vppc(2,ip),(fp(ip,jf),jf=1,nf) end do deallocate(vpl,vppc,fp) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/plot3d.f900000644000000000000000000000013214061636517014451 xustar0030 mtime=1623670095.098102322 30 atime=1623670093.837103492 30 ctime=1623670095.098102322 elk-7.2.42/src/plot3d.f900000644002504400250440000000333114061636517016506 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: plot3d ! !INTERFACE: subroutine plot3d(fnum,nf,rfmt,rfir) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! fnum : plot file number (in,integer) ! nf : number of functions (in,integer) ! rfmt : real muffin-tin function (in,real(npmtmax,natmtot,nf)) ! rfir : real intersitial function (in,real(ngtot,nf)) ! !DESCRIPTION: ! Produces a 3D plot of the real functions contained in arrays {\tt rfmt} and ! {\tt rfir} in the parallelepiped defined by the corner vertices in the ! global array {\tt vclp3d}. See routine {\tt rfarray}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) ! Modified, October 2008 (F. Bultmark, F. Cricchio, L. Nordstrom) !EOP !BOC implicit none ! arguments integer, intent(in) :: fnum,nf real(8), intent(in) :: rfmt(npmtmax,natmtot,nf),rfir(ngtot,nf) ! local variables integer np,jf,ip real(8) v1(3) ! allocatable arrays real(8), allocatable :: vpl(:,:),fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plot3d): invalid number of functions : ",I8)') nf write(*,*) stop end if ! total number of plot points np=np3d(1)*np3d(2)*np3d(3) ! allocate local arrays allocate(vpl(3,np),fp(np,nf)) ! generate the 3D plotting points call plotpt3d(vpl) ! evaluate the functions at the grid points do jf=1,nf call rfplot(np,vpl,rfmt(:,:,jf),rfir(:,jf),fp(:,jf)) end do ! write functions to file write(fnum,'(3I6," : grid size")') np3d(:) do ip=1,np call r3mv(avec,vpl(:,ip),v1) write(fnum,'(7G18.10)') v1(:),(fp(ip,jf),jf=1,nf) end do deallocate(vpl,fp) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/init0.f900000644000000000000000000000013214061636517014267 xustar0030 mtime=1623670095.099102321 30 atime=1623670093.839103491 30 ctime=1623670095.099102321 elk-7.2.42/src/init0.f900000644002504400250440000005115214061636517016330 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: init0 ! !INTERFACE: subroutine init0 ! !USES: use modmain use modxcifc use moddftu use modtddft use modphonon use modulr use modtest use modvars use modmpi use modomp ! !DESCRIPTION: ! Performs basic consistency checks as well as allocating and initialising ! global variables not dependent on the $k$-point set. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) !EOP !BOC implicit none ! local variables integer is,ia,ias,n integer ist,nr,l,i real(8) t1 real(8) ts0,ts1 !-------------------------------! ! zero timing variables ! !-------------------------------! timeinit=0.d0 timemat=0.d0 timefv=0.d0 timesv=0.d0 timerho=0.d0 timepot=0.d0 timefor=0.d0 call timesec(ts0) !------------------------------------! ! angular momentum variables ! !------------------------------------! if (lmaxo.gt.lmaxapw) then write(*,*) write(*,'("Error(init0): lmaxo > lmaxapw : ",2I8)') lmaxo,lmaxapw write(*,*) stop end if lmaxi=min(lmaxi,lmaxo) lmmaxapw=(lmaxapw+1)**2 lmmaxi=(lmaxi+1)**2 lmmaxo=(lmaxo+1)**2 ! check DOS lmax is within range lmaxdos=min(lmaxdos,lmaxo) ! write to VARIABLES.OUT call writevars('lmaxapw',iv=lmaxapw) call writevars('lmaxi',iv=lmaxi) call writevars('lmaxo',iv=lmaxo) !------------------------------------! ! index to atoms and species ! !------------------------------------! natmmax=0 ias=0 do is=1,nspecies do ia=1,natoms(is) ias=ias+1 idxas(ia,is)=ias idxis(ias)=is idxia(ias)=ia end do ! maximum number of atoms over all species natmmax=max(natmmax,natoms(is)) end do ! total number of atoms natmtot=ias ! number of phonon branches nbph=3*natmtot ! write to VARIABLES.OUT call writevars('nspecies',iv=nspecies) call writevars('natoms',nv=nspecies,iva=natoms) call writevars('spsymb',nv=nspecies,sva=spsymb) call writevars('spname',nv=nspecies,sva=spname) call writevars('spzn',nv=nspecies,rva=spzn) !------------------------! ! spin variables ! !------------------------! if (spinsprl) then spinpol=.true. spinorb=.false. if (any(task.eq.[5,51,52,53,61,62,63,700,701,800,801])) then write(*,*) write(*,'("Error(init0): spin-spirals do not work with task ",I4)') task write(*,*) stop end if if (xctype(1).lt.0) then write(*,*) write(*,'("Error(init0): spin-spirals do not work with the OEP method")') write(*,*) stop end if if (tefvit) then write(*,*) write(*,'("Error(init0): spin-spirals do not work with iterative & &diagonalisation")') write(*,*) stop end if end if ! de-phasing required only for spin-spirals if (.not.spinsprl) ssdph=.false. ! spin-orbit coupling, fixed spin moment, spin spirals or spin-polarised cores ! requires a spin-polarised calculation if ((spinorb).or.(fsmtype.ne.0).or.(spinsprl).or.(spincore)) spinpol=.true. ! number of spinor components and maximum allowed occupancy if (spinpol) then nspinor=2 occmax=1.d0 else nspinor=1 occmax=2.d0 end if ! number of spin-dependent first-variational functions per state and map from ! second- to first-variational spin index if (spinsprl) then nspnfv=2 jspnfv(1)=1 jspnfv(2)=2 else nspnfv=1 jspnfv(1)=1 jspnfv(2)=1 end if ! no calculation of second-variational eigenvectors by default tevecsv=.false. ! spin-polarised calculations require second-variational eigenvectors if (spinpol) tevecsv=.true. ! Hartree-Fock/RDMFT/TDDFT/GW requires second-variational eigenvectors if (any(task.eq.[5,10,170,300,460,461,462,463,600,620,630,800,801])) then tevecsv=.true. end if ! get exchange-correlation functional data call getxcdata(xctype,xcdescr,xcspin,xcgrad,hybrid0,hybridc) if ((spinpol).and.(xcspin.eq.0)) then write(*,*) write(*,'("Error(init0): requested spin-polarised run with & &spin-unpolarised")') write(*,'(" exchange-correlation functional")') write(*,*) stop end if ! set flag for hybrid functional if (task.eq.5) then hybrid=hybrid0 else hybrid=.false. end if ! check for collinearity in the z-direction and set the dimension of the ! magnetisation and exchange-correlation vector fields if (spinpol) then ndmag=1 if ((abs(bfieldc0(1)).gt.epslat).or.(abs(bfieldc0(2)).gt.epslat)) ndmag=3 do is=1,nspecies do ia=1,natoms(is) if ((abs(bfcmt0(1,ia,is)).gt.epslat).or. & (abs(bfcmt0(2,ia,is)).gt.epslat)) ndmag=3 end do end do ! spin-orbit coupling is non-collinear in general if (spinorb) ndmag=3 ! source-free fields and spin-spirals must be non-collinear if ((nosource).or.(spinsprl)) then ndmag=3 cmagz=.false. end if ! force collinear magnetism along the z-axis if required if (cmagz) ndmag=1 else ndmag=0 end if ! set the non-collinear flag if (ndmag.eq.3) then ncmag=.true. else ncmag=.false. end if ! check for meta-GGA with non-collinearity if (((xcgrad.eq.3).or.(xcgrad.eq.4)).and.ncmag) then write(*,*) write(*,'("Error(init0): meta-GGA is not valid for non-collinear magnetism")') write(*,*) stop end if if (ncmag.or.spinorb) then ! spins are coupled in the second-variational Hamiltonian spcpl=.true. else ! spins are decoupled spcpl=.false. end if ! spin-polarised cores if (.not.spinpol) spincore=.false. if (fsmtype.ne.0) then ! set fixed spin moment effective field to zero bfsmc(:)=0.d0 ! set muffin-tin FSM fields to zero if (allocated(bfsmcmt)) deallocate(bfsmcmt) allocate(bfsmcmt(3,natmtot)) bfsmcmt(:,:)=0.d0 if (mp_mpi.and.(mixtype.ne.1)) then write(*,*) write(*,'("Info(init0): mixtype changed to 1 for FSM calculation")') end if mixtype=1 end if ! number of independent spin components of the f_xc spin tensor if (spinpol) then if (ncmag) then nscfxc=10 else nscfxc=3 end if else nscfxc=1 end if ! set the magnetic fields to the initial values bfieldc(:)=bfieldc0(:) bfcmt(:,:,:)=bfcmt0(:,:,:) ! if reducebf < 1 then reduce the external magnetic fields immediately for ! non-self-consistent calculations or resumptions if (reducebf.lt.1.d0-1.d-4) then if (all(task.ne.[0,1,2,3,5,28,200,201,350,351,630])) then bfieldc(:)=0.d0 bfcmt(:,:,:)=0.d0 end if end if ! set the fixed tensor moment spatial and spin rotation matrices equal for the ! case of spin-orbit coupling; parity for spin is ignored by rotdmat if (spinorb) then do i=1,ntmfix rtmfix(:,:,2,i)=rtmfix(:,:,1,i) end do end if ! generate the fixed tensor moment density matrices if required call gendmftm ! write to VARIABLES.OUT call writevars('nspinor',iv=nspinor) call writevars('ndmag',iv=ndmag) !----------------------------------! ! crystal structure set up ! !----------------------------------! ! generate the reciprocal lattice vectors and unit cell volume call reciplat(avec,bvec,omega,omegabz) ! inverse of the lattice vector matrix call r3minv(avec,ainv) ! inverse of the reciprocal vector matrix call r3minv(bvec,binv) ! Cartesian coordinates of the spin-spiral vector call r3mv(bvec,vqlss,vqcss) do is=1,nspecies do ia=1,natoms(is) ! map atomic lattice coordinates to [0,1) call r3frac(epslat,atposl(:,ia,is)) ! determine atomic Cartesian coordinates call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do ! check for overlapping muffin-tins and adjust radii if required call checkmt ! compute the total muffin-tin volume (M. Meinert) omegamt=0.d0 do is=1,nspecies omegamt=omegamt+dble(natoms(is))*(fourpi/3.d0)*rmt(is)**3 end do ! input q-vector in Cartesian coordinates call r3mv(bvec,vecql,vecqc) ! write to VARIABLES.OUT call writevars('avec',nv=9,rva=avec) call writevars('bvec',nv=9,rva=bvec) call writevars('omega',rv=omega) do is=1,nspecies call writevars('atposl',l=is,nv=3*natoms(is),rva=atposl(:,:,is)) end do !-------------------------------! ! vector fields E and A ! !-------------------------------! tefield=.false. if (sum(abs(efieldc(:))).gt.epslat) then ! no shift of the atomic positions tshift=.false. ! electric field vector in lattice coordinates call r3mv(ainv,efieldc,efieldl) tefield=.true. end if tafield=.false. if (sum(abs(afieldc(:))).gt.epslat) then tafield=.true. ! A-field in lattice coordinates call r3mv(ainv,afieldc,afieldl) ! vector potential added in second-variational step tevecsv=.true. end if tafieldt=.false. if (any(task.eq.[460,461,462,463,480,481])) then ! read time-dependent A-field from file call readafieldt tafieldt=.true. ! zero the induced A-field and its time derivative afindt(:,:)=0.d0 end if !---------------------------------! ! crystal symmetry set up ! !---------------------------------! call symmetry !-----------------------! ! radial meshes ! !-----------------------! nrmtmax=1 nrcmtmax=1 do is=1,nspecies ! make the muffin-tin mesh commensurate with lradstp nrmt(is)=nrmt(is)-mod(nrmt(is)-1,lradstp) nrmtmax=max(nrmtmax,nrmt(is)) ! number of coarse radial mesh points nrcmt(is)=(nrmt(is)-1)/lradstp+1 nrcmtmax=max(nrcmtmax,nrcmt(is)) end do ! set up atomic and muffin-tin radial meshes call genrmesh ! number of points in packed muffin-tins npmtmax=1 npcmtmax=1 do is=1,nspecies npmti(is)=lmmaxi*nrmti(is) npmt(is)=npmti(is)+lmmaxo*(nrmt(is)-nrmti(is)) npmtmax=max(npmtmax,npmt(is)) npcmti(is)=lmmaxi*nrcmti(is) npcmt(is)=npcmti(is)+lmmaxo*(nrcmt(is)-nrcmti(is)) npcmtmax=max(npcmtmax,npcmt(is)) end do !--------------------------------------! ! charges and number of states ! !--------------------------------------! chgzn=0.d0 chgcrtot=0.d0 chgval=0.d0 nstspmax=0 nstcr=0 do is=1,nspecies ! nuclear charge chgzn=chgzn+spzn(is)*natoms(is) ! find the maximum number of atomic states nstspmax=max(nstspmax,nstsp(is)) ! compute the electronic charge for each species, as well as the total core and ! valence charge spze(is)=0.d0 chgcr(is)=0.d0 do ist=1,nstsp(is) spze(is)=spze(is)+occsp(ist,is) if (spcore(ist,is)) then chgcr(is)=chgcr(is)+occsp(ist,is) nstcr=nstcr+2*ksp(ist,is)*natoms(is) else chgval=chgval+occsp(ist,is)*natoms(is) end if end do chgcrtot=chgcrtot+chgcr(is)*natoms(is) end do ! add excess charge chgval=chgval+chgexs ! total charge chgtot=chgcrtot+chgval if (chgtot.lt.1.d-8) then write(*,*) write(*,'("Error(init0): zero total charge")') write(*,*) stop end if ! effective Wigner radius rwigner=(3.d0/(fourpi*(chgtot/omega)))**(1.d0/3.d0) ! write to VARIABLES.OUT call writevars('spze',nv=nspecies,rva=spze) call writevars('chgcr',nv=nspecies,rva=chgcr) call writevars('chgexs',rv=chgexs) call writevars('chgval',rv=chgtot) !-------------------------! ! G-vector arrays ! !-------------------------! ! determine gkmax from rgkmax if (nspecies.eq.0) isgkmax=-2 select case(isgkmax) case(:-4) ! use largest muffin-tin radius gkmax=rgkmax/maxval(rmt(1:nspecies)) case(-3) ! use smallest muffin-tin radius gkmax=rgkmax/minval(rmt(1:nspecies)) case(-2) ! use the fixed value of 2.0 gkmax=rgkmax/2.d0 case(-1) ! use average muffin-tin radius t1=sum(natoms(1:nspecies)*rmt(1:nspecies))/dble(natmtot) gkmax=rgkmax/t1 case(1:) ! use user-specified muffin-tin radius if (isgkmax.le.nspecies) then gkmax=rgkmax/rmt(isgkmax) else write(*,*) write(*,'("Error(init0): isgkmax > nspecies : ",2I8)') isgkmax,nspecies write(*,*) stop end if end select ! generate the G-vectors call gengvec ! write number of G-vectors to test file call writetest(900,'number of G-vectors',iv=ngvec) ! Poisson solver pseudocharge density constant if (nspecies.gt.0) then t1=0.25d0*gmaxvr*maxval(rmt(1:nspecies)) else t1=0.25d0*gmaxvr*2.d0 end if npsd=max(nint(t1),1) lnpsd=lmaxo+npsd+1 ! generate the Coulomb Green's function in G-space = fourpi / G^2 call gengclg ! compute the spherical Bessel functions j_l(|G|R_mt) if (allocated(jlgrmt)) deallocate(jlgrmt) allocate(jlgrmt(0:lnpsd,ngvec,nspecies)) call genjlgprmt(lnpsd,ngvec,gc,ngvec,jlgrmt) ! generate the spherical harmonics of the G-vectors call genylmg ! allocate structure factor array for G-vectors if (allocated(sfacg)) deallocate(sfacg) allocate(sfacg(ngvec,natmtot)) ! generate structure factors for G-vectors call gensfacgp(ngvec,vgc,ngvec,sfacg) ! generate the smooth step function form factors if (allocated(ffacg)) deallocate(ffacg) allocate(ffacg(ngtot,nspecies)) do is=1,nspecies call genffacgp(is,gc,ffacg(:,is)) end do ! generate the characteristic function call gencfun ! G-vector variables for coarse grid (G < 2*gkmax) call gengvc ! generate the characteristic function on the coarse grid call gencfrc ! write to VARIABLES.OUT call writevars('gmaxvr',rv=gmaxvr) call writevars('ngridg',nv=3,iva=ngridg) call writevars('intgv',nv=6,iva=intgv) call writevars('ngvec',iv=ngvec) call writevars('ivg',nv=3*ngtot,iva=ivg) call writevars('igfft',nv=ngtot,iva=igfft) !-------------------------! ! atoms and cores ! !-------------------------! ! determine the nuclear Coulomb potential if (allocated(vcln)) deallocate(vcln) allocate(vcln(nrspmax,nspecies)) t1=1.d0/y00 do is=1,nspecies nr=nrsp(is) call potnucl(ptnucl,nr,rsp(:,is),spzn(is),vcln(:,is)) vcln(1:nr,is)=t1*vcln(1:nr,is) end do ! solve the Kohn-Sham-Dirac equations for all atoms call allatoms ! allocate core state occupancy and eigenvalue arrays and set to default if (allocated(occcr)) deallocate(occcr) allocate(occcr(nstspmax,natmtot)) if (allocated(evalcr)) deallocate(evalcr) allocate(evalcr(nstspmax,natmtot)) do ias=1,natmtot is=idxis(ias) do ist=1,nstsp(is) occcr(ist,ias)=occsp(ist,is) evalcr(ist,ias)=evalsp(ist,is) end do end do ! allocate core state radial wavefunction array if (allocated(rwfcr)) deallocate(rwfcr) allocate(rwfcr(nrspmax,2,nstspmax,natmtot)) ! number of core spin channels if (spincore) then nspncr=2 else nspncr=1 end if ! allocate core state charge density array if (allocated(rhocr)) deallocate(rhocr) allocate(rhocr(nrmtmax,natmtot,nspncr)) !-------------------------------------------------------------! ! charge density, potentials and exchange-correlation ! !-------------------------------------------------------------! ! allocate charge density arrays if (allocated(rhomt)) deallocate(rhomt) allocate(rhomt(npmtmax,natmtot)) if (allocated(rhoir)) deallocate(rhoir) allocate(rhoir(ngtot)) ! allocate magnetisation arrays if (allocated(magmt)) deallocate(magmt) if (allocated(magir)) deallocate(magir) if (spinpol) then allocate(magmt(npmtmax,natmtot,ndmag)) allocate(magir(ngtot,ndmag)) end if ! check if the current density j(r) should be calculated if (tafield.or.tdjr1d.or.tdjr2d.or.tdjr3d.or.(any(task.eq.[371,372,373]))) then tjr=.true. end if ! allocate current density arrays if (allocated(jrmt)) deallocate(jrmt) if (allocated(jrir)) deallocate(jrir) if (tjr) then allocate(jrmt(npmtmax,natmtot,3),jrir(ngtot,3)) end if ! Coulomb potential if (allocated(vclmt)) deallocate(vclmt) allocate(vclmt(npmtmax,natmtot)) if (allocated(vclir)) deallocate(vclir) allocate(vclir(ngtot)) ! exchange energy density if (allocated(exmt)) deallocate(exmt) allocate(exmt(npmtmax,natmtot)) if (allocated(exir)) deallocate(exir) allocate(exir(ngtot)) ! correlation energy density if (allocated(ecmt)) deallocate(ecmt) allocate(ecmt(npmtmax,natmtot)) if (allocated(ecir)) deallocate(ecir) allocate(ecir(ngtot)) ! exchange-correlation potential if (allocated(vxcmt)) deallocate(vxcmt) allocate(vxcmt(npmtmax,natmtot)) if (allocated(vxcir)) deallocate(vxcir) allocate(vxcir(ngtot)) ! exchange-correlation and dipole magnetic fields if (allocated(bxcmt)) deallocate(bxcmt) if (allocated(bxcir)) deallocate(bxcir) if (allocated(bdmt)) deallocate(bdmt) if (allocated(bdir)) deallocate(bdir) if (spinpol) then allocate(bxcmt(npmtmax,natmtot,ndmag),bxcir(ngtot,ndmag)) if (tbdip) allocate(bdmt(npmtmax,natmtot,ndmag),bdir(ngtot,ndmag)) end if ! combined target array for Kohn-Sham potential and magnetic field if (allocated(vsbs)) deallocate(vsbs) n=npmtmax*natmtot+ngtot if (spinpol) n=n+(npcmtmax*natmtot+ngtot)*ndmag allocate(vsbs(n)) ! zero the array vsbs(:)=0.d0 ! associate pointer arrays with target vsmt(1:npmtmax,1:natmtot)=>vsbs(1:) i=npmtmax*natmtot+1 vsir(1:ngtot)=>vsbs(i:) if (spinpol) then i=i+ngtot bsmt(1:npcmtmax,1:natmtot,1:ndmag)=>vsbs(i:) i=i+npcmtmax*natmtot*ndmag bsir(1:ngtot,1:ndmag)=>vsbs(i:) end if ! effective Kohn-Sham potential in G-space if (allocated(vsig)) deallocate(vsig) allocate(vsig(ngvec)) ! kinetic energy density if (allocated(taumt)) deallocate(taumt) if (allocated(tauir)) deallocate(tauir) if (allocated(taucr)) deallocate(taucr) if ((xcgrad.eq.3).or.(xcgrad.eq.4)) then allocate(taumt(npmtmax,natmtot,nspinor),tauir(ngtot,nspinor)) allocate(taucr(npmtmax,natmtot,nspinor)) end if ! meta-GGA exchange-correlation and Kohn-Sham potentials if (allocated(wxcmt)) deallocate(wxcmt) if (allocated(wxcir)) deallocate(wxcir) if (allocated(wsmt)) deallocate(wsmt) if (allocated(wsir)) deallocate(wsir) if (xcgrad.eq.4) then allocate(wxcmt(npmtmax,natmtot),wxcir(ngtot)) allocate(wsmt(npcmtmax,natmtot),wsir(ngtot)) tevecsv=.true. end if ! spin-orbit coupling radial function if (allocated(socfr)) deallocate(socfr) if (spinorb) then allocate(socfr(nrcmtmax,natmtot)) end if ! allocate muffin-tin charge and moment arrays if (allocated(chgcrlk)) deallocate(chgcrlk) allocate(chgcrlk(natmtot)) if (allocated(chgmt)) deallocate(chgmt) allocate(chgmt(natmtot)) if (allocated(mommt)) deallocate(mommt) allocate(mommt(3,natmtot)) ! check if scaled spin exchange-correlation should be used if (abs(sxcscf-1.d0).gt.1.d-6) then tssxc=.true. else tssxc=.false. end if ! spin-spiral phase factors if (ssdph) then if (allocated(zqss)) deallocate(zqss) allocate(zqss(natmtot)) do ias=1,natmtot is=idxis(ias) ia=idxia(ias) t1=-0.5d0*dot_product(vqcss(:),atposc(:,ia,is)) zqss(ias)=cmplx(cos(t1),sin(t1),8) end do end if !-------------------------! ! force variables ! !-------------------------! if (tforce) then if (allocated(forcehf)) deallocate(forcehf) allocate(forcehf(3,natmtot)) if (allocated(forceibs)) deallocate(forceibs) allocate(forceibs(3,natmtot)) if (allocated(forcetot)) deallocate(forcetot) allocate(forcetot(3,natmtot)) end if !-------------------------------------------------! ! DFT+U and fixed tensor moment variables ! !-------------------------------------------------! if ((dftu.ne.0).or.(ftmtype.ne.0)) then ! density matrix elements in each muffin-tin if (allocated(dmatmt)) deallocate(dmatmt) allocate(dmatmt(lmmaxdm,nspinor,lmmaxdm,nspinor,natmtot)) ! potential matrix elements in each muffin-tin if (allocated(vmatmt)) deallocate(vmatmt) allocate(vmatmt(lmmaxdm,nspinor,lmmaxdm,nspinor,natmtot)) ! zero the potential matrix vmatmt(:,:,:,:,:)=0.d0 ! require the potential matrix elements be calculated tvmatmt=.true. ! flags for non-zero muffin-tin potential matrices if (allocated(tvmmt)) deallocate(tvmmt) allocate(tvmmt(0:lmaxdm,natmtot)) tvmmt(:,:)=.false. ! require second-variational eigenvectors tevecsv=.true. end if if (dftu.ne.0) then ! DFT+U energy for each atom if (allocated(engyadu)) deallocate(engyadu) allocate(engyadu(natmmax,ndftu)) ! interpolation constants (alpha) if (allocated(alphadu)) deallocate(alphadu) allocate(alphadu(natmmax,ndftu)) ! flag the muffin-tin potential matrices which are non-zero do i=1,ndftu is=idftu(1,i) if (is.gt.nspecies) then write(*,*) write(*,'("Error(init0): invalid species number : ",I8)') is write(*,*) stop end if l=idftu(2,i) do ia=1,natoms(is) ias=idxas(ia,is) tvmmt(l,ias)=.true. end do end do end if if (ftmtype.ne.0) then ! allocate and zero the fixed tensor moment potential array if (allocated(vmftm)) deallocate(vmftm) allocate(vmftm(lmmaxdm,nspinor,lmmaxdm,nspinor,natmtot)) vmftm(:,:,:,:,:)=0.d0 ! flag the muffin-tin potential matrices which are non-zero do i=1,ntmfix is=itmfix(1,i) ia=itmfix(2,i) ias=idxas(ia,is) l=itmfix(3,i) tvmmt(l,ias)=.true. end do end if !-----------------------! ! miscellaneous ! !-----------------------! ! determine nuclear radii and volumes call nuclei ! determine the nuclear-nuclear energy call energynn ! get smearing function description call getsdata(stype,sdescr) ! get mixing type description call getmixdata(mixtype,mixdescr) ! generate the spherical harmonic transform (SHT) matrices call genshtmat ! find the maximum size of the spherical Bessel function array over all species call findnjcmax ! allocate 1D plotting arrays if (allocated(dvp1d)) deallocate(dvp1d) allocate(dvp1d(nvp1d)) if (allocated(vplp1d)) deallocate(vplp1d) allocate(vplp1d(3,npp1d)) if (allocated(dpp1d)) deallocate(dpp1d) allocate(dpp1d(npp1d)) ! initial self-consistent loop number iscl=1 tlast=.false. ! set the Fermi energy to zero efermi=0.d0 ! set the temperature from the smearing width tempk=swidth/kboltz call timesec(ts1) timeinit=timeinit+ts1-ts0 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/readstate.f900000644000000000000000000000013214061636517015220 xustar0030 mtime=1623670095.101102319 30 atime=1623670093.841103489 30 ctime=1623670095.101102319 elk-7.2.42/src/readstate.f900000644002504400250440000002327214061636517017263 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: readstate ! !INTERFACE: subroutine readstate ! !USES: use modmain use moddftu ! !DESCRIPTION: ! Reads in the charge density and other relevant variables from the file ! {\tt STATE.OUT}. Checks for version and parameter compatibility. ! ! !REVISION HISTORY: ! Created May 2003 (JKD) !EOP !BOC implicit none ! local variables logical spinpol_ integer is,ia,ias,lmmax,lm,ir,jr integer idm,jdm,mapidm(3),ios integer i1,i2,i3,j1,j2,j3,n integer version_(3) integer nspecies_,natoms_,lmmaxo_ integer nrmt_(maxspecies),nrmtmax_ integer nrcmt_(maxspecies),nrcmtmax_ integer ngridg_(3),ngtot_,ngvec_ integer ndmag_,nspinor_,fsmtype_,ftmtype_ integer dftu_,lmmaxdm_,xcgrad_ real(8) t1 ! allocatable arrays integer, allocatable :: mapir(:) real(8), allocatable :: rsp_(:,:),rcmt_(:,:) real(8), allocatable :: wcrmt_(:,:,:),wcrcmt_(:,:,:) real(8), allocatable :: rfmt_(:,:,:),rfir_(:) real(8), allocatable :: rvfmt_(:,:,:,:),rvfir_(:,:) real(8), allocatable :: rvfcmt_(:,:,:,:),rfmt(:,:) real(8), allocatable :: bfsmcmt_(:,:),fi(:),fo(:) complex(8), allocatable :: vsig_(:) complex(8), allocatable :: vmatmt_(:,:,:,:,:),vmftm_(:,:,:,:,:) open(100,file='STATE'//trim(filext),form='UNFORMATTED',action='READ', & status='OLD',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readstate): error opening ",A)') 'STATE'//trim(filext) write(*,*) stop end if read(100) version_ if (version_(1).lt.2) then write(*,*) write(*,'("Error(readstate): unable to read STATE.OUT from versions earlier & &than 2.0.0")') write(*,*) stop end if if (any(version(:).ne.version_(:))) then write(*,*) write(*,'("Warning(readstate): different versions")') write(*,'(" current : ",I3.3,".",I3.3,".",I3.3)') version write(*,'(" STATE.OUT : ",I3.3,".",I3.3,".",I3.3)') version_ end if read(100) spinpol_ read(100) nspecies_ if (nspecies.ne.nspecies_) then write(*,*) write(*,'("Error(readstate): differing nspecies")') write(*,'(" current : ",I4)') nspecies write(*,'(" STATE.OUT : ",I4)') nspecies_ write(*,*) stop end if read(100) lmmaxo_ lmmax=min(lmmaxo,lmmaxo_) read(100) nrmtmax_ read(100) nrcmtmax_ allocate(rsp_(nrmtmax_,nspecies)) allocate(rcmt_(nrcmtmax_,nspecies)) do is=1,nspecies read(100) natoms_ if (natoms(is).ne.natoms_) then write(*,*) write(*,'("Error(readstate): differing natoms for species ",I4)') is write(*,'(" current : ",I4)') natoms(is) write(*,'(" STATE.OUT : ",I4)') natoms_ write(*,*) stop end if read(100) nrmt_(is) read(100) rsp_(1:nrmt_(is),is) read(100) nrcmt_(is) read(100) rcmt_(1:nrcmt_(is),is) end do read(100) ngridg_ read(100) ngvec_ read(100) ndmag_ if ((spinpol_).and.(ndmag_.ne.1).and.(ndmag_.ne.3)) then write(*,*) write(*,'("Error(readstate): invalid ndmag in STATE.OUT : ",I8)') ndmag_ write(*,*) stop end if read(100) nspinor_ read(100) fsmtype_ if ((version_(1).gt.2).or.(version_(2).ge.3)) then read(100) ftmtype_ else ftmtype_=0 end if read(100) dftu_ read(100) lmmaxdm_ if ((version_(1).gt.5).or.((version_(1).eq.5).and.(version_(2).ge.1))) then read(100) xcgrad_ else xcgrad_=0 end if ngtot_=ngridg_(1)*ngridg_(2)*ngridg_(3) ! map from old interstitial grid to new allocate(mapir(ngtot)) ir=0 do i3=0,ngridg(3)-1 t1=dble(i3*ngridg_(3))/dble(ngridg(3)) j3=modulo(nint(t1),ngridg_(3)) do i2=0,ngridg(2)-1 t1=dble(i2*ngridg_(2))/dble(ngridg(2)) j2=modulo(nint(t1),ngridg_(2)) do i1=0,ngridg(1)-1 t1=dble(i1*ngridg_(1))/dble(ngridg(1)) j1=modulo(nint(t1),ngridg_(1)) ir=ir+1 jr=j3*ngridg_(2)*ngridg_(1)+j2*ngridg_(1)+j1+1 mapir(ir)=jr end do end do end do ! determine the spline coefficient weights on the old radial mesh allocate(wcrmt_(12,nrmtmax_,nspecies)) allocate(wcrcmt_(12,nrcmtmax_,nspecies)) do is=1,nspecies call wspline(nrmt_(is),rsp_(:,is),wcrmt_(:,:,is)) call wspline(nrcmt_(is),rcmt_(:,is),wcrcmt_(:,:,is)) end do allocate(rfmt_(lmmaxo_,nrmtmax_,natmtot),rfir_(ngtot_)) allocate(rfmt(lmmaxo,nrmtmax)) n=max(nrmtmax,nrmtmax_) allocate(fi(n),fo(n)) ! read the muffin-tin density read(100) rfmt_,rfir_ ! regrid and pack the muffin-tin function call rgfmt(rhomt) ! regrid the interstitial function rhoir(:)=rfir_(mapir(:)) ! read the Coulomb potential, regrid and pack read(100) rfmt_,rfir_ call rgfmt(vclmt) vclir(:)=rfir_(mapir(:)) ! read the exchange-correlation potential, regrid and pack read(100) rfmt_,rfir_ call rgfmt(vxcmt) vxcir(:)=rfir_(mapir(:)) ! read the Kohn-Sham effective potential, regrid and pack if ((version_(1).gt.2).or.(version_(2).ge.2)) then read(100) rfmt_,rfir_ else allocate(vsig_(ngvec_)) read(100) rfmt_,rfir_,vsig_ deallocate(vsig_) end if call rgfmt(vsmt) vsir(:)=rfir_(mapir(:)) ! read the magnetisation, exchange-correlation and effective magnetic fields if (spinpol_) then ! component map for spin-polarised case mapidm(:)=0 if (ndmag.eq.ndmag_) then do idm=1,ndmag mapidm(idm)=idm end do else mapidm(ndmag)=ndmag_ end if allocate(rvfmt_(lmmaxo_,nrmtmax_,natmtot,ndmag_)) allocate(rvfir_(ngtot_,ndmag_)) allocate(rvfcmt_(lmmaxo_,nrcmtmax_,natmtot,ndmag_)) read(100) rvfmt_,rvfir_ call rgvfmt(magmt) call rgvir(magir) read(100) rvfmt_,rvfir_ call rgvfmt(bxcmt) call rgvir(bxcir) read(100) rvfcmt_,rvfir_ call rgvfcmt(bsmt) call rgvir(bsir) deallocate(rvfmt_,rvfir_,rvfcmt_) ! read fixed spin moment effective fields if (fsmtype_.ne.0) then allocate(bfsmcmt_(3,natmtot)) read(100) bfsmc read(100) bfsmcmt_ if (fsmtype.ne.0) bfsmcmt(:,:)=bfsmcmt_(:,:) ! make sure that the constraining fields are perpendicular to the fixed moments ! for fixed direction calculations (Y. Kvashnin and LN) if (fsmtype.lt.0) then if (ncmag) then call r3vo(momfix,bfsmc) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) call r3vo(mommtfix(:,ia,is),bfsmcmt(:,ias)) end do end do else bfsmc(:)=0.d0 bfsmcmt(:,:)=0.d0 end if end if deallocate(bfsmcmt_) end if end if if (xcgrad.eq.4) then if (xcgrad_.eq.4) then read(100) rfmt_,rfir_ call rgfmt(wxcmt) wxcir(:)=rfir_(mapir(:)) else wxcmt(:,:)=0.d0 wxcir(:)=0.d0 end if call genws end if deallocate(wcrmt_,wcrcmt_,rfmt_,rfir_,rfmt,fi,fo) ! read DFT+U potential matrix in each muffin-tin if (((dftu.ne.0).and.(dftu_.ne.0)).or. & ((ftmtype.ne.0).and.(ftmtype_.ne.0))) then allocate(vmatmt_(lmmaxdm_,nspinor_,lmmaxdm_,nspinor_,natmtot)) read(100) vmatmt_ lmmax=min(lmmaxdm,lmmaxdm_) vmatmt(:,:,:,:,:)=0.d0 if (nspinor.eq.nspinor_) then vmatmt(1:lmmax,:,1:lmmax,:,:)=vmatmt_(1:lmmax,:,1:lmmax,:,:) else if ((nspinor.eq.1).and.(nspinor_.eq.2)) then vmatmt(1:lmmax,1,1:lmmax,1,:)=0.5d0*(vmatmt_(1:lmmax,1,1:lmmax,1,:) & +vmatmt_(1:lmmax,2,1:lmmax,2,:)) else vmatmt(1:lmmax,1,1:lmmax,1,:)=vmatmt_(1:lmmax,1,1:lmmax,1,:) vmatmt(1:lmmax,2,1:lmmax,2,:)=vmatmt_(1:lmmax,1,1:lmmax,1,:) end if deallocate(vmatmt_) end if ! read fixed tensor moment potential matrix elements if ((ftmtype.ne.0).and.(ftmtype_.ne.0)) then allocate(vmftm_(lmmaxdm_,nspinor_,lmmaxdm_,nspinor_,natmtot)) read(100) vmftm_ lmmax=min(lmmaxdm,lmmaxdm_) vmftm_(:,:,:,:,:)=0.d0 if (nspinor.eq.nspinor_) then vmftm(1:lmmax,:,1:lmmax,:,:)=vmftm_(1:lmmax,:,1:lmmax,:,:) else if ((nspinor.eq.1).and.(nspinor_.eq.2)) then vmftm(1:lmmax,1,1:lmmax,1,:)=0.5d0*(vmftm_(1:lmmax,1,1:lmmax,1,:) & +vmftm_(1:lmmax,2,1:lmmax,2,:)) else vmftm(1:lmmax,1,1:lmmax,1,:)=vmftm_(1:lmmax,1,1:lmmax,1,:) vmftm(1:lmmax,2,1:lmmax,2,:)=vmftm_(1:lmmax,1,1:lmmax,1,:) end if deallocate(vmftm_) end if close(100) return contains subroutine rgfmt(rfmtp) implicit none ! arguments real(8), intent(out) :: rfmtp(npmtmax,natmtot) do ias=1,natmtot is=idxis(ias) ! regrid the muffin-tin function do lm=1,lmmax fi(1:nrmt_(is))=rfmt_(lm,1:nrmt_(is),ias) call rfinterp(nrmt_(is),rsp_(:,is),wcrmt_(:,:,is),fi,nrmt(is),rsp(:,is),fo) rfmt(lm,1:nrmt(is))=fo(1:nrmt(is)) end do rfmt(lmmax+1:lmmaxo,1:nrmt(is))=0.d0 ! pack the muffin-tin function call rfmtpack(.true.,nrmt(is),nrmti(is),rfmt,rfmtp(:,ias)) end do end subroutine subroutine rgvfmt(rvfmt) implicit none ! arguments real(8), intent(out) :: rvfmt(npmtmax,natmtot,ndmag) do idm=1,ndmag jdm=mapidm(idm) if (jdm.eq.0) then rvfmt(:,:,idm)=0.d0 cycle end if do ias=1,natmtot is=idxis(ias) do lm=1,lmmax fi(1:nrmt_(is))=rvfmt_(lm,1:nrmt_(is),ias,jdm) call rfinterp(nrmt_(is),rsp_(:,is),wcrmt_(:,:,is),fi,nrmt(is),rsp(:,is), & fo) rfmt(lm,1:nrmt(is))=fo(1:nrmt(is)) end do rfmt(lmmax+1:lmmaxo,1:nrmt(is))=0.d0 call rfmtpack(.true.,nrmt(is),nrmti(is),rfmt,rvfmt(:,ias,idm)) end do end do end subroutine subroutine rgvfcmt(rvfcmt) implicit none ! arguments real(8), intent(out) :: rvfcmt(npcmtmax,natmtot,ndmag) do idm=1,ndmag jdm=mapidm(idm) if (jdm.eq.0) then rvfcmt(:,:,idm)=0.d0 cycle end if do ias=1,natmtot is=idxis(ias) do lm=1,lmmax fi(1:nrcmt_(is))=rvfcmt_(lm,1:nrcmt_(is),ias,jdm) call rfinterp(nrcmt_(is),rcmt_(:,is),wcrcmt_(:,:,is),fi,nrcmt(is), & rcmt(:,is),fo) rfmt(lm,1:nrcmt(is))=fo(1:nrcmt(is)) end do rfmt(lmmax+1:lmmaxo,1:nrcmt(is))=0.d0 call rfmtpack(.true.,nrcmt(is),nrcmti(is),rfmt,rvfcmt(:,ias,idm)) end do end do end subroutine subroutine rgvir(rvfir) implicit none ! arguments real(8), intent(out) :: rvfir(ngtot,ndmag) do idm=1,ndmag jdm=mapidm(idm) if (jdm.eq.0) then rvfir(:,idm)=0.d0 cycle end if rvfir(:,idm)=rvfir_(mapir(:),jdm) end do end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/eveqnhf.f900000644000000000000000000000013214061636517014700 xustar0030 mtime=1623670095.103102317 30 atime=1623670093.843103487 30 ctime=1623670095.103102317 elk-7.2.42/src/eveqnhf.f900000644002504400250440000001475514061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnhf(ikp,vmt,vir,bmt,bir,evecsvp) use modmain use modomp implicit none ! arguments integer, intent(in) :: ikp real(8), intent(in) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(in) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) complex(8), intent(inout) :: evecsvp(nstsv,nstsv) ! local variables integer ik,jk,ist1,ist2,ist3 integer iv(3),iq,ig,nthd real(8) vc(3),t1 complex(8) z1 ! automatic arrays integer idx(nstsv) ! allocatable arrays real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: h(:,:),v(:,:),kmat(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: zrhomt(:,:,:),zrhoir(:,:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) ! external functions complex(8), external :: zfinp !$OMP CRITICAL(eveqnhf_) write(*,'("Info(eveqnhf): ",I6," of ",I6," k-points")') ikp,nkpt !$OMP END CRITICAL(eveqnhf_) ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(h(nstsv,nstsv),v(nstsv,nstsv)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot,nstsv),zrhoir(ngtc,nstsv)) ! get the first-variational eigenvectors from file for input reduced k-point call getevecfv(filext,ikp,vkl(:,ikp),vgkl(:,:,1,ikp),evecfv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of the input k-point call genwfsv(.false.,.true.,nstsv,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsvp,wfmt1,ngtc,wfir1) !-----------------------------------------! ! local potential matrix elements ! !-----------------------------------------! if (hybrid.and.spinpol) then ! magnetic field matrix elements in hybrid case call genvbmatk(vmt,vir,bmt,bir,ngk(1,ikp),igkig(:,1,ikp),wfmt1,ngtc,wfir1,h) else call genvmatk(vmt,vir,ngk(1,ikp),igkig(:,1,ikp),wfmt1,ngtc,wfir1,h) end if ! Fourier transform wavefunctions to real-space call zftwfir(ngk(1,ikp),igkig(:,1,ikp),wfir1) !---------------------------------! ! kinetic matrix elements ! !---------------------------------! allocate(kmat(nstsv,nstsv)) call getkmat(ikp,kmat) call zgemm('N','N',nstsv,nstsv,nstsv,zone,kmat,nstsv,evecsvp,nstsv,zzero,v, & nstsv) call zgemm('C','N',nstsv,nstsv,nstsv,zone,evecsvp,nstsv,v,nstsv,zone,h,nstsv) deallocate(kmat) !------------------------------! ! Fock matrix elements ! !------------------------------! v(:,:)=0.d0 ! loop over non-reduced k-point set do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! determine the q-vector iv(:)=ivk(:,ikp)-ivk(:,ik) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vc(:)=vkc(:,ikp)-vkc(:,ik) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file for non-reduced k-point call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,1,ik),evecfv) call getevecsv(filext,0,vkl(:,ik),evecsv) ! calculate the wavefunctions for all states call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) do ist3=1,nstsv if (abs(occsv(ist3,jk)).lt.epsocc) cycle ! calculate the complex overlap densities for all states (T. McQueen) call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist1=1,nstsv call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist3),wfir2(:,:,ist3), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt(:,:,ist1),zrhoir(:,ist1)) end do !$OMP END PARALLEL DO call freethd(nthd) t1=wqptnr*occsv(ist3,jk)/occmax call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zvclmt,zvclir) & !$OMP PRIVATE(ist1,z1) & !$OMP NUM_THREADS(nthd) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) !$OMP DO do ist2=1,nstsv ! calculate the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax, & zrhomt(:,:,ist2),zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc, & gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir(:,ist2),npcmtmax,zvclmt, & zvclir) zvclir(:)=zvclir(:)*cfrc(:) do ist1=1,ist2 z1=zfinp(zrhomt(:,:,ist1),zrhoir(:,ist1),zvclmt,zvclir) v(ist1,ist2)=v(ist1,ist2)-t1*z1 end do end do !$OMP END DO deallocate(zvclmt,zvclir) !$OMP END PARALLEL call freethd(nthd) end do ! end loop over non-reduced k-point set end do deallocate(vgqc,gqc,gclgq,jlgqrmt) deallocate(ylmgq,sfacgq,apwalm,evecfv) deallocate(wfmt1,wfir1,wfmt2,wfir2) deallocate(zrhomt,zrhoir) ! scale the Coulomb matrix elements in the case of a hybrid functional if (hybrid) v(:,:)=hybridc*v(:,:) ! add the Coulomb matrix elements to Hamiltonian h(:,:)=h(:,:)+v(:,:) !----------------------------------------------! ! diagonalise Hartree-Fock Hamiltonian ! !----------------------------------------------! call eveqnzh(nstsv,nstsv,h,evalsv(:,ikp)) ! apply unitary transformation to the third-variational states so that they ! refer to the first-variational basis evecsv(:,:)=evecsvp(:,:) call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,h,nstsv,zzero,evecsvp, & nstsv) deallocate(evecsv,h,v) end subroutine elk-7.2.42/src/PaxHeaders.21776/zbsht.f900000644000000000000000000000013214061636517014376 xustar0030 mtime=1623670095.105102316 30 atime=1623670093.845103485 30 ctime=1623670095.105102316 elk-7.2.42/src/zbsht.f900000644002504400250440000000261614061636517016440 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zbsht ! !INTERFACE: subroutine zbsht(nr,nri,zfmt1,zfmt2) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on the inner part of the muffin-tin (in,integer) ! zfmt1 : input complex muffin-tin function in spherical harmonics ! (in,complex(*)) ! zfmt2 : output complex muffin-tin function in spherical coordinates ! (out,complex(*)) ! !DESCRIPTION: ! Performs a backward spherical harmonic transform (SHT) on a complex ! muffin-tin function expressed in spherical harmonics to obtain a function in ! spherical coordinates. See also {\tt genshtmat} and {\tt zfsht}. ! ! !REVISION HISTORY: ! Created October 2013 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri complex(8), intent(in) :: zfmt1(*) complex(8), intent(out) :: zfmt2(*) ! local variables integer i ! transform the inner part of the muffin-tin call zgemm('N','N',lmmaxi,nri,lmmaxi,zone,zbshti,lmmaxi,zfmt1,lmmaxi,zzero, & zfmt2,lmmaxi) ! transform the outer part of the muffin-tin i=lmmaxi*nri+1 call zgemm('N','N',lmmaxo,nr-nri,lmmaxo,zone,zbshto,lmmaxo,zfmt1(i),lmmaxo, & zzero,zfmt2(i),lmmaxo) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/i3mtv.f900000644000000000000000000000013214061636517014306 xustar0030 mtime=1623670095.106102315 30 atime=1623670093.846103484 30 ctime=1623670095.106102315 elk-7.2.42/src/i3mtv.f900000644002504400250440000000143714061636517016350 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: i3mtv ! !INTERFACE: pure subroutine i3mtv(a,x,y) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,integer(3,3)) ! x : input vector (in,integer(3)) ! y : output vector (out,integer(3)) ! !DESCRIPTION: ! Multiplies the transpose of an integer $3\times 3$ matrix with a vector. ! ! !REVISION HISTORY: ! Created April 2007 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: a(3,3),x(3) integer, intent(out) :: y(3) y(1)=a(1,1)*x(1)+a(2,1)*x(2)+a(3,1)*x(3) y(2)=a(1,2)*x(1)+a(2,2)*x(2)+a(3,2)*x(3) y(3)=a(1,3)*x(1)+a(2,3)*x(2)+a(3,3)*x(3) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/spline.f900000644000000000000000000000013214061636517014536 xustar0030 mtime=1623670095.108102313 30 atime=1623670093.848103482 30 ctime=1623670095.108102313 elk-7.2.42/src/spline.f900000644002504400250440000000564614061636517016606 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: spline ! !INTERFACE: subroutine spline(n,x,f,cf) ! !INPUT/OUTPUT PARAMETERS: ! n : number of points (in,integer) ! x : abscissa array (in,real(n)) ! f : input data array (in,real(n)) ! cf : cubic spline coefficients (out,real(3,n)) ! !DESCRIPTION: ! Calculates the coefficients of a cubic spline fitted to input data. In other ! words, given a set of data points $f_i$ defined at $x_i$, where ! $i=1\ldots n$, the coefficients $c_j^i$ are determined such that ! $$ y_i(x)=f_i+c_1^i(x-x_i)+c_2^i(x-x_i)^2+c_3^i(x-x_i)^3, $$ ! is the interpolating function for $x\in[x_i,x_{i+1})$. The coefficients are ! determined piecewise by fitting a cubic polynomial to adjacent points. ! ! !REVISION HISTORY: ! Created November 2011 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x(n),f(n) real(8), intent(out) :: cf(3,n) ! local variables integer i real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) t0,t1,t2,t3,t4,t5,t6,t7 if (n.le.0) then write(*,*) write(*,'("Error(spline): n <= 0 : ",I8)') n write(*,*) stop end if if (n.eq.1) then cf(:,1)=0.d0 return end if if (n.eq.2) then cf(1,1)=(f(2)-f(1))/(x(2)-x(1)) cf(2:3,1)=0.d0 cf(1,2)=cf(1,1) cf(2:3,2)=0.d0 return end if if (n.eq.3) then x0=x(1) x1=x(2)-x0; x2=x(3)-x0 y0=f(1) y1=f(2)-y0; y2=f(3)-y0 t0=1.d0/(x1*x2*(x2-x1)) t3=x1*y2; t4=x2*y1 t1=t0*(x2*t4-x1*t3) t2=t0*(t3-t4) cf(1,1)=t1 cf(2,1)=t2 cf(3,1)=0.d0 t3=2.d0*t2 cf(1,2)=t1+t3*x1 cf(2,2)=t2 cf(3,2)=0.d0 cf(1,3)=t1+t3*x2 cf(2,3)=t2 cf(3,3)=0.d0 return end if x0=x(1) x1=x(2)-x0; x2=x(3)-x0; x3=x(4)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=f(1) y1=f(2)-y0; y2=f(3)-y0; y3=f(4)-y0 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 t7=t0*(t1*t4+t2*t6-t3*t5) t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y3=t2*t5-t3*t4; y2=t1*t4-t2*t6 t1=t0*(x1*y1+x2*y2+x3*y3) t2=-t0*(y1+y2+y3) cf(1,1)=t1; cf(2,1)=t2; cf(3,1)=t7 cf(1,2)=t1+2.d0*t2*x1+3.d0*t7*t4 cf(2,2)=t2+3.d0*t7*x1 cf(3,2)=t7 if (n.eq.4) then cf(1,3)=t1+2.d0*t2*x2+3.d0*t7*t5 cf(2,3)=t2+3.d0*t7*x2 cf(3,3)=t7 cf(1,4)=t1+2.d0*t2*x3+3.d0*t7*t6 cf(2,4)=t2+3.d0*t7*x3 cf(3,4)=t7 return end if do i=3,n-2 x0=x(i) x1=x(i-1)-x0; x2=x(i+1)-x0; x3=x(i+2)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=f(i) y1=f(i-1)-y0; y2=f(i+1)-y0; y3=f(i+2)-y0 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 t7=t0*(t1*t4+t2*t6-t3*t5) t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y2=t1*t4-t2*t6; y3=t2*t5-t3*t4 t1=t0*(x1*y1+x2*y2+x3*y3) t2=-t0*(y1+y2+y3) cf(1,i)=t1; cf(2,i)=t2; cf(3,i)=t7 end do cf(1,n-1)=t1+2.d0*t2*x2+3.d0*t7*t5 cf(2,n-1)=t2+3.d0*t7*x2 cf(3,n-1)=t7 cf(1,n)=t1+2.d0*t2*x3+3.d0*t7*t6 cf(2,n)=t2+3.d0*t7*x3 cf(3,n)=t7 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gauntyry.f900000644000000000000000000000013114061636517015125 xustar0030 mtime=1623670095.109102312 29 atime=1623670093.85010348 30 ctime=1623670095.109102312 elk-7.2.42/src/gauntyry.f900000644002504400250440000000302314061636517017161 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gauntyry ! !INTERFACE: complex(8) function gauntyry(l1,l2,l3,m1,m2,m3) ! !INPUT/OUTPUT PARAMETERS: ! l1, l2, l3 : angular momentum quantum numbers (in,integer) ! m1, m2, m3 : magnetic quantum numbers (in,integer) ! !DESCRIPTION: ! Returns the complex Gaunt-like coefficient given by ! $\langle Y^{l_1}_{m_1}|R^{l_2}_{m_2}|Y^{l_3}_{m_3}\rangle$, where $Y_{lm}$ ! and $R_{lm}$ are the complex and real spherical harmonics, respectively. ! Suitable for $l_i$ less than 50. See routine {\tt genrlm}. ! ! !REVISION HISTORY: ! Created November 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: l1,l2,l3 integer, intent(in) :: m1,m2,m3 ! local variables ! real constant sqrt(2)/2 real(8), parameter :: c1=0.7071067811865475244d0 real(8) t1 ! external functions real(8), external :: gaunt if (m2.gt.0) then if (mod(m2,2).eq.0) then t1=c1*(gaunt(l1,l2,l3,m1,m2,m3)+gaunt(l1,l2,l3,m1,-m2,m3)) else t1=c1*(gaunt(l1,l2,l3,m1,m2,m3)-gaunt(l1,l2,l3,m1,-m2,m3)) end if gauntyry=cmplx(t1,0.d0,8) else if (m2.lt.0) then if (mod(m2,2).eq.0) then t1=c1*(gaunt(l1,l2,l3,m1,m2,m3)-gaunt(l1,l2,l3,m1,-m2,m3)) else t1=c1*(gaunt(l1,l2,l3,m1,m2,m3)+gaunt(l1,l2,l3,m1,-m2,m3)) end if gauntyry=cmplx(0.d0,-t1,8) else gauntyry=cmplx(gaunt(l1,l2,l3,m1,m2,m3),0.d0,8) end if end function !EOC elk-7.2.42/src/PaxHeaders.21776/findnjcmax.f900000644000000000000000000000013014061636517015363 xustar0029 mtime=1623670095.11110231 30 atime=1623670093.851103479 29 ctime=1623670095.11110231 elk-7.2.42/src/findnjcmax.f900000644002504400250440000000074514061636517017430 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine findnjcmax use modmain implicit none ! local variables integer is,n ! find the maximum size of the spherical Bessel function array over all species njcmax=1 do is=1,nspecies n=(lmaxi+1)*nrcmti(is)+(lmaxo+1)*(nrcmt(is)-nrcmti(is)) if (n.gt.njcmax) njcmax=n end do end subroutine elk-7.2.42/src/PaxHeaders.21776/gndstate.f900000644000000000000000000000013214061636517015055 xustar0030 mtime=1623670095.113102308 30 atime=1623670093.853103478 30 ctime=1623670095.113102308 elk-7.2.42/src/gndstate.f900000644002504400250440000002730214061636517017116 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2013 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gndstate ! !INTERFACE: subroutine gndstate ! !USES: use modmain use moddftu use modulr use modmpi use modomp ! !DESCRIPTION: ! Computes the self-consistent Kohn-Sham ground-state. General information is ! written to the file {\tt INFO.OUT}. First- and second-variational ! eigenvalues, eigenvectors and occupancies are written to the unformatted ! files {\tt EVALFV.OUT}, {\tt EVALSV.OUT}, {\tt EVECFV.OUT}, {\tt EVECSV.OUT} ! and {\tt OCCSV.OUT}. The density, magnetisation, Kohn-Sham potential and ! magnetic field are written to {\tt STATE.OUT}. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) ! Added MPI, August 2010 (JKD) !EOP !BOC implicit none ! local variables logical twrite integer ik,nmix,nwork real(8) dv,etp,de,timetot ! allocatable arrays real(8), allocatable :: work(:) ! initialise global variables call init0 call init1 ! initialise q-vector-dependent variables if required if (xctype(1).lt.0) call init2 ! apply strain to the G, k, G+k and q-vectors if required call straingkq if (task.eq.0) trdstate=.false. if (task.eq.1) trdstate=.true. ! only the MPI master process should write files if (mp_mpi) then ! write the real and reciprocal lattice vectors to file call writelat ! write symmetry matrices to file call writesym ! output the k-point set to file call writekpts ! write lattice vectors and atomic positions to file open(50,file='GEOMETRY'//trim(filext),form='FORMATTED') call writegeom(50) close(50) ! write interatomic distances to file open(50,file='IADIST'//trim(filext),form='FORMATTED') call writeiad(50) close(50) ! open INFO.OUT file open(60,file='INFO'//trim(filext),form='FORMATTED') ! write out general information to INFO.OUT call writeinfo(60) write(60,*) ! open TOTENERGY.OUT open(61,file='TOTENERGY'//trim(filext),form='FORMATTED') ! open FERMIDOS.OUT open(62,file='FERMIDOS'//trim(filext),form='FORMATTED') ! open MOMENT.OUT if required if (spinpol) open(63,file='MOMENT'//trim(filext),form='FORMATTED') ! open GAP.OUT open(64,file='GAP'//trim(filext),form='FORMATTED') ! open RMSDVS.OUT open(65,file='RMSDVS'//trim(filext),form='FORMATTED') ! open DTOTENERGY.OUT open(66,file='DTOTENERGY'//trim(filext),form='FORMATTED') ! open TMDFTU.OUT if (tmwrite) open(67,file='TMDFTU'//trim(filext),form='FORMATTED') ! open MOMENTM.OUT if (spinpol) open(68,file='MOMENTM'//trim(filext),form='FORMATTED') ! open RESIDUAL.OUT if (xctype(1).lt.0) open(69,file='RESIDUAL'//trim(filext),form='FORMATTED') end if iscl=0 if (trdstate) then ! read the Kohn-Sham potential and fields from file call readstate if (mp_mpi) then write(60,'("Potential read in from STATE.OUT")') end if if (autolinengy) call readfermi else ! initialise the density and magnetisation from atomic data call rhoinit call maginit ! generate the Kohn-Sham potential and magnetic field call potks(.true.) if (mp_mpi) then write(60,'("Kohn-Sham potential initialised from atomic data")') end if end if if (mp_mpi) flush(60) call genvsig ! size of mixing vector nmix=size(vsbs) ! determine the size of the mixer work array nwork=-1 call mixerifc(mixtype,nmix,vsbs,dv,nwork,vsbs) allocate(work(nwork)) ! initialise the mixer iscl=0 call mixerifc(mixtype,nmix,vsbs,dv,nwork,work) ! set the stop signal to .false. tstop=.false. ! set last self-consistent loop flag tlast=.false. etp=0.d0 ! begin the self-consistent loop if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') end if do iscl=1,maxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') end if if (iscl.ge.maxscl) then if (mp_mpi) then write(60,*) write(60,'("Reached self-consistent loops maximum")') end if if (maxscl.gt.1) then write(*,*) write(*,'("Warning(gndstate): failed to reach self-consistency after ", & &I4," loops")') iscl end if tlast=.true. end if if (mp_mpi) flush(60) ! reset the OpenMP thread variables call omp_reset ! generate the core wavefunctions and densities call gencore ! find the new linearisation energies call linengy ! write out the linearisation energies if (mp_mpi) call writelinen ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! generate the first- and second-variational eigenvectors and eigenvalues call genevfsv ! find the occupation numbers and Fermi energy call occupy if (mp_mpi) then if (autoswidth) then write(60,*) write(60,'("New smearing width : ",G18.10)') swidth end if ! write the occupation numbers to file do ik=1,nkpt call putoccsv(filext,ik,occsv(:,ik)) end do ! write eigenvalues to file call writeeval ! write the Fermi energy to file call writefermi end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! generate the density and magnetisation call rhomag ! DFT+U or fixed tensor moment calculation if ((dftu.ne.0).or.(ftmtype.ne.0)) then ! generate the muffin-tin density matrix used for computing the potential matrix call gendmatmt ! write the FTM tensor moments to file if (ftmtype.ne.0) call writeftm ! generate the DFT+U or FTM muffin-tin potential matrices call genvmatmt end if if (dftu.ne.0) then if (mp_mpi) then ! write the DFT+U matrices to file call writedftu ! calculate and write tensor moments to file if (tmwrite) then if (spinorb) then call writetm3du(67) else call writetm2du(67) end if end if end if end if ! compute the Kohn-Sham potentials and magnetic fields call potks(.true.) if (mp_mpi) then if ((xcgrad.eq.3).and.(c_tb09.ne.0.d0)) then write(60,*) write(60,'("Tran-Blaha ''09 constant c : ",G18.10)') c_tb09 end if end if ! mix the old effective potential and field with the new call mixerifc(mixtype,nmix,vsbs,dv,nwork,work) ! calculate and add the fixed spin moment effective field (after mixing) call fsmbfield call addbfsm ! Fourier transform Kohn-Sham potential to G-space call genvsig ! reduce the external magnetic fields if required if (reducebf.lt.1.d0) then bfieldc(:)=bfieldc(:)*reducebf bfcmt(:,:,:)=bfcmt(:,:,:)*reducebf end if ! compute the energy components call energy if (mp_mpi) then ! output energy components call writeengy(60) write(60,*) write(60,'("Density of states at Fermi energy : ",G18.10)') fermidos write(60,'(" (states/Hartree/unit cell)")') write(60,*) write(60,'("Estimated indirect band gap : ",G18.10)') bandgap(1) write(60,'(" from k-point ",I6," to k-point ",I6)') ikgap(1),ikgap(2) write(60,'("Estimated direct band gap : ",G18.10)') bandgap(2) write(60,'(" at k-point ",I6)') ikgap(3) ! write total energy to TOTENERGY.OUT write(61,'(G22.12)') engytot flush(61) ! write DOS at Fermi energy to FERMIDOS.OUT write(62,'(G18.10)') fermidos flush(62) ! output charges and moments call writechg(60) if (spinpol) then call writemom(60) ! write total moment to MOMENT.OUT write(63,'(3G18.10)') momtot(1:ndmag) flush(63) ! write total moment magnitude to MOMENTM.OUT write(68,'(G18.10)') momtotm flush(68) end if ! write estimated Kohn-Sham indirect band gap write(64,'(G22.12)') bandgap(1) flush(64) ! output effective fields for fixed spin moment calculations if (fsmtype.ne.0) call writefsm(60) ! check for WRITE file call checkwrite(twrite) ! write STATE.OUT file if required if (twrite.or.((nwrite.ge.1).and.(mod(iscl,nwrite).eq.0))) then call writestate write(60,*) write(60,'("Wrote STATE.OUT")') end if ! write OEP residual if (xctype(1).lt.0) then write(60,*) write(60,'("Magnitude of OEP residual : ",G18.10)') resoep write(69,'(G18.10)') resoep flush(69) end if end if ! exit self-consistent loop if required if (tlast) goto 10 ! check for convergence if (iscl.ge.2) then de=abs(engytot-etp) if (mp_mpi) then write(60,*) write(60,'("RMS change in Kohn-Sham potential (target) : ",G18.10," (",& &G18.10,")")') dv,epspot write(65,'(G18.10)') dv flush(65) write(60,'("Absolute change in total energy (target) : ",G18.10," (",& &G18.10,")")') de,epsengy write(66,'(G18.10)') de flush(66) if ((dv.lt.epspot).and.(de.lt.epsengy)) then write(60,*) write(60,'("Convergence targets achieved")') tlast=.true. end if end if end if ! average the current and previous total energies and store if (iscl.gt.1) then etp=0.75d0*engytot+0.25d0*etp else etp=engytot end if ! check for STOP file call checkstop if (tstop) tlast=.true. ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) ! output the current total CPU time timetot=timeinit+timemat+timefv+timesv+timerho+timepot+timefor if (mp_mpi) then write(60,*) write(60,'("Time (CPU seconds) : ",F12.2)') timetot end if ! end the self-consistent loop end do 10 continue ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') ! write density and potentials to file only if maxscl > 1 if (maxscl.gt.1) then call writestate write(60,*) write(60,'("Wrote STATE.OUT")') end if end if ! compute forces if required if (tforce) then call force ! output forces to INFO.OUT if (mp_mpi) call writeforces(60) end if ! compute the paramagnetic current density and total current if required if (tjr) then call genjpr call genjtot if (mp_mpi) then write(60,*) write(60,'("Total paramagnetic current per unit cell")') write(60,'(3G18.10)') jtot write(60,'(" magnitude : ",G18.10)') jtotm end if end if ! total time used timetot=timeinit+timemat+timefv+timesv+timerho+timepot+timefor if (mp_mpi) then ! output timing information write(60,*) write(60,'("Timings (CPU seconds) :")') write(60,'(" initialisation",T40,": ",F12.2)') timeinit write(60,'(" Hamiltonian and overlap matrix set up",T40,": ",F12.2)') timemat write(60,'(" first-variational eigenvalue equation",T40,": ",F12.2)') timefv if (tevecsv) then write(60,'(" second-variational calculation",T40,": ",F12.2)') timesv end if write(60,'(" charge density calculation",T40,": ",F12.2)') timerho write(60,'(" potential calculation",T40,": ",F12.2)') timepot if (tforce) then write(60,'(" force calculation",T40,": ",F12.2)') timefor end if write(60,'(" total",T40,": ",F12.2)') timetot write(60,*) write(60,'("+----------------------------+")') write(60,'("| Elk version ",I1.1,".",I1.1,".",I2.2," stopped |")') version write(60,'("+----------------------------+")') ! close the INFO.OUT file close(60) ! close the TOTENERGY.OUT file close(61) ! close the FERMIDOS.OUT file close(62) ! close the MOMENT.OUT and MOMENTM.OUT files if (spinpol) then close(63); close(68) end if ! close the GAP.OUT file close(64) ! close the RMSDVS.OUT file close(65) ! close the DTOTENERGY.OUT file close(66) ! close TMDFTU.OUT file if (tmwrite) close(67) ! close the RESIDUAL.OUT file if (xctype(1).lt.0) close(69) end if deallocate(work) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/sstask.f900000644000000000000000000000013214061636517014554 xustar0030 mtime=1623670095.114102307 30 atime=1623670093.855103476 30 ctime=1623670095.114102307 elk-7.2.42/src/sstask.f900000644002504400250440000000166714061636517016623 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine sstask(fnum,fext) use modmain use modmpi implicit none ! arguments integer, intent(in) :: fnum character(*), intent(out) :: fext ! local variables logical exist ! only master process should search for file if (.not.mp_mpi) goto 10 do iqss=1,nqpt ! construct the spin-spiral file extension call ssfext(iqss,fext) ! determine if the SS file exists inquire(file='SS'//trim(fext),exist=exist) if (.not.exist) then open(fnum,file='SS'//trim(fext),form='FORMATTED') goto 10 end if end do iqss=0 write(*,*) write(*,'("Info(sstask): nothing more to do")') 10 continue ! broadcast to all other processes call mpi_bcast(iqss,1,mpi_integer,0,mpicom,ierror) if (iqss.eq.0) then fext='.OUT' else call ssfext(iqss,fext) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/fermisurf.f900000644000000000000000000000013214061636517015246 xustar0030 mtime=1623670095.116102305 30 atime=1623670093.856103475 30 ctime=1623670095.116102305 elk-7.2.42/src/fermisurf.f900000644002504400250440000001023414061636517017303 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine fermisurf use modmain use modomp implicit none ! local variables integer ik,nst,ist integer ist0,ist1,jst0,jst1 integer i1,i2,i3,nf,f integer np,i,nthd real(8) e0,e1,prd,v(3) ! allocatable arrays integer, allocatable :: idx(:) real(8), allocatable :: evalfv(:,:),e(:),vpc(:,:) complex(8), allocatable :: evecfv(:,:,:) complex(8), allocatable :: evecsv(:,:) ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! begin parallel loop over reduced k-points set call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evalfv,evecfv,evecsv) & !$OMP NUM_THREADS(nthd) allocate(evalfv(nstfv,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv)) allocate(evecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkpt !$OMP CRITICAL(fermisurf_) write(*,'("Info(fermisurf): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(fermisurf_) ! solve the first- and second-variational eigenvalue equations call eveqn(ik,evalfv,evecfv,evecsv) ! end loop over reduced k-points set end do !$OMP END DO deallocate(evalfv,evecfv,evecsv) !$OMP END PARALLEL call freethd(nthd) ! if iterative diagonalisation is used the eigenvalues must be reordered if (tefvit.and.(.not.spinpol)) then allocate(idx(nstsv),e(nstsv)) do ik=1,nkpt e(:)=evalsv(:,ik) call sortidx(nstsv,e,idx) evalsv(1:nstsv,ik)=e(idx(1:nstsv)) end do deallocate(idx,e) end if ! generate the plotting point grid in Cartesian coordinates (this has the same ! arrangement as the k-point grid) np=np3d(1)*np3d(2)*np3d(3) allocate(vpc(3,np)) call plotpt3d(vpc) do i=1,np v(:)=vpc(:,i) call r3mv(bvec,v,vpc(:,i)) end do ! number of files to plot (2 for collinear magnetism, 1 otherwise) if (ndmag.eq.1) then nf=2 else nf=1 end if do f=1,nf if (nf.eq.2) then if (f.eq.1) then open(50,file='FERMISURF_UP.OUT',form='FORMATTED',action='WRITE') jst0=1; jst1=nstfv else open(50,file='FERMISURF_DN.OUT',form='FORMATTED',action='WRITE') jst0=nstfv+1; jst1=2*nstfv end if else open(50,file='FERMISURF.OUT',form='FORMATTED',action='WRITE') jst0=1; jst1=nstsv end if ! find the range of eigenvalues which contribute to the Fermi surface (Lars) ist0=jst1; ist1=jst0 do ist=jst0,jst1 e0=minval(evalsv(ist,:)); e1=maxval(evalsv(ist,:)) ! determine if the band crosses the Fermi energy if ((e0.lt.efermi).and.(e1.gt.efermi)) then ist0=min(ist0,ist); ist1=max(ist1,ist) end if end do nst=ist1-ist0+1 if (task.eq.100) then ! write product of eigenstates minus the Fermi energy write(50,'(3I6," : grid size")') np3d(:) i=0 do i3=0,ngridk(3)-1 do i2=0,ngridk(2)-1 do i1=0,ngridk(1)-1 i=i+1 ik=ivkik(i1,i2,i3) prd=product(evalsv(ist0:ist1,ik)-efermi) write(50,'(4G18.10)') vpc(:,i),prd end do end do end do else ! write the eigenvalues minus the Fermi energy separately write(50,'(4I6," : grid size, number of states")') np3d(:),nst i=0 do i3=0,ngridk(3)-1 do i2=0,ngridk(2)-1 do i1=0,ngridk(1)-1 i=i+1 ik=ivkik(i1,i2,i3) write(50,'(3G18.10,40F14.8)') vpc(:,i),evalsv(ist0:ist1,ik)-efermi end do end do end do end if close(50) end do write(*,*) write(*,'("Info(fermisurf):")') if (ndmag.eq.1) then write(*,'(" 3D Fermi surface data written to FERMISURF_UP.OUT and & &FERMISURF_DN.OUT")') else write(*,'(" 3D Fermi surface data written to FERMISURF.OUT")') end if if (task.eq.100) then write(*,'(" in terms of the product of eigenvalues minus the Fermi energy")') else write(*,'(" in terms of separate eigenvalues minus the Fermi energy")') end if deallocate(vpc) end subroutine elk-7.2.42/src/PaxHeaders.21776/spiralsc.f900000644000000000000000000000013214061636517015064 xustar0030 mtime=1623670095.117102304 30 atime=1623670093.858103473 30 ctime=1623670095.117102304 elk-7.2.42/src/spiralsc.f900000644002504400250440000000457514061636517017134 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine spiralsc use modmain use modmpi use modstore use moddelf implicit none ! local variables integer nq,iq,jq real(8) q ! store original parameters natoms_(:)=natoms(:) avec_(:,:)=avec(:,:) atposl_(:,:,:)=atposl(:,:,:) bfcmt0_(:,:,:)=bfcmt0(:,:,:) mommtfix_(:,:,:)=mommtfix(:,:,:) autokpt_=autokpt ngridk_(:)=ngridk ! initialise universal variables call init0 ! initialise q-point dependent variables call init2 ! store original parameters atposc_(:,:,:)=atposc(:,:,:) 10 continue call sstask(80,filext) ! if nothing more to do then restore input parameters and return if (iqss.eq.0) then filext='.OUT' natoms(:)=natoms_(:) avec(:,:)=avec_(:,:) atposl(:,:,:)=atposl_(:,:,:) bfcmt0(:,:,:)=bfcmt0_(:,:,:) mommtfix(:,:,:)=mommtfix_(:,:,:) autokpt=autokpt_ ngridk(:)=ngridk_(:) return end if ! spiral dry run: just generate empty SS files if (task.eq.352) goto 10 if (mp_mpi) then write(*,'("Info(spiralsc): working on ",A)') 'SS'//trim(filext) end if ! determine k-point grid size from radkpt autokpt=.true. ! generate the spin-spiral supercell call genscss ! initialise or read the charge density and potentials from file if (task.eq.350) then trdstate=.false. else trdstate=.true. end if ! run the ground-state calculation call gndstate if (mp_mpi) then write(80,'(I6,T20," : number of unit cells in supercell")') nscss write(80,'(G18.10,T20," : total energy per unit cell")') engytot/dble(nscss) write(80,*) write(80,'("q-point in lattice and Cartesian coordinates :")') write(80,'(3G18.10)') vql(:,iqss) write(80,'(3G18.10)') vqc(:,iqss) q=sqrt(vqc(1,iqss)**2+vqc(2,iqss)**2+vqc(3,iqss)**2) write(80,'(G18.10,T20," : length of q-vector")') q write(80,*) nq=nint(dble(nqptnr)*wqpt(iqss)) write(80,'(I6,T20," : number of equivalent q-points")') nq write(80,'("Equivalent q-points in lattice and Cartesian coordinates :")') do iq=1,nqptnr jq=ivqiq(ivq(1,iq),ivq(2,iq),ivq(3,iq)) if (jq.eq.iqss) then write(80,'(3G18.10)') vql(:,iq) write(80,'(3G18.10)') vqc(:,iq) write(80,*) end if end do close(80) end if ! delete the eigenvector files call delfiles(evec=.true.) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/atom.f900000644000000000000000000000013214061636517014204 xustar0030 mtime=1623670095.119102302 30 atime=1623670093.860103471 30 ctime=1623670095.119102302 elk-7.2.42/src/atom.f900000644002504400250440000001405114061636517016242 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: atom ! !INTERFACE: subroutine atom(sol,ptnucl,zn,nst,n,l,k,occ,xctype,xcgrad,nr,r,eval,rho,vr,rwf) ! !USES: use modxcifc ! !INPUT/OUTPUT PARAMETERS: ! sol : speed of light in atomic units (in,real) ! ptnucl : .true. if the nucleus is a point particle (in,logical) ! zn : nuclear charge (in,real) ! nst : number of states to solve for (in,integer) ! n : priciple quantum number of each state (in,integer(nst)) ! l : quantum number l of each state (in,integer(nst)) ! k : quantum number k (l or l+1) of each state (in,integer(nst)) ! occ : occupancy of each state (inout,real(nst)) ! xctype : exchange-correlation type (in,integer(3)) ! xcgrad : 1 for GGA functional, 0 otherwise (in,integer) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! eval : eigenvalue without rest-mass energy for each state (out,real(nst)) ! rho : charge density (out,real(nr)) ! vr : self-constistent potential (out,real(nr)) ! rwf : major and minor components of radial wavefunctions for each state ! (out,real(nr,2,nst)) ! !DESCRIPTION: ! Solves the Dirac-Kohn-Sham equations for an atom using the ! exchange-correlation functional {\tt xctype} and returns the self-consistent ! radial wavefunctions, eigenvalues, charge densities and potentials. Requires ! the exchange-correlation interface routine {\tt xcifc}. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) ! Fixed s.c. convergence problem, October 2003 (JKD) ! Added support for GGA functionals, June 2006 (JKD) ! !EOP !BOC implicit none ! arguments real(8), intent(in) :: sol logical, intent(in) :: ptnucl real(8), intent(in) :: zn integer, intent(in) :: nst integer, intent(in) :: n(nst),l(nst),k(nst) real(8), intent(inout) :: occ(nst) integer, intent(in) :: xctype(3),xcgrad integer, intent(in) :: nr real(8), intent(in) :: r(nr) real(8), intent(out) :: eval(nst) real(8), intent(out) :: rho(nr),vr(nr) real(8), intent(out) :: rwf(nr,2,nst) ! local variables integer, parameter :: maxscl=200 integer ir,ist,iscl real(8), parameter :: fourpi=12.566370614359172954d0 ! potential convergence tolerance real(8), parameter :: eps=1.d-6 real(8) sm,dv,dvp,ze,beta,t1 ! allocatable arrays real(8), allocatable :: vn(:),vh(:),ex(:),ec(:),vx(:),vc(:),vrp(:) real(8), allocatable :: ri(:),wpr(:,:),fr1(:),fr2(:),gr1(:),gr2(:) real(8), allocatable :: grho(:),g2rho(:),g3rho(:) if (nst.le.0) then write(*,*) write(*,'("Error(atom): invalid nst : ",I8)') nst write(*,*) stop end if ! allocate local arrays allocate(vn(nr),vh(nr),ex(nr),ec(nr),vx(nr),vc(nr),vrp(nr)) allocate(ri(nr),wpr(4,nr),fr1(nr),fr2(nr),gr1(nr),gr2(nr)) if (xcgrad.eq.1) then allocate(grho(nr),g2rho(nr),g3rho(nr)) end if ! find total electronic charge ze=0.d0 do ist=1,nst ze=ze+occ(ist) end do ! set up nuclear potential call potnucl(ptnucl,nr,r,zn,vn) do ir=1,nr ri(ir)=1.d0/r(ir) ! initialise the Kohn-Sham potential to the nuclear potential vr(ir)=vn(ir) end do ! determine the weights for radial integration call wsplintp(nr,r,wpr) dvp=0.d0 vrp(:)=0.d0 ! initialise mixing parameter beta=0.5d0 ! initialise eigenvalues to relativistic values (minus the rest mass energy) do ist=1,nst t1=sqrt(dble(k(ist)**2)-(zn/sol)**2) t1=(dble(n(ist)-abs(k(ist)))+t1)**2 t1=1.d0+((zn/sol)**2)/t1 eval(ist)=sol**2/sqrt(t1)-sol**2 end do ! start of self-consistent loop do iscl=1,maxscl ! solve the Dirac equation for each state !$OMP PARALLEL DO DEFAULT(SHARED) do ist=1,nst call rdirac(sol,n(ist),l(ist),k(ist),nr,r,vr,eval(ist),rwf(:,1,ist), & rwf(:,2,ist)) end do !$OMP END PARALLEL DO ! compute the charge density do ir=1,nr sm=0.d0 do ist=1,nst sm=sm+occ(ist)*(rwf(ir,1,ist)**2+rwf(ir,2,ist)**2) end do fr1(ir)=sm fr2(ir)=sm*ri(ir) rho(ir)=(1.d0/fourpi)*sm*ri(ir)**2 end do call splintwp(nr,wpr,fr1,gr1) call splintwp(nr,wpr,fr2,gr2) ! find the Hartree potential t1=gr2(nr) do ir=1,nr vh(ir)=gr1(ir)*ri(ir)+t1-gr2(ir) end do ! normalise charge density and potential t1=ze/gr1(nr) rho(:)=t1*rho(:) vh(:)=t1*vh(:) ! compute the exchange-correlation energy and potential if (xcgrad.eq.1) then ! GGA functional ! |grad rho| call fderiv(1,nr,r,rho,grho) ! grad^2 rho call fderiv(2,nr,r,rho,g2rho) do ir=1,nr g2rho(ir)=g2rho(ir)+2.d0*ri(ir)*grho(ir) end do ! approximate (grad rho).(grad |grad rho|) do ir=1,nr g3rho(ir)=grho(ir)*g2rho(ir) end do call xcifc(xctype,nr,rho=rho,grho=grho,g2rho=g2rho,g3rho=g3rho,ex=ex,ec=ec,& vx=vx,vc=vc) else ! LDA functional call xcifc(xctype,nr,rho=rho,ex=ex,ec=ec,vx=vx,vc=vc) end if ! self-consistent potential vr(:)=vh(:)+vx(:)+vc(:) ! determine change in potential sm=0.d0 do ir=1,nr sm=sm+(vr(ir)-vrp(ir))**2 end do dv=sqrt(sm)/dble(nr) if (iscl.gt.2) then ! reduce beta if change in potential is diverging if (dv.gt.dvp) beta=beta*0.8d0 beta=max(beta,0.01d0) end if dvp=dv do ir=1,nr ! mix old and new potentials vr(ir)=(1.d0-beta)*vrp(ir)+beta*vr(ir) vrp(ir)=vr(ir) ! add nuclear potential vr(ir)=vr(ir)+vn(ir) end do ! check for convergence if ((iscl.gt.2).and.(dv.lt.eps)) goto 10 ! end self-consistent loop end do write(*,*) write(*,'("Warning(atom): maximum iterations exceeded")') 10 continue deallocate(vn,vh,ex,ec,vx,vc,vrp) deallocate(ri,wpr,fr1,fr2,gr1,gr2) if (xcgrad.eq.1) deallocate(grho,g2rho,g3rho) return contains pure subroutine splintwp(n,wp,f,g) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wp(*),f(n) real(8), intent(out) :: g(n) ! local variables integer i,j real(8) sm g(1)=0.d0 sm=wp(5)*f(1)+wp(6)*f(2)+wp(7)*f(3)+wp(8)*f(4) g(2)=sm do i=3,n-1 j=(i-1)*4+1 sm=sm+wp(j)*f(i-2)+wp(j+1)*f(i-1)+wp(j+2)*f(i)+wp(j+3)*f(i+1) g(i)=sm end do j=(n-1)*4+1 g(n)=sm+wp(j)*f(n-3)+wp(j+1)*f(n-2)+wp(j+2)*f(n-1)+wp(j+3)*f(n) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/maginit.f900000644000000000000000000000013214061636517014674 xustar0030 mtime=1623670095.120102302 30 atime=1623670093.862103469 30 ctime=1623670095.120102302 elk-7.2.42/src/maginit.f900000644002504400250440000000205614061636517016734 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine maginit use modmain implicit none ! local variables integer idm,is,ia,ias,np ! magnetisation as fraction of density real(8), parameter :: fmr=0.15d0 real(8) v(3),t1 if (.not.spinpol) return ! initialise muffin-tin magnetisation do ias=1,natmtot is=idxis(ias) ia=idxia(ias) np=npmt(is) v(:)=bfcmt(:,ia,is)+bfieldc(:) t1=sqrt(v(1)**2+v(2)**2+v(3)**2) if (t1.gt.1.d-8) then t1=-fmr/t1 v(:)=t1*v(:) if (.not.ncmag) v(1)=v(3) do idm=1,ndmag t1=v(idm) magmt(1:np,ias,idm)=t1*rhomt(1:np,ias) end do else magmt(1:np,ias,:)=0.d0 end if end do ! initialise interstitial magnetisation v(:)=bfieldc(:) t1=sqrt(v(1)**2+v(2)**2+v(3)**2) if (t1.gt.1.d-8) then t1=-fmr/t1 v(:)=t1*v(:) if (.not.ncmag) v(1)=v(3) do idm=1,ndmag t1=v(idm) magir(:,idm)=t1*rhoir(:) end do else magir(:,:)=0.d0 end if end subroutine elk-7.2.42/src/PaxHeaders.21776/exxengyk.f900000644000000000000000000000012614061636517015111 xustar0028 mtime=1623670095.1221023 30 atime=1623670093.863103468 28 ctime=1623670095.1221023 elk-7.2.42/src/exxengyk.f900000644002504400250440000001465214061636517017153 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine exxengyk(ikp) use modmain implicit none ! arguments integer, intent(in) :: ikp ! local variables integer iq,ik,jk,m integer nst1,nst2,ist,jst integer is,ia,ias integer nrc,nrci,npc integer iv(3),ig real(8) ex,vc(3) complex(8) z1 ! automatic arrays integer idx(nstsv) ! allocatable arrays real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: wfcr(:,:),zfmt(:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) ! external functions complex(8), external :: zfinp,zfmtinp ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv)) allocate(wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) ! get the eigenvectors from file for input reduced k-point call getevecfv(filext,ikp,vkl(:,ikp),vgkl(:,:,:,ikp),evecfv) call getevecsv(filext,ikp,vkl(:,ikp),evecsv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! count and index the occupied states nst1=0 do ist=1,nstsv if (evalsv(ist,ikp).lt.efermi) then nst1=nst1+1 idx(nst1)=ist end if end do ! calculate the wavefunctions for occupied states of the input k-point allocate(wfmt1(npcmtmax,natmtot,nspinor,nst1),wfir1(ngtc,nspinor,nst1)) call genwfsv(.false.,.false.,nst1,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsv,wfmt1,ngtc,wfir1) ! zero the local exchange energy variable ex=0.d0 ! start loop over non-reduced k-point set do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! determine the q-vector iv(:)=ivk(:,ikp)-ivk(:,ik) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vc(:)=vkc(:,ikp)-vkc(:,ik) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file for non-reduced k-point call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,1,ik),evecfv) call getevecsv(filext,0,vkl(:,ik),evecsv) ! count and index the occupied states nst2=0 do jst=1,nstsv if (evalsv(jst,jk).lt.efermi) then nst2=nst2+1 idx(nst2)=jst end if end do ! calculate the wavefunctions for occupied states call genwfsv(.false.,.false.,nst2,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) !--------------------------------------------! ! valence-valence-valence contribution ! !--------------------------------------------! do jst=1,nst2 do ist=1,nst1 ! calculate the complex overlap density call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,jst),wfir2(:,:,jst), & wfmt1(:,:,:,ist),wfir1(:,:,ist),zrhomt,zrhoir) ! calculate the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax,zrhomt,zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc, & gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir,npcmtmax,zvclmt,zvclir) zvclir(:)=zvclir(:)*cfrc(:) z1=zfinp(zrhomt,zrhoir,zvclmt,zvclir) ex=ex-0.5d0*occmax*wkpt(ikp)*wqptnr*dble(z1) end do end do ! end loop over non-reduced k-point set end do deallocate(vgqc,gqc,gclgq,jlgqrmt) deallocate(evecfv,evecsv) deallocate(apwalm,ylmgq,sfacgq) deallocate(wfmt2,wfir2) !-----------------------------------------! ! valence-core-valence contribution ! !-----------------------------------------! allocate(wfcr(npcmtmax,2),zfmt(npcmtmax)) ! begin loops over atoms and species do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do jst=1,nstsp(is) if (spcore(jst,is)) then do m=-ksp(jst,is),ksp(jst,is)-1 ! generate the core wavefunction in spherical coordinates (pass in m-1/2) call wavefcr(.false.,lradstp,is,ia,jst,m,npcmtmax,wfcr) do ist=1,nst1 ! calculate the complex overlap density in spherical harmonics if (spinpol) then call zrho2(npc,wfcr,wfcr(:,2),wfmt1(:,ias,1,ist), & wfmt1(:,ias,2,ist),zfmt) else call zrho1(npc,wfcr,wfmt1(:,ias,1,ist),zfmt) end if call zfsht(nrc,nrci,zfmt,zrhomt(:,ias)) ! calculate the Coulomb potential call zpotclmt(nrc,nrci,nrcmtmax,rlcmt(:,:,is),wprcmt(:,:,is), & zrhomt(:,ias),zvclmt(:,ias)) z1=zfmtinp(nrc,nrci,wrcmt(:,is),zrhomt(:,ias),zvclmt(:,ias)) ex=ex-occmax*wkpt(ikp)*dble(z1) end do ! end loop over m end do ! end loop over jst end if end do ! end loops over atoms and species end do end do ! add to global exchange energy !$OMP CRITICAL(exxengyk_) engyx=engyx+ex !$OMP END CRITICAL(exxengyk_) deallocate(wfmt1,wfir1,wfcr,zfmt) deallocate(zrhomt,zrhoir,zvclmt,zvclir) return contains pure subroutine zrho1(n,x,y,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x(n),y(n) complex(8), intent(out) :: z(n) z(:)=conjg(x(:))*y(:) end subroutine pure subroutine zrho2(n,x1,x2,y1,y2,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x1(n),x2(n),y1(n),y2(n) complex(8), intent(out) :: z(n) z(:)=conjg(x1(:))*y1(:)+conjg(x2(:))*y2(:) end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/xc_c_tb09.f900000644000000000000000000000013214061636517015016 xustar0030 mtime=1623670095.124102298 30 atime=1623670093.865103467 30 ctime=1623670095.124102298 elk-7.2.42/src/xc_c_tb09.f900000644002504400250440000000334014061636517017053 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine xc_c_tb09 use modmain use libxcifc implicit none ! local variables integer is,ias,i integer nr,nri,ir real(8), parameter :: alpha=-0.012d0, beta=1.023d0 real(8) t1 ! allocatable arrays real(8), allocatable :: grfmt(:,:,:),grfir(:,:) real(8), allocatable :: rfmt(:,:),rfir(:) real(8), allocatable :: rfmt1(:),rfmt2(:,:) ! external functions real(8), external :: rfint ! check that the Tran-Blaha functional is being used (A. Shyichuk) if (xctype(2).ne.XC_MGGA_X_TB09) return ! if Tran-Blaha constant has been read in return if (tc_tb09) return ! compute the gradient of the density allocate(grfmt(npmtmax,natmtot,3),grfir(ngtot,3)) call gradrf(rhomt,rhoir,grfmt,grfir) allocate(rfmt(npmtmax,natmtot),rfmt1(npmtmax),rfmt2(npmtmax,3)) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) ! convert muffin-tin density to spherical coordinates call rbsht(nr,nri,rhomt(:,ias),rfmt1) ! convert muffin-tin gradient to spherical coordinates do i=1,3 call rbsht(nr,nri,grfmt(:,ias,i),rfmt2(:,i)) end do ! integrand in muffin-tin do i=1,npmt(is) t1=sqrt(rfmt2(i,1)**2+rfmt2(i,2)**2+rfmt2(i,3)**2) rfmt1(i)=t1/rfmt1(i) end do ! convert to spherical harmonics call rfsht(nr,nri,rfmt1,rfmt(:,ias)) end do deallocate(grfmt,rfmt1,rfmt2) ! integrand in interstitial allocate(rfir(ngtot)) do ir=1,ngtot t1=sqrt(grfir(ir,1)**2+grfir(ir,2)**2+grfir(ir,3)**2) rfir(ir)=t1/rhoir(ir) end do ! integrate over the unit cell t1=rfint(rfmt,rfir) ! set the constant c_tb09=alpha+beta*sqrt(abs(t1)/omega) deallocate(grfir,rfmt,rfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/moke.f900000644000000000000000000000013214061636517014177 xustar0030 mtime=1623670095.125102297 30 atime=1623670093.867103465 30 ctime=1623670095.125102297 elk-7.2.42/src/moke.f900000644002504400250440000000412214061636517016233 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 S. Sharma, J. K. Dewhurst and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine moke use modmain implicit none ! local variables integer iw,ios complex(8) z1,z2,z3 ! allocatable arrays real(8), allocatable :: w(:),sig1(:,:),sig2(:,:) complex(8), allocatable :: kerr(:) ! calculate dielectric function for the 11 and 12 components noptcomp=2 optcomp(1,1)=1 optcomp(2,1)=1 optcomp(1,2)=1 optcomp(2,2)=2 call dielectric ! allocate local arrays allocate(w(nwplot)) allocate(sig1(nwplot,2),sig2(nwplot,2)) allocate(kerr(nwplot)) ! read diagonal contribution to optical conductivity open(50,file='SIGMA_11.OUT',status='OLD',form='FORMATTED',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(moke): error opening SIGMA_11.OUT")') write(*,*) stop end if do iw=1,nwplot read(50,'(2G18.10)') w(iw),sig1(iw,1) end do read(50,*) do iw=1,nwplot read(50,'(2G18.10)') w(iw),sig2(iw,1) end do close(50) ! read off-diagonal contribution to optical conductivity open(50,file='SIGMA_12.OUT',status='OLD',form='FORMATTED',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(moke): error opening SIGMA_12.OUT")') write(*,*) stop end if do iw=1,nwplot read(50,'(2G18.10)') w(iw),sig1(iw,2) end do read(50,*) do iw=1,nwplot read(50,'(2G18.10)') w(iw),sig2(iw,2) end do close(50) ! calculate the complex Kerr angle do iw=1,nwplot if (w(iw).gt.0.d0) then z1=cmplx(sig1(iw,1),sig2(iw,1),8) z2=cmplx(sig1(iw,2),sig2(iw,2),8) z3=z1*sqrt(1.d0+fourpi*zi*z1/w(iw)) if (abs(z3).gt.1.d-8) then kerr(iw)=-z2/z3 else kerr(iw)=0.d0 end if else kerr(iw)=0.d0 end if end do open(50,file='KERR.OUT',form='FORMATTED') do iw=1,nwplot write(50,'(2G18.10)') w(iw),dble(kerr(iw))*180.d0/pi end do write(50,'(" ")') do iw=1,nwplot write(50,'(2G18.10)') w(iw),aimag(kerr(iw))*180.d0/pi end do close(50) write(*,*) write(*,'("Info(moke):")') write(*,'(" complex Kerr angle in degrees written to KERR.OUT")') deallocate(w,sig1,sig2,kerr) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlrad.f900000644000000000000000000000013214061636517014513 xustar0030 mtime=1623670095.127102295 30 atime=1623670093.868103464 30 ctime=1623670095.127102295 elk-7.2.42/src/hmlrad.f900000644002504400250440000001360514061636517016555 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2016 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: hmlrad ! !INTERFACE: subroutine hmlrad ! !USES: use modmain use modomp ! !DESCRIPTION: ! Calculates the radial Hamiltonian integrals of the APW and local-orbital ! basis functions. In other words, for atom $\alpha$, it computes integrals of ! the form ! $$ h^{\alpha}_{qq';ll'l''m''}=\begin{cases} ! \int_0^{R_i}u^{\alpha}_{q;l}(r)H u^{\alpha}_{q';l'}(r)r^2dr & l''=0 \\ ! \int_0^{R_i}u^{\alpha}_{q;l}(r)V^{\alpha}_{l''m''}(r) ! u^{\alpha}_{q';l'}(r)r^2dr & l''>0 \end{cases}, $$ ! where $u^{\alpha}_{q;l}$ is the $q$th APW radial function for angular ! momentum $l$; $H$ is the Hamiltonian of the radial Schr\"{o}dinger equation; ! and $V^{\alpha}_{l''m''}$ is the muffin-tin Kohn-Sham potential. Similar ! integrals are calculated for APW-local-orbital and ! local-orbital-local-orbital contributions. ! ! !REVISION HISTORY: ! Created December 2003 (JKD) ! Updated for compressed muffin-tin functions, March 2016 (JKD) !EOP !BOC implicit none ! local variables integer is,ias,nthd integer nr,nri,iro integer ir,npi,i integer l1,l2,l3,m2,lm2 integer io,jo,ilo,jlo real(8) sm,t1 ! begin loops over atoms and species call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is,nr,nri,iro,npi) & !$OMP PRIVATE(l1,l2,l3,io,jo,sm) & !$OMP PRIVATE(lm2,m2,i,ir,t1,ilo,jlo) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) iro=nri+1 npi=npmti(is) !---------------------------! ! APW-APW integrals ! !---------------------------! do l1=0,lmaxapw do io=1,apword(l1,is) do l3=0,lmaxapw do jo=1,apword(l3,is) if (l1.eq.l3) then sm=sum(apwfr(1:nr,1,io,l1,ias)*apwfr(1:nr,2,jo,l3,ias) & *wrmt(1:nr,is)) haa(1,jo,l3,io,l1,ias)=sm/y00 else haa(1,jo,l3,io,l1,ias)=0.d0 end if if (l1.ge.l3) then lm2=1 do l2=1,lmaxi do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=lm2 do ir=1,nri t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxi end do do ir=iro,nr t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do haa(lm2,jo,l3,io,l1,ias)=sm haa(lm2,io,l1,jo,l3,ias)=sm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=npi+lm2 do ir=iro,nr t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do haa(lm2,jo,l3,io,l1,ias)=sm haa(lm2,io,l1,jo,l3,ias)=sm end do end do end if end do end do end do end do !-------------------------------------! ! local-orbital-APW integrals ! !-------------------------------------! do ilo=1,nlorb(is) l1=lorbl(ilo,is) do l3=0,lmaxapw do io=1,apword(l3,is) if (l1.eq.l3) then sm=sum(lofr(1:nr,1,ilo,ias)*apwfr(1:nr,2,io,l3,ias)*wrmt(1:nr,is)) hloa(1,io,l3,ilo,ias)=sm/y00 else hloa(1,io,l3,ilo,ias)=0.d0 end if lm2=1 do l2=1,lmaxi do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=lm2 do ir=1,nri t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxi end do do ir=nri+1,nr t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do hloa(lm2,io,l3,ilo,ias)=sm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=npi+lm2 do ir=iro,nr t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do hloa(lm2,io,l3,ilo,ias)=sm end do end do end do end do end do !-----------------------------------------------! ! local-orbital-local-orbital integrals ! !-----------------------------------------------! do ilo=1,nlorb(is) l1=lorbl(ilo,is) do jlo=1,nlorb(is) l3=lorbl(jlo,is) if (l1.eq.l3) then sm=sum(lofr(1:nr,1,ilo,ias)*lofr(1:nr,2,jlo,ias)*wrmt(1:nr,is)) hlolo(1,jlo,ilo,ias)=sm/y00 else hlolo(1,jlo,ilo,ias)=0.d0 end if lm2=1 do l2=1,lmaxi do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=lm2 do ir=1,nri t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxi end do do ir=iro,nr t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do hlolo(lm2,jlo,ilo,ias)=sm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 sm=0.d0 i=npi+lm2 do ir=iro,nr t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) sm=sm+t1*vsmt(i,ias) i=i+lmmaxo end do hlolo(lm2,jlo,ilo,ias)=sm end do end do end do end do ! end loops over atoms and species end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/dos.f900000644000000000000000000000013214061636517014031 xustar0030 mtime=1623670095.128102294 30 atime=1623670093.870103462 30 ctime=1623670095.128102294 elk-7.2.42/src/dos.f900000644002504400250440000002554714061636517016103 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: dos ! !INTERFACE: subroutine dos(fext,tocc,occsvp) ! !USES: use modmain use modomp use modtest ! !INPUT/OUTPUT PARAMETERS: ! fext : filename extension (in,character(*)) ! tocc : .true. if just the occupied orbitals should contribute to the DOS ! (in,logical) ! occsvp : occupation numbers of second-variational orbitals ! (in,real(nstsv,nkpt)) ! !DESCRIPTION: ! Produces a total and partial density of states (DOS) for plotting. The total ! DOS is written to the file {\tt TDOS.OUT} while the partial DOS is written ! to the file {\tt PDOS\_Sss\_Aaaaa.OUT} for atom {\tt aaaa} of species ! {\tt ss}. In the case of the partial DOS, each symmetrised ! $(l,m)$-projection is written consecutively and separated by blank lines. ! If the global variable {\tt lmirep} is {\tt .true.}, then the density matrix ! from which the $(l,m)$-projections are obtained is first rotated into a ! irreducible representation basis, i.e. one that block diagonalises all the ! site symmetry matrices in the $Y_{lm}$ basis. Eigenvalues of a quasi-random ! matrix in the $Y_{lm}$ basis which has been symmetrised with the site ! symmetries are written to {\tt ELMIREP.OUT}. This allows for identification ! of the irreducible representations of the site symmetries, for example $e_g$ ! or $t_{2g}$, by the degeneracies of the eigenvalues. In the plot, spin-up is ! made positive and spin-down negative. See the routines {\tt gendmatk} and ! {\tt brzint}. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) ! Parallelised and included sum over m, November 2009 (F. Cricchio) !EOP !BOC implicit none ! arguments character(*), intent(in) :: fext logical, intent(in) :: tocc real(8), intent(in) :: occsvp(nstsv,nkpt) ! local variables logical tsqaz integer nsk(3),ik,jk,ist,iw,ld integer nsd,ispn,jspn,is,ia,ias integer lmmax,l0,l1,l,m,lm,nthd real(8) dw,th,sps(2),vl(3),vc(3) real(8) v1(3),v2(3),v3(3),t1 complex(8) su2(2,2),b(2,2),c(2,2) character(256) fname ! low precision for band/spin character array saves memory real(4), allocatable :: bc(:,:,:,:,:),sc(:,:,:) real(8), allocatable :: w(:),e(:,:,:),f(:,:),g(:) real(8), allocatable :: dt(:,:),dp(:,:,:),elm(:,:) complex(8), allocatable :: ulm(:,:,:),a(:,:) complex(8), allocatable :: dmat(:,:,:,:,:),sdmat(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) lmmax=(lmaxdos+1)**2 ld=lmmax*nspinor if (dosssum) then nsd=1 else nsd=nspinor end if if (dosmsum) then l0=0; l1=lmaxdos else l0=1; l1=lmmax end if allocate(bc(lmmax,nspinor,natmtot,nstsv,nkptnr)) allocate(sc(nspinor,nstsv,nkptnr)) ! generate unitary matrices which convert the (l,m) basis into the irreducible ! representation basis of the symmetry group at each atomic site if (lmirep) then allocate(elm(lmmax,natmtot)) allocate(ulm(lmmax,lmmax,natmtot)) call genlmirep(lmaxdos,lmmax,elm,ulm) end if ! compute the SU(2) operator used for rotating the density matrix to the ! desired spin-quantisation axis v1(:)=sqados(:) t1=sqrt(v1(1)**2+v1(2)**2+v1(3)**2) if (t1.le.epslat) then write(*,*) write(*,'("Error(dos): spin-quantisation axis (sqados) has zero length")') write(*,*) stop end if v1(:)=v1(:)/t1 if (v1(3).ge.1.d0-epslat) then tsqaz=.true. else tsqaz=.false. v2(1:2)=0.d0 v2(3)=1.d0 call r3cross(v1,v2,v3) ! note that the spin-quantisation axis is rotated, so the density matrix should ! be rotated in the opposite direction th=-acos(v1(3)) call axangsu2(v3,th,su2) end if ! begin parallel loop over k-points call holdthd(nkptnr,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(apwalm,evecfv,evecsv,dmat,sdmat,a) & !$OMP PRIVATE(jk,ispn,jspn,vl,vc) & !$OMP PRIVATE(is,ia,ias,ist,lm,b,c,t1) & !$OMP NUM_THREADS(nthd) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) allocate(dmat(lmmax,nspinor,lmmax,nspinor,nstsv)) allocate(sdmat(nspinor,nspinor,nstsv),a(lmmax,lmmax)) !$OMP DO do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! loop over first-variational spins do ispn=1,nspnfv vl(:)=vkl(:,ik) vc(:)=vkc(:,ik) ! spin-spiral case if (spinsprl) then if (ispn.eq.1) then vl(:)=vl(:)+0.5d0*vqlss(:) vc(:)=vc(:)+0.5d0*vqcss(:) else vl(:)=vl(:)-0.5d0*vqlss(:) vc(:)=vc(:)-0.5d0*vqcss(:) end if end if ! find the matching coefficients call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! get the eigenvectors from file for non-reduced k-point call getevecfv('.OUT',0,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv('.OUT',0,vkl(:,ik),evecsv) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! generate the density matrix call gendmatk(.false.,.false.,0,lmaxdos,ias,ngk(:,ik),apwalm,evecfv, & evecsv,lmmax,dmat) ! convert (l,m) part to an irreducible representation if required if (lmirep) then do ist=1,nstsv do ispn=1,nspinor do jspn=1,nspinor call zgemm('N','N',lmmax,lmmax,lmmax,zone,ulm(:,:,ias),lmmax, & dmat(:,ispn,1,jspn,ist),ld,zzero,a,lmmax) call zgemm('N','C',lmmax,lmmax,lmmax,zone,a,lmmax,ulm(:,:,ias), & lmmax,zzero,dmat(:,ispn,1,jspn,ist),ld) end do end do end do end if ! spin rotate the density matrices to desired spin-quantisation axis if (spinpol.and.(.not.tsqaz)) then do ist=1,nstsv do lm=1,lmmax b(:,:)=dmat(lm,:,lm,:,ist) call z2mm(su2,b,c) call z2mmct(c,su2,b) dmat(lm,:,lm,:,ist)=b(:,:) end do end do end if ! determine the band characters from the density matrix do ist=1,nstsv do ispn=1,nspinor do lm=1,lmmax t1=dble(dmat(lm,ispn,lm,ispn,ist)) bc(lm,ispn,ias,ist,ik)=real(t1) end do end do end do end do end do ! compute the spin density matrices of the second-variational states call gensdmat(evecsv,sdmat) ! spin rotate the density matrices to desired spin-quantisation axis if (spinpol.and.(.not.tsqaz)) then do ist=1,nstsv call z2mm(su2,sdmat(:,:,ist),b) call z2mmct(b,su2,sdmat(:,:,ist)) end do end if do ist=1,nstsv do ispn=1,nspinor t1=dble(sdmat(ispn,ispn,ist)) sc(ispn,ist,ik)=real(t1) end do end do end do !$OMP END DO deallocate(apwalm,evecfv,evecsv,dmat,sdmat,a) !$OMP END PARALLEL call freethd(nthd) allocate(w(nwplot),e(nstsv,nkptnr,nspinor)) allocate(dt(nwplot,nsd),dp(nwplot,l0:l1,nsd)) ! generate frequency grid dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot w(iw)=dw*dble(iw-1)+wplot(1) end do ! number of subdivisions used for interpolation in the Brillouin zone nsk(:)=max(ngrkf/ngridk(:),1) ! sign for spin in DOS sps(1)=1.d0 sps(2)=-1.d0 !-------------------! ! total DOS ! !-------------------! allocate(f(nstsv,nkptnr),g(nwplot)) dt(:,:)=0.d0 do ispn=1,nspinor do ik=1,nkptnr jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) do ist=1,nstsv ! subtract the Fermi energy e(ist,ik,ispn)=evalsv(ist,jk)-efermi ! use diagonal of spin density matrix for weight f(ist,ik)=sc(ispn,ist,ik) if (tocc) then f(ist,ik)=f(ist,ik)*occsvp(ist,jk) else f(ist,ik)=f(ist,ik)*occmax end if end do end do ! integrate over the Brillouin zone call brzint(nswplot,ngridk,nsk,ivkiknr,nwplot,wplot,nstsv,nstsv,e(:,:,ispn), & f,g) if (dosssum) then dt(:,1)=dt(:,1)+g(:) else dt(:,ispn)=g(:) end if end do deallocate(f,g) ! output to file open(50,file='TDOS'//trim(fext),form='FORMATTED',action='WRITE') do ispn=1,nsd do iw=1,nwplot write(50,'(2G18.10)') w(iw),dt(iw,ispn)*sps(ispn) end do write(50,*) end do close(50) !---------------------! ! partial DOS ! !---------------------! do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) dp(:,:,:)=0.d0 do ispn=1,nspinor call holdthd(lmaxdos+1,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(f,g,lm,ik,jk,ist) & !$OMP NUM_THREADS(nthd) allocate(f(nstsv,nkptnr),g(nwplot)) !$OMP DO do l=0,lmaxdos do lm=l**2+1,(l+1)**2 do ik=1,nkptnr jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) do ist=1,nstsv f(ist,ik)=bc(lm,ispn,ias,ist,ik) if (tocc) then f(ist,ik)=f(ist,ik)*occsvp(ist,jk) else f(ist,ik)=f(ist,ik)*occmax end if end do end do call brzint(nswplot,ngridk,nsk,ivkiknr,nwplot,wplot,nstsv,nstsv, & e(:,:,ispn),f,g) if (dosmsum) then if (dosssum) then dp(:,l,1)=dp(:,l,1)+g(:) else dp(:,l,ispn)=dp(:,l,ispn)+g(:) end if else if (dosssum) then dp(:,lm,1)=dp(:,lm,1)+g(:) else dp(:,lm,ispn)=g(:) end if end if ! subtract from interstitial DOS !$OMP CRITICAL(dos_) if (dosssum) then dt(:,1)=dt(:,1)-g(:) else dt(:,ispn)=dt(:,ispn)-g(:) end if !$OMP END CRITICAL(dos_) end do end do !$OMP END DO deallocate(f,g) !$OMP END PARALLEL call freethd(nthd) end do ! output to file write(fname,'("PDOS_S",I2.2,"_A",I4.4)') is,ia open(50,file=trim(fname)//trim(fext),form='FORMATTED',action='WRITE') do ispn=1,nsd do l=l0,l1 do iw=1,nwplot write(50,'(2G18.10)') w(iw),dp(iw,l,ispn)*sps(ispn) end do write(50,*) end do end do close(50) end do end do !------------------------------------------! ! irreducible representations file ! !------------------------------------------! if (lmirep) then open(50,file='ELMIREP'//trim(fext),form='FORMATTED',action='WRITE') do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is, & trim(spsymb(is)),ia do l=0,lmaxdos do m=-l,l lm=l*(l+1)+m+1 write(50,'(" l = ",I2,", m = ",I2,", lm= ",I3," : ",G18.10)') l,m, & lm,elm(lm,ias) end do end do end do end do close(50) end if !--------------------------! ! interstitial DOS ! !--------------------------! open(50,file='IDOS'//trim(fext),form='FORMATTED',action='WRITE') do ispn=1,nsd do iw=1,nwplot write(50,'(2G18.10)') w(iw),dt(iw,ispn)*sps(ispn) end do write(50,*) end do close(50) ! write the total DOS to test file call writetest(10,'total DOS',nv=nwplot*nsd,tol=2.d-2,rva=dt) deallocate(bc,sc,w,e,dt,dp) if (lmirep) deallocate(elm,ulm) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/findprimcell.f900000644000000000000000000000013114061636517015713 xustar0030 mtime=1623670095.130102292 29 atime=1623670093.87210346 30 ctime=1623670095.130102292 elk-7.2.42/src/findprimcell.f900000644002504400250440000000750014061636517017753 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: findprimcell ! !INTERFACE: subroutine findprimcell ! !USES: use modmain ! !DESCRIPTION: ! This routine finds the smallest primitive cell which produces the same ! crystal structure as the conventional cell. This is done by searching ! through all the vectors which connect atomic positions and finding those ! which leave the crystal structure invariant. Of these, the three shortest ! which produce a non-zero unit cell volume are chosen. ! ! !REVISION HISTORY: ! Created April 2007 (JKD) !EOP !BOC implicit none ! local variables integer is,js,ia,ja,ka,na integer i1,i2,i3,i,j,n real(8) v1(3),v2(3),v3(3) real(8) t1,t2 ! allocatable arrays real(8), allocatable :: dp(:),vp(:,:) do is=1,nspecies do ia=1,natoms(is) ! make sure all atomic coordinates are in [0,1) call r3frac(epslat,atposl(:,ia,is)) ! determine atomic Cartesian coordinates call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do ! find the smallest set of atoms is=1 do js=1,nspecies ! if a species has only one atom the cell must be primitive if (natoms(js).eq.1) return if (natoms(js).lt.natoms(is)) is=js end do n=27*natoms(is) allocate(dp(n),vp(3,n)) ! generate set of possible lattice vectors n=0 do ia=1,natoms(is) v1(:)=atposl(:,ia,is)-atposl(:,1,is) do i1=-1,1 v2(1)=v1(1)+dble(i1) do i2=-1,1 v2(2)=v1(2)+dble(i2) do i3=-1,1 v2(3)=v1(3)+dble(i3) t1=abs(v2(1))+abs(v2(2))+abs(v2(3)) if (t1.lt.epslat) goto 20 ! check if vector v2 leaves conventional cell invariant do js=1,nspecies do ja=1,natoms(js) v3(:)=atposl(:,ja,js)+v2(:) call r3frac(epslat,v3) do ka=1,natoms(js) ! check both positions and magnetic fields are the same t1=sum(abs(atposl(:,ka,js)-v3(:))) t2=sum(abs(bfcmt0(:,ja,js)-bfcmt0(:,ka,js))) if ((t1.lt.epslat).and.(t2.lt.epslat)) goto 10 end do ! atom ja has no equivalent under translation by v2 goto 20 10 continue end do end do ! cell invariant under translation by v2, so add to list n=n+1 call r3mv(avec,v2,vp(:,n)) dp(n)=sqrt(vp(1,n)**2+vp(2,n)**2+vp(3,n)**2) 20 continue end do end do end do end do if (n.eq.0) then write(*,*) write(*,'("Error(findprimcell): cannot find any lattice vectors")') write(*,*) stop end if ! find the shortest lattice vector j=1 t1=1.d8 do i=1,n if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end do avec(:,1)=vp(:,j) ! find the next shortest lattice vector not parallel to the first j=1 t1=1.d8 do i=1,n call r3cross(avec(:,1),vp(:,i),v1) t2=sqrt(v1(1)**2+v1(2)**2+v1(3)**2) if (t2.gt.epslat) then if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end if end do avec(:,2)=vp(:,j) ! find the next shortest lattice vector which gives non-zero unit cell volume call r3cross(avec(:,1),avec(:,2),v1) j=1 t1=1.d8 do i=1,n t2=dot_product(vp(:,i),v1(:)) if (abs(t2).gt.epslat) then if (dp(i).lt.t1+epslat) then j=i t1=dp(i) end if end if end do avec(:,3)=vp(:,j) call r3minv(avec,ainv) ! remove redundant atoms do is=1,nspecies na=0 do ia=1,natoms(is) call r3mv(ainv,atposc(:,ia,is),v1) call r3frac(epslat,v1) do ja=1,na t1=sum(abs(atposl(:,ja,is)-v1(:))) if (t1.lt.epslat) goto 30 end do na=na+1 atposl(:,na,is)=v1(:) call r3mv(avec,atposl(:,na,is),atposc(:,na,is)) ! re-index external magnetic fields bfcmt0(:,na,is)=bfcmt0(:,ia,is) ! re-index fixed spin moment vectors mommtfix(:,na,is)=mommtfix(:,ia,is) 30 continue end do natoms(is)=na end do deallocate(dp,vp) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/plotpt2d.f900000644000000000000000000000013214061636517015014 xustar0030 mtime=1623670095.131102291 30 atime=1623670093.874103458 30 ctime=1623670095.131102291 elk-7.2.42/src/plotpt2d.f900000644002504400250440000000277614061636517017065 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine plotpt2d(cvec,cinv,vpnl,vpl,vppc) use modmain implicit none ! arguments real(8), intent(in) :: cvec(3,3),cinv(3,3) real(8), intent(out) :: vpnl(3) real(8), intent(out) :: vpl(3,np2d(1)*np2d(2)) real(8), intent(out) :: vppc(2,np2d(1)*np2d(2)) ! local variables integer ip,i1,i2 real(8) vl1(3),vl2(3) real(8) vc1(3),vc2(3),vc3(3) real(8) d1,d2,d12,t1,t2 vl1(:)=vclp2d(:,1)-vclp2d(:,0) vl2(:)=vclp2d(:,2)-vclp2d(:,0) call r3mv(cvec,vl1,vc1) call r3mv(cvec,vl2,vc2) d1=sqrt(vc1(1)**2+vc1(2)**2+vc1(3)**2) d2=sqrt(vc2(1)**2+vc2(2)**2+vc2(3)**2) if ((d1.lt.epslat).or.(d2.lt.epslat)) then write(*,*) write(*,'("Error(plotpt2d): zero length plotting vectors")') write(*,*) stop end if d12=(vc1(1)*vc2(1)+vc1(2)*vc2(2)+vc1(3)*vc2(3))/(d1*d2) ! vector normal to plane call r3cross(vc1,vc2,vc3) t1=sqrt(vc3(1)**2+vc3(2)**2+vc3(3)**2) if (t1.lt.epslat) then write(*,*) write(*,'("Error(plotpt2d): 2D plotting plane vectors are collinear")') write(*,*) stop end if vc3(:)=vc3(:)/t1 call r3mv(cinv,vc3,vpnl) ip=0 do i2=0,np2d(2)-1 do i1=0,np2d(1)-1 ip=ip+1 t1=dble(i1)/dble(np2d(1)) t2=dble(i2)/dble(np2d(2)) ! plot points in 3D space vpl(:,ip)=t1*vl1(:)+t2*vl2(:)+vclp2d(:,0) ! plot points on the plane vppc(1,ip)=t1*d1+t2*d2*d12 vppc(2,ip)=t2*d2*sqrt(abs(1.d0-d12**2)) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/sfacrho.f900000644000000000000000000000013014061636517014667 xustar0029 mtime=1623670095.13310229 30 atime=1623670093.875103457 29 ctime=1623670095.13310229 elk-7.2.42/src/sfacrho.f900000644002504400250440000000510314061636517016725 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 A. I. Baranov and F. Wagner. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: sfacrho ! !INTERFACE: subroutine sfacrho ! !USES: use modmain use modpw use modtest ! !DESCRIPTION: ! Outputs X-ray structure factors, i.e. the Fourier transform coefficients of ! the total electron density ! $$ F({\bf H})=\int_{\Omega}d^3r\,\rho({\bf r})e^{i{\bf H}\cdot{\bf r}}, $$ ! to the file {\tt SFACRHO.OUT}. The lattice coordinates $(h,k,l)$ of the ! $\bf H$-vectors in this file are transformed by the matrix {\tt vhmat}. If ! and energy window is set using the variable {\tt wsfac}, then only those ! states within the window are used to compute the density. See also routines ! {\tt zftrf} and {\tt genhvec}. ! ! !REVISION HISTORY: ! Created July 2010 (Alexey I. Baranov) ! Added multiplicity of the H-vectors, Oct. 2010 (Alexey I. Baranov) !EOP !BOC implicit none ! local variables integer ih,iv(3) real(8) v(3),a,b,r ! allocatable arrays complex(8), allocatable :: zrhoh(:) ! initialise the structure factor specific variables call sfacinit ! calculate the density structure factors allocate(zrhoh(nhvec)) call zftrf(nhvec,ivh,vhc,rhomt,rhoir,zrhoh) open(50,file='SFACRHO.OUT',form='FORMATTED') write(50,*) write(50,'("h k l indices transformed by vhmat matrix:")') write(50,'(3G18.10)') vhmat(:,1) write(50,'(3G18.10)') vhmat(:,2) write(50,'(3G18.10)') vhmat(:,3) write(50,*) write(50,'(" h k l multipl. |H| Re(F)& & Im(F) |F|")') write(50,*) do ih=1,nhvec ! apply transformation matrix v(:)=vhmat(:,1)*dble(ivh(1,ih)) & +vhmat(:,2)*dble(ivh(2,ih)) & +vhmat(:,3)*dble(ivh(3,ih)) ! in crystallography the forward Fourier transform of real-space density is ! usually done with positive phase and without 1/omega prefactor a=dble(zrhoh(ih))*omega b=-aimag(zrhoh(ih))*omega r=abs(zrhoh(ih))*omega iv(:)=nint(v(:)) if ((abs(v(1)-iv(1)).le.epslat).and. & (abs(v(2)-iv(2)).le.epslat).and. & (abs(v(3)-iv(3)).le.epslat)) then ! integer hkl write(50,'(4I7,4G16.8)') iv(:),mulh(ih),hc(ih),a,b,r else ! non-integer hkl write(50,'(3F7.2,I7,4G16.8)') v(:),mulh(ih),hc(ih),a,b,r end if end do close(50) write(*,*) write(*,'("Info(sfacrho): density structure factors written to SFACRHO.OUT")') write(*,*) write(*,'(" Energy window : ",2G18.10)') wsfac(:) ! write the structure factors to test file call writetest(195,'density structure factors',nv=nhvec,tol=1.d-5,zva=zrhoh(:)) deallocate(zrhoh) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/bdipole.f900000644000000000000000000000013214061636517014662 xustar0030 mtime=1623670095.134102289 30 atime=1623670093.877103455 30 ctime=1623670095.134102289 elk-7.2.42/src/bdipole.f900000644002504400250440000000526414061636517016726 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine bdipole use modmain implicit none ! local variables integer idm,is,ias integer nrc,nrci,npc real(8) cb,t1 ! automatic arrays real(8) rfmt1(npcmtmax),rfmt2(npcmtmax) ! allocatable arrays real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) if (.not.ncmag) then write(*,*) write(*,'("Error(bdipole): non-collinear magnetism required for inclusion of & &the dipole field")') write(*,*) stop end if ! prefactor for the spin dipole magnetic field cb=gfacte/(4.d0*solsc) ! compute the gauge invariant current density if required if (tjr) call genjr ! allocate local arrays allocate(rvfmt(npmtmax,natmtot,3),rvfir(ngtot,3)) allocate(zrhomt(npmtmax,natmtot),zrhoir(ngtot)) allocate(zvclmt(npmtmax,natmtot),zvclir(ngtot)) ! compute the curl of the magnetisation density, i.e. the magnetisation current call curlrvf(magmt,magir,rvfmt,rvfir) ! multiply by prefactor rvfmt(:,:,:)=cb*rvfmt(:,:,:) rvfir(:,:)=cb*rvfir(:,:) ! add the current density if required if (tjr) then t1=1.d0/solsc rvfmt(:,:,:)=rvfmt(:,:,:)+t1*jrmt(:,:,:) rvfir(:,:)=rvfir(:,:)+t1*jrir(:,:) end if do idm=1,3 ! transform to complex spherical harmonics do ias=1,natmtot is=idxis(ias) call rtozfmt(nrmt(is),nrmti(is),rvfmt(:,ias,idm),zrhomt(:,ias)) end do ! solve Poisson's equation in the muffin-tin to find the A-field call genzvclmt(nrmt,nrmti,nrmtmax,rlmt,wprmt,npmtmax,zrhomt,zvclmt) zrhoir(:)=rvfir(:,idm) ! solve in the entire unit cell call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gc,gclg, & ngvec,jlgrmt,ylmg,sfacg,zrhoir,npmtmax,zvclmt,zvclir) ! convert muffin-tin A-field to real spherical harmonics do ias=1,natmtot is=idxis(ias) call ztorfmt(nrmt(is),nrmti(is),zvclmt(:,ias),rvfmt(:,ias,idm)) end do ! store the real part of the interstitial A-field rvfir(:,idm)=dble(zvclir(:)) end do ! compute the curl of A to obtain the dipole B-field call curlrvf(rvfmt,rvfir,bdmt,bdir) ! add to the Kohn-Sham field do idm=1,3 do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! convert to coarse radial mesh call rfmtftoc(nrc,nrci,bdmt(:,ias,idm),rfmt1) ! convert to spherical coordinates call rbsht(nrc,nrci,rfmt1,rfmt2) bsmt(1:npc,ias,idm)=bsmt(1:npc,ias,idm)+cb*rfmt2(1:npc) end do end do do idm=1,3 bsir(:,idm)=bsir(:,idm)+cb*bdir(:,idm)*cfunir(:) end do deallocate(rvfmt,rvfir) deallocate(zrhomt,zrhoir,zvclmt,zvclir) end subroutine elk-7.2.42/src/PaxHeaders.21776/dielectric.f900000644000000000000000000000013214061636517015353 xustar0030 mtime=1623670095.136102287 30 atime=1623670093.879103453 30 ctime=1623670095.136102287 elk-7.2.42/src/dielectric.f900000644002504400250440000001171314061636517017413 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2009 S. Sharma, J. K. Dewhurst and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: dielectric ! !INTERFACE: subroutine dielectric ! !USES: use modmain use modtest use modomp ! !DESCRIPTION: ! Computes the dielectric tensor, optical conductivity and plasma frequency. ! The formulae are taken from {\it Physica Scripta} {\bf T109}, 170 (2004). ! ! !REVISION HISTORY: ! Created November 2005 (SS and JKD) ! Added plasma frequency and intraband contribution (S. Lebegue) ! Complete rewrite, 2008 (JKD) ! Fixed problem with plasma frequency, 2009 (Marty Blaber and JKD) ! Parallelised, 2009 (M. Blaber) !EOP !BOC implicit none ! local variables logical tssr integer ik,jk,ist,jst integer iw,i,j,l,nthd real(8) w1,w2,wplas,x real(8) ei,ej,eji,t1,t2 complex(8) eta,z1 character(256) fname ! allocatable arrays real(8), allocatable :: w(:) complex(8), allocatable :: pmat(:,:,:),sigma(:) ! external functions real(8), external :: sdelta ! initialise universal variables call init0 call init1 ! read Fermi energy from file call readfermi ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! allocate local arrays allocate(w(nwplot),sigma(nwplot)) ! generate energy grid (always non-negative) w1=max(wplot(1),0.d0) w2=max(wplot(2),w1) t1=(w2-w1)/dble(nwplot) do iw=1,nwplot w(iw)=w1+t1*dble(iw-1) end do ! i divided by the complex relaxation time eta=cmplx(0.d0,swidth,8) ! set flag for scissor operator if (abs(scissor).gt.1.d-8) then tssr=.true. else tssr=.false. end if ! loop over dielectric tensor components do l=1,noptcomp i=optcomp(1,l) j=optcomp(2,l) wplas=0.d0 sigma(:)=0.d0 ! parallel loop over non-reduced k-points call holdthd(nkptnr,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(pmat,jk,ist,jst) & !$OMP PRIVATE(ei,ej,eji,z1,t1,x) & !$OMP REDUCTION(+:wplas,sigma) & !$OMP NUM_THREADS(nthd) allocate(pmat(nstsv,nstsv,3)) !$OMP DO do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! read in the momentum matrix elements call getpmat(vkl(:,ik),pmat) ! valance states do ist=1,nstsv ei=evalsv(ist,jk) ! conduction states do jst=1,nstsv ej=evalsv(jst,jk) eji=ej-ei z1=pmat(ist,jst,i)*conjg(pmat(ist,jst,j)) ! scissor correction if (tssr) then if ((ei.le.efermi).and.(ej.gt.efermi)) then t1=(eji+scissor)/eji z1=z1*t1**2 eji=eji+scissor end if end if if (abs(eji).gt.1.d-8) then t1=occsv(ist,jk)*(1.d0-occsv(jst,jk)/occmax)/eji sigma(:)=sigma(:)+t1*(z1/(w(:)-eji+eta)+conjg(z1)/(w(:)+eji+eta)) end if ! add to the plasma frequency if (intraband) then if (i.eq.j) then if (ist.eq.jst) then x=(ei-efermi)/swidth t1=wkptnr*dble(z1)*sdelta(stype,x)/swidth wplas=wplas+t1 end if end if end if end do end do end do !$OMP END DO deallocate(pmat) !$OMP END PARALLEL call freethd(nthd) z1=zi*wkptnr/omega sigma(:)=z1*sigma(:) ! intraband contribution if (intraband) then if (i.eq.j) then wplas=sqrt(occmax*abs(wplas)*fourpi/omega) ! write the plasma frequency to file write(fname,'("PLASMA_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') write(50,'(G18.10," : plasma frequency")') wplas close(50) ! add the intraband contribution to sigma t1=wplas**2/fourpi do iw=1,nwplot sigma(iw)=sigma(iw)+t1/(swidth-zi*w(iw)) end do end if end if ! write the optical conductivity to file write(fname,'("SIGMA_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') do iw=1,nwplot write(50,'(2G18.10)') w(iw),dble(sigma(iw)) end do write(50,*) do iw=1,nwplot write(50,'(2G18.10)') w(iw),aimag(sigma(iw)) end do close(50) ! write the dielectric function to file write(fname,'("EPSILON_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') t1=0.d0 if (i.eq.j) t1=1.d0 do iw=1,nwplot t2=t1-fourpi*aimag(sigma(iw)/(w(iw)+eta)) write(50,'(2G18.10)') w(iw),t2 end do write(50,*) do iw=1,nwplot t2=fourpi*dble(sigma(iw)/(w(iw)+eta)) write(50,'(2G18.10)') w(iw),t2 end do close(50) ! end loop over tensor components end do write(*,*) write(*,'("Info(dielectric):")') write(*,'(" dielectric tensor written to EPSILON_ij.OUT")') write(*,'(" optical conductivity written to SIGMA_ij.OUT")') if (intraband) then write(*,'(" plasma frequency written to PLASMA_ij.OUT")') end if write(*,'(" for components")') do l=1,noptcomp write(*,'(" i = ",I1,", j = ",I1)') optcomp(1:2,l) end do ! write sigma to test file if required call writetest(121,'optical conductivity',nv=nwplot,tol=1.d-2,zva=sigma) deallocate(w,sigma) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/elfplot.f900000644000000000000000000000013214061636517014711 xustar0030 mtime=1623670095.137102286 30 atime=1623670093.880103453 30 ctime=1623670095.137102286 elk-7.2.42/src/elfplot.f900000644002504400250440000001266114061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: elfplot ! !INTERFACE: subroutine elfplot ! !USES: use modmain ! !DESCRIPTION: ! Outputs the electron localisation function (ELF) for 1D, 2D or 3D plotting. ! The spin-averaged ELF is given by ! $$ f_{\rm ELF}({\bf r})=\frac{1}{1+[D({\bf r})/D^0({\bf r})]^2}, $$ ! where ! $$ D({\bf r})=\frac{1}{2}\left(\tau({\bf r})-\frac{1}{4} ! \frac{[\nabla n({\bf r})]^2}{n({\bf r})}\right) $$ ! and ! $$ \tau({\bf r})=\sum_{i=1}^N \left|\nabla\Psi_i({\bf r}) ! \right|^2 $$ ! is the spin-averaged kinetic energy density from the spinor wavefunctions. ! The function $D^0$ is the kinetic energy density for the homogeneous ! electron gas evaluated for $n({\bf r})$: ! $$ D^0({\bf r})=\frac{3}{5}(6\pi^2)^{2/3}\left(\frac{n({\bf r})}{2} ! \right)^{5/3}. $$ ! The ELF is useful for the topological classification of bonding. See for ! example T. Burnus, M. A. L. Marques and E. K. U. Gross [Phys. Rev. A 71, ! 10501 (2005)]. ! ! !REVISION HISTORY: ! Created September 2003 (JKD) ! Fixed bug found by F. Wagner (JKD) !EOP !BOC implicit none ! local variables integer ik,is,ias integer nr,nri,ir integer ig,ifg,i real(8) r,t1,t2 complex(8) z1 ! allocatable arrays real(8), allocatable :: gwf2mt(:,:),gwf2ir(:) real(8), allocatable :: rfmt1(:),rfmt2(:),grfir(:) real(8), allocatable :: grfmt1(:,:),grfmt2(:,:) real(8), allocatable :: elfmt(:,:),elfir(:) complex(8), allocatable :: evecfv(:,:),evecsv(:,:) complex(8), allocatable :: zfft1(:),zfft2(:) ! initialise universal variables call init0 call init1 ! allocate local arrays allocate(gwf2mt(npmtmax,natmtot),gwf2ir(ngtot)) allocate(rfmt1(npmtmax),rfmt2(npmtmax),grfir(ngtot)) allocate(grfmt1(npmtmax,3),grfmt2(npmtmax,3)) allocate(elfmt(npmtmax,natmtot),elfir(ngtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(zfft1(ngtot),zfft2(ngtot)) ! read density and potentials from file call readstate ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! set the gradient squared to zero gwf2mt(:,:)=0.d0 gwf2ir(:)=0.d0 do ik=1,nkpt ! get the eigenvectors and occupancies from file call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! add the valence wavefunction gradient squared call gradwf2(ik,evecfv,evecsv,gwf2mt,gwf2ir) end do ! add core wavefunction gradient squared call gradwfcr2(gwf2mt) !------------------------! ! muffin-tin ELF ! !------------------------! do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) ! convert rho from spherical harmonics to spherical coordinates call rbsht(nr,nri,rhomt(:,ias),rfmt1) ! compute the gradient of the density call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rhomt(:,ias),npmtmax,grfmt1) ! convert gradient to spherical coordinates do i=1,3 call rbsht(nr,nri,grfmt1(:,i),grfmt2(:,i)) end do do i=1,npmt(is) r=abs(rfmt1(i)) ! square of gradient of rho t1=grfmt2(i,1)**2+grfmt2(i,2)**2+grfmt2(i,3)**2 ! D for inhomogeneous density t1=(1.d0/2.d0)*(gwf2mt(i,ias)-(1.d0/4.d0)*t1/r) ! D0 for uniform electron gas t2=(3.d0/5.d0)*((6.d0*pi**2)**(2.d0/3.d0))*(r/2.d0)**(5.d0/3.d0) ! ELF function rfmt2(i)=1.d0/(1.d0+(t1/t2)**2) end do ! convert ELF from spherical coordinates to spherical harmonics call rfsht(nr,nri,rfmt2,elfmt(:,ias)) end do !--------------------------! ! interstitial ELF ! !--------------------------! ! Fourier transform density to G-space zfft1(:)=rhoir(:) call zfftifc(3,ngridg,-1,zfft1) ! calculate the square of gradient of rho grfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) ! take the gradient z1=zfft1(ifg) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(z1),dble(z1),8) end do ! Fourier transform gradient to real-space call zfftifc(3,ngridg,1,zfft2) do ir=1,ngtot grfir(ir)=grfir(ir)+dble(zfft2(ir))**2 end do end do do ir=1,ngtot r=abs(rhoir(ir)) ! D for inhomogeneous density t1=(1.d0/2.d0)*(gwf2ir(ir)-(1.d0/4.d0)*grfir(ir)/r) ! D0 for homogeneous electron gas t2=(3.d0/5.d0)*((6.d0*pi**2)**(2.d0/3.d0))*(r/2.d0)**(5.d0/3.d0) ! ELF function elfir(ir)=1.d0/(1.d0+(t1/t2)**2) end do ! symmetrise the ELF call symrf(nrmt,nrmti,npmt,ngridg,ngtot,ngvec,igfft,npmtmax,elfmt,elfir) ! plot the ELF to file select case(task) case(51) open(50,file='ELF1D.OUT',form='FORMATTED') open(51,file='ELFLINES.OUT',form='FORMATTED') call plot1d(50,51,1,elfmt,elfir) close(50) close(51) write(*,*) write(*,'("Info(elfplot):")') write(*,'(" 1D ELF plot written to ELF1D.OUT")') write(*,'(" vertex location lines written to ELFLINES.OUT")') case(52) open(50,file='ELF2D.OUT',form='FORMATTED') call plot2d(.false.,50,1,elfmt,elfir) close(50) write(*,*) write(*,'("Info(elfplot): 2D ELF plot written to ELF2D.OUT")') case(53) open(50,file='ELF3D.OUT',form='FORMATTED') call plot3d(50,1,elfmt,elfir) close(50) write(*,*) write(*,'("Info(elfplot): 3D ELF plot written to ELF3D.OUT")') end select deallocate(gwf2mt,gwf2ir,rfmt1,rfmt2,grfir) deallocate(grfmt1,grfmt2,elfmt,elfir) deallocate(evecfv,evecsv,zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/vclcore.f900000644000000000000000000000013214061636517014701 xustar0030 mtime=1623670095.139102284 30 atime=1623670093.882103451 30 ctime=1623670095.139102284 elk-7.2.42/src/vclcore.f900000644002504400250440000000551714061636517016746 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine vclcore(wfmt,vmat) use modmain use modomp implicit none ! arguments complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(inout) :: vmat(nstsv,nstsv) ! local variables integer ist1,ist2,ist3 integer is,ia,ias,m,nthd integer nrc,nrci,npc ! automatic arrays complex(8) wfcr(npcmtmax,2),zfmt(npcmtmax),v(nstsv,nstsv) ! allocatable arrays complex(8), allocatable :: zrhomt(:,:) ! external functions complex(8), external :: zdotc allocate(zrhomt(npcmtmax,nstsv)) v(:,:)=0.d0 do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do ist3=1,nstsp(is) if (spcore(ist3,is)) then do m=-ksp(ist3,is),ksp(ist3,is)-1 ! generate the core wavefunction in spherical coordinates (pass in m-1/2) call wavefcr(.false.,lradstp,is,ia,ist3,m,npcmtmax,wfcr) call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt) & !$OMP NUM_THREADS(nthd) do ist1=1,nstsv ! calculate the complex overlap density in spherical harmonics if (spinpol) then call zrho2(npc,wfcr,wfcr(:,2),wfmt(:,ias,1,ist1), & wfmt(:,ias,2,ist1),zfmt) else call zrho1(npc,wfcr,wfmt(:,ias,1,ist1),zfmt) end if call zfsht(nrc,nrci,zfmt,zrhomt(:,ist1)) end do !$OMP END PARALLEL DO call freethd(nthd) call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,ist1) & !$OMP NUM_THREADS(nthd) do ist2=1,nstsv call zpotclmt(nrc,nrci,nrcmtmax,rlcmt(:,:,is),wprcmt(:,:,is), & zrhomt(:,ist2),zfmt) call zfmtwr(nrc,nrci,wrcmt(:,is),zfmt) do ist1=1,ist2 v(ist1,ist2)=v(ist1,ist2)-zdotc(npc,zrhomt(:,ist1),1,zfmt,1) end do end do !$OMP END PARALLEL DO call freethd(nthd) end do end if end do end do end do ! set the lower triangular part of the matrix do ist1=1,nstsv do ist2=1,ist1-1 v(ist1,ist2)=conjg(v(ist2,ist1)) end do end do ! scale the Coulomb matrix elements in the case of a hybrid functional if (hybrid) v(:,:)=hybridc*v(:,:) ! add to input matrix vmat(:,:)=vmat(:,:)+v(:,:) deallocate(zrhomt) return contains pure subroutine zrho1(n,x,y,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x(n),y(n) complex(8), intent(out) :: z(n) z(:)=conjg(x(:))*y(:) end subroutine pure subroutine zrho2(n,x1,x2,y1,y2,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x1(n),x2(n),y1(n),y2(n) complex(8), intent(out) :: z(n) z(:)=conjg(x1(:))*y1(:)+conjg(x2(:))*y2(:) end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/zfmtwr.f900000644000000000000000000000013214061636517014575 xustar0030 mtime=1623670095.140102283 30 atime=1623670093.884103449 30 ctime=1623670095.140102283 elk-7.2.42/src/zfmtwr.f900000644002504400250440000000123414061636517016632 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine zfmtwr(nr,nri,wr,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) complex(8), intent(inout) :: zfmt(*) ! local variables integer n,ir,i i=1 if (lmaxi.eq.1) then do ir=1,nri zfmt(i:i+3)=wr(ir)*zfmt(i:i+3) i=i+4 end do else n=lmmaxi-1 do ir=1,nri zfmt(i:i+n)=wr(ir)*zfmt(i:i+n) i=i+lmmaxi end do end if n=lmmaxo-1 do ir=nri+1,nr zfmt(i:i+n)=wr(ir)*zfmt(i:i+n) i=i+lmmaxo end do end subroutine elk-7.2.42/src/PaxHeaders.21776/zvcldisp.f900000644000000000000000000000013214061636517015102 xustar0030 mtime=1623670095.142102281 30 atime=1623670093.885103448 30 ctime=1623670095.142102281 elk-7.2.42/src/zvcldisp.f900000644002504400250440000000122214061636517017134 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zvcldisp(zvclmt) use modmain use modtddft implicit none ! arguments complex(8), intent(inout) :: zvclmt(npmtmax,natmtot) ! local variables integer is,ia,ias,np,i real(8) t1 do is=1,nspecies np=npmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do i=1,3 t1=-datposc(i,0,ia,is) ! add the gradient of the Coulomb potential of the nucleus plus static density zvclmt(1:np,ias)=zvclmt(1:np,ias)+t1*gvclns(1:np,i,ias) end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/vecfbz.f900000644000000000000000000000013014061636517014521 xustar0029 mtime=1623670095.14310228 30 atime=1623670093.887103446 29 ctime=1623670095.14310228 elk-7.2.42/src/vecfbz.f900000644002504400250440000000270714061636517016566 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: vecfbz ! !INTERFACE: subroutine vecfbz(eps,bvec,vpl) ! !INPUT/OUTPUT PARAMETERS: ! eps : zero component tolerance (in,real) ! bvec : reciprocal lattice vectors (in,real(3,3)) ! vpl : input vector in lattice coordinates (inout,real(3)) ! !DESCRIPTION: ! Maps a vector in lattice coordinates to the first Brillouin zone. This is ! done by first removing its integer components and then adding primitive ! reciprocal lattice vectors until the shortest vector is found. ! ! !REVISION HISTORY: ! Created September 2008 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: eps,bvec(3,3) real(8), intent(inout) :: vpl(3) ! local variables integer i1,i2,i3,j1,j2,j3 real(8) v0(3),v1(3),v2(3),v3(3),t1,t2 ! map vector to [0,1) interval call r3frac(eps,vpl) v0(:)=bvec(:,1)*vpl(1)+bvec(:,2)*vpl(2)+bvec(:,3)*vpl(3) t1=v0(1)**2+v0(2)**2+v0(3)**2 j1=0; j2=0; j3=0 do i1=-1,0 v1(:)=v0(:)+dble(i1)*bvec(:,1) do i2=-1,0 v2(:)=v1(:)+dble(i2)*bvec(:,2) do i3=-1,0 v3(:)=v2(:)+dble(i3)*bvec(:,3) t2=v3(1)**2+v3(2)**2+v3(3)**2 if (t2.lt.t1+eps) then j1=i1; j2=i2; j3=i3 t1=t2 end if end do end do end do vpl(1)=vpl(1)+dble(j1) vpl(2)=vpl(2)+dble(j2) vpl(3)=vpl(3)+dble(j3) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gcd.f900000644000000000000000000000013214061636517014001 xustar0030 mtime=1623670095.145102278 30 atime=1623670093.889103444 30 ctime=1623670095.145102278 elk-7.2.42/src/gcd.f900000644002504400250440000000156314061636517016043 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gcd ! !INTERFACE: integer function gcd(x,y) ! !INPUT/OUTPUT PARAMETERS: ! x : first integer (in,integer) ! y : second integer (in,integer) ! !DESCRIPTION: ! Computes the greatest common divisor (GCD) of two integers using Euclid's ! algorithm. ! ! !REVISION HISTORY: ! Created September 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: x,y ! local variables integer a,b,c if ((x.le.0).or.(y.le.0)) then write(*,*) write(*,'("Error(gcd): x <= 0 or y <= 0 : ",2I8)') x,y write(*,*) stop end if if (x.ge.y) then a=x b=y else a=y b=x end if 10 continue c=mod(a,b) a=b b=c if (c.gt.0) goto 10 gcd=a end function !EOC elk-7.2.42/src/PaxHeaders.21776/lopzflmn.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.146102277 30 atime=1623670093.890103443 30 ctime=1623670095.146102277 elk-7.2.42/src/lopzflmn.f900000644002504400250440000000220314061636517017137 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine lopzflmn(lmax,n,ld,zflm,zlflm1,zlflm2,zlflm3) implicit none ! arguments integer, intent(in) :: lmax,n,ld complex(8), intent(in) :: zflm(ld,n) complex(8), intent(out) :: zlflm1(ld,n),zlflm2(ld,n),zlflm3(ld,n) ! local variables integer l,m,lm,i real(8) t1 complex(8) z1 lm=0 do l=0,lmax do m=-l,l lm=lm+1 if (m.eq.-l) then zlflm1(lm,:)=0.d0 zlflm2(lm,:)=0.d0 end if if (m.lt.l) then t1=0.5d0*sqrt(dble((l-m)*(l+m+1))) do i=1,n z1=t1*zflm(lm,i) zlflm1(lm+1,i)=z1 zlflm2(lm+1,i)=cmplx(aimag(z1),-dble(z1),8) end do end if if (m.gt.-l) then t1=0.5d0*sqrt(dble((l+m)*(l-m+1))) do i=1,n z1=t1*zflm(lm,i) zlflm1(lm-1,i)=zlflm1(lm-1,i)+z1 zlflm2(lm-1,i)=zlflm2(lm-1,i)+cmplx(-aimag(z1),dble(z1),8) end do end if if (m.ne.0) then zlflm3(lm,:)=dble(m)*zflm(lm,:) else zlflm3(lm,:)=0.d0 end if end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/zpotclmt.f900000644000000000000000000000013214061636517015120 xustar0030 mtime=1623670095.148102276 30 atime=1623670093.892103441 30 ctime=1623670095.148102276 elk-7.2.42/src/zpotclmt.f900000644002504400250440000000757314061636517017171 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zpotclmt ! !INTERFACE: pure subroutine zpotclmt(nr,nri,ld,rl,wpr,zrhomt,zvclmt) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on inner part of muffin-tin (in,integer) ! ld : leading dimension (in,integer) ! rl : r^l on the radial mesh (in,real(ld,-lmaxo-1:lmaxo+2)) ! wpr : weights for partial integration on radial mesh (in,real(4,nr)) ! zrhomt : muffin-tin charge density (in,complex(*)) ! zvclmt : muffin-tin Coulomb potential (out,complex(*)) ! !DESCRIPTION: ! Solves the Poisson equation for the charge density contained in an isolated ! muffin-tin using the Green's function approach. In other words, the ! spherical harmonic expansion of the Coulomb potential, $V_{lm}$, is obtained ! from the density expansion, $\rho_{lm}$, by ! $$ V_{lm}(r)=\frac{4\pi}{2l+1}\left(\frac{1}{r^{l+1}}\int_0^r\rho_{lm}(r') ! {r'}^{l+2}dr'+r^l\int_r^R\frac{\rho_{lm}(r')}{{r'}^{l-1}}dr'\right) $$ ! where $R$ is the muffin-tin radius. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri,ld real(8), intent(in) :: rl(ld,-lmaxo-1:lmaxo+2),wpr(4,nr) complex(8), intent(in) :: zrhomt(*) complex(8), intent(out) :: zvclmt(*) ! local variables integer nro,iro,ir integer l,l1,l2,l3 integer lm,npi,i real(8) r1,r2,t0,t1,t2,t3,t4 ! automatic arrays real(8) f1(nr),f2(nr),f3(nr),f4(nr),f5(nr) nro=nr-nri iro=nri+1 npi=lmmaxi*nri do l=0,lmaxi l1=l+2 l2=-l+1 l3=-l-1 t0=fourpi/dble(2*l+1) do lm=l**2+1,(l+1)**2 i=lm do ir=1,nri t1=dble(zrhomt(i)); t2=aimag(zrhomt(i)) r1=rl(ir,l1); r2=rl(ir,l2) f1(ir)=t1*r1; f2(ir)=t2*r1 f3(ir)=t1*r2; f4(ir)=t2*r2 i=i+lmmaxi end do do ir=iro,nr t1=dble(zrhomt(i)); t2=aimag(zrhomt(i)) r1=rl(ir,l1); r2=rl(ir,l2) f1(ir)=t1*r1; f2(ir)=t2*r1 f3(ir)=t1*r2; f4(ir)=t2*r2 i=i+lmmaxo end do call splintwp(nr,wpr,f1,f5) call splintwp(nr,wpr,f2,f1) call splintwp(nr,wpr,f3,f2) call splintwp(nr,wpr,f4,f3) t1=f2(nr); t2=f3(nr) i=lm do ir=1,nri r1=t0*rl(ir,l3); r2=t0*rl(ir,l) t3=r1*f5(ir)+r2*(t1-f2(ir)) t4=r1*f1(ir)+r2*(t2-f3(ir)) zvclmt(i)=cmplx(t3,t4,8) i=i+lmmaxi end do do ir=iro,nr r1=t0*rl(ir,l3); r2=t0*rl(ir,l) t3=r1*f5(ir)+r2*(t1-f2(ir)) t4=r1*f1(ir)+r2*(t2-f3(ir)) zvclmt(i)=cmplx(t3,t4,8) i=i+lmmaxo end do end do end do do l=lmaxi+1,lmaxo l1=l+2 l2=-l+1 l3=-l-1 t0=fourpi/dble(2*l+1) do lm=l**2+1,(l+1)**2 i=npi+lm do ir=iro,nr t1=dble(zrhomt(i)); t2=aimag(zrhomt(i)) r1=rl(ir,l1); r2=rl(ir,l2) f1(ir)=t1*r1; f2(ir)=t2*r1 f3(ir)=t1*r2; f4(ir)=t2*r2 i=i+lmmaxo end do call splintwp(nro,wpr(1,iro),f1(iro),f5(iro)) call splintwp(nro,wpr(1,iro),f2(iro),f1(iro)) call splintwp(nro,wpr(1,iro),f3(iro),f2(iro)) call splintwp(nro,wpr(1,iro),f4(iro),f3(iro)) t1=f2(nr); t2=f3(nr) i=npi+lm do ir=iro,nr r1=t0*rl(ir,l3); r2=t0*rl(ir,l) t3=r1*f5(ir)+r2*(t1-f2(ir)) t4=r1*f1(ir)+r2*(t2-f3(ir)) zvclmt(i)=cmplx(t3,t4,8) i=i+lmmaxo end do end do end do return contains pure subroutine splintwp(n,wp,f,g) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wp(*),f(n) real(8), intent(out) :: g(n) ! local variables integer i,j real(8) sm g(1)=0.d0 sm=wp(5)*f(1)+wp(6)*f(2)+wp(7)*f(3)+wp(8)*f(4) g(2)=sm do i=3,n-1 j=(i-1)*4+1 sm=sm+wp(j)*f(i-2)+wp(j+1)*f(i-1)+wp(j+2)*f(i)+wp(j+3)*f(i+1) g(i)=sm end do j=(n-1)*4+1 g(n)=sm+wp(j)*f(n-3)+wp(j+1)*f(n-2)+wp(j+2)*f(n-1)+wp(j+3)*f(n) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/readfermi.f900000644000000000000000000000013114061636517015201 xustar0030 mtime=1623670095.149102275 29 atime=1623670093.89410344 30 ctime=1623670095.149102275 elk-7.2.42/src/readfermi.f900000644002504400250440000000157214061636517017244 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: readfermi ! !INTERFACE: subroutine readfermi ! !USES: use modmain ! !DESCRIPTION: ! Reads the Fermi energy from the file {\tt EFERMI.OUT}. ! ! !REVISION HISTORY: ! Created March 2005 (JKD) !EOP !BOC implicit none ! local variables integer ios open(50,file='EFERMI'//trim(filext),form='FORMATTED',action='READ', & status='OLD',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readfermi): error opening ",A)') 'EFERMI'//trim(filext) write(*,*) stop end if read(50,*,iostat=ios) efermi if (ios.ne.0) then write(*,*) write(*,'("Error(readfermi): error reading Fermi energy from EFERMI.OUT")') write(*,*) stop end if close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gensdmat.f900000644000000000000000000000013214061636517015046 xustar0030 mtime=1623670095.151102273 30 atime=1623670093.895103439 30 ctime=1623670095.151102273 elk-7.2.42/src/gensdmat.f900000644002504400250440000000212314061636517017101 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gensdmat ! !INTERFACE: pure subroutine gensdmat(evecsv,sdmat) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! evecsv : second-variational eigenvectors (in,complex(nstsv,nstsv)) ! sdmat : spin density matrices (out,complex(nspinor,nspinor,nstsv)) ! !DESCRIPTION: ! Computes the spin density matrices for a set of second-variational states. ! ! !REVISION HISTORY: ! Created September 2008 (JKD) !EOP !BOC implicit none ! arguments complex(8), intent(in) :: evecsv(nstsv,nstsv) complex(8), intent(out) :: sdmat(nspinor,nspinor,nstsv) ! local variables integer ispn,jspn,ist,j complex(8) z1,z2 sdmat(:,:,:)=0.d0 do j=1,nstsv do ispn=1,nspinor do jspn=1,nspinor do ist=1,nstfv z1=evecsv(ist+nstfv*(ispn-1),j) z2=evecsv(ist+nstfv*(jspn-1),j) sdmat(ispn,jspn,j)=sdmat(ispn,jspn,j)+z1*conjg(z2) end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/symrfmt.f900000644000000000000000000000013214061636517014745 xustar0030 mtime=1623670095.152102272 30 atime=1623670093.897103437 30 ctime=1623670095.152102272 elk-7.2.42/src/symrfmt.f900000644002504400250440000000354114061636517017005 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine symrfmt(nr,nri,np,ld,rfmt) use modmain implicit none ! arguments integer, intent(in) :: nr(nspecies),nri(nspecies),np(nspecies) integer, intent(in) :: ld real(8), intent(inout) :: rfmt(ld,natmtot) ! local variables integer is,ia,ja,ias,jas integer isym,lspl real(8) t0 ! automatic arrays logical done(natmmax) ! allocatable arrays real(8), allocatable :: rfmt1(:,:),rfmt2(:) allocate(rfmt1(ld,natmmax),rfmt2(ld)) t0=1.d0/dble(nsymcrys) do is=1,nspecies ! make a copy of the input function do ia=1,natoms(is) ias=idxas(ia,is) call dcopy(np(is),rfmt(:,ias),1,rfmt1(:,ia),1) end do done(:)=.false. ! loop over atoms do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) rfmt(1:np(is),ias)=0.d0 ! loop over crystal symmetries do isym=1,nsymcrys ! index to spatial rotation lattice symmetry lspl=lsplsymc(isym) ! equivalent atom index (symmetry rotates atom ja into atom ia) ja=ieqatom(ia,is,isym) ! apply the rotation to the muffin-tin function call rotrfmt(symlatc(:,:,lspl),nr(is),nri(is),rfmt1(:,ja),rfmt2) ! accumulate in original function array rfmt(1:np(is),ias)=rfmt(1:np(is),ias)+rfmt2(1:np(is)) end do ! normalise call dscal(np(is),t0,rfmt(:,ias),1) done(ia)=.true. ! rotate into equivalent atoms do isym=1,nsymcrys ja=ieqatom(ia,is,isym) if (done(ja)) cycle jas=idxas(ja,is) ! inverse symmetry (which rotates atom ia into atom ja) lspl=isymlat(lsplsymc(isym)) ! rotate symmetrised function into equivalent muffin-tin call rotrfmt(symlatc(:,:,lspl),nr(is),nri(is),rfmt(:,ias),rfmt(:,jas)) done(ja)=.true. end do end do end do deallocate(rfmt1,rfmt2) end subroutine elk-7.2.42/src/PaxHeaders.21776/sphcrd.f900000644000000000000000000000013014061636517014525 xustar0029 mtime=1623670095.15410227 30 atime=1623670093.899103435 29 ctime=1623670095.15410227 elk-7.2.42/src/sphcrd.f900000644002504400250440000000222514061636517016565 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sphcrd ! !INTERFACE: pure subroutine sphcrd(v,r,tp) ! !INPUT/OUTPUT PARAMETERS: ! v : input vector (in,real(3)) ! r : length of v (out,real) ! tp : (theta, phi) coordinates (out,real(2)) ! !DESCRIPTION: ! Returns the spherical coordinates $(r,\theta,\phi)$ of a vector ! $$ {\bf v}=(r\sin(\theta)\cos(\phi), r\sin(\theta)\sin(\phi), ! r\cos(\theta)). $$ ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: v(3) real(8), intent(out) :: r,tp(2) ! local variables real(8), parameter :: eps=1.d-14 real(8) t1 r=sqrt(v(1)**2+v(2)**2+v(3)**2) if (r.gt.eps) then t1=v(3)/r if (t1.ge.1.d0) then tp(1)=0.d0 else if (t1.le.-1.d0) then tp(1)=3.1415926535897932385d0 else tp(1)=acos(t1) end if if ((abs(v(1)).gt.eps).or.(abs(v(2)).gt.eps)) then tp(2)=atan2(v(2),v(1)) else tp(2)=0.d0 end if else tp(1)=0.d0 tp(2)=0.d0 end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/potcoul.f900000644000000000000000000000013214061636517014731 xustar0030 mtime=1623670095.155102269 30 atime=1623670093.900103434 30 ctime=1623670095.155102269 elk-7.2.42/src/potcoul.f900000644002504400250440000000500214061636517016763 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: potcoul ! !INTERFACE: subroutine potcoul ! !USES: use modmain use modomp ! !DESCRIPTION: ! Calculates the Coulomb potential of the real charge density stored in the ! global variables {\tt rhomt} and {\tt rhoir} by solving Poisson's equation. ! These variables are coverted to complex representations and passed to the ! routine {\tt zpotcoul}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ias,nthd integer nr,nri,ir,i ! allocatable arrays complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) allocate(zrhomt(npmtmax,natmtot)) ! convert real muffin-tin charge density to complex spherical harmonic expansion call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call rtozfmt(nrmt(is),nrmti(is),rhomt(:,ias),zrhomt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! solve the complex Poisson's equation in the muffin-tins allocate(zvclmt(npmtmax,natmtot)) call genzvclmt(nrmt,nrmti,nrmtmax,rlmt,wprmt,npmtmax,zrhomt,zvclmt) deallocate(zrhomt) ! add the nuclear monopole potentials do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri zvclmt(i,ias)=zvclmt(i,ias)+vcln(ir,is) i=i+lmmaxi end do do ir=nri+1,nr zvclmt(i,ias)=zvclmt(i,ias)+vcln(ir,is) i=i+lmmaxo end do end do ! apply atomic displacement potential if required if (tdatpos) call zvcldisp(zvclmt) allocate(zrhoir(ngtot),zvclir(ngtot)) ! store real interstitial charge density in complex array zrhoir(:)=rhoir(:) ! solve Poisson's equation in the entire unit cell call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gc,gclg, & ngvec,jlgrmt,ylmg,sfacg,zrhoir,npmtmax,zvclmt,zvclir) ! convert complex muffin-tin potential to real spherical harmonic expansion call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call ztorfmt(nrmt(is),nrmti(is),zvclmt(:,ias),vclmt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! store complex interstitial potential in real array vclir(:)=dble(zvclir(:)) deallocate(zrhoir,zvclmt,zvclir) ! apply constant electric field if required if (tefield) call potefield end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genzrm.f900000644000000000000000000000013214061636517014546 xustar0030 mtime=1623670095.157102267 30 atime=1623670093.902103432 30 ctime=1623670095.157102267 elk-7.2.42/src/genzrm.f900000644002504400250440000000222514061636517016604 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine genzrm(n,wf11,wf12,wf21,wf22,zrho,ld,zmag) use modmain implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: wf11(n),wf12(n),wf21(n),wf22(n) complex(8), intent(out) :: zrho(n) integer, intent(in) :: ld complex(8), intent(out) :: zmag(ld,ndmag) ! local variables integer i complex(8) z11,z12,z21,z22,z1,z2 if (ncmag) then ! non-collinear case do i=1,n z11=wf11(i); z12=wf12(i) z21=wf21(i); z22=wf22(i) ! up-dn spin density z1=conjg(z11)*z22 ! dn-up spin density z2=conjg(z12)*z21 ! x-component: up-dn + dn-up zmag(i,1)=z1+z2 ! y-component: i*(dn-up - up-dn) z1=z2-z1 zmag(i,2)=cmplx(-aimag(z1),dble(z1),8) z1=conjg(z11)*z21 z2=conjg(z12)*z22 ! z-component: up-up - dn-dn zmag(i,3)=z1-z2 ! density: up-up + dn-dn zrho(i)=z1+z2 end do else ! collinear case do i=1,n z1=conjg(wf11(i))*wf21(i) z2=conjg(wf12(i))*wf22(i) zmag(i,1)=z1-z2 zrho(i)=z1+z2 end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/rfmtftoc.f900000644000000000000000000000013114061636517015067 xustar0030 mtime=1623670095.158102266 29 atime=1623670093.90410343 30 ctime=1623670095.158102266 elk-7.2.42/src/rfmtftoc.f900000644002504400250440000000122714061636517017127 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine rfmtftoc(nrc,nrci,rfmt,rfcmt) use modmain implicit none ! arguments integer, intent(in) :: nrc,nrci real(8), intent(in) :: rfmt(*) real(8), intent(out) :: rfcmt(*) ! local variables integer irc,i,j,m,n i=1 j=1 m=lmmaxi*lradstp n=lmmaxi-1 do irc=1,nrci rfcmt(i:i+n)=rfmt(j:j+n) i=i+lmmaxi j=j+m end do j=j+(lradstp-1)*(lmmaxo-lmmaxi) m=lmmaxo*lradstp n=lmmaxo-1 do irc=nrci+1,nrc rfcmt(i:i+n)=rfmt(j:j+n) i=i+lmmaxo j=j+m end do end subroutine elk-7.2.42/src/PaxHeaders.21776/rminv.f900000644000000000000000000000013214061636517014377 xustar0030 mtime=1623670095.160102264 30 atime=1623670093.905103429 30 ctime=1623670095.160102264 elk-7.2.42/src/rminv.f900000644002504400250440000000143014061636517016432 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rminv(n,a) implicit none ! arguments integer, intent(in) :: n real(8), intent(inout) :: a(n,n) ! local variables integer info ! automatic arrays integer ipiv(n) real(8) work(n) call dgetrf(n,n,a,n,ipiv,info) if (info.ne.0) then write(*,*) write(*,'("Error(rminv): unable to invert matrix")') write(*,'(" DGETRF returned INFO = ",I8)') info write(*,*) stop end if call dgetri(n,a,n,ipiv,work,n,info) if (info.ne.0) then write(*,*) write(*,'("Error(rminv): unable to invert matrix")') write(*,'(" DGETRI returned INFO = ",I8)') info write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/zminv.f900000644000000000000000000000013214061636517014407 xustar0030 mtime=1623670095.161102264 30 atime=1623670093.907103428 30 ctime=1623670095.161102264 elk-7.2.42/src/zminv.f900000644002504400250440000000170014061636517016442 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zminv(n,a) use modomp implicit none ! arguments integer, intent(in) :: n complex(8), intent(inout) :: a(n,n) ! local variables integer info,nthd,nts ! automatic arrays integer ipiv(n) complex(8) work(n) ! enable MKL parallelism call holdthd(maxthdmkl,nthd) nts=mkl_set_num_threads_local(nthd) call zgetrf(n,n,a,n,ipiv,info) if (info.ne.0) then write(*,*) write(*,'("Error(zminv): unable to invert matrix")') write(*,'(" ZGETRF returned INFO = ",I8)') info write(*,*) stop end if call zgetri(n,a,n,ipiv,work,n,info) if (info.ne.0) then write(*,*) write(*,'("Error(zminv): unable to invert matrix")') write(*,'(" ZGETRI returned INFO = ",I8)') info write(*,*) stop end if nts=mkl_set_num_threads_local(0) call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/rtozfmt.f900000644000000000000000000000013214061636517014751 xustar0030 mtime=1623670095.162102263 30 atime=1623670093.909103426 30 ctime=1623670095.162102263 elk-7.2.42/src/rtozfmt.f900000644002504400250440000000416514061636517017014 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine rtozfmt(nr,nri,rfmt,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: rfmt(*) complex(8), intent(out) :: zfmt(*) ! local variables integer i call rtozflmn(lmaxi,nri,lmmaxi,rfmt,zfmt) i=lmmaxi*nri+1 call rtozflmn(lmaxo,nr-nri,lmmaxo,rfmt(i),zfmt(i)) return contains !BOP ! !ROUTINE: rtozflmn ! !INTERFACE: pure subroutine rtozflmn(lmax,n,ld,rflm,zflm) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! n : number of functions to convert (in,integer) ! ld : leading dimension (in,integer) ! rflm : coefficients of real spherical harmonic expansion (in,real(ld,n)) ! zflm : coefficients of complex spherical harmonic expansion ! (out,complex(ld,n)) ! !DESCRIPTION: ! Converts a real function, $r_{lm}$, expanded in terms of real spherical ! harmonics into a complex spherical harmonic expansion, $z_{lm}$: ! $$ z_{lm}=\begin{cases} \frac{1}{\sqrt{2}}(r_{lm}+i(-1)^mr_{l-m}) & m>0 \\ ! \frac{1}{\sqrt{2}}((-1)^mr_{l-m}-ir_{lm}) & m<0 \\ ! r_{lm} & m=0 \end{cases}\;. $$ ! See routine {\tt genrlm}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax,n,ld real(8), intent(in) :: rflm(ld,n) complex(8), intent(out) :: zflm(ld,n) ! local variables integer l,m,lm1,lm2 ! real constant 1/sqrt(2) real(8), parameter :: c1=0.7071067811865475244d0 lm1=0 do l=0,lmax lm2=lm1+2*(l+1) do m=-l,-1 lm1=lm1+1 lm2=lm2-1 if (mod(m,2).ne.0) then zflm(lm1,:)=c1*cmplx(-rflm(lm2,:),-rflm(lm1,:),8) else zflm(lm1,:)=c1*cmplx(rflm(lm2,:),-rflm(lm1,:),8) end if end do lm1=lm1+1 lm2=lm2-1 zflm(lm1,:)=rflm(lm1,:) do m=1,l lm1=lm1+1 lm2=lm2-1 if (mod(m,2).ne.0) then zflm(lm1,:)=c1*cmplx(rflm(lm1,:),-rflm(lm2,:),8) else zflm(lm1,:)=c1*cmplx(rflm(lm1,:),rflm(lm2,:),8) end if end do end do end subroutine !EOC end subroutine elk-7.2.42/src/PaxHeaders.21776/genwfsvp.f900000644000000000000000000000013214061636517015103 xustar0030 mtime=1623670095.164102261 30 atime=1623670093.910103425 30 ctime=1623670095.164102261 elk-7.2.42/src/genwfsvp.f900000644002504400250440000000376314061636517017151 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genwfsvp(tsh,tgp,nst,idx,ngdg,igf,vpl,ngp,igpig,wfmt,ld,wfir) use modmain implicit none ! arguments logical, intent(in) :: tsh,tgp integer, intent(in) :: nst,idx(nst),ngdg(3),igf(*) real(8), intent(in) :: vpl(3) integer, intent(out) :: ngp(nspnfv),igpig(ngkmax,nspnfv) complex(8), intent(out) :: wfmt(npcmtmax,natmtot,nspinor,nst) integer, intent(in) :: ld complex(8), intent(out) :: wfir(ld,nspinor,nst) ! local variables integer ispn real(8) vl(3),vc(3) ! automatic arrays real(8) vgpl(3,ngkmax,nspnfv),vgpc(3,ngkmax),gpc(ngkmax) ! allocatable arrays complex(8), allocatable :: sfacgp(:,:),apwalm(:,:,:,:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) allocate(sfacgp(ngkmax,natmtot)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) ! loop over first-variational spins do ispn=1,nspnfv vl(:)=vpl(:) vc(:)=bvec(:,1)*vpl(1)+bvec(:,2)*vpl(2)+bvec(:,3)*vpl(3) ! spin-spiral case if (spinsprl) then if (ispn.eq.1) then vl(:)=vl(:)+0.5d0*vqlss(:) vc(:)=vc(:)+0.5d0*vqcss(:) else vl(:)=vl(:)-0.5d0*vqlss(:) vc(:)=vc(:)-0.5d0*vqcss(:) end if end if ! generate the G+p-vectors call gengkvec(ngvc,ivg,vgc,vl,vc,gkmax,ngkmax,ngp(ispn),igpig(:,ispn), & vgpl(:,:,ispn),vgpc,gpc) ! generate structure factors for G+p-vectors call gensfacgp(ngp(ispn),vgpc,ngkmax,sfacgp) ! find the matching coefficients call match(ngp(ispn),vgpc,gpc,sfacgp,apwalm(:,:,:,:,ispn)) end do deallocate(sfacgp) ! get the first- and second-variational eigenvectors from file allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) call getevecfv(filext,0,vpl,vgpl,evecfv) call getevecsv(filext,0,vpl,evecsv) ! calculate the second-variational wavefunctions call genwfsv(tsh,tgp,nst,idx,ngdg,igf,ngp,igpig,apwalm,evecfv,evecsv,wfmt,ld, & wfir) deallocate(apwalm,evecfv,evecsv) end subroutine elk-7.2.42/src/PaxHeaders.21776/rdiracint.f900000644000000000000000000000013014061636517015221 xustar0029 mtime=1623670095.16510226 30 atime=1623670093.912103423 29 ctime=1623670095.16510226 elk-7.2.42/src/rdiracint.f900000644002504400250440000001100214061636517017252 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2015 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdiracint ! !INTERFACE: pure subroutine rdiracint(sol,kpa,e,nr,r,vr,nn,g0,g1,f0,f1) ! !INPUT/OUTPUT PARAMETERS: ! sol : speed of light in atomic units (in,real) ! kpa : quantum number kappa (in,integer) ! e : energy (in,real) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! vr : potential on radial mesh (in,real(nr)) ! nn : number of nodes (out,integer) ! g0 : m th energy derivative of the major component multiplied by r ! (out,real(nr)) ! g1 : radial derivative of g0 (out,real(nr)) ! f0 : m th energy derivative of the minor component multiplied by r ! (out,real(nr)) ! f1 : radial derivative of f0 (out,real(nr)) ! !DESCRIPTION: ! Integrates the radial Dirac equation from $r=0$ outwards. This involves ! using the predictor-corrector method to solve the coupled first-order ! equations (in atomic units) ! \begin{align*} ! \left(\frac{d}{dr}+\frac{\kappa}{r}\right)G_{\kappa}&=\frac{1}{c} ! \{2E_0+E-V\}F_{\kappa}\\ ! \left(\frac{d}{dr}-\frac{\kappa}{r}\right)F_{\kappa}&= ! -\frac{1}{c}\{E-V\}G_{\kappa}, ! \end{align*} ! where $G_{\kappa}=rg_{\kappa}$ and $F_{\kappa}=rf_{\kappa}$ are the major ! and minor components multiplied by $r$, respectively; $V$ is the external ! potential; $E_0$ is the electron rest energy; $E$ is the eigen energy ! (excluding $E_0$); and $\kappa=l$ for $j=l-\frac{1}{2}$ or $\kappa=-(l+1)$ ! for $j=l+\frac{1}{2}$. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) ! Polynomial order fixed to 3, September 2013 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: sol integer, intent(in) :: kpa real(8), intent(in) :: e integer, intent(in) :: nr real(8), intent(in) :: r(nr),vr(nr) integer, intent(out) :: nn real(8), intent(out) :: g0(nr),g1(nr) real(8), intent(out) :: f0(nr),f1(nr) ! local variables integer ir,ir0 ! rescaling limit real(8), parameter :: rsc=1.d100 real(8) ci,e0,t1,t2,t3,t4 ! inverse speed of light ci=1.d0/sol ! electron rest energy e0=sol**2 t1=2.d0*e0+e ! determine the r -> 0 boundary values of F and G t2=dble(kpa)/r(1) t3=ci*(t1-vr(1)) t4=ci*(vr(1)-e) f0(1)=1.d0 f1(1)=0.d0 g0(1)=(f1(1)-t2*f0(1))/t4 g1(1)=t3*f0(1)-t2*g0(1) ! extrapolate to the first four points g1(2:4)=g1(1) f1(2:4)=f1(1) nn=0 do ir=2,nr t2=dble(kpa)/r(ir) t3=ci*(t1-vr(ir)) t4=ci*(vr(ir)-e) ir0=ir-3 if (ir0.lt.1) ir0=1 g1(ir)=poly3(r(ir0),g1(ir0),r(ir)) f1(ir)=poly3(r(ir0),f1(ir0),r(ir)) ! integrate to find wavefunction g0(ir)=poly4i(r(ir0),g1(ir0),r(ir))+g0(ir0) f0(ir)=poly4i(r(ir0),f1(ir0),r(ir))+f0(ir0) ! compute the derivatives g1(ir)=t3*f0(ir)-t2*g0(ir) f1(ir)=t4*g0(ir)+t2*f0(ir) ! integrate for correction g0(ir)=poly4i(r(ir0),g1(ir0),r(ir))+g0(ir0) f0(ir)=poly4i(r(ir0),f1(ir0),r(ir))+f0(ir0) ! compute the derivatives again g1(ir)=t3*f0(ir)-t2*g0(ir) f1(ir)=t4*g0(ir)+t2*f0(ir) ! check for overflow if ((abs(g0(ir)).gt.rsc).or.(abs(g1(ir)).gt.rsc).or. & (abs(f0(ir)).gt.rsc).or.(abs(f1(ir)).gt.rsc)) then ! set the remaining points and return g0(ir:nr)=g0(ir) g1(ir:nr)=g1(ir) f0(ir:nr)=f0(ir) f1(ir:nr)=f1(ir) return end if ! check for node if (g0(ir-1)*g0(ir).lt.0.d0) nn=nn+1 end do return contains pure real(8) function poly3(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(3),ya(3),x ! local variables real(8) x0,x1,x2,y0,y1,y2 real(8) c1,c2,t0,t1,t2 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0 t0=1.d0/(x1*x2*(x2-x1)) t1=x1*y2; t2=x2*y1 c1=x2*t2-x1*t1 c2=t1-t2 t1=x-x0 ! evaluate the polynomial poly3=y0+t0*t1*(c1+c2*t1) end function pure real(8) function poly4i(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(4),ya(4),x ! local variables real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) c1,c2,c3,t0,t1,t2,t3,t4,t5,t6 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0; x3=xa(4)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0; y3=ya(4)-y0 t4=x1-x2; t5=x1-x3; t6=x2-x3 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 c3=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 c2=t1*(t5-t4)+t2*(t6-t5)+t3*(t4-t6) c1=t1*(x2*t4-x1*t5)+t2*(x3*t5-x2*t6)+t3*(x1*t6-x3*t4) t1=x-x0 ! integrate the polynomial poly4i=t1*(y0+t0*t1*(0.5d0*c1+t1*(0.3333333333333333333d0*c2+0.25d0*c3*t1))) end function end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/findngkmax.f900000644000000000000000000000013214061636517015372 xustar0030 mtime=1623670095.167102258 30 atime=1623670093.914103421 30 ctime=1623670095.167102258 elk-7.2.42/src/findngkmax.f900000644002504400250440000000424314061636517017432 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2012 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: findngkmax ! !INTERFACE: pure subroutine findngkmax(nkpt,vkc,nspnfv,vqcss,ngv,vgc,gkmax,ngkmax) ! !INPUT/OUTPUT PARAMETERS: ! nkpt : number of k-points (in,integer) ! vkc : k-point vectors in Cartesian coordinates (in,real(3,nkpt)) ! nspnfv : number of first-variational spin components: 1 normal case, 2 for ! spin-spiral case (in,integer) ! vqcss : spin-spiral q-vector, not referenced if nspnfv=1 (in,integer) ! ngv : number of G-vectors (in,integer) ! vgc : G-vectors in Cartesian coordinates (in,real(3,ngv)) ! gkmax : maximum allowed |G+k| (in,real) ! ngkmax : maximum number of G+k-vectors over all k-points (out,integer) ! !DESCRIPTION: ! Determines the largest number of ${\bf G+k}$-vectors with length less than ! {\tt gkmax} over all the $k$-points. This variable is used for allocating ! arrays. ! ! !REVISION HISTORY: ! Created October 2004 (JKD) ! Modified, August 2012 (JKD) ! Removed modmain and added arguments, September 2012 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nkpt real(8), intent(in) :: vkc(3,nkpt) integer, intent(in) :: nspnfv real(8), intent(in) :: vqcss(3) integer, intent(in) :: ngv real(8), intent(in) :: vgc(3,ngv),gkmax integer, intent(out) :: ngkmax ! local variables integer ispn,ik,n,ig real(8) v1,v2,v3,w1,w2,w3,t0,t1 t0=gkmax**2+1.d-6 ngkmax=0 do ispn=1,nspnfv do ik=1,nkpt if (nspnfv.eq.2) then ! spin-spiral case if (ispn.eq.1) then v1=vkc(1,ik)+0.5d0*vqcss(1) v2=vkc(2,ik)+0.5d0*vqcss(2) v3=vkc(3,ik)+0.5d0*vqcss(3) else v1=vkc(1,ik)-0.5d0*vqcss(1) v2=vkc(2,ik)-0.5d0*vqcss(2) v3=vkc(3,ik)-0.5d0*vqcss(3) end if else v1=vkc(1,ik) v2=vkc(2,ik) v3=vkc(3,ik) end if n=0 do ig=1,ngv w1=vgc(1,ig)+v1 w2=vgc(2,ig)+v2 w3=vgc(3,ig)+v3 t1=w1**2+w2**2+w3**2 if (t1.lt.t0) n=n+1 end do ngkmax=max(ngkmax,n) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rotzflm.f900000644000000000000000000000013214061636517014741 xustar0030 mtime=1623670095.168102257 30 atime=1623670093.916103419 30 ctime=1623670095.168102257 elk-7.2.42/src/rotzflm.f900000644002504400250440000000547214061636517017006 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rotzflm ! !INTERFACE: subroutine rotzflm(rot,lmin,lmax,lmmax,n,ld,zflm1,zflm2) ! !INPUT/OUTPUT PARAMETERS: ! rot : rotation matrix (in,real(3,3)) ! lmin : minimum angular momentum (in,integer) ! lmax : maximum angular momentum (in,integer) ! lmmax : (lmax+1)^2 or larger (in,integer) ! n : number of functions to rotate (in,integer) ! ld : leading dimension (in,integer) ! zflm1 : coefficients of the complex spherical harmonic expansion for each ! function (in,complex(ld,n)) ! zflm2 : coefficients of rotated functions (out,complex(ld,n)) ! !DESCRIPTION: ! Rotates a set of complex functions ! $$ f_i({\bf r})=\sum_{lm}f_{lm}^iY_{lm}(\hat{\bf r}) $$ ! for all $i$, given the coefficients $f_{lm}^i$ and a rotation matrix $R$. ! This is done by first the computing the Euler angles $(\alpha,\beta,\gamma)$ ! of $R^{-1}$ (see routine {\tt roteuler}) and then applying the spherical ! harmonic rotation matrix generated by the routine {\tt ylmrot}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Modified, December 2008 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rot(3,3) integer, intent(in) :: lmin,lmax,lmmax,n,ld complex(8), intent(in) :: zflm1(ld,n) complex(8), intent(out) :: zflm2(ld,n) ! local variables integer l,lm1,lm2,nm,p real(8) det,rotp(3,3) real(8) ang(3),angi(3) complex(8), parameter :: zzero=(0.d0,0.d0),zone=(1.d0,0.d0) ! automatic arrays complex(8) d(lmmax,lmmax) if (lmin.lt.0) then write(*,*) write(*,'("Error(rotzflm): lmin < 0 : ",I8)') lmin write(*,*) stop end if if (lmin.gt.lmax) then write(*,*) write(*,'("Error(rotzflm): lmin > lmax : ",2I8)') lmin,lmax write(*,*) stop end if if (n.eq.0) return if (n.lt.0) then write(*,*) write(*,'("Error(rotzflm): n < 0 : ",I8)') n write(*,*) stop end if ! find the determinant det=rot(1,1)*(rot(2,2)*rot(3,3)-rot(3,2)*rot(2,3)) & +rot(2,1)*(rot(3,2)*rot(1,3)-rot(1,2)*rot(3,3)) & +rot(3,1)*(rot(1,2)*rot(2,3)-rot(2,2)*rot(1,3)) ! make the rotation proper p=1 if (det.lt.0.d0) p=-1 rotp(:,:)=dble(p)*rot(:,:) ! compute the Euler angles of the rotation matrix call roteuler(rotp,ang) ! inverse rotation: the function is to be rotated, not the spherical harmonics angi(1)=-ang(3) angi(2)=-ang(2) angi(3)=-ang(1) ! determine the rotation matrix for complex spherical harmonics call ylmrot(p,angi,lmax,lmmax,d) ! apply rotation matrix (d and zflm may have different starting indices) lm1=lmin**2+1 lm2=1 do l=lmin,lmax nm=2*l+1 call zgemm('N','N',nm,n,nm,zone,d(lm1,lm1),lmmax,zflm1(lm2,1),ld,zzero, & zflm2(lm2,1),ld) lm1=lm1+nm lm2=lm2+nm end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zfinp.f900000644000000000000000000000013214061636517014372 xustar0030 mtime=1623670095.169102256 30 atime=1623670093.917103418 30 ctime=1623670095.169102256 elk-7.2.42/src/zfinp.f900000644002504400250440000000372114061636517016432 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zfinp ! !INTERFACE: complex(8) function zfinp(zfmt1,zfir1,zfmt2,zfir2) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! zfmt1 : first complex function in spherical harmonics/coordinates for all ! muffin-tins (in,complex(npcmtmax,natmtot)) ! zfir1 : first complex interstitial function in real-space ! (in,complex(ngtc)) ! zfmt2 : second complex function in spherical harmonics/coordinates for all ! muffin-tins (in,complex(npcmtmax,natmtot)) ! zfir2 : second complex interstitial function in real-space ! (in,complex(ngtc)) ! !DESCRIPTION: ! Calculates the inner product of two complex fuctions over the entire unit ! cell. The muffin-tin functions should be stored on the coarse radial grid. ! In the interstitial region, the integrand is multiplied with the ! characteristic function to remove the contribution from the muffin-tin. See ! routines {\tt zfmtinp} and {\tt gencfun}. ! ! !REVISION HISTORY: ! Created July 2004 (Sharma) !EOP !BOC implicit none ! arguments complex(8), intent(in) :: zfmt1(npcmtmax,natmtot),zfir1(ngtc) complex(8), intent(in) :: zfmt2(npcmtmax,natmtot),zfir2(ngtc) ! local variables integer is,ias,nthd ! external functions complex(8), external :: zdotc,zfmtinp ! interstitial contribution (requires that one of the functions has been ! multiplied by the characteristic function) zfinp=zdotc(ngtc,zfir1,1,zfir2,1) zfinp=zfinp*omega/dble(ngtc) ! muffin-tin contribution call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) REDUCTION(+:zfinp) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) zfinp=zfinp+zfmtinp(nrcmt(is),nrcmti(is),wrcmt(:,is),zfmt1(:,ias), & zfmt2(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) end function !EOC elk-7.2.42/src/PaxHeaders.21776/latvstep.f900000644000000000000000000000013214061636517015106 xustar0030 mtime=1623670095.171102254 30 atime=1623670093.919103416 30 ctime=1623670095.171102254 elk-7.2.42/src/latvstep.f900000644002504400250440000000202514061636517017142 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine latvstep use modmain use modmpi use modstore implicit none ! local variables integer i real(8) t1 do i=1,nstrain ! compute product of current and previous stress tensor components t1=stress(i)*stressp(i) ! if component is in the same direction then increase step size parameter if (t1.gt.0.d0) then taulatv(i)=taulatv(i)+tau0latv else taulatv(i)=tau0latv end if t1=taulatv(i)*(stress(i)+stressp(i)) avec(:,:)=avec(:,:)-t1*strain(:,:,i) end do ! compute the new unit cell volume call reciplat(avec,bvec,omega,omegabz) ! preserve the volume if required (added by Ronald Cohen) if (latvopt.eq.2) then t1=(omega_/omega)**(1.d0/3.d0) avec(:,:)=t1*avec(:,:) omega=omega_ end if ! each MPI process should have numerically identical lattice vectors call mpi_bcast(avec,9,mpi_double_precision,0,mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/gradzfmt.f900000644000000000000000000000013214061636517015062 xustar0030 mtime=1623670095.172102253 30 atime=1623670093.921103414 30 ctime=1623670095.172102253 elk-7.2.42/src/gradzfmt.f900000644002504400250440000001375414061636517017131 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2009 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gradzfmt ! !INTERFACE: subroutine gradzfmt(nr,nri,ri,wcr,zfmt,ld,gzfmt) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on inner part of muffin-tin (in,integer) ! ri : 1/r on the radial mesh (in,real(nr)) ! wcr : weights for spline coefficients on radial mesh (in,real(12,nr)) ! zfmt : complex muffin-tin function (in,complex(*)) ! ld : leading dimension (in,integer) ! gzfmt : gradient of zfmt (out,complex(ld,3)) ! !DESCRIPTION: ! Calculates the gradient of a complex muffin-tin function. In other words, ! given the spherical harmonic expansion coefficients, $f_{lm}(r)$, of a ! function $f({\bf r})$, the routine returns ${\bf F}_{lm}$ where ! $$ \sum_{lm}{\bf F}_{lm}(r)Y_{lm}(\hat{\bf r})=\nabla f({\bf r}). $$ ! This is done using the gradient formula (see, for example, V. Devanathan, ! {\em Angular Momentum Techniques In Quantum Mechanics}) ! \begin{align*} ! \nabla f_{lm}(r)Y_{lm}(\hat{\bf r})&=-\sqrt{\frac{l+1}{2l+1}} ! \left(\frac{d}{dr}-\frac{l}{r}\right)f_{lm}(r) ! {\bf Y}_{lm}^{l+1}(\hat{\bf r})\\ ! &+\sqrt{\frac{l}{2l+1}}\left(\frac{d}{dr}+\frac{l+1}{r}\right)f_{lm}(r) ! {\bf Y}_{lm}^{l-1}(\hat{\bf r}), ! \end{align*} ! where the vector spherical harmonics are determined from Clebsch-Gordan ! coefficients as follows: ! $$ {\bf Y}_{lm}^{l'}(\hat{\bf r})=\sum_{m'\mu} ! \begin{bmatrix} l' & 1 & l \\ m' & \mu & m \end{bmatrix} ! Y_{lm}(\hat{\bf r})\hat{\bf e}^{\mu} $$ ! and the (contravariant) spherical unit vectors are given by ! $$ \hat{\bf e}_{+1}=-\frac{\hat{\bf x}+i\hat{\bf y}}{\sqrt{2}}, ! \qquad\hat{\bf e}_0=\hat{\bf z},\qquad ! \hat{\bf e}_{-1}=\frac{\hat{\bf x}-i\hat{\bf y}}{\sqrt{2}}. $$ ! ! !REVISION HISTORY: ! Rewritten May 2009 (JKD) ! Modified, February 2020 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: ri(nr),wcr(12,nr) complex(8), intent(in) :: zfmt(*) integer, intent(in) :: ld complex(8), intent(out) :: gzfmt(ld,3) ! local variables integer nro,iro,ir,mu integer np,npi,i,i1,j integer l,m,lm,lm1 ! real constant 1/sqrt(2) real(8), parameter :: c1=0.7071067811865475244d0 real(8) t1,t2,t3 complex(8) z1 ! automatic arrays real(8) f1(nr),f2(nr),g1(nr),g2(nr) complex(8) drmt(ld) ! external functions real(8), external :: clebgor nro=nr-nri iro=nri+1 npi=lmmaxi*nri np=npi+lmmaxo*nro !----------------------------------------! ! compute the radial derivatives ! !----------------------------------------! do lm=1,lmmaxi i=lm do ir=1,nri f1(ir)=dble(zfmt(i)) f2(ir)=aimag(zfmt(i)) i=i+lmmaxi end do do ir=iro,nr f1(ir)=dble(zfmt(i)) f2(ir)=aimag(zfmt(i)) i=i+lmmaxo end do call splined(nr,wcr,f1,g1) call splined(nr,wcr,f2,g2) i=lm do ir=1,nri drmt(i)=cmplx(g1(ir),g2(ir),8) i=i+lmmaxi end do do ir=iro,nr drmt(i)=cmplx(g1(ir),g2(ir),8) i=i+lmmaxo end do end do do lm=lmmaxi+1,lmmaxo i=npi+lm do ir=iro,nr f1(ir)=dble(zfmt(i)) f2(ir)=aimag(zfmt(i)) i=i+lmmaxo end do call splined(nro,wcr(1,iro),f1(iro),g1(iro)) call splined(nro,wcr(1,iro),f2(iro),g2(iro)) i=npi+lm do ir=iro,nr drmt(i)=cmplx(g1(ir),g2(ir),8) i=i+lmmaxo end do end do !-----------------------------------------------------! ! compute the gradient in the spherical basis ! !-----------------------------------------------------! ! zero the gradient array gzfmt(1:np,:)=0.d0 ! inner part of muffin-tin lm=0 do l=0,lmaxi t1=-sqrt(dble(l+1)/dble(2*l+1)) if (l.gt.0) then t2=sqrt(dble(l)/dble(2*l+1)) else t2=0.d0 end if do m=-l,l lm=lm+1 j=1 do mu=-1,1 if (mu.eq.0) j=3 if (mu.eq.1) j=2 if (l+1.le.lmaxi) then ! index to (l,m) is l*(l+1)+m+1, therefore index to (l+1,m-mu) is lm1=(l+1)*(l+2)+(m-mu)+1 t3=t1*clebgor(l+1,1,l,m-mu,mu,m) i=lm; i1=lm1 do ir=1,nri gzfmt(i1,j)=gzfmt(i1,j)+t3*(drmt(i)-dble(l)*ri(ir)*zfmt(i)) i=i+lmmaxi; i1=i1+lmmaxi end do end if if (abs(m-mu).le.l-1) then ! index to (l-1,m-mu) lm1=(l-1)*l+(m-mu)+1 t3=t2*clebgor(l-1,1,l,m-mu,mu,m) i=lm; i1=lm1 do ir=1,nri gzfmt(i1,j)=gzfmt(i1,j)+t3*(drmt(i)+dble(l+1)*ri(ir)*zfmt(i)) i=i+lmmaxi; i1=i1+lmmaxi end do end if end do end do end do ! outer part of muffin-tin lm=0 do l=0,lmaxo t1=-sqrt(dble(l+1)/dble(2*l+1)) if (l.gt.0) then t2=sqrt(dble(l)/dble(2*l+1)) else t2=0.d0 end if do m=-l,l lm=lm+1 j=1 do mu=-1,1 if (mu.eq.0) j=3 if (mu.eq.1) j=2 if (l+1.le.lmaxo) then lm1=(l+1)*(l+2)+(m-mu)+1 t3=t1*clebgor(l+1,1,l,m-mu,mu,m) i=npi+lm; i1=npi+lm1 do ir=iro,nr gzfmt(i1,j)=gzfmt(i1,j)+t3*(drmt(i)-dble(l)*ri(ir)*zfmt(i)) i=i+lmmaxo; i1=i1+lmmaxo end do end if if (abs(m-mu).le.l-1) then lm1=(l-1)*l+(m-mu)+1 t3=t2*clebgor(l-1,1,l,m-mu,mu,m) i=npi+lm; i1=npi+lm1 do ir=iro,nr gzfmt(i1,j)=gzfmt(i1,j)+t3*(drmt(i)+dble(l+1)*ri(ir)*zfmt(i)) i=i+lmmaxo; i1=i1+lmmaxo end do end if end do end do end do !---------------------------------------------------! ! convert from spherical to Cartesian basis ! !---------------------------------------------------! ! note that the gradient transforms as a covariant vector, i.e. y -> -y i=0 do ir=1,nri do lm=1,lmmaxi i=i+1 z1=gzfmt(i,1) gzfmt(i,1)=c1*(z1-gzfmt(i,2)) z1=c1*(z1+gzfmt(i,2)) gzfmt(i,2)=cmplx(aimag(z1),-dble(z1),8) end do end do do ir=iro,nr do lm=1,lmmaxo i=i+1 z1=gzfmt(i,1) gzfmt(i,1)=c1*(z1-gzfmt(i,2)) z1=c1*(z1+gzfmt(i,2)) gzfmt(i,2)=cmplx(aimag(z1),-dble(z1),8) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/eveqnfv.f900000644000000000000000000000013214061636517014716 xustar0030 mtime=1623670095.174102252 30 atime=1623670093.922103414 30 ctime=1623670095.174102252 elk-7.2.42/src/eveqnfv.f900000644002504400250440000000463014061636517016756 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: eveqnfv ! !INTERFACE: subroutine eveqnfv(nmatp,ngp,igpig,vpc,vgpc,apwalm,evalfv,evecfv) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! nmatp : order of overlap and Hamiltonian matrices (in,integer) ! ngp : number of G+p-vectors (in,integer) ! igpig : index from G+p-vectors to G-vectors (in,integer(ngkmax)) ! vpc : p-vector in Cartesian coordinates (in,real(3)) ! vgpc : G+p-vectors in Cartesian coordinates (in,real(3,ngkmax)) ! apwalm : APW matching coefficients ! (in,complex(ngkmax,apwordmax,lmmaxapw,natmtot)) ! evalfv : first-variational eigenvalues (out,real(nstfv)) ! evecfv : first-variational eigenvectors (out,complex(nmatmax,nstfv)) ! !DESCRIPTION: ! Solves the eigenvalue equation, ! $$ (H-\epsilon O)b=0, $$ ! for the all the first-variational states of the input $p$-point. ! ! !REVISION HISTORY: ! Created March 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nmatp,ngp,igpig(ngkmax) real(8), intent(in) :: vpc(3),vgpc(3,ngkmax) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) real(8), intent(out) :: evalfv(nstfv) complex(8), intent(out) :: evecfv(nmatmax,nstfv) ! local variables integer nthd real(8) ts0,ts1 ! allocatable arrays complex(8), allocatable :: h(:,:),o(:,:) !-----------------------------------------------! ! Hamiltonian and overlap matrix set up ! !-----------------------------------------------! call timesec(ts0) allocate(h(nmatp,nmatp),o(nmatp,nmatp)) call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP SECTION ! Hamiltonian call hmlfv(nmatp,ngp,igpig,vgpc,apwalm,h) !$OMP SECTION ! overlap call olpfv(nmatp,ngp,igpig,apwalm,o) !$OMP END PARALLEL SECTIONS call freethd(nthd) call timesec(ts1) !$OMP ATOMIC timemat=timemat+ts1-ts0 !---------------------------------------! ! solve the eigenvalue equation ! !---------------------------------------! if (tefvr) then ! system has inversion symmetry: use real symmetric matrix eigen solver call eveqnfvr(nmatp,ngp,vpc,h,o,evalfv,evecfv) else ! no inversion symmetry: use complex Hermitian matrix eigen solver call eveqnfvz(nmatp,h,o,evalfv,evecfv) end if deallocate(h,o) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/symdmat.f900000644000000000000000000000013014061636517014720 xustar0029 mtime=1623670095.17510225 30 atime=1623670093.924103412 29 ctime=1623670095.17510225 elk-7.2.42/src/symdmat.f900000644002504400250440000000357714061636517016773 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine symdmat(lmax,ld,dmat) use modmain implicit none ! arguments integer, intent(in) :: lmax integer, intent(in) :: ld complex(8), intent(inout) :: dmat(ld,nspinor,ld,nspinor,natmtot) ! local variables integer is,ia,ja,ias,jas integer isym,lspl,lspn,lmmax real(8) t1 ! automatic arrays logical done(natmmax) ! allocatable arrays complex(8), allocatable :: dm(:,:,:,:,:) lmmax=(lmax+1)**2 ! allocate local arrays allocate(dm(ld,nspinor,ld,nspinor,natmmax)) t1=1.d0/dble(nsymcrys) do is=1,nspecies ! make copy of the density matrices do ia=1,natoms(is) ias=idxas(ia,is) dm(1:lmmax,:,1:lmmax,:,ia)=dmat(1:lmmax,:,1:lmmax,:,ias) end do done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) dmat(:,:,:,:,ias)=0.d0 do isym=1,nsymcrys lspl=lsplsymc(isym) lspn=lspnsymc(isym) ! equivalent atom index (symmetry rotates atom ja into atom ia) ja=ieqatom(ia,is,isym) call rotdmat(symlatc(:,:,lspl),symlatc(:,:,lspn),lmax,nspinor,ld, & dm(:,:,:,:,ja),dmat(:,:,:,:,ias)) ! end loop over crystal symmetries end do ! normalise dmat(:,:,:,:,ias)=t1*dmat(:,:,:,:,ias) done(ia)=.true. ! rotate into equivalent atoms do isym=1,nsymcrys ja=ieqatom(ia,is,isym) if (.not.done(ja)) then jas=idxas(ja,is) ! inverse symmetry (which rotates atom ia into atom ja) lspl=isymlat(lsplsymc(isym)) lspn=isymlat(lspnsymc(isym)) dmat(:,:,:,:,jas)=0.d0 call rotdmat(symlatc(:,:,lspl),symlatc(:,:,lspn),lmax,nspinor,ld, & dmat(:,:,:,:,ias),dmat(:,:,:,:,jas)) done(ja)=.true. end if end do ! end loop over atoms and species end do end do deallocate(dm) end subroutine elk-7.2.42/src/PaxHeaders.21776/z2mm.f900000644000000000000000000000013114061636517014130 xustar0030 mtime=1623670095.177102249 29 atime=1623670093.92610341 30 ctime=1623670095.177102249 elk-7.2.42/src/z2mm.f900000644002504400250440000000155314061636517016172 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: z2mm ! !INTERFACE: pure subroutine z2mm(a,b,c) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix 1 (in,complex(2,2)) ! b : input matrix 2 (in,complex(2,2)) ! c : output matrix (out,complex(2,2)) ! !DESCRIPTION: ! Multiplies two complex $2\times 2$ matrices. Note that the output matrix ! cannot be one of the input matrices. ! ! !REVISION HISTORY: ! Created October 2007 (JKD) !EOP !BOC implicit none ! arguments complex(8), intent(in) :: a(2,2),b(2,2) complex(8), intent(out) :: c(2,2) c(1,1)=a(1,1)*b(1,1)+a(1,2)*b(2,1) c(2,1)=a(2,1)*b(1,1)+a(2,2)*b(2,1) c(1,2)=a(1,1)*b(1,2)+a(1,2)*b(2,2) c(2,2)=a(2,1)*b(1,2)+a(2,2)*b(2,2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/z2mctm.f900000644000000000000000000000013214061636517014460 xustar0030 mtime=1623670095.178102248 30 atime=1623670093.927103409 30 ctime=1623670095.178102248 elk-7.2.42/src/z2mctm.f900000644002504400250440000000171514061636517016521 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: z2mctm ! !INTERFACE: pure subroutine z2mctm(a,b,c) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix 1 (in,complex(2,2)) ! b : input matrix 2 (in,complex(2,2)) ! c : output matrix (out,complex(2,2)) ! !DESCRIPTION: ! Multiplies the conjugate transpose of one complex $2\times 2$ matrix with ! another. Note that the output matrix cannot be one of the input matrices. ! ! !REVISION HISTORY: ! Created October 2007 (JKD) !EOP !BOC implicit none ! arguments complex(8), intent(in) :: a(2,2),b(2,2) complex(8), intent(out) :: c(2,2) c(1,1)=conjg(a(1,1))*b(1,1)+conjg(a(2,1))*b(2,1) c(2,1)=conjg(a(1,2))*b(1,1)+conjg(a(2,2))*b(2,1) c(1,2)=conjg(a(1,1))*b(1,2)+conjg(a(2,1))*b(2,2) c(2,2)=conjg(a(1,2))*b(1,2)+conjg(a(2,2))*b(2,2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/z2mmct.f900000644000000000000000000000013214061636517014460 xustar0030 mtime=1623670095.179102247 30 atime=1623670093.929103407 30 ctime=1623670095.179102247 elk-7.2.42/src/z2mmct.f900000644002504400250440000000170314061636517016516 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: z2mmct ! !INTERFACE: pure subroutine z2mmct(a,b,c) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix 1 (in,complex(2,2)) ! b : input matrix 2 (in,complex(2,2)) ! c : output matrix (out,complex(2,2)) ! !DESCRIPTION: ! Multiplies a $2\times 2$ matrix with the conjugate transpose of another. ! Note that the output matrix cannot be one of the input matrices. ! ! !REVISION HISTORY: ! Created October 2007 (JKD) !EOP !BOC implicit none ! arguments complex(8), intent(in) :: a(2,2),b(2,2) complex(8), intent(out) :: c(2,2) c(1,1)=a(1,1)*conjg(b(1,1))+a(1,2)*conjg(b(1,2)) c(2,1)=a(2,1)*conjg(b(1,1))+a(2,2)*conjg(b(1,2)) c(1,2)=a(1,1)*conjg(b(2,1))+a(1,2)*conjg(b(2,2)) c(2,2)=a(2,1)*conjg(b(2,1))+a(2,2)*conjg(b(2,2)) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/axangsu2.f900000644000000000000000000000013214061636517014774 xustar0030 mtime=1623670095.181102245 30 atime=1623670093.931103405 30 ctime=1623670095.181102245 elk-7.2.42/src/axangsu2.f900000644002504400250440000000246214061636517017035 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: axangsu2 subroutine axangsu2(v,th,su2) ! !INPUT/OUTPUT PARAMETERS: ! v : rotation axis vector (in,real(3)) ! th : rotation angle (in,real) ! su2 : SU(2) representation of rotation (out,complex(2,2)) ! !DESCRIPTION: ! Finds the complex ${\rm SU}(2)$ representation of a rotation defined by an ! axis vector $\hat{\bf v}$ and angle $\theta$. The spinor rotation matrix is ! given explicitly by ! $$ R^{1/2}(\hat{\bf v},\theta)=I\cos\frac{\theta}{2} ! -i(\hat{\bf v}\cdot\vec{\sigma})\sin\frac{\theta}{2}. $$ ! ! !REVISION HISTORY: ! Created August 2007 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: v(3),th complex(8), intent(out) :: su2(2,2) ! local variables real(8) x,y,z,cs,sn,t1 x=v(1); y=v(2); z=v(3) t1=sqrt(x**2+y**2+z**2) if (t1.lt.1.d-8) then write(*,*) write(*,'("Error(axangsu2): zero length axis vector")') write(*,*) stop end if ! normalise the vector t1=1.d0/t1 x=x*t1; y=y*t1; z=z*t1 cs=cos(0.5d0*th) sn=sin(0.5d0*th) su2(1,1)=cmplx(cs,-z*sn,8) su2(2,1)=cmplx(y*sn,-x*sn,8) su2(1,2)=cmplx(-y*sn,-x*sn,8) su2(2,2)=cmplx(cs,z*sn,8) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gradzvcln.f900000644000000000000000000000013214061636517015236 xustar0030 mtime=1623670095.182102244 30 atime=1623670093.933103403 30 ctime=1623670095.182102244 elk-7.2.42/src/gradzvcln.f900000644002504400250440000000140314061636517017271 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gradzvcln(is,gzfmt) use modmain implicit none ! arguments integer, intent(in) :: is complex(8), intent(out) :: gzfmt(npmtmax,3) ! local variables integer nr,nri,ir,i ! automatic arrays complex(8) zvclmt(npmtmax) nr=nrmt(is) nri=nrmti(is) ! convert nuclear Coulomb potential to complex spherical harmonics expansion zvclmt(1:npmt(is))=0.d0 i=1 do ir=1,nri zvclmt(i)=vcln(ir,is) i=i+lmmaxi end do do ir=nri+1,nr zvclmt(i)=vcln(ir,is) i=i+lmmaxo end do ! compute the gradient of the potential call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),zvclmt,npmtmax,gzfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/gentpmae.f900000644000000000000000000000013214061636517015044 xustar0030 mtime=1623670095.184102242 30 atime=1623670093.934103402 30 ctime=1623670095.184102242 elk-7.2.42/src/gentpmae.f900000644002504400250440000000355314061636517017107 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gentpmae use modmain implicit none ! local variables integer na,n,i1,i2,i3,i integer isym,lspl real(8) v1(3),v2(3),t1 ! allocatable arrays real(8), allocatable :: vp(:,:) if (allocated(tpmae)) deallocate(tpmae) select case(npmae0) case(4:) ! distribute points evenly on a sphere npmae=npmae0 allocate(tpmae(2,npmae)) call sphcover(npmae,tpmae) case(-4:-1) ! use symmetry reduced cardinal directions na=abs(npmae0) n=(2*na+1)**3 allocate(vp(3,n)) npmae=0 do i1=-na,na v1(1)=dble(i1) do i2=-na,na v1(2)=dble(i2) do i3=-na,na v1(3)=dble(i3) if ((i1.eq.0).and.(i2.eq.0).and.(i3.eq.0)) cycle do isym=1,nsymcrys lspl=lsplsymc(isym) v2(:)=symlat(:,1,lspl)*v1(1) & +symlat(:,2,lspl)*v1(2) & +symlat(:,3,lspl)*v1(3) do i=1,npmae t1=abs(vp(1,i)-v2(1))+abs(vp(2,i)-v2(2))+abs(vp(3,i)-v2(3)) if (t1.lt.epslat) goto 10 end do end do npmae=npmae+1 vp(:,npmae)=v1(:) 10 continue end do end do end do ! convert vectors to spherical coordinates allocate(tpmae(2,npmae)) do i=1,npmae call sphcrd(vp(:,i),t1,tpmae(:,i)) end do deallocate(vp) case(2) ! use x- and z-directions npmae=2 allocate(tpmae(2,npmae)) tpmae(1,1)=pi/2.d0 tpmae(2,1)=0.d0 tpmae(1,2)=0.d0 tpmae(2,2)=0.d0 case(3) ! use x-, y- and z-directions npmae=3 allocate(tpmae(2,npmae)) tpmae(1,1)=pi/2.d0 tpmae(2,1)=0.d0 tpmae(1,2)=pi/2.d0 tpmae(2,2)=pi/2.d0 tpmae(1,3)=0.d0 tpmae(2,3)=0.d0 case default write(*,*) write(*,'("Error(gentpmae): invalid npmae : ",I8)') npmae0 write(*,*) stop end select end subroutine elk-7.2.42/src/PaxHeaders.21776/zfcmtwr.f900000644000000000000000000000013214061636517014740 xustar0030 mtime=1623670095.185102241 30 atime=1623670093.936103401 30 ctime=1623670095.185102241 elk-7.2.42/src/zfcmtwr.f900000644002504400250440000000134714061636517017002 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine zfcmtwr(nr,nri,wr,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) complex(8), intent(inout) :: zfmt(*) ! local variables integer n,ir,i real(8) t1 i=1 if (lmaxi.eq.1) then do ir=1,nri zfmt(i:i+3)=(pi*wr(ir))*zfmt(i:i+3) i=i+4 end do else t1=fourpi/dble(lmmaxi) n=lmmaxi-1 do ir=1,nri zfmt(i:i+n)=(t1*wr(ir))*zfmt(i:i+n) i=i+lmmaxi end do end if t1=fourpi/dble(lmmaxo) n=lmmaxo-1 do ir=nri+1,nr zfmt(i:i+n)=(t1*wr(ir))*zfmt(i:i+n) i=i+lmmaxo end do end subroutine elk-7.2.42/src/PaxHeaders.21776/projsbf.f900000644000000000000000000000013014061636517014707 xustar0029 mtime=1623670095.18610224 30 atime=1623670093.938103399 29 ctime=1623670095.18610224 elk-7.2.42/src/projsbf.f900000644002504400250440000000372014061636517016750 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine projsbf use modmain implicit none ! local variables integer idm,is,ias,np real(8) t1 ! allocatable arrays real(8), allocatable :: rfmt(:,:),rfir(:) real(8), allocatable :: grfmt(:,:,:),grfir(:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) allocate(rfmt(npmtmax,natmtot),rfir(ngtot)) allocate(grfmt(npmtmax,natmtot,3),grfir(ngtot,3)) allocate(zrhomt(npmtmax,natmtot),zrhoir(ngtot)) allocate(zvclmt(npmtmax,natmtot),zvclir(ngtot)) ! compute the divergence of B_xc rfmt(:,:)=0.d0 rfir(:)=0.d0 do idm=1,3 call gradrf(bxcmt(:,:,idm),bxcir(:,idm),grfmt,grfir) do ias=1,natmtot is=idxis(ias) np=npmt(is) rfmt(1:np,ias)=rfmt(1:np,ias)+grfmt(1:np,ias,idm) end do rfir(:)=rfir(:)+grfir(:,idm) end do ! convert real muffin-tin divergence to complex spherical harmonic expansion do ias=1,natmtot is=idxis(ias) call rtozfmt(nrmt(is),nrmti(is),rfmt(:,ias),zrhomt(:,ias)) end do ! store real interstitial divergence in a complex array zrhoir(:)=rfir(:) ! solve the complex Poisson's equation call genzvclmt(nrmt,nrmti,nrmtmax,rlmt,wprmt,npmtmax,zrhomt,zvclmt) call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gc,gclg, & ngvec,jlgrmt,ylmg,sfacg,zrhoir,npmtmax,zvclmt,zvclir) ! convert complex muffin-tin potential to real spherical harmonic expansion do ias=1,natmtot is=idxis(ias) call ztorfmt(nrmt(is),nrmti(is),zvclmt(:,ias),rfmt(:,ias)) end do ! store complex interstitial potential in real array rfir(:)=dble(zvclir(:)) ! compute the gradient call gradrf(rfmt,rfir,grfmt,grfir) ! add gradient over 4*pi to existing B_xc t1=1.d0/fourpi bxcmt(:,:,:)=bxcmt(:,:,:)+t1*grfmt(:,:,:) bxcir(:,:)=bxcir(:,:)+t1*grfir(:,:) deallocate(rfmt,rfir,grfmt,grfir) deallocate(zrhomt,zrhoir,zvclmt,zvclir) end subroutine elk-7.2.42/src/PaxHeaders.21776/splinew.f900000644000000000000000000000013214061636517014725 xustar0030 mtime=1623670095.188102238 30 atime=1623670093.940103397 30 ctime=1623670095.188102238 elk-7.2.42/src/splinew.f900000644002504400250440000000265714061636517016774 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine splinew(n,wc,f,cf) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wc(4,3,n),f(n) real(8), intent(out) :: cf(3,n) ! local variables integer i real(8) f1,f2,f3,f4 f1=f(1); f2=f(2); f3=f(3); f4=f(4) cf(1,1)=wc(1,1,1)*f1+wc(2,1,1)*f2+wc(3,1,1)*f3+wc(4,1,1)*f4 cf(2,1)=wc(1,2,1)*f1+wc(2,2,1)*f2+wc(3,2,1)*f3+wc(4,2,1)*f4 cf(3,1)=wc(1,3,1)*f1+wc(2,3,1)*f2+wc(3,3,1)*f3+wc(4,3,1)*f4 cf(1,2)=wc(1,1,2)*f1+wc(2,1,2)*f2+wc(3,1,2)*f3+wc(4,1,2)*f4 cf(2,2)=wc(1,2,2)*f1+wc(2,2,2)*f2+wc(3,2,2)*f3+wc(4,2,2)*f4 cf(3,2)=wc(1,3,2)*f1+wc(2,3,2)*f2+wc(3,3,2)*f3+wc(4,3,2)*f4 !$OMP SIMD LASTPRIVATE(f1,f2,f3,f4) do i=3,n-2 f1=f(i-1); f2=f(i); f3=f(i+1); f4=f(i+2) cf(1,i)=wc(1,1,i)*f1+wc(2,1,i)*f2+wc(3,1,i)*f3+wc(4,1,i)*f4 cf(2,i)=wc(1,2,i)*f1+wc(2,2,i)*f2+wc(3,2,i)*f3+wc(4,2,i)*f4 cf(3,i)=wc(1,3,i)*f1+wc(2,3,i)*f2+wc(3,3,i)*f3+wc(4,3,i)*f4 end do i=n-1 cf(1,i)=wc(1,1,i)*f1+wc(2,1,i)*f2+wc(3,1,i)*f3+wc(4,1,i)*f4 cf(2,i)=wc(1,2,i)*f1+wc(2,2,i)*f2+wc(3,2,i)*f3+wc(4,2,i)*f4 cf(3,i)=wc(1,3,i)*f1+wc(2,3,i)*f2+wc(3,3,i)*f3+wc(4,3,i)*f4 cf(1,n)=wc(1,1,n)*f1+wc(2,1,n)*f2+wc(3,1,n)*f3+wc(4,1,n)*f4 cf(2,n)=wc(1,2,n)*f1+wc(2,2,n)*f2+wc(3,2,n)*f3+wc(4,2,n)*f4 cf(3,n)=wc(1,3,n)*f1+wc(2,3,n)*f2+wc(3,3,n)*f3+wc(4,3,n)*f4 end subroutine elk-7.2.42/src/PaxHeaders.21776/gradzf.f900000644000000000000000000000013214061636517014521 xustar0030 mtime=1623670095.189102238 30 atime=1623670093.941103396 30 ctime=1623670095.189102238 elk-7.2.42/src/gradzf.f900000644002504400250440000000250014061636517016553 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gradzf(zfmt,zfir,gzfmt,gzfir) use modmain use modomp implicit none ! arguments complex(8), intent(in) :: zfmt(npmtmax,natmtot),zfir(ngtot) complex(8), intent(out) :: gzfmt(npmtmax,natmtot,3),gzfir(ngtot,3) ! local variables integer is,ias,ld,i integer ig,ifg,nthd complex(8) z1 ! allocatable arrays complex(8), allocatable :: zfft(:) ! muffin-tin gradient ld=npmtmax*natmtot call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call gradzfmt(nrmt(is),nrmti(is),rlmt(:,-1,is),wcrmt(:,:,is),zfmt(:,ias),ld, & gzfmt(1,ias,1)) end do !$OMP END PARALLEL DO call freethd(nthd) ! interstitial gradient allocate(zfft(ngtot)) call zcopy(ngtot,zfir,1,zfft,1) call zfftifc(3,ngridg,-1,zfft) call holdthd(3,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ig,ifg,z1) & !$OMP NUM_THREADS(nthd) do i=1,3 gzfir(:,i)=0.d0 do ig=1,ngvec ifg=igfft(ig) z1=zfft(ifg) gzfir(ifg,i)=vgc(i,ig)*cmplx(-aimag(z1),dble(z1),8) end do call zfftifc(3,ngridg,1,gzfir(:,i)) end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(zfft) end subroutine elk-7.2.42/src/PaxHeaders.21776/mixerifc.f900000644000000000000000000000013214061636517015052 xustar0030 mtime=1623670095.191102236 30 atime=1623670093.943103394 30 ctime=1623670095.191102236 elk-7.2.42/src/mixerifc.f900000644002504400250440000000306014061636517017106 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine mixerifc(mtype,n,v,dv,nwork,work) use modmain implicit none ! arguments integer, intent(in) :: mtype,n real(8), intent(inout) :: v(n) real(8), intent(out) :: dv integer, intent(inout) :: nwork real(8), intent(inout) :: work(*) ! local variables select case(mtype) case(0) ! linear mixing if (nwork.le.0) then nwork=n return end if call mixlinear(iscl,amixpm(1),n,v,work,dv) case(1) ! adaptive linear mixing if (nwork.le.0) then nwork=3*n return end if call mixadapt(iscl,amixpm(1),amixpm(2),n,v,work,work(n+1),work(2*n+1),dv) case(3) ! Broyden mixing if (nwork.le.0) then nwork=(4+2*mixsdb)*n+mixsdb**2 return end if call mixbroyden(iscl,n,mixsdb,broydpm(1),broydpm(2),v,work,work(2*n+1), & work(4*n+1),work((4+mixsdb)*n+1),work((4+2*mixsdb)*n+1),dv) case default write(*,*) write(*,'("Error(mixerifc): mtype not defined : ",I8)') mtype write(*,*) stop end select end subroutine subroutine getmixdata(mtype,mixdescr) implicit none ! arguments integer, intent(in) :: mtype character(*), intent(out) :: mixdescr select case(mtype) case(0) mixdescr='Linear mixing' case(1) mixdescr='Adaptive linear mixing' case(3) mixdescr='Broyden mixing, J. Phys. A: Math. Gen. 17, L317 (1984)' case default write(*,*) write(*,'("Error(getmixdata): mixtype not defined : ",I8)') mtype write(*,*) stop end select end subroutine elk-7.2.42/src/PaxHeaders.21776/genvsig.f900000644000000000000000000000013214061636517014706 xustar0030 mtime=1623670095.192102235 30 atime=1623670093.945103392 30 ctime=1623670095.192102235 elk-7.2.42/src/genvsig.f900000644002504400250440000000164514061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genvsig ! !INTERFACE: subroutine genvsig ! !USES: use modmain ! !DESCRIPTION: ! Generates the Fourier transform of the Kohn-Sham effective potential in the ! interstitial region. The potential is first multiplied by the characteristic ! function which zeros it in the muffin-tins. See routine {\tt gencfun}. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) !EOP !BOC implicit none ! allocatable arrays complex(8), allocatable :: zfft(:) allocate(zfft(ngtot)) ! multiply potential by characteristic function in real-space zfft(:)=vsir(:)*cfunir(:) ! Fourier transform to G-space call zfftifc(3,ngridg,-1,zfft) ! store in global array vsig(1:ngvec)=zfft(igfft(1:ngvec)) deallocate(zfft) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/timesec.f900000644000000000000000000000013214061636517014675 xustar0030 mtime=1623670095.193102234 30 atime=1623670093.946103391 30 ctime=1623670095.193102234 elk-7.2.42/src/timesec.f900000644002504400250440000000122214061636517016727 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: timesec ! !INTERFACE: subroutine timesec(ts) ! !INPUT/OUTPUT PARAMETERS: ! ts : system time in seconds (out,real) ! !DESCRIPTION: ! Outputs the system time in seconds. ! ! !REVISION HISTORY: ! Created September 2010 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(out) :: ts ! local variables integer count,count_rate call system_clock(count=count,count_rate=count_rate) ts=dble(count)/dble(count_rate) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zfmtftoc.f900000644000000000000000000000013214061636517015100 xustar0030 mtime=1623670095.195102232 30 atime=1623670093.948103389 30 ctime=1623670095.195102232 elk-7.2.42/src/zfmtftoc.f900000644002504400250440000000123514061636517017136 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine zfmtftoc(nrc,nrci,zfmt,zfcmt) use modmain implicit none ! arguments integer, intent(in) :: nrc,nrci complex(8), intent(in) :: zfmt(*) complex(8), intent(out) :: zfcmt(*) ! local variables integer irc,i,j,m,n i=1 j=1 m=lmmaxi*lradstp n=lmmaxi-1 do irc=1,nrci zfcmt(i:i+n)=zfmt(j:j+n) i=i+lmmaxi j=j+m end do j=j+(lradstp-1)*(lmmaxo-lmmaxi) m=lmmaxo*lradstp n=lmmaxo-1 do irc=nrci+1,nrc zfcmt(i:i+n)=zfmt(j:j+n) i=i+lmmaxo j=j+m end do end subroutine elk-7.2.42/src/PaxHeaders.21776/ztorfmt.f900000644000000000000000000000013214061636517014751 xustar0030 mtime=1623670095.196102231 30 atime=1623670093.950103388 30 ctime=1623670095.196102231 elk-7.2.42/src/ztorfmt.f900000644002504400250440000000423314061636517017010 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine ztorfmt(nr,nri,zfmt,rfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri complex(8), intent(in) :: zfmt(*) real(8), intent(out) :: rfmt(*) ! local variables integer i call ztorflmn(lmaxi,nri,lmmaxi,zfmt,rfmt) i=lmmaxi*nri+1 call ztorflmn(lmaxo,nr-nri,lmmaxo,zfmt(i),rfmt(i)) return contains !BOP ! !ROUTINE: ztorflmn ! !INTERFACE: pure subroutine ztorflmn(lmax,n,ld,zflm,rflm) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! n : number of functions to convert (in,integer) ! ld : leading dimension (in,integer) ! zflm : coefficients of complex spherical harmonic expansion ! (in,complex(ld,n)) ! rflm : coefficients of real spherical harmonic expansion (out,real(ld,n)) ! !DESCRIPTION: ! Converts a real function, $z_{lm}$, expanded in terms of complex spherical ! harmonics into a real spherical harmonic expansion, $r_{lm}$: ! $$ r_{lm}=\begin{cases}\frac{1}{\sqrt{2}}\Re(z_{lm}+(-1)^m z_{l-m}) & m>0 \\ ! \frac{1}{\sqrt{2}}\Im(-z_{lm}+(-1)^m z_{l-m}) & m<0 \\ ! \Re(z_{lm}) & m=0 \end{cases}\;. $$ ! See routine {\tt genrlm}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax,n,ld complex(8), intent(in) :: zflm(ld,n) real(8), intent(out) :: rflm(ld,n) ! local variables integer l,m,lm1,lm2 ! real constant 1/sqrt(2) real(8), parameter :: c1=0.7071067811865475244d0 lm1=0 do l=0,lmax lm2=lm1+2*(l+1) do m=-l,-1 lm1=lm1+1 lm2=lm2-1 if (mod(m,2).ne.0) then rflm(lm1,:)=-c1*(aimag(zflm(lm1,:))+aimag(zflm(lm2,:))) else rflm(lm1,:)=c1*(aimag(zflm(lm2,:))-aimag(zflm(lm1,:))) end if end do lm1=lm1+1 lm2=lm2-1 rflm(lm1,:)=dble(zflm(lm1,:)) do m=1,l lm1=lm1+1 lm2=lm2-1 if (mod(m,2).ne.0) then rflm(lm1,:)=c1*(dble(zflm(lm1,:))-dble(zflm(lm2,:))) else rflm(lm1,:)=c1*(dble(zflm(lm1,:))+dble(zflm(lm2,:))) end if end do end do end subroutine !EOC end subroutine elk-7.2.42/src/PaxHeaders.21776/zfmtctof.f900000644000000000000000000000013214061636517015100 xustar0030 mtime=1623670095.198102229 30 atime=1623670093.951103387 30 ctime=1623670095.198102229 elk-7.2.42/src/zfmtctof.f900000644002504400250440000000434714061636517017145 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine zfmtctof(zfmt) use modmain use modomp implicit none ! arguments complex(8), intent(inout) :: zfmt(npmtmax,natmtot) ! local variables integer is,ias,lm integer nr,nri,nro integer iro,ir,npi integer nrc,nrci,nrco integer irco,irc,npci integer i,nthd ! automatic arrays real(8) fi1(nrcmtmax),fi2(nrcmtmax) real(8) fo1(nrmtmax),fo2(nrmtmax) complex(8) zfmt1(npcmtmax) if (lradstp.eq.1) return call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt1,fi1,fi2,fo1,fo2) & !$OMP PRIVATE(is,nr,nri,nro,iro,npi) & !$OMP PRIVATE(nrc,nrci,nrco,irco,npci) & !$OMP PRIVATE(lm,i,irc,ir) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) nro=nr-nri iro=nri+1 npi=npmti(is) nrc=nrcmt(is) nrci=nrcmti(is) nrco=nrc-nrci irco=nrci+1 npci=npcmti(is) ! copy the input function call zcopy(npcmt(is),zfmt(:,ias),1,zfmt1,1) ! interpolate up to lmaxi over entire muffin-tin do lm=1,lmmaxi i=lm do irc=1,nrci fi1(irc)=dble(zfmt1(i)); fi2(irc)=aimag(zfmt1(i)) i=i+lmmaxi end do do irc=irco,nrc fi1(irc)=dble(zfmt1(i)); fi2(irc)=aimag(zfmt1(i)) i=i+lmmaxo end do call rfinterp(nrc,rcmt(:,is),wcrcmt(:,:,is),fi1,nr,rlmt(:,1,is),fo1) call rfinterp(nrc,rcmt(:,is),wcrcmt(:,:,is),fi2,nr,rlmt(:,1,is),fo2) i=lm do ir=1,nri zfmt(i,ias)=cmplx(fo1(ir),fo2(ir),8) i=i+lmmaxi end do do ir=iro,nr zfmt(i,ias)=cmplx(fo1(ir),fo2(ir),8) i=i+lmmaxo end do end do ! interpolate up to lmaxo on outer part of muffin-tin do lm=lmmaxi+1,lmmaxo i=npci+lm do irc=irco,nrc fi1(irc)=dble(zfmt1(i)); fi2(irc)=aimag(zfmt1(i)) i=i+lmmaxo end do call rfinterp(nrco,rcmt(irco,is),wcrcmt(:,irco,is),fi1(irco),nro, & rsp(iro,is),fo1(iro)) call rfinterp(nrco,rcmt(irco,is),wcrcmt(:,irco,is),fi2(irco),nro, & rsp(iro,is),fo2(iro)) i=npi+lm do ir=iro,nr zfmt(i,ias)=cmplx(fo1(ir),fo2(ir),8) i=i+lmmaxo end do end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnfvz.f900000644000000000000000000000013214061636517015110 xustar0030 mtime=1623670095.199102228 30 atime=1623670093.953103385 30 ctime=1623670095.199102228 elk-7.2.42/src/eveqnfvz.f900000644002504400250440000000304514061636517017147 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnfvz(nmatp,h,o,evalfv,evecfv) use modmain use modomp implicit none ! arguments integer, intent(in) :: nmatp complex(8), intent(in) :: h(*),o(*) real(8), intent(out) :: evalfv(nstfv) complex(8), intent(out) :: evecfv(nmatmax,nstfv) ! local variables integer lwork,info integer m,i,nthd,nts real(8) vl,vu real(8) ts0,ts1 ! automatic arrays integer iwork(5*nmatp),ifail(nmatp) ! allocatable arrays real(8), allocatable :: w(:),rwork(:) complex(8), allocatable :: work(:) call timesec(ts0) allocate(w(nmatp),rwork(7*nmatp)) lwork=2*nmatp allocate(work(lwork)) ! enable MKL parallelism call holdthd(maxthdmkl,nthd) nts=mkl_set_num_threads_local(nthd) ! diagonalise the matrix call zhegvx(1,'V','I','U',nmatp,h,nmatp,o,nmatp,vl,vu,1,nstfv,evaltol,m,w, & evecfv,nmatmax,work,lwork,rwork,iwork,ifail,info) nts=mkl_set_num_threads_local(0) call freethd(nthd) if (info.ne.0) then write(*,*) write(*,'("Error(eveqnfvz): diagonalisation failed")') write(*,'(" ZHEGVX returned INFO = ",I8)') info if (info.gt.nmatp) then i=info-nmatp write(*,'(" The leading minor of the overlap matrix of order ",I8)') i write(*,'(" is not positive definite")') write(*,'(" Order of overlap matrix : ",I8)') nmatp end if write(*,*) stop end if evalfv(1:nstfv)=w(1:nstfv) deallocate(w,rwork,work) call timesec(ts1) !$OMP ATOMIC timefv=timefv+ts1-ts0 end subroutine elk-7.2.42/src/PaxHeaders.21776/energynn.f900000644000000000000000000000013214061636517015071 xustar0030 mtime=1623670095.200102227 30 atime=1623670093.955103383 30 ctime=1623670095.200102227 elk-7.2.42/src/energynn.f900000644002504400250440000000225714061636517017134 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine energynn use modmain implicit none ! local variables integer is,ias,i integer nr,nri,ir real(8) t1 ! allocatable arrays complex(8), allocatable :: zvclmt(:,:),zvclir(:),zrhoir(:) allocate(zvclmt(npmtmax,natmtot)) ! generate the nuclear monopole potentials do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) zvclmt(1:npmt(is),ias)=0.d0 i=1 do ir=1,nri zvclmt(i,ias)=vcln(ir,is) i=i+lmmaxi end do do ir=nri+1,nr zvclmt(i,ias)=vcln(ir,is) i=i+lmmaxo end do end do allocate(zrhoir(ngtot),zvclir(ngtot)) ! set the interstitial density to zero zrhoir(:)=0.d0 ! solve the complex Poisson's equation call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gc,gclg, & ngvec,jlgrmt,ylmg,sfacg,zrhoir,npmtmax,zvclmt,zvclir) ! compute the nuclear-nuclear energy engynn=0.d0 do ias=1,natmtot is=idxis(ias) t1=(dble(zvclmt(1,ias))-vcln(1,is))*y00 engynn=engynn+spzn(is)*t1 end do engynn=0.5d0*engynn deallocate(zvclmt,zvclir,zrhoir) end subroutine elk-7.2.42/src/PaxHeaders.21776/gaunt.f900000644000000000000000000000013214061636517014362 xustar0030 mtime=1623670095.202102225 30 atime=1623670093.957103381 30 ctime=1623670095.202102225 elk-7.2.42/src/gaunt.f900000644002504400250440000000413014061636517016415 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gaunt ! !INTERFACE: real(8) function gaunt(l1,l2,l3,m1,m2,m3) ! !INPUT/OUTPUT PARAMETERS: ! l1, l2, l3 : angular momentum quantum numbers (in,integer) ! m1, m2, m3 : magnetic quantum numbers (in,integer) ! !DESCRIPTION: ! Returns the Gaunt coefficient given by ! $$ \langle Y^{l_1}_{m_1}|Y^{l_2}_{m_2}|Y^{l_3}_{m_3} \rangle ! = (-1)^{m_1}\left[\frac{(2l_1+1)(2l_2+1)(2l_3+1)}{4\pi} \right] ! ^{\frac{1}{2}} ! \begin{pmatrix} l_1 & l_2 & l_3 \\ 0 & 0 & 0 \end{pmatrix} ! \begin{pmatrix} l_1 & l_2 & l_3 \\ -m_1 & m_2 & m_3 \end{pmatrix}. $$ ! Suitable for $l_i$ less than 50. ! ! !REVISION HISTORY: ! Created November 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: l1,l2,l3 integer, intent(in) :: m1,m2,m3 ! local variables integer j,j1,j2,j3,jh real(8) t1 ! real constant 1/sqrt(4*pi) real(8), parameter :: c1=0.28209479177387814347d0 ! external functions real(8), external :: wigner3j,factnm,factr if ((l1.lt.0).or.(l2.lt.0).or.(l3.lt.0).or.(abs(m1).gt.l1).or.(abs(m2).gt.l2) & .or.(abs(m3).gt.l3)) then write(*,*) write(*,'("Error(gaunt): non-physical arguments :")') write(*,'("l1 = ",I8," l2 = ",I8," l3 = ",I8)') l1,l2,l3 write(*,'("m1 = ",I8," m2 = ",I8," m3 = ",I8)') m1,m2,m3 write(*,*) stop end if if ((l1.gt.50).or.(l2.gt.50).or.(l3.gt.50)) then write(*,*) write(*,'("Error(gaunt): angular momenta out of range : ",3I8)') l1,l2,l3 write(*,*) stop end if if (m1-m2-m3.ne.0) then gaunt=0.d0 return end if j1=l2-l1+l3 j2=l1-l2+l3 j3=l1+l2-l3 if ((j1.lt.0).or.(j2.lt.0).or.(j3.lt.0)) then gaunt=0.d0 return end if j=l1+l2+l3 if (mod(j,2).ne.0) then gaunt=0.d0 return end if jh=j/2 t1=sqrt(dble((2*l1+1)*(2*l2+1)*(2*l3+1))*factr(j1,j+1)*factnm(j2,1) & *factnm(j3,1)) t1=t1*factr(jh,jh-l1)/(factnm(jh-l2,1)*factnm(jh-l3,1)) gaunt=t1*c1*wigner3j(l1,l2,l3,-m1,m2,m3) if (mod(m1+jh,2).ne.0) gaunt=-gaunt end function !EOC elk-7.2.42/src/PaxHeaders.21776/potxcmt.f900000644000000000000000000000013114061636517014741 xustar0030 mtime=1623670095.203102225 29 atime=1623670093.95810338 30 ctime=1623670095.203102225 elk-7.2.42/src/potxcmt.f900000644002504400250440000002470114061636517017003 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potxcmt(tsh,ias,xctype_,rhomt_,magmt_,taumt_,exmt_,ecmt_,vxcmt_, & bxcmt_,wxcmt_) use modmain use modxcifc implicit none ! arguments logical, intent(in) :: tsh integer, intent(in) :: ias,xctype_(3) real(8), intent(in) :: rhomt_(npmtmax,natmtot),magmt_(npmtmax,natmtot,ndmag) real(8), intent(in) :: taumt_(npmtmax,natmtot,nspinor) real(8), intent(out) :: exmt_(npmtmax,natmtot),ecmt_(npmtmax,natmtot) real(8), intent(out) :: vxcmt_(npmtmax,natmtot),bxcmt_(npmtmax,natmtot,ndmag) real(8), intent(out) :: wxcmt_(npmtmax,natmtot) ! local variables integer ispn,idm,is integer nr,nri,n,i real(8) t0,t1,t2,t3,t4 ! allocatable arrays real(8), allocatable :: rho(:),rhoup(:),rhodn(:) real(8), allocatable :: gvrho(:,:),gvup(:,:),gvdn(:,:) real(8), allocatable :: grho(:),gup(:),gdn(:) real(8), allocatable :: g2rho(:),g2up(:),g2dn(:) real(8), allocatable :: g3rho(:),g3up(:),g3dn(:) real(8), allocatable :: grho2(:),gup2(:),gdn2(:),gupdn(:) real(8), allocatable :: ex(:),ec(:),vxc(:) real(8), allocatable :: vx(:),vxup(:),vxdn(:) real(8), allocatable :: vc(:),vcup(:),vcdn(:) real(8), allocatable :: mag(:,:),bxc(:,:),tau(:,:) real(8), allocatable :: dxdgr2(:),dxdgu2(:),dxdgd2(:),dxdgud(:) real(8), allocatable :: dcdgr2(:),dcdgu2(:),dcdgd2(:),dcdgud(:) real(8), allocatable :: dxdg2r(:),dxdg2u(:),dxdg2d(:) real(8), allocatable :: dcdg2r(:),dcdg2u(:),dcdg2d(:) real(8), allocatable :: wx(:),wxup(:),wxdn(:) real(8), allocatable :: wc(:),wcup(:),wcdn(:) is=idxis(ias) n=npmt(is) ! allocate local arrays allocate(rho(n),ex(n),ec(n),vxc(n)) if ((xcgrad.eq.3).or.(xcgrad.eq.4)) allocate(tau(n,nspinor)) if (spinpol) then allocate(mag(n,3),bxc(n,3)) end if if (spinpol) then allocate(rhoup(n),rhodn(n)) allocate(vxup(n),vxdn(n),vcup(n),vcdn(n)) if (xcgrad.eq.1) then allocate(grho(n),gup(n),gdn(n)) allocate(g2up(n),g2dn(n)) allocate(g3rho(n),g3up(n),g3dn(n)) else if (xcgrad.eq.2) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) allocate(dxdgu2(n),dxdgd2(n),dxdgud(n)) allocate(dcdgu2(n),dcdgd2(n),dcdgud(n)) else if (xcgrad.eq.3) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) else if (xcgrad.eq.4) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) allocate(dxdgu2(n),dxdgd2(n),dxdgud(n)) allocate(dcdgu2(n),dcdgd2(n),dcdgud(n)) allocate(dxdg2u(n),dxdg2d(n)) allocate(dcdg2u(n),dcdg2d(n)) allocate(wxup(n),wxdn(n),wcup(n),wcdn(n)) end if else allocate(vx(n),vc(n)) if (xcgrad.eq.1) then allocate(grho(n),g2rho(n),g3rho(n)) else if (xcgrad.eq.2) then allocate(g2rho(n),gvrho(n,3),grho2(n)) allocate(dxdgr2(n),dcdgr2(n)) else if (xcgrad.eq.3) then allocate(g2rho(n),gvrho(n,3),grho2(n)) else if (xcgrad.eq.4) then allocate(g2rho(n),gvrho(n,3),grho2(n)) allocate(dxdgr2(n),dcdgr2(n)) allocate(dxdg2r(n),dcdg2r(n)) allocate(wx(n),wc(n)) end if end if nr=nrmt(is) nri=nrmti(is) if (tsh) then ! convert the density to spherical coordinates call rbsht(nr,nri,rhomt_(:,ias),rho) else rho(1:n)=rhomt_(1:n,ias) end if ! convert tau to spherical coordinates if required if ((xcgrad.eq.3).or.(xcgrad.eq.4)) then do ispn=1,nspinor if (tsh) then call rbsht(nr,nri,taumt_(:,ias,ispn),tau(:,ispn)) else tau(1:n,ispn)=taumt_(1:n,ias,ispn) end if end do end if if (spinpol) then !------------------------! ! spin-polarised ! !------------------------! ! magnetisation in spherical coordinates do idm=1,ndmag if (tsh) then call rbsht(nr,nri,magmt_(:,ias,idm),mag(:,idm)) else mag(1:n,idm)=magmt_(1:n,ias,idm) end if end do ! use scaled spin exchange-correlation if required if (tssxc) mag(:,1:ndmag)=mag(:,1:ndmag)*sxcscf if (ncmag) then ! non-collinear (use Kubler's trick) if (xcgrad.eq.0) then ! LSDA do i=1,n ! compute rhoup=(rho+|m|)/2 and rhodn=(rho-|m|)/2 t0=rho(i) t1=sqrt(mag(i,1)**2+mag(i,2)**2+mag(i,3)**2) rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do else ! functionals which require gradients do i=1,n t0=rho(i) t1=sqrt(mag(i,1)**2+mag(i,2)**2+mag(i,3)**2+dncgga) rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do end if else ! collinear do i=1,n ! compute rhoup=(rho+m_z)/2 and rhodn=(rho-m_z)/2 t0=rho(i) t1=mag(i,1) rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do end if ! call the exchange-correlation interface routine if (xcgrad.le.0) then call xcifc(xctype_,n,tempa=swidth,rhoup=rhoup,rhodn=rhodn,ex=ex,ec=ec, & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (xcgrad.eq.1) then call ggamt_sp_1(is,n,rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,grho=grho,gup=gup,gdn=gdn, & g2up=g2up,g2dn=g2dn,g3rho=g3rho,g3up=g3up,g3dn=g3dn,ex=ex,ec=ec,vxup=vxup,& vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (xcgrad.eq.2) then call ggamt_sp_2a(is,n,rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,gup2=gup2,gdn2=gdn2, & gupdn=gupdn,ex=ex,ec=ec,vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn, & dxdgu2=dxdgu2,dxdgd2=dxdgd2,dxdgud=dxdgud,dcdgu2=dcdgu2,dcdgd2=dcdgd2, & dcdgud=dcdgud) call ggamt_sp_2b(is,n,g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2, & dxdgd2,dxdgud,dcdgu2,dcdgd2,dcdgud) else if (xcgrad.eq.3) then call ggamt_sp_2a(is,n,rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,c_tb09=c_tb09,rhoup=rhoup,rhodn=rhodn,g2up=g2up, & g2dn=g2dn,gup2=gup2,gdn2=gdn2,gupdn=gupdn,tauup=tau(:,1),taudn=tau(:,2), & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) ex(:)=0.d0; ec(:)=0.d0 else if (xcgrad.eq.4) then call ggamt_sp_2a(is,n,rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,g2up=g2up,g2dn=g2dn,gup2=gup2,& gdn2=gdn2,gupdn=gupdn,tauup=tau(:,1),taudn=tau(:,2),ex=ex,ec=ec,vxup=vxup,& vxdn=vxdn,vcup=vcup,vcdn=vcdn,dxdgu2=dxdgu2,dxdgd2=dxdgd2,dxdgud=dxdgud, & dcdgu2=dcdgu2,dcdgd2=dcdgd2,dcdgud=dcdgud,dxdg2u=dxdg2u,dxdg2d=dxdg2d, & dcdg2u=dcdg2u,dcdg2d=dcdg2d,wxup=wxup,wxdn=wxdn,wcup=wcup,wcdn=wcdn) call ggamt_sp_2b(is,n,g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2, & dxdgd2,dxdgud,dcdgu2,dcdgd2,dcdgud) wxup(:)=0.5d0*(wxup(:)+wxdn(:)+wcup(:)+wcdn(:)) if (tsh) then call rfsht(nr,nri,wxup,wxcmt_(:,ias)) else wxcmt_(1:n,ias)=wxup(1:n) end if end if ! hybrid functionals if (hybrid) then t1=1.d0-hybridc ! scale exchange part of energy ex(:)=t1*ex(:) ! scale exchange part of potential vxup(:)=t1*vxup(:) vxdn(:)=t1*vxdn(:) end if if (ncmag) then ! non-collinear: locally spin rotate the exchange-correlation potential do i=1,n t1=vxup(i)+vcup(i) t2=vxdn(i)+vcdn(i) vxc(i)=0.5d0*(t1+t2) ! determine the exchange-correlation magnetic field t3=0.5d0*(t1-t2) ! |m| = rhoup - rhodn t4=rhoup(i)-rhodn(i) if (abs(t4).gt.1.d-8) t4=t3/t4 bxc(i,1:3)=mag(i,1:3)*t4 end do else ! collinear do i=1,n t1=vxup(i)+vcup(i) t2=vxdn(i)+vcdn(i) vxc(i)=0.5d0*(t1+t2) bxc(i,1)=0.5d0*(t1-t2) end do end if ! scale B_xc for if required if (tssxc) bxc(:,1:ndmag)=bxc(:,1:ndmag)*sxcscf do idm=1,ndmag if (tsh) then ! convert field to spherical harmonics call rfsht(nr,nri,bxc(:,idm),bxcmt_(:,ias,idm)) else bxcmt_(1:n,ias,idm)=bxc(1:n,idm) end if end do else !--------------------------! ! spin-unpolarised ! !--------------------------! if (xcgrad.le.0) then call xcifc(xctype_,n,tempa=swidth,rho=rho,ex=ex,ec=ec,vx=vx,vc=vc) else if (xcgrad.eq.1) then call ggamt_1(tsh,is,n,rhomt_(:,ias),grho,g2rho,g3rho) call xcifc(xctype_,n,rho=rho,grho=grho,g2rho=g2rho,g3rho=g3rho,ex=ex,ec=ec,& vx=vx,vc=vc) else if (xcgrad.eq.2) then call ggamt_2a(tsh,is,n,rhomt_(:,ias),g2rho,gvrho,grho2) call xcifc(xctype_,n,rho=rho,grho2=grho2,ex=ex,ec=ec,vx=vx,vc=vc, & dxdgr2=dxdgr2,dcdgr2=dcdgr2) call ggamt_2b(is,n,g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) else if (xcgrad.eq.3) then call ggamt_2a(tsh,is,n,rhomt_(:,ias),g2rho,gvrho,grho2) call xcifc(xctype_,n,c_tb09=c_tb09,rho=rho,g2rho=g2rho,grho2=grho2,tau=tau,& vx=vx,vc=vc) ex(:)=0.d0; ec(:)=0.d0 else if (xcgrad.eq.4) then call ggamt_2a(tsh,is,n,rhomt_(:,ias),g2rho,gvrho,grho2) call xcifc(xctype_,n,rho=rho,g2rho=g2rho,grho2=grho2,tau=tau,ex=ex,ec=ec, & vx=vx,vc=vc,dxdgr2=dxdgr2,dcdgr2=dcdgr2,dxdg2r=dxdg2r,dcdg2r=dcdg2r,wx=wx,& wc=wc) call ggamt_2b(is,n,g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) wx(:)=wx(:)+wc(:) if (tsh) then call rfsht(nr,nri,wx,wxcmt_(:,ias)) else wxcmt_(1:n,ias)=wx(1:n) end if end if ! hybrid functionals if (hybrid) then t1=1.d0-hybridc ! scale exchange part of energy ex(:)=t1*ex(:) ! scale exchange part of potential vxc(:)=t1*vx(:)+vc(:) else vxc(:)=vx(:)+vc(:) end if end if if (tsh) then ! convert exchange and correlation energy densities to spherical harmonics call rfsht(nr,nri,ex,exmt_(:,ias)) call rfsht(nr,nri,ec,ecmt_(:,ias)) ! convert exchange-correlation potential to spherical harmonics call rfsht(nr,nri,vxc,vxcmt_(:,ias)) else exmt_(1:n,ias)=ex(1:n) ecmt_(1:n,ias)=ec(1:n) vxcmt_(1:n,ias)=vxc(1:n) end if deallocate(rho,ex,ec,vxc) if ((xcgrad.eq.3).or.(xcgrad.eq.4)) deallocate(tau) if (spinpol) then deallocate(mag,bxc) deallocate(rhoup,rhodn,vxup,vxdn,vcup,vcdn) if (xcgrad.eq.1) then deallocate(grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) else if (xcgrad.eq.2) then deallocate(g2up,g2dn) deallocate(gvup,gvdn) deallocate(gup2,gdn2,gupdn) deallocate(dxdgu2,dxdgd2,dxdgud) deallocate(dcdgu2,dcdgd2,dcdgud) else if (xcgrad.eq.3) then deallocate(g2up,g2dn) deallocate(gvup,gvdn) deallocate(gup2,gdn2,gupdn) end if else deallocate(vx,vc) if (xcgrad.eq.1) then deallocate(grho,g2rho,g3rho) else if (xcgrad.eq.2) then deallocate(g2rho,gvrho,grho2) deallocate(dxdgr2,dcdgr2) else if (xcgrad.eq.3) then deallocate(g2rho,gvrho,grho2) else if (xcgrad.eq.4) then deallocate(g2rho,gvrho,grho2) deallocate(dxdgr2,dcdgr2,dxdg2r,dcdg2r) deallocate(wx,wc) end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/sdelta_mp.f900000644000000000000000000000013214061636517015214 xustar0030 mtime=1623670095.205102223 30 atime=1623670093.960103378 30 ctime=1623670095.205102223 elk-7.2.42/src/sdelta_mp.f900000644002504400250440000000336514061636517017260 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sdelta_mp ! !INTERFACE: real(8) function sdelta_mp(n,x) ! !INPUT/OUTPUT PARAMETERS: ! n : order (in,integer) ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the smooth approximation to the Dirac delta function of order $N$ ! given by Methfessel and Paxton, {\it Phys. Rev. B} {\bf 40}, 3616 (1989), ! $$ \tilde\delta(x)=\sum_{i=0}^N \frac{(-1)^i}{i!4^n\sqrt\pi} H_{2i}(x) ! e^{-x^2},$$ ! where $H_j$ is the $j$th-order Hermite polynomial. This function has the ! property ! $$ \int_{-\infty}^{\infty}\tilde\delta(x)P(x)=P(0), $$ ! where $P(x)$ is any polynomial of degree $2N+1$ or less. The case $N=0$ ! corresponds to Gaussian smearing. This procedure is numerically stable ! and accurate to near machine precision for $N\le 10$. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x ! local variables integer i real(8), parameter :: sqpi=1.7724538509055160273d0 real(8) sm,t0,t1 ! external functions real(8), external :: factnm,hermite if (n.eq.0) then sdelta_mp=exp(-x**2)/sqpi return end if if (n.lt.0) then write(*,*) write(*,'("Error(sdelta_mp): n < 0 : ",I8)') n write(*,*) stop end if if (n.gt.10) then write(*,*) write(*,'("Error(sdelta_mp): n out of range : ",I8)') n write(*,*) stop end if if (abs(x).gt.12.d0) then sdelta_mp=0.d0 return end if t0=exp(-x**2)/sqpi sm=t0 do i=1,n t1=t0/(factnm(i,1)*dble(4**i)) if (mod(i,2).ne.0) t1=-t1 sm=sm+t1*hermite(2*i,x) end do sdelta_mp=sm end function !EOC elk-7.2.42/src/PaxHeaders.21776/stheta_mp.f900000644000000000000000000000013214061636517015230 xustar0030 mtime=1623670095.206102222 30 atime=1623670093.962103376 30 ctime=1623670095.206102222 elk-7.2.42/src/stheta_mp.f900000644002504400250440000000336214061636517017271 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: stheta_mp ! !INTERFACE: real(8) function stheta_mp(n,x) ! !INPUT/OUTPUT PARAMETERS: ! n : order (in,integer) ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the smooth approximation to the Heaviside step function of order ! $N$ given by Methfessel and Paxton, {\it Phys. Rev. B} {\bf 40}, 3616 ! (1989), ! $$ \tilde\Theta(x)=1-S_N(x) $$ ! where ! \begin{align*} ! S_N(x)&=S_0(x)+\sum_{i=1}^N \frac{(-1)^i}{i!4^n\sqrt\pi} H_{2i-1}(x) ! e^{-x^2},\\ ! S_0(x)&=\frac{1}{2}(1-{\rm erf}(x)) ! \end{align*} ! and $H_j$ is the $j$th-order Hermite polynomial. This procedure is ! numerically stable and accurate to near machine precision for $N\le 10$. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x ! local variables integer i real(8), parameter :: sqpi=1.7724538509055160273d0 real(8) sm,t0,t1 ! external functions real(8), external :: factnm,hermite,erf if (n.eq.0) then stheta_mp=0.5d0*(1.d0+erf(x)) return end if if (n.lt.0) then write(*,*) write(*,'("Error(stheta_mp): n < 0 : ",I8)') n write(*,*) stop end if if (n.gt.10) then write(*,*) write(*,'("Error(stheta_mp): n out of range : ",I8)') n write(*,*) stop end if if (x.lt.-12.d0) then stheta_mp=0.d0 return end if if (x.gt.12.d0) then stheta_mp=1.d0 return end if t0=-exp(-x**2)/sqpi sm=0.5d0*(1.d0+erf(x)) do i=1,n t1=t0/(factnm(i,1)*dble(4**i)) if (mod(i,2).ne.0) t1=-t1 sm=sm+t1*hermite(2*i-1,x) end do stheta_mp=sm end function !EOC elk-7.2.42/src/PaxHeaders.21776/sdelta_fd.f900000644000000000000000000000013014061636517015167 xustar0029 mtime=1623670095.20810222 30 atime=1623670093.964103375 29 ctime=1623670095.20810222 elk-7.2.42/src/sdelta_fd.f900000644002504400250440000000135314061636517017230 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sdelta_fd ! !INTERFACE: elemental real(8) function sdelta_fd(x) ! !INPUT/OUTPUT PARAMETERS: ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the Fermi-Dirac approximation to the Dirac delta function ! $$ \tilde\delta(x)=\frac{e^{-x}}{(1+e^{-x})^2}. $$ ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x ! local variables real(8) t1 if (abs(x).gt.50.d0) then sdelta_fd=0.d0 return end if t1=exp(-x) sdelta_fd=t1/((1.d0+t1)**2) end function !EOC elk-7.2.42/src/PaxHeaders.21776/stheta_fd.f900000644000000000000000000000013214061636517015205 xustar0030 mtime=1623670095.209102219 30 atime=1623670093.966103373 30 ctime=1623670095.209102219 elk-7.2.42/src/stheta_fd.f900000644002504400250440000000136114061636517017243 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: stheta_fd ! !INTERFACE: elemental real(8) function stheta_fd(x) ! !INPUT/OUTPUT PARAMETERS: ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the Fermi-Dirac approximation to the Heaviside step function ! $$ \tilde\Theta(x)=\frac{1}{1+e^{-x}}. $$ ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x if (x.gt.50.d0) then stheta_fd=1.d0 return end if if (x.lt.-50.d0) then stheta_fd=0.d0 return end if stheta_fd=1.d0/(1.d0+exp(-x)) end function !EOC elk-7.2.42/src/PaxHeaders.21776/writelsj.f900000644000000000000000000000013214061636517015107 xustar0030 mtime=1623670095.210102218 30 atime=1623670093.967103372 30 ctime=1623670095.210102218 elk-7.2.42/src/writelsj.f900000644002504400250440000001001314061636517017137 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma, C. Ambrosch-Draxl and ! F. Cricchio. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine writelsj use modmain use moddftu use modmpi use modtest implicit none ! local variables integer kst,ik,ist integer is,ia,ias real(8) xl(3),xs(3) ! allocatable arrays real(8), allocatable :: xj(:,:) complex(8), allocatable :: dmat(:,:,:,:,:) ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! allocate local arrays allocate(xj(3,natmtot)) allocate(dmat(lmmaxo,nspinor,lmmaxo,nspinor,natmtot)) if (task.eq.15) then ! compute total L, S and J ! read in the occupation numbers do ik=1,nkpt call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the density matrix in each muffin-tin call gendmat(.false.,.false.,0,lmaxo,lmmaxo,dmat) if (mp_mpi) then open(50,file='LSJ.OUT',form='FORMATTED',action='WRITE') write(50,*) write(50,'("Expectation values are computed only over the muffin-tin")') ! loop over species and atoms do is=1,nspecies write(50,*) write(50,'("Species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) ! calculate the expectation value of L and S call dmatls(dmat(:,:,:,:,ias),xl,xs) ! J = L + S xj(:,ias)=xl(:)+xs(:) write(50,'(" atom : ",I4)') ia write(50,'(" L : ",3G18.10)') xl(:) write(50,'(" S : ",3G18.10)') xs(:) write(50,'(" J : ",3G18.10)') xj(:,ias) ! end loop over atoms and species end do end do close(50) write(*,*) write(*,'("Info(writelsj):")') write(*,'(" muffin-tin L, S and J expectation values written to LSJ.OUT")') end if ! write J to test file call writetest(15,'total muffin-tin angular momentum',nv=3*natmtot,tol=1.d-3,& rva=xj) else ! compute L, S and J for all states in kstlist if (mp_mpi) then open(50,file='LSJ_KST.OUT',form='FORMATTED',action='WRITE') write(50,*) write(50,'("Expectation values are computed only over the muffin-tin")') end if do kst=1,nkstlist ik=kstlist(1,kst) ist=kstlist(2,kst) if ((ik.le.0).or.(ik.gt.nkpt)) then write(*,*) write(*,'("Error(writelsj): k-point out of range : ",I8)') ik write(*,*) stop end if if ((ist.le.0).or.(ist.gt.nstsv)) then write(*,*) write(*,'("Error(writelsj): state out of range : ",I8)') ist write(*,*) stop end if ! select a particular wavefunction using its occupancy occsv(:,:)=0.d0 occsv(ist,ik)=1.d0/wkpt(ik) ! no symmetrisation required nsymcrys=1 ! generate the density matrix in each muffin-tin call gendmat(.false.,.false.,0,lmaxo,lmmaxo,dmat) if (mp_mpi) then ! loop over species and atoms do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! calculate the expectation value of L and S call dmatls(dmat(:,:,:,:,ias),xl,xs) ! J = L + S xj(:,ias)=xl(:)+xs(:) write(50,*) write(50,'("k-point : ",I6,3G18.10)') ik,vkl(:,ik) write(50,'("state : ",I6)') ist write(50,'("species : ",I4," (",A,"), atom : ",I4)') is, & trim(spsymb(is)),ia write(50,'(" L : ",3G18.10)') xl(:) write(50,'(" S : ",3G18.10)') xs(:) write(50,'(" J : ",3G18.10)') xj(:,ias) end do end do end if end do if (mp_mpi) then close(50) write(*,*) write(*,'("Info(writelsj):")') write(*,'(" muffin-tin L, S and J expectation values for each k-point and & &state")') write(*,'(" in kstlist written to LSJ_KST.OUT")') end if ! write J to test file call writetest(16,'muffin-tin angular momentum for one state',nv=3*natmtot, & tol=1.d-3,rva=xj) end if deallocate(xj,dmat) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnzh.f900000644000000000000000000000013114061636517014723 xustar0030 mtime=1623670095.212102216 29 atime=1623670093.96910337 30 ctime=1623670095.212102216 elk-7.2.42/src/eveqnzh.f900000644002504400250440000000210514061636517016757 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnzh(n,ld,a,w) use modmain use modomp implicit none ! arguments integer, intent(in) :: n,ld complex(8), intent(inout) :: a(ld,n) real(8), intent(out) :: w(n) ! local variables integer lrwork,lwork,info integer nthd,nts ! automatic arrays integer iwork(5*n+3) ! allocatable arrays real(8), allocatable :: rwork(:) complex(8), allocatable :: work(:) ! use the divide-and-conquer LAPACK routine zheevd lrwork=2*n**2+5*n+1 lwork=n**2+2*n allocate(rwork(lrwork),work(lwork)) ! enable MKL parallelism call holdthd(maxthdmkl,nthd) nts=mkl_set_num_threads_local(nthd) call zheevd('V','U',n,a,ld,w,work,lwork,rwork,lrwork,iwork,5*n+3,info) nts=mkl_set_num_threads_local(0) call freethd(nthd) if (info.ne.0) then write(*,*) write(*,'("Error(eveqnzh): diagonalisation failed")') write(*,'(" ZHEEVD returned INFO = ",I8)') info write(*,*) stop end if deallocate(rwork,work) end subroutine elk-7.2.42/src/PaxHeaders.21776/gensmatk.f900000644000000000000000000000013214061636517015055 xustar0030 mtime=1623670095.213102215 30 atime=1623670093.971103368 30 ctime=1623670095.213102215 elk-7.2.42/src/gensmatk.f900000644002504400250440000000210014061636517017103 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gensmatk(vpl,smat) use modmain implicit none ! arguments real(8), intent(in) :: vpl(3) complex(8), intent(out) :: smat(2,2,nstsv,nstsv) ! local variables integer ist,jst,n ! allocatable arrays complex(8), allocatable :: evecsv(:,:) ! external functions complex(8), external :: zdotc if (.not.spinpol) then write(*,*) write(*,'("Error(gensmatk): spin-unpolarised calculation")') write(*,*) stop end if allocate(evecsv(nstsv,nstsv)) ! get the second-variational eigenvectors from file call getevecsv(filext,0,vpl,evecsv) n=nstfv+1 do jst=1,nstsv do ist=1,jst smat(1,1,ist,jst)=zdotc(nstfv,evecsv(1,ist),1,evecsv(1,jst),1) smat(2,1,ist,jst)=zdotc(nstfv,evecsv(n,ist),1,evecsv(1,jst),1) smat(1,2,ist,jst)=zdotc(nstfv,evecsv(1,ist),1,evecsv(n,jst),1) smat(2,2,ist,jst)=zdotc(nstfv,evecsv(n,ist),1,evecsv(n,jst),1) end do end do deallocate(evecsv) end subroutine elk-7.2.42/src/PaxHeaders.21776/gensfacgp.f900000644000000000000000000000013214061636517015201 xustar0030 mtime=1623670095.215102213 30 atime=1623670093.972103367 30 ctime=1623670095.215102213 elk-7.2.42/src/gensfacgp.f900000644002504400250440000000247014061636517017241 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gensfacgp ! !INTERFACE: pure subroutine gensfacgp(ngp,vgpc,ld,sfacgp) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer) ! vgpc : G+p-vectors in Cartesian coordinates (in,real(3,*)) ! ld : leading dimension (in,integer) ! sfacgp : structure factors of G+p-vectors (out,complex(ld,natmtot)) ! !DESCRIPTION: ! Generates the atomic structure factors for a set of ${\bf G+p}$-vectors: ! $$ S_{\alpha}({\bf G+p})=\exp(i({\bf G+p})\cdot{\bf r}_{\alpha}), $$ ! where ${\bf r}_{\alpha}$ is the position of atom $\alpha$. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp real(8), intent(in) :: vgpc(3,ngp) integer, intent(in) :: ld complex(8), intent(out) :: sfacgp(ld,natmtot) ! local variables integer is,ia,ias,igp real(8) v1,v2,v3,t1 do ias=1,natmtot is=idxis(ias) ia=idxia(ias) v1=atposc(1,ia,is); v2=atposc(2,ia,is); v3=atposc(3,ia,is) do igp=1,ngp t1=vgpc(1,igp)*v1+vgpc(2,igp)*v2+vgpc(3,igp)*v3 sfacgp(igp,ias)=cmplx(cos(t1),sin(t1),8) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rhomag.f900000644000000000000000000000013214061636517014521 xustar0030 mtime=1623670095.216102213 30 atime=1623670093.974103365 30 ctime=1623670095.216102213 elk-7.2.42/src/rhomag.f900000644002504400250440000000141214061636517016554 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhomag use modmain use modmpi use modomp implicit none ! local variables integer nthd ! calculate the valence density and magnetisation call rhomagv ! add the core density and magnetisation to the total call rhocore call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP SECTION ! calculate the charges call charge ! normalise the density call rhonorm !$OMP SECTION ! calculate the moments if (spinpol) call moment !$OMP END PARALLEL SECTIONS call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/wsplintp.f900000644000000000000000000000013214061636517015124 xustar0030 mtime=1623670095.217102211 30 atime=1623670093.976103364 30 ctime=1623670095.217102211 elk-7.2.42/src/wsplintp.f900000644002504400250440000000306514061636517017165 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wsplintp(n,x,wp) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x(n) real(8), intent(out) :: wp(4,n) ! local variables integer i real(8) f(4),t1,t2 ! external functions real(8), external :: polynm if (n.lt.4) then write(*,*) write(*,'("Error(wsplintp): n < 4 : ",I8)') n write(*,*) stop end if wp(:,1)=0.d0 f(1)=1.d0 f(2:)=0.d0 wp(1,2)=polynm(-1,4,x,f,x(2)) f(1)=0.d0 f(2)=1.d0 wp(2,2)=polynm(-1,4,x,f,x(2)) f(2)=0.d0 f(3)=1.d0 wp(3,2)=polynm(-1,4,x,f,x(2)) f(3)=0.d0 f(4)=1.d0 wp(4,2)=polynm(-1,4,x,f,x(2)) do i=3,n-1 f(1)=1.d0 f(2:)=0.d0 t1=polynm(-1,4,x(i-2),f,x(i-1)) t2=polynm(-1,4,x(i-2),f,x(i)) wp(1,i)=t2-t1 f(1)=0.d0 f(2)=1.d0 t1=polynm(-1,4,x(i-2),f,x(i-1)) t2=polynm(-1,4,x(i-2),f,x(i)) wp(2,i)=t2-t1 f(2)=0.d0 f(3)=1.d0 t1=polynm(-1,4,x(i-2),f,x(i-1)) t2=polynm(-1,4,x(i-2),f,x(i)) wp(3,i)=t2-t1 f(3)=0.d0 f(4)=1.d0 t1=polynm(-1,4,x(i-2),f,x(i-1)) t2=polynm(-1,4,x(i-2),f,x(i)) wp(4,i)=t2-t1 end do f(1)=1.d0 f(2:)=0.d0 t1=polynm(-1,4,x(n-3),f,x(n-1)) t2=polynm(-1,4,x(n-3),f,x(n)) wp(1,n)=t2-t1 f(1)=0.d0 f(2)=1.d0 t1=polynm(-1,4,x(n-3),f,x(n-1)) t2=polynm(-1,4,x(n-3),f,x(n)) wp(2,n)=t2-t1 f(2)=0.d0 f(3)=1.d0 t1=polynm(-1,4,x(n-3),f,x(n-1)) t2=polynm(-1,4,x(n-3),f,x(n)) wp(3,n)=t2-t1 f(3)=0.d0 f(4)=1.d0 t1=polynm(-1,4,x(n-3),f,x(n-1)) t2=polynm(-1,4,x(n-3),f,x(n)) wp(4,n)=t2-t1 end subroutine elk-7.2.42/src/PaxHeaders.21776/checkmt.f900000644000000000000000000000013014061636517014660 xustar0029 mtime=1623670095.21910221 30 atime=1623670093.977103362 29 ctime=1623670095.21910221 elk-7.2.42/src/checkmt.f900000644002504400250440000000324314061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: checkmt ! !INTERFACE: subroutine checkmt ! !USES: use modmain use modmpi use modvars ! !DESCRIPTION: ! Checks for muffin-tins which are too close together or intersecting. If any ! such muffin-tins are found then the radii of their associated atomic species ! are adjusted so that the minimum distance between their surfaces is ! {\tt rmtdelta}. ! ! !REVISION HISTORY: ! Created May 2003 (JKD) ! Modified, October 2011 (JKD) !EOP !BOC implicit none ! local variables integer is,js real(8) dmin,t1,t2 ! automatic arrays real(8) rmt0(nspecies) rmt0(1:nspecies)=rmt(1:nspecies) 10 continue ! find the minimum distance between muffin-tin surfaces call mtdmin(is,js,dmin) ! adjust muffin-tin radii if required if (dmin.lt.rmtdelta-epslat) then t1=rmt(is)+rmt(js) t2=(t1+dmin-rmtdelta)/t1 rmt(is)=rmt(is)*t2 if (is.ne.js) rmt(js)=rmt(js)*t2 goto 10 end if do is=1,nspecies if (rmt(is).lt.0.25d0) then write(*,*) write(*,'("Error(checkmt): muffin-tin radius too small for species ",I4,& &" (",A,")")') is,trim(spsymb(is)) write(*,'(" Radius : ",G18.10)') rmt(is) write(*,*) stop end if if (rmt(is).lt.rmt0(is)) then if (mp_mpi) then write(*,*) write(*,'("Info(checkmt): reduced muffin-tin radius of species ",I3,& &" (",A,") from ",F8.4," to ",F8.4)') is,trim(spsymb(is)),rmt0(is), & rmt(is) end if end if end do ! write to VARIABLES.OUT call writevars('rmt',nv=nspecies,rva=rmt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rhomagv.f900000644000000000000000000000013214061636517014707 xustar0030 mtime=1623670095.220102209 30 atime=1623670093.979103361 30 ctime=1623670095.220102209 elk-7.2.42/src/rhomagv.f900000644002504400250440000000630614061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhomagv use modmain use modmpi use modomp implicit none ! local variables integer ik,ispn,idm integer is,ias,n,nthd ! automatic arrays integer(8) lock(natmtot) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:,:),evecsv(:,:) ! set the charge density and magnetisation to zero do ias=1,natmtot is=idxis(ias) rhomt(1:npcmt(is),ias)=0.d0 end do rhoir(1:ngtc)=0.d0 do idm=1,ndmag do ias=1,natmtot is=idxis(ias) magmt(1:npcmt(is),ias,idm)=0.d0 end do magir(1:ngtc,idm)=0.d0 end do ! initialise the OpenMP locks do ias=1,natmtot call omp_init_lock(lock(ias)) end do call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(apwalm,evecfv,evecsv,ispn) & !$OMP NUM_THREADS(nthd) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! add to the density and magnetisation call rhomagk(ngk(:,ik),igkig(:,:,ik),lock,wkpt(ik),occsv(:,ik),apwalm, & evecfv,evecsv) end do !$OMP END DO deallocate(apwalm,evecfv,evecsv) !$OMP END PARALLEL call freethd(nthd) ! destroy the OpenMP locks do ias=1,natmtot call omp_destroy_lock(lock(ias)) end do ! convert muffin-tin density/magnetisation to spherical harmonics call rhomagsh call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP PRIVATE(idm) & !$OMP NUM_THREADS(nthd) !$OMP SECTION ! symmetrise the density call symrf(nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npmtmax,rhomt,rhoir) ! convert the muffin-tin density from coarse to fine radial mesh call rfmtctof(rhomt) ! convert the interstitial density from coarse to fine grid call rfirctof(rhoir,rhoir) !$OMP SECTION if (spinpol) then ! symmetrise the magnetisation call symrvf(.true.,ncmag,nrcmt,nrcmti,npcmt,ngdgc,ngtc,ngvc,igfc,npmtmax, & magmt,ngtot,magir) ! convert the muffin-tin magnetisation from coarse to fine radial mesh do idm=1,ndmag call rfmtctof(magmt(:,:,idm)) end do ! convert the interstitial magnetisation from coarse to fine grid do idm=1,ndmag call rfirctof(magir(:,idm),magir(:,idm)) end do end if !$OMP END PARALLEL SECTIONS call freethd(nthd) ! add densities from each process and redistribute if (np_mpi.gt.1) then n=npmtmax*natmtot call mpi_allreduce(mpi_in_place,rhomt,n,mpi_double_precision,mpi_sum,mpicom, & ierror) call mpi_allreduce(mpi_in_place,rhoir,ngtot,mpi_double_precision,mpi_sum, & mpicom,ierror) if (spinpol) then n=n*ndmag call mpi_allreduce(mpi_in_place,magmt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) n=ngtot*ndmag call mpi_allreduce(mpi_in_place,magir,n,mpi_double_precision,mpi_sum, & mpicom,ierror) end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/reciplat.f900000644000000000000000000000013214061636517015047 xustar0030 mtime=1623670095.222102207 30 atime=1623670093.981103359 30 ctime=1623670095.222102207 elk-7.2.42/src/reciplat.f900000644002504400250440000000336714061636517017115 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: reciplat ! !INTERFACE: subroutine reciplat(avec,bvec,omega,omegabz) ! !INPUT/OUTPUT PARAMETERS: ! avec : lattice vectors (in,real(3,3)) ! bvec : reciprocal lattice vectors (out,real(3,3)) ! omega : unit cell volume (out,real) ! omegabz : Brillouin zone volume (out,real) ! !DESCRIPTION: ! Generates the reciprocal lattice vectors from the real-space lattice vectors ! \begin{align*} ! {\bf b}_1&=\frac{2\pi}{s}({\bf a}_2\times{\bf a}_3)\\ ! {\bf b}_2&=\frac{2\pi}{s}({\bf a}_3\times{\bf a}_1)\\ ! {\bf b}_3&=\frac{2\pi}{s}({\bf a}_1\times{\bf a}_2) ! \end{align*} ! and finds the unit cell volume $\Omega=|s|$, where ! $s={\bf a}_1\cdot({\bf a}_2\times{\bf a}_3)$, and the Brillouin zone volume ! $\Omega_{\rm BZ}=(2\pi)^3/\Omega$. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: avec(3,3) real(8), intent(out) :: bvec(3,3) real(8), intent(out) :: omega,omegabz ! local variables real(8), parameter :: twopi=6.2831853071795864769d0 real(8) t1 call r3cross(avec(:,2),avec(:,3),bvec(:,1)) call r3cross(avec(:,3),avec(:,1),bvec(:,2)) call r3cross(avec(:,1),avec(:,2),bvec(:,3)) t1=avec(1,1)*bvec(1,1)+avec(2,1)*bvec(2,1)+avec(3,1)*bvec(3,1) ! unit cell volume omega=abs(t1) if (omega.lt.1.d-6) then write(*,*) write(*,'("Error(reciplat) omega too small : ",G18.10)') omega write(*,'(" Lattice vectors may be collinear")') write(*,*) stop end if bvec(:,:)=(twopi/t1)*bvec(:,:) ! Brillouin zone volume omegabz=(twopi**3)/omega end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gradrf.f900000644000000000000000000000013214061636517014511 xustar0030 mtime=1623670095.223102206 30 atime=1623670093.982103358 30 ctime=1623670095.223102206 elk-7.2.42/src/gradrf.f900000644002504400250440000000231514061636517016547 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gradrf(rfmt,rfir,grfmt,grfir) use modmain use modomp implicit none ! arguments real(8), intent(in) :: rfmt(npmtmax,natmtot),rfir(ngtot) real(8), intent(out) :: grfmt(npmtmax,natmtot,3),grfir(ngtot,3) ! local variables integer is,ias,ld,i integer ig,ifg,nthd complex(8) z1 ! allocatable arrays complex(8), allocatable :: zfft1(:),zfft2(:) ! muffin-tin gradient ld=npmtmax*natmtot call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call gradrfmt(nrmt(is),nrmti(is),rlmt(:,-1,is),wcrmt(:,:,is),rfmt(:,ias),ld, & grfmt(1,ias,1)) end do !$OMP END PARALLEL DO call freethd(nthd) ! interstitial gradient allocate(zfft1(ngtot),zfft2(ngtot)) zfft1(:)=rfir(:) call zfftifc(3,ngridg,-1,zfft1) do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) z1=zfft1(ifg) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(z1),dble(z1),8) end do call zfftifc(3,ngridg,1,zfft2) grfir(:,i)=dble(zfft2(:)) end do deallocate(zfft1,zfft2) end subroutine elk-7.2.42/src/PaxHeaders.21776/genzfrm.f900000644000000000000000000000013214061636517014714 xustar0030 mtime=1623670095.225102204 30 atime=1623670093.984103356 30 ctime=1623670095.225102204 elk-7.2.42/src/genzfrm.f900000644002504400250440000000255614061636517016761 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2010 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genzfrm(wfmt11,wfmt12,wfir11,wfir12,wfmt21,wfmt22,wfir21,wfir22, & zrhomt,zrhoir,zmagmt,zmagir) use modmain use modomp implicit none ! arguments complex(8), intent(in) :: wfmt11(npcmtmax,natmtot),wfmt12(npcmtmax,natmtot) complex(8), intent(in) :: wfir11(ngtot),wfir12(ngtot) complex(8), intent(in) :: wfmt21(npcmtmax,natmtot),wfmt22(npcmtmax,natmtot) complex(8), intent(in) :: wfir21(ngtot),wfir22(ngtot) complex(8), intent(out) :: zrhomt(npcmtmax,natmtot),zrhoir(ngtot) complex(8), intent(out) :: zmagmt(npcmtmax,natmtot,ndmag),zmagir(ngtot,ndmag) ! local variables integer ld,is,ias,nthd !-------------------------! ! muffin-tin part ! !-------------------------! ld=npcmtmax*natmtot call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call genzrm(npcmt(is),wfmt11(:,ias),wfmt12(:,ias),wfmt21(:,ias), & wfmt22(:,ias),zrhomt(:,ias),ld,zmagmt(:,ias,1)) end do !$OMP END PARALLEL DO call freethd(nthd) !---------------------------! ! interstitial part ! !---------------------------! call genzrm(ngtot,wfir11,wfir12,wfir21,wfir22,zrhoir,ngtot,zmagir) end subroutine elk-7.2.42/src/PaxHeaders.21776/mixadapt.f900000644000000000000000000000013214061636517015053 xustar0030 mtime=1623670095.226102203 30 atime=1623670093.986103354 30 ctime=1623670095.226102203 elk-7.2.42/src/mixadapt.f900000644002504400250440000000504214061636517017111 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: mixadapt ! !INTERFACE: pure subroutine mixadapt(iscl,beta0,betamax,n,nu,mu,beta,f,d) ! !INPUT/OUTPUT PARAMETERS: ! iscl : self-consistent loop number (in,integer) ! beta0 : mixing parameter (in,real) ! betamax : maximum mixing parameter (in,real) ! n : vector length (in,integer) ! nu : current output vector as well as the next input vector of the ! self-consistent loop (inout,real(n)) ! mu : used internally (inout,real(n)) ! beta : used internally (inout,real(n)) ! f : used internally (inout,real(n)) ! d : RMS difference between old and new output vectors (out,real) ! !DESCRIPTION: ! Given the input vector $\mu^i$ and output vector $\nu^i$ of the $i$th ! self-consistent loop, this routine generates the next input vector to the ! loop using an adaptive mixing scheme. The $j$th component of the output ! vector is mixed with a fraction of the same component of the input vector: ! $$ \mu^{i+1}_j=\beta^i_j\nu^i_j+(1-\beta^i_j)\mu^i_j, $$ ! where $\beta^{i+1}_j=\beta^i_j+\beta_0$ if $f^i_j\equiv\nu^i_j-\mu^i_j$ does ! not change sign between loops. If $f^i_j$ does change sign, then ! $\beta^{i+1}_j=(\beta^i_j+\beta_0)/2$. Note that the array {\tt nu} serves ! for both input and output, and the arrays {\tt mu}, {\tt beta} and {\tt f} ! are used internally and should not be changed between calls. The routine is ! thread-safe so long as each thread has its own independent work arrays. ! Complex arrays may be passed as real arrays with $n$ doubled. ! ! !REVISION HISTORY: ! Created March 2003 (JKD) ! Modified, September 2008 (JKD) ! Modified, August 2011 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: iscl real(8), intent(in) :: beta0,betamax integer, intent(in) :: n real(8), intent(inout) :: nu(n),mu(n) real(8), intent(inout) :: beta(n),f(n) real(8), intent(out) :: d ! local variables integer i real(8) t1 if (n.le.0) return ! initialise mixer if (iscl.le.0) then mu(:)=nu(:) f(:)=0.d0 beta(:)=beta0 d=1.d0 return end if d=0.d0 do i=1,n t1=nu(i)-mu(i) d=d+t1**2 if (t1*f(i).ge.0.d0) then beta(i)=beta(i)+beta0 if (beta(i).gt.betamax) beta(i)=betamax else beta(i)=0.5d0*(beta(i)+beta0) end if f(i)=t1 nu(i)=beta(i)*nu(i)+(1.d0-beta(i))*mu(i) mu(i)=nu(i) end do d=sqrt(d/dble(n)) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zftrf.f900000644000000000000000000000013214061636517014377 xustar0030 mtime=1623670095.227102202 30 atime=1623670093.987103353 30 ctime=1623670095.227102202 elk-7.2.42/src/zftrf.f900000644002504400250440000001215314061636517016436 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 Alexey I. Baranov. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zftrf ! !INTERFACE: subroutine zftrf(npv,ivp,vpc,rfmt,rfir,zfp) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! npv : number of P-vectors (in,integer) ! ivp : integer coordinates of the P-vectors (in,integer(3,npv)) ! vpc : P-vectors in Cartesian coordinates (in,real(3,npv)) ! rfmt : real muffin-tin function (in,real(npmtmax,natmtot)) ! rfir : real interstitial function (in,real(ngtot)) ! zfp : Fourier expansion coefficients of the real-space function ! (out,complex(npv)) ! !DESCRIPTION: ! Given a real function periodic in the unit cell, $f({\bf r})$, this routine ! calculates its complex Fourier expansion coefficients: ! $$ f({\bf P})=\frac{1}{\Omega}\int d^3r\,f({\bf r})\tilde{\Theta}({\bf r}) ! e^{-i{\bf P}\cdot{\bf r}} ! +\frac{4\pi}{\Omega}\sum_{\alpha}e^{-i{\bf P}\cdot{\bf R}_{\alpha}} ! \sum_{lm}(-i)^l Y_{lm}(\hat{\bf P}) ! \int_{0}^{R_{\alpha}}dr\,r^2 j_{l}(|{\bf P}|r)f_{lm}^{\alpha}(r), $$ ! where $\tilde{\Theta}$ is the smooth characteristic function of the ! interstitial region, $\Omega$ is the unit cell volume and $R_{\alpha}$ is ! the muffin-tin radius of atom $\alpha$. ! ! !REVISION HISTORY: ! Created July 2010 (Alexey I. Baranov) ! Modified, November 2010 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: npv,ivp(3,npv) real(8), intent(in) :: vpc(3,npv) real(8), intent(in) :: rfmt(npmtmax,natmtot),rfir(ngtot) complex(8), intent(out) :: zfp(npv) ! local variables integer is,ia,ias integer nrc,nrci,irco,irc integer lmax,l,m,lm,npci,i integer ip,ig,ifg real(8) p,t0,t1 complex(8) zsm,z1,z2,z3 ! automatic arrays real(8) jl(0:lmaxo,nrcmtmax),rfmt1(npcmtmax) complex(8) ylm(lmmaxo) ! allocatable arrays complex(8), allocatable :: zfft(:),zfmt(:,:) allocate(zfft(ngtot),zfmt(npcmtmax,natmtot)) ! zero the coefficients zfp(:)=0.d0 !---------------------------! ! interstitial part ! !---------------------------! ! Fourier transform to G-space zfft(:)=rfir(:) call zfftifc(3,ngridg,-1,zfft) ! find coefficients for all required input vectors do ip=1,npv if ((ivp(1,ip).ge.intgv(1,1)).and.(ivp(1,ip).le.intgv(2,1)).and. & (ivp(2,ip).ge.intgv(1,2)).and.(ivp(2,ip).le.intgv(2,2)).and. & (ivp(3,ip).ge.intgv(1,3)).and.(ivp(3,ip).le.intgv(2,3))) then ig=ivgig(ivp(1,ip),ivp(2,ip),ivp(3,ip)) zfp(ip)=zfft(igfft(ig)) end if end do !-------------------------! ! muffin-tin part ! !-------------------------! ! convert function from real to complex spherical harmonic expansion on coarse ! radial mesh do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) call rfmtftoc(nrc,nrci,rfmt(:,ias),rfmt1) call rtozfmt(nrc,nrci,rfmt1,zfmt(:,ias)) end do ! remove continuation of interstitial function into muffin-tin do ig=1,ngtot ifg=igfft(ig) ! conjugate spherical harmonics Y_lm*(G) call genylmv(lmaxo,vgc(:,ig),ylm) ylm(:)=conjg(ylm(:)) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) irco=nrci+1 npci=npcmti(is) ! generate spherical Bessel functions lmax=lmaxi do irc=1,nrc t1=gc(ig)*rcmt(irc,is) call sbessel(lmax,t1,jl(:,irc)) if (irc.eq.nrci) lmax=lmaxo end do do ia=1,natoms(is) ias=idxas(ia,is) ! structure factor t1=dot_product(vgc(:,ig),atposc(:,ia,is)) z1=fourpi*zfft(ifg)*cmplx(cos(t1),sin(t1),8) lm=0 do l=0,lmaxi z2=z1*zil(l) do m=-l,l lm=lm+1 z3=z2*ylm(lm) i=lm do irc=1,nrci zfmt(i,ias)=zfmt(i,ias)-z3*jl(l,irc) i=i+lmmaxi end do end do end do lm=0 do l=0,lmaxo z2=z1*zil(l) do m=-l,l lm=lm+1 z3=z2*ylm(lm) i=npci+lm do irc=irco,nrc zfmt(i,ias)=zfmt(i,ias)-z3*jl(l,irc) i=i+lmmaxo end do end do end do end do end do end do t0=fourpi/omega ! loop over input P-vectors do ip=1,npv ! length of P-vector p=sqrt(vpc(1,ip)**2+vpc(2,ip)**2+vpc(3,ip)**2) ! spherical harmonics Y_lm(P) call genylmv(lmaxo,vpc(:,ip),ylm) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) ! generate spherical Bessel functions lmax=lmaxi do irc=1,nrc t1=p*rcmt(irc,is) call sbessel(lmax,t1,jl(:,irc)) if (irc.eq.nrci) lmax=lmaxo end do do ia=1,natoms(is) ias=idxas(ia,is) zsm=0.d0 lmax=lmaxi i=0 do irc=1,nrc i=i+1 z1=jl(0,irc)*zfmt(i,ias)*ylm(1) lm=1 do l=1,lmax lm=lm+1 i=i+1 z2=zfmt(i,ias)*ylm(lm) do m=1-l,l lm=lm+1 i=i+1 z2=z2+zfmt(i,ias)*ylm(lm) end do z1=z1+jl(l,irc)*zilc(l)*z2 end do zsm=zsm+wrcmt(irc,is)*z1 if (irc.eq.nrci) lmax=lmaxo end do ! conjugate structure factor t1=-dot_product(vpc(:,ip),atposc(:,ia,is)) z1=t0*cmplx(cos(t1),sin(t1),8) zfp(ip)=zfp(ip)+z1*zsm end do end do end do deallocate(zfft,zfmt) end subroutine ! EOC elk-7.2.42/src/PaxHeaders.21776/sbessel.f900000644000000000000000000000012614061636517014707 xustar0028 mtime=1623670095.2291022 30 atime=1623670093.989103351 28 ctime=1623670095.2291022 elk-7.2.42/src/sbessel.f900000644002504400250440000000520014061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sbessel ! !INTERFACE: subroutine sbessel(lmax,x,jl) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum order of Bessel function (in,integer) ! x : real argument (in,real) ! jl : array of returned values (out,real(0:lmax)) ! !DESCRIPTION: ! Computes the spherical Bessel functions of the first kind, $j_l(x)$, for ! argument $x$ and $l=0,1,\ldots,l_{\rm max}$. The recursion relation ! $$ j_{l+1}(x)=\frac{2l+1}{x}j_l(x)-j_{l-1}(x) $$ ! is used either downwards for $x= lmax recurse up jl(0)=sin(x)*xi if (lmax.eq.0) return jl(1)=(jl(0)-cos(x))*xi if (lmax.eq.1) return j0=jl(0) j1=jl(1) do l=2,lmax jt=(2*l-1)*j1*xi-j0 j0=j1 j1=jt jl(l)=j1 end do end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gengclgq.f900000644000000000000000000000013114061636517015032 xustar0030 mtime=1623670095.230102199 29 atime=1623670093.99010335 30 ctime=1623670095.230102199 elk-7.2.42/src/gengclgq.f900000644002504400250440000000167014061636517017074 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine gengclgq(treg,iq,ngq,gqc,gclgq) use modmain implicit none ! arguments logical, intent(in) :: treg integer, intent(in) :: iq,ngq real(8), intent(in) :: gqc(ngq) real(8), intent(out) :: gclgq(ngq) ! local variables integer ig real(8) t1,t2 if (treg) then ! regularise 1/(G+q)^2 for G+q in the first Brillouin zone t1=sqrt(vqc(1,iq)**2+vqc(2,iq)**2+vqc(3,iq)**2) do ig=1,ngq t2=gqc(ig) if (abs(t1-t2).lt.epslat) then gclgq(ig)=gclq(iq) else if (t2.gt.epslat) then gclgq(ig)=fourpi/t2**2 else gclgq(ig)=0.d0 end if end do else ! no regularisation do ig=1,ngq t1=gqc(ig) if (t1.gt.epslat) then gclgq(ig)=fourpi/t1**2 else gclgq(ig)=0.d0 end if end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/gencfun.f900000644000000000000000000000013214061636517014671 xustar0030 mtime=1623670095.231102199 30 atime=1623670093.992103349 30 ctime=1623670095.231102199 elk-7.2.42/src/gencfun.f900000644002504400250440000000403014061636517016723 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gencfun ! !INTERFACE: subroutine gencfun ! !USES: use modmain ! !DESCRIPTION: ! Generates the smooth characteristic function. This is the function which is ! 0 within the muffin-tins and 1 in the intersitial region and is constructed ! from radial step function form factors with $GG_{\rm max}\end{cases} $$ ! where $R_i$ is the muffin-tin radius of the $i$th species and $\Omega$ is ! the unit cell volume. Therefore the characteristic function in $G$-space is ! $$ \tilde{\Theta}({\bf G})=\delta_{G,0}-\sum_{ij}\exp(-i{\bf G}\cdot ! {\bf r}_{ij})\tilde{\Theta}_i(G), $$ ! where ${\bf r}_{ij}$ is the position of the $j$th atom of the $i$th species. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ia,ig real(8) v1,v2,v3,t1 complex(8) z1 ! allocatable arrays complex(8), allocatable :: zfft(:) ! allocate global characteristic function arrays if (allocated(cfunig)) deallocate(cfunig) allocate(cfunig(ngtot)) if (allocated(cfunir)) deallocate(cfunir) allocate(cfunir(ngtot)) cfunig(1)=1.d0 cfunig(2:)=0.d0 ! begin loop over species do is=1,nspecies ! loop over atoms do ia=1,natoms(is) v1=atposc(1,ia,is); v2=atposc(2,ia,is); v3=atposc(3,ia,is) do ig=1,ngtot ! structure factor t1=vgc(1,ig)*v1+vgc(2,ig)*v2+vgc(3,ig)*v3 z1=cmplx(cos(t1),-sin(t1),8) ! add to characteristic function in G-space cfunig(ig)=cfunig(ig)-ffacg(ig,is)*z1 end do end do end do allocate(zfft(ngtot)) zfft(igfft(:))=cfunig(:) ! Fourier transform to real-space call zfftifc(3,ngridg,1,zfft) cfunir(:)=dble(zfft(:)) deallocate(zfft) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeeval.f900000644000000000000000000000013214061636517015246 xustar0030 mtime=1623670095.233102197 30 atime=1623670093.994103347 30 ctime=1623670095.233102197 elk-7.2.42/src/writeeval.f900000644002504400250440000000264114061636517017306 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writeeval ! !INTERFACE: subroutine writeeval ! !USES: use modmain ! !DESCRIPTION: ! Outputs the second-variational eigenvalues and occupation numbers to the ! file {\tt EIGVAL.OUT}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer ik,ist,is,ia,ias ! write out the valence eigenvalues open(50,file='EIGVAL'//trim(filext),form='FORMATTED') write(50,'(I6," : nkpt")') nkpt write(50,'(I6," : nstsv")') nstsv do ik=1,nkpt write(50,*) write(50,'(I6,3G18.10," : k-point, vkl")') ik,vkl(:,ik) write(50,'(" (state, eigenvalue and occupancy below)")') do ist=1,nstsv write(50,'(I6,2G18.10)') ist,evalsv(ist,ik),occsv(ist,ik) end do write(50,*) end do close(50) ! write out the core eigenvalues open(50,file='EVALCORE'//trim(filext),form='FORMATTED') do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is,trim(spsymb(is)),ia do ist=1,nstsp(is) if (spcore(ist,is)) then write(50,'(" n = ",I2,", l = ",I2,", k = ",I2," : ",G18.10)') & nsp(ist,is),lsp(ist,is),ksp(ist,is),evalcr(ist,ias) end if end do end do end do close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/factr.f900000644000000000000000000000013214061636517014343 xustar0030 mtime=1623670095.234102196 30 atime=1623670093.995103346 30 ctime=1623670095.234102196 elk-7.2.42/src/factr.f900000644002504400250440000000175714061636517016412 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: factr ! !INTERFACE: real(8) function factr(n,d) ! !INPUT/OUTPUT PARAMETERS: ! n : numerator (in,integer) ! d : denominator (in,integer) ! !DESCRIPTION: ! Returns the ratio $n!/d!$ for $n,d\ge 0$. Performs no under- or overflow ! checking. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n,d ! local variables integer i ! external functions real(8), external :: factnm if (d.eq.1) then factr=factnm(n,1) return end if if ((n.lt.0).or.(d.lt.0)) then factr=0.d0 return end if if (n.lt.d) then factr=dble(n+1) do i=n+2,d factr=factr*dble(i) end do factr=1.d0/factr else if (n.eq.d) then factr=1.d0 else factr=dble(d+1) do i=d+2,n factr=factr*dble(i) end do end if end function !EOC elk-7.2.42/src/PaxHeaders.21776/genstress.f900000644000000000000000000000013214061636517015261 xustar0030 mtime=1623670095.236102194 30 atime=1623670093.997103344 30 ctime=1623670095.236102194 elk-7.2.42/src/genstress.f900000644002504400250440000000252614061636517017323 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genstress use modmain use modmpi use modstore implicit none ! local variables integer i real(8) et0,t1 ! store original parameters avec_(:,:)=avec(:,:) tforce_=tforce tforce=.false. ! restore original symmetries call symmetry ! generate the strain tensors call genstrain ! zero the stress tensor components stress(:)=0.d0 ! run the ground-state calculation call gndstate ! check for stop signal if (tstop) goto 10 ! subsequent calculations will read STATE.OUT trdstate=.true. ! store the total energy et0=engytot ! loop over strain tensors do istrain=1,nstrain if (mp_mpi) then write(*,'("Info(genstress): strain tensor ",I1," of ",I1)') istrain,nstrain end if ! restore the lattice vectors avec(:,:)=avec_(:,:) ! run the ground-state calculation call gndstate ! check for stop signal if (tstop) goto 10 ! compute the stress tensor component stress(istrain)=(engytot-et0)/deltast end do 10 continue istrain=0 ! compute the maximum stress magnitude over all lattice vectors stressmax=0.d0 do i=1,nstrain t1=abs(stress(i)) if (t1.gt.stressmax) stressmax=t1 end do ! restore original parameters avec(:,:)=avec_(:,:) tforce=tforce_ end subroutine elk-7.2.42/src/PaxHeaders.21776/rfcopy.f900000644000000000000000000000013214061636517014546 xustar0030 mtime=1623670095.237102193 30 atime=1623670093.999103342 30 ctime=1623670095.237102193 elk-7.2.42/src/rfcopy.f900000644002504400250440000000104514061636517016603 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine rfcopy(rfmt1,rfir1,rfmt2,rfir2) use modmain implicit none ! arguments real(8), intent(in) :: rfmt1(npmtmax,natmtot),rfir1(ngtot) real(8), intent(out) :: rfmt2(npmtmax,natmtot),rfir2(ngtot) ! local variables integer is,ias do ias=1,natmtot is=idxis(ias) rfmt2(1:npmt(is),ias)=rfmt1(1:npmt(is),ias) end do rfir2(:)=rfir1(:) end subroutine elk-7.2.42/src/PaxHeaders.21776/force.f900000644000000000000000000000013214061636517014342 xustar0030 mtime=1623670095.239102191 30 atime=1623670094.000103341 30 ctime=1623670095.239102191 elk-7.2.42/src/force.f900000644002504400250440000002154714061636517016410 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: force ! !INTERFACE: subroutine force ! !USES: use modmain use modtddft use modtest use modmpi use modomp ! !DESCRIPTION: ! Computes the various contributions to the atomic forces. In principle, the ! force acting on a nucleus is simply the gradient at that site of the ! classical electrostatic potential from the other nuclei and the electronic ! density. This is a result of the Hellmann-Feynman theorem. However because ! the basis set is dependent on the nuclear coordinates and is not complete, ! the Hellman-Feynman force is inacurate and corrections to it are required. ! The first is the core correction which arises because the core wavefunctions ! were determined by neglecting the non-spherical parts of the Kohn-Sham ! potential $v_s$. Explicitly this is given by ! $$ {\bf F}_{\rm core}^{\alpha}=\int_{\rm MT_{\alpha}} v_s({\bf r}) ! \nabla\rho_{\rm core}^{\alpha}({\bf r})\,d{\bf r} $$ ! for atom $\alpha$. The second, which is the incomplete basis set (IBS) ! correction, is due to the position dependence of the APW functions, and is ! derived by considering the change in total energy if the eigenvector ! coefficients were fixed and the APW functions themselves were changed. This ! would result in changes to the first-variational Hamiltonian and overlap ! matrices given by ! \begin{align*} ! \delta H_{\bf G,G'}^{\alpha}&=i({\bf G-G'}) ! \left(H^{\alpha}_{\bf G+k,G'+k}-\frac{1}{2}({\bf G+k})\cdot({\bf G'+k}) ! \tilde{\Theta}_{\alpha}({\bf G-G'})e^{-i({\bf G-G'})\cdot{\bf r}_{\alpha}} ! \right)\\ ! \delta O_{\bf G,G'}^{\alpha}&=i({\bf G-G'})\left(O^{\alpha}_{\bf G+k,G'+k} ! -\tilde{\Theta}_{\alpha}({\bf G-G'})e^{-i({\bf G-G'})\cdot{\bf r}_{\alpha}} ! \right) ! \end{align*} ! where both ${\bf G}$ and ${\bf G'}$ run over the APW indices; ! $\tilde{\Theta}_{\alpha}$ is the form factor of the smooth step function for ! muffin-tin $\alpha$; and $H^{\alpha}$ and $O^{\alpha}$ are the muffin-tin ! Hamiltonian and overlap matrices, respectively. The APW-local-orbital part ! is given by ! \begin{align*} ! \delta H_{\bf G,G'}^{\alpha}&=i({\bf G+k})H^{\alpha}_{\bf G+k,G'+k}\\ ! \delta O_{\bf G,G'}^{\alpha}&=i({\bf G+k})O^{\alpha}_{\bf G+k,G'+k} ! \end{align*} ! where ${\bf G}$ runs over the APW indices and ${\bf G'}$ runs over the ! local-orbital indices. There is no contribution from the ! local-orbital-local-orbital part of the matrices. We can now write the IBS ! correction in terms of the basis of first-variational states as ! \begin{align*} ! {\bf F}_{ij}^{\alpha{\bf k}}=\sum_{\bf G,G'} ! b^{i{\bf k}*}_{\bf G}b^{j{\bf k}}_{\bf G'}\left( ! \delta H_{\bf G,G'}^{\alpha}-\epsilon_j\delta O_{\bf G,G'}^{\alpha}\right), ! \end{align*} ! where $b^{i{\bf k}}$ is the first-variational eigenvector. ! Finally, the ${\bf F}_{ij}^{\alpha{\bf k}}$ matrix elements can be ! multiplied by the second-variational coefficients, and contracted over all ! indices to obtain the IBS force: ! \begin{align*} ! {\bf F}_{\rm IBS}^{\alpha}=\sum_{\bf k}w_{\bf k}\sum_{l\sigma}n_{l{\bf k}} ! \sum_{ij}c_{\sigma i}^{l{\bf k}*}c_{\sigma j}^{l{\bf k}} ! {\bf F}_{ij}^{\alpha{\bf k}} ! +\int_{\rm MT_{\alpha}}v_s({\bf r})\nabla\left[\rho({\bf r}) ! -\rho^{\alpha}_{\rm core}({\bf r})\right]\,d{\bf r}, ! \end{align*} ! where $c^{l{\bf k}}$ are the second-variational coefficients, $w_{\bf k}$ ! are the $k$-point weights, $n_{l{\bf k}}$ are the occupancies. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) ! Fixed problem with second-variational forces, May 2008 (JKD) !EOP !BOC implicit none ! local variables integer ik,idm,ispn integer is,ias,nr,nri integer np,i,j,nthd real(8) ca,t1,t2 real(8) ts0,ts1 ! allocatable arrays real(8), allocatable :: rfmt1(:,:),rfmt2(:),grfmt(:,:) complex(8), allocatable :: zfmt(:),gzfmt(:,:) ! external functions real(8), external :: rfmtinp,rfmtint call timesec(ts0) allocate(zfmt(npmtmax),gzfmt(npmtmax,3)) ! coupling constant of the external A-field (-1/c) ca=-1.d0/solsc !---------------------------------! ! Hellmann-Feynman forces ! !---------------------------------! do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) call rtozfmt(nr,nri,vclmt(:,ias),zfmt) call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),zfmt,npmtmax,gzfmt) ! force from Coulomb potential forcehf(:,ias)=-spzn(is)*dble(gzfmt(1,:))*y00 ! force on nuclei from time-dependent E-field if (tafieldt) then do i=1,3 t1=(chgcr(is)+spzn(is))*efieldt(i) forcehf(i,ias)=forcehf(i,ias)+t1 end do end if end do deallocate(zfmt,gzfmt) ! symmetrise Hellmann-Feynman forces call symveca(forcehf) !----------------------------------! ! IBS correction to forces ! !----------------------------------! allocate(grfmt(npmtmax,3)) ! set the IBS forces to zero forceibs(:,:)=0.d0 ! compute k-point dependent contribution to the IBS forces call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call forcek(ik) end do !$OMP END PARALLEL DO call freethd(nthd) ! add IBS forces from each process and redistribute if (np_mpi.gt.1) then call mpi_allreduce(mpi_in_place,forceibs,3*natmtot,mpi_double_precision, & mpi_sum,mpicom,ierror) end if if (tafieldt) then t2=afieldt(1,itimes)**2+afieldt(2,itimes)**2+afieldt(3,itimes)**2 t2=t2*ca**2 end if ! integral of Kohn-Sham potential with gradient of density do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rhomt(:,ias),npmtmax,grfmt) do i=1,3 t1=rfmtinp(nr,nri,wrmt(:,is),vsmt(:,ias),grfmt(:,i)) ! remove contribution from gauge correction to the current density if (tafieldt) then t1=t1-t2*rfmtint(nr,nri,wrmt(:,is),grfmt(:,i)) end if forceibs(i,ias)=forceibs(i,ias)+t1 end do end do ! integral of Kohn-Sham magnetic field with magnetisation gradient if (spinpol) then allocate(rfmt1(npmtmax,natmtot)) do idm=1,ndmag do ias=1,natmtot is=idxis(ias) call rfsht(nrcmt(is),nrcmti(is),bsmt(:,ias,idm),rfmt1(:,ias)) end do call rfmtctof(rfmt1) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),magmt(:,ias,idm), & npmtmax,grfmt) do i=1,3 t1=rfmtinp(nr,nri,wrmt(:,is),rfmt1(:,ias),grfmt(:,i)) forceibs(i,ias)=forceibs(i,ias)+t1 end do end do end do deallocate(rfmt1) end if ! integral of Kohn-Sham meta-GGA potential with kinetic energy density gradient if (xcgrad.eq.4) then allocate(rfmt1(npmtmax,natmtot),rfmt2(npmtmax)) do ias=1,natmtot is=idxis(ias) call rfsht(nrcmt(is),nrcmti(is),wsmt(:,ias),rfmt1(:,ias)) end do call rfmtctof(rfmt1) do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) rfmt2(1:np)=taumt(1:np,ias,ispn)-taucr(1:np,ias,ispn) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt2,npmtmax,grfmt) do i=1,3 t1=rfmtinp(nr,nri,wrmt(:,is),rfmt1(:,ias),grfmt(:,i)) forceibs(i,ias)=forceibs(i,ias)+t1 end do end do end do deallocate(rfmt1,rfmt2) end if ! time-dependent vector potential times integral of the gradient of the current ! density over the muffin-tin if (tafieldt) then do j=1,3 t1=ca*afieldt(j,itimes) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),jrmt(:,ias,j),npmtmax, & grfmt) do i=1,3 t2=rfmtint(nr,nri,wrmt(:,is),grfmt(:,i)) forceibs(i,ias)=forceibs(i,ias)+t1*t2 end do end do end do end if ! symmetrise IBS forces call symveca(forceibs) ! total force on each atom do ias=1,natmtot forcetot(:,ias)=forcehf(:,ias)+forceibs(:,ias) end do ! symmetrise total forces call symveca(forcetot) ! compute the average force do i=1,3 forceav(i)=0.d0 do ias=1,natmtot forceav(i)=forceav(i)+forcetot(i,ias) end do forceav(i)=forceav(i)/dble(natmtot) end do ! remove the average force, if required, to prevent translation of atomic basis if (tfav0) then do ias=1,natmtot forcetot(:,ias)=forcetot(:,ias)-forceav(:) end do end if ! zero force on atoms with negative mass do ias=1,natmtot is=idxis(ias) if (spmass(is).le.0.d0) forcetot(:,ias)=0.d0 end do ! compute maximum force magnitude over all atoms forcemax=0.d0 do ias=1,natmtot t1=sqrt(forcetot(1,ias)**2+forcetot(2,ias)**2+forcetot(3,ias)**2) if (t1.gt.forcemax) forcemax=t1 end do deallocate(grfmt) call timesec(ts1) timefor=timefor+ts1-ts0 ! write total forces to test file call writetest(750,'total forces',nv=3*natmtot,tol=1.d-3,rva=forcetot) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genvbmatk.f900000644000000000000000000000013014061636517015220 xustar0029 mtime=1623670095.24010219 30 atime=1623670094.002103339 29 ctime=1623670095.24010219 elk-7.2.42/src/genvbmatk.f900000644002504400250440000001021014061636517017251 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvbmatk(vmt,vir,bmt,bir,ngp,igpig,wfmt,ld,wfgp,vbmat) use modmain use modomp implicit none ! arguments ! the potential and field are multiplied by the radial integration weights in ! the muffin-tin and by the characteristic function in the interstitial region real(8), intent(in) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(in) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) integer, intent(in) :: ld complex(8), intent(in) :: wfgp(ld,nspinor,nstsv) complex(8), intent(out) :: vbmat(nstsv,nstsv) ! local variables integer ist,jst,ispn,jspn integer is,ias,npc,igp,nthd ! automatic arrays complex(8) wfmt2(npcmtmax,nspinor),z(ngkmax) ! allocatable arrays complex(8), allocatable :: wfir1(:,:),wfir2(:,:) ! external functions complex(8), external :: zdotc ! zero the matrix elements vbmat(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfmt2,ias,is,npc,ist) & !$OMP NUM_THREADS(nthd) do jst=1,nstsv do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! apply local potential and magnetic field to spinor wavefunction if (ncmag) then ! non-collinear case call vbmk1(npc,vmt(:,ias),bmt(:,ias,1),bmt(:,ias,2),bmt(:,ias,3), & wfmt(:,ias,1,jst),wfmt(:,ias,2,jst),wfmt2,wfmt2(:,2)) else ! collinear case call vbmk2(npc,vmt(:,ias),bmt(:,ias,1),wfmt(:,ias,1,jst), & wfmt(:,ias,2,jst),wfmt2,wfmt2(:,2)) end if ! compute the inner products do ist=1,jst vbmat(ist,jst)=vbmat(ist,jst) & +zdotc(npc,wfmt(:,ias,1,ist),1,wfmt2,1) & +zdotc(npc,wfmt(:,ias,2,ist),1,wfmt2(:,2),1) end do end do end do !$OMP END PARALLEL DO call freethd(nthd) !---------------------------! ! interstitial part ! !---------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir1,wfir2,z) & !$OMP PRIVATE(ispn,jspn,igp,ist) & !$OMP NUM_THREADS(nthd) allocate(wfir1(ngtot,nspinor),wfir2(ngtot,nspinor)) !$OMP DO do jst=1,nstsv ! Fourier transform wavefunction to real-space do ispn=1,nspinor jspn=jspnfv(ispn) wfir1(:,ispn)=0.d0 do igp=1,ngp(jspn) wfir1(igfft(igpig(igp,jspn)),ispn)=wfgp(igp,ispn,jst) end do call zfftifc(3,ngridg,1,wfir1(:,ispn)) end do ! apply local potential and magnetic field to spinor wavefunction if (ncmag) then ! non-collinear case call vbmk1(ngtot,vir,bir,bir(:,2),bir(:,3),wfir1,wfir1(:,2),wfir2, & wfir2(:,2)) else ! collinear case call vbmk2(ngtot,vir,bir,wfir1,wfir1(:,2),wfir2,wfir2(:,2)) end if do ispn=1,nspinor jspn=jspnfv(ispn) ! Fourier transform to G+p-space call zfftifc(3,ngridg,-1,wfir2(:,ispn)) do igp=1,ngp(jspn) z(igp)=wfir2(igfft(igpig(igp,jspn)),ispn) end do do ist=1,jst vbmat(ist,jst)=vbmat(ist,jst)+zdotc(ngp(jspn),wfgp(:,ispn,ist),1,z,1) end do end do end do !$OMP END DO deallocate(wfir1,wfir2) !$OMP END PARALLEL call freethd(nthd) ! lower triangular part do ist=1,nstsv do jst=1,ist-1 vbmat(ist,jst)=conjg(vbmat(jst,ist)) end do end do return contains pure subroutine vbmk1(n,v,b1,b2,b3,wf11,wf12,wf21,wf22) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: v(n),b1(n),b2(n),b3(n) complex(8), intent(in) :: wf11(n),wf12(n) complex(8), intent(out) :: wf21(n),wf22(n) ! local variables integer i complex(8) z1 do i=1,n z1=cmplx(b1(i),b2(i),8) wf21(i)=(v(i)+b3(i))*wf11(i)+conjg(z1)*wf12(i) wf22(i)=(v(i)-b3(i))*wf12(i)+z1*wf11(i) end do end subroutine pure subroutine vbmk2(n,v,b,wf11,wf12,wf21,wf22) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: v(n),b(n) complex(8), intent(in) :: wf11(n),wf12(n) complex(8), intent(out) :: wf21(n),wf22(n) ! local variables integer i do i=1,n wf21(i)=(v(i)+b(i))*wf11(i) wf22(i)=(v(i)-b(i))*wf12(i) end do end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqn.f900000644000000000000000000000013214061636517014362 xustar0030 mtime=1623670095.242102188 30 atime=1623670094.004103337 30 ctime=1623670095.242102188 elk-7.2.42/src/eveqn.f900000644002504400250440000000416214061636517016422 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: eveqn subroutine eveqn(ik,evalfv,evecfv,evecsv) ! !USES: use modmain use modulr ! !INPUT/OUTPUT PARAMETERS: ! ik : k-point number (in,integer) ! evalfv : first-variational eigenvalues (out,real(nstfv)) ! evecfv : first-variational eigenvectors (out,complex(nmatmax,nstfv)) ! evecsv : second-variational eigenvectors (out,complex(nstsv,nstsv)) ! !DESCRIPTION: ! Solves the first- and second-variational eigenvalue equations. See routines ! {\tt match}, {\tt eveqnfv}, {\tt eveqnss} and {\tt eveqnsv}. ! ! !REVISION HISTORY: ! Created March 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ik real(8), intent(out) :: evalfv(nstfv,nspnfv) complex(8), intent(out) :: evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv) ! local variables integer jspn ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:,:) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) ! loop over first-variational spins (nspnfv=2 for spin-spirals only) do jspn=1,nspnfv ! find the matching coefficients call match(ngk(jspn,ik),vgkc(:,:,jspn,ik),gkc(:,jspn,ik), & sfacgk(:,:,jspn,ik),apwalm(:,:,:,:,jspn)) ! solve the first-variational eigenvalue equation if (tefvit) then ! iteratively call eveqnit(nmat(jspn,ik),ngk(jspn,ik),igkig(:,jspn,ik),vkl(:,ik), & vgkl(:,:,jspn,ik),vgkc(:,:,jspn,ik),apwalm(:,:,:,:,jspn),evalfv(:,jspn), & evecfv(:,:,jspn)) else ! directly call eveqnfv(nmat(jspn,ik),ngk(jspn,ik),igkig(:,jspn,ik),vkc(:,ik), & vgkc(:,:,jspn,ik),apwalm(:,:,:,:,jspn),evalfv(:,jspn),evecfv(:,:,jspn)) end if end do if (spinsprl) then ! solve the spin-spiral second-variational eigenvalue equation call eveqnss(ngk(:,ik),igkig(:,:,ik),apwalm,evalfv,evecfv,evalsv(:,ik),evecsv) else ! solve the second-variational eigenvalue equation call eveqnsv(ngk(1,ik),igkig(:,1,ik),vgkc(:,:,1,ik),apwalm,evalfv,evecfv, & evalsv(:,ik),evecsv) end if deallocate(apwalm) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/forcek.f900000644000000000000000000000013214061636517014515 xustar0030 mtime=1623670095.243102188 30 atime=1623670094.006103336 30 ctime=1623670095.243102188 elk-7.2.42/src/forcek.f900000644002504400250440000001176314061636517016562 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: forcek ! !INTERFACE: subroutine forcek(ik) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! ik : reduced k-point number (in,integer) ! !DESCRIPTION: ! Computes the {\bf k}-dependent contribution to the incomplete basis set ! (IBS) force. See the calling routine {\tt force} for a full description. ! ! !REVISION HISTORY: ! Created June 2006 (JKD) ! Updated for spin-spiral case, May 2007 (Francesco Cricchio and JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ik ! local variables integer ispn0,ispn1,ispn,jspn integer n,nm,nm2,is,ias,ist,jst integer j1,j2,j3,ig,i,j,k,l integer nthd real(8) v1,v2,v3,sm,t1 complex(8) z1,z2 ! automatic arrays real(8) evalfv(nstfv,nspnfv) complex(8) vh(nmatmax),vo(nmatmax) complex(8) ffv(nstfv,nstfv),y(nstfv) ! allocatable arrays integer, allocatable :: ijg(:) real(8), allocatable :: dp(:) complex(8), allocatable :: apwalm(:,:,:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) complex(8), allocatable :: h(:),o(:),dlh(:),dlo(:) ! external functions complex(8), external :: zdotc nm2=nmatmax**2 ! allocate local arrays allocate(ijg(nm2),dp(nm2)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv,nspnfv)) allocate(h(nm2),o(nm2),dlh(nm2),dlo(nm2)) ! get the eigenvalues/vectors from file call getevalfv(filext,ik,vkl(:,ik),evalfv) call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) if (tevecsv) then allocate(evecsv(nstsv,nstsv)) call getevecsv(filext,ik,vkl(:,ik),evecsv) end if ! loop over first-variational spin components do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if n=ngk(jspn,ik) nm=nmat(jspn,ik) do j=1,n k=(j-1)*nm ig=igkig(j,jspn,ik) j1=ivg(1,ig); j2=ivg(2,ig); j3=ivg(3,ig) v1=0.5d0*vgkc(1,j,jspn,ik) v2=0.5d0*vgkc(2,j,jspn,ik) v3=0.5d0*vgkc(3,j,jspn,ik) do i=1,j k=k+1 ig=igkig(i,jspn,ik) ijg(k)=ivgig(ivg(1,ig)-j1,ivg(2,ig)-j2,ivg(3,ig)-j3) dp(k)=vgkc(1,i,jspn,ik)*v1 & +vgkc(2,i,jspn,ik)*v2 & +vgkc(3,i,jspn,ik)*v3 end do end do ! find the matching coefficients call match(n,vgkc(:,:,jspn,ik),gkc(:,jspn,ik),sfacgk(:,:,jspn,ik),apwalm) ! zero the local-orbital-local-orbital contribution do j=n+1,nm k=(j-1)*nm+n do i=n+1,j k=k+1 dlh(k)=0.d0 dlo(k)=0.d0 end do end do ! loop over species and atoms do ias=1,natmtot is=idxis(ias) ! Hamiltonian and overlap matrices h(:)=0.d0 call hmlaa(.false.,is,ias,n,apwalm(:,:,:,ias),nm,h) call hmlalo(is,ias,n,apwalm(:,:,:,ias),nm,h) o(:)=0.d0 call olpaa(.false.,is,n,apwalm(:,:,:,ias),nm,o) call olpalo(is,ias,n,apwalm(:,:,:,ias),nm,o) ! loop over Cartesian directions do l=1,3 ! APW-APW contribution do j=1,n k=(j-1)*nm do i=1,j k=k+1 ig=ijg(k) t1=vgc(l,ig) z1=-ffacg(ig,is)*conjg(sfacg(ig,ias)) z2=t1*(dp(k)*z1+h(k)) dlh(k)=cmplx(-aimag(z2),dble(z2),8) z2=t1*(z1+o(k)) dlo(k)=cmplx(-aimag(z2),dble(z2),8) end do end do ! APW-local-orbital contribution do j=n+1,nm k=(j-1)*nm do i=1,n k=k+1 t1=vgkc(l,i,jspn,ik) z1=t1*h(k) dlh(k)=cmplx(-aimag(z1),dble(z1),8) z1=t1*o(k) dlo(k)=cmplx(-aimag(z1),dble(z1),8) end do end do ! compute the force matrix elements in the first-variational basis call holdthd(nstfv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(vh,vo,t1,ist,z1,z2) & !$OMP NUM_THREADS(nthd) do jst=1,nstfv call zhemv('U',nm,zone,dlh,nm,evecfv(:,jst,jspn),1,zzero,vh,1) call zhemv('U',nm,zone,dlo,nm,evecfv(:,jst,jspn),1,zzero,vo,1) t1=evalfv(jst,jspn) do ist=1,nstfv z1=zdotc(nm,evecfv(:,ist,jspn),1,vh,1) z2=zdotc(nm,evecfv(:,ist,jspn),1,vo,1) ffv(ist,jst)=z1-t1*z2 end do end do !$OMP END PARALLEL DO call freethd(nthd) ! compute the force using the second-variational coefficients if required sm=0.d0 if (tevecsv) then ! spin-polarised case do j=1,nstsv do ispn=ispn0,ispn1 i=(ispn-1)*nstfv+1 call zgemv('N',nstfv,nstfv,zone,ffv,nstfv,evecsv(i,j),1,zzero,y,1) z1=zdotc(nstfv,evecsv(i,j),1,y,1) sm=sm+occsv(j,ik)*dble(z1) end do end do else ! spin-unpolarised case do j=1,nstsv sm=sm+occsv(j,ik)*dble(ffv(j,j)) end do end if !$OMP ATOMIC forceibs(l,ias)=forceibs(l,ias)+wkpt(ik)*sm ! end loop over Cartesian components end do ! end loop over atoms and species end do ! end loop over first-variational spins end do deallocate(ijg,dp,apwalm,evecfv) deallocate(h,o,dlh,dlo) if (tevecsv) deallocate(evecsv) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeepsinv.f900000644000000000000000000000013214061636517015623 xustar0030 mtime=1623670095.244102186 30 atime=1623670094.007103335 30 ctime=1623670095.244102186 elk-7.2.42/src/writeepsinv.f900000644002504400250440000000202414061636517017656 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeepsinv use modmain use modmpi implicit none ! local variables integer ik ! initialise global variables call init0 call init1 call init2 call init3 ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the inverse dielectric function and write to file call epsinv if (mp_mpi) then write(*,*) write(*,'("Info(writeepsinv):")') write(*,'(" inverse RPA dielectric function, eps^(-1)(G,G'',q,w), written to & &EPSINV.OUT")') end if end subroutine elk-7.2.42/src/PaxHeaders.21776/olprad.f900000644000000000000000000000013214061636517014525 xustar0030 mtime=1623670095.246102185 30 atime=1623670094.009103333 30 ctime=1623670095.246102185 elk-7.2.42/src/olprad.f900000644002504400250440000000330514061636517016563 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: olprad ! !INTERFACE: subroutine olprad ! !USES: use modmain ! !DESCRIPTION: ! Calculates the radial overlap integrals of the APW and local-orbital basis ! functions. In other words, for atom $\alpha$, it computes integrals of the ! form ! $$ o^{\alpha}_{qp}=\int_0^{R_i}u^{\alpha}_{q;l_p}(r)v^{\alpha}_p(r)r^2dr $$ ! and ! $$ o^{\alpha}_{pp'}=\int_0^{R_i}v^{\alpha}_p(r)v^{\alpha}_{p'}(r)r^2dr, ! \quad l_p=l_{p'} $$ ! where $u^{\alpha}_{q;l}$ is the $q$th APW radial function for angular ! momentum $l$; and $v^{\alpha}_p$ is the $p$th local-orbital radial function ! and has angular momentum $l_p$. ! ! !REVISION HISTORY: ! Created November 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ias,nr integer ilo,jlo,l,io do ias=1,natmtot is=idxis(ias) nr=nrmt(is) !-------------------------------------! ! APW-local-orbital integrals ! !-------------------------------------! do ilo=1,nlorb(is) l=lorbl(ilo,is) do io=1,apword(l,is) oalo(io,ilo,ias)=sum(apwfr(1:nr,1,io,l,ias)*lofr(1:nr,1,ilo,ias) & *wrmt(1:nr,is)) end do end do !-----------------------------------------------! ! local-orbital-local-orbital integrals ! !-----------------------------------------------! do ilo=1,nlorb(is) l=lorbl(ilo,is) do jlo=1,nlorb(is) if (lorbl(jlo,is).eq.l) then ololo(ilo,jlo,ias)=sum(lofr(1:nr,1,ilo,ias)*lofr(1:nr,1,jlo,ias) & *wrmt(1:nr,is)) end if end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/polark.f900000644000000000000000000000013214061636517014534 xustar0030 mtime=1623670095.247102184 30 atime=1623670094.011103331 30 ctime=1623670095.247102184 elk-7.2.42/src/polark.f900000644002504400250440000000346714061636517016603 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine polark(ik,l,expqmt,pl) use modmain implicit none ! arguments integer, intent(in) :: ik,l complex(8), intent(in) :: expqmt(npcmtmax,natmtot) real(8), intent(inout) :: pl ! local variables integer jk,nst,ist real(8) vkql(3) complex(8) z1 ! automatic arrays integer idx(nstsv),ngp(nspnfv) ! allocatable arrays integer, allocatable :: igpig(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: wfmtq(:,:,:,:),wfgkq(:,:,:) complex(8), allocatable :: oq(:,:) ! external functions complex(8), external :: zmdet ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! find the adjacent k-point in lattice coordinates vkql(:)=vkl(:,ik) vkql(l)=vkql(l)+1.d0/dble(ngridk(l)) ! count and index the occupied states nst=0 do ist=1,nstsv if (evalsv(ist,jk).gt.efermi) cycle nst=nst+1 idx(nst)=ist end do allocate(igpig(ngkmax,nspnfv)) ! generate the wavefunctions for occupied states at k allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfir(ngtot,nspinor,nst)) call genwfsvp(.false.,.false.,nst,idx,ngridg,igfft,vkl(:,ik),ngp,igpig,wfmt, & ngtot,wfir) ! generate the wavefunctions for occupied states at k+q allocate(wfmtq(npcmtmax,natmtot,nspinor,nst),wfgkq(ngkmax,nspinor,nst)) call genwfsvp(.false.,.true.,nst,idx,ngridg,igfft,vkql,ngp,igpig,wfmtq,ngkmax, & wfgkq) ! determine the overlap matrix for all occupied states allocate(oq(nst,nst)) call genolpq(nst,expqmt,ngp,igpig,wfmt,wfir,wfmtq,wfgkq,oq) ! compute the determinant of the matrix z1=zmdet(nst,oq) ! determine the phase of the determinant and add to total polarisation pl=pl+atan2(aimag(z1),dble(z1)) deallocate(igpig,wfmt,wfir,wfmtq,wfgkq,oq) end subroutine elk-7.2.42/src/PaxHeaders.21776/zfmtinp.f900000644000000000000000000000013114061636517014732 xustar0030 mtime=1623670095.249102182 29 atime=1623670094.01210333 30 ctime=1623670095.249102182 elk-7.2.42/src/zfmtinp.f900000644002504400250440000000367114061636517016777 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zfmtinp ! !INTERFACE: complex(8) function zfmtinp(nr,nri,wr,zfmt1,zfmt2) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on the inner part of the muffin-tin (in,integer) ! wr : weights for integration on radial mesh (in,real(nr)) ! zfmt1 : first complex muffin-tin function in spherical harmonics ! (in,complex(*)) ! zfmt2 : second complex muffin-tin function (in,complex(*)) ! !DESCRIPTION: ! Calculates the inner product of two complex fuctions in the muffin-tin. In ! other words, given two complex functions of the form ! $$ f({\bf r})=\sum_{l=0}^{l_{\rm max}}\sum_{m=-l}^{l}f_{lm}(r)Y_{lm} ! (\hat{\bf r}), $$ ! the function returns ! $$ I=\sum_{l=0}^{l_{\rm max}}\sum_{m=-l}^{l}\int f_{lm}^{1*}(r) ! f_{lm}^2(r)r^2\,dr\;. $$ ! ! !REVISION HISTORY: ! Created November 2003 (Sharma) ! Modified, September 2013 (JKD) ! Modified for packed functions, June 2016 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) complex(8), intent(in) :: zfmt1(*),zfmt2(*) ! local variables integer ir,i ! external functions complex(8), external :: zdotc ! compute the dot-products for each radial point and integrate over r zfmtinp=0.d0 i=1 if (lmaxi.eq.1) then do ir=1,nri zfmtinp=zfmtinp+wr(ir) & *(conjg(zfmt1(i))*zfmt2(i) & +conjg(zfmt1(i+1))*zfmt2(i+1) & +conjg(zfmt1(i+2))*zfmt2(i+2) & +conjg(zfmt1(i+3))*zfmt2(i+3)) i=i+4 end do else do ir=1,nri zfmtinp=zfmtinp+wr(ir)*zdotc(lmmaxi,zfmt1(i),1,zfmt2(i),1) i=i+lmmaxi end do end if do ir=nri+1,nr zfmtinp=zfmtinp+wr(ir)*zdotc(lmmaxo,zfmt1(i),1,zfmt2(i),1) i=i+lmmaxo end do end function !EOC elk-7.2.42/src/PaxHeaders.21776/hflocal.f900000644000000000000000000000013214061636517014654 xustar0030 mtime=1623670095.250102181 30 atime=1623670094.014103328 30 ctime=1623670095.250102181 elk-7.2.42/src/hflocal.f900000644002504400250440000000335414061636517016716 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hflocal(vmt,vir,bmt,bir) use modmain implicit none ! arguments real(8), intent(out) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(out) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) ! local variables integer idm,is,ias integer np,nrc,nrci ! automatic arrays real(8) rfmt1(npmtmax),rfmt2(npcmtmax) ! compute the Coulomb potential call potcoul ! convert to spherical coordinates and store in output arrays if (hybrid) then ! hybrid functional case call potxc(.true.,xctype,rhomt,rhoir,magmt,magir,taumt,tauir,exmt,exir,ecmt, & ecir,vxcmt,vxcir,bxcmt,bxcir,wxcmt,wxcir) do ias=1,natmtot is=idxis(ias) np=npmt(is) nrc=nrcmt(is) nrci=nrcmti(is) rfmt1(1:np)=vclmt(1:np,ias)+vxcmt(1:np,ias) call rfmtftoc(nrc,nrci,rfmt1,rfmt2) call rbsht(nrc,nrci,rfmt2,vmt(:,ias)) call rfcmtwr(nrc,nrci,wrcmt(:,is),vmt(:,ias)) end do vir(:)=(vclir(:)+vxcir(:))*cfunir(:) if (spinpol) then do idm=1,ndmag do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) call rfmtftoc(nrc,nrci,bxcmt(:,ias,idm),rfmt1) call rbsht(nrc,nrci,rfmt1,bmt(:,ias,idm)) call rfcmtwr(nrc,nrci,wrcmt(:,is),bmt(:,ias,idm)) end do bir(:,idm)=bxcir(:,idm)*cfunir(:) end do end if else ! normal Hartree-Fock case do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) call rfmtftoc(nrc,nrci,vclmt(:,ias),rfmt1) call rbsht(nrc,nrci,rfmt1,vmt(:,ias)) call rfcmtwr(nrc,nrci,wrcmt(:,is),vmt(:,ias)) end do vir(:)=vclir(:)*cfunir(:) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/mixbroyden.f900000644000000000000000000000013014061636517015422 xustar0029 mtime=1623670095.25110218 30 atime=1623670094.016103326 29 ctime=1623670095.25110218 elk-7.2.42/src/mixbroyden.f900000644002504400250440000000444214061636517017465 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine mixbroyden(iscl,n,msd,alpha,w0,nu,mu,f,df,u,a,d) use modomp implicit none ! arguments integer, intent(in) :: iscl,n,msd real(8), intent(in) :: alpha,w0 real(8), intent(inout) :: nu(n),mu(n,2) real(8), intent(inout) :: f(n,2),df(n,msd) real(8), intent(inout) :: u(n,msd) real(8), intent(inout) :: a(msd,msd) real(8), intent(out) :: d ! local variables integer jc,kp,kc integer k,l,m integer info,nthd real(8) t1 ! automatic arrays integer ipiv(msd) real(8) c(msd),beta(msd,msd),gamma(msd),work(msd) ! external functions real(8), external :: dnrm2 if (n.lt.1) then write(*,*) write(*,'("Error(mixbroyden): n < 1 : ",I8)') n write(*,*) stop end if if (msd.lt.2) then write(*,*) write(*,'("Error(mixbroyden): msd < 2 : ",I8)') msd write(*,*) stop end if ! initialise mixer if (iscl.le.0) then call dcopy(n,nu,1,mu,1) call dcopy(n,nu,1,mu(:,2),1) f(:,1)=0.d0 df(:,1)=0.d0 u(:,1)=0.d0 a(:,:)=0.d0 d=1.d0 return end if ! current subspace dimension m=min(iscl+1,msd) ! current index modulo m jc=mod(iscl,m)+1 ! previous index modulo 2 kp=mod(iscl-1,2)+1 ! current index modulo 2 kc=mod(iscl,2)+1 f(:,kc)=nu(:)-mu(:,kp) d=sum(f(:,kc)**2) d=sqrt(d/dble(n)) df(:,jc)=f(:,kc)-f(:,kp) t1=dnrm2(n,df(:,jc),1) if (t1.gt.1.d-8) t1=1.d0/t1 call dscal(n,t1,df(:,jc),1) u(:,jc)=alpha*df(:,jc)+t1*(mu(:,kp)-mu(:,kc)) call holdthd(m,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP DO do k=1,m c(k)=dot_product(df(:,k),f(:,kc)) end do !$OMP END DO NOWAIT !$OMP DO do k=1,m a(k,jc)=dot_product(df(:,jc),df(:,k)) a(jc,k)=a(k,jc) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) beta(:,:)=a(:,:) do k=1,m beta(k,k)=beta(k,k)+w0**2 end do ! invert beta call dgetrf(m,m,beta,msd,ipiv,info) if (info.eq.0) call dgetri(m,beta,msd,ipiv,work,m,info) if (info.ne.0) then write(*,*) write(*,'("Error(mixbroyden): could not invert matrix")') write(*,*) stop end if do l=1,m gamma(l)=0.d0 do k=1,m gamma(l)=gamma(l)+c(k)*beta(k,l) end do end do nu(:)=mu(:,kp)+alpha*f(:,kc) do l=1,m call daxpy(n,-gamma(l),u(:,l),1,nu,1) end do call dcopy(n,nu,1,mu(:,kc),1) end subroutine elk-7.2.42/src/PaxHeaders.21776/zmdet.f900000644000000000000000000000013214061636517014367 xustar0030 mtime=1623670095.253102178 30 atime=1623670094.017103325 30 ctime=1623670095.253102178 elk-7.2.42/src/zmdet.f900000644002504400250440000000124414061636517016425 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. complex(8) function zmdet(n,a) implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: a(n,n) ! local variables integer i,m,info ! automatic arrays integer ipiv(n) ! perform an LU factorisation of the input matrix call zgetrf(n,n,a,n,ipiv,info) ! multiply diagonal elements of U together zmdet=a(1,1) do i=2,n zmdet=zmdet*a(i,i) end do ! determine the sign from the number of row interchanges m=1 do i=1,n if (ipiv(i).ne.i) m=-m end do if (m.eq.-1) zmdet=-zmdet end function elk-7.2.42/src/PaxHeaders.21776/grad2rfmt.f900000644000000000000000000000013214061636517015134 xustar0030 mtime=1623670095.254102177 30 atime=1623670094.019103324 30 ctime=1623670095.254102177 elk-7.2.42/src/grad2rfmt.f900000644002504400250440000000301114061636517017164 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine grad2rfmt(nr,nri,ri,ri2,wcr,rfmt,g2rfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: ri(nr),ri2(nr),wcr(12,nr) real(8), intent(in) :: rfmt(*) real(8), intent(out) :: g2rfmt(*) ! local variables integer nro,iro,ir integer l,m,lm,npi,i real(8) t1 ! automatic arrays real(8) fr(nr),cf(3,nr) nro=nr-nri iro=nri+1 npi=lmmaxi*nri lm=0 do l=0,lmaxi t1=-dble(l*(l+1)) do m=-l,l lm=lm+1 ! use a cubic spline to compute radial derivatives i=lm do ir=1,nri fr(ir)=rfmt(i) i=i+lmmaxi end do do ir=iro,nr fr(ir)=rfmt(i) i=i+lmmaxo end do call splinew(nr,wcr,fr,cf) ! apply Laplacian i=lm do ir=1,nri g2rfmt(i)=2.d0*(ri(ir)*cf(1,ir)+cf(2,ir))+ri2(ir)*t1*rfmt(i) i=i+lmmaxi end do do ir=iro,nr g2rfmt(i)=2.d0*(ri(ir)*cf(1,ir)+cf(2,ir))+ri2(ir)*t1*rfmt(i) i=i+lmmaxo end do end do end do do l=lmaxi+1,lmaxo t1=-dble(l*(l+1)) do m=-l,l lm=lm+1 i=npi+lm do ir=iro,nr fr(ir)=rfmt(i) i=i+lmmaxo end do call splinew(nro,wcr(:,iro),fr(iro),cf(1,iro)) i=npi+lm do ir=iro,nr g2rfmt(i)=2.d0*(ri(ir)*cf(1,ir)+cf(2,ir))+ri2(ir)*t1*rfmt(i) i=i+lmmaxo end do end do end do ! apply smoothing if required call rfmtsm(msmooth,nr,nri,g2rfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/clebgor.f900000644000000000000000000000013214061636517014661 xustar0030 mtime=1623670095.256102175 30 atime=1623670094.021103322 30 ctime=1623670095.256102175 elk-7.2.42/src/clebgor.f900000644002504400250440000000331114061636517016714 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: clebgor ! !INTERFACE: real(8) function clebgor(j1,j2,j3,m1,m2,m3) ! !INPUT/OUTPUT PARAMETERS: ! j1, j2, j3 : angular momentum quantum numbers (in,integer) ! m1, m2, m3 : magnetic quantum numbers (in,integer) ! !DESCRIPTION: ! Returns the Clebsch-Gordon coefficients using the Wigner $3j$-symbols ! $$ C(J_1 J_2 J_3 | m_1 m_2 m_3)=(-1)^{J_1-J_2+m_3}\sqrt{2J_3+1} ! \begin{pmatrix} J_1 & J_2 & J_3 \\ m_1 & m_2 & -m_3 \end{pmatrix}. $$ ! Suitable for $J_i\le 50$. See {\tt wigner3j}. ! ! !REVISION HISTORY: ! Created September 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: j1,j2,j3 integer, intent(in) :: m1,m2,m3 ! external functions real(8), external :: wigner3j if ((j1.lt.0).or.(j2.lt.0).or.(j3.lt.0).or.(abs(m1).gt.j1).or.(abs(m2).gt.j2) & .or.(abs(m2).gt.j2).or.(abs(m3).gt.j3)) then write(*,*) write(*,'("Error(clebgor): non-physical arguments :")') write(*,'("j1 = ",I8," j2 = ",I8," j3 = ",I8)') j1,j2,j3 write(*,'("m1 = ",I8," m2 = ",I8," m3 = ",I8)') m1,m2,m3 write(*,*) stop end if if ((j1.eq.0).and.(j2.eq.0).and.(j3.eq.0)) then clebgor=1.d0 return end if if ((j1.gt.50).or.(j2.gt.50).or.(j3.gt.50)) then write(*,*) write(*,'("Error(clebgor): angular momenta out of range : ",3I8)') j1,j2,j3 write(*,*) stop end if if ((m1+m2.ne.m3).or.(j1+j2.lt.j3).or.(j2+j3.lt.j1).or.(j1+j3.lt.j2)) then clebgor=0.d0 return end if clebgor=sqrt(dble(2*j3+1))*wigner3j(j1,j2,j3,m1,m2,-m3) if (mod(j1-j2+m3,2).ne.0) clebgor=-clebgor end function !EOC elk-7.2.42/src/PaxHeaders.21776/rfirctof.f900000644000000000000000000000013214061636517015062 xustar0030 mtime=1623670095.257102174 30 atime=1623670094.022103321 30 ctime=1623670095.257102174 elk-7.2.42/src/rfirctof.f900000644002504400250440000000140514061636517017117 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rfirctof(rfirc,rfir) use modmain implicit none ! arguments real(8), intent(in) :: rfirc(ngtc) real(8), intent(out) :: rfir(ngtot) ! local variables integer ig ! allocatable arrays complex(8), allocatable :: zfftc(:),zfft(:) allocate(zfftc(ngtc),zfft(ngtot)) ! Fourier transform function on coarse grid to G-space zfftc(:)=rfirc(:) call zfftifc(3,ngdgc,-1,zfftc) ! Fourier transform to fine real-space grid zfft(:)=0.d0 do ig=1,ngvc zfft(igfft(ig))=zfftc(igfc(ig)) end do call zfftifc(3,ngridg,1,zfft) ! output real function rfir(:)=dble(zfft(:)) deallocate(zfftc,zfft) end subroutine elk-7.2.42/src/PaxHeaders.21776/effmass.f900000644000000000000000000000013214061636517014670 xustar0030 mtime=1623670095.258102174 30 atime=1623670094.024103319 30 ctime=1623670095.258102174 elk-7.2.42/src/effmass.f900000644002504400250440000001130114061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine effmass use modmain use modomp use modtest implicit none ! local variables integer ik0,ik,ist,info integer i,j,k,l,m,n,nthd integer i1,i2,i3,j1,j2,j3 real(8) d(3,3),em(3,3) real(8) v1(3),v2(3) real(8) w(3),work(9) ! allocatable arrays integer, allocatable :: ipiv(:) real(8), allocatable :: a(:,:),b(:,:,:,:),c(:,:,:),evalfv(:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) ! initialise universal variables call init0 call init1 allocate(ipiv(nkpt)) allocate(a(nkpt,nkpt)) n=2*ndspem+1 allocate(b(0:n-1,0:n-1,0:n-1,nstsv)) allocate(c(0:n-1,0:n-1,0:n-1)) ! read density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ik0=0 ! begin parallel loop over k-points call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evalfv,evecfv,evecsv) & !$OMP PRIVATE(i1,i2,i3,j1,j2,j3,ist) & !$OMP NUM_THREADS(nthd) allocate(evalfv(nstfv,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv)) allocate(evecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkpt i1=ivk(1,ik); i2=ivk(2,ik); i3=ivk(3,ik) if ((i1.eq.0).and.(i2.eq.0).and.(i3.eq.0)) ik0=ik ! solve the first- and second-variational eigenvalue equations call eveqn(ik,evalfv,evecfv,evecsv) ! copy eigenvalues to new array j1=i1+ndspem; j2=i2+ndspem; j3=i3+ndspem do ist=1,nstsv b(j1,j2,j3,ist)=evalsv(ist,ik) end do end do !$OMP END DO deallocate(evalfv,evecfv,evecsv) !$OMP END PARALLEL call freethd(nthd) ! set up polynomial matrix i=0 do i3=-ndspem,ndspem do i2=-ndspem,ndspem do i1=-ndspem,ndspem i=i+1 v1(1)=dble(i1); v1(2)=dble(i2); v1(3)=dble(i3) v1(:)=v1(:)*deltaem j=0 v2(3)=1.d0 do j3=0,n-1 v2(2)=1.d0 do j2=0,n-1 v2(1)=1.d0 do j1=0,n-1 j=j+1 a(i,j)=v2(1)*v2(2)*v2(3) v2(1)=v2(1)*v1(1) end do v2(2)=v2(2)*v1(2) end do v2(3)=v2(3)*v1(3) end do end do end do end do ! solve for the polynomial coefficients call dgesv(nkpt,nstsv,a,nkpt,ipiv,b,nkpt,info) if (info.ne.0) then write(*,*) write(*,'("Error(effmass): could not determine polynomial coefficients")') write(*,'(" DGESV returned INFO = ",I8)') info write(*,*) stop end if open(50,file='EFFMASS.OUT',form='FORMATTED') write(50,*) write(50,'("(effective mass matrices are in Cartesian coordinates)")') write(50,*) write(50,'("k-point (lattice coordinates) :")') write(50,'(3G18.10)') vklem write(50,*) write(50,'("k-point (Cartesian coordinates) :")') call r3mv(bvec,vklem,v1) write(50,'(3G18.10)') v1 ! begin loop over states do ist=1,nstsv ! compute matrix of derivatives with respect to k-vector do k=1,3 do l=1,3 c(:,:,:)=b(:,:,:,ist) do i=1,2 if (i.eq.1) then m=k else m=l end if if (m.eq.1) then do j=0,n-2 c(j,:,:)=dble(j+1)*c(j+1,:,:) end do c(n-1,:,:)=0.d0 else if (m.eq.2) then do j=0,n-2 c(:,j,:)=dble(j+1)*c(:,j+1,:) end do c(:,n-1,:)=0.d0 else if (m.eq.3) then do j=0,n-2 c(:,:,j)=dble(j+1)*c(:,:,j+1) end do c(:,:,n-1)=0.d0 end if end do ! derivative evaluated at zero d(k,l)=c(0,0,0) end do end do write(50,*) write(50,*) write(50,'("State, eigenvalue : ",I6,G18.10)') ist,evalsv(ist,ik0) write(50,*) write(50,'(" matrix of eigenvalue derivatives with respect to k :")') do i=1,3 write(50,'(3G18.10)') (d(i,j),j=1,3) end do write(50,'(" trace : ",G18.10)') d(1,1)+d(2,2)+d(3,3) ! invert derivative matrix call r3minv(d,em) write(50,*) write(50,'(" effective mass tensor (inverse of derivative matrix) :")') do i=1,3 write(50,'(3G18.10)') (em(i,j),j=1,3) end do write(50,'(" trace : ",G18.10)') em(1,1)+em(2,2)+em(3,3) ! find the eigenvalues call dsyev('N','U',3,em,3,w,work,9,info) write(50,'(" eigenvalues :")') write(50,'(3G18.10)') w ! end loop over states end do close(50) write(*,*) write(*,'("Info(effmass):")') write(*,'(" Effective mass tensor for each state written to EFFMASS.OUT")') write(*,'(" for k-point (lattice) ",3G18.10)') vklem ! write the effective mass eigenvalues of the last state to test file call writetest(25,'effective mass',nv=3,tol=1.d-6,rva=w) deallocate(ipiv,a,b,c) end subroutine elk-7.2.42/src/PaxHeaders.21776/genffacgp.f900000644000000000000000000000013214061636517015164 xustar0030 mtime=1623670095.260102172 30 atime=1623670094.025103318 30 ctime=1623670095.260102172 elk-7.2.42/src/genffacgp.f900000644002504400250440000000116014061636517017217 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine genffacgp(is,gpc,ffacgp) use modmain implicit none ! arguments integer, intent(in) :: is real(8), intent(in) :: gpc(ngtot) real(8), intent(out) :: ffacgp(ngtot) ! local variables integer ig real(8) t1,t2 t1=fourpi/omega do ig=1,ngtot if (gpc(ig).gt.epslat) then t2=gpc(ig)*rmt(is) ffacgp(ig)=t1*(sin(t2)-t2*cos(t2))/(gpc(ig)**3) else ffacgp(ig)=(t1/3.d0)*rmt(is)**3 end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/zpotcoul.f900000644000000000000000000000013214061636517015123 xustar0030 mtime=1623670095.261102171 30 atime=1623670094.027103316 30 ctime=1623670095.261102171 elk-7.2.42/src/zpotcoul.f900000644002504400250440000002370214061636517017164 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zpotcoul ! !INTERFACE: subroutine zpotcoul(nr,nri,np,npi,ld1,rl,ngdg,igf,ngp,gpc,gclgp,ld2,jlgprmt, & ylmgp,sfacgp,zrhoir,ld3,zvclmt,zvclir) ! !USES: use modmain use modphonon ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial points for each species (in,integer(nspecies)) ! nri : number of radial points on inner part (in,integer(nspecies)) ! np : total number of points in muffin-tins (in,integer(nspecies)) ! npi : number of points on inner part (in,integer(nspecies)) ! ld1 : leading dimension (in,integer) ! rl : r^l on radial mesh for each species ! (in,real(ld1,-lmaxo-1:lmaxo+2,nspecies)) ! ngdg : G-vector grid sizes (in,integer(3)) ! igf : map from G-vector index to FFT array (in,integer(*)) ! ngp : number of G+p-vectors (in,integer) ! gpc : G+p-vector lengths (in,real(ngp)) ! gclgp : Coulomb Green's function in G+p-space (in,real(ngp)) ! ld2 : leading dimension (in,integer) ! jlgprmt : spherical Bessel functions for evergy G+p-vector and muffin-tin ! radius (in,real(0:lnpsd,ld2,nspecies)) ! ylmgp : spherical harmonics of the G+p-vectors (in,complex(lmmaxo,ngp)) ! sfacgp : structure factors of the G+p-vectors (in,complex(ld2,natmtot)) ! zrhoir : interstitial charge density (in,complex(*)) ! ld3 : leading dimension (in,integer) ! zvclmt : muffin-tin Coulomb potential, with the contribution from the ! isolated muffin-tin density precalculated and passed in ! (inout,complex(ld3,natmtot)) ! zvclir : interstitial Coulomb potential (out,complex(*)) ! !DESCRIPTION: ! Calculates the Coulomb potential of a complex charge density by solving ! Poisson's equation using the method of M. Weinert, {\it J. Math. Phys.} ! {\bf 22}, 2433 (1981). First, the multipole moments of the muffin-tin charge ! are determined for the $j$th atom of the $i$th species by ! $$ q_{ij;lm}^{\rm MT}=\int_0^{R_i}r^{l+2}\rho_{ij;lm}(r)dr+z_{ij}Y_{00} ! \,\delta_{l,0}\;, $$ ! where $R_i$ is the muffin-tin radius and $z_{ij}$ is a point charge located ! at the atom center (usually the nuclear charge, which should be taken as ! {\bf negative}). Next, the multipole moments of the continuation of the ! interstitial density, $\rho^{\rm I}$, into the muffin-tin are found with ! $$ q_{ij;lm}^{\rm I}=4\pi i^l R_i^{l+3}\sum_{\bf G}\frac{j_{l+1}(GR_i)} ! {GR_i}\rho^{\rm I}({\bf G})\exp(i{\bf G}\cdot{\bf r}_{ij})Y_{lm}^* ! (\hat{\bf G}), $$ ! remembering that ! $$ \lim_{x\rightarrow 0}\frac{j_{l+n}(x)}{x^n}=\frac{1}{(2n+1)!!} ! \delta_{l,0} $$ ! should be used for the case ${\bf G}=0$. A pseudocharge is now constructed ! which is equal to the real density in the interstitial region and whose ! multipoles are the difference between the real and interstitial muffin-tin ! multipoles. This pseudocharge density is smooth in the sense that it can be ! expanded in terms of the finite set of ${\bf G}$-vectors. In each muffin-tin ! the pseudocharge has the form ! $$ \rho_{ij}^{\rm P}({\bf r})=\rho^{\rm I}({\bf r}-{\bf r}_{ij})+\sum_{lm} ! \rho_{ij;lm}^{\rm P}\frac{1}{R_i^{l+3}}\left(\frac{r}{R_i}\right)^l\left(1- ! \frac{r^2}{R_i^2}\right)^{N_i}Y_{lm}(\hat{\bf r}) $$ ! where ! $$ \rho_{ij;lm}^{\rm P}=\frac{(2l+2N_i+3)!!}{2^N_iN_i!(2l+1)!!}\left( ! q_{ij;lm}^{\rm MT}-q_{ij;lm}^{\rm I}\right) $$ ! and $N_i\approx\frac{1}{4}R_iG_{\rm max}$ is generally a good choice. ! The pseudocharge in reciprocal space is given by ! $$ \rho^{\rm P}({\bf G})=\rho^{\rm I}({\bf G})+\sum_{ij;lm}2^{N_i}N_i! ! \frac{4\pi(-i)^l}{\Omega R_i^l}\frac{j_{l+N_i+1}(GR_i)}{(GR_i)^{N_i+1}} ! \rho_{ij;lm}^{\rm P}\exp(-i{\bf G}\cdot{\bf r}_{ij})Y_{lm}(\hat{\bf G}) $$ ! which may be used for solving Poisson's equation directly ! $$ V^{\rm P}({\bf G})=\begin{cases} ! 4\pi\frac{\rho^{\rm P}({\bf G})}{G^2} & G>0 \\ ! 0 & G=0 \end{cases}\;. $$ ! The usual Green's function approach is then employed to determine the ! potential in the muffin-tin sphere due to charge in the sphere. In other ! words ! $$ V_{ij;lm}^{\rm MT}(r)=\frac{4\pi}{2l+1}\left(\frac{1}{r^{l+1}}\int_0^r ! \rho_{ij;lm}^{\rm MT}(r'){r'}^{l+2}dr'+r^l\int_r^{R_i}\frac{ ! \rho_{ij;lm}^{\rm MT}(r')}{{r'}^{l-1}}dr'\right)+\frac{1}{Y_{00}} ! \frac{z_{ij}}{r}\delta_{l,0} $$ ! where the last term is the monopole arising from the point charge. All that ! remains is to add the homogenous solution of Poisson's equation, ! $$ V_{ij}^{\rm H}({\bf r})=\sum_{lm}V_{ij;lm}^{\rm H}\left(\frac{r} ! {R_i}\right)^lY_{lm}(\hat{\bf r}), $$ ! to the muffin-tin potential so that it is continuous at the muffin-tin ! boundary. Therefore the coefficients, $\rho_{ij;lm}^{\rm H}$, are given by ! $$ V_{ij;lm}^{\rm H}=4\pi i^l\sum_{\bf G}j_{l}(Gr)V^{\rm P}({\bf G}) ! \exp(i{\bf G}\cdot{\bf r}_{ij})Y_{lm}^*(\hat{\bf G})-V_{ij;lm}^{\rm MT} ! (R_i). $$ ! Finally note that the ${\bf G}$-vectors passed to the routine can represent ! vectors with a non-zero offset, ${\bf G}+{\bf p}$ say, which is required for ! calculating Coulomb matrix elements. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr(nspecies),nri(nspecies) integer, intent(in) :: np(nspecies),npi(nspecies) integer, intent(in) :: ld1 real(8), intent(in) :: rl(ld1,-lmaxo-1:lmaxo+2,nspecies) integer, intent(in) :: ngdg(3),igf(*),ngp real(8), intent(in) :: gpc(ngp),gclgp(ngp) integer, intent(in) :: ld2 real(8), intent(in) :: jlgprmt(0:lnpsd,ld2,nspecies) complex(8), intent(in) :: ylmgp(lmmaxo,ngp),sfacgp(ld2,natmtot) complex(8), intent(in) :: zrhoir(*) integer, intent(in) :: ld3 complex(8), intent(inout) :: zvclmt(ld3,natmtot) complex(8), intent(out) :: zvclir(*) ! local variables integer is,ia,ias integer ir,l,m,lm integer ig,jg,i,j real(8) t1,t2,t3 complex(8) z1,z2 ! automatic arrays real(8) rmtl(0:lmaxo+3,nspecies) complex(8) qlm(lmmaxo,natmtot) complex(8) zl(0:lmaxo),zlm(lmmaxo) complex(8) zhmt(ld3) ! external functions real(8), external :: factnm ! compute (R_mt)^l do is=1,nspecies rmtl(0,is)=1.d0 do l=1,lmaxo+3 rmtl(l,is)=rmtl(l-1,is)*rmt(is) end do end do ! compute the multipole moments from the muffin-tin potentials t1=1.d0/fourpi do ias=1,natmtot is=idxis(ias) i=np(is)-lmmaxo lm=0 do l=0,lmaxo t2=t1*dble(2*l+1)*rmtl(l+1,is) do m=-l,l lm=lm+1 i=i+1 qlm(lm,ias)=t2*zvclmt(i,ias) end do end do end do ! Fourier transform density to G-space and store in zvclir call zcopy(ngdg(1)*ngdg(2)*ngdg(3),zrhoir,1,zvclir,1) call zfftifc(3,ngdg,-1,zvclir) ! subtract the multipole moments of the interstitial charge density do is=1,nspecies do l=0,lmaxo zl(l)=fourpi*zil(l)*rmtl(l+2,is) end do do ia=1,natoms(is) ias=idxas(ia,is) zlm(:)=0.d0 do ig=1,ngp jg=igf(ig) if (gpc(ig).gt.epslat) then z1=zvclir(jg)*sfacgp(ig,ias)/gpc(ig) zlm(1)=zlm(1)+jlgprmt(1,ig,is)*z1*zl(0)*y00 lm=1 do l=1,lmaxo z2=jlgprmt(l+1,ig,is)*z1*zl(l) do m=-l,l lm=lm+1 zlm(lm)=zlm(lm)+z2*conjg(ylmgp(lm,ig)) end do end do else t1=(fourpi/3.d0)*rmtl(3,is)*y00 zlm(1)=zlm(1)+t1*zvclir(jg) end if end do qlm(:,ias)=qlm(:,ias)-zlm(:) end do end do ! find the smooth pseudocharge within the muffin-tin whose multipoles are the ! difference between the real muffin-tin and interstitial multipoles t1=(fourpi/omega)*factnm(2*lnpsd+1,2) do ias=1,natmtot is=idxis(ias) lm=0 do l=0,lmaxo t2=t1/(factnm(2*l+1,2)*rmtl(l,is)) z1=t2*zilc(l) do m=-l,l lm=lm+1 zlm(lm)=z1*qlm(lm,ias) end do end do ! add the pseudocharge and real interstitial densities in G-space do ig=1,ngp jg=igf(ig) if (gpc(ig).gt.epslat) then t2=gpc(ig)*rmt(is) t3=1.d0/t2**lnpsd z1=t3*zlm(1)*y00 lm=1 do l=1,lmaxo lm=lm+1 z2=zlm(lm)*ylmgp(lm,ig) do m=1-l,l lm=lm+1 z2=z2+zlm(lm)*ylmgp(lm,ig) end do t3=t3*t2 z1=z1+t3*z2 end do z2=jlgprmt(lnpsd,ig,is)*conjg(sfacgp(ig,ias)) zvclir(jg)=zvclir(jg)+z1*z2 else t2=y00/factnm(2*lnpsd+1,2) zvclir(jg)=zvclir(jg)+t2*zlm(1) end if end do end do ! solve Poisson's equation in G+p-space for the pseudocharge do ig=1,ngp jg=igf(ig) zvclir(jg)=gclgp(ig)*zvclir(jg) end do ! match potentials at muffin-tin boundary by adding homogeneous solution do ias=1,natmtot is=idxis(ias) ! find the spherical harmonic expansion of the interstitial potential at the ! muffin-tin radius zlm(:)=0.d0 do ig=1,ngp z1=fourpi*zvclir(igf(ig))*sfacgp(ig,ias) zlm(1)=zlm(1)+jlgprmt(0,ig,is)*z1*y00 lm=1 do l=1,lmaxo z2=jlgprmt(l,ig,is)*z1*zil(l) do m=-l,l lm=lm+1 zlm(lm)=zlm(lm)+z2*conjg(ylmgp(lm,ig)) end do end do end do ! calculate the homogenous solution i=np(is)-lmmaxo lm=0 do l=0,lmaxi t1=1.d0/rmtl(l,is) do m=-l,l lm=lm+1 i=i+1 z1=t1*(zlm(lm)-zvclmt(i,ias)) j=lm do ir=1,nri(is) zhmt(j)=z1*rl(ir,l,is) j=j+lmmaxi end do do ir=nri(is)+1,nr(is) zhmt(j)=z1*rl(ir,l,is) j=j+lmmaxo end do end do end do do l=lmaxi+1,lmaxo t1=1.d0/rmtl(l,is) do m=-l,l lm=lm+1 i=i+1 z1=t1*(zlm(lm)-zvclmt(i,ias)) j=npi(is)+lm do ir=nri(is)+1,nr(is) zhmt(j)=z1*rl(ir,l,is) j=j+lmmaxo end do end do end do zvclmt(1:np(is),ias)=zvclmt(1:np(is),ias)+zhmt(1:np(is)) ! store the nuclear potential without the self-term for the phonon dynamical ! matrix calculation if (tphdyn) then if (ias.eq.iasph) zvnmt(1:np(is))=zhmt(1:np(is)) end if end do ! Fourier transform interstitial potential to real-space call zfftifc(3,ngdg,1,zvclir) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/sfacmag.f900000644000000000000000000000013214061636517014645 xustar0030 mtime=1623670095.263102169 30 atime=1623670094.029103314 30 ctime=1623670095.263102169 elk-7.2.42/src/sfacmag.f900000644002504400250440000000550614061636517016710 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 A. I. Baranov and F. Wagner. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: sfacmag ! !INTERFACE: subroutine sfacmag ! !USES: use modmain use modpw use modtest ! !DESCRIPTION: ! Outputs magnetic structure factors, i.e. the Fourier transform coefficients ! of each component $j$ of magnetization ${\bf m}({\bf r})$, ! $$ F_j({\bf H})=\int_{\Omega}d^3r\,m_j({\bf r})e^{i{\bf H}\cdot{\bf r}}, $$ ! to the files {\tt SFACMAG\_j.OUT}. The lattice coordinates $(h,k,l)$ of ! $\bf H$-vectors in this file are transformed by the matrix {\tt vhmat}. See ! also routines {\tt zftrf} and {\tt genhvec}. ! ! !REVISION HISTORY: ! Created July 2010 (Alexey I. Baranov) ! Added multiplicity of the H-vectors, Oct. 2010 (Alexey I. Baranov) !EOP !BOC implicit none ! local variables integer idm,ih,iv(3) real(8) v(3),a,b,r character(256) fname ! allocatable arrays complex(8), allocatable :: zmagh(:) if (.not.spinpol) return ! initialise the structure factor specific variables call sfacinit ! generate the magnetic structure factors allocate(zmagh(nhvec)) do idm=1,ndmag call zftrf(nhvec,ivh,vhc,magmt(:,:,idm),magir(:,idm),zmagh) write(fname,'("SFACMAG_",I1.1,".OUT")') idm open(50,file=trim(fname),form='FORMATTED') write(50,*) write(50,'("h k l indices transformed by vhmat matrix:")') write(50,'(3G18.10)') vhmat(:,1) write(50,'(3G18.10)') vhmat(:,2) write(50,'(3G18.10)') vhmat(:,3) write(50,*) write(50,'(" h k l multipl. |H| Re(F)& & Im(F) |F|")') write(50,*) do ih=1,nhvec ! apply transformation matrix v(:)=vhmat(:,1)*dble(ivh(1,ih)) & +vhmat(:,2)*dble(ivh(2,ih)) & +vhmat(:,3)*dble(ivh(3,ih)) ! in crystallography the forward Fourier transform of real-space density is ! usually done with positive phase and without 1/omega prefactor a=dble(zmagh(ih))*omega b=-aimag(zmagh(ih))*omega r=abs(zmagh(ih))*omega iv(:)=nint(v(:)) if ((abs(v(1)-iv(1)).le.epslat).and. & (abs(v(2)-iv(2)).le.epslat).and. & (abs(v(3)-iv(3)).le.epslat)) then ! integer hkl write(50,'(4I7,4G16.8)') iv(:),mulh(ih),hc(ih),a,b,r else ! non-integer hkl write(50,'(3F7.2,I7,4G16.8)') v(:),mulh(ih),hc(ih),a,b,r end if end do close(50) end do write(*,*) write(*,'("Info(sfacmag): magnetic structure factors written to & &SFACMAG_j.OUT")') write(*,'(" for magnetic components j = ",3I2)') (idm,idm=1,ndmag) if (ndmag.eq.1) then write(*,'(" (this corresponds to the z-component of the magnetisation)")') end if write(*,*) write(*,'(" Energy window : ",2G18.10)') wsfac(:) ! write the structure factors to test file call writetest(196,'magnetic structure factors',nv=nhvec,tol=1.d-4,zva=zmagh(:)) deallocate(zmagh) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/polynm.f900000644000000000000000000000013214061636517014562 xustar0030 mtime=1623670095.264102168 30 atime=1623670094.031103312 30 ctime=1623670095.264102168 elk-7.2.42/src/polynm.f900000644002504400250440000000670014061636517016622 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: polynm ! !INTERFACE: pure real(8) function polynm(m,np,xa,ya,x) ! !INPUT/OUTPUT PARAMETERS: ! m : order of derivative (in,integer) ! np : number of points to fit (in,integer) ! xa : abscissa array (in,real(np)) ! ya : ordinate array (in,real(np)) ! x : evaluation abscissa (in,real) ! !DESCRIPTION: ! Fits a polynomial of order $n_p-1$ to a set of $n_p$ points. If $m\ge 0$ the ! function returns the $m$th derviative of the polynomial at $x$, while for ! $m<0$ the integral of the polynomial from the first point in the array to ! $x$ is returned. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! argmuments integer, intent(in) :: m,np real(8), intent(in) :: xa(np),ya(np) real(8), intent(in) :: x ! local variables integer i,j,k real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) t0,t1,t2,t3,t4,t5,t6 real(8) c1,c2,c3,sm ! automatic arrays real(8) c(np) ! fast evaluations for small np select case(np) case(1) select case(m) case(:-1) polynm=ya(1)*(x-xa(1)) case(0) polynm=ya(1) case default polynm=0.d0 end select return case(2) c1=(ya(2)-ya(1))/(xa(2)-xa(1)) t1=x-xa(1) select case(m) case(:-1) polynm=t1*(ya(1)+0.5d0*c1*t1) case(0) polynm=c1*t1+ya(1) case(1) polynm=c1 case default polynm=0.d0 end select return case(3) x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0 t0=1.d0/(x1*x2*(x2-x1)) t1=x1*y2; t2=x2*y1 c1=x2*t2-x1*t1 c2=t1-t2 t1=x-x0 select case(m) case(:-1) polynm=t1*(y0+t0*t1*(0.5d0*c1+0.3333333333333333333d0*c2*t1)) case(0) polynm=y0+t0*t1*(c1+c2*t1) case(1) polynm=t0*(2.d0*c2*t1+c1) case(2) polynm=t0*2.d0*c2 case default polynm=0.d0 end select return case(4) x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0; x3=xa(4)-x0 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0; y3=ya(4)-y0 t4=x1-x2; t5=x1-x3; t6=x2-x3 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 c3=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y2=t1*t4-t2*t6; y3=t2*t5-t3*t4 c2=y1+y2+y3 c1=x1*y1+x2*y2+x3*y3 t1=x-x0 select case(m) case(:-1) polynm=t1*(y0+t0*t1*(0.5d0*c1+t1*(0.25d0*c3*t1-0.3333333333333333333d0*c2))) case(0) polynm=y0+t0*t1*(c1+t1*(c3*t1-c2)) case(1) polynm=t0*(c1+t1*(3.d0*c3*t1-2.d0*c2)) case(2) polynm=t0*(6.d0*c3*t1-2.d0*c2) case(3) polynm=t0*6.d0*c3 case default polynm=0.d0 end select return end select if ((np.le.0).or.(m.ge.np)) then polynm=0.d0 return end if ! find the polynomial coefficients in divided differences form c(:)=ya(:) do i=2,np do j=np,i,-1 c(j)=(c(j)-c(j-1))/(xa(j)-xa(j+1-i)) end do end do ! special case m=0 if (m.eq.0) then sm=c(1) t1=1.d0 do i=2,np t1=t1*(x-xa(i-1)) sm=sm+c(i)*t1 end do polynm=sm return end if x0=xa(1) ! convert to standard form do j=1,np-1 do i=1,np-j k=np-i c(k)=c(k)+(x0-xa(k-j+1))*c(k+1) end do end do if (m.gt.0) then ! take the m th derivative do j=1,m do i=m+1,np c(i)=c(i)*dble(i-j) end do end do t1=c(np) t2=x-x0 do i=np-1,m+1,-1 t1=t1*t2+c(i) end do polynm=t1 else ! find the integral t1=c(np)/dble(np) t2=x-x0 do i=np-1,1,-1 t1=t1*t2+c(i)/dble(i) end do polynm=t1*t2 end if end function !EOC elk-7.2.42/src/PaxHeaders.21776/epsinv.f900000644000000000000000000000013214061636517014550 xustar0030 mtime=1623670095.266102166 30 atime=1623670094.032103312 30 ctime=1623670095.266102166 elk-7.2.42/src/epsinv.f900000644002504400250440000000510614061636517016607 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine epsinv use modmain use modmpi use modomp implicit none ! local variables integer iq,ik,ig,iw integer n,nthd ! allocatable arrays integer(8), allocatable :: lock(:) real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqr(:,:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:),epsi(:,:,:) ! allocate local arrays allocate(vgqc(3,ngrf),gqc(ngrf),gclgq(ngrf)) allocate(jlgqr(njcmax,nspecies,ngrf)) allocate(ylmgq(lmmaxo,ngrf),sfacgq(ngrf,natmtot)) allocate(epsi(ngrf,ngrf,nwrf)) ! initialise the OpenMP locks allocate(lock(nwrf)) do iw=1,nwrf call omp_init_lock(lock(iw)) end do if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! loop over q-points do iq=1,nqpt if (mp_mpi) write(*,'("Info(epsinv): ",I6," of ",I6," q-points")') iq,nqpt ! generate the G+q-vectors and related functions call gengqf(ngrf,vqc(:,iq),vgqc,gqc,jlgqr,ylmgq,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngrf,gqc,gclgq) ! use the symmetric form gclgq(:)=sqrt(gclgq(:)) ! zero the response function (stored in epsi) epsi(:,:,:)=0.d0 call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! compute v^1/2 chi0 v^1/2 call genvchi0(.false.,ik,lock,0.d0,vql(:,iq),gclgq,jlgqr,ylmgq,sfacgq, & ngrf,epsi) end do !$OMP END PARALLEL DO call freethd(nthd) ! add epsi from each process and redistribute if (np_mpi.gt.1) then n=ngrf*ngrf*nwrf call mpi_allreduce(mpi_in_place,epsi,n,mpi_double_complex,mpi_sum,mpicom, & ierror) end if ! negate and add delta(G,G') epsi(:,:,:)=-epsi(:,:,:) do ig=1,ngrf epsi(ig,ig,:)=epsi(ig,ig,:)+1.d0 end do !-------------------------------------! ! invert epsilon over G-space ! !-------------------------------------! call holdthd(nwrf,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do iw=1,nwrf call zminv(ngrf,epsi(:,:,iw)) end do !$OMP END PARALLEL DO call freethd(nthd) ! write inverse RPA epsilon to EPSINV.OUT if (mp_mpi) call putepsinv(iq,epsi) ! end loop over q-points end do ! destroy the OpenMP locks do iw=1,nwrf call omp_destroy_lock(lock(iw)) end do deallocate(lock) deallocate(vgqc,gqc,gclgq,jlgqr) deallocate(ylmgq,sfacgq,epsi) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/rfinpc.f900000644000000000000000000000013114061636517014524 xustar0030 mtime=1623670095.267102165 29 atime=1623670094.03410331 30 ctime=1623670095.267102165 elk-7.2.42/src/rfinpc.f900000644002504400250440000000174314061636517016567 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function rfinpc(ld,rfmt1,rfir1,rfmt2,rfir2) use modmain use modomp implicit none ! arguments integer, intent(in) :: ld real(8), intent(in) :: rfmt1(ld,natmtot),rfir1(ngtot) real(8), intent(in) :: rfmt2(ld,natmtot),rfir2(ngtot) ! local variables integer is,ias,ir,nthd ! external functions real(8), external :: rfmtinp ! interstitial contribution rfinpc=0.d0 do ir=1,ngtot rfinpc=rfinpc+rfir1(ir)*rfir2(ir)*cfunir(ir) end do rfinpc=rfinpc*omega/dble(ngtot) ! muffin-tin contribution call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) REDUCTION(+:rfinpc) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) rfinpc=rfinpc+rfmtinp(nrcmt(is),nrcmti(is),wrcmt(:,is),rfmt1(:,ias), & rfmt2(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) end function elk-7.2.42/src/PaxHeaders.21776/zmctmu.f900000644000000000000000000000013214061636517014563 xustar0030 mtime=1623670095.268102164 30 atime=1623670094.036103308 30 ctime=1623670095.268102164 elk-7.2.42/src/zmctmu.f900000644002504400250440000000205014061636517016615 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zmctmu(tcr,l,n,a,b,ld,c) use modomp implicit none ! arguments logical, intent(in) :: tcr integer, intent(in) :: l,n complex(8), intent(in) :: a(l,n),b(l,n) integer, intent(in) :: ld complex(8), intent(out) :: c(ld,*) ! local variables integer l2,i,j,nthd ! external functions real(8), external :: ddot complex(8), external :: zdotc call holdthd(n,nthd) if (tcr) then ! matrix c is real valued l2=2*l !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(i) & !$OMP NUM_THREADS(nthd) do j=1,n do i=1,j c(i,j)=c(i,j)+ddot(l2,a(:,i),1,b(:,j),1) end do end do !$OMP END PARALLEL DO else ! matrix c is complex valued !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(i) & !$OMP NUM_THREADS(nthd) do j=1,n do i=1,j c(i,j)=c(i,j)+zdotc(l,a(:,i),1,b(:,j),1) end do end do !$OMP END PARALLEL DO end if call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/zmctm.f900000644000000000000000000000013214061636517014376 xustar0030 mtime=1623670095.270102162 30 atime=1623670094.037103307 30 ctime=1623670095.270102162 elk-7.2.42/src/zmctm.f900000644002504400250440000000131314061636517016431 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zmctm(l,m,n,a,b,ld,c) use modomp implicit none ! arguments integer, intent(in) :: l,m,n complex(8), intent(in) :: a(l,m),b(l,n) integer, intent(in) :: ld complex(8), intent(out) :: c(ld,*) ! local variables integer i,j,nthd ! external functions complex(8), external :: zdotc call holdthd(n,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(i) & !$OMP NUM_THREADS(nthd) do j=1,n do i=1,m c(i,j)=c(i,j)+zdotc(l,a(:,i),1,b(:,j),1) end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeiad.f900000644000000000000000000000013214061636517015054 xustar0030 mtime=1623670095.271102161 30 atime=1623670094.039103305 30 ctime=1623670095.271102161 elk-7.2.42/src/writeiad.f900000644002504400250440000000254714061636517017121 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writeiad ! !INTERFACE: subroutine writeiad(fnum) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! fnum : file number for writing output (in,integer) ! !DESCRIPTION: ! Outputs the interatomic distances to file. ! ! !REVISION HISTORY: ! Created May 2005 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,js,ia,ja integer i1,i2,i3 real(8) d,dmin,v(3) do is=1,nspecies do ia=1,natoms(is) write(fnum,*) write(fnum,'("Distance between is = ",I4," (",A,"), ia = ",I4," and")') & is,trim(spsymb(is)),ia do js=1,nspecies do ja=1,natoms(js) dmin=1.d8 do i1=-1,1 do i2=-1,1 do i3=-1,1 v(:)=dble(i1)*avec(:,1) & +dble(i2)*avec(:,2) & +dble(i3)*avec(:,3)+atposc(:,ja,js) v(:)=v(:)-atposc(:,ia,is) d=sqrt(v(1)**2+v(2)**2+v(3)**2) dmin=min(d,dmin) end do end do end do write(fnum,'(" is = ",I4," (",A,"), ia = ",I4," : ",G18.10)') js, & trim(spsymb(js)),ja,dmin end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genapwfr.f900000644000000000000000000000013014061636517015053 xustar0029 mtime=1623670095.27310216 30 atime=1623670094.041103303 29 ctime=1623670095.27310216 elk-7.2.42/src/genapwfr.f900000644002504400250440000001001014061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genapwfr ! !INTERFACE: subroutine genapwfr ! !USES: use modmain ! !DESCRIPTION: ! Generates the APW radial functions. This is done by integrating the scalar ! relativistic Schr\"{o}dinger equation (or its energy deriatives) at the ! current linearisation energies using the spherical part of the Kohn-Sham ! potential. The number of radial functions at each $l$-value is given by the ! variable {\tt apword} (at the muffin-tin boundary, the APW functions have ! continuous derivatives up to order ${\tt apword}-1$). Within each $l$, these ! functions are orthonormalised with the Gram-Schmidt method. The radial ! Hamiltonian is applied to the orthonormalised functions and the results are ! stored in the global array {\tt apwfr}. ! ! !REVISION HISTORY: ! Created March 2003 (JKD) ! Copied to equivalent atoms, February 2010 (A. Kozhevnikov and JKD) !EOP !BOC implicit none ! local variables integer is,ia,ja,ias,jas integer nr,nri,ir,i integer nn,l,io,jo real(8) e,t1 ! automatic arrays logical done(natmmax) real(8) vr(nrmtmax),fr(nrmtmax) real(8) p0(nrmtmax,apwordmax),p1(nrmtmax),p1s(apwordmax) real(8) q0(nrmtmax),q1(nrmtmax),ep0(nrmtmax,apwordmax) ! external functions real(8), external :: splint do is=1,nspecies nr=nrmt(is) nri=nrmti(is) done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) ! use spherical part of potential i=1 do ir=1,nri vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxi end do do ir=nri+1,nr vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxo end do do l=0,lmaxapw do io=1,apword(l,is) ! linearisation energy accounting for energy derivative e=apwe(io,l,ias)+dble(apwdm(io,l,is))*deapwlo ! integrate the radial Schrodinger equation call rschrodint(solsc,l,e,nr,rlmt(:,1,is),vr,nn,p0(:,io),p1,q0,q1) ! multiply by the linearisation energy ep0(1:nr,io)=e*p0(1:nr,io) ! normalise radial functions fr(1:nr)=p0(1:nr,io)**2 t1=splint(nr,rlmt(:,1,is),fr) t1=1.d0/sqrt(abs(t1)) call dscal(nr,t1,p0(:,io),1) p1s(io)=t1*p1(nr) call dscal(nr,t1,ep0(:,io),1) ! subtract linear combination of previous vectors do jo=1,io-1 fr(1:nr)=p0(1:nr,io)*p0(1:nr,jo) t1=-splint(nr,rlmt(:,1,is),fr) call daxpy(nr,t1,p0(:,jo),1,p0(:,io),1) p1s(io)=p1s(io)+t1*p1s(jo) call daxpy(nr,t1,ep0(:,jo),1,ep0(:,io),1) end do ! normalise radial functions again fr(1:nr)=p0(1:nr,io)**2 t1=splint(nr,rlmt(:,1,is),fr) t1=abs(t1) if (t1.lt.1.d-25) then write(*,*) write(*,'("Error(genapwfr): degenerate APW radial functions")') write(*,'(" for species ",I4)') is write(*,'(" atom ",I4)') ia write(*,'(" angular momentum ",I4)') l write(*,'(" and order ",I4)') io write(*,*) stop end if t1=1.d0/sqrt(t1) call dscal(nr,t1,p0(:,io),1) p1s(io)=t1*p1s(io) call dscal(nr,t1,ep0(:,io),1) ! divide by r and store in global array do ir=1,nr t1=rlmt(ir,-1,is) apwfr(ir,1,io,l,ias)=t1*p0(ir,io) apwfr(ir,2,io,l,ias)=t1*ep0(ir,io) end do ! derivative at the muffin-tin surface apwdfr(io,l,ias)=(p1s(io)-p0(nr,io)*t1)*t1 end do end do done(ia)=.true. ! copy to equivalent atoms do ja=1,natoms(is) if ((.not.done(ja)).and.(eqatoms(ia,ja,is))) then jas=idxas(ja,is) do l=0,lmaxapw do io=1,apword(l,is) call dcopy(nr,apwfr(:,1,io,l,ias),1,apwfr(:,1,io,l,jas),1) call dcopy(nr,apwfr(:,2,io,l,ias),1,apwfr(:,2,io,l,jas),1) apwdfr(io,l,jas)=apwdfr(io,l,ias) end do end do done(ja)=.true. end if end do ! end loop over atoms and species end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genws.f900000644000000000000000000000013214061636517014367 xustar0030 mtime=1623670095.274102159 30 atime=1623670094.042103302 30 ctime=1623670095.274102159 elk-7.2.42/src/genws.f900000644002504400250440000000156114061636517016427 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genws use modmain use modomp implicit none ! local variables integer is,ias,nthd integer nrc,nrci ! automatic arrays real(8) rfmt(npcmtmax) if (xcgrad.ne.4) return ! muffin-tin effective meta-GGA potential call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(rfmt,is,nrc,nrci) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! convert to coarse radial mesh and spherical coordinates call rfmtftoc(nrc,nrci,wxcmt(:,ias),rfmt) call rbsht(nrc,nrci,rfmt,wsmt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! interstitial meta-GGA potential wsir(1:ngtot)=wxcir(1:ngtot)*cfunir(1:ngtot) end subroutine elk-7.2.42/src/PaxHeaders.21776/gengclq.f900000644000000000000000000000013014061636517014662 xustar0030 mtime=1623670095.275102158 28 atime=1623670094.0441033 30 ctime=1623670095.275102158 elk-7.2.42/src/gengclq.f900000644002504400250440000000557514061636517016735 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gengclq ! !INTERFACE: subroutine gengclq ! !USES: use modmain use modtest ! !DESCRIPTION: ! The Fock matrix elements ! $$ V_{ij{\bf k}}\equiv\sum_{l{\bf k'}}\int ! \frac{\Psi^{\dag}_{i{\bf k}}({\bf r})\cdot\Psi_{l{\bf k}'}({\bf r}) ! \Psi^{\dag}_{l{\bf k}'}({\bf r}')\cdot\Psi_{j{\bf k}}({\bf r}')} ! {|{\bf r}-{\bf r'}|}\,d^3r\,d^3r' $$ ! contain a divergent term in the sum over ${\bf k}'$ which behaves as ! $1/q^2$, where ${\bf q}\equiv{\bf k}-{\bf k}'$ is in the first Brillouin ! zone. The resulting convergence with respect to the number of discrete ! $q$-points, $N_q$, is very slow. This routine computes the regularised ! Coulomb Green's function ! \begin{align} ! g({\bf q}_i)=\frac{4\pi}{V}\int_{V_i}\frac{1}{q^2}\,d^3q, ! \end{align} ! where the integral is over the small parallelepiped with volume ! $V=\Omega_{\rm BZ}/N_q$ and centered on the discrete point ${\bf q}_i$. ! This dramatically increases the rate of convergence of methods which involve ! a summation over the $1/q^2$ part of the Coulomb interaction. The above ! integral is evaluated numerically on increasingly finer grids and then ! extrapolated to the continuum. ! ! !REVISION HISTORY: ! Created August 2004 (JKD,SS) ! Changed from genwiq2, July 2017 (JKD) !EOP !BOC implicit none ! local variables integer, parameter :: np=5 integer, parameter :: ns0=10,nss=20 integer ns,iq,i1,i2,i3,ip real(8) d(3),sm,t1,t2 real(8) v1(3),v2(3),v3(3) real(8) xa(np),ya(np) ! external functions real(8), external :: polynm ! allocate global gclq array if (allocated(gclq)) deallocate(gclq) allocate(gclq(nqpt)) ! begin loop over q-points, note that the vectors vqc are assumed to be in the ! first Brillouin zone do iq=1,nqpt ! loop over different subdivisions ns=ns0 do ip=1,np ! subdivision vectors in lattice coordinates d(:)=1.d0/dble(ngridq(:)*2*ns) ! compute the integral of 1/q^2 sm=0.d0 do i1=-ns,ns-1 t1=dble(i1)*d(1) v1(:)=vqc(:,iq)+t1*bvec(:,1) do i2=-ns,ns-1 t1=dble(i2)*d(2) v2(:)=v1(:)+t1*bvec(:,2) do i3=-ns,ns-1 t1=dble(i3)*d(3) v3(:)=v2(:)+t1*bvec(:,3) t2=v3(1)**2+v3(2)**2+v3(3)**2 if (t2.gt.1.d-14) sm=sm+1.d0/t2 end do end do end do t1=1.d0/dble(2*ns) xa(ip)=t1 ya(ip)=fourpi*sm*t1**3 ! increment number of subdivisions ns=ns+nss end do ! extrapolate the volume element to zero with a polynomial gclq(iq)=polynm(0,np,xa,ya,0.d0) end do ! zero the Green's function at q = 0 if required if (t0gclq0) gclq(1)=0.d0 ! write gclq to test file call writetest(800,"regularised Coulomb Green''s function (gclq)",nv=nqpt, & tol=1.d-8,rva=gclq) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/addbfsm.f900000644000000000000000000000013214061636517014644 xustar0030 mtime=1623670095.277102156 30 atime=1623670094.046103298 30 ctime=1623670095.277102156 elk-7.2.42/src/addbfsm.f900000644002504400250440000000163314061636517016704 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine addbfsm use modmain implicit none ! local variables integer idm,is,ias,npc real(8) t1 ! add the global fixed spin moment B-field to the Kohn-Sham field if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then do idm=1,ndmag t1=bfsmc(idm) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) bsmt(1:npc,ias,idm)=bsmt(1:npc,ias,idm)+t1 end do bsir(1:ngtot,idm)=bsir(1:ngtot,idm)+t1*cfunir(1:ngtot) end do end if ! add the muffin-tin fields if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then do idm=1,ndmag do ias=1,natmtot is=idxis(ias) npc=npcmt(is) t1=bfsmcmt(idm,ias) bsmt(1:npc,ias,idm)=bsmt(1:npc,ias,idm)+t1 end do end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genylmv.f900000644000000000000000000000013214061636517014725 xustar0030 mtime=1623670095.278102155 30 atime=1623670094.047103298 30 ctime=1623670095.278102155 elk-7.2.42/src/genylmv.f900000644002504400250440000000521114061636517016761 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: genylmv ! !INTERFACE: pure subroutine genylmv(lmax,v,ylm) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! v : input vector (in,real(3)) ! ylm : array of spherical harmonics (out,complex((lmax+1)**2)) ! !DESCRIPTION: ! Generates a sequence of spherical harmonics, including the Condon-Shortley ! phase, evaluated at angles $(\theta,\phi)$ for $00}}(n-im) $$ ! for $n,\,m \ge 0$. $n$ should be less than 150. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n,m ! local variables integer i,j real(8), parameter :: f1(24)=[ & 1.d0, 2.d0, & 6.d0, 24.d0, & 120.d0, 720.d0, & 5040.d0, 40320.d0, & 362880.d0, 3628800.d0, & 39916800.d0, 479001600.d0, & 6227020800.d0, 87178291200.d0, & 1307674368000.d0, 20922789888000.d0, & 355687428096000.d0, 6402373705728000.d0, & 121645100408832000.d0, 2432902008176640000.d0, & 51090942171709440000.d0, 1124000727777607680000.d0, & 25852016738884976640000.d0, 620448401733239439360000.d0] real(8), parameter :: f2(38)=[ & 1.d0, 2.d0, & 3.d0, 8.d0, & 15.d0, 48.d0, & 105.d0, 384.d0, & 945.d0, 3840.d0, & 10395.d0, 46080.d0, & 135135.d0, 645120.d0, & 2027025.d0, 10321920.d0, & 34459425.d0, 185794560.d0, & 654729075.d0, 3715891200.d0, & 13749310575.d0, 81749606400.d0, & 316234143225.d0, 1961990553600.d0, & 7905853580625.d0, 51011754393600.d0, & 213458046676875.d0, 1428329123020800.d0, & 6190283353629375.d0, 42849873690624000.d0, & 191898783962510625.d0, 1371195958099968000.d0, & 6332659870762850625.d0, 46620662575398912000.d0, & 221643095476699771875.d0, 1678343852714360832000.d0, & 8200794532637891559375.d0, 63777066403145711616000.d0] ! fast return if possible if (n.le.1) then factnm=1.d0 return end if if (m.eq.1) then if (n.le.24) then factnm=f1(n) return end if factnm=f1(24) do i=25,n factnm=factnm*dble(i) end do return end if if (m.eq.2) then if (n.le.38) then factnm=f2(n) return end if end if ! return zero for invalid m if (m.le.0) then factnm=0.d0 return end if j=n/m if (mod(n,m).eq.0) j=j-1 factnm=dble(n) do i=1,j factnm=factnm*dble(n-i*m) end do end function !EOC elk-7.2.42/src/PaxHeaders.21776/sphcover.f900000644000000000000000000000013214061636517015075 xustar0030 mtime=1623670095.287102147 30 atime=1623670094.057103288 30 ctime=1623670095.287102147 elk-7.2.42/src/sphcover.f900000644002504400250440000000254614061636517017141 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sphcover ! !INTERFACE: subroutine sphcover(n,tp) ! !INPUT/OUTPUT PARAMETERS: ! n : number of required points (in,integer) ! tp : (theta, phi) coordinates (out,real(2,n)) ! !DESCRIPTION: ! Produces a set of $N$ points which cover the unit sphere nearly optimally. ! The points in spherical $(\theta,\phi)$ coordinates are generated using the ! explicit `golden section' formula: ! \begin{align*} ! \theta_k&=\arccos\left[1-\left(k-\tfrac{1}{2}\right)\delta z\right] \\ ! \phi_k&=(k-1)\delta\phi, ! \end{align*} ! where $\delta z=2/n$ and $\delta\phi=\pi(1-\sqrt{5})$. ! ! !REVISION HISTORY: ! Created April 2008 (JKD) ! Improved covering, October 2009 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(out) :: tp(2,n) ! local variables integer k real(8), parameter :: pi=3.1415926535897932385d0 real(8) z,dz,p,dp if (n.le.0) then write(*,*) write(*,'("Error(sphcover): n <= 0 : ",I8)') n write(*,*) stop end if dz=2.d0/dble(n) z=1.d0-dz/2.d0 tp(1,1)=acos(z) dp=pi*(1.d0-sqrt(5.d0)) p=0.d0 tp(2,1)=p do k=2,n z=z-dz tp(1,k)=acos(z) p=p+dp tp(2,k)=mod(p,2.d0*pi) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/sctovec.f900000644000000000000000000000013214061636517014712 xustar0030 mtime=1623670095.288102146 30 atime=1623670094.059103286 30 ctime=1623670095.288102146 elk-7.2.42/src/sctovec.f900000644002504400250440000000064214061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine sctovec(tp,v) implicit none ! arguments real(8), intent(in) :: tp(2) real(8), intent(out) :: v(3) ! local variables real(8) t1 t1=sin(tp(1)) v(1)=t1*cos(tp(2)) v(2)=t1*sin(tp(2)) v(3)=cos(tp(1)) end subroutine elk-7.2.42/src/PaxHeaders.21776/genvmat.f900000644000000000000000000000013214061636517014705 xustar0030 mtime=1623670095.290102144 30 atime=1623670094.061103285 30 ctime=1623670095.290102144 elk-7.2.42/src/genvmat.f900000644002504400250440000000551514061636517016750 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvmat(vmt,vir,vmat) ! generates potential matrix elements for all states and k-points use modmain use modmpi use modomp implicit none ! arguments real(8), intent(in) :: vmt(npmtmax,natmtot),vir(ngtot) complex(8), intent(out) :: vmat(nstsv,nstsv,nkpt) ! local variables integer ik,ist,ispn integer is,ias,nrc,nrci integer n,lp,nthd ! automatic arrays integer idx(nstsv) real(8) rfmt(npcmtmax) ! allocatable arrays real(8), allocatable :: vmt1(:,:),vir1(:) complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgk(:,:,:) ! allocate local arrays allocate(vmt1(npcmtmax,natmtot),vir1(ngtot)) call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(rfmt,is,nrc,nrci) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! convert muffin-tin potential to a coarse radial mesg call rfmtftoc(nrc,nrci,vmt(:,ias),rfmt) ! convert potential to spherical coordinates call rbsht(nrc,nrci,rfmt,vmt1(:,ias)) ! multiply by the radial integration weights call rfcmtwr(nrc,nrci,wrcmt(:,is),vmt1(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! multiply interstitial potential by characteristic function vir1(:)=vir(:)*cfunir(:) ! index to all states do ist=1,nstsv idx(ist)=ist end do ! loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(apwalm,evecfv,evecsv) & !$OMP PRIVATE(wfmt,wfgk,ispn) & !$OMP NUM_THREADS(nthd) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfgk(ngkmax,nspinor,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! calculate the wavefunctions for all states of the input k-point call genwfsv(.false.,.true.,nstsv,idx,ngridg,igfft,ngk(:,ik),igkig(:,:,ik), & apwalm,evecfv,evecsv,wfmt,ngkmax,wfgk) call genvmatk(vmt1,vir1,ngk(:,ik),igkig(:,:,ik),wfmt,ngkmax,wfgk,vmat(:,:,ik)) end do !$OMP END DO deallocate(apwalm,evecfv,evecsv,wfmt,wfgk) !$OMP END PARALLEL call freethd(nthd) ! broadcast matrix elements to every process if (np_mpi.gt.1) then n=nstsv*nstsv do ik=1,nkpt lp=mod(ik-1,np_mpi) call mpi_bcast(vmat(:,:,ik),n,mpi_double_complex,lp,mpicom,ierror) end do end if deallocate(vmt1,vir1) end subroutine elk-7.2.42/src/PaxHeaders.21776/genppts.f900000644000000000000000000000013214061636517014724 xustar0030 mtime=1623670095.291102143 30 atime=1623670094.062103284 30 ctime=1623670095.291102143 elk-7.2.42/src/genppts.f900000644002504400250440000001367614061636517016776 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: genppts ! !INTERFACE: subroutine genppts(tfbz,nsym,sym,ngridp,npptnr,epslat,bvec,boxl,nppt,ipvip, & ipvipnr,ivp,vpl,vpc,wppt,wpptnr) ! !INPUT/OUTPUT PARAMETERS: ! tfbz : .true. if vpl and vpc should be mapped to the first Brillouin zone ! (in,logical) ! nsym : number of point group symmetries used for reduction, set to 1 for ! no reduction (in,integer) ! sym : symmetry matrices in lattice coordinates (in,integer(3,3,*)) ! ngridp : p-point grid sizes (in,integer(3)) ! npptnr : number of non-reduced p-points: ngridp(1)*ngridp(2)*ngridp(3) ! (in,integer) ! epslat : tolerance for determining identical vectors (in,real) ! bvec : reciprocal lattice vectors (in,real(3,3)) ! boxl : corners of box containing p-points in lattice coordinates, the ! zeroth vector is the origin (in,real(3,0:3)) ! nppt : total number of p-points (out,integer) ! ipvip : map from (i1,i2,i3) to reduced p-point index ! (out,integer(0:ngridp(1)-1,0:ngridp(2)-1,0:ngridp(3)-1)) ! ipvipnr : map from (i1,i2,i3) to non-reduced p-point index ! (out,integer(0:ngridp(1)-1,0:ngridp(2)-1,0:ngridp(3)-1)) ! ivp : integer coordinates of the p-points ! (out,integer(3,ngridp(1)*ngridp(2)*ngridp(3))) ! vpl : lattice coordinates of each p-point ! (out,real(3,ngridp(1)*ngridp(2)*ngridp(3))) ! vpc : Cartesian coordinates of each p-point ! (out,real(3,ngridp(1)*ngridp(2)*ngridp(3))) ! wppt : weights of each reduced p-point ! (out,real(ngridp(1)*ngridp(2)*ngridp(3))) ! wpptnr : weight of each non-reduced p-point (out,real) ! !DESCRIPTION: ! This routine is used for generating $k$-point or $q$-point sets. Since these ! are stored in global arrays, the points passed to this and other routines ! are referred to as $p$-points. In lattice coordinates, the ${\bf p}$ vectors ! are given by ! $$ {\bf p}=\left(\begin{matrix} & & \\ ! {\bf B}_2-{\bf B}_1 & {\bf B}_3-{\bf B}_1 & {\bf B}_4-{\bf B}_1 \\ ! & & \end{matrix}\right) ! \left(\begin{matrix}i_1/n_1 \\ i_2/n_2 \\ i_3/n_3 \end{matrix}\right) ! +{\bf B}_1 $$ ! where $i_j$ runs from 0 to $n_j-1$, and the ${\bf B}$ vectors define the ! corners of a box with ${\bf B}_1$ as the origin. If {\tt tfbz} is ! {\tt .true.} then each {\tt vpl} vector is mapped to the first Brillouin ! zone. If {\tt tfbz} is {\tt .false.} and then the coordinates of each ! {\tt vpl} are mapped to the $[0,1)$ interval. The $p$-point weights are ! stored in {\tt wppt} and the array {\tt ipvip} contains the map from the ! integer coordinates to the reduced index. ! ! !REVISION HISTORY: ! Created August 2002 (JKD) ! Updated April 2007 (JKD) ! Added mapping to the first Brillouin zone, September 2008 (JKD) ! Made independent of modmain, February 2010 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: tfbz integer, intent(in) :: nsym,sym(3,3,*) integer, intent(in) :: ngridp(3),npptnr real(8), intent(in) :: epslat real(8), intent(in) :: bvec(3,3),boxl(3,0:3) integer, intent(out) :: nppt integer, intent(out) :: ipvip(0:ngridp(1)-1,0:ngridp(2)-1,0:ngridp(3)-1) integer, intent(out) :: ipvipnr(0:ngridp(1)-1,0:ngridp(2)-1,0:ngridp(3)-1) integer, intent(out) :: ivp(3,npptnr) real(8), intent(out) :: vpl(3,npptnr),vpc(3,npptnr) real(8), intent(out) :: wppt(npptnr),wpptnr ! local variables integer i1,i2,i3,i integer isym,ip,jp real(8) v1(3),v2(3),v3(3) real(8) b(3,3),t1 if ((ngridp(1).le.0).or.(ngridp(2).le.0).or.(ngridp(3).le.0)) then write(*,*) write(*,'("Error(genppts): invalid ngridp : ",3I8)') ngridp write(*,*) stop end if if (npptnr.ne.ngridp(1)*ngridp(2)*ngridp(3)) then write(*,*) write(*,'("Error(genppts): mismatched npptnr and ngridp : ",4I8)') npptnr, & ngridp write(*,*) stop end if ! box vector matrix b(:,1)=boxl(:,1)-boxl(:,0) b(:,2)=boxl(:,2)-boxl(:,0) b(:,3)=boxl(:,3)-boxl(:,0) ! weight of each non-reduced p-point wpptnr=1.d0/dble(ngridp(1)*ngridp(2)*ngridp(3)) ip=0 jp=npptnr do i3=0,ngridp(3)-1 v1(3)=dble(i3)/dble(ngridp(3)) do i2=0,ngridp(2)-1 v1(2)=dble(i2)/dble(ngridp(2)) do i1=0,ngridp(1)-1 v1(1)=dble(i1)/dble(ngridp(1)) call r3mv(b,v1,v2) v2(:)=v2(:)+boxl(:,0) ! map vector components to [0,1) call r3frac(epslat,v2) if (nsym.gt.1) then ! determine if this point is equivalent to one already in the set do isym=1,nsym call i3mtrv(sym(:,:,isym),v2,v3) call r3frac(epslat,v3) do i=1,ip t1=abs(vpl(1,i)-v3(1))+abs(vpl(2,i)-v3(2))+abs(vpl(3,i)-v3(3)) if (t1.lt.epslat) then ! equivalent p-point found so add to existing weight ipvip(i1,i2,i3)=i wppt(i)=wppt(i)+wpptnr ! add new point to back of set ipvipnr(i1,i2,i3)=jp ivp(1,jp)=i1; ivp(2,jp)=i2; ivp(3,jp)=i3 vpl(:,jp)=v2(:) wppt(jp)=0.d0 jp=jp-1 goto 10 end if end do end do end if ! add new point to set ip=ip+1 ipvip(i1,i2,i3)=ip ipvipnr(i1,i2,i3)=ip ivp(1,ip)=i1; ivp(2,ip)=i2; ivp(3,ip)=i3 vpl(:,ip)=v2(:) wppt(ip)=wpptnr 10 continue end do end do end do nppt=ip do ip=1,npptnr ! map vpl to the first Brillouin zone if required if (tfbz) call vecfbz(epslat,bvec,vpl(:,ip)) ! determine the Cartesian coordinates of the p-points call r3mv(bvec,vpl(:,ip),vpc(:,ip)) end do return contains pure subroutine i3mtrv(a,x,y) implicit none ! arguments integer, intent(in) :: a(3,3) real(8), intent(in) :: x(3) real(8), intent(out) :: y(3) y(1)=a(1,1)*x(1)+a(2,1)*x(2)+a(3,1)*x(3) y(2)=a(1,2)*x(1)+a(2,2)*x(2)+a(3,2)*x(3) y(3)=a(1,3)*x(1)+a(2,3)*x(2)+a(3,3)*x(3) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/mtdmin.f900000644000000000000000000000013214061636517014534 xustar0030 mtime=1623670095.293102141 30 atime=1623670094.064103282 30 ctime=1623670095.293102141 elk-7.2.42/src/mtdmin.f900000644002504400250440000000324714061636517016577 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: mtdmin ! !INTERFACE: pure subroutine mtdmin(is,js,dmin) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! is, js : species numbers (out,integer) ! dmin : minimum distance between muffin-tin surfaces (out,real) ! !DESCRIPTION: ! Finds the atomic species pair for which the distance between the muffin-tin ! surfaces is a minimum. This distance may be negative if the muffin-tins ! overlap. ! ! !REVISION HISTORY: ! Created October 2011 (JKD) !EOP !BOC implicit none ! arguments integer, intent(out) :: is,js real(8), intent(out) :: dmin ! local variables integer i1,i2,i3,ks,ka,ls,la real(8) v1(3),v2(3),t1,t2,t3 is=1 js=1 dmin=1.d6 do i1=-1,1 do i2=-1,1 do i3=-1,1 v1(:)=dble(i1)*avec(:,1)+dble(i2)*avec(:,2)+dble(i3)*avec(:,3) do ks=1,nspecies do ka=1,natoms(ks) v2(:)=v1(:)+atposc(:,ka,ks) do ls=1,nspecies t1=rmt(ks)+rmt(ls) do la=1,natoms(ls) if ((i1.ne.0).or.(i2.ne.0).or.(i3.ne.0).or.(ks.ne.ls).or. & (ka.ne.la)) then t2=sqrt((v2(1)-atposc(1,la,ls))**2 & +(v2(2)-atposc(2,la,ls))**2 & +(v2(3)-atposc(3,la,ls))**2) t3=t2-t1 if (t3.lt.dmin-epslat) then is=ks js=ls dmin=t3 end if end if end do end do end do end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/eveqnzg.f900000644000000000000000000000012714061636517014727 xustar0029 mtime=1623670095.29410214 29 atime=1623670094.06610328 29 ctime=1623670095.29410214 elk-7.2.42/src/eveqnzg.f900000644002504400250440000000205214061636517016757 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnzg(n,ld,a,w) use modomp implicit none ! arguments integer, intent(in) :: n,ld complex(8), intent(inout) :: a(ld,n) complex(8), intent(out) :: w(n) ! local variables integer lwork,info integer nthd,nts ! allocatable arrays real(8), allocatable :: rwork(:) complex(8), allocatable :: vr(:,:),work(:) lwork=2*n allocate(rwork(2*n),vr(n,n),work(lwork)) ! enable MKL parallelism call holdthd(maxthdmkl,nthd) nts=mkl_set_num_threads_local(nthd) ! determine the eigenvalues and right eigenvectors call zgeev('N','V',n,a,ld,w,vr,1,vr,n,work,lwork,rwork,info) nts=mkl_set_num_threads_local(0) call freethd(nthd) if (info.ne.0) then write(*,*) write(*,'("Error(eveqnzg): diagonalisation failed")') write(*,'(" ZGEEV returned INFO = ",I8)') info write(*,*) stop end if ! copy right eigenvectors to output array a(1:n,1:n)=vr(1:n,1:n) deallocate(rwork,vr,work) end subroutine elk-7.2.42/src/PaxHeaders.21776/fderiv.f900000644000000000000000000000013214061636517014523 xustar0030 mtime=1623670095.296102138 30 atime=1623670094.067103279 30 ctime=1623670095.296102138 elk-7.2.42/src/fderiv.f900000644002504400250440000000324614061636517016565 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: fderiv ! !INTERFACE: subroutine fderiv(m,n,x,f,g) ! !INPUT/OUTPUT PARAMETERS: ! m : order of derivative (in,integer) ! n : number of points (in,integer) ! x : abscissa array (in,real(n)) ! f : function array (in,real(n)) ! g : (anti-)derivative of f (out,real(n)) ! !DESCRIPTION: ! Given function $f$ defined on a set of points $x_i$ then if $m\ge 0$ this ! routine computes the $m$th derivative of $f$ at each point. If $m=-1$ the ! anti-derivative of $f$ given by ! $$ g(x_i)=\int_{x_1}^{x_i} f(x)\,dx $$ ! is calculated. Both derivatives and integrals are computed by first fitting ! the function to a clamped cubic spline. ! ! !REVISION HISTORY: ! Created May 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: m,n real(8), intent(in) :: x(n),f(n) real(8), intent(out) :: g(n) ! local variables integer i real(8) sm,dx ! automatic arrays real(8) cf(3,n) if (n.le.0) then write(*,*) write(*,'("Error(fderiv): invalid number of points : ",I8)') n write(*,*) stop end if ! high accuracy integration/differentiation from spline interpolation call spline(n,x,f,cf) select case(m) case(:-1) sm=0.d0 g(1)=0.d0 do i=1,n-1 dx=x(i+1)-x(i) sm=sm+dx*(f(i) & +dx*(0.5d0*cf(1,i) & +dx*(0.3333333333333333333d0*cf(2,i) & +dx*0.25d0*cf(3,i)))) g(i+1)=sm end do case(1) g(:)=cf(1,:) case(2) g(:)=2.d0*cf(2,:) case(3) g(:)=6.d0*cf(3,:) case(4:) g(:)=0.d0 end select end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genpmat.f900000644000000000000000000000013214061636517014677 xustar0030 mtime=1623670095.297102137 30 atime=1623670094.069103277 30 ctime=1623670095.297102137 elk-7.2.42/src/genpmat.f900000644002504400250440000000145714061636517016743 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genpmat use modmain use modmpi use modomp implicit none ! local variables integer ik,nthd if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(genpmat_) write(*,'("Info(genpmat): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(genpmat_) call putpmat(ik) end do !$OMP END PARALLEL DO call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/genexpmat.f900000644000000000000000000000013214061636517015234 xustar0030 mtime=1623670095.299102135 30 atime=1623670094.071103275 30 ctime=1623670095.299102135 elk-7.2.42/src/genexpmat.f900000644002504400250440000001250214061636517017271 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genexpmat(vpl,expmt,emat) use modmain implicit none ! arguments real(8), intent(in) :: vpl(3) complex(8), intent(in) :: expmt(npcmtmax,natmtot) complex(8), intent(out) :: emat(nstsv,nstsv) ! local variables integer ist,jst,ispn,i,j,k,l integer is,ia,ias,nrc,nrci integer npc,ngp,ngpq,igp,ifg real(8) vpc(3),vpql(3),vpqc(3),t1 complex(8) z1 ! allocatable arrays integer, allocatable :: igpig(:),igpqig(:) real(8), allocatable :: vgpl(:,:),vgpc(:,:),gpc(:) real(8), allocatable :: vgpql(:,:),vgpqc(:,:),gpqc(:) complex(8), allocatable :: sfacgp(:,:),sfacgpq(:,:) complex(8), allocatable :: apwalm1(:,:,:,:),apwalm2(:,:,:,:) complex(8), allocatable :: evecfv1(:,:),evecfv2(:,:) complex(8), allocatable :: evecsv1(:,:),evecsv2(:,:) complex(8), allocatable :: wfmt1(:),wfmt2(:,:) complex(8), allocatable :: zfir(:),x(:),em(:,:) ! external functions complex(8), external :: zfmtinp,zdotc ! check if q-vector is zero t1=abs(vecql(1))+abs(vecql(2))+abs(vecql(3)) if (t1.lt.epslat) then emat(:,:)=0.d0 do i=1,nstsv emat(i,i)=1.d0 end do return end if ! allocate local arrays allocate(igpig(ngkmax),igpqig(ngkmax)) allocate(vgpl(3,ngkmax),vgpc(3,ngkmax),gpc(ngkmax)) allocate(vgpql(3,ngkmax),vgpqc(3,ngkmax),gpqc(ngkmax)) allocate(sfacgp(ngkmax,natmtot),sfacgpq(ngkmax,natmtot)) allocate(apwalm1(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(apwalm2(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv1(nmatmax,nstfv),evecfv2(nmatmax,nstfv)) if (tevecsv) then allocate(evecsv1(nstsv,nstsv),evecsv2(nstsv,nstsv)) end if allocate(wfmt1(npcmtmax),wfmt2(npcmtmax,nstfv)) allocate(zfir(ngtot),x(ngkmax),em(nstfv,nstfv)) ! p-vector in Cartesian coordinates call r3mv(bvec,vpl,vpc) ! generate the G+p-vectors call gengkvec(ngvc,ivg,vgc,vpl,vpc,gkmax,ngkmax,ngp,igpig,vgpl,vgpc,gpc) ! generate the structure factors call gensfacgp(ngp,vgpc,ngkmax,sfacgp) ! find the matching coefficients for k-point p call match(ngp,vgpc,gpc,sfacgp,apwalm1) ! get the eigenvectors for k-point p call getevecfv(filext,0,vpl,vgpl,evecfv1) ! p+q-vector in lattice coordinates vpql(:)=vpl(:)+vecql(:) ! p+q-vector in Cartesian coordinates call r3mv(bvec,vpql,vpqc) ! generate the G+p+q-vectors call gengkvec(ngvc,ivg,vgc,vpql,vpqc,gkmax,ngkmax,ngpq,igpqig,vgpql,vgpqc,gpqc) ! generate the structure factors call gensfacgp(ngpq,vgpqc,ngkmax,sfacgpq) ! find the matching coefficients for k-point p+q call match(ngpq,vgpqc,gpqc,sfacgpq,apwalm2) ! get the eigenvectors for k-point p+q call getevecfv(filext,0,vpql,vgpql,evecfv2) ! set the first-variational matrix element array to zero em(:,:)=0.d0 !------------------------------------! ! muffin-tin matrix elements ! !------------------------------------! do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do ist=1,nstfv ! calculate the wavefunction for k-point p+q call wavefmt(lradstp,ias,ngpq,apwalm2(:,:,:,ias),evecfv2(:,ist),wfmt1) ! convert from spherical harmonics to spherical coordinates call zbsht(nrc,nrci,wfmt1,wfmt2(:,ist)) ! multiply by exp(-iq.r) (conjugate because zfmtinp conjugates first function) wfmt1(1:npc)=conjg(expmt(1:npc,ias))*wfmt2(1:npc,ist) ! convert from spherical coordinates to spherical harmonics call zfsht(nrc,nrci,wfmt1,wfmt2(:,ist)) end do do jst=1,nstfv ! calculate the wavefunction for k-point p call wavefmt(lradstp,ias,ngp,apwalm1(:,:,:,ias),evecfv1(:,jst),wfmt1) do ist=1,nstfv em(ist,jst)=em(ist,jst)+zfmtinp(nrc,nrci,wrcmt(:,is),wfmt2(:,ist),wfmt1) end do end do ! end loops over atoms and species end do end do !--------------------------------------! ! interstitial matrix elements ! !--------------------------------------! ! compute interstitial wavefunctions for k-point p do jst=1,nstfv zfir(:)=0.d0 do igp=1,ngp ifg=igfft(igpig(igp)) zfir(ifg)=evecfv1(igp,jst) end do ! Fourier transform wavefunction to real-space call zfftifc(3,ngridg,1,zfir) ! multiply with the characteristic function zfir(:)=zfir(:)*cfunir(:) ! Fourier transform back to G-space call zfftifc(3,ngridg,-1,zfir) ! store as wavefunction with G+p+q index do igp=1,ngpq ifg=igfft(igpqig(igp)) x(igp)=zfir(ifg) end do ! add to the first-variational matrix elements do ist=1,nstfv em(ist,jst)=em(ist,jst)+zdotc(ngpq,evecfv2(:,ist),1,x,1) end do end do !-------------------------------------------! ! second-variational matrix elements ! !-------------------------------------------! if (tevecsv) then ! get the second-variational eigenvectors call getevecsv(filext,0,vpl,evecsv1) call getevecsv(filext,0,vpql,evecsv2) do i=1,nstsv do j=1,nstsv z1=0.d0 k=0 do ispn=1,nspinor do ist=1,nstfv k=k+1 l=(ispn-1)*nstfv do jst=1,nstfv l=l+1 z1=z1+em(ist,jst)*conjg(evecsv2(k,i))*evecsv1(l,j) end do end do end do emat(i,j)=z1 end do end do else emat(:,:)=em(:,:) end if deallocate(igpig,igpqig,vgpl,vgpc,gpc) deallocate(vgpql,vgpqc,gpqc,sfacgp,sfacgpq) deallocate(apwalm1,apwalm2,evecfv1,evecfv2) if (tevecsv) deallocate(evecsv1,evecsv2) deallocate(wfmt1,wfmt2,zfir,x,em) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeforces.f900000644000000000000000000000013214061636517015600 xustar0030 mtime=1623670095.301102134 30 atime=1623670094.072103274 30 ctime=1623670095.301102134 elk-7.2.42/src/writeforces.f900000644002504400250440000000161514061636517017640 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2004-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeforces(fnum) use modmain implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,ia,ias real(8) t1 write(fnum,*) write(fnum,'("Forces :")') do is=1,nspecies write(fnum,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(fnum,'(" atom : ",I4)') ia write(fnum,'(" Hellmann-Feynman",T30,": ",3F14.8)') forcehf(:,ias) write(fnum,'(" IBS",T30,": ",3F14.8)') forceibs(:,ias) write(fnum,'(" total force",T30,": ",3F14.8)') forcetot(:,ias) t1=sqrt(forcetot(1,ias)**2+forcetot(2,ias)**2+forcetot(3,ias)**2) write(fnum,'(" total magnitude",T30,": ",F14.8)') t1 end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/r3cross.f900000644000000000000000000000013214061636517014642 xustar0030 mtime=1623670095.302102133 30 atime=1623670094.074103273 30 ctime=1623670095.302102133 elk-7.2.42/src/r3cross.f900000644002504400250440000000134214061636517016677 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3cross ! !INTERFACE: pure subroutine r3cross(x,y,z) ! !INPUT/OUTPUT PARAMETERS: ! x : input vector 1 (in,real(3)) ! y : input vector 2 (in,real(3)) ! z : output cross-product (out,real(3)) ! !DESCRIPTION: ! Returns the cross product of two real 3-vectors. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x(3),y(3) real(8), intent(out) :: z(3) z(1)=x(2)*y(3)-x(3)*y(2) z(2)=x(3)*y(1)-x(1)*y(3) z(3)=x(1)*y(2)-x(2)*y(1) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/match.f900000644000000000000000000000013214061636517014340 xustar0030 mtime=1623670095.304102131 30 atime=1623670094.076103271 30 ctime=1623670095.304102131 elk-7.2.42/src/match.f900000644002504400250440000001177614061636517016411 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: match ! !INTERFACE: subroutine match(ngp,vgpc,gpc,sfacgp,apwalm) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer) ! vgpc : G+p-vectors in Cartesian coordinates (in,real(3,ngkmax)) ! gpc : length of G+p-vectors (in,real(ngkmax)) ! sfacgp : structure factors of G+p-vectors (in,complex(ngkmax,natmtot)) ! apwalm : APW matching coefficients ! (out,complex(ngkmax,apwordmax,lmmaxapw,natmtot)) ! !DESCRIPTION: ! Computes the $({\bf G+p})$-dependent matching coefficients for the APW basis ! functions. Inside muffin-tin $\alpha$, the APW functions are given by ! $$ \phi^{\alpha}_{\bf G+p}({\bf r})=\sum_{l=0}^{l_{\rm max}} ! \sum_{m=-l}^{l}\sum_{j=1}^{M^{\alpha}_l}A^{\alpha}_{jlm}({\bf G+p}) ! u^{\alpha}_{jl}(r)Y_{lm}(\hat{{\bf r}}), $$ ! where $A^{\alpha}_{jlm}({\bf G+p})$ is the matching coefficient, ! $M^{\alpha}_l$ is the order of the APW and $u^{\alpha}_{jl}$ is the radial ! function. In the interstitial region, an APW function is a plane wave, ! $\exp(i({\bf G+p})\cdot{\bf r})/\sqrt{\Omega}$, where $\Omega$ is the unit ! cell volume. Ensuring continuity up to the $(M^{\alpha}_l-1)$th derivative ! across the muffin-tin boundary therefore requires that the matching ! coefficients satisfy ! $$ \sum_{j=1}^{M^{\alpha}_l}D_{ij}A^{\alpha}_{jlm}({\bf G+p})=b_i\;, $$ ! where ! $$ D_{ij}=\left.\frac{d^{i-1}u^{\alpha}_{jl}(r)}{dr^{i-1}} ! \right|_{r=R_{\alpha}} $$ ! and ! $$ b_i=\frac{4\pi i^l}{\sqrt{\Omega}}|{\bf G+p}|^{i-1}j^{(i-1)}_l ! (|{\bf G+p}|R_{\alpha})\exp(i({\bf G+p})\cdot{\bf r}_{\alpha})Y^*_{lm} ! (\widehat{{\bf G+p}}), $$ ! with ${\bf r}_{\alpha}$ the atomic position and $R_{\alpha}$ the muffin-tin ! radius. See routine {\tt wavefmt}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Fixed documentation, June 2006 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp real(8), intent(in) :: vgpc(3,ngkmax),gpc(ngkmax) complex(8), intent(in) :: sfacgp(ngkmax,natmtot) complex(8), intent(out) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) ! local variables integer is,ia,ias integer omax,ord,info integer l,lma,lmb,lm,io,jo integer nr,ir,igp,i real(8) t0,t1 complex(8) z1,z2,z3 ! automatic arrays integer ipiv(apwordmax) real(8) djl(0:lmaxapw,apwordmax,ngp) complex(8) a(apwordmax,apwordmax),ylmgp(lmmaxapw,ngp) complex(8) b(apwordmax,ngp*(2*lmaxapw+1)) ! external functions real(8), external :: polynm ! compute the spherical harmonics of the G+p-vectors do igp=1,ngp call genylmv(lmaxapw,vgpc(:,igp),ylmgp(:,igp)) end do t0=fourpi/sqrt(omega) ! loop over species do is=1,nspecies nr=nrmt(is) ! maximum APW order for this species omax=maxval(apword(1:lmaxapw,is)) ! special case of omax=1 if (omax.eq.1) then do igp=1,ngp t1=gpc(igp)*rmt(is) call sbessel(lmaxapw,t1,djl(:,1,igp)) end do do ia=1,natoms(is) ias=idxas(ia,is) do l=0,lmaxapw z1=(t0/apwfr(nr,1,1,l,ias))*zil(l) lma=l**2+1; lmb=lma+2*l do igp=1,ngp z2=djl(l,1,igp)*z1*sfacgp(igp,ias) do lm=lma,lmb apwalm(igp,1,lm,ias)=z2*conjg(ylmgp(lm,igp)) end do end do end do end do cycle end if ! starting point on radial mesh for fitting polynomial of order npapw ir=nr-npapw+1 ! evaluate the spherical Bessel function derivatives for all G+p-vectors do igp=1,ngp t1=gpc(igp)*rmt(is) do io=1,omax call sbesseldm(io-1,lmaxapw,t1,djl(:,io,igp)) end do t1=1.d0 do io=2,omax t1=t1*gpc(igp) djl(:,io,igp)=t1*djl(:,io,igp) end do end do ! loop over atoms do ia=1,natoms(is) ias=idxas(ia,is) ! begin loop over l do l=0,lmaxapw ord=apword(l,is) z1=t0*zil(l) ! set up matrix of derivatives do jo=1,ord do io=1,ord a(io,jo)=polynm(io-1,npapw,rsp(ir,is),apwfr(ir,1,jo,l,ias),rmt(is)) end do end do lma=l**2+1; lmb=lma+2*l ! set up target vectors i=0 do igp=1,ngp z2=z1*sfacgp(igp,ias) do lm=lma,lmb i=i+1 z3=z2*conjg(ylmgp(lm,igp)) do io=1,ord b(io,i)=djl(l,io,igp)*z3 end do end do end do ! solve the general complex linear systems call zgesv(ord,i,a,apwordmax,ipiv,b,apwordmax,info) if (info.ne.0) then write(*,*) write(*,'("Error(match): could not find APW matching coefficients")') write(*,'(" for species ",I4," and atom ",I4)') is,ia write(*,'(" ZGESV returned INFO = ",I8)') info write(*,*) stop end if i=0 do igp=1,ngp do lm=lma,lmb i=i+1 do io=1,ord apwalm(igp,io,lm,ias)=b(io,i) end do end do end do ! end loop over l end do ! end loops over atoms and species end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genspchi0.f900000644000000000000000000000013014061636517015122 xustar0029 mtime=1623670095.30510213 30 atime=1623670094.078103269 29 ctime=1623670095.30510213 elk-7.2.42/src/genspchi0.f900000644002504400250440000001612514061636517017166 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genspchi0 ! !INTERFACE: subroutine genspchi0(ik,lock,ssr,vqpl,jlgqr,ylmgq,sfacgq,chi0) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! ik : k-point from non-reduced set (in,integer) ! lock : OpenMP locks for frequency index of chi0 (in,integer(nwrf)) ! ssr : scissor correction (in,real) ! vqpl : input q-point in lattice coordinates (in,real(3)) ! jlgqr : spherical Bessel functions evaluated on the coarse radial mesh for ! all species and G+q-vectors (in,real(njcmax,nspecies,ngrf)) ! ylmgq : spherical harmonics of the G+q-vectors (in,complex(lmmaxo,ngrf)) ! sfacgq : structure factors of G+q-vectors (in,complex(ngrf,natmtot)) ! chi0 : spin-dependent Kohn-Sham response function in G-space ! (out,complex(ngrf,4,ngrf,4,nwrf)) ! !DESCRIPTION: ! Computes the spin-dependent Kohn-Sham response function: ! \begin{align*} ! \chi_{\alpha\beta,\alpha'\beta'}({\bf r},{\bf r}',\omega) ! & \equiv\frac{\delta\rho_{\alpha\beta}({\bf r},\omega)} ! {\delta v_{\alpha'\beta'}({\bf r}',\omega)} \\ ! & =\frac{1}{N_k}\sum_{i{\bf k},j{\bf k}'}(f_{i{\bf k}}-f_{j{\bf k}'}) ! \frac{\langle i{\bf k}|\hat{\rho}_{\beta\alpha}({\bf r})|j{\bf k}'\rangle ! \langle j{\bf k}'|\hat{\rho}_{\alpha'\beta'}({\bf r}')|i{\bf k}\rangle} ! {w+(\varepsilon_{i{\bf k}}-\varepsilon_{j{\bf k}'})+i\eta}, ! \end{align*} ! where $\alpha$ and $\beta$ are spin-coordinates, $N_k$ is the number of ! $k$-points, $f_{i{\bf k}}$ are the occupancies, $v$ is the Kohn-Sham ! potential and $\hat{\rho}$ is the spin-density operator. With translational ! symmetry in mind, we adopt the following convention for its Fourier ! transform: ! $$ \chi_{\alpha\beta,\alpha'\beta'}({\bf G},{\bf G}',{\bf q},\omega)= ! \frac{1}{\Omega}\int d^3r\,d^3r'\,e^{-i({\bf G}+{\bf q})\cdot{\bf r}} ! e^{i({\bf G}'+{\bf q})\cdot{\bf r}'} ! \chi_{\alpha\beta,\alpha'\beta'}({\bf r},{\bf r}',\omega). $$ ! Let ! $$ Z_{i{\bf k},j{\bf k}+{\bf q}}^{\alpha\beta}({\bf G})\equiv ! \int d^3r\,e^{i({\bf G}+{\bf q})\cdot{\bf r}} ! \varphi_{j{\bf k}+{\bf q},\alpha}^*({\bf r}) ! \varphi_{i{\bf k},\beta}({\bf r}) $$ ! then the response function in $G$-space can be written ! $$ \chi_{\alpha\beta,\alpha'\beta'}({\bf G},{\bf G}',{\bf q},\omega)= ! \frac{1}{N_k\Omega}\sum_{i{\bf k},j{\bf k}+{\bf q}} ! (f_{i{\bf k}}-f_{j{\bf k}}) ! \frac{\left[Z_{i{\bf k},j{\bf k}+{\bf q}}^{\alpha\beta}({\bf G})\right]^* ! Z_{i{\bf k},j{\bf k}+{\bf q}}^{\alpha'\beta'}({\bf G}')} ! {w+(\varepsilon_{i{\bf k}}-\varepsilon_{j{\bf k}+{\bf q}})+i\eta}. $$ ! ! !REVISION HISTORY: ! Created March 2012 (SS and JKD) !EOP !BOC implicit none ! local variables integer, intent(in) :: ik integer(8), intent(in) :: lock(nwrf) real(8), intent(in) :: ssr,vqpl(3),jlgqr(njcmax,nspecies,ngrf) complex(8), intent(in) :: ylmgq(lmmaxo,ngrf),sfacgq(ngrf,natmtot) complex(8), intent(inout) :: chi0(ngrf,4,ngrf,4,nwrf) ! local variables logical tz(4),tssr integer isym,jk,jkq,iw integer nst,nstq,ist,jst,kst,lst integer ig,jg,a,b,i,j,nthd real(8) vkql(3),ei,ej,eij,t1 complex(8) z1 ! automatic arrays integer idx(nstsv),idxq(nstsv) integer ngp(nspnfv),ngpq(nspnfv) ! allocatable arrays integer, allocatable :: igpig(:,:),igpqig(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: wfmtq(:,:,:,:),wfirq(:,:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:),zrhoig(:,:) complex(8), allocatable :: zw(:),c(:,:,:,:) if (.not.spinpol) then write(*,*) write(*,'("Error(genspchi0): spin-unpolarised calculation")') write(*,*) stop end if ! k+q-vector in lattice coordinates vkql(:)=vkl(:,ik)+vqpl(:) ! equivalent reduced k-points for k and k+q jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) call findkpt(vkql,isym,jkq) ! count and index states at k and k+q in energy window nst=0 do ist=1,nstsv if (abs(evalsv(ist,jk)-efermi).lt.emaxrf) then nst=nst+1 idx(nst)=ist end if end do nstq=0 do jst=1,nstsv if (abs(evalsv(jst,jkq)-efermi).lt.emaxrf) then nstq=nstq+1 idxq(nstq)=jst end if end do ! set flag for scissor operator if (abs(ssr).gt.1.d-8) then tssr=.true. else tssr=.false. end if ! generate the wavefunctions for all states at k and k+q in energy window allocate(igpig(ngkmax,nspnfv)) allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfir(ngtc,nspinor,nst)) call genwfsvp(.false.,.false.,nst,idx,ngdgc,igfc,vkl(:,ik),ngp,igpig,wfmt,ngtc,& wfir) deallocate(igpig) allocate(igpqig(ngkmax,nspnfv)) allocate(wfmtq(npcmtmax,natmtot,nspinor,nstq),wfirq(ngtc,nspinor,nstq)) call genwfsvp(.false.,.false.,nstq,idxq,ngdgc,igfc,vkql,ngpq,igpqig,wfmtq,ngtc,& wfirq) deallocate(igpqig) call holdthd(nst,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,zrhoig,zw,c) & !$OMP PRIVATE(jst,kst,lst,ei,ej,eij,t1) & !$OMP PRIVATE(iw,i,j,a,b,tz,ig,jg,z1) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) allocate(zrhoig(ngrf,4),zw(nwrf),c(ngrf,4,ngrf,4)) !$OMP DO do ist=1,nst kst=idx(ist) ei=evalsv(kst,jk) do jst=1,nstq lst=idxq(jst) t1=wkptnr*omega*(occsv(kst,jk)-occsv(lst,jkq)) if (abs(t1).lt.1.d-8) cycle ej=evalsv(lst,jkq) eij=ei-ej ! scissor operator if (tssr) then if ((ei.gt.efermi).and.(ej.le.efermi)) then eij=eij+ssr else if ((ei.le.efermi).and.(ej.gt.efermi)) then eij=eij-ssr end if end if ! frequency-dependent part in response function formula for all frequencies do iw=1,nwrf zw(iw)=t1/(eij+wrf(iw)) end do ! compute the complex density in G+q-space i=0 do a=1,2 do b=1,2 i=i+1 ! find which contributions are zero for collinear case tz(i)=.false. if (.not.ncmag) then if (((a.eq.1).and.(kst.gt.nstfv)).or. & ((a.eq.2).and.(kst.le.nstfv)).or. & ((b.eq.1).and.(lst.gt.nstfv)).or. & ((b.eq.2).and.(lst.le.nstfv))) then tz(i)=.true. cycle end if end if call genzrho(.true.,.false.,ngtc,wfmt(:,:,a,ist),wfir(:,a,ist), & wfmtq(:,:,b,jst),wfirq(:,b,jst),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zrhoig(:,i)) end do end do ! Hermitian part of matrix do j=1,4 if (tz(j)) cycle do jg=1,ngrf z1=conjg(zrhoig(jg,j)) do i=1,4 if (tz(i)) cycle do ig=1,ngrf c(ig,i,jg,j)=zrhoig(ig,i)*z1 end do end do end do end do do iw=1,nwrf z1=zw(iw) call omp_set_lock(lock(iw)) do j=1,4 if (tz(j)) cycle do jg=1,ngrf do i=1,4 if (tz(i)) cycle call zaxpy(ngrf,z1,c(:,i,jg,j),1,chi0(:,i,jg,j,iw),1) end do end do end do call omp_unset_lock(lock(iw)) end do ! end loop over jst end do ! end loop over ist end do !$OMP END DO deallocate(zrhomt,zrhoir,zrhoig,zw,c) !$OMP END PARALLEL call freethd(nthd) deallocate(wfmt,wfmtq,wfir,wfirq) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genzrho.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.307102128 30 atime=1623670094.079103268 30 ctime=1623670095.307102128 elk-7.2.42/src/genzrho.f900000644002504400250440000000630014061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genzrho ! !INTERFACE: subroutine genzrho(tsh,tspc,ngt,wfmt1,wfir1,wfmt2,wfir2,zrhomt,zrhoir) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! tsh : .true. if the muffin-tin density is to be in spherical harmonics ! (in,logical) ! tspc : .true. if the density should be contracted over spin (in,logical) ! ngt : total number of interstitial grid points (in,integer) ! wfmt1 : muffin-tin part of wavefunction 1 in spherical coordinates ! (in,complex(npcmtmax,natmtot,*)) ! wfir1 : interstitial wavefunction 1 (in,complex(ngt,*)) ! wfmt2 : muffin-tin part of wavefunction 2 in spherical coordinates ! (in,complex(npcmtmax,natmtot,*)) ! wfir2 : interstitial wavefunction 2 (in,complex(ngt,*)) ! zrhomt : muffin-tin charge density in spherical harmonics/coordinates ! (out,complex(npcmtmax,natmtot)) ! zrhoir : interstitial charge density (out,complex(ngt)) ! !DESCRIPTION: ! Calculates the complex overlap charge density from two input wavefunctions: ! $$ \rho({\bf r})\equiv\Psi_1^{\dag}({\bf r})\cdot\Psi_2({\bf r}). $$ ! Note that the muffin-tin wavefunctions are provided in spherical coordinates ! and the returned density is either in terms of spherical harmonic ! coefficients or spherical coordinates when {\tt tsh} is {\tt .true.} or ! {\tt .false.}, respectively. ! ! !REVISION HISTORY: ! Created November 2004 (Sharma) !EOP !BOC implicit none ! arguments logical, intent(in) :: tsh,tspc integer, intent(in) :: ngt complex(8), intent(in) :: wfmt1(npcmtmax,natmtot,*),wfir1(ngt,*) complex(8), intent(in) :: wfmt2(npcmtmax,natmtot,*),wfir2(ngt,*) complex(8), intent(out) :: zrhomt(npcmtmax,natmtot),zrhoir(ngt) ! local variables integer is,ias ! automatic arrays complex(8) zfmt(npcmtmax) ! muffin-tin part do ias=1,natmtot is=idxis(ias) if (tsh) then if (tspc.and.spinpol) then ! contract over spin call zrho2(npcmt(is),wfmt1(:,ias,1),wfmt1(:,ias,2),wfmt2(:,ias,1), & wfmt2(:,ias,2),zfmt) else ! no spin contraction call zrho1(npcmt(is),wfmt1(:,ias,1),wfmt2(:,ias,1),zfmt) end if ! convert to spherical harmonics call zfsht(nrcmt(is),nrcmti(is),zfmt,zrhomt(:,ias)) else if (tspc.and.spinpol) then call zrho2(npcmt(is),wfmt1(:,ias,1),wfmt1(:,ias,2),wfmt2(:,ias,1), & wfmt2(:,ias,2),zrhomt(:,ias)) else call zrho1(npcmt(is),wfmt1(:,ias,1),wfmt2(:,ias,1),zrhomt(:,ias)) end if end if end do ! interstitial part if (tspc.and.spinpol) then call zrho2(ngt,wfir1,wfir1(:,2),wfir2,wfir2(:,2),zrhoir) else call zrho1(ngt,wfir1,wfir2,zrhoir) end if return contains pure subroutine zrho1(n,x,y,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x(n),y(n) complex(8), intent(out) :: z(n) z(:)=conjg(x(:))*y(:) end subroutine pure subroutine zrho2(n,x1,x2,y1,y2,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x1(n),x2(n),y1(n),y2(n) complex(8), intent(out) :: z(n) z(:)=conjg(x1(:))*y1(:)+conjg(x2(:))*y2(:) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/potefield.f900000644000000000000000000000013214061636517015217 xustar0030 mtime=1623670095.308102127 30 atime=1623670094.081103266 30 ctime=1623670095.308102127 elk-7.2.42/src/potefield.f900000644002504400250440000000320314061636517017252 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potefield use modmain implicit none ! local variables integer is,ia,ias integer nr,nri,ir integer i,i1,i2,i3 real(8) e,tp(2),r,t1 real(8) v0,e00,elm(-1:1) real(8) v1(3),v2(3) ! constant added to potential so that it is zero at the unit cell center v1(:)=0.5d0*(avec(:,1)+avec(:,2)+avec(:,3)) v0=dot_product(efieldc(:),v1(:)) ! determine the electric field vector in spherical coordinates call sphcrd(efieldc,e,tp) ! coefficients for real spherical harmonics R_1-1, R_10 and R_11 t1=e*sqrt(fourpi/3.d0) elm(-1)=t1*sin(tp(1))*sin(tp(2)) elm(0)=-t1*cos(tp(1)) elm(1)=t1*sin(tp(1))*cos(tp(2)) ! muffin-tin potential do is=1,nspecies nr=nrmt(is) nri=nrmti(is) do ia=1,natoms(is) ias=idxas(ia,is) ! coefficient for R_00 e00=v0-dot_product(efieldc(:),atposc(:,ia,is)) e00=e00/y00 i=1 do ir=1,nr r=rsp(ir,is) vclmt(i,ias)=vclmt(i,ias)+e00 vclmt(i+1,ias)=vclmt(i+1,ias)+elm(-1)*r vclmt(i+2,ias)=vclmt(i+2,ias)+elm(0)*r vclmt(i+3,ias)=vclmt(i+3,ias)+elm(1)*r if (ir.le.nri) then i=i+lmmaxi else i=i+lmmaxo end if end do end do end do ! interstitial potential ir=0 do i3=0,ngridg(3)-1 v1(3)=dble(i3)/dble(ngridg(3)) do i2=0,ngridg(2)-1 v1(2)=dble(i2)/dble(ngridg(2)) do i1=0,ngridg(1)-1 v1(1)=dble(i1)/dble(ngridg(1)) ir=ir+1 call r3mv(avec,v1,v2) vclir(ir)=vclir(ir)+v0-dot_product(efieldc(:),v2(:)) end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/rhoinit.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.310102125 30 atime=1623670094.083103264 30 ctime=1623670095.310102125 elk-7.2.42/src/rhoinit.f900000644002504400250440000000731114061636517016757 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rhoinit ! !INTERFACE: subroutine rhoinit ! !USES: use modmain use modomp ! !DESCRIPTION: ! Initialises the crystal charge density. Inside the muffin-tins it is set to ! the spherical atomic density. In the interstitial region it is taken to be ! constant such that the total charge is correct. Requires that the atomic ! densities have already been calculated. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! local variables integer lmax,is,ia,ias,i integer nr,nri,nro,nrs,ir integer nrc,nrci,irco,irc integer l,m,lm,ig,ifg,nthd real(8) x,sm,t1,t2 complex(8) z1,z2,z3 ! automatic arrays real(8) ffg(ngvc),wr(nrspmax),jl(0:lmaxi,nrcmtmax) complex(8) zfmt(npcmtmax) ! allocatable arrays complex(8), allocatable :: zfft(:) lmax=min(lmaxi,1) ! compute the superposition of all the atomic density tails allocate(zfft(ngtot)) zfft(:)=0.d0 call holdthd(nspecies,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ffg,wr,nr,nrs,nro,ig) & !$OMP PRIVATE(t1,t2,sm,ir,x,ia,ias,ifg) & !$OMP NUM_THREADS(nthd) do is=1,nspecies nr=nrmt(is) nrs=nrsp(is) nro=nrs-nr+1 ! determine the weights for the radial integral call wsplint(nro,rsp(nr,is),wr(nr)) do ig=1,ngvc t1=gc(ig) ! spherical bessel function j_0(x) times the atomic density tail if (t1.gt.epslat) then t2=1.d0/t1 sm=0.d0 do ir=nr,nrs x=t1*rsp(ir,is) sm=sm+t2*sin(x)*rhosp(ir,is)*rsp(ir,is)*wr(ir) end do else sm=sum(rhosp(nr:nrs,is)*(rsp(nr:nrs,is)**2)*wr(nr:nrs)) end if ! apply low-pass filter t1=sm*exp(-4.d0*(gc(ig)/gmaxvr)**2) ffg(ig)=(fourpi/omega)*t1 end do do ia=1,natoms(is) ias=idxas(ia,is) !$OMP CRITICAL(rhoinit_) do ig=1,ngvc ifg=igfft(ig) zfft(ifg)=zfft(ifg)+ffg(ig)*conjg(sfacg(ig,ias)) end do !$OMP END CRITICAL(rhoinit_) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! compute the tails in each muffin-tin call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(jl,zfmt,is,nrc,nrci) & !$OMP PRIVATE(irco,ig,ifg,irc,x) & !$OMP PRIVATE(z1,z2,z3,lm,l,m,i) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) irco=nrci+1 zfmt(1:npcmt(is))=0.d0 do ig=1,ngvc ifg=igfft(ig) do irc=1,nrc x=gc(ig)*rcmt(irc,is) call sbessel(lmax,x,jl(:,irc)) end do z1=fourpi*zfft(ifg)*sfacg(ig,ias) lm=0 do l=0,lmax z2=z1*zil(l) do m=-l,l lm=lm+1 z3=z2*conjg(ylmg(lm,ig)) i=lm do irc=1,nrci zfmt(i)=zfmt(i)+jl(l,irc)*z3 i=i+lmmaxi end do do irc=irco,nrc zfmt(i)=zfmt(i)+jl(l,irc)*z3 i=i+lmmaxo end do end do end do end do call ztorfmt(nrc,nrci,zfmt,rhomt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! convert the density from a coarse to a fine radial mesh call rfmtctof(rhomt) ! add the atomic charge density and the excess charge in each muffin-tin t1=chgexs/omega do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri t2=(t1+rhosp(ir,is))/y00 rhomt(i,ias)=rhomt(i,ias)+t2 i=i+lmmaxi end do do ir=nri+1,nr t2=(t1+rhosp(ir,is))/y00 rhomt(i,ias)=rhomt(i,ias)+t2 i=i+lmmaxo end do end do ! interstitial density determined from the atomic tails and excess charge call zfftifc(3,ngridg,1,zfft) do ir=1,ngtot rhoir(ir)=dble(zfft(ir))+t1 ! make sure that the density is always positive if (rhoir(ir).lt.1.d-10) rhoir(ir)=1.d-10 end do deallocate(zfft) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/eveqnsv.f900000644000000000000000000000013214061636517014733 xustar0030 mtime=1623670095.311102124 30 atime=1623670094.084103263 30 ctime=1623670095.311102124 elk-7.2.42/src/eveqnsv.f900000644002504400250440000002757214061636517017005 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2010 J. K. Dewhurst, S. Sharma, C. Ambrosch-Draxl, ! F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnsv(ngp,igpig,vgpc,apwalm,evalfv,evecfv,evalsvp,evecsv) use modmain use moddftu use modomp implicit none ! arguments integer, intent(in) :: ngp,igpig(ngkmax) real(8), intent(in) :: vgpc(3,ngkmax) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) real(8), intent(in) :: evalfv(nstfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv) real(8), intent(out) :: evalsvp(nstsv) complex(8), intent(out) :: evecsv(nstsv,nstsv) ! local variables logical todsb,socz integer ld,ist,jst,ispn,is,ias integer nrc,nrci,nrco,irco,irc integer l,lm,nm,npc,npci,ipco integer igp,i,j,k,nthd real(8) a1,a2,a3,t1 real(8) ts0,ts1 complex(8) z1 ! automatic arrays complex(8) wfmt2(npcmtmax) complex(8) wfmt31(npcmtmax),wfmt32(npcmtmax),wfmt33(npcmtmax) complex(4) wfmt5(npcmtmax) complex(8) wfgp1(ngkmax),wfgp2(ngkmax),wfgp3(ngkmax) ! allocatable arrays complex(8), allocatable :: wfmt1(:,:),wfmt4(:,:) complex(4), allocatable :: wfmt6(:,:),gwfmt(:,:,:) complex(8), allocatable :: wfir1(:),wfir2(:),gwfgp(:,:) ! external functions complex(4), external :: cdotc complex(8), external :: zdotc ! no calculation of second-variational eigenvectors if (.not.tevecsv) then do i=1,nstsv evalsvp(i)=evalfv(i) end do evecsv(:,:)=0.d0 do i=1,nstsv evecsv(i,i)=1.d0 end do return end if call timesec(ts0) if (tafield) then ! coupling constant of the external A-field (-1/c) t1=-1.d0/solsc a1=t1*afieldc(1); a2=t1*afieldc(2); a3=t1*afieldc(3) end if ! check if the off-diagonal spin block of the Hamiltonian is required if (spinpol.and.(ncmag.or.spinorb)) then todsb=.true. else todsb=.false. end if ! special case of spin-orbit coupling and collinear magnetism if (spinorb.and.cmagz) then socz=.true. else socz=.false. end if ld=lmmaxdm*nspinor ! zero the second-variational Hamiltonian (stored in the eigenvector array) evecsv(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! allocate(wfmt1(npcmtmax,nstfv),wfmt6(npcmtmax,nstfv)) if (xcgrad.eq.4) allocate(gwfmt(npcmtmax,3,nstfv)) call holdthd(nstfv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfmt2,wfmt31,wfmt32,wfmt33,wfmt4,wfmt5) & !$OMP PRIVATE(ias,is,nrc,nrci,nrco,irco) & !$OMP PRIVATE(npc,npci,ipco,ist,jst,i,j,k) & !$OMP PRIVATE(irc,t1,l,nm,lm,z1) & !$OMP NUM_THREADS(nthd) allocate(wfmt4(npcmtmax,3)) ! begin loop over atoms do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) nrco=nrc-nrci irco=nrci+1 npc=npcmt(is) npci=npcmti(is) ipco=npci+1 ! compute the first-variational wavefunctions !$OMP DO do ist=1,nstfv call wavefmt(lradstp,ias,ngp,apwalm(:,:,:,ias),evecfv(:,ist),wfmt1(:,ist)) ! make a single-precision copy of the wavefuntion wfmt6(1:npc,ist)=wfmt1(1:npc,ist) end do !$OMP END DO ! begin loop over states !$OMP DO do jst=1,nstfv if (spinpol) then ! convert wavefunction to spherical coordinates call zbsht(nrc,nrci,wfmt1(:,jst),wfmt2) ! apply Kohn-Sham effective magnetic field wfmt32(1:npc)=bsmt(1:npc,ias,ndmag)*wfmt2(1:npc) ! convert to spherical harmonics call zfsht(nrc,nrci,wfmt32,wfmt31) ! non-collinear magnetic field if (socz) then wfmt33(1:npc)=0.d0 else if (ncmag) then wfmt32(1:npc)=cmplx(bsmt(1:npc,ias,1),-bsmt(1:npc,ias,2),8)*wfmt2(1:npc) call zfsht(nrc,nrci,wfmt32,wfmt33) end if wfmt32(1:npc)=-wfmt31(1:npc) ! apply spin-orbit coupling if required if (spinorb) then call lopzflmn(lmaxi,nrci,lmmaxi,wfmt1(1,jst),wfmt4,wfmt4(1,2), & wfmt4(1,3)) call lopzflmn(lmaxo,nrco,lmmaxo,wfmt1(ipco,jst),wfmt4(ipco,1), & wfmt4(ipco,2),wfmt4(ipco,3)) i=1 ! inner part of muffin-tin do irc=1,nrci t1=socfr(irc,ias) do lm=1,lmmaxi wfmt31(i)=wfmt31(i)+t1*wfmt4(i,3) wfmt32(i)=wfmt32(i)-t1*wfmt4(i,3) wfmt33(i)=wfmt33(i)+t1*(wfmt4(i,1) & +cmplx(aimag(wfmt4(i,2)),-dble(wfmt4(i,2)),8)) i=i+1 end do end do ! outer part of muffin-tin do irc=irco,nrc t1=socfr(irc,ias) do lm=1,lmmaxo wfmt31(i)=wfmt31(i)+t1*wfmt4(i,3) wfmt32(i)=wfmt32(i)-t1*wfmt4(i,3) wfmt33(i)=wfmt33(i)+t1*(wfmt4(i,1) & +cmplx(aimag(wfmt4(i,2)),-dble(wfmt4(i,2)),8)) i=i+1 end do end do end if else wfmt31(1:npc)=0.d0 end if ! apply muffin-tin potential matrix if required if (tvmatmt) then do l=0,lmaxdm if (tvmmt(l,ias)) then nm=2*l+1 lm=l**2+1 i=npci+lm if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,1,lm,1,ias),ld, & wfmt1(lm,jst),lmmaxi,zone,wfmt31(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,1,lm,1,ias),ld, & wfmt1(i,jst),lmmaxo,zone,wfmt31(i),lmmaxo) if (spinpol) then if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,2,lm,2,ias),ld, & wfmt1(lm,jst),lmmaxi,zone,wfmt32(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,2,lm,2,ias),ld, & wfmt1(i,jst),lmmaxo,zone,wfmt32(i),lmmaxo) if (todsb) then if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,1,lm,2,ias),ld, & wfmt1(lm,jst),lmmaxi,zone,wfmt33(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,1,lm,2,ias),ld, & wfmt1(i,jst),lmmaxo,zone,wfmt33(i),lmmaxo) end if end if end if end do end if ! apply vector potential if required if (tafield) then call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is),wfmt1(:,jst), & npcmtmax,wfmt4) do i=1,npc z1=a1*wfmt4(i,1)+a2*wfmt4(i,2)+a3*wfmt4(i,3) z1=cmplx(aimag(z1),-dble(z1),8) wfmt31(i)=wfmt31(i)+z1 if (spinpol) wfmt32(i)=wfmt32(i)+z1 end do end if ! add to second-variational Hamiltonian matrix ! upper diagonal block call zcfmtwr(nrc,nrci,wrcmt(:,is),wfmt31,wfmt5) do ist=1,jst evecsv(ist,jst)=evecsv(ist,jst)+cdotc(npc,wfmt6(:,ist),1,wfmt5,1) end do if (spinpol) then j=jst+nstfv ! lower diagonal block call zcfmtwr(nrc,nrci,wrcmt(:,is),wfmt32,wfmt5) do ist=1,jst i=ist+nstfv evecsv(i,j)=evecsv(i,j)+cdotc(npc,wfmt6(:,ist),1,wfmt5,1) end do ! off-diagonal block if (todsb) then call zcfmtwr(nrc,nrci,wrcmt(:,is),wfmt33,wfmt5) do ist=1,nstfv evecsv(ist,j)=evecsv(ist,j)+cdotc(npc,wfmt6(:,ist),1,wfmt5,1) end do end if end if ! end loop over states end do !$OMP END DO ! apply meta-GGA non-multiplicative potential if required if (xcgrad.eq.4) then !$OMP DO do ist=1,nstfv ! compute gradient of wavefunction call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is),wfmt1(:,ist), & npcmtmax,wfmt4) ! store in single-precision array gwfmt(1:npc,:,ist)=wfmt4(1:npc,:) end do !$OMP END DO do k=1,3 !$OMP DO do jst=1,nstfv wfmt31(1:npc)=gwfmt(1:npc,k,jst) call zbsht(nrc,nrci,wfmt31,wfmt2) wfmt2(1:npc)=wsmt(1:npc,ias)*wfmt2(1:npc) call zfsht(nrc,nrci,wfmt2,wfmt31) call zcfmtwr(nrc,nrci,wrcmt(:,is),wfmt31,wfmt5) do ist=1,jst z1=cdotc(npc,gwfmt(:,k,ist),1,wfmt5,1) z1=0.5d0*z1 evecsv(ist,jst)=evecsv(ist,jst)+z1 if (spinpol) then i=ist+nstfv j=jst+nstfv evecsv(i,j)=evecsv(i,j)+z1 end if end do end do !$OMP END DO end do end if ! end loop over atoms end do deallocate(wfmt4) !$OMP END PARALLEL call freethd(nthd) deallocate(wfmt1,wfmt6) if (xcgrad.eq.4) deallocate(gwfmt) !---------------------------! ! interstitial part ! !---------------------------! if (spinpol.or.tafield.or.(xcgrad.eq.4)) then if (socz) todsb=.false. if (xcgrad.eq.4) allocate(gwfgp(ngkmax,nstfv)) call holdthd(nstfv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir1,wfir2,wfgp1,wfgp2,wfgp3) & !$OMP PRIVATE(ist,jst,igp,t1,z1,i,j,k) & !$OMP NUM_THREADS(nthd) allocate(wfir1(ngtot),wfir2(ngtot)) ! begin loop over states !$OMP DO do jst=1,nstfv wfir1(:)=0.d0 do igp=1,ngp wfir1(igfft(igpig(igp)))=evecfv(igp,jst) end do ! Fourier transform wavefunction to real-space call zfftifc(3,ngridg,1,wfir1) ! multiply with magnetic field and transform to G-space if (spinpol) then wfir2(1:ngtot)=bsir(1:ngtot,ndmag)*wfir1(1:ngtot) call zfftifc(3,ngridg,-1,wfir2) do igp=1,ngp wfgp1(igp)=wfir2(igfft(igpig(igp))) end do wfgp2(1:ngp)=-wfgp1(1:ngp) if (ncmag) then wfir2(1:ngtot)=cmplx(bsir(1:ngtot,1),-bsir(1:ngtot,2),8)*wfir1(1:ngtot) call zfftifc(3,ngridg,-1,wfir2) do igp=1,ngp wfgp3(igp)=wfir2(igfft(igpig(igp))) end do end if else wfgp1(1:ngp)=0.d0 end if ! apply vector potential if required if (tafield) then wfir1(:)=0.d0 do igp=1,ngp t1=a1*vgpc(1,igp)+a2*vgpc(2,igp)+a3*vgpc(3,igp) wfir1(igfft(igpig(igp)))=t1*evecfv(igp,jst) end do call zfftifc(3,ngridg,1,wfir1) wfir1(1:ngtot)=wfir1(1:ngtot)*cfunir(1:ngtot) call zfftifc(3,ngridg,-1,wfir1) do igp=1,ngp z1=wfir1(igfft(igpig(igp))) wfgp1(igp)=wfgp1(igp)+z1 if (spinpol) wfgp2(igp)=wfgp2(igp)+z1 end do end if ! add to second-variational Hamiltonian matrix ! upper diagonal block do ist=1,jst evecsv(ist,jst)=evecsv(ist,jst)+zdotc(ngp,evecfv(:,ist),1,wfgp1,1) end do if (spinpol) then j=jst+nstfv ! lower diagonal block do ist=1,jst i=ist+nstfv evecsv(i,j)=evecsv(i,j)+zdotc(ngp,evecfv(:,ist),1,wfgp2,1) end do ! off-diagonal block if (todsb) then do ist=1,nstfv evecsv(ist,j)=evecsv(ist,j)+zdotc(ngp,evecfv(:,ist),1,wfgp3,1) end do end if end if ! end loop over states end do !$OMP END DO ! apply meta-GGA non-multiplicative potential if required if (xcgrad.eq.4) then do k=1,3 ! determine the gradient of the wavefunctions !$OMP DO do ist=1,nstfv do igp=1,ngp z1=evecfv(igp,ist) gwfgp(igp,ist)=vgpc(k,igp)*cmplx(-aimag(z1),dble(z1),8) end do end do !$OMP END DO !$OMP DO do jst=1,nstfv wfir1(:)=0.d0 do igp=1,ngp wfir1(igfft(igpig(igp)))=gwfgp(igp,jst) end do call zfftifc(3,ngridg,1,wfir1) wfir1(1:ngtot)=wsir(1:ngtot)*wfir1(1:ngtot) call zfftifc(3,ngridg,-1,wfir1) do igp=1,ngp wfgp1(igp)=wfir1(igfft(igpig(igp))) end do do ist=1,jst z1=0.5d0*zdotc(ngp,gwfgp(:,ist),1,wfgp1,1) evecsv(ist,jst)=evecsv(ist,jst)+z1 if (spinpol) then i=ist+nstfv j=jst+nstfv evecsv(i,j)=evecsv(i,j)+z1 end if end do end do !$OMP END DO end do end if deallocate(wfir1,wfir2) !$OMP END PARALLEL call freethd(nthd) if (xcgrad.eq.4) deallocate(gwfgp) end if ! add the diagonal first-variational part i=0 do ispn=1,nspinor do ist=1,nstfv i=i+1 evecsv(i,i)=evecsv(i,i)+evalfv(ist) end do end do if (spcpl.or.(.not.spinpol)) then ! spins are coupled; or spin-unpolarised: full diagonalisation call eveqnzh(nstsv,nstsv,evecsv,evalsvp) else ! spins not coupled: block diagonalise H call eveqnzh(nstfv,nstsv,evecsv,evalsvp) i=nstfv+1 call eveqnzh(nstfv,nstsv,evecsv(i,i),evalsvp(i)) do j=1,nstfv do i=1,nstfv evecsv(i,j+nstfv)=0.d0 evecsv(i+nstfv,j)=0.d0 end do end do end if call timesec(ts1) !$OMP ATOMIC timesv=timesv+ts1-ts0 end subroutine elk-7.2.42/src/PaxHeaders.21776/roteuler.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.313102122 30 atime=1623670094.086103261 30 ctime=1623670095.313102122 elk-7.2.42/src/roteuler.f900000644002504400250440000000537114061636517017150 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: roteuler ! !INTERFACE: subroutine roteuler(rot,ang) ! !INPUT/OUTPUT PARAMETERS: ! rot : rotation matrix (in,real(3,3)) ! ang : Euler angles (alpha, beta, gamma) (out,real(3)) ! !DESCRIPTION: ! Given a rotation matrix ! \begin{align*} ! &R(\alpha,\beta,\gamma)=\\ ! &\left(\begin{matrix} ! \cos\gamma\cos\beta\cos\alpha-\sin\gamma\sin\alpha & ! \cos\gamma\cos\beta\sin\alpha+\sin\gamma\cos\alpha & ! -\cos\gamma\sin\beta \\ ! -\sin\gamma\cos\beta\cos\alpha-\cos\gamma\sin\alpha & ! -\sin\gamma\cos\beta\sin\alpha+\cos\gamma\cos\alpha & ! \sin\gamma\sin\beta \\ ! \sin\beta\cos\alpha & ! \sin\beta\sin\alpha & ! \cos\beta ! \end{matrix}\right), ! \end{align*} ! this routine determines the Euler angles, $(\alpha,\beta,\gamma)$. This ! corresponds to the so-called `$y$-convention', which involves the following ! successive rotations of the coordinate system: ! \begin{itemize} ! \item[1.]{The $x_1$-, $x_2$-, $x_3$-axes are rotated anticlockwise through ! an angle $\alpha$ about the $x_3$ axis} ! \item[2.]{The $x_1'$-, $x_2'$-, $x_3'$-axes are rotated anticlockwise ! through an angle $\beta$ about the $x_2'$ axis} ! \item[3.]{The $x_1''$-, $x_2''$-, $x_3''$-axes are rotated anticlockwise ! through an angle $\gamma$ about the $x_3''$ axis} ! \end{itemize} ! Note that the Euler angles are not necessarily unique for a given rotation ! matrix. ! ! !REVISION HISTORY: ! Created May 2003 (JKD) ! Fixed problem thanks to Frank Wagner, June 2013 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rot(3,3) real(8), intent(out) :: ang(3) ! local variables real(8), parameter :: eps=1.d-8 real(8), parameter :: pi=3.1415926535897932385d0 real(8) det ! find the determinant det=rot(1,1)*(rot(2,2)*rot(3,3)-rot(3,2)*rot(2,3)) & +rot(2,1)*(rot(3,2)*rot(1,3)-rot(1,2)*rot(3,3)) & +rot(3,1)*(rot(1,2)*rot(2,3)-rot(2,2)*rot(1,3)) if ((det.lt.1.d0-eps).or.(det.gt.1.d0+eps)) then write(*,*) write(*,'("Error(roteuler): matrix improper or not unitary")') write(*,'(" Determinant : ",G18.10)') det write(*,*) stop end if if ((abs(rot(3,1)).gt.eps).or.(abs(rot(3,2)).gt.eps)) then ang(1)=atan2(rot(3,2),rot(3,1)) if (abs(rot(3,1)).gt.abs(rot(3,2))) then ang(2)=atan2(rot(3,1)/cos(ang(1)),rot(3,3)) else ang(2)=atan2(rot(3,2)/sin(ang(1)),rot(3,3)) end if ang(3)=atan2(rot(2,3),-rot(1,3)) else ang(1)=atan2(rot(1,2),rot(1,1)) if (rot(3,3).gt.0.d0) then ang(2)=0.d0 ang(3)=0.d0 else ang(2)=pi ang(3)=pi end if end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genrmesh.f900000644000000000000000000000013214061636517015054 xustar0030 mtime=1623670095.315102121 30 atime=1623670094.088103259 30 ctime=1623670095.315102121 elk-7.2.42/src/genrmesh.f900000644002504400250440000000771214061636517017120 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genrmesh ! !INTERFACE: subroutine genrmesh ! !USES: use modmain use modvars ! !DESCRIPTION: ! Generates the coarse and fine radial meshes for each atomic species in the ! crystal. Also determines which points are in the inner part of the ! muffin-tin using the value of {\tt fracinr}. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! local variables integer is,nr,nrc integer ir,irc,l real(8) t1 ! estimate the number of radial mesh points to infinity nrspmax=1 do is=1,nspecies ! logarithmic mesh t1=log(rmaxsp(is)/rminsp(is))/log(rmt(is)/rminsp(is)) t1=dble(nrmt(is)-1)*t1 nrsp(is)=nint(t1)+1 nrspmax=max(nrspmax,nrsp(is)) end do ! generate the radial meshes if (allocated(rsp)) deallocate(rsp) allocate(rsp(nrspmax,nspecies)) if (allocated(rlmt)) deallocate(rlmt) allocate(rlmt(nrmtmax,-lmaxo-1:lmaxo+2,nspecies)) if (allocated(wrmt)) deallocate(wrmt) allocate(wrmt(nrmtmax,nspecies)) if (allocated(wprmt)) deallocate(wprmt) allocate(wprmt(4,nrmtmax,nspecies)) if (allocated(wcrmt)) deallocate(wcrmt) allocate(wcrmt(12,nrmtmax,nspecies)) do is=1,nspecies t1=1.d0/dble(nrmt(is)-1) ! logarithmic mesh t1=t1*log(rmt(is)/rminsp(is)) do ir=1,nrsp(is) rsp(ir,is)=rminsp(is)*exp(dble(ir-1)*t1) end do ! calculate r^l on the fine radial mesh nr=nrmt(is) rlmt(1:nr,-1,is)=1.d0/rsp(1:nr,is) rlmt(1:nr,0,is)=1.d0 rlmt(1:nr,1,is)=rsp(1:nr,is) do l=-2,-lmaxo-1,-1 rlmt(1:nr,l,is)=rlmt(1:nr,l+1,is)*rlmt(1:nr,-1,is) end do do l=2,lmaxo+2 rlmt(1:nr,l,is)=rlmt(1:nr,l-1,is)*rlmt(1:nr,1,is) end do ! determine the weights for spline integration on the fine radial mesh call wsplint(nr,rsp(:,is),wrmt(:,is)) ! multiply by r^2 wrmt(1:nr,is)=wrmt(1:nr,is)*rlmt(1:nr,2,is) ! determine the weights for partial integration on fine radial mesh call wsplintp(nr,rsp(:,is),wprmt(:,:,is)) ! determine the weights for the spline coefficients call wspline(nr,rsp(:,is),wcrmt(:,:,is)) end do ! determine the fraction of the muffin-tin radius which defines the inner part if (fracinr.lt.0.d0) fracinr=sqrt(dble(lmmaxi)/dble(lmmaxo)) ! set up the coarse radial meshes and find the inner part of the muffin-tin ! where rho is calculated with lmaxi if (allocated(rcmt)) deallocate(rcmt) allocate(rcmt(nrcmtmax,nspecies)) if (allocated(rlcmt)) deallocate(rlcmt) allocate(rlcmt(nrcmtmax,-lmaxo-1:lmaxo+2,nspecies)) if (allocated(wrcmt)) deallocate(wrcmt) allocate(wrcmt(nrcmtmax,nspecies)) if (allocated(wprcmt)) deallocate(wprcmt) allocate(wprcmt(4,nrcmtmax,nspecies)) if (allocated(wcrcmt)) deallocate(wcrcmt) allocate(wcrcmt(12,nrcmtmax,nspecies)) do is=1,nspecies t1=fracinr*rmt(is) nrmti(is)=1 nrcmti(is)=1 irc=0 do ir=1,nrmt(is),lradstp irc=irc+1 rcmt(irc,is)=rsp(ir,is) if (rsp(ir,is).lt.t1) then nrmti(is)=ir nrcmti(is)=irc end if end do ! store r^l on the coarse radial mesh do l=-lmaxo-1,lmaxo+2 irc=0 do ir=1,nrmt(is),lradstp irc=irc+1 rlcmt(irc,l,is)=rlmt(ir,l,is) end do end do ! determine the weights for spline integration on the coarse radial mesh nrc=nrcmt(is) call wsplint(nrc,rcmt(:,is),wrcmt(:,is)) ! multiply by r^2 wrcmt(1:nrc,is)=wrcmt(1:nrc,is)*rlcmt(1:nrc,2,is) ! determine the weights for partial integration on coarse radial mesh call wsplintp(nrc,rcmt(:,is),wprcmt(:,:,is)) ! determine the weights for the spline coefficients call wspline(nrc,rcmt(:,is),wcrcmt(:,:,is)) end do ! write to VARIABLES.OUT call writevars('nrsp',nv=nspecies,iva=nrsp) call writevars('nrmt',nv=nspecies,iva=nrmt) call writevars('nrmti',nv=nspecies,iva=nrmti) call writevars('lradstp',iv=lradstp) call writevars('nrcmt',nv=nspecies,iva=nrcmt) call writevars('nrcmti',nv=nspecies,iva=nrcmti) do is=1,nspecies call writevars('rsp',nv=nrmt(is),rva=rsp(:,is)) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/splint.f900000644000000000000000000000013014061636517014553 xustar0029 mtime=1623670095.31610212 30 atime=1623670094.090103258 29 ctime=1623670095.31610212 elk-7.2.42/src/splint.f900000644002504400250440000000340514061636517016614 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function splint(n,x,f) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x(n),f(n) ! local variables integer i real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) t0,t1,t2,t3,t4,t5,t6,t7 ! external functions real(8), external :: polynm if (n.le.4) then splint=polynm(-1,n,x,f,x(n)) return end if ! fit piecewise cubic spline to data and integrate x0=x(1) x1=x(2)-x0; x2=x(3)-x0; x3=x(4)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=f(1) y1=f(2)-y0; y2=f(3)-y0; y3=f(4)-y0 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=0.5d0/(t3*t4*t5*t6) t3=t3*y2 t7=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y3=t2*t5-t3*t4; y2=t1*t4-t2*t6 t1=x1*y1+x2*y2+x3*y3 t2=y1+y2+y3 splint=x2*(y0+t0*(t1+x2*(0.5d0*t7*x2-0.6666666666666666667d0*t2))) do i=3,n-3 x0=x(i) x1=x(i-1)-x0; x2=x(i+1)-x0; x3=x(i+2)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3; t3=x1*x3 y0=f(i) y1=f(i-1)-y0; y2=f(i+1)-y0; y3=f(i+2)-y0 t1=x1*x2*y3; t2=x2*x3*y1 t0=0.5d0/(t3*t4*t5*t6) t3=t3*y2 t7=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y2=t1*t4-t2*t6; y3=t2*t5-t3*t4 t1=x1*y1+x2*y2+x3*y3 t2=y1+y2+y3 splint=splint+x2*(y0+t0*(t1+x2*(0.5d0*t7*x2-0.6666666666666666667d0*t2))) end do x0=x(n-2) x1=x(n-3)-x0; x2=x(n-1)-x0; x3=x(n)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=f(n-2) y1=f(n-3)-y0; y2=f(n-1)-y0; y3=f(n)-y0 t1=x1*x2; t2=x2*x3*y1; t3=x1*x3*y2 t0=0.5d0/(t1*t4*t5*t6) t1=t1*y3 t7=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 y1=t3*t6-t1*t5; y2=t1*t4-t2*t6; y3=t2*t5-t3*t4 t1=x1*y1+x2*y2+x3*y3 t2=y1+y2+y3 splint=splint+x3*(y0+t0*(t1+x3*(0.5d0*t7*x3-0.6666666666666666667d0*t2))) end function elk-7.2.42/src/PaxHeaders.21776/nfftifc.f900000644000000000000000000000013214061636517014663 xustar0030 mtime=1623670095.318102118 30 atime=1623670094.092103256 30 ctime=1623670095.318102118 elk-7.2.42/src/nfftifc.f900000644002504400250440000000233414061636517016722 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: nfftifc ! !INTERFACE: subroutine nfftifc(np,n) ! !INPUT/OUTPUT PARAMETERS: ! np : number of allowed primes (in,integer) ! n : required/avalable grid size (inout,integer) ! !DESCRIPTION: ! Interface to the grid requirements of the fast Fourier transform routine. ! Most routines restrict $n$ to specific prime factorisations. This routine ! returns the next largest grid size allowed by the FFT routine. ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: np integer, intent(inout) :: n ! local variables integer i,j integer, parameter :: p(10)=[2,3,5,7,11,13,17,19,23,29] if ((np.lt.1).or.(np.gt.10)) then write(*,*) write(*,'("Error(nfftifc): np out of range : ",I8)') np write(*,*) stop end if if (n.le.0) then write(*,*) write(*,'("Error(nfftifc): n <= 0 : ",I8)') n write(*,*) stop end if 10 continue i=n do j=1,np do while(mod(i,p(j)).eq.0) i=i/p(j) end do end do if (i.ne.1) then n=n+1 goto 10 end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/wavefcr.f900000644000000000000000000000013214061636517014701 xustar0030 mtime=1623670095.320102116 30 atime=1623670094.093103255 30 ctime=1623670095.320102116 elk-7.2.42/src/wavefcr.f900000644002504400250440000000551114061636517016740 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2011 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wavefcr(tsh,lrstp,is,ia,ist,m,ld,wfcr) use modmain implicit none ! arguments logical, intent(in) :: tsh integer, intent(in) :: lrstp,is,ia,ist ! pass in m-1/2 integer, intent(in) :: m integer, intent(in) :: ld complex(8), intent(out) :: wfcr(ld,2) ! local variables integer ias,nr,nri,ir integer k,l,lm,lm1,lm2 integer i,i1,i2 real(8) c1,c2,t0,t1,t2 l=lsp(ist,is) k=ksp(ist,is) if (((k.ne.l+1).and.(k.ne.l)).or.(m.lt.-k).or.(m.gt.k-1)) then write(*,*) write(*,'("Error(wavefcr): mismatched l, k or m : ",3I4)') l,k,m write(*,'(" for species ",I4)') is write(*,'(" atom ",I4)') ia write(*,'(" and state ",I6)') ist write(*,*) stop end if if (l.gt.lmaxo) then wfcr(:,:)=0.d0 return end if ias=idxas(ia,is) ! calculate the Clebsch-Gordon coefficients t1=sqrt(dble(l+m+1)/dble(2*l+1)) t2=sqrt(dble(l-m)/dble(2*l+1)) if (k.eq.l+1) then c1=t1 c2=t2 else c1=t2 c2=-t1 end if if (abs(m).le.l) then lm1=l*(l+1)+m+1 else lm1=0 end if if (abs(m+1).le.l) then lm2=l*(l+1)+m+2 else lm2=0 end if nr=nrmt(is) nri=nrmti(is) ! zero the wavefunction if (lrstp.eq.1) then wfcr(1:npmt(is),:)=0.d0 else if (lrstp.eq.lradstp) then wfcr(1:npcmt(is),:)=0.d0 else write(*,*) write(*,'("Error(wavefcr): invalid lrstp : ",I8)') lrstp write(*,*) stop end if !----------------------------------! ! inner part of muffin-tin ! !----------------------------------! if (l.gt.lmaxi) goto 10 if (tsh) then i1=lm1 i2=lm2 else i=0 end if do ir=1,nri,lrstp ! major component of radial wavefunction t0=rwfcr(ir,1,ist,ias)*rlmt(ir,-1,is) if (tsh) then if (lm1.gt.0) wfcr(i1,1)=t0*c1 if (lm2.gt.0) wfcr(i2,2)=t0*c2 i1=i1+lmmaxi i2=i2+lmmaxi else t1=t0*c1 t2=t0*c2 if (lm1.gt.0) then do lm=1,lmmaxi wfcr(i+lm,1)=t1*zbshti(lm,lm1) end do end if if (lm2.gt.0) then do lm=1,lmmaxi wfcr(i+lm,2)=t2*zbshti(lm,lm2) end do end if i=i+lmmaxi end if end do !----------------------------------! ! outer part of muffin-tin ! !----------------------------------! 10 continue if (lrstp.eq.1) then i=lmmaxi*nrmti(is) else i=lmmaxi*nrcmti(is) end if if (tsh) then i1=i+lm1 i2=i+lm2 end if do ir=nri+lrstp,nr,lrstp t0=rwfcr(ir,1,ist,ias)*rlmt(ir,-1,is) if (tsh) then if (lm1.gt.0) wfcr(i1,1)=t0*c1 if (lm2.gt.0) wfcr(i2,2)=t0*c2 i1=i1+lmmaxo i2=i2+lmmaxo else t1=t0*c1 t2=t0*c2 if (lm1.gt.0) then do lm=1,lmmaxo wfcr(i+lm,1)=t1*zbshto(lm,lm1) end do end if if (lm2.gt.0) then do lm=1,lmmaxo wfcr(i+lm,2)=t2*zbshto(lm,lm2) end do end if i=i+lmmaxo end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/lopzflm.f900000644000000000000000000000013214061636517014727 xustar0030 mtime=1623670095.321102115 30 atime=1623670094.095103253 30 ctime=1623670095.321102115 elk-7.2.42/src/lopzflm.f900000644002504400250440000000357314061636517016774 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: lopzflm ! !INTERFACE: pure subroutine lopzflm(lmax,zflm,ld,zlflm) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! zflm : coefficients of input spherical harmonic expansion ! (in,complex((lmax+1)**2)) ! ld : leading dimension (in,integer) ! zlflm : coefficients of output spherical harmonic expansion ! (out,complex(ld,3)) ! !DESCRIPTION: ! Applies the angular momentum operator $\hat{\bf L}$ to a function expanded ! in terms of complex spherical harmonics. This makes use of the identities ! \begin{align*} ! (L_x+iL_y)Y_{lm}(\theta,\phi)&=\sqrt{(l-m)(l+m+1)}Y_{lm+1}(\theta,\phi)\\ ! (L_x-iL_y)Y_{lm}(\theta,\phi)&=\sqrt{(l+m)(l-m+1)}Y_{lm-1}(\theta,\phi)\\ ! L_zY_{lm}(\theta,\phi)&=mY_{lm}(\theta,\phi). ! \end{align*} ! ! !REVISION HISTORY: ! Created March 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax complex(8), intent(in) :: zflm(*) integer, intent(in) :: ld complex(8), intent(out) :: zlflm(ld,3) ! local variables integer l,m,lm real(8) t1 complex(8) z1 lm=0 do l=0,lmax do m=-l,l lm=lm+1 if (m.eq.-l) then zlflm(lm,1)=0.d0 zlflm(lm,2)=0.d0 end if if (m.lt.l) then t1=0.5d0*sqrt(dble((l-m)*(l+m+1))) z1=t1*zflm(lm) zlflm(lm+1,1)=z1 zlflm(lm+1,2)=cmplx(aimag(z1),-dble(z1),8) end if if (m.gt.-l) then t1=0.5d0*sqrt(dble((l+m)*(l-m+1))) z1=t1*zflm(lm) zlflm(lm-1,1)=zlflm(lm-1,1)+z1 zlflm(lm-1,2)=zlflm(lm-1,2)+cmplx(-aimag(z1),dble(z1),8) end if if (m.ne.0) then zlflm(lm,3)=dble(m)*zflm(lm) else zlflm(lm,3)=0.d0 end if end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/potks.f900000644000000000000000000000013214061636517014404 xustar0030 mtime=1623670095.323102113 30 atime=1623670094.097103251 30 ctime=1623670095.323102113 elk-7.2.42/src/potks.f900000644002504400250440000000362614061636517016450 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: potks ! !INTERFACE: subroutine potks(txc) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! txc : .true. if the exchange-correlation energy density and potentials ! should be calculated (in,logical) ! !DESCRIPTION: ! Computes the Kohn-Sham effective potential by adding together the Coulomb ! and exchange-correlation potentials. Also computes the effective magnetic ! field. See routines {\tt potcoul} and {\tt potxc}. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: txc ! local variables integer is,ias,np real(8) ts0,ts1 call timesec(ts0) ! compute the Coulomb potential call potcoul ! meta-GGA variables if required if ((xcgrad.eq.3).or.(xcgrad.eq.4)) then ! generate the kinetic energy density call gentau ! compute the Tran-Blaha '09 constant if required call xc_c_tb09 end if ! compute the exchange-correlation potential and fields if (txc) call potxc(.true.,xctype,rhomt,rhoir,magmt,magir,taumt,tauir,exmt, & exir,ecmt,ecir,vxcmt,vxcir,bxcmt,bxcir,wxcmt,wxcir) ! optimised effective potential exchange potential if (xctype(1).lt.0) call oepmain ! remove the source term of the exchange-correlation magnetic field if required if (spinpol.and.nosource) call projsbf ! effective potential from sum of Coulomb and exchange-correlation potentials do ias=1,natmtot is=idxis(ias) np=npmt(is) vsmt(1:np,ias)=vclmt(1:np,ias)+vxcmt(1:np,ias) end do vsir(1:ngtot)=vclir(1:ngtot)+vxcir(1:ngtot) ! smooth the interstitial potential if required call rfirsm(msmooth,vsir) ! generate the effective magnetic fields call genbs ! generate the meta-GGA effective potential call genws call timesec(ts1) timepot=timepot+ts1-ts0 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/brzint.f900000644000000000000000000000013114061636517014553 xustar0030 mtime=1623670095.324102112 29 atime=1623670094.09810325 30 ctime=1623670095.324102112 elk-7.2.42/src/brzint.f900000644002504400250440000001154614061636517016620 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: brzint ! !INTERFACE: subroutine brzint(nsm,ngridk,nsk,ivkik,nw,wint,n,ld,e,f,g) ! !USES: use modomp ! !INPUT/OUTPUT PARAMETERS: ! nsm : level of smoothing for output function (in,integer) ! ngridk : k-point grid size (in,integer(3)) ! nsk : k-point subdivision grid size (in,integer(3)) ! ivkik : map from (i1,i2,i3) to k-point index ! (in,integer(0:ngridk(1)-1,0:ngridk(2)-1,0:ngridk(3)-1)) ! nw : number of energy divisions (in,integer) ! wint : energy interval (in,real(2)) ! n : number of functions to integrate (in,integer) ! ld : leading dimension (in,integer) ! e : array of energies as a function of k-points (in,real(ld,*)) ! f : array of weights as a function of k-points (in,real(ld,*)) ! g : output function (out,real(nw)) ! !DESCRIPTION: ! Given energy and weight functions, $e$ and $f$, on the Brillouin zone and a ! set of equidistant energies $\omega_i$, this routine computes the integrals ! $$ g(\omega_i)=\frac{\Omega}{(2\pi)^3}\int_{\rm BZ} f({\bf k}) ! \delta(\omega_i-e({\bf k}))d{\bf k}, $$ ! where $\Omega$ is the unit cell volume. This is done by first interpolating ! $e$ and $f$ on a finer $k$-point grid using the trilinear method. Then for ! each $e({\bf k})$ on the finer grid the nearest $\omega_i$ is found and ! $f({\bf k})$ is accumulated in $g(\omega_i)$. If the output function is ! noisy then either {\tt nsk} should be increased or {\tt nw} decreased. ! Alternatively, the output function can be artificially smoothed up to a ! level given by {\tt nsm}. See routine {\tt fsmooth}. ! ! !REVISION HISTORY: ! Created October 2003 (JKD) ! Improved efficiency, May 2007 (Sebastian Lebegue) ! Added parallelism, March 2020 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nsm,ngridk(3),nsk(3) integer, intent(in) :: ivkik(0:ngridk(1)-1,0:ngridk(2)-1,0:ngridk(3)-1) integer, intent(in) :: nw real(8), intent(in) :: wint(2) integer, intent(in) :: n,ld real(8), intent(in) :: e(ld,*),f(ld,*) real(8), intent(out) :: g(nw) ! local variables integer nk,i1,i2,i3,j1,j2,j3,k1,k2,k3,i,iw,nthd integer i000,i001,i010,i011,i100,i101,i110,i111 real(8) wd,dw,dwi,w1,t1,t2 ! automatic arrays real(8) f0(n),f1(n),e0(n),e1(n) real(8) f00(n),f01(n),f10(n),f11(n) real(8) e00(n),e01(n),e10(n),e11(n) if ((ngridk(1).lt.1).or.(ngridk(2).lt.1).or.(ngridk(3).lt.1)) then write(*,*) write(*,'("Error(brzint): ngridk < 1 : ",3I8)') ngridk write(*,*) stop end if if ((nsk(1).lt.1).or.(nsk(2).lt.1).or.(nsk(3).lt.1)) then write(*,*) write(*,'("Error(brzint): nsk < 1 : ",3I8)') nsk write(*,*) stop end if ! total number of k-points nk=ngridk(1)*ngridk(2)*ngridk(3) ! length of interval wd=wint(2)-wint(1) ! energy step size dw=wd/dble(nw) dwi=1.d0/dw w1=wint(1)*dwi g(:)=0.d0 call holdthd(nk,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(f0,f1,e0,e1) & !$OMP PRIVATE(f00,f01,f10,f11) & !$OMP PRIVATE(e00,e01,e10,e11) & !$OMP PRIVATE(k1,k2,k3,i1,i2,i3) & !$OMP PRIVATE(i000,i001,i010,i011) & !$OMP PRIVATE(i100,i101,i110,i111) & !$OMP PRIVATE(t1,t2,i,iw) & !$OMP REDUCTION(+:g) & !$OMP NUM_THREADS(nthd) !$OMP DO COLLAPSE(3) do j1=0,ngridk(1)-1 do j2=0,ngridk(2)-1 do j3=0,ngridk(3)-1 k1=mod(j1+1,ngridk(1)) k2=mod(j2+1,ngridk(2)) k3=mod(j3+1,ngridk(3)) i000=ivkik(j1,j2,j3); i001=ivkik(j1,j2,k3) i010=ivkik(j1,k2,j3); i011=ivkik(j1,k2,k3) i100=ivkik(k1,j2,j3); i101=ivkik(k1,j2,k3) i110=ivkik(k1,k2,j3); i111=ivkik(k1,k2,k3) do i1=0,nsk(1)-1 t2=dble(i1)/dble(nsk(1)) t1=1.d0-t2 f00(:)=f(:,i000)*t1+f(:,i100)*t2 f01(:)=f(:,i001)*t1+f(:,i101)*t2 f10(:)=f(:,i010)*t1+f(:,i110)*t2 f11(:)=f(:,i011)*t1+f(:,i111)*t2 t1=t1*dwi t2=t2*dwi e00(:)=e(:,i000)*t1+e(:,i100)*t2-w1 e01(:)=e(:,i001)*t1+e(:,i101)*t2-w1 e10(:)=e(:,i010)*t1+e(:,i110)*t2-w1 e11(:)=e(:,i011)*t1+e(:,i111)*t2-w1 do i2=0,nsk(2)-1 t2=dble(i2)/dble(nsk(2)) t1=1.d0-t2 f0(:)=f00(:)*t1+f10(:)*t2 f1(:)=f01(:)*t1+f11(:)*t2 e0(:)=e00(:)*t1+e10(:)*t2 e1(:)=e01(:)*t1+e11(:)*t2 do i3=0,nsk(3)-1 t2=dble(i3)/dble(nsk(3)) t1=1.d0-t2 do i=1,n iw=nint(e0(i)*t1+e1(i)*t2)+1 if ((iw.ge.1).and.(iw.le.nw)) g(iw)=g(iw)+f0(i)*t1+f1(i)*t2 end do end do end do end do end do end do end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! normalise function t1=dw*dble(nk)*dble(nsk(1)*nsk(2)*nsk(3)) t1=1.d0/t1 g(:)=t1*g(:) ! smooth output function if required if (nsm.gt.0) call fsmooth(nsm,nw,g) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rotdmat.f900000644000000000000000000000013014061636517014714 xustar0029 mtime=1623670095.32610211 30 atime=1623670094.100103248 29 ctime=1623670095.32610211 elk-7.2.42/src/rotdmat.f900000644002504400250440000000472414061636517016762 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rotdmat(rspl,rspn,lmax,nspinor,ld,dmat1,dmat2) implicit none ! arguments real(8), intent(in) :: rspl(3,3),rspn(3,3) integer, intent(in) :: lmax,nspinor integer, intent(in) :: ld complex(8), intent(in) :: dmat1(ld,nspinor,ld,nspinor) complex(8), intent(inout) :: dmat2(ld,nspinor,ld,nspinor) ! local variables integer lds,ispn,jspn,p integer lmmax,l,lm1,lm2,nm real(8), parameter :: eps=1.d-8 real(8) ang(3),angi(3) real(8) rot(3,3),det,v(3),th complex(8), parameter :: zzero=(0.d0,0.d0),zone=(1.d0,0.d0) complex(8) su2(2,2),a(2,2),b(2,2) ! allocatable arrays complex(8), allocatable :: dm(:,:,:,:),c(:,:),d(:,:) ! external functions real(8), external :: r3mdet lmmax=(lmax+1)**2 allocate(dm(ld,nspinor,ld,nspinor)) allocate(c(lmmax,lmmax),d(lmmax,lmmax)) ! find the determinant of the spatial rotation matrix det=r3mdet(rspl) if (det.gt.0.d0) then p=1 else p=-1 end if ! make the rotation matrix proper rot(:,:)=dble(p)*rspl(:,:) ! compute the Euler angles of the spatial rotation call roteuler(rot,ang) ! inverse rotation: the matrix is to be rotated, not the spherical harmonics angi(1)=-ang(3) angi(2)=-ang(2) angi(3)=-ang(1) ! determine the rotation matrix for complex spherical harmonics call ylmrot(p,angi,lmax,lmmax,d) ! apply (l,m) rotation matrix as U*D*conjg(U') lds=ld*nspinor do ispn=1,nspinor do jspn=1,nspinor lm1=1 do l=0,lmax nm=2*l+1 call zgemm('N','N',nm,lmmax,nm,zone,d(lm1,lm1),lmmax, & dmat1(lm1,ispn,1,jspn),lds,zzero,c(lm1,1),lmmax) lm1=lm1+nm end do lm1=1 do l=0,lmax nm=2*l+1 call zgemm('N','C',lmmax,nm,nm,zone,c(1,lm1),lmmax,d(lm1,lm1),lmmax, & zzero,dm(1,ispn,lm1,jspn),lds) lm1=lm1+nm end do end do end do ! spin rotation if required if (nspinor.eq.2) then ! convert spin rotation matrix to axis-angle form call rotaxang(eps,rspn,det,v,th) ! find the SU(2) representation of the rotation matrix call axangsu2(v,th,su2) ! apply SU(2) symmetry matrix as U*D*conjg(U*) andd add to dmat2 do lm1=1,lmmax do lm2=1,lmmax a(:,:)=dm(lm1,:,lm2,:) call z2mm(su2,a,b) call z2mmct(b,su2,a) dmat2(lm1,:,lm2,:)=dmat2(lm1,:,lm2,:)+a(:,:) end do end do else dmat2(1:lmmax,1,1:lmmax,1)=dmat2(1:lmmax,1,1:lmmax,1)+dm(1:lmmax,1,1:lmmax,1) end if deallocate(dm,c,d) end subroutine elk-7.2.42/src/PaxHeaders.21776/genylmg.f900000644000000000000000000000013214061636517014706 xustar0030 mtime=1623670095.327102109 30 atime=1623670094.102103246 30 ctime=1623670095.327102109 elk-7.2.42/src/genylmg.f900000644002504400250440000000135214061636517016744 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genylmg ! !INTERFACE: subroutine genylmg ! !USES: use modmain ! !DESCRIPTION: ! Generates a set of spherical harmonics, $Y_{lm}(\hat{\bf G})$, with angular ! momenta up to {\tt lmaxo} for the set of ${\bf G}$-vectors. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer ig ! allocate global G-vector spherical harmonic array if (allocated(ylmg)) deallocate(ylmg) allocate(ylmg(lmmaxo,ngvec)) do ig=1,ngvec call genylmv(lmaxo,vgc(:,ig),ylmg(:,ig)) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gentaucr.f900000644000000000000000000000013214061636517015054 xustar0030 mtime=1623670095.329102108 30 atime=1623670094.103103246 30 ctime=1623670095.329102108 elk-7.2.42/src/gentaucr.f900000644002504400250440000000360214061636517017112 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gentaucr use modmain use modomp implicit none ! local variables integer ist,ispn,jspn integer is,ia,ias,nthd integer nr,nri,np,i,m ! automatic arrays real(8) rfmt(npmtmax) ! allocatable arrays complex(8), allocatable :: wfcr(:,:),gzfmt(:,:),zfmt(:) taucr(:,:,:)=0.d0 call holdthd(natmtot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfcr,gzfmt,zfmt) & !$OMP PRIVATE(is,ia,nr,nri,np) & !$OMP PRIVATE(ist,m,ispn,jspn,i) & !$OMP NUM_THREADS(nthd) allocate(wfcr(npmtmax,2),gzfmt(npmtmax,3),zfmt(npmtmax)) !$OMP DO do ias=1,natmtot is=idxis(ias) ia=idxia(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) do ist=1,nstsp(is) if (spcore(ist,is)) then do m=-ksp(ist,is),ksp(ist,is)-1 ! generate the core wavefunction in spherical harmonics (pass in m-1/2) call wavefcr(.true.,1,is,ia,ist,m,npmtmax,wfcr) do ispn=1,2 if (spinpol) then jspn=ispn else jspn=1 end if ! compute the gradient call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),wfcr(:,ispn), & npmtmax,gzfmt) do i=1,3 ! convert gradient to spherical coordinates call zbsht(nr,nri,gzfmt(:,i),zfmt) ! add to total in muffin-tin taucr(1:np,ias,jspn)=taucr(1:np,ias,jspn) & +0.5d0*(dble(zfmt(1:np))**2+aimag(zfmt(1:np))**2) end do end do end do end if end do end do !$OMP END DO deallocate(wfcr,gzfmt,zfmt) !$OMP END PARALLEL call freethd(nthd) ! convert core tau to spherical harmonics do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) call dcopy(npmt(is),taucr(:,ias,ispn),1,rfmt,1) call rfsht(nrmt(is),nrmti(is),rfmt,taucr(:,ias,ispn)) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/readinput.f900000644000000000000000000000013214061636517015237 xustar0030 mtime=1623670095.330102107 30 atime=1623670094.105103244 30 ctime=1623670095.330102107 elk-7.2.42/src/readinput.f900000644002504400250440000013662714061636517017313 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: readinput ! !INTERFACE: subroutine readinput ! !USES: use modmain use moddftu use modrdm use modphonon use modtest use modrandom use modpw use modtddft use modulr use modvars use modgw use modbog use modw90 use modmpi use modomp use modramdisk ! !DESCRIPTION: ! Reads in the input parameters from the file {\tt elk.in}. Also sets default ! values for the input parameters. ! ! !REVISION HISTORY: ! Created September 2002 (JKD) !EOP !BOC implicit none ! local variables logical lv integer is,ia,ias,ios integer i,j,k,l,n,p real(8) sc,sc1,sc2,sc3 real(8) scx,scy,scz real(8) scu,scu1,scu2,scu3 real(8) solscf,zn,a,b real(8) axang(4),rot(3,3) real(8) v1(3),v2(3),t1 character(256) block,symb,str !------------------------! ! default values ! !------------------------! ntasks=0 avec(:,:)=0.d0 avec(1,1)=1.d0 avec(2,2)=1.d0 avec(3,3)=1.d0 sc=1.d0 sc1=1.d0 sc2=1.d0 sc3=1.d0 scx=1.d0 scy=1.d0 scz=1.d0 epslat=1.d-6 primcell=.false. tshift=.true. ngridk(:)=1 vkloff(:)=0.d0 autokpt=.false. radkpt=40.d0 reducek=1 ngridq(:)=-1 reduceq=1 rgkmax=7.d0 gmaxvr=12.d0 lmaxapw=8 lmaxo=6 lmaxi=1 fracinr=0.01d0 trhonorm=.true. xctype(1)=3 xctype(2:3)=0 xctsp(1)=3 xctsp(2:3)=0 stype=3 swidth=0.001d0 autoswidth=.false. mstar=10.d0 epsocc=1.d-8 epschg=1.d-3 nempty0=4.d0 maxscl=200 mixtype=3 amixpm(1)=0.05d0 amixpm(2)=1.d0 ! Broyden parameters recommended by M. Meinert mixsdb=5 broydpm(1)=0.4d0 broydpm(2)=0.15d0 epspot=1.d-6 epsengy=1.d-4 epsforce=5.d-3 epsstress=1.d-3 molecule=.false. nspecies=0 natoms(:)=0 atposl(:,:,:)=0.d0 atposc(:,:,:)=0.d0 bfcmt0(:,:,:)=0.d0 sppath='' scrpath='' nvp1d=2 if (allocated(vvlp1d)) deallocate(vvlp1d) allocate(vvlp1d(3,nvp1d)) vvlp1d(:,1)=0.d0 vvlp1d(:,2)=1.d0 npp1d=200 vclp2d(:,:)=0.d0 vclp2d(1,1)=1.d0 vclp2d(2,2)=1.d0 np2d(:)=40 vclp3d(:,:)=0.d0 vclp3d(1,1)=1.d0 vclp3d(2,2)=1.d0 vclp3d(3,3)=1.d0 np3d(:)=20 nwplot=500 ngrkf=100 nswplot=1 wplot(1)=-0.5d0 wplot(2)=0.5d0 dosocc=.false. dosmsum=.false. dosssum=.false. lmirep=.true. spinpol=.false. spinorb=.false. socscf=1.d0 atpopt=1 maxatpstp=200 tau0atp=0.25d0 deltast=0.005d0 latvopt=0 maxlatvstp=30 tau0latv=0.2d0 lradstp=4 chgexs=0.d0 scissor=0.d0 noptcomp=1 optcomp(:,1)=1 intraband=.false. evaltol=-1.d0 epsband=1.d-12 demaxbnd=2.5d0 autolinengy=.false. dlefe=-0.1d0 deapwlo=0.05d0 bfieldc0(:)=0.d0 efieldc(:)=0.d0 afieldc(:)=0.d0 fsmtype=0 momfix(:)=0.d0 mommtfix(:,:,:)=1.d6 taufsm=0.01d0 rmtdelta=0.05d0 isgkmax=-1 symtype=1 deltaph=0.01d0 nphwrt=1 if (allocated(vqlwrt)) deallocate(vqlwrt) allocate(vqlwrt(3,nphwrt)) vqlwrt(:,:)=0.d0 notelns=0 tforce=.false. maxitoep=300 tauoep(1)=0.05d0 tauoep(2)=0.95d0 nkstlist=1 kstlist(:,1)=1 vklem(:)=0.d0 deltaem=0.025d0 ndspem=1 nosource=.false. spinsprl=.false. ssdph=.true. vqlss(:)=0.d0 nwrite=0 dftu=0 inpdftu=1 ndftu=0 ujdu(:,:)=0.d0 fdu(:,:)=0.d0 edu(:,:)=0.d0 lambdadu(:)=0.d0 udufix(:)=0.d0 lambdadu0(:)=0.d0 tmwrite=.false. readadu=.false. rdmxctype=2 rdmmaxscl=2 maxitn=200 maxitc=0 taurdmn=0.5d0 taurdmc=0.25d0 rdmalpha=0.565d0 rdmtemp=0.d0 reducebf=1.d0 ptnucl=.true. tefvr=.true. tefvit=.false. minitefv=6 maxitefv=4 befvit=0.25d0 epsefvit=1.d-5 vecql(:)=0.d0 mustar=0.15d0 sqados(1:2)=0.d0 sqados(3)=1.d0 test=.false. spincore=.false. solscf=1.d0 emaxelnes=-1.2d0 wsfac(1)=-1.d6; wsfac(2)=1.d6 vhmat(:,:)=0.d0 vhmat(1,1)=1.d0 vhmat(2,2)=1.d0 vhmat(3,3)=1.d0 reduceh=.true. hybrid0=.false. hybridc=1.d0 ecvcut=-3.5d0 esccut=-0.4d0 gmaxrf=3.d0 emaxrf=1.d6 ntemp=40 nvbse0=2 ncbse0=3 nvxbse=0 ncxbse=0 bsefull=.false. hxbse=.true. hdbse=.true. fxctype=-1 fxclrc(1)=0.d0 fxclrc(2)=0.d0 rndatposc=0.d0 rndbfcmt=0.d0 rndavec=0.d0 c_tb09=0.d0 tc_tb09=.false. hmaxvr=20.d0 hkmax=12.d0 lorbcnd=.false. lorbordc=3 nrmtscf=1.d0 lmaxdos=3 epsdev=0.005d0 msmooth=0 npmae0=-1 wrtvars=.false. ftmtype=0 ntmfix=0 tauftm=0.5d0 ftmstep=1 cmagz=.false. axang(:)=0.d0 dncgga=1.d-8 tstime=1000.d0 dtimes=0.1d0 npulse=0 nramp=0 ntswrite(1)=500 ntswrite(2)=1 nxoapwlo=0 nxlo=0 tdrho1d=.false. tdrho2d=.false. tdrho3d=.false. tdmag1d=.false. tdmag2d=.false. tdmag3d=.false. tdjr1d=.false. tdjr2d=.false. tdjr3d=.false. tddos=.false. tdlsj=.false. rndevt0=0.d0 sxcscf=1.d0 avecu(:,:)=0.d0 avecu(1,1)=1.d0 avecu(2,2)=1.d0 avecu(3,3)=1.d0 scu=1.d0 scu1=1.d0 scu2=1.d0 scu3=1.d0 q0cut=0.d0 rndbfcu=0.d0 efielduc(:)=0.d0 tplotq0=.true. trdvclr=.false. wmaxgw=-10.d0 twdiag=.false. tsediag=.true. actype=10 npole=3 nspade=100 tfav0=.true. rmtall=-1.d0 maxthd=0 maxthd1=0 maxthdmkl=8 maxlvl=4 taudft=.false. t0tdlr=0.d0 tdphi=0.d0 thetamld=45.d0*pi/180.d0 ntsbackup=0 ! Wannier90 variables seedname='wannier' num_wann=0 num_bands=0 num_iter=400 trial_step=1.d-3 nxlwin=0 tbdip=.false. tjr=.false. tauefm=0.01d0 epsefm=1.d-6 ehfb=1.d0 t0gclq0=.false. tafindt=.false. afindscf=1.d0 nkspolar=4 ntsforce=10 wphcut=1.d-6 ephscf(1)=8.d0 ephscf(2)=0.02d0 anomalous=.false. tephde=.false. bdiag=.false. ramdisk=.false. !--------------------------! ! read from elk.in ! !--------------------------! open(50,file='elk.in',status='OLD',form='FORMATTED',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error opening elk.in")') write(*,*) stop end if 10 continue read(50,*,end=30) block ! check for a comment if ((scan(trim(block),'!').eq.1).or.(scan(trim(block),'#').eq.1)) goto 10 select case(trim(block)) case('tasks') do i=1,maxtasks read(50,'(A256)',err=20) str if (trim(str).eq.'') then if (i.eq.1) then write(*,*) write(*,'("Error(readinput): no tasks to perform")') write(*,*) stop end if ntasks=i-1 goto 10 end if read(str,*,iostat=ios) tasks(i) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading tasks")') write(*,'("(blank line required after tasks block)")') write(*,*) stop end if end do write(*,*) write(*,'("Error(readinput): too many tasks")') write(*,'("Adjust maxtasks in modmain and recompile code")') write(*,*) stop case('species') ! generate a species file call genspecies(50) case('fspecies') ! generate fractional species files do is=1,maxspecies read(50,'(A256)',err=20) str if (trim(str).eq.'') goto 10 read(str,*,iostat=ios) zn,symb if (zn.gt.-1.d0+epsocc) then write(*,*) write(*,'("Error(readinput): fractional nuclear Z > -1 : ",G18.10)') zn write(*,*) stop end if call genfspecies(zn,symb) end do write(*,*) write(*,'("Error(readinput): too many fractional nucleus species")') write(*,*) stop case('avec') read(50,*,err=20) avec(:,1) read(50,*,err=20) avec(:,2) read(50,*,err=20) avec(:,3) case('scale') read(50,*,err=20) sc case('scale1') read(50,*,err=20) sc1 case('scale2') read(50,*,err=20) sc2 case('scale3') read(50,*,err=20) sc3 case('scalex') read(50,*,err=20) scx case('scaley') read(50,*,err=20) scy case('scalez') read(50,*,err=20) scz case('epslat') read(50,*,err=20) epslat if (epslat.le.0.d0) then write(*,*) write(*,'("Error(readinput): epslat <= 0 : ",G18.10)') epslat write(*,*) stop end if case('primcell') read(50,*,err=20) primcell case('tshift') read(50,*,err=20) tshift case('autokpt') read(50,*,err=20) autokpt case('radkpt') read(50,*,err=20) radkpt if (radkpt.le.0.d0) then write(*,*) write(*,'("Error(readinput): radkpt <= 0 : ",G18.10)') radkpt write(*,*) stop end if case('ngridk') read(50,*,err=20) ngridk(:) if (any(ngridk(:).le.0)) then write(*,*) write(*,'("Error(readinput): invalid ngridk : ",3I8)') ngridk write(*,*) stop end if autokpt=.false. case('vkloff') read(50,*,err=20) vkloff(:) if (any(vkloff(:).lt.0.d0).or.any(vkloff(:).ge.1.d0)) then write(*,*) write(*,'("Error(readinput): vkloff components should be in [0,1) : ",& &3G18.10)') vkloff write(*,*) stop end if case('reducek') read(50,*,err=20) reducek case('ngridq') read(50,*,err=20) ngridq(:) if (any(ngridq(:).le.0)) then write(*,*) write(*,'("Error(readinput): invalid ngridq : ",3I8)') ngridq write(*,*) stop end if case('reduceq') read(50,*,err=20) reduceq case('rgkmax') read(50,*,err=20) rgkmax if (rgkmax.le.0.d0) then write(*,*) write(*,'("Error(readinput): rgkmax <= 0 : ",G18.10)') rgkmax write(*,*) stop end if case('gmaxvr') read(50,*,err=20) gmaxvr case('lmaxapw') read(50,*,err=20) lmaxapw if (lmaxapw.lt.0) then write(*,*) write(*,'("Error(readinput): lmaxapw < 0 : ",I8)') lmaxapw write(*,*) stop end if if (lmaxapw.ge.maxlapw) then write(*,*) write(*,'("Error(readinput): lmaxapw too large : ",I8)') lmaxapw write(*,'("Adjust maxlapw in modmain and recompile code")') write(*,*) stop end if case('lmaxo','lmaxvr') read(50,*,err=20) lmaxo if (lmaxo.lt.3) then write(*,*) write(*,'("Error(readinput): lmaxo < 3 : ",I8)') lmaxo write(*,*) stop end if case('lmaxi','lmaxinr') read(50,*,err=20) lmaxi if (lmaxi.lt.1) then write(*,*) write(*,'("Error(readinput): lmaxi < 1 : ",I8)') lmaxi write(*,*) stop end if case('lmaxmat') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''lmaxmat'' is no longer used")') case('fracinr') read(50,*,err=20) fracinr case('trhonorm') read(50,*,err=20) trhonorm case('spinpol') read(50,*,err=20) spinpol case('spinorb') read(50,*,err=20) spinorb case('socscf') read(50,*,err=20) socscf if (socscf.lt.0.d0) then write(*,*) write(*,'("Error(readinput): socscf < 0 : ",G18.10)') socscf write(*,*) stop end if case('xctype') read(50,'(A256)',err=20) str str=trim(str)//' 0 0' read(str,*,err=20) xctype case('xctsp') read(50,'(A256)',err=20) str str=trim(str)//' 0 0' read(str,*,err=20) xctsp case('stype') read(50,*,err=20) stype case('swidth') read(50,*,err=20) swidth if (swidth.lt.1.d-9) then write(*,*) write(*,'("Error(readinput): swidth too small or negative : ",G18.10)') & swidth write(*,*) stop end if case('autoswidth') read(50,*,err=20) autoswidth case('mstar') read(50,*,err=20) mstar if (mstar.le.0.d0) then write(*,*) write(*,'("Error(readinput): mstar <= 0 : ",G18.10)') mstar write(*,*) stop end if case('epsocc') read(50,*,err=20) epsocc if (epsocc.le.0.d0) then write(*,*) write(*,'("Error(readinput): epsocc <= 0 : ",G18.10)') epsocc write(*,*) stop end if case('epschg') read(50,*,err=20) epschg if (epschg.le.0.d0) then write(*,*) write(*,'("Error(readinput): epschg <= 0 : ",G18.10)') epschg write(*,*) stop end if case('nempty','nempty0') read(50,*,err=20) nempty0 if (nempty0.le.0.d0) then write(*,*) write(*,'("Error(readinput): nempty <= 0 : ",G18.10)') nempty0 write(*,*) stop end if case('mixtype') read(50,*,err=20) mixtype case('amixpm','beta0','betamax') if (trim(block).eq.'amixpm') then read(50,*,err=20) amixpm(:) else if (trim(block).eq.'beta0') then read(50,*,err=20) amixpm(1) else read(50,*,err=20) amixpm(2) end if if (amixpm(1).lt.0.d0) then write(*,*) write(*,'("Error(readinput): beta0 [amixpm(1)] < 0 : ",G18.10)') amixpm(1) write(*,*) stop end if if ((amixpm(2).lt.0.d0).or.(amixpm(2).gt.1.d0)) then write(*,*) write(*,'("Error(readinput): betamax [amixpm(2)] not in [0,1] : ",G18.10)')& amixpm(2) write(*,*) stop end if case('mixsdb') read(50,*,err=20) mixsdb if (mixsdb.lt.2) then write(*,*) write(*,'("Error(readinput): mixsdb < 2 : ",I8)') mixsdb write(*,*) stop end if case('broydpm') read(50,*,err=20) broydpm(:) if ((broydpm(1).lt.0.d0).or.(broydpm(1).gt.1.d0).or. & (broydpm(2).lt.0.d0).or.(broydpm(2).gt.1.d0)) then write(*,*) write(*,'("Error(readinput): invalid Broyden mixing parameters : ",& &2G18.10)') broydpm write(*,*) stop end if case('maxscl') read(50,*,err=20) maxscl if (maxscl.lt.0) then write(*,*) write(*,'("Error(readinput): maxscl < 0 : ",I8)') maxscl write(*,*) stop end if case('epspot') read(50,*,err=20) epspot case('epsengy') read(50,*,err=20) epsengy case('epsforce') read(50,*,err=20) epsforce case('epsstress') read(50,*,err=20) epsstress case('sppath') read(50,*,err=20) sppath sppath=adjustl(sppath) case('scrpath') read(50,*,err=20) scrpath case('molecule') read(50,*,err=20) molecule case('atoms') read(50,*,err=20) nspecies if (nspecies.le.0) then write(*,*) write(*,'("Error(readinput): nspecies <= 0 : ",I8)') nspecies write(*,*) stop end if if (nspecies.gt.maxspecies) then write(*,*) write(*,'("Error(readinput): nspecies too large : ",I8)') nspecies write(*,'("Adjust maxspecies in modmain and recompile code")') write(*,*) stop end if do is=1,nspecies read(50,*,err=20) spfname(is) spfname(is)=adjustl(spfname(is)) read(50,*,err=20) natoms(is) if (natoms(is).le.0) then write(*,*) write(*,'("Error(readinput): natoms <= 0 : ",I8)') natoms(is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (natoms(is).gt.maxatoms) then write(*,*) write(*,'("Error(readinput): natoms too large : ",I8)') natoms(is) write(*,'(" for species ",I4)') is write(*,'("Adjust maxatoms in modmain and recompile code")') write(*,*) stop end if do ia=1,natoms(is) read(50,'(A256)',err=20) str str=trim(str)//' 0.0 0.0 0.0' read(str,*,err=20) atposl(:,ia,is),bfcmt0(:,ia,is) end do end do case('plot1d') read(50,*,err=20) nvp1d,npp1d if (nvp1d.lt.1) then write(*,*) write(*,'("Error(readinput): nvp1d < 1 : ",I8)') nvp1d write(*,*) stop end if if (npp1d.lt.nvp1d) then write(*,*) write(*,'("Error(readinput): npp1d < nvp1d : ",2I8)') npp1d,nvp1d write(*,*) stop end if if (allocated(vvlp1d)) deallocate(vvlp1d) allocate(vvlp1d(3,nvp1d)) do i=1,nvp1d read(50,*,err=20) vvlp1d(:,i) end do case('plot2d') read(50,*,err=20) vclp2d(:,0) read(50,*,err=20) vclp2d(:,1) read(50,*,err=20) vclp2d(:,2) read(50,*,err=20) np2d(:) if ((np2d(1).lt.1).or.(np2d(2).lt.1)) then write(*,*) write(*,'("Error(readinput): np2d < 1 : ",2I8)') np2d write(*,*) stop end if case('plot3d') read(50,*,err=20) vclp3d(:,0) read(50,*,err=20) vclp3d(:,1) read(50,*,err=20) vclp3d(:,2) read(50,*,err=20) vclp3d(:,3) read(50,*,err=20) np3d(:) if ((np3d(1).lt.1).or.(np3d(2).lt.1).or.(np3d(3).lt.1)) then write(*,*) write(*,'("Error(readinput): np3d < 1 : ",3I8)') np3d write(*,*) stop end if case('wplot','dos') read(50,*,err=20) nwplot,ngrkf,nswplot if (nwplot.lt.2) then write(*,*) write(*,'("Error(readinput): nwplot < 2 : ",I8)') nwplot write(*,*) stop end if if (ngrkf.lt.1) then write(*,*) write(*,'("Error(readinput): ngrkf < 1 : ",I8)') ngrkf write(*,*) stop end if if (nswplot.lt.0) then write(*,*) write(*,'("Error(readinput): nswplot < 0 : ",I8)') nswplot write(*,*) stop end if read(50,*,err=20) wplot(:) if (wplot(1).gt.wplot(2)) then write(*,*) write(*,'("Error(readinput): wplot(1) > wplot(2) : ",2G18.10)') wplot write(*,*) stop end if case('dosocc') read(50,*,err=20) dosocc case('dosmsum') read(50,*,err=20) dosmsum case('dosssum') read(50,*,err=20) dosssum case('lmirep') read(50,*,err=20) lmirep case('atpopt') read(50,*,err=20) atpopt case('maxatpstp','maxatmstp') read(50,*,err=20) maxatpstp if (maxatpstp.le.0) then write(*,*) write(*,'("Error(readinput): maxatpstp <= 0 : ",I8)') maxatpstp write(*,*) stop end if case('tau0atp','tau0atm') read(50,*,err=20) tau0atp case('deltast') read(50,*,err=20) deltast if (deltast.le.0.d0) then write(*,*) write(*,'("Error(readinput): deltast <= 0 : ",G18.10)') deltast write(*,*) stop end if case('latvopt') read(50,*,err=20) latvopt case('maxlatvstp') read(50,*,err=20) maxlatvstp if (maxlatvstp.le.0) then write(*,*) write(*,'("Error(readinput): maxlatvstp <= 0 : ",I8)') maxlatvstp write(*,*) stop end if case('tau0latv') read(50,*,err=20) tau0latv case('nstfsp') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''nstfsp'' is no longer used")') case('lradstp') read(50,*,err=20) lradstp if (lradstp.le.0) then write(*,*) write(*,'("Error(readinput): lradstp <= 0 : ",I8)') lradstp write(*,*) stop end if case('chgexs') read(50,*,err=20) chgexs case('nprad') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''nprad'' is no longer used")') case('scissor') read(50,*,err=20) scissor case('optcomp') do i=1,27 read(50,'(A256)',err=20) str if (trim(str).eq.'') then if (i.eq.1) then write(*,*) write(*,'("Error(readinput): empty optical component list")') write(*,*) stop end if noptcomp=i-1 goto 10 end if str=trim(str)//' 1 1' read(str,*,iostat=ios) optcomp(:,i) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading optical component list")') write(*,'("(blank line required after optcomp block)")') write(*,*) stop end if if (any(optcomp(:,i).lt.1).or.any(optcomp(:,i).gt.3)) then write(*,*) write(*,'("Error(readinput): invalid optcomp : ",3I8)') optcomp(:,i) write(*,*) stop end if end do write(*,*) write(*,'("Error(readinput): optical component list too long")') write(*,*) stop case('intraband') read(50,*,err=20) intraband case('evaltol') read(50,*,err=20) evaltol case('deband') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''deband'' is no longer used")') case('epsband') read(50,*,err=20) epsband if (epsband.le.0.d0) then write(*,*) write(*,'("Error(readinput): epsband <= 0 : ",G18.10)') epsband write(*,*) stop end if case('demaxbnd') read(50,*,err=20) demaxbnd if (demaxbnd.le.0.d0) then write(*,*) write(*,'("Error(readinput): demaxbnd <= 0 : ",G18.10)') demaxbnd write(*,*) stop end if case('autolinengy') read(50,*,err=20) autolinengy case('dlefe') read(50,*,err=20) dlefe case('deapwlo') read(50,*,err=20) deapwlo if (abs(deapwlo).lt.1.d-8) then write(*,*) write(*,'("Error(readinput): invalid deapwlo : ",G18.10)') deapwlo write(*,*) stop end if case('bfieldc') read(50,*,err=20) bfieldc0 case('efieldc') read(50,*,err=20) efieldc case('afieldc') read(50,*,err=20) afieldc case('fsmtype','fixspin') read(50,*,err=20) fsmtype case('momfix') read(50,*,err=20) momfix case('mommtfix') do ias=1,maxspecies*maxatoms read(50,'(A256)',err=20) str if (trim(str).eq.'') goto 10 read(str,*,iostat=ios) is,ia,mommtfix(:,ia,is) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading muffin-tin fixed spin & &moments")') write(*,'("(blank line required after mommtfix block")') write(*,*) stop end if end do case('taufsm') read(50,*,err=20) taufsm if (taufsm.lt.0.d0) then write(*,*) write(*,'("Error(readinput): taufsm < 0 : ",G18.10)') taufsm write(*,*) stop end if case('autormt') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''autormt'' is no longer used")') case('rmtdelta') read(50,*,err=20) rmtdelta if (rmtdelta.lt.0.d0) then write(*,*) write(*,'("Warning(readinput): rmtdelta < 0 : ",G18.10)') rmtdelta end if case('isgkmax') read(50,*,err=20) isgkmax case('nosym') read(50,*,err=20) lv if (lv) symtype=0 case('symtype') read(50,*,err=20) symtype if ((symtype.lt.0).or.(symtype.gt.2)) then write(*,*) write(*,'("Error(readinput): symtype not defined : ",I8)') symtype write(*,*) stop end if case('deltaph') read(50,*,err=20) deltaph if (deltaph.le.0.d0) then write(*,*) write(*,'("Error(readinput): deltaph <= 0 : ",G18.10)') deltaph write(*,*) stop end if case('phwrite') read(50,*,err=20) nphwrt if (nphwrt.le.0) then write(*,*) write(*,'("Error(readinput): nphwrt <= 0 : ",I8)') nphwrt write(*,*) stop end if if (allocated(vqlwrt)) deallocate(vqlwrt) allocate(vqlwrt(3,nphwrt)) do i=1,nphwrt read(50,*,err=20) vqlwrt(:,i) end do case('notes') if (allocated(notes)) deallocate(notes) allocate(notes(0)) notelns=0 do read(50,'(A80)') str if (trim(str).eq.'') goto 10 notelns=notelns+1 call addstr(notes) end do case('tforce') read(50,*,err=20) tforce case('tfibs') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''tfibs'' is no longer used")') case('maxitoep') read(50,*,err=20) maxitoep if (maxitoep.lt.1) then write(*,*) write(*,'("Error(readinput): maxitoep < 1 : ",I8)') maxitoep write(*,*) stop end if case('tauoep') read(50,*,err=20) tauoep(:) if ((tauoep(1).lt.0.d0).or.(tauoep(2).lt.0.d0)) then write(*,*) write(*,'("Error(readinput): tauoep < 0 : ",3G18.10)') tauoep write(*,*) stop end if case('kstlist') do i=1,maxkst read(50,'(A256)',err=20) str if (trim(str).eq.'') then if (i.eq.1) then write(*,*) write(*,'("Error(readinput): empty k-point and state list")') write(*,*) stop end if nkstlist=i-1 goto 10 end if read(str,*,iostat=ios) kstlist(:,i) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading k-point and state list")') write(*,'("(blank line required after kstlist block)")') write(*,*) stop end if end do write(*,*) write(*,'("Error(readinput): k-point and state list too long")') write(*,*) stop case('vklem') read(50,*,err=20) vklem case('deltaem') read(50,*,err=20) deltaem case('ndspem') read(50,*,err=20) ndspem if ((ndspem.lt.1).or.(ndspem.gt.4)) then write(*,*) write(*,'("Error(readinput): ndspem out of range : ",I8)') ndspem write(*,*) stop end if case('nosource') read(50,*,err=20) nosource case('spinsprl') read(50,*,err=20) spinsprl case('ssdph') read(50,*,err=20) ssdph case('vqlss') read(50,*,err=20) vqlss case('nwrite') read(50,*,err=20) nwrite case('DFT+U','dft+u','lda+u') read(50,*,err=20) dftu,inpdftu do i=1,maxdftu read(50,'(A256)',err=20) str if (trim(str).eq.'') then ndftu=i-1 goto 10 end if select case(inpdftu) case(1) read(str,*,iostat=ios) is,l,ujdu(1:2,i) case(2) read(str,*,iostat=ios) is,l,(fdu(k,i),k=0,2*l,2) case(3) read(str,*,iostat=ios) is,l,(edu(k,i),k=0,l) case(4) read(str,*,iostat=ios) is,l,lambdadu(i) case(5) read(str,*,iostat=ios) is,l,udufix(i) case default write(*,*) write(*,'("Error(readinput): invalid inpdftu : ",I8)') inpdftu write(*,*) stop end select if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading DFT+U parameters")') write(*,'("(blank line required after dft+u block)")') write(*,*) stop end if if ((is.le.0).or.(is.ge.maxspecies)) then write(*,*) write(*,'("Error(readinput): invalid species number in dft+u block : ", & &I8)') is write(*,*) stop end if if (l.lt.0) then write(*,*) write(*,'("Error(readinput): l < 0 in dft+u block : ",I8)') l write(*,*) stop end if if (l.gt.lmaxdm) then write(*,*) write(*,'("Error(readinput): l > lmaxdm in dft+u block : ",2I8)') l,lmaxdm write(*,*) stop end if ! check for repeated entries do j=1,i-1 if ((is.eq.idftu(1,j)).and.(l.eq.idftu(2,j))) then write(*,*) write(*,'("Error(readinput): repeated entry in DFT+U block")') write(*,*) stop end if end do idftu(1,i)=is idftu(2,i)=l end do write(*,*) write(*,'("Error(readinput): too many DFT+U entries")') write(*,'("Adjust maxdftu in modmain and recompile code")') write(*,*) stop case('tmwrite','tmomlu') read(50,*,err=20) tmwrite case('readadu','readalu') read(50,*,err=20) readadu case('rdmxctype') read(50,*,err=20) rdmxctype case('rdmmaxscl') read(50,*,err=20) rdmmaxscl if (rdmmaxscl.lt.0) then write(*,*) write(*,'("Error(readinput): rdmmaxscl < 0 : ",I8)') rdmmaxscl write(*,*) end if case('maxitn') read(50,*,err=20) maxitn if (maxitn.lt.1) then write(*,*) write(*,'("Error(readinput): maxitn < 1 : ",I8)') maxitn write(*,*) stop end if case('maxitc') read(50,*,err=20) maxitc case('taurdmn') read(50,*,err=20) taurdmn if (taurdmn.lt.0.d0) then write(*,*) write(*,'("Error(readinput): taurdmn < 0 : ",G18.10)') taurdmn write(*,*) stop end if case('taurdmc') read(50,*,err=20) taurdmc if (taurdmc.lt.0.d0) then write(*,*) write(*,'("Error(readinput): taurdmc < 0 : ",G18.10)') taurdmc write(*,*) stop end if case('rdmalpha') read(50,*,err=20) rdmalpha if ((rdmalpha.le.0.d0).or.(rdmalpha.ge.1.d0)) then write(*,*) write(*,'("Error(readinput): rdmalpha not in (0,1) : ",G18.10)') rdmalpha write(*,*) stop end if case('rdmtemp') read(50,*,err=20) rdmtemp if (rdmtemp.lt.0.d0) then write(*,*) write(*,'("Error(readinput): rdmtemp < 0 : ",G18.10)') rdmtemp write(*,*) stop end if case('reducebf') read(50,*,err=20) reducebf if ((reducebf.lt.0.49d0).or.(reducebf.gt.1.d0)) then write(*,*) write(*,'("Error(readinput): reducebf not in [0.5,1] : ",G18.10)') reducebf write(*,*) stop end if case('ptnucl') read(50,*,err=20) ptnucl case('tefvr','tseqr') read(50,*,err=20) tefvr case('tefvit','tseqit') read(50,*,err=20) tefvit case('minitefv','minseqit') read(50,*,err=20) minitefv if (minitefv.lt.1) then write(*,*) write(*,'("Error(readinput): minitefv < 1 : ",I8)') minitefv write(*,*) stop end if case('maxitefv','maxseqit') read(50,*,err=20) maxitefv if (maxitefv.lt.1) then write(*,*) write(*,'("Error(readinput): maxitefv < 1 : ",I8)') maxitefv write(*,*) stop end if case('befvit','bseqit') read(50,*,err=20) befvit if (befvit.le.0.d0) then write(*,*) write(*,'("Error(readinput): befvit <= 0 : ",G18.10)') befvit write(*,*) stop end if case('epsefvit','epsseqit') read(50,*,err=20) epsefvit if (epsefvit.lt.0.d0) then write(*,*) write(*,'("Error(readinput): epsefvit < 0 : ",G18.10)') epsefvit write(*,*) stop end if case('nseqit') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''nseqit'' is no longer used")') case('tauseq') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''tauseq'' is no longer used")') case('vecql') read(50,*,err=20) vecql(:) case('mustar') read(50,*,err=20) mustar case('sqados') read(50,*,err=20) sqados(:) case('test') read(50,*,err=20) test case('frozencr') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''frozencr'' is no longer used")') case('spincore') read(50,*,err=20) spincore case('solscf') read(50,*,err=20) solscf if (solscf.lt.0.d0) then write(*,*) write(*,'("Error(readinput): solscf < 0 : ",G18.10)') solscf write(*,*) stop end if case('emaxelnes') read(50,*,err=20) emaxelnes case('wsfac') read(50,*,err=20) wsfac(:) case('vhmat') read(50,*,err=20) vhmat(1,:) read(50,*,err=20) vhmat(2,:) read(50,*,err=20) vhmat(3,:) case('reduceh') read(50,*,err=20) reduceh case('hybrid') read(50,*,err=20) hybrid0 case('hybridc','hybmix') read(50,*,err=20) hybridc if ((hybridc.lt.0.d0).or.(hybridc.gt.1.d0)) then write(*,*) write(*,'("Error(readinput): invalid hybridc : ",G18.10)') hybridc write(*,*) stop end if case('ecvcut') read(50,*,err=20) ecvcut case('esccut') read(50,*,err=20) esccut case('nvbse') read(50,*,err=20) nvbse0 if (nvbse0.lt.0) then write(*,*) write(*,'("Error(readinput): nvbse < 0 : ",I8)') nvbse0 write(*,*) stop end if case('ncbse') read(50,*,err=20) ncbse0 if (ncbse0.lt.0) then write(*,*) write(*,'("Error(readinput): ncbse < 0 : ",I8)') ncbse0 write(*,*) stop end if case('istxbse') do i=1,maxxbse read(50,'(A256)',err=20) str if (trim(str).eq.'') then if (i.eq.1) then write(*,*) write(*,'("Error(readinput): empty BSE extra valence state list")') write(*,*) stop end if nvxbse=i-1 goto 10 end if read(str,*,iostat=ios) istxbse(i) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading BSE valence state list")') write(*,'("(blank line required after istxbse block)")') write(*,*) stop end if end do write(*,*) write(*,'("Error(readinput): BSE extra valence state list too long")') write(*,*) stop case('jstxbse') do i=1,maxxbse read(50,'(A256)',err=20) str if (trim(str).eq.'') then if (i.eq.1) then write(*,*) write(*,'("Error(readinput): empty BSE extra conduction state list")') write(*,*) stop end if ncxbse=i-1 goto 10 end if read(str,*,iostat=ios) jstxbse(i) if (ios.ne.0) then write(*,*) write(*,'("Error(readinput): error reading BSE conduction state list")') write(*,'("(blank line required after jstxbse block)")') write(*,*) stop end if end do write(*,*) write(*,'("Error(readinput): BSE extra conduction state list too long")') write(*,*) stop case('bsefull') read(50,*,err=20) bsefull case('hxbse') read(50,*,err=20) hxbse case('hdbse') read(50,*,err=20) hdbse case('gmaxrf','gmaxrpa') read(50,*,err=20) gmaxrf if (gmaxrf.lt.0.d0) then write(*,*) write(*,'("Error(readinput): gmaxrf < 0 : ",G18.10)') gmaxrf write(*,*) stop end if case('emaxrf') read(50,*,err=20) emaxrf if (emaxrf.lt.0.d0) then write(*,*) write(*,'("Error(readinput): emaxrf < 0 : ",G18.10)') emaxrf write(*,*) stop end if case('fxctype') read(50,'(A256)',err=20) str str=trim(str)//' 0 0' read(str,*,err=20) fxctype case('fxclrc') read(50,'(A256)',err=20) str str=trim(str)//' 0.0' read(str,*,err=20) fxclrc(:) case('ntemp') read(50,*,err=20) ntemp if (ntemp.lt.1) then write(*,*) write(*,'("Error(readinput): ntemp < 1 : ",I8)') ntemp write(*,*) stop end if case('trimvg') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''trimvg'' is no longer used")') write(*,'(" setting msmooth=4 instead")') msmooth=4 case('rndstate','rndseed') read(50,*,err=20) rndstate(0) rndstate(0)=abs(rndstate(0)) case('rndatposc') read(50,*,err=20) rndatposc case('rndbfcmt') read(50,*,err=20) rndbfcmt case('rndavec') read(50,*,err=20) rndavec case('c_tb09') read(50,*,err=20) c_tb09 ! set flag to indicate Tran-Blaha constant has been read in tc_tb09=.true. case('lowq','highq','vhighq','uhighq') read(50,*,err=20) lv if (lv) then if (trim(block).eq.'lowq') then rgkmax=6.5d0 gmaxvr=10.d0 lmaxapw=7 lmaxo=5 nxlo=2 lorbcnd=.true. radkpt=25.d0 autokpt=.true. vkloff(:)=0.5d0 nempty0=4.d0 epspot=1.d-5 epsengy=5.d-4 epsforce=1.d-2 autolinengy=.true. gmaxrf=2.5d0 lradstp=5 else if (trim(block).eq.'highq') then ! parameter set for high quality calculation rgkmax=max(rgkmax,8.d0) gmaxvr=max(gmaxvr,16.d0) msmooth=max(msmooth,4) lmaxapw=max(lmaxapw,9) lmaxo=max(lmaxo,7) nrmtscf=max(nrmtscf,1.5d0) nxlo=max(nxlo,2) lorbcnd=.true. radkpt=max(radkpt,50.d0) autokpt=.true. vkloff(:)=0.d0 nempty0=max(nempty0,10.d0) epspot=min(epspot,1.d-7) epsengy=min(epsengy,1.d-5) epsforce=min(epsforce,1.d-4) autolinengy=.true. gmaxrf=max(gmaxrf,4.d0) else if (trim(block).eq.'vhighq') then ! parameter set for very high quality calculation rgkmax=max(rgkmax,9.d0) gmaxvr=max(gmaxvr,18.d0) msmooth=max(msmooth,4) lmaxapw=max(lmaxapw,10) lmaxo=max(lmaxo,8) nrmtscf=max(nrmtscf,2.d0) nxlo=max(nxlo,3) lorbcnd=.true. radkpt=max(radkpt,90.d0) autokpt=.true. vkloff(:)=0.d0 nempty0=max(nempty0,20.d0) epspot=min(epspot,1.d-7) epsengy=min(epsengy,1.d-6) epsforce=min(epsforce,1.d-4) autolinengy=.true. gmaxrf=max(gmaxrf,5.d0) else ! parameter set for ultra high quality calculation rgkmax=max(rgkmax,10.d0) gmaxvr=max(gmaxvr,20.d0) msmooth=max(msmooth,4) lmaxapw=max(lmaxapw,11) lmaxo=max(lmaxo,9) nrmtscf=max(nrmtscf,4.d0) nxlo=max(nxlo,3) lorbcnd=.true. radkpt=max(radkpt,120.d0) autokpt=.true. vkloff(:)=0.d0 nempty0=max(nempty0,40.d0) epspot=min(epspot,1.d-7) epsengy=min(epsengy,1.d-6) epsforce=min(epsforce,1.d-4) autolinengy=.true. gmaxrf=max(gmaxrf,6.d0) end if if (mp_mpi) then write(*,*) write(*,'("Info(readinput): parameters set by ",A," option")') trim(block) write(*,'(" rgkmax : ",G18.10)') rgkmax write(*,'(" gmaxvr : ",G18.10)') gmaxvr write(*,'(" msmooth : ",I4)') msmooth write(*,'(" lmaxapw : ",I4)') lmaxapw write(*,'(" lmaxo : ",I4)') lmaxo write(*,'(" nrmtscf : ",G18.10)') nrmtscf write(*,'(" nxlo : ",I4)') nxlo write(*,'(" lorbcnd : ",L1)') lorbcnd write(*,'(" radkpt : ",G18.10)') radkpt write(*,'(" autokpt : ",L1)') autokpt write(*,'(" vkloff : ",3G18.10)') vkloff write(*,'(" nempty0 : ",G18.10)') nempty0 write(*,'(" epspot : ",G18.10)') epspot write(*,'(" epsengy : ",G18.10)') epsengy write(*,'(" epsforce : ",G18.10)') epsforce write(*,'(" autolinengy : ",L1)') autolinengy write(*,'(" gmaxrf : ",G18.10)') gmaxrf if (trim(block).eq.'lowq') then write(*,'(" lradstp : ",I4)') lradstp end if end if end if case('hmaxvr') read(50,*,err=20) hmaxvr if (hmaxvr.lt.0.d0) then write(*,*) write(*,'("Error(readinput): hmaxvr < 0 : ",G18.10)') hmaxvr write(*,*) stop end if case('hkmax') read(50,*,err=20) hkmax if (hkmax.le.0.d0) then write(*,*) write(*,'("Error(readinput): hkmax <= 0 : ",G18.10)') hkmax write(*,*) stop end if case('lorbcnd') read(50,*,err=20) lorbcnd case('lorbordc') read(50,*,err=20) lorbordc if (lorbordc.lt.2) then write(*,*) write(*,'("Error(readinput): lorbordc < 2 : ",I8)') lorbordc write(*,*) stop end if if (lorbordc.gt.maxlorbord) then write(*,*) write(*,'("Error(readinput): lorbordc too large : ",I8)') lorbordc write(*,'("Adjust maxlorbord in modmain and recompile code")') write(*,*) stop end if case('nrmtscf') read(50,*,err=20) nrmtscf if (nrmtscf.lt.0.5d0) then write(*,*) write(*,'("Error(readinput): nrmtscf < 0.5 : ",G18.10)') nrmtscf write(*,*) stop end if case('lmaxdos') read(50,*,err=20) lmaxdos if (lmaxdos.lt.0) then write(*,*) write(*,'("Error(readinput): lmaxdos < 0 : ",I8)') lmaxdos write(*,*) stop end if case('epsdev') read(50,*,err=20) epsdev if (epsdev.le.0.d0) then write(*,*) write(*,'("Error(readinput): epsdev <= 0 : ",G18.10)') epsdev write(*,*) stop end if case('msmooth') read(50,*,err=20) msmooth if (msmooth.lt.0) then write(*,*) write(*,'("Error(readinput): msmooth < 0 : ",I8)') msmooth write(*,*) stop end if case('npmae') read(50,*,err=20) npmae0 case('wrtvars') read(50,*,err=20) wrtvars case('ftmtype') read(50,*,err=20) ftmtype case('tmomfix') read(50,*,err=20) ntmfix if (ntmfix.le.0) then write(*,*) write(*,'("Error(readinput): ntmfix <= 0 : ",I8)') ntmfix write(*,*) stop end if if (allocated(itmfix)) deallocate(itmfix) allocate(itmfix(8,ntmfix)) if (allocated(tmfix)) deallocate(tmfix) allocate(tmfix(ntmfix)) if (allocated(rtmfix)) deallocate(rtmfix) allocate(rtmfix(3,3,2,ntmfix)) do i=1,ntmfix read(50,*,err=20) is,ia,l,n if ((is.le.0).or.(ia.le.0).or.(l.lt.0).or.((n.ne.2).and.(n.ne.3))) then write(*,*) write(*,'("Error(readinput): invalid is, ia, l or n in tmomfix block : ",& &4I8)') is,ia,l,n write(*,*) stop end if itmfix(1,i)=is itmfix(2,i)=ia itmfix(3,i)=l itmfix(4,i)=n ! read k, p, x, y for the 2-index tensor or k, p, r, t for the 3-index tensor read(50,*,err=20) itmfix(5:8,i) ! read tensor component read(50,*,err=20) a,b tmfix(i)=cmplx(a,b,8) ! read parity and Euler angles of spatial and spin rotation matrices read(50,'(A256)',err=20) str str=trim(str)//' 0.0 0.0 0.0' read(str,*,err=20) p,v1(:),v2(:) if (abs(p).ne.1) then write(*,*) write(*,'("Error(readinput): parity should be -1 or 1 in tmomfix & &block : ",I8)') p write(*,*) stop end if ! convert Euler angles from degrees to radians v1(:)=v1(:)*pi/180.d0 v2(:)=v2(:)*pi/180.d0 ! compute the spatial and spin 3x3 rotation matrices from the Euler angles call eulerrot(v1,rtmfix(:,:,1,i)) call eulerrot(v2,rtmfix(:,:,2,i)) ! multiply the spatial rotation matrix by the parity rtmfix(:,:,1,i)=dble(p)*rtmfix(:,:,1,i) end do case('tauftm') read(50,*,err=20) tauftm if (tauftm.lt.0.d0) then write(*,*) write(*,'("Error(readinput): tauftm < 0 : ",G18.10)') tauftm write(*,*) stop end if case('ftmstep') read(50,*,err=20) ftmstep if (ftmstep.lt.1) then write(*,*) write(*,'("Error(readinput): ftmstep < 1 : ",I8)') ftmstep write(*,*) stop end if case('cmagz','forcecmag') read(50,*,err=20) cmagz case('rotavec') read(50,*,err=20) axang(:) case('tstime') read(50,*,err=20) tstime if (tstime.lt.0.d0) then write(*,*) write(*,'("Error(readinput): tstime <= 0 : ",G18.10)') tstime write(*,*) stop end if case('dtimes') read(50,*,err=20) dtimes if (dtimes.le.0.d0) then write(*,*) write(*,'("Error(readinput): dtimes <= 0 : ",G18.10)') dtimes write(*,*) stop end if case('pulse') read(50,*,err=20) npulse if (npulse.lt.1) then write(*,*) write(*,'("Error(readinput): npulse < 1 : ",I8)') npulse write(*,*) stop end if if (allocated(pulse)) deallocate(pulse) allocate(pulse(8,npulse)) do i=1,npulse read(50,*,err=20) pulse(:,i) end do case('ramp') read(50,*,err=20) nramp if (nramp.lt.1) then write(*,*) write(*,'("Error(readinput): nramp < 1 : ",I8)') nramp write(*,*) stop end if if (allocated(ramp)) deallocate(ramp) allocate(ramp(8,nramp)) do i=1,nramp read(50,'(A256)',err=20) str str=trim(str)//' 0.0 0.0' read(str,*,err=20) ramp(:,i) end do case('ncgga') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''ncgga'' is no longer used")') case('dncgga') read(50,*,err=20) dncgga if (dncgga.lt.0.d0) then write(*,*) write(*,'("Error(readinput): dncgga < 0 : ",G18.10)') dncgga write(*,*) stop end if case('ntswrite') read(50,'(A256)',err=20) str str=trim(str)//' 1' read(str,*,err=20) ntswrite(:) case('nxoapwlo','nxapwlo') read(50,*,err=20) nxoapwlo if (nxoapwlo.lt.0) then write(*,*) write(*,'("Error(readinput): nxoapwlo < 0 : ",I8)') nxoapwlo write(*,*) stop end if case('nxlo') read(50,*,err=20) nxlo if (nxlo.lt.0) then write(*,*) write(*,'("Error(readinput): nxlo < 0 : ",I8)') nxlo write(*,*) stop end if case('tdrho1d') read(50,*,err=20) tdrho1d case('tdrho2d') read(50,*,err=20) tdrho2d case('tdrho3d') read(50,*,err=20) tdrho3d case('tdmag1d') read(50,*,err=20) tdmag1d case('tdmag2d') read(50,*,err=20) tdmag2d case('tdmag3d') read(50,*,err=20) tdmag3d case('tdjr1d','tdcd1d') read(50,*,err=20) tdjr1d case('tdjr2d','tdcd2d') read(50,*,err=20) tdjr2d case('tdjr3d','tdcd3d') read(50,*,err=20) tdjr3d case('tddos') read(50,*,err=20) tddos case('tdlsj') read(50,*,err=20) tdlsj case('epseph') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''epseph'' is no longer used")') case('rndevt0') read(50,*,err=20) rndevt0 case('sxcscf','ssxc','rstsf') read(50,*,err=20) sxcscf case('tempk') read(50,*,err=20) tempk if (tempk.le.0.d0) then write(*,*) write(*,'("Error(readinput): tempk <= 0 : ",G18.10)') tempk write(*,*) stop end if ! set Fermi-Dirac smearing stype=3 ! set the smearing width swidth=kboltz*tempk case('avecu') read(50,*,err=20) avecu(:,1) read(50,*,err=20) avecu(:,2) read(50,*,err=20) avecu(:,3) case('scaleu') read(50,*,err=20) scu case('scaleu1') read(50,*,err=20) scu1 case('scaleu2') read(50,*,err=20) scu2 case('scaleu3') read(50,*,err=20) scu3 case('q0cut') read(50,*,err=20) q0cut if (q0cut.lt.0.d0) then write(*,*) write(*,'("Error(readinput): q0cut < 0 : ",G18.10)') q0cut write(*,*) stop end if case('rndbfcu') read(50,*,err=20) rndbfcu case('efielduc') read(50,*,err=20) efielduc case('tplotq0') read(50,*,err=20) tplotq0 case('trdvclr') read(50,*,err=20) trdvclr case('evtype') read(50,*,err=20) write(*,*) write(*,'("Info(readinput): variable ''evtype'' is no longer used")') case('wmaxgw') read(50,*,err=20) wmaxgw case('twdiag') read(50,*,err=20) twdiag case('tsediag') read(50,*,err=20) tsediag case('actype') read(50,*,err=20) actype case('npole') read(50,*,err=20) npole if (npole.le.0) then write(*,*) write(*,'("Error(readinput): npole <= 0 : ",I8)') npole write(*,*) stop end if case('nspade') read(50,*,err=20) nspade if (nspade.le.0) then write(*,*) write(*,'("Error(readinput): nspade <= 0 : ",I8)') nspade write(*,*) stop end if case('tfav0') read(50,*,err=20) tfav0 case('rmtall') read(50,*,err=20) rmtall case('maxthd','omp_num_threads','OMP_NUM_THREADS') read(50,*,err=20) maxthd case('maxthd1') read(50,*,err=20) maxthd1 case('maxthdmkl') read(50,*,err=20) maxthdmkl case('maxlvl','omp_max_active_levels','OMP_MAX_ACTIVE_LEVELS') read(50,*,err=20) maxlvl if (maxlvl.lt.1) then write(*,*) write(*,'("Error(readinput): maxlvl < 1 : ",I8)') maxlvl write(*,*) stop end if case('stable') read(50,*,err=20) lv if (lv) then mixtype=3 broydpm(1)=min(broydpm(1),0.04d0) broydpm(2)=min(broydpm(2),0.01d0) msmooth=max(msmooth,8) isgkmax=-4 if (mp_mpi) then write(*,*) write(*,'("Info(readinput): parameters set by stable option")') write(*,'(" mixtype : ",I4)') mixtype write(*,'(" broydpm : ",2G18.10)') broydpm write(*,'(" msmooth : ",I4)') msmooth write(*,'(" isgkmax : ",I4)') isgkmax end if end if case('metagga') read(50,*,err=20) lv if (lv) then nempty0=max(nempty0,10.d0) lradstp=1 nrmtscf=max(nrmtscf,2.d0) msmooth=max(msmooth,4) if (mp_mpi) then write(*,*) write(*,'("Info(readinput): parameters set by metagga option")') write(*,'(" nempty0 : ",G18.10)') nempty0 write(*,'(" lradstp : ",I4)') lradstp write(*,'(" nrmtscf : ",G18.10)') nrmtscf write(*,'(" msmooth : ",I4)') msmooth end if end if case('taudft') read(50,*,err=20) taudft case('t0tdlr') read(50,*,err=20) t0tdlr if (t0tdlr.le.0.d0) then write(*,*) write(*,'("Error(readinput): t0tdlr <= 0 : ",G18.10)') t0tdlr write(*,*) stop end if case('tdphi') read(50,*,err=20) tdphi ! convert phase from degrees to radians tdphi=tdphi*pi/180.d0 case('thetamld') read(50,*,err=20) thetamld ! convert MLD angle from degrees to radians thetamld=thetamld*pi/180.d0 case('ntsbackup') read(50,*,err=20) ntsbackup case('seedname') read(50,*,err=20) seedname seedname=adjustl(seedname) case('num_wann') read(50,*,err=20) num_wann case('idxw90','wann_bands') read(50,'(A256)',err=20) str num_bands=1024 if (allocated(idxw90)) deallocate(idxw90) allocate(idxw90(num_bands)) call numlist(str,num_bands,idxw90) case('num_iter') read(50,*,err=20) num_iter case('trial_step') read(50,*,err=20) trial_step case('xlwin','wannierExtra') if (allocated(xlwin)) deallocate(xlwin) allocate(xlwin(0)) nxlwin=0 do read(50,'(A256)',err=20) str if (trim(str).eq.'') goto 10 nxlwin=nxlwin+1 call addstr(xlwin) end do case('tbdip') read(50,*,err=20) tbdip case('tjr','tcden') read(50,*,err=20) tjr case('tauefm') read(50,*,err=20) tauefm case('epsefm') read(50,*,err=20) epsefm case('ehfb') read(50,*,err=20) ehfb case('t0gclq0') read(50,*,err=20) t0gclq0 case('tafindt') read(50,*,err=20) tafindt case('afindscf') read(50,*,err=20) afindscf case('nkspolar') read(50,*,err=20) nkspolar if (nkspolar.lt.1) then write(*,*) write(*,'("Error(readinput): nkspolar < 1 : ",I8)') nkspolar write(*,*) stop end if case('ntsforce') read(50,*,err=20) ntsforce if (ntsforce.lt.1) then write(*,*) write(*,'("Error(readinput): ntsforce < 1 : ",I8)') ntsforce write(*,*) stop end if case('wphcut') read(50,*,err=20) wphcut if (wphcut.le.0.d0) then write(*,*) write(*,'("Error(readinput): wphcut <= 0 : ",G18.10)') wphcut write(*,*) stop end if case('ephscf') read(50,*,err=20) ephscf(:) case('anomalous') read(50,*,err=20) anomalous case('tephde') read(50,*,err=20) tephde case('bdiag') read(50,*,err=20) bdiag case('ramdisk') read(50,*,err=20) ramdisk case('') goto 10 case default write(*,*) write(*,'("Error(readinput): invalid block name : ",A)') trim(block) write(*,*) stop end select goto 10 20 continue write(*,*) write(*,'("Error(readinput): error reading from elk.in")') write(*,'("Problem occurred in ''",A,"'' block")') trim(block) write(*,'("Check input convention in manual")') write(*,*) stop 30 continue close(50) ! scale the speed of light solsc=sol*solscf ! scale and rotate the lattice vectors (not referenced again in code) avec(:,:)=sc*avec(:,:) avec(:,1)=sc1*avec(:,1) avec(:,2)=sc2*avec(:,2) avec(:,3)=sc3*avec(:,3) avec(1,:)=scx*avec(1,:) avec(2,:)=scy*avec(2,:) avec(3,:)=scz*avec(3,:) t1=axang(4) if (t1.ne.0.d0) then t1=t1*pi/180.d0 call axangrot(axang(:),t1,rot) do i=1,3 v1(:)=avec(:,i) call r3mv(rot,v1,avec(:,i)) end do end if ! randomise lattice vectors if required if (rndavec.gt.0.d0) then do i=1,3 do j=1,3 t1=rndavec*(randomu()-0.5d0) avec(i,j)=avec(i,j)+t1 end do end do end if ! case of isolated molecule if (molecule) then ! convert atomic positions from Cartesian to lattice coordinates call r3minv(avec,ainv) do is=1,nspecies do ia=1,natoms(is) call r3mv(ainv,atposl(:,ia,is),v1) atposl(:,ia,is)=v1(:) end do end do end if ! randomise atomic positions if required if (rndatposc.gt.0.d0) then call r3minv(avec,ainv) do is=1,nspecies do ia=1,natoms(is) call r3mv(avec,atposl(:,ia,is),v1) do i=1,3 t1=rndatposc*(randomu()-0.5d0) v1(i)=v1(i)+t1 end do call r3mv(ainv,v1,atposl(:,ia,is)) end do end do end if ! randomise the muffin-tin magnetic fields if required if (rndbfcmt.gt.0.d0) then do is=1,nspecies do ia=1,natoms(is) do i=1,3 t1=rndbfcmt*(randomu()-0.5d0) bfcmt0(i,ia,is)=bfcmt0(i,ia,is)+t1 end do end do end do end if ! set fxctype to fxctype if required if (fxctype(1).eq.-1) fxctype(:)=xctype(:) ! find primitive cell if required if (primcell) call findprimcell ! scale the ultracell vectors if required avecu(:,1)=scu1*avecu(:,1) avecu(:,2)=scu2*avecu(:,2) avecu(:,3)=scu3*avecu(:,3) avecu(:,:)=scu*avecu(:,:) ! read in atomic species data call readspecies return contains subroutine addstr(slist) implicit none ! arguments character(256), intent(inout), allocatable :: slist(:) ! allocatable arrays character(256), allocatable :: stmp(:) n=size(slist) allocate(stmp(n)) stmp(1:n)=slist(1:n) deallocate(slist) allocate(slist(n+1)) slist(1:n)=stmp(1:n) slist(n+1)=str deallocate(stmp) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/numlist.f900000644000000000000000000000013214061636517014737 xustar0030 mtime=1623670095.333102104 30 atime=1623670094.108103241 30 ctime=1623670095.333102104 elk-7.2.42/src/numlist.f900000644002504400250440000000156514061636517017003 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin, ! Lars Nordstrom and J. K. Dewhurst. This file is distributed under the terms of ! the GNU General Public License. See the file COPYING for license details. subroutine numlist(str,n,list) implicit none ! arguments character(256), intent(in) :: str integer, intent(inout) :: n integer, intent(out) :: list(n) ! local variables integer i0,i1,i,j,m,ios ! automatic arrays integer l(n) i=0 i0=1 do m=index(str(i0:),'-') if (m.eq.0) then i1=256 else i1=i0+m-2 end if l(:)=0 read(str(i0:i1),*,iostat=ios) l if (i.gt.0) then do j=list(i)+1,l(1)-1 if (i.eq.n) goto 10 i=i+1 list(i)=j end do end if do j=1,n if (l(j).eq.0) exit if (i.eq.n) goto 10 i=i+1 list(i)=l(j) end do if (m.eq.0) exit i0=i0+m end do 10 continue n=i end subroutine elk-7.2.42/src/PaxHeaders.21776/hermite.f900000644000000000000000000000013114061636517014700 xustar0030 mtime=1623670095.334102103 29 atime=1623670094.10910324 30 ctime=1623670095.334102103 elk-7.2.42/src/hermite.f900000644002504400250440000000266414061636517016746 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: hermite ! !INTERFACE: real(8) function hermite(n,x) ! !INPUT/OUTPUT PARAMETERS: ! n : order of Hermite polynomial (in,integer) ! x : real argument (in,real) ! !DESCRIPTION: ! Returns the $n$th Hermite polynomial. The recurrence relation ! $$ H_i(x)=2xH_{i-1}(x)-2nH_{i-2}(x), $$ ! with $H_0=1$ and $H_1=2x$, is used. This procedure is numerically stable ! and accurate to near machine precision for $n\le 20$. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x ! local variables integer i real(8) h1,h2,ht ! fast return if possible if (n.eq.0) then hermite=1.d0 return else if (n.eq.1) then hermite=2.d0*x return else if (n.eq.2) then hermite=4.d0*x**2-2.d0 return end if if (n.lt.0) then write(*,*) write(*,'("Error(hermite): n < 0 : ",I8)') n write(*,*) stop end if if (n.gt.20) then write(*,*) write(*,'("Error(hermite): n out of range : ",I8)') n write(*,*) stop end if if (abs(x).gt.1.d15) then write(*,*) write(*,'("Error(hermite): x out of range : ",G18.10)') x write(*,*) stop end if h1=2.d0*x h2=1.d0 do i=2,n ht=2.d0*(x*h1-dble(i-1)*h2) h2=h1 h1=ht end do hermite=h1 end function !EOC elk-7.2.42/src/PaxHeaders.21776/genfspecies.f900000644000000000000000000000013214061636517015537 xustar0030 mtime=1623670095.336102101 30 atime=1623670094.111103238 30 ctime=1623670095.336102101 elk-7.2.42/src/genfspecies.f900000644002504400250440000000645214061636517017603 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genfspecies(zn,symb) use modmain use modmpi implicit none ! arguments real(8), intent(in) :: zn character(*), intent(in) :: symb ! local variables integer, parameter :: nit=4 integer nst,ist,jst integer nmax,in,il,ik integer nrm,nr,ir,it integer n(maxstsp),l(maxstsp),k(maxstsp) integer idx(maxstsp),iv(maxstsp) real(8) rm,rmin,rmax real(8) mass,t1,t2,t3 real(8) occ(maxstsp),eval(maxstsp),rv(maxstsp) character(256) name ! allocatable arrays real(8), allocatable :: r(:),rho(:),vr(:),rwf(:,:,:) ! external functions real(8), external :: massnucl name='Fractional species' ! set up the initial occupancies occ(:)=0.d0 t1=abs(zn) nmax=1 ist=0 do in=1,maxstsp do il=0,in-1 do ik=max(il,1),il+1 t2=dble(2*ik) t2=min(t2,t1) ist=ist+1 n(ist)=in l(ist)=il k(ist)=ik occ(ist)=t2 if (t2.gt.epsocc) nmax=in t1=t1-t2 if (ist.eq.maxstsp) then if (t1.gt.epsocc) then write(*,*) write(*,'("Error(genfspecies): too many states for fractional & &species ",A)') trim(symb) write(*,*) stop else goto 10 end if end if end do end do end do 10 continue ! minimum radius rmin=2.d-6/sqrt(abs(zn)) ! initial maximum radius rmax=100.d0 ! initial muffin-tin radius rm=2.d0 ! number of points to muffin-tin radius nrm=100*(nmax+1) ! iterate the solution but not to self-consistency do it=1,nit ! number of points to effective infinity t1=log(rm/rmin) t2=log(rmax/rmin) t3=dble(nrm)*t2/t1 nr=int(t3) allocate(r(nr),rho(nr),vr(nr),rwf(nr,2,maxstsp)) ! generate logarithmic radial mesh t2=t1/dble(nrm-1) do ir=1,nr r(ir)=rmin*exp(dble(ir-1)*t2) end do ! solve the Kohn-Sham-Dirac equation for the atom call atom(sol,.true.,zn,maxstsp,n,l,k,occ,3,0,nr,r,eval,rho,vr,rwf) ! check for spurious eigenvalues do ist=2,maxstsp if (eval(ist).lt.eval(1)) eval(ist)=1.d6 end do ! recompute the effective infinity do ir=nr,1,-1 if (rho(ir).gt.1.d-20) then rmax=1.75d0*r(ir) exit end if end do ! estimate the muffin-tin radius do ir=nr,1,-1 if (rho(ir).gt.2.d-2) then rm=r(ir) exit end if end do if (rm.lt.1.d0) rm=1.d0 if (rm.gt.3.2d0) rm=3.2d0 ! sort the eigenvalues call sortidx(maxstsp,eval,idx) ! recompute the occupancies occ(:)=0.d0 t1=abs(zn) do ist=1,maxstsp jst=idx(ist) ik=k(jst) t2=dble(2*ik) t2=min(t2,t1) occ(jst)=t2 t1=t1-t2 end do deallocate(r,rho,vr,rwf) end do ! rearrange the arrays iv(:)=n(:) n(:)=iv(idx(:)) iv(:)=l(:) l(:)=iv(idx(:)) iv(:)=k(:) k(:)=iv(idx(:)) rv(:)=occ(:) occ(:)=rv(idx(:)) rv(:)=eval(:) eval(:)=rv(idx(:)) ! find the number of occupied states nst=0 do ist=1,maxstsp if (occ(ist).lt.epsocc) then nst=ist exit end if end do ! estimate the nuclear mass mass=massnucl(zn) ! convert from 'atomic mass units' to atomic units mass=mass*amu ! write the species file call writespecies(symb,name,zn,mass,rmin,rm,rmax,nrm,nst,n,l,k,occ,eval) if (mp_mpi) then write(*,*) write(*,'("Info(genfspecies): wrote fractional species file ",A,".in")') & trim(symb) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/atpstep.f900000644000000000000000000000012614061636517014727 xustar0028 mtime=1623670095.3371021 30 atime=1623670094.113103236 28 ctime=1623670095.3371021 elk-7.2.42/src/atpstep.f900000644002504400250440000000352414061636517016765 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: atpstep ! !INTERFACE: subroutine atpstep ! !USES: use modmain use modmpi ! !DESCRIPTION: ! Makes a geometry optimisation step and updates the current atomic positions ! according to the force on each atom. If ${\bf r}_{ij}^m$ is the position and ! ${\bf F}_{ij}^m$ is the force acting on it for atom $j$ of species $i$ and ! after time step $m$, then the new position is calculated by ! $$ {\bf r}_{ij}^{m+1}={\bf r}_{ij}^m+\tau_{ij}^m\left({\bf F}_{ij}^m ! +{\bf F}_{ij}^{m-1}\right), $$ ! where $\tau_{ij}^m$ is a parameter governing the size of the displacement. ! If ${\bf F}_{ij}^m\cdot{\bf F}_{ij}^{m-1}>0$ then $\tau_{ij}^m$ is ! increased, otherwise it is decreased. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ia,ias,n real(8) t1 do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! compute the dot-product between the current and previous total force t1=dot_product(forcetot(1:3,ias),forcetotp(1:3,ias)) ! if the force is in the same direction then increase step size parameter if (t1.gt.0.d0) then tauatp(ias)=tauatp(ias)+tau0atp else tauatp(ias)=tau0atp end if ! make atomic position step atposc(1:3,ia,is)=atposc(1:3,ia,is)+tauatp(ias)*(forcetot(1:3,ias) & +forcetotp(1:3,ias)) end do end do ! each MPI process should have identical atomic positions n=3*maxatoms*maxspecies call mpi_bcast(atposc,n,mpi_double_precision,0,mpicom,ierror) do is=1,nspecies do ia=1,natoms(is) ! compute the lattice coordinates of the atomic positions call r3mv(ainv,atposc(:,ia,is),atposl(:,ia,is)) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/dmatls.f900000644000000000000000000000013214061636517014530 xustar0030 mtime=1623670095.339102098 30 atime=1623670094.114103235 30 ctime=1623670095.339102098 elk-7.2.42/src/dmatls.f900000644002504400250440000000162114061636517016565 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dmatls(dmat,xl,xs) use modmain implicit none ! arguments complex(8), intent(in) :: dmat(lmmaxo,nspinor,lmmaxo,nspinor) real(8), intent(out) :: xl(3),xs(3) ! local variables integer ispn,lm ! automatic arrays complex(8) zlflm(lmmaxo,3) ! compute tr(LD) xl(:)=0.d0 do ispn=1,nspinor do lm=1,lmmaxo call lopzflm(lmaxo,dmat(:,ispn,lm,ispn),lmmaxo,zlflm) xl(:)=xl(:)+dble(zlflm(lm,:)) end do end do ! compute tr(sigma D) xs(:)=0.d0 if (spinpol) then do lm=1,lmmaxo xs(1)=xs(1)+dble(dmat(lm,2,lm,1)+dmat(lm,1,lm,2)) xs(2)=xs(2)+dble(-zi*dmat(lm,2,lm,1)+zi*dmat(lm,1,lm,2)) xs(3)=xs(3)+dble(dmat(lm,1,lm,1)-dmat(lm,2,lm,2)) end do ! S = 1/2 sigma xs(:)=0.5d0*xs(:) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/writeengy.f900000644000000000000000000000013214061636517015261 xustar0030 mtime=1623670095.340102097 30 atime=1623670094.116103234 30 ctime=1623670095.340102097 elk-7.2.42/src/writeengy.f900000644002504400250440000000305014061636517017314 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine writeengy(fnum) use modmain use moddftu implicit none ! arguments integer, intent(in) :: fnum write(fnum,*) write(fnum,'("Energies :")') write(fnum,'(" Fermi",T30,": ",G22.12)') efermi write(fnum,'(" sum of eigenvalues",T30,": ",G22.12)') evalsum write(fnum,'(" electron kinetic",T30,": ",G22.12)') engykn write(fnum,'(" core electron kinetic",T30,": ",G22.12)') engykncr write(fnum,'(" Coulomb",T30,": ",G22.12)') engycl write(fnum,'(" Coulomb potential",T30,": ",G22.12)') engyvcl write(fnum,'(" nuclear-nuclear",T30,": ",G22.12)') engynn write(fnum,'(" electron-nuclear",T30,": ",G22.12)') engyen write(fnum,'(" Hartree",T30,": ",G22.12)') engyhar write(fnum,'(" Madelung",T30,": ",G22.12)') engymad write(fnum,'(" xc potential",T30,": ",G22.12)') engyvxc if (spinpol) then write(fnum,'(" xc effective B-field",T30,": ",G22.12)') engybxc write(fnum,'(" external B-field",T30,": ",G22.12)') engybext end if write(fnum,'(" exchange",T30,": ",G22.12)') engyx write(fnum,'(" correlation",T30,": ",G22.12)') engyc if (dftu.ne.0) then write(fnum,'(" DFT+U",T30,": ",G22.12)') engydu end if if (stype.eq.3) then write(fnum,'(" electron entropic",T30,": ",G22.12)') engyts end if write(fnum,'(" total energy",T30,": ",G22.12)') engytot if (spinpol) then write(fnum,'(" (external B-field energy excluded from total)")') end if flush(fnum) end subroutine elk-7.2.42/src/PaxHeaders.21776/writechg.f900000644000000000000000000000013214061636517015060 xustar0030 mtime=1623670095.342102095 30 atime=1623670094.118103232 30 ctime=1623670095.342102095 elk-7.2.42/src/writechg.f900000644002504400250440000000225114061636517017115 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine writechg(fnum) use modmain implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,ia,ias ! write charges write(fnum,*) write(fnum,'("Charges :")') write(fnum,'(" core",T30,": ",G18.10)') chgcrtot write(fnum,'(" valence",T30,": ",G18.10)') chgval write(fnum,'(" interstitial",T30,": ",G18.10)') chgir write(fnum,'(" muffin-tins (core leakage)")') do is=1,nspecies write(fnum,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(fnum,'(" atom ",I4,T30,": ",G18.10," (",G18.10,")")') ia, & chgmt(ias),chgcrlk(ias) end do end do write(fnum,'(" total in muffin-tins",T30,": ",G18.10)') chgmttot if (chgexs.ne.0.d0) then write(fnum,'(" excess",T30,": ",G18.10)') chgexs end if write(fnum,'(" total calculated charge",T30,": ",G18.10)') chgcalc write(fnum,'(" total charge",T30,": ",G18.10)') chgtot write(fnum,'(" error",T30,": ",G18.10)') abs(chgtot-chgcalc) flush(fnum) end subroutine elk-7.2.42/src/PaxHeaders.21776/rbsht.f900000644000000000000000000000013214061636517014366 xustar0030 mtime=1623670095.343102095 30 atime=1623670094.119103231 30 ctime=1623670095.343102095 elk-7.2.42/src/rbsht.f900000644002504400250440000000127714061636517016432 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rbsht(nr,nri,rfmt1,rfmt2) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: rfmt1(*) real(8), intent(out) :: rfmt2(*) ! local variables integer i ! transform the inner part of the muffin-tin call dgemm('N','N',lmmaxi,nri,lmmaxi,1.d0,rbshti,lmmaxi,rfmt1,lmmaxi,0.d0, & rfmt2,lmmaxi) ! transform the outer part of the muffin-tin i=lmmaxi*nri+1 call dgemm('N','N',lmmaxo,nr-nri,lmmaxo,1.d0,rbshto,lmmaxo,rfmt1(i),lmmaxo, & 0.d0,rfmt2(i),lmmaxo) end subroutine elk-7.2.42/src/PaxHeaders.21776/rfsht.f900000644000000000000000000000013214061636517014372 xustar0030 mtime=1623670095.345102093 30 atime=1623670094.121103229 30 ctime=1623670095.345102093 elk-7.2.42/src/rfsht.f900000644002504400250440000000127714061636517016436 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rfsht(nr,nri,rfmt1,rfmt2) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: rfmt1(*) real(8), intent(out) :: rfmt2(*) ! local variables integer i ! transform the inner part of the muffin-tin call dgemm('N','N',lmmaxi,nri,lmmaxi,1.d0,rfshti,lmmaxi,rfmt1,lmmaxi,0.d0, & rfmt2,lmmaxi) ! transform the outer part of the muffin-tin i=lmmaxi*nri+1 call dgemm('N','N',lmmaxo,nr-nri,lmmaxo,1.d0,rfshto,lmmaxo,rfmt1(i),lmmaxo, & 0.d0,rfmt2(i),lmmaxo) end subroutine elk-7.2.42/src/PaxHeaders.21776/genlofr.f900000644000000000000000000000013214061636517014700 xustar0030 mtime=1623670095.346102092 30 atime=1623670094.122103228 30 ctime=1623670095.346102092 elk-7.2.42/src/genlofr.f900000644002504400250440000001122314061636517016734 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genlofr ! !INTERFACE: subroutine genlofr ! !USES: use modmain ! !DESCRIPTION: ! Generates the local-orbital radial functions. This is done by integrating ! the scalar relativistic Schr\"{o}dinger equation (or its energy deriatives) ! at the current linearisation energies using the spherical part of the ! Kohn-Sham potential. For each local-orbital, a linear combination of ! {\tt lorbord} radial functions is constructed such that its radial ! derivatives up to order ${\tt lorbord}-1$ are zero at the muffin-tin radius. ! This function is normalised and the radial Hamiltonian applied to it. The ! results are stored in the global array {\tt lofr}. ! ! !REVISION HISTORY: ! Created March 2003 (JKD) ! Copied to equivalent atoms, February 2010 (A. Kozhevnikov and JKD) !EOP !BOC implicit none ! local variables integer is,ia,ja,ias,jas integer nr,nri,ir,i integer ilo,jlo,io,jo integer nn,l,info real(8) e,t1 ! automatic arrays logical done(natmmax) integer ipiv(nplorb) real(8) vr(nrmtmax),fr(nrmtmax) real(8) p0(nrmtmax,lorbordmax),p1(nrmtmax) real(8) q0(nrmtmax),q1(nrmtmax),ep0(nrmtmax,lorbordmax) real(8) p0s(nrmtmax,nlomax),ep0s(nrmtmax,nlomax) real(8) xa(nplorb),ya(nplorb) real(8) a(nplorb,nplorb),b(nplorb) ! external functions real(8), external :: splint,polynm do is=1,nspecies nr=nrmt(is) nri=nrmti(is) done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) ! use spherical part of potential i=1 do ir=1,nri vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxi end do do ir=nri+1,nr vr(ir)=vsmt(i,ias)*y00 i=i+lmmaxo end do do ilo=1,nlorb(is) l=lorbl(ilo,is) do jo=1,lorbord(ilo,is) ! linearisation energy accounting for energy derivative e=lorbe(jo,ilo,ias)+dble(lorbdm(jo,ilo,is))*deapwlo ! integrate the radial Schrodinger equation call rschrodint(solsc,l,e,nr,rlmt(:,1,is),vr,nn,p0(:,jo),p1,q0,q1) ep0(1:nr,jo)=e*p0(1:nr,jo) ! normalise radial functions fr(1:nr)=p0(1:nr,jo)**2 t1=splint(nr,rlmt(:,1,is),fr) t1=1.d0/sqrt(abs(t1)) call dscal(nr,t1,p0(:,jo),1) call dscal(nr,t1,ep0(:,jo),1) ! set up the matrix of radial derivatives do i=1,nplorb ir=nr-nplorb+i xa(i)=rlmt(ir,1,is) ya(i)=p0(ir,jo)*rlmt(ir,-1,is) end do do io=1,lorbord(ilo,is) a(io,jo)=polynm(io-1,nplorb,xa,ya,rmt(is)) end do end do ! set up the target vector b(:)=0.d0 b(lorbord(ilo,is))=1.d0 call dgesv(lorbord(ilo,is),1,a,nplorb,ipiv,b,nplorb,info) if (info.ne.0) goto 10 ! generate linear superposition of radial functions p0s(:,ilo)=0.d0 ep0s(:,ilo)=0.d0 do io=1,lorbord(ilo,is) t1=b(io) call daxpy(nr,t1,p0(:,io),1,p0s(:,ilo),1) call daxpy(nr,t1,ep0(:,io),1,ep0s(:,ilo),1) end do ! normalise radial functions fr(1:nr)=p0s(1:nr,ilo)**2 t1=splint(nr,rlmt(:,1,is),fr) t1=1.d0/sqrt(abs(t1)) call dscal(nr,t1,p0s(:,ilo),1) call dscal(nr,t1,ep0s(:,ilo),1) ! subtract linear combination of previous local-orbitals with same l do jlo=1,ilo-1 if (lorbl(jlo,is).eq.l) then fr(1:nr)=p0s(1:nr,ilo)*p0s(1:nr,jlo) t1=-splint(nr,rlmt(:,1,is),fr) call daxpy(nr,t1,p0s(:,jlo),1,p0s(:,ilo),1) call daxpy(nr,t1,ep0s(:,jlo),1,ep0s(:,ilo),1) end if end do ! normalise radial functions again fr(1:nr)=p0s(1:nr,ilo)**2 t1=splint(nr,rlmt(:,1,is),fr) t1=abs(t1) if (t1.lt.1.d-25) goto 10 t1=1.d0/sqrt(t1) call dscal(nr,t1,p0s(:,ilo),1) call dscal(nr,t1,ep0s(:,ilo),1) ! divide by r and store in global array do ir=1,nr t1=rlmt(ir,-1,is) lofr(ir,1,ilo,ias)=t1*p0s(ir,ilo) lofr(ir,2,ilo,ias)=t1*ep0s(ir,ilo) end do end do done(ia)=.true. ! copy to equivalent atoms do ja=1,natoms(is) if ((.not.done(ja)).and.(eqatoms(ia,ja,is))) then jas=idxas(ja,is) do ilo=1,nlorb(is) call dcopy(nr,lofr(:,1,ilo,ias),1,lofr(:,1,ilo,jas),1) call dcopy(nr,lofr(:,2,ilo,ias),1,lofr(:,2,ilo,jas),1) end do done(ja)=.true. end if end do ! end loop over atoms and species end do end do return 10 continue write(*,*) write(*,'("Error(genlofr): degenerate local-orbital radial functions")') write(*,'(" for species ",I4)') is write(*,'(" atom ",I4)') ia write(*,'(" and local-orbital ",I4)') ilo write(*,*) stop end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rotrfmt.f900000644000000000000000000000013014061636517014737 xustar0029 mtime=1623670095.34810209 30 atime=1623670094.124103226 29 ctime=1623670095.34810209 elk-7.2.42/src/rotrfmt.f900000644002504400250440000001443114061636517017001 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rotrfmt(rot,nr,nri,rfmt1,rfmt2) use modmain implicit none ! arguments real(8), intent(in) :: rot(3,3) integer, intent(in) :: nr,nri real(8), intent(in) :: rfmt1(*) real(8), intent(out) :: rfmt2(*) ! local variables integer i ! inner part of muffin-tin call rotrflm(rot,lmaxi,nri,lmmaxi,rfmt1,rfmt2) ! outer part of muffin-tin i=lmmaxi*nri+1 call rotrflm(rot,lmaxo,nr-nri,lmmaxo,rfmt1(i),rfmt2(i)) return contains !BOP ! !ROUTINE: rotrflm ! !INTERFACE: subroutine rotrflm(rot,lmax,n,ld,rflm1,rflm2) ! !INPUT/OUTPUT PARAMETERS: ! rot : rotation matrix (in,real(3,3)) ! lmax : maximum angular momentum (in,integer) ! n : number of functions to rotate (in,integer) ! ld : leading dimension (in,integer) ! rflm1 : coefficients of the real spherical harmonic expansion for each ! function (in,real(ld,n)) ! rflm2 : coefficients of rotated functions (out,complex(ld,n)) ! !DESCRIPTION: ! Rotates a set of real functions ! $$ f_i({\bf r})=\sum_{lm}f_{lm}^iR_{lm}(\hat{\bf r}) $$ ! for all $i$, given the coefficients $f_{lm}^i$ and a rotation matrix $R$. ! This is done by first the computing the Euler angles $(\alpha,\beta,\gamma)$ ! of $R^{-1}$ (see routine {\tt roteuler}) and then applying the spherical ! harmonic rotation matrix generated by the routine {\tt rlmrot}. ! ! !REVISION HISTORY: ! Created December 2008 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rot(3,3) integer, intent(in) :: lmax,n,ld real(8), intent(in) :: rflm1(ld,*) real(8), intent(out) :: rflm2(ld,*) ! local variables integer l,lm,nm,p real(8) det,rotp(3,3) real(8) ang(3),angi(3) ! automatic arrays real(8) d(ld,ld) if (lmax.lt.0) then write(*,*) write(*,'("Error(rotrflm): lmax < 0 : ",I8)') lmax write(*,*) stop end if if (n.eq.0) return if (n.lt.0) then write(*,*) write(*,'("Error(rotrflm): n < 0 : ",I8)') n write(*,*) stop end if ! find the determinant det=rot(1,1)*(rot(2,2)*rot(3,3)-rot(3,2)*rot(2,3)) & +rot(2,1)*(rot(3,2)*rot(1,3)-rot(1,2)*rot(3,3)) & +rot(3,1)*(rot(1,2)*rot(2,3)-rot(2,2)*rot(1,3)) ! make the rotation proper p=1 if (det.lt.0.d0) p=-1 rotp(:,:)=dble(p)*rot(:,:) ! compute the Euler angles of the rotation matrix call roteuler(rotp,ang) ! inverse rotation: the function is to be rotated, not the spherical harmonics angi(1)=-ang(3) angi(2)=-ang(2) angi(3)=-ang(1) ! determine the rotation matrix for real spherical harmonics call rlmrot(p,angi,lmax,ld,d) ! apply rotation matrix do l=0,lmax nm=2*l+1 lm=l**2+1 call dgemm('N','N',nm,n,nm,1.d0,d(lm,lm),ld,rflm1(lm,1),ld,0.d0,rflm2(lm,1), & ld) end do end subroutine !EOC !BOP ! !ROUTINE: rlmrot ! !INTERFACE: subroutine rlmrot(p,ang,lmax,ld,d) ! !INPUT/OUTPUT PARAMETERS: ! p : if p=-1 then the rotation matrix is improper (in,integer) ! ang : Euler angles; alpha, beta, gamma (in,real(3)) ! lmax : maximum angular momentum (in,integer) ! ld : leading dimension (in,integer) ! d : real spherical harmonic rotation matrix (out,real(ld,*)) ! !DESCRIPTION: ! Returns the rotation matrix in the basis of real spherical harmonics given ! the three Euler angles, $(\alpha,\beta,\gamma)$, and the parity, $p$, of the ! rotation. The matrix is determined using the formula of V. V. Nechaev, ! [{\it J. Struct. Chem.} {\bf 35}, 115 (1994)], suitably modified for our ! definition of the real spherical harmonics ($m_1>0$, $m_2>0$): ! \begin{align*} ! &\Delta^l_{00}=d^l_{00}, \\ ! &\Delta^l_{m_10}=\sqrt{2}\,(-1)^{m_1}d^l_{0m_1}\cos(m_1\alpha), \\ ! &\Delta^l_{0m_2}=\sqrt{2}\,(-1)^{m_2}d^l_{m_20}\cos(m_2\gamma), \\ ! &\Delta^l_{-m_10}=-\sqrt{2}\,d^l_{0m_1}\sin(m_1\alpha), \\ ! &\Delta^l_{0-m_2}=\sqrt{2}\,d^l_{m_20}\sin(m_2\gamma), \\ ! &\Delta^l_{m_1m_2}=(-1)^{m_1}(-1)^{m_2}\{\cos(m_1\alpha)\cos(m_2\gamma) ! [d_A+d_B]-\sin(m_1\alpha)\sin(m_2\gamma)[d_A-d_B]\}, \\ ! &\Delta^l_{m_1-m_2}=(-1)^{m_1}\{\sin(m_1\alpha)\cos(m_2\gamma) ! [d_A-d_B]+\cos(m_1\alpha)\sin(m_2\gamma)[d_A+d_B]\}, \\ ! &\Delta^l_{-m_1m_2}=-(-1)^{m_2}\{\sin(m_1\alpha)\cos(m_2\gamma) ! [d_A+d_B]+\cos(m_1\alpha)\sin(m_2\gamma)[d_A-d_B]\}, \\ ! &\Delta^l_{-m_1-m_2}=\cos(m_1\alpha)\cos(m_2\gamma) ! [d_A-d_B]-\sin(m_1\alpha)\sin(m_2\gamma)[d_A+d_B], ! \end{align*} ! where $d_A\equiv d^l_{-m_1-m_2}$, $d_B\equiv(-1)^{m_1}d^l_{m_1-m_2}$ and ! $d$ is the rotation matrix about the $y$-axis for complex spherical ! harmonics. See the routines {\tt genrlm}, {\tt roteuler} and {\tt ylmroty}. ! ! !REVISION HISTORY: ! Created December 2008 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: p real(8), intent(in) :: ang(3) integer, intent(in) :: lmax,ld real(8), intent(out) :: d(ld,*) ! local variables integer l,m1,m2,lm0,lm1,lm2 real(8), parameter :: sqtwo=1.4142135623730950488d0 real(8) s1,s2,t1,t2,t3,t4,t5,t6,t7,t8 ! automatic arrays integer lmi(-lmax:lmax) real(8) ca(lmax),sa(lmax) real(8) cg(lmax),sg(lmax) real(8) dy(ld,ld) ! generate the complex spherical harmonic rotation matrix about the y-axis call ylmroty(ang(2),lmax,ld,dy) do m1=1,lmax ca(m1)=cos(m1*ang(1)) sa(m1)=sin(m1*ang(1)) cg(m1)=cos(m1*ang(3)) sg(m1)=sin(m1*ang(3)) end do lm1=0 do l=0,lmax do m1=-l,l lm1=lm1+1 lmi(m1)=lm1 end do lm0=lmi(0) d(lm0,lm0)=dy(lm0,lm0) do m1=1,l if (mod(m1,2).eq.0) then s1=1.d0 else s1=-1.d0 end if t1=sqtwo*dy(lm0,lmi(m1)) t2=sqtwo*dy(lmi(m1),lm0) d(lmi(m1),lm0)=s1*t1*ca(m1) d(lm0,lmi(m1))=s1*t2*cg(m1) d(lmi(-m1),lm0)=-t1*sa(m1) d(lm0,lmi(-m1))=t2*sg(m1) do m2=1,l if (mod(m2,2).eq.0) then s2=1.d0 else s2=-1.d0 end if t1=ca(m1)*cg(m2) t2=sa(m1)*sg(m2) t3=sa(m1)*cg(m2) t4=ca(m1)*sg(m2) t5=dy(lmi(-m1),lmi(-m2)) t6=s1*dy(lmi(m1),lmi(-m2)) t7=t5+t6 t8=t5-t6 d(lmi(m1),lmi(m2))=s1*s2*(t1*t7-t2*t8) d(lmi(m1),lmi(-m2))=s1*(t3*t8+t4*t7) d(lmi(-m1),lmi(m2))=-s2*(t3*t7+t4*t8) d(lmi(-m1),lmi(-m2))=t1*t8-t2*t7 end do end do end do ! apply inversion if required if (p.eq.-1) then do l=1,lmax,2 lm1=l**2+1 lm2=lm1+2*l d(lm1:lm2,lm1:lm2)=-d(lm1:lm2,lm1:lm2) end do end if end subroutine !EOC end subroutine elk-7.2.42/src/PaxHeaders.21776/zfmtint.f900000644000000000000000000000013214061636517014737 xustar0030 mtime=1623670095.349102089 30 atime=1623670094.126103224 30 ctime=1623670095.349102089 elk-7.2.42/src/zfmtint.f900000644002504400250440000000112214061636517016770 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure complex(8) function zfmtint(nr,nri,wr,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) complex(8), intent(in) :: zfmt(*) ! local variables integer ir,i zfmtint=0.d0 i=1 do ir=1,nri zfmtint=zfmtint+wr(ir)*zfmt(i) i=i+lmmaxi end do do ir=nri+1,nr zfmtint=zfmtint+wr(ir)*zfmt(i) i=i+lmmaxo end do zfmtint=fourpi*y00*zfmtint end function elk-7.2.42/src/PaxHeaders.21776/zftzf.f900000644000000000000000000000013214061636517014407 xustar0030 mtime=1623670095.351102087 30 atime=1623670094.128103222 30 ctime=1623670095.351102087 elk-7.2.42/src/zftzf.f900000644002504400250440000000526714061636517016456 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zftzf(ngp,jlgpr,ylmgp,ld,sfacgp,zfmt,zfir,zfgp) use modmain implicit none ! arguments integer, intent(in) :: ngp real(8), intent(in) :: jlgpr(njcmax,nspecies,ngp) complex(8), intent(in) :: ylmgp(lmmaxo,ngp) integer, intent(in) :: ld complex(8), intent(in) :: sfacgp(ld,natmtot) complex(8), intent(in) :: zfmt(npcmtmax,natmtot),zfir(ngtc) complex(8), intent(out) :: zfgp(ngp) ! local variables integer is,ia,ias,ig integer nrc,nrci,irco,irc integer l,m,lm,i,j real(8) t0,y0 complex(8) zsm,z1,z2 ! automatic arrays complex(8) ylm(lmmaxo),zfft(ngtc) !-----------------------------------! ! interstitial contribution ! !-----------------------------------! ! multiply by coarse characteristic function zfft(:)=zfir(:)*cfrc(:) ! Fourier transform to coarse G-grid call zfftifc(3,ngdgc,-1,zfft) zfgp(1:ngp)=zfft(igfc(1:ngp)) !---------------------------------! ! muffin-tin contribution ! !---------------------------------! t0=fourpi/omega y0=t0*y00 do ig=1,ngp lm=1 do l=1,lmaxo z1=t0*zilc(l) do m=-l,l lm=lm+1 ylm(lm)=z1*ylmgp(lm,ig) end do end do do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) irco=nrci+1 do ia=1,natoms(is) ias=idxas(ia,is) zsm=0.d0 i=1 j=1 ! inner part of muffin-tin if (lmaxi.eq.1) then do irc=1,nrci zsm=zsm+wrcmt(irc,is)*(jlgpr(j,is,ig)*zfmt(i,ias)*y0+jlgpr(j+1,is,ig)& *(zfmt(i+1,ias)*ylm(2)+zfmt(i+2,ias)*ylm(3)+zfmt(i+3,ias)*ylm(4))) i=i+4 j=j+2 end do else do irc=1,nrci z1=jlgpr(j,is,ig)*zfmt(i,ias)*y0 i=i+1 j=j+1 lm=1 do l=1,lmaxi lm=lm+1 z2=zfmt(i,ias)*ylm(lm) i=i+1 do m=1-l,l lm=lm+1 z2=z2+zfmt(i,ias)*ylm(lm) i=i+1 end do z1=z1+jlgpr(j,is,ig)*z2 j=j+1 end do zsm=zsm+wrcmt(irc,is)*z1 end do end if ! outer part of muffin-tin do irc=irco,nrc z1=jlgpr(j,is,ig)*zfmt(i,ias)*y0 i=i+1 j=j+1 lm=1 do l=1,lmaxo lm=lm+1 z2=zfmt(i,ias)*ylm(lm) i=i+1 do m=1-l,l lm=lm+1 z2=z2+zfmt(i,ias)*ylm(lm) i=i+1 end do z1=z1+jlgpr(j,is,ig)*z2 j=j+1 end do zsm=zsm+wrcmt(irc,is)*z1 end do zfgp(ig)=zfgp(ig)+conjg(sfacgp(ig,ias))*zsm end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/genpmatk.f900000644000000000000000000000013214061636517015052 xustar0030 mtime=1623670095.352102086 30 atime=1623670094.129103221 30 ctime=1623670095.352102086 elk-7.2.42/src/genpmatk.f900000644002504400250440000001352014061636517017110 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genpmatk ! !INTERFACE: subroutine genpmatk(ngp,igpig,vgpc,wfmt,wfgp,pmat) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ngp : number of G+p-vectors (in,integer(nspnfv)) ! igpig : index from G+p-vectors to G-vectors (in,integer(ngkmax,nspnfv)) ! vgpc : G+p-vectors in Cartesian coordinates (in,real(3,ngkmax,nspnfv)) ! wfmt : muffin-tin wavefunction in spherical harmonics ! (in,complex(npcmtmax,natmtot,nspinor,nstsv)) ! wfgp : interstitial wavefunction in plane wave basis ! (in,complex(ngkmax,nspinor,nstsv)) ! pmat : momentum matrix elements (out,complex(nstsv,nstsv,3)) ! !DESCRIPTION: ! Calculates the momentum matrix elements ! $$ P_{ij}=\int d^3r\,\Psi_{i{\bf k}}^*({\bf r})\left(-i\nabla ! +\frac{1}{4c^2}\left[\vec{\sigma}\times\nabla V_s({\bf r})\right]\right) ! \Psi_{j{\bf k}}({\bf r}), $$ ! where $V_s$ is the Kohn-Sham effective potential. The second term in the ! brackets is only calculated if spin-orbit coupling is enabled. See Rathgen ! and Katsnelson, {\it Physica Scripta} {\bf T109}, 170 (2004). ! ! !REVISION HISTORY: ! Created November 2003 (Sharma) ! Fixed bug found by Juergen Spitaler, September 2006 (JKD) ! Added spin-orbit correction, July 2010 (JKD) ! Fixed bug found by Koichi Kitahara, January 2014 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) real(8), intent(in) :: vgpc(3,ngkmax,nspnfv) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(in) :: wfgp(ngkmax,nspinor,nstsv) complex(8), intent(out) :: pmat(nstsv,nstsv,3) ! local variables integer ist,jst,ispn,jspn integer is,ia,ias integer nrc,nrci,npc integer igp,ifg,i real(8) cso complex(8) z1,z2,z11,z12,z21,z22,z31,z32 ! automatic arrays real(8) rfmt(npcmtmax) complex(8) gwfmt(npcmtmax,3,nspinor),gvmt(npcmtmax,3) complex(8) zfmt1(npcmtmax,nspinor),zfmt2(npcmtmax,3,nspinor) complex(8) z(ngkmax) ! allocatable arrays complex(8), allocatable :: gwfir(:,:) ! external functions complex(8), external :: zdotc ! coefficient of spin-orbit coupling cso=1.d0/(4.d0*solsc**2) ! zero the momentum matrix elements array pmat(:,:,:)=0.d0 !---------------------------------! ! muffin-tin contribution ! !---------------------------------! do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) ! compute gradient of potential for spin-orbit correction if required if (spinorb) then call rfmtftoc(nrc,nrci,vsmt(:,ias),rfmt) !********** out of k-loop call rtozfmt(nrc,nrci,rfmt,zfmt1) call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is),zfmt1,npcmtmax,gvmt) ! convert to spherical coordinates do i=1,3 zfmt1(1:npc,1)=gvmt(1:npc,i) call zbsht(nrc,nrci,zfmt1,gvmt(:,i)) end do end if do jst=1,nstsv do ispn=1,nspinor ! compute the gradient of the wavefunction call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is), & wfmt(:,ias,ispn,jst),npcmtmax,gwfmt(:,:,ispn)) end do ! add spin-orbit correction if required if (spinorb) then do ispn=1,nspinor ! convert wavefunction to spherical coordinates call zbsht(nrc,nrci,wfmt(:,ias,ispn,jst),zfmt1(:,ispn)) end do ! compute i σ x (grad V(r)) φ(r) do i=1,npc z1=zfmt1(i,1) z1=cmplx(-aimag(z1),dble(z1),8) z2=zfmt1(i,2) z2=cmplx(-aimag(z2),dble(z2),8) z11=gvmt(i,1)*z1; z12=gvmt(i,1)*z2 z21=gvmt(i,2)*z1; z22=gvmt(i,2)*z2 z31=gvmt(i,3)*z1; z32=gvmt(i,3)*z2 zfmt2(i,1,1)=cmplx(aimag(z32),-dble(z32),8)-z21 zfmt2(i,1,2)=cmplx(-aimag(z31),dble(z31),8)+z22 zfmt2(i,2,1)=z11-z32 zfmt2(i,2,2)=-z12-z31 zfmt2(i,3,1)=cmplx(-aimag(z12),dble(z12),8)+z22 zfmt2(i,3,2)=cmplx(aimag(z11),-dble(z11),8)+z21 end do ! convert to spherical harmonics and add to wavefunction gradient do ispn=1,nspinor do i=1,3 call zfsht(nrc,nrci,zfmt2(:,i,ispn),zfmt1) gwfmt(1:npc,i,ispn)=gwfmt(1:npc,i,ispn)+cso*zfmt1(1:npc,1) end do end do end if do i=1,3 do ispn=1,nspinor ! apply the radial integral weights call zfmtwr(nrc,nrci,wrcmt(:,is),gwfmt(:,i,ispn)) ! compute the overlaps do ist=1,jst pmat(ist,jst,i)=pmat(ist,jst,i)+zdotc(npc,wfmt(:,ias,ispn,ist),1, & gwfmt(:,i,ispn),1) end do end do end do end do end do end do !-----------------------------------! ! interstitial contribution ! !-----------------------------------! allocate(gwfir(ngtot,3)) do jst=1,nstsv do ispn=1,nspinor jspn=jspnfv(ispn) ! compute the gradient gwfir(:,:)=0.d0 do igp=1,ngp(jspn) ifg=igfft(igpig(igp,jspn)) z1=wfgp(igp,ispn,jst) gwfir(ifg,1:3)=vgpc(1:3,igp,jspn)*cmplx(-aimag(z1),dble(z1),8) end do do i=1,3 ! Fourier transform to real-space call zfftifc(3,ngridg,1,gwfir(:,i)) ! multiply by characteristic function gwfir(:,i)=gwfir(:,i)*cfunir(:) ! Fourier transform back to G-space call zfftifc(3,ngridg,-1,gwfir(:,i)) end do ! find the overlaps do i=1,3 do igp=1,ngp(jspn) ifg=igfft(igpig(igp,jspn)) z(igp)=gwfir(ifg,i) end do do ist=1,jst pmat(ist,jst,i)=pmat(ist,jst,i)+zdotc(ngp(jspn),wfgp(:,ispn,ist),1,z,1) end do end do end do end do deallocate(gwfir) ! multiply by -i and set lower triangular part do i=1,3 do jst=1,nstsv do ist=1,jst z1=pmat(ist,jst,i) z1=cmplx(aimag(z1),-dble(z1),8) pmat(ist,jst,i)=z1 pmat(jst,ist,i)=conjg(z1) end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rvfcross.f900000644000000000000000000000013114061636517015112 xustar0030 mtime=1623670095.354102084 29 atime=1623670094.13110322 30 ctime=1623670095.354102084 elk-7.2.42/src/rvfcross.f900000644002504400250440000000420614061636517017152 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rvfcross ! !INTERFACE: subroutine rvfcross(rvfmt1,rvfir1,rvfmt2,rvfir2,rvfmt3,rvfir3) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! rvfmt1 : first input muffin-tin field (in,real(npmtmax,natmtot,3)) ! rvfir1 : first input interstitial field (in,real(ngtot,3)) ! rvfmt2 : second input muffin-tin field (in,real(npmtmax,natmtot,3)) ! rvfir2 : second input interstitial field (in,real(ngtot,3)) ! rvfmt3 : output muffin-tin field (out,real(npmtmax,natmtot,3)) ! rvfir3 : output interstitial field (out,real(ngtot,3)) ! !DESCRIPTION: ! Given two real vector fields, ${\bf f}_1$ and ${\bf f}_2$, defined over the ! entire unit cell, this routine computes the local cross product ! $$ {\bf f}_3({\bf r})\equiv{\bf f}_1({\bf r})\times{\bf f}_2({\bf r}). $$ ! ! !REVISION HISTORY: ! Created February 2007 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rvfmt1(npmtmax,natmtot,3),rvfir1(ngtot,3) real(8), intent(in) :: rvfmt2(npmtmax,natmtot,3),rvfir2(ngtot,3) real(8), intent(out) :: rvfmt3(npmtmax,natmtot,3),rvfir3(ngtot,3) ! local variables integer is,ias,nr,nri,ir,i real(8) v1(3),v2(3),v3(3) ! allocatable arrays real(8), allocatable :: rvfmt4(:,:),rvfmt5(:,:) !---------------------------! ! muffin-tin region ! !---------------------------! allocate(rvfmt4(npmtmax,3),rvfmt5(npmtmax,3)) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) do i=1,3 call rbsht(nr,nri,rvfmt1(:,ias,i),rvfmt4(:,i)) call rbsht(nr,nri,rvfmt2(:,ias,i),rvfmt5(:,i)) end do do i=1,npmt(is) v1(:)=rvfmt4(i,:) v2(:)=rvfmt5(i,:) call r3cross(v1,v2,v3) rvfmt4(i,:)=v3(:) end do do i=1,3 call rfsht(nr,nri,rvfmt4(:,i),rvfmt3(:,ias,i)) end do end do deallocate(rvfmt4,rvfmt5) !-----------------------------! ! interstitial region ! !-----------------------------! do ir=1,ngtot v1(:)=rvfir1(ir,:) v2(:)=rvfir2(ir,:) call r3cross(v1,v2,v3) rvfir3(ir,:)=v3(:) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeinfo.f900000644000000000000000000000013214061636517015252 xustar0030 mtime=1623670095.355102083 30 atime=1623670094.133103218 30 ctime=1623670095.355102083 elk-7.2.42/src/writeinfo.f900000644002504400250440000003271714061636517017321 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2009 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writeinfo ! !INTERFACE: subroutine writeinfo(fnum) ! !USES: use modmain use moddftu use modrdm use modxcifc use modmpi ! !INPUT/OUTPUT PARAMETERS: ! fnum : unit specifier for INFO.OUT file (in,integer) ! !DESCRIPTION: ! Outputs basic information about the run to the file {\tt INFO.OUT}. Does not ! close the file afterwards. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) ! Updated with DFT+U quantities July 2009 (FC) !EOP !BOC implicit none ! arguments integer fnum ! local variables integer i,is,ia,k,l character(10) dat,tim write(fnum,'("+----------------------------+")') write(fnum,'("| Elk version ",I1.1,".",I1.1,".",I2.2," started |")') version write(fnum,'("+----------------------------+")') call date_and_time(date=dat,time=tim) write(fnum,*) write(fnum,'("Date (YYYY-MM-DD) : ",A4,"-",A2,"-",A2)') dat(1:4),dat(5:6), & dat(7:8) write(fnum,'("Time (hh:mm:ss) : ",A2,":",A2,":",A2)') tim(1:2),tim(3:4), & tim(5:6) if (np_mpi.gt.1) then write(fnum,*) write(fnum,'("Using MPI, number of processes : ",I8)') np_mpi end if if (notelns.gt.0) then write(fnum,*) write(fnum,'("Notes :")') do i=1,notelns write(fnum,'(A)') trim(notes(i)) end do end if write(fnum,*) write(fnum,'("All units are atomic (Hartree, Bohr, etc.)")') write(fnum,*) select case(task) case(2,3) if (trdstate) then write(fnum,'("+---------------------------------------------------+")') write(fnum,'("| Geometry optimisation run resuming from STATE.OUT |")') write(fnum,'("+---------------------------------------------------+")') else write(fnum,'("+------------------------------------------------------+")') write(fnum,'("| Geometry optimisation starting from atomic densities |")') write(fnum,'("+------------------------------------------------------+")') end if case(5) write(fnum,'("+-------------------------------+")') write(fnum,'("| Ground-state Hartree-Fock run |")') write(fnum,'("+-------------------------------+")') case(300) write(fnum,'("+----------------------------------------------+")') write(fnum,'("| Reduced density matrix functional theory run |")') write(fnum,'("+----------------------------------------------+")') case default if (trdstate) then write(fnum,'("+------------------------------------------+")') write(fnum,'("| Ground-state run resuming from STATE.OUT |")') write(fnum,'("+------------------------------------------+")') else write(fnum,'("+-------------------------------------------------+")') write(fnum,'("| Ground-state run starting from atomic densities |")') write(fnum,'("+-------------------------------------------------+")') end if end select write(fnum,*) write(fnum,'("Lattice vectors :")') write(fnum,'(3G18.10)') avec(1,1),avec(2,1),avec(3,1) write(fnum,'(3G18.10)') avec(1,2),avec(2,2),avec(3,2) write(fnum,'(3G18.10)') avec(1,3),avec(2,3),avec(3,3) write(fnum,*) write(fnum,'("Reciprocal lattice vectors :")') write(fnum,'(3G18.10)') bvec(1,1),bvec(2,1),bvec(3,1) write(fnum,'(3G18.10)') bvec(1,2),bvec(2,2),bvec(3,2) write(fnum,'(3G18.10)') bvec(1,3),bvec(2,3),bvec(3,3) write(fnum,*) write(fnum,'("Unit cell volume : ",G18.10)') omega write(fnum,'("Brillouin zone volume : ",G18.10)') omegabz write(fnum,*) write(fnum,'("Muffin-tin inner radius fraction : ",G18.10)') fracinr do is=1,nspecies write(fnum,*) write(fnum,'("Species : ",I4," (",A,")")') is,trim(spsymb(is)) write(fnum,'(" parameters loaded from : ",A)') trim(spfname(is)) write(fnum,'(" name : ",A)') trim(spname(is)) write(fnum,'(" nuclear charge : ",G18.10)') spzn(is) write(fnum,'(" electronic charge : ",G18.10)') spze(is) write(fnum,'(" atomic mass : ",G18.10)') spmass(is) write(fnum,'(" muffin-tin radius : ",G18.10)') rmt(is) write(fnum,'(" number of radial points in muffin-tin : ",I6)') nrmt(is) write(fnum,'(" number on inner part of muffin-tin : ",I6)') nrmti(is) write(fnum,'(" atomic positions (lattice), magnetic fields (Cartesian) :")') do ia=1,natoms(is) write(fnum,'(I4," : ",3F12.8," ",3F12.8)') ia,atposl(:,ia,is), & bfcmt(:,ia,is) end do end do write(fnum,*) write(fnum,'("Total number of atoms per unit cell : ",I4)') natmtot write(fnum,*) write(fnum,'("Spin treatment :")') if (spinpol) then write(fnum,'(" spin-polarised")') else write(fnum,'(" spin-unpolarised")') end if if (spinorb) then write(fnum,'(" spin-orbit coupling")') end if if (spincore) then write(fnum,'(" spin-polarised core states")') end if if (spinpol) then write(fnum,'(" global magnetic field (Cartesian) : ",3G18.10)') bfieldc if (ncmag) then write(fnum,'(" non-collinear magnetisation")') else write(fnum,'(" collinear magnetisation in z-direction")') end if end if if (spinsprl) then write(fnum,'(" spin-spiral state assumed")') write(fnum,'(" q-vector (lattice) : ",3G18.10)') vqlss write(fnum,'(" q-vector (Cartesian) : ",3G18.10)') vqcss write(fnum,'(" q-vector length : ",G18.10)') sqrt(vqcss(1)**2 & +vqcss(2)**2+vqcss(3)**2) end if if (fsmtype.ne.0) then write(fnum,'(" fixed spin moment (FSM) calculation, type : ",I4)') fsmtype if (fsmtype.lt.0) then write(fnum,'(" only moment direction is fixed")') end if end if if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then write(fnum,'(" fixing total moment to (Cartesian) :")') write(fnum,'(" ",3G18.10)') momfix end if if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then write(fnum,'(" fixing local muffin-tin moments to (Cartesian) :")') do is=1,nspecies write(fnum,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) write(fnum,'(" ",I4,3G18.10)') ia,mommtfix(:,ia,is) end do end do end if if (tssxc) then write(fnum,'(" scaled spin exchange-correlation enabled")') write(fnum,'(" scaling factor : ",G18.10)') sxcscf end if if (ftmtype.ne.0) then write(fnum,*) write(fnum,'(" fixed tensor moment (FTM) calculation, type : ",I4)') ftmtype end if if (tefield) then write(fnum,*) write(fnum,'("Constant electric field applied across unit cell")') write(fnum,'(" field strength : ",3G18.10)') efieldc end if if (tafield) then write(fnum,*) write(fnum,'("Constant A-field applied across unit cell")') write(fnum,'(" field strength : ",3G18.10)') afieldc end if write(fnum,*) write(fnum,'("Number of Bravais lattice symmetries : ",I4)') nsymlat write(fnum,'("Number of crystal symmetries : ",I4)') nsymcrys if (tsyminv) then write(fnum,'("Crystal has inversion symmetry")') else write(fnum,'("Crystal has no inversion symmetry")') end if if (tefvr) then write(fnum,'("Real symmetric eigensolver will be used")') else write(fnum,'("Complex Hermitian eigensolver will be used")') end if write(fnum,*) if (autokpt) then write(fnum,'("Radius of sphere used to determine k-point grid density : ",& &G18.10)') radkpt end if write(fnum,'("k-point grid : ",3I6)') ngridk write(fnum,'("k-point offset : ",3G18.10)') vkloff if (reducek.eq.0) then write(fnum,'("k-point set is not reduced")') else if (reducek.eq.1) then write(fnum,'("k-point set is reduced with full crystal symmetry group")') else if (reducek.eq.2) then write(fnum,'("k-point set is reduced with symmorphic symmetries only")') else write(*,*) write(*,'("Error(writeinfo): undefined k-point reduction type : ",I8)') & reducek write(*,*) stop end if write(fnum,'("Total number of k-points : ",I8)') nkpt write(fnum,*) write(fnum,'("Muffin-tin radius times maximum |G+k| : ",G18.10)') rgkmax select case(isgkmax) case(:-4) write(fnum,'(" using largest radius")') case(-3) write(fnum,'(" using smallest radius")') case(-2) write(fnum,'(" using gkmax = rgkmax / 2")') case(-1) write(fnum,'(" using average radius")') case(1:) if (isgkmax.le.nspecies) then write(fnum,'(" using radius of species ",I4," (",A,")")') isgkmax, & trim(spsymb(isgkmax)) else write(*,*) write(*,'("Error(writeinfo): isgkmax > nspecies : ",2I8)') isgkmax,nspecies write(*,*) stop end if end select write(fnum,'("Maximum |G+k| for APW functions : ",G18.10)') gkmax write(fnum,'("Maximum (1/2)|G+k|² : ",G18.10)') 0.5d0*gkmax**2 write(fnum,'("Maximum |G| for potential and density : ",G18.10)') gmaxvr write(fnum,'("Constant for pseudocharge density : ",I4)') npsd write(fnum,'("Radial integration step length : ",I4)') lradstp write(fnum,*) write(fnum,'("G-vector grid sizes : ",3I6)') ngridg(:) write(fnum,'("Number of G-vectors : ",I8)') ngvec write(fnum,*) write(fnum,'("Maximum angular momentum used for")') write(fnum,'(" APW functions : ",I4)') lmaxapw write(fnum,'(" outer part of muffin-tin : ",I4)') lmaxo write(fnum,'(" inner part of muffin-tin : ",I4)') lmaxi write(fnum,*) write(fnum,'("Total nuclear charge : ",G18.10)') chgzn write(fnum,'("Total core charge : ",G18.10)') chgcrtot write(fnum,'("Total valence charge : ",G18.10)') chgval write(fnum,'("Total excess charge : ",G18.10)') chgexs write(fnum,'("Total electronic charge : ",G18.10)') chgtot write(fnum,*) write(fnum,'("Effective Wigner radius, rₛ : ",G18.10)') rwigner write(fnum,*) write(fnum,'("Number of empty states : ",I4)') nempty write(fnum,'("Total number of valence states : ",I4)') nstsv write(fnum,'("Total number of core states : ",I4)') nstcr write(fnum,*) if (lorbcnd) then write(fnum,'("Conduction state local-orbitals added automatically")') end if write(fnum,'("Total number of local-orbitals : ",I4)') nlotot if (tefvit) then write(fnum,*) write(fnum,'("Using iterative diagonalisation for the first-variational & &eigenvalue equation")') end if write(fnum,*) if (task.eq.5) then write(fnum,'("Hartree-Fock calculation using Kohn-Sham states")') if (hybrid) then write(fnum,'(" hybrid functional, coefficient : ",G18.10)') hybridc end if end if if (xctype(1).eq.100) then write(fnum,'("Using Libxc version ",I2.2,".",I2.2,".",I2.2)') libxcv(:) end if if (xctype(1).lt.0) then write(fnum,'("Optimised effective potential (OEP) and exact exchange (EXX)")') write(fnum,'(" Phys. Rev. B 53, 7024 (1996)")') write(fnum,'("Correlation functional : ",3I6)') abs(xctype(1)),xctype(2:3) write(fnum,'(" ",A)') trim(xcdescr) else write(fnum,'("Exchange-correlation functional : ",3I6)') xctype(:) write(fnum,'(" ",A)') trim(xcdescr) end if if (xcgrad.eq.0) then write(fnum,'(" Local density approximation (LDA)")') else if ((xcgrad.eq.1).or.(xcgrad.eq.2)) then write(fnum,'(" Generalised gradient approximation (GGA)")') else if (xcgrad.eq.3) then write(fnum,'(" meta-GGA; using kinetic energy density")') end if if (dftu.ne.0) then write(fnum,*) write(fnum,'("DFT+U calculation")') if (dftu.eq.1) then write(fnum,'(" fully localised limit (FLL)")') write(fnum,'(" see Phys. Rev. B 52, R5467 (1995)")') else if (dftu.eq.2) then write(fnum,'(" around mean field (AMF)")') write(fnum,'(" see Phys. Rev. B 49, 14211 (1994)")') else if (dftu.eq.3) then write(fnum,'(" interpolation between FLL and AMF")') write(fnum,'(" see Phys. Rev. B 67, 153106 (2003)")') else write(*,*) write(*,'("Error(writeinfo): dftu not defined : ",I8)') dftu write(*,*) stop end if do i=1,ndftu is=idftu(1,i) l=idftu(2,i) if (inpdftu.eq.1) then write(fnum,'(" species : ",I4," (",A,")",", l = ",I2,", U = ",F12.8, & &", J = ",F12.8)') is,trim(spsymb(is)),l,ujdu(1,i),ujdu(2,i) else if (inpdftu.eq.2) then write(fnum,'(" species : ",I4," (",A,")",", l = ",I2)') is, & trim(spsymb(is)),l write(fnum,'(" Slater integrals are provided as input")') do k=0,2*l,2 write(fnum,'(" F^(",I1,") = ",F12.8)') k,fdu(k,i) end do else if (inpdftu.eq.3) then write(fnum,'(" species : ",I4," (",A,")",", l = ",I2)') is, & trim(spsymb(is)),l write(fnum,'(" Racah parameters are provided as input")') do k=0,l write(fnum,'(" E^(",I1,") = ",F12.8)') k,edu(k,i) end do else if (inpdftu.eq.4) then write(fnum,'(" species : ",I4," (",A,")",", l = ",I2)') is, & trim(spsymb(is)),l write(fnum,'(" Slater integrals are calculated by means of Yukawa & &potential")') write(fnum,'(" Yukawa potential screening length (a.u^-1) : ",F12.8)') & lambdadu(i) else if(inpdftu.eq.5) then write(fnum,'(" species : ",I4," (",A,")",", l = ",I2)') is, & trim(spsymb(is)),l write(fnum,'(" Slater integrals are calculated by means of Yukawa & &potential")') write(fnum,'(" Yukawa potential screening length corresponds to U = ",& &F12.8)') udufix(i) end if end do end if if (task.eq.300) then write(fnum,*) write(fnum,'("RDMFT calculation")') write(fnum,'(" see arXiv:0801.3787v1 [cond-mat.mtrl-sci]")') write(fnum,'(" RDMFT exchange-correlation type : ",I4)') rdmxctype if (rdmxctype.eq.1) then write(fnum,'(" Hartree-Fock functional")') else if (rdmxctype.eq.2) then write(fnum,'(" Power functional, exponent : ",G18.10)') rdmalpha end if end if write(fnum,*) write(fnum,'("Smearing type : ",I4)') stype write(fnum,'(" ",A)') trim(sdescr) if (autoswidth) then write(fnum,'("Automatic determination of smearing width")') else write(fnum,'("Smearing width : ",G18.10)') swidth write(fnum,'("Effective electronic temperature (K) : ",G18.10)') tempk end if write(fnum,*) write(fnum,'("Mixing type : ",I4)') mixtype write(fnum,'(" ",A)') trim(mixdescr) flush(fnum) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/mossbauer.f900000644000000000000000000000013214061636517015244 xustar0030 mtime=1623670095.357102082 30 atime=1623670094.135103216 30 ctime=1623670095.357102082 elk-7.2.42/src/mossbauer.f900000644002504400250440000001117714061636517017310 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: mossbauer ! !INTERFACE: subroutine mossbauer ! !USES: use modmain use modmpi use modtest ! !DESCRIPTION: ! Computes the contact charge density and magnetic hyperfine field for each ! atom and outputs the data to the file {\tt MOSSBAUER.OUT}. ! See S. Bl\"{u}gel, H. Akai, R. Zeller, and P. H. Dederichs, ! {\it Phys. Rev. B} {\bf 35}, 3271 (1987). ! ! !REVISION HISTORY: ! Created May 2004 (JKD) ! Contact hyperfine field evaluated at the nuclear radius rather than averaged ! over the Thomson sphere, June 2019 (JKD) ! Added spin and orbital dipole terms, July 2019 (JKD) !EOP !BOC implicit none ! local variables integer ik,idm integer is,ia,ias integer nr,nri,nrn real(8) mc(3),bc(3),bd(3) real(8) rho0,rhon,rhoa real(8) cb,t1 ! allocatable arrays real(8), allocatable :: fr(:) ! spin dipole field prefactor cb=gfacte/(4.d0*solsc) ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! calculate the density call rhomag ! calculate the dipole magnetic field if required if (tbdip) call bdipole ! allocate local arrays allocate(fr(nrmtmax)) if (mp_mpi) then open(50,file='MOSSBAUER.OUT',form='FORMATTED') end if ! loop over species do is=1,nspecies nr=nrmt(is) nri=nrmti(is) nrn=nrnucl(is) ! loop over atoms do ia=1,natoms(is) ias=idxas(ia,is) if (mp_mpi) then write(50,*) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is,trim(spsymb(is)),& ia write(50,*) write(50,'(" approximate nuclear radius : ",G18.10)') rnucl(is) write(50,'(" number of mesh points to nuclear radius : ",I6)') nrn end if !--------------------------------! ! contact charge density ! !--------------------------------! ! extract the l=m=0 component of the muffin-tin density call rfmtlm(1,nr,nri,rhomt(:,ias),fr) rho0=fr(1)*y00 rhon=fr(nrn)*y00 t1=dot_product(wrmt(1:nrn,is),fr(1:nrn)) rhoa=fourpi*y00*t1/volnucl(is) if (mp_mpi) then write(50,*) write(50,'(" density at nuclear center : ",G18.10)') rho0 write(50,'(" density at nuclear surface : ",G18.10)') rhon write(50,'(" average contact charge density : ",G18.10)') rhoa end if !----------------------------------! ! magnetic hyperfine field ! !----------------------------------! if (spinpol) then ! contact term do idm=1,ndmag ! extract the l=m=0 component of the muffin-tin magnetisation call rfmtlm(1,nr,nri,magmt(:,ias,idm),fr) t1=dot_product(wrmt(1:nrn,is),fr(1:nrn)) mc(idm)=fourpi*y00*t1/volnucl(is) end do t1=8.d0*pi*cb/(3.d0*solsc) bc(1:ndmag)=t1*mc(1:ndmag) if (mp_mpi) then write(50,*) write(50,'(" contact magnetic moment (mu_B) : ",3G18.10)') mc(1:ndmag) write(50,'(" contact field : ",3G18.10)') bc(1:ndmag) write(50,'(" tesla : ",3G18.10)') b_si*bc(1:ndmag) end if ! spin and orbital dipole term if (tbdip) then ! extract the l=m=0 component of the dipole field do idm=1,3 call rfmtlm(1,nr,nri,bdmt(:,ias,idm),fr) t1=dot_product(wrmt(1:nrn,is),fr(1:nrn)) bd(idm)=fourpi*y00*t1/(volnucl(is)*solsc) end do if (mp_mpi) then write(50,*) if (tjr) then write(50,'(" spin and orbital dipole field : ",3G18.10)') bd else write(50,'(" spin dipole field : ",3G18.10)') bd end if write(50,'(" tesla : ",3G18.10)') b_si*bd end if ! write to test file if required call writetest(110,'hyperfine field',nv=3,tol=1.d-4,rva=bd) end if end if end do end do if (mp_mpi) then if (spinpol.and.tbdip) then write(50,*) write(50,'("Note that the contact term is implicitly included in the & &spin dipole field")') write(50,'(" but may not match exactly with the directly & &calculated value.")') end if close(50) write(*,*) write(*,'("Info(mossbauer):")') write(*,'(" Mossbauer parameters written to MOSSBAUER.OUT")') end if deallocate(fr) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/initoep.f900000644000000000000000000000013014061636517014711 xustar0029 mtime=1623670095.35910208 30 atime=1623670094.137103214 29 ctime=1623670095.35910208 elk-7.2.42/src/initoep.f900000644002504400250440000000201114061636517016742 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine initoep use modmain implicit none ! local variables integer is,ic,ist,m ! find maximum core states over all species ncrmax=0 do is=1,nspecies ic=0 do ist=1,nstsp(is) if (spcore(ist,is)) then do m=-ksp(ist,is),ksp(ist,is)-1 ic=ic+1 end do end if end do ncrmax=max(ncrmax,ic) end do ! allocate the exchange potential and magnetic field if (allocated(vxmt)) deallocate(vxmt) allocate(vxmt(npcmtmax,natmtot)) if (allocated(vxir)) deallocate(vxir) allocate(vxir(ngtot)) if (spinpol) then if (allocated(bxmt)) deallocate(bxmt) allocate(bxmt(npcmtmax,natmtot,ndmag)) if (allocated(bxir)) deallocate(bxir) allocate(bxir(ngtot,ndmag)) end if ! zero the exchange potential and magnetic field vxmt(:,:)=0.d0 vxir(:)=0.d0 if (spinpol) then bxmt(:,:,:)=0.d0 bxir(:,:)=0.d0 end if end subroutine elk-7.2.42/src/PaxHeaders.21776/i3minv.f900000644000000000000000000000013214061636517014451 xustar0030 mtime=1623670095.360102079 30 atime=1623670094.138103213 30 ctime=1623670095.360102079 elk-7.2.42/src/i3minv.f900000644002504400250440000000242114061636517016505 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2003-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: i3minv ! !INTERFACE: subroutine i3minv(a,b) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,integer(3,3)) ! b : output matrix (in,integer(3,3)) ! !DESCRIPTION: ! Computes the inverse of a integer $3\times 3$ matrix: $B=A^{-1}$. ! ! !REVISION HISTORY: ! Created November 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: a(3,3) integer, intent(out) :: b(3,3) ! local variables integer m m=a(1,1)*(a(2,2)*a(3,3)-a(3,2)*a(2,3)) & +a(2,1)*(a(3,2)*a(1,3)-a(1,2)*a(3,3)) & +a(3,1)*(a(1,2)*a(2,3)-a(2,2)*a(1,3)) if ((m.ne.1).and.(m.ne.-1)) then write(*,*) write(*,'("Error(i3minv): cannot invert matrix")') write(*,'(" Determinant : ",I8)') m write(*,*) stop end if b(1,1)=m*(a(2,2)*a(3,3)-a(2,3)*a(3,2)) b(2,1)=m*(a(2,3)*a(3,1)-a(2,1)*a(3,3)) b(3,1)=m*(a(2,1)*a(3,2)-a(2,2)*a(3,1)) b(1,2)=m*(a(1,3)*a(3,2)-a(1,2)*a(3,3)) b(2,2)=m*(a(1,1)*a(3,3)-a(1,3)*a(3,1)) b(3,2)=m*(a(1,2)*a(3,1)-a(1,1)*a(3,2)) b(1,3)=m*(a(1,2)*a(2,3)-a(1,3)*a(2,2)) b(2,3)=m*(a(1,3)*a(2,1)-a(1,1)*a(2,3)) b(3,3)=m*(a(1,1)*a(2,2)-a(1,2)*a(2,1)) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/r3mv.f900000644000000000000000000000013214061636517014133 xustar0030 mtime=1623670095.362102077 30 atime=1623670094.140103211 30 ctime=1623670095.362102077 elk-7.2.42/src/r3mv.f900000644002504400250440000000140614061636517016171 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3mv ! !INTERFACE: pure subroutine r3mv(a,x,y) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,real(3,3)) ! x : input vector (in,real(3)) ! y : output vector (out,real(3)) ! !DESCRIPTION: ! Multiplies a real $3\times 3$ matrix with a vector. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3),x(3) real(8), intent(out) :: y(3) y(1)=a(1,1)*x(1)+a(1,2)*x(2)+a(1,3)*x(3) y(2)=a(2,1)*x(1)+a(2,2)*x(2)+a(2,3)*x(3) y(3)=a(3,1)*x(1)+a(3,2)*x(2)+a(3,3)*x(3) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genidxlo.f900000644000000000000000000000013214061636517015055 xustar0030 mtime=1623670095.363102076 30 atime=1623670094.142103209 30 ctime=1623670095.363102076 elk-7.2.42/src/genidxlo.f900000644002504400250440000000164114061636517017114 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genidxlo ! !INTERFACE: subroutine genidxlo ! !USES: use modmain ! !DESCRIPTION: ! Generates an index array which maps the local-orbitals in each atom to their ! locations in the overlap or Hamiltonian matrices. Also finds the total ! number of local-orbitals. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer is,ias,i,ilo,l,m,lm ! allocate global local-orbital index if (allocated(idxlo)) deallocate(idxlo) allocate(idxlo(lolmmax,nlomax,natmtot)) i=0 do ias=1,natmtot is=idxis(ias) do ilo=1,nlorb(is) l=lorbl(ilo,is) do m=-l,l i=i+1 lm=l*(l+1)+m+1 idxlo(lm,ilo,ias)=i end do end do end do nlotot=i end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/nuclei.f900000644000000000000000000000013214061636517014523 xustar0030 mtime=1623670095.365102074 30 atime=1623670094.143103209 30 ctime=1623670095.365102074 elk-7.2.42/src/nuclei.f900000644002504400250440000000120714061636517016560 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine nuclei use modmain implicit none ! local variables integer is,ir ! external functions real(8), external :: radnucl do is=1,nspecies ! approximate nuclear radius rnucl(is)=radnucl(spzn(is)) ! nuclear volume volnucl(is)=(4.d0/3.d0)*pi*rnucl(is)**3 ! number of radial mesh points to nuclear radius nrnucl(is)=1 do ir=1,nrmt(is) if (rsp(ir,is).gt.rnucl(is)) then nrnucl(is)=ir exit end if end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/writeefg.f900000644000000000000000000000013214061636517015060 xustar0030 mtime=1623670095.366102073 30 atime=1623670094.145103207 30 ctime=1623670095.366102073 elk-7.2.42/src/writeefg.f900000644002504400250440000000623214061636517017120 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writeefg ! !INTERFACE: subroutine writeefg ! !USES: use modmain use modtest ! !DESCRIPTION: ! Computes the electric field gradient (EFG) tensor for each atom, $\alpha$, ! and writes it to the file {\tt EFG.OUT} along with its eigenvalues. The EFG ! is defined by ! $$ V^{\alpha}_{ij}\equiv\left.\frac{\partial^2 V'_{\rm C}({\bf r})} ! {\partial{\bf r}_i\partial{\bf r}_j}\right|_{{\bf r}={\bf r}_{\alpha}}, $$ ! where $V'_{\rm C}$ is the Coulomb potential with the $l=m=0$ component ! removed in each muffin-tin. The derivatives are computed explicitly using ! the routine {\tt gradrfmt}. ! ! !REVISION HISTORY: ! Created May 2004 (JKD) ! Fixed serious problem, November 2006 (JKD) !EOP !BOC implicit none ! local variables integer, parameter :: lwork=10 integer is,ia,ias integer nr,nri,ir integer np,i,j,info real(8) efg(3,3),a(3,3) real(8) w(3),work(lwork) ! allocatable arrays real(8), allocatable :: rfmt(:),grfmt1(:,:),grfmt2(:,:) if (lmaxi.lt.2) then write(*,*) write(*,'("Error(writeefg): lmaxi too small for calculating the EFG : ",& &I4)') lmaxi write(*,'(" Run the ground-state calculation again with lmaxi >= 2")') write(*,*) stop end if ! initialise universal variables call init0 ! read density and potentials from file call readstate ! allocate local arrays allocate(rfmt(npmtmax),grfmt1(npmtmax,3),grfmt2(npmtmax,3)) open(50,file='EFG.OUT',form='FORMATTED') write(50,*) write(50,'("(electric field gradient tensor is in Cartesian coordinates)")') do is=1,nspecies nr=nrmt(is) nri=nrmti(is) np=npmt(is) do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is,trim(spsymb(is)),ia ! remove the l=m=0 part of the potential rfmt(1:np)=vclmt(1:np,ias) i=1 do ir=1,nri rfmt(i)=0.d0 i=i+lmmaxi end do do ir=nri+1,nr rfmt(i)=0.d0 i=i+lmmaxo end do ! compute the gradient of the Coulomb potential call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt,npmtmax,grfmt1) do i=1,3 ! compute the gradient of the gradient call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),grfmt1(:,i),npmtmax, & grfmt2) do j=1,3 efg(i,j)=grfmt2(1,j)*y00 end do end do ! symmetrise the EFG do i=1,3 do j=i+1,3 efg(i,j)=0.5d0*(efg(i,j)+efg(j,i)) efg(j,i)=efg(i,j) end do end do write(50,*) write(50,'(" EFG tensor :")') do i=1,3 write(50,'(3G18.10)') (efg(i,j),j=1,3) end do write(50,'(" trace : ",G18.10)') efg(1,1)+efg(2,2)+efg(3,3) ! diagonalise the EFG a(:,:)=efg(:,:) call dsyev('N','U',3,a,3,w,work,lwork,info) write(50,'(" eigenvalues :")') write(50,'(3G18.10)') w end do end do close(50) write(*,*) write(*,'("Info(writeefg): electric field gradient written to EFG.OUT")') deallocate(rfmt,grfmt1,grfmt2) ! write EFG of last atom to test file call writetest(115,'electric field gradient',nv=9,tol=1.d-3,rva=efg) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeevsp.f900000644000000000000000000000013214061636517015274 xustar0030 mtime=1623670095.368102071 30 atime=1623670094.147103205 30 ctime=1623670095.368102071 elk-7.2.42/src/writeevsp.f900000644002504400250440000000177114061636517017337 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeevsp use modmain implicit none ! local variables integer is,ist ! solve the atomic Dirac-Kohn-Sham ground-state for all species call init0 ! write out the atomic eigenvalues for each species open(50,file='EVALSP.OUT',form='FORMATTED') write(50,*) write(50,'("Kohn-Sham-Dirac eigenvalues for all atomic species")') write(50,*) write(50,'("Exchange-correlation functional : ",3I6)') xctsp(:) do is=1,nspecies write(50,*) write(50,'("Species : ",I4," (",A,")",I4)') is,trim(spsymb(is)) do ist=1,nstsp(is) write(50,'(" n = ",I2,", l = ",I2,", k = ",I2," : ",G18.10)') nsp(ist,is), & lsp(ist,is),ksp(ist,is),evalsp(ist,is) end do end do close(50) write(*,*) write(*,'("Info(writeevsp)")') write(*,'(" Kohn-Sham-Dirac eigenvalues written to EVALSP.OUT for all atomic & &species")') end subroutine elk-7.2.42/src/PaxHeaders.21776/gencore.f900000644000000000000000000000013014061636517014664 xustar0029 mtime=1623670095.36910207 30 atime=1623670094.148103204 29 ctime=1623670095.36910207 elk-7.2.42/src/gencore.f900000644002504400250440000001114314061636517016723 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: gencore ! !INTERFACE: subroutine gencore ! !USES: use modmain use modomp ! !DESCRIPTION: ! Computes the core radial wavefunctions, eigenvalues and densities. The ! radial Dirac equation is solved in the spherical part of the Kohn-Sham ! potential to which the atomic potential has been appended for ! $r>R_{\rm MT}$. In the case of spin-polarised calculations, and when ! {\tt spincore} is set to {\tt .true.}, the Dirac equation is solved in the ! spin-up and -down potentials created from the Kohn-Sham scalar potential and ! magnetic field magnitude, with the occupancy divided equally between up and ! down. The up and down densities determined in this way are added to both the ! scalar density and the magnetisation in the routine {\tt rhocore}. Note ! that this procedure is a simple, but inexact, approach to solving the radial ! Dirac equation in a magnetic field. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Added polarised cores, November 2009 (JKD) !EOP !BOC implicit none ! local variables integer ist,ispn,idm,nthd integer is,ia,ja,ias,jas integer nr,nri,nrs,ir real(8) v(ndmag),t1 ! automatic arrays logical done(natmmax) real(8) vr(nrspmax),br(nrmtmax),fr(nrmtmax) real(8) eval(nstspmax) ! external functions real(8), external :: rfmtint ! loop over species and atoms do is=1,nspecies nr=nrmt(is) nri=nrmti(is) nrs=nrsp(is) done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) ! Kohn-Sham magnetic field for spin-polarised core if (spincore) then ! compute the averaged direction of the exchange-correlation magnetic field do idm=1,ndmag v(idm)=rfmtint(nr,nri,wrmt(:,is),bxcmt(:,ias,idm)) end do ! normalise if (ncmag) then t1=sqrt(v(1)**2+v(2)**2+v(3)**2) else t1=abs(v(1)) end if if (t1.gt.1.d-10) v(:)=v(:)/t1 ! determine the component of the field along the averaged direction br(1:nr)=0.d0 do idm=1,ndmag ! extract the spherical (l=m=0) component of B_xc call rfmtlm(1,nr,nri,bxcmt(:,ias,idm),fr) t1=v(idm)*y00 call daxpy(nr,t1,fr,1,br,1) end do end if ! loop over spin channels do ispn=1,nspncr ! use the spherical part of the crystal Kohn-Sham potential call rfmtlm(1,nr,nri,vsmt(:,ias),vr) vr(1:nr)=vr(1:nr)*y00 ! spin-up and -down potentials for polarised core if (spincore) then if (ispn.eq.1) then vr(1:nr)=vr(1:nr)-br(1:nr) else vr(1:nr)=vr(1:nr)+br(1:nr) end if end if ! append the Kohn-Sham potential from the atomic calculation for r > R_MT t1=vr(nr)-vrsp(nr,is) do ir=nr+1,nrs vr(ir)=vrsp(ir,is)+t1 end do rhocr(:,ias,ispn)=0.d0 call holdthd(nstsp(is),nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(t1,ir) SHARED(is) & !$OMP NUM_THREADS(nthd) do ist=1,nstsp(is) if (spcore(ist,is)) then ! solve the Dirac equation eval(ist)=evalcr(ist,ias) call rdirac(solsc,nsp(ist,is),lsp(ist,is),ksp(ist,is),nrs,rsp(:,is), & vr,eval(ist),rwfcr(:,1,ist,ias),rwfcr(:,2,ist,ias)) if (spincore) then ! use the spin-averaged eigenvalue for the polarised core if (ispn.eq.1) then evalcr(ist,ias)=eval(ist) else evalcr(ist,ias)=0.5d0*(evalcr(ist,ias)+eval(ist)) end if t1=0.5d0*occcr(ist,ias) else evalcr(ist,ias)=eval(ist) t1=occcr(ist,ias) end if ! add to the core density !$OMP CRITICAL(gencore_) do ir=1,nr rhocr(ir,ias,ispn)=rhocr(ir,ias,ispn) & +t1*(rwfcr(ir,1,ist,ias)**2+rwfcr(ir,2,ist,ias)**2) end do !$OMP END CRITICAL(gencore_) end if end do !$OMP END PARALLEL DO call freethd(nthd) do ir=1,nr rhocr(ir,ias,ispn)=rhocr(ir,ias,ispn)*rlmt(ir,-2,is)*y00 end do ! end loop over spin channels end do done(ia)=.true. ! copy to equivalent atoms do ja=1,natoms(is) if ((.not.done(ja)).and.(eqatoms(ia,ja,is))) then jas=idxas(ja,is) do ist=1,nstsp(is) if (spcore(ist,is)) then evalcr(ist,jas)=evalcr(ist,ias) rwfcr(1:nrs,:,ist,jas)=rwfcr(1:nrs,:,ist,ias) end if end do rhocr(1:nr,jas,:)=rhocr(1:nr,ias,:) done(ja)=.true. end if end do ! end loop over species and atoms end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/r3mtv.f900000644000000000000000000000013214061636517014317 xustar0030 mtime=1623670095.371102069 30 atime=1623670094.150103202 30 ctime=1623670095.371102069 elk-7.2.42/src/r3mtv.f900000644002504400250440000000143114061636517016353 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3mtv ! !INTERFACE: pure subroutine r3mtv(a,x,y) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,real(3,3)) ! x : input vector (in,real(3)) ! y : output vector (out,real(3)) ! !DESCRIPTION: ! Multiplies the transpose of a real $3\times 3$ matrix with a vector. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3),x(3) real(8), intent(out) :: y(3) y(1)=a(1,1)*x(1)+a(2,1)*x(2)+a(3,1)*x(3) y(2)=a(1,2)*x(1)+a(2,2)*x(2)+a(3,2)*x(3) y(3)=a(1,3)*x(1)+a(2,3)*x(2)+a(3,3)*x(3) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/r3minv.f900000644000000000000000000000013014061636517014460 xustar0030 mtime=1623670095.372102068 28 atime=1623670094.1521032 30 ctime=1623670095.372102068 elk-7.2.42/src/r3minv.f900000644002504400250440000000235414061636517016523 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3minv ! !INTERFACE: subroutine r3minv(a,b) ! !INPUT/OUTPUT PARAMETERS: ! a : input matrix (in,real(3,3)) ! b : output matrix (out,real(3,3)) ! !DESCRIPTION: ! Computes the inverse of a real $3\times 3$ matrix. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: a(3,3) real(8), intent(out) :: b(3,3) ! local variables real(8) t1 t1=a(1,2)*a(2,3)*a(3,1)-a(1,3)*a(2,2)*a(3,1)+a(1,3)*a(2,1)*a(3,2) & -a(1,1)*a(2,3)*a(3,2)+a(1,1)*a(2,2)*a(3,3)-a(1,2)*a(2,1)*a(3,3) if (abs(t1).lt.1.d-40) then write(*,*) write(*,'("Error(r3minv): singular matrix")') write(*,*) stop end if t1=1.d0/t1 b(1,1)=t1*(a(2,2)*a(3,3)-a(2,3)*a(3,2)) b(2,1)=t1*(a(2,3)*a(3,1)-a(2,1)*a(3,3)) b(3,1)=t1*(a(2,1)*a(3,2)-a(2,2)*a(3,1)) b(1,2)=t1*(a(1,3)*a(3,2)-a(1,2)*a(3,3)) b(2,2)=t1*(a(1,1)*a(3,3)-a(1,3)*a(3,1)) b(3,2)=t1*(a(1,2)*a(3,1)-a(1,1)*a(3,2)) b(1,3)=t1*(a(1,2)*a(2,3)-a(1,3)*a(2,2)) b(2,3)=t1*(a(1,3)*a(2,1)-a(1,1)*a(2,3)) b(3,3)=t1*(a(1,1)*a(2,2)-a(1,2)*a(2,1)) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/r3frac.f900000644000000000000000000000013214061636517014424 xustar0030 mtime=1623670095.374102066 30 atime=1623670094.154103198 30 ctime=1623670095.374102066 elk-7.2.42/src/r3frac.f900000644002504400250440000000222714061636517016464 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: r3frac ! !INTERFACE: pure subroutine r3frac(eps,v) ! !INPUT/OUTPUT PARAMETERS: ! eps : zero component tolerance (in,real) ! v : input vector (inout,real(3)) ! !DESCRIPTION: ! Finds the fractional part of each component of a real 3-vector using the ! function ${\rm frac}\,(x)=x-\lfloor x\rfloor$. A component is taken to be ! zero if it lies within the intervals $[0,\epsilon)$ or $(1-\epsilon,1]$. ! ! !REVISION HISTORY: ! Created January 2003 (JKD) ! Removed iv, September 2011 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: eps real(8), intent(inout) :: v(3) ! local variables real(8) t1 t1=1.d0-eps v(1)=v(1)-int(v(1)) if (v(1).lt.0.d0) v(1)=v(1)+1.d0 if ((v(1).lt.eps).or.(v(1).gt.t1)) v(1)=0.d0 v(2)=v(2)-int(v(2)) if (v(2).lt.0.d0) v(2)=v(2)+1.d0 if ((v(2).lt.eps).or.(v(2).gt.t1)) v(2)=0.d0 v(3)=v(3)-int(v(3)) if (v(3).lt.0.d0) v(3)=v(3)+1.d0 if ((v(3).lt.eps).or.(v(3).gt.t1)) v(3)=0.d0 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genapwlofr.f900000644000000000000000000000013214061636517015410 xustar0030 mtime=1623670095.375102065 30 atime=1623670094.155103197 30 ctime=1623670095.375102065 elk-7.2.42/src/genapwlofr.f900000644002504400250440000000134414061636517017447 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genapwlofr use modomp implicit none ! local variables integer nthd call holdthd(2,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP SECTIONS !$OMP SECTION ! generate the APW radial functions call genapwfr !$OMP SECTION ! generate the local-orbital radial functions call genlofr !$OMP END SECTIONS !$OMP SECTIONS !$OMP SECTION ! compute the overlap radial integrals call olprad !$OMP SECTION ! compute the Hamiltonian radial integrals call hmlrad !$OMP END SECTIONS !$OMP END PARALLEL call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/gridsize.f900000644000000000000000000000013214061636517015064 xustar0030 mtime=1623670095.377102063 30 atime=1623670094.157103195 30 ctime=1623670095.377102063 elk-7.2.42/src/gridsize.f900000644002504400250440000000342014061636517017120 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gridsize ! !INTERFACE: subroutine gridsize(avec,gmaxvr,ngridg,ngtot,intgv) ! !INPUT/OUTPUT PARAMETERS: ! avec : lattice vectors (in,real(3,3)) ! gmaxvr : G-vector cut-off (in,real) ! ngridg : G-vector grid sizes (out,integer(3)) ! ngtot : total number of G-vectors (out,integer) ! intgv : integer grid intervals for each direction (out,integer(2,3)) ! !DESCRIPTION: ! Finds the ${\bf G}$-vector grid which completely contains the vectors with ! $G1/2 \end{array}\right. $$ ! ! !REVISION HISTORY: ! Created July 2008 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: x if (abs(x).le.0.5d0) then sdelta_sq=1.d0 else sdelta_sq=0.d0 end if end function !EOC elk-7.2.42/src/PaxHeaders.21776/potxcir.f900000644000000000000000000000013214061636517014734 xustar0030 mtime=1623670095.390102051 30 atime=1623670094.171103182 30 ctime=1623670095.390102051 elk-7.2.42/src/potxcir.f900000644002504400250440000002044314061636517016774 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potxcir(xctype_,rhoir_,magir_,tauir_,exir_,ecir_,vxcir_,bxcir_, & wxcir_) use modmain use modxcifc implicit none ! arguments integer, intent(in) :: xctype_(3) real(8), intent(in) :: rhoir_(ngtot),magir_(ngtot,ndmag),tauir_(ngtot,nspinor) real(8), intent(out) :: exir_(ngtot),ecir_(ngtot) real(8), intent(out) :: vxcir_(ngtot),bxcir_(ngtot,ndmag),wxcir_(ngtot) ! local variables integer n,i real(8) t0,t1,t2,t3,t4 ! allocatable arrays real(8), allocatable :: rhoup(:),rhodn(:) real(8), allocatable :: gvrho(:,:),gvup(:,:),gvdn(:,:) real(8), allocatable :: grho(:),gup(:),gdn(:) real(8), allocatable :: g2rho(:),g2up(:),g2dn(:) real(8), allocatable :: g3rho(:),g3up(:),g3dn(:) real(8), allocatable :: grho2(:),gup2(:),gdn2(:),gupdn(:) real(8), allocatable :: vx(:),vxup(:),vxdn(:) real(8), allocatable :: vc(:),vcup(:),vcdn(:) real(8), allocatable :: dxdgr2(:),dxdgu2(:),dxdgd2(:),dxdgud(:) real(8), allocatable :: dcdgr2(:),dcdgu2(:),dcdgd2(:),dcdgud(:) real(8), allocatable :: dxdg2r(:),dxdg2u(:),dxdg2d(:) real(8), allocatable :: dcdg2r(:),dcdg2u(:),dcdg2d(:) real(8), allocatable :: wx(:),wxup(:),wxdn(:) real(8), allocatable :: wc(:),wcup(:),wcdn(:) n=ngtot if (spinpol) then allocate(rhoup(n),rhodn(n)) allocate(vxup(n),vxdn(n),vcup(n),vcdn(n)) if (xcgrad.eq.1) then allocate(grho(n),gup(n),gdn(n)) allocate(g2up(n),g2dn(n)) allocate(g3rho(n),g3up(n),g3dn(n)) else if (xcgrad.eq.2) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) allocate(dxdgu2(n),dxdgd2(n),dxdgud(n)) allocate(dcdgu2(n),dcdgd2(n),dcdgud(n)) else if (xcgrad.eq.3) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) else if (xcgrad.eq.4) then allocate(g2up(n),g2dn(n)) allocate(gvup(n,3),gvdn(n,3)) allocate(gup2(n),gdn2(n),gupdn(n)) allocate(dxdgu2(n),dxdgd2(n),dxdgud(n)) allocate(dcdgu2(n),dcdgd2(n),dcdgud(n)) allocate(dxdg2u(n),dxdg2d(n)) allocate(dcdg2u(n),dcdg2d(n)) allocate(wxup(n),wxdn(n),wcup(n),wcdn(n)) end if else allocate(vx(n),vc(n)) if (xcgrad.eq.1) then allocate(grho(n),g2rho(n),g3rho(n)) else if (xcgrad.eq.2) then allocate(g2rho(n),gvrho(n,3),grho2(n)) allocate(dxdgr2(n),dcdgr2(n)) else if (xcgrad.eq.3) then allocate(g2rho(n),gvrho(n,3),grho2(n)) else if (xcgrad.eq.4) then allocate(g2rho(n),gvrho(n,3),grho2(n)) allocate(dxdgr2(n),dcdgr2(n)) allocate(dxdg2r(n),dcdg2r(n)) allocate(wx(n),wc(n)) end if end if if (spinpol) then !------------------------! ! spin-polarised ! !------------------------! if (ncmag) then ! non-collinear if (xcgrad.eq.0) then ! LSDA do i=1,n t0=rhoir_(i) t1=sqrt(magir_(i,1)**2+magir_(i,2)**2+magir_(i,3)**2)*sxcscf rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do else ! functionals which require gradients do i=1,n t0=rhoir_(i) t1=sqrt(magir_(i,1)**2+magir_(i,2)**2+magir_(i,3)**2+dncgga)*sxcscf rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do end if else ! collinear do i=1,n t0=rhoir_(i) t1=magir_(i,1)*sxcscf rhoup(i)=0.5d0*(t0+t1) rhodn(i)=0.5d0*(t0-t1) end do end if if (xcgrad.le.0) then call xcifc(xctype_,n,tempa=swidth,rhoup=rhoup,rhodn=rhodn,ex=exir_, & ec=ecir_,vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (xcgrad.eq.1) then call ggair_sp_1(rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,grho=grho,gup=gup,gdn=gdn, & g2up=g2up,g2dn=g2dn,g3rho=g3rho,g3up=g3up,g3dn=g3dn,ex=exir_,ec=ecir_, & vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) else if (xcgrad.eq.2) then call ggair_sp_2a(rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,gup2=gup2,gdn2=gdn2, & gupdn=gupdn,ex=exir_,ec=ecir_,vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn, & dxdgu2=dxdgu2,dxdgd2=dxdgd2,dxdgud=dxdgud,dcdgu2=dcdgu2,dcdgd2=dcdgd2, & dcdgud=dcdgud) call ggair_sp_2b(g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2,dxdgd2, & dxdgud,dcdgu2,dcdgd2,dcdgud) else if (xcgrad.eq.3) then call ggair_sp_2a(rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,c_tb09=c_tb09,rhoup=rhoup,rhodn=rhodn,g2up=g2up, & g2dn=g2dn,gup2=gup2,gdn2=gdn2,gupdn=gupdn,tauup=tauir_(:,1), & taudn=tauir_(:,2),vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn) exir_(:)=0.d0; ecir_(:)=0.d0 else if (xcgrad.eq.4) then call ggair_sp_2a(rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) call xcifc(xctype_,n,rhoup=rhoup,rhodn=rhodn,g2up=g2up,g2dn=g2dn, & gup2=gup2,gdn2=gdn2,gupdn=gupdn,tauup=tauir_(:,1),taudn=tauir_(:,2), & ex=exir_,ec=ecir_,vxup=vxup,vxdn=vxdn,vcup=vcup,vcdn=vcdn,dxdgu2=dxdgu2, & dxdgd2=dxdgd2,dxdgud=dxdgud,dcdgu2=dcdgu2,dcdgd2=dcdgd2,dcdgud=dcdgud, & dxdg2u=dxdg2u,dxdg2d=dxdg2d,dcdg2u=dcdg2u,dcdg2d=dcdg2d,wxup=wxup, & wxdn=wxdn,wcup=wcup,wcdn=wcdn) call ggair_sp_2b(g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2,dxdgd2, & dxdgud,dcdgu2,dcdgd2,dcdgud) wxcir_(:)=0.5d0*(wxup(:)+wxdn(:)+wcup(:)+wcdn(:)) end if ! hybrid functionals if (hybrid) then t1=1.d0-hybridc ! scale exchange part of energy exir_(:)=t1*exir_(:) ! scale exchange part of potential vxup(:)=t1*vxup(:) vxdn(:)=t1*vxdn(:) end if if (ncmag) then ! non-collinear: spin rotate the local exchange potential do i=1,n t1=vxup(i)+vcup(i) t2=vxdn(i)+vcdn(i) vxcir_(i)=0.5d0*(t1+t2) ! determine the exchange-correlation magnetic field t3=0.5d0*(t1-t2) t4=rhoup(i)-rhodn(i) if (abs(t4).gt.1.d-8) t4=t3/t4 bxcir_(i,:)=magir_(i,:)*t4 end do else ! collinear do i=1,n t1=vxup(i)+vcup(i) t2=vxdn(i)+vcdn(i) vxcir_(i)=0.5d0*(t1+t2) bxcir_(i,1)=0.5d0*(t1-t2) end do end if ! scale field if required if (tssxc) bxcir_(:,1:ndmag)=bxcir_(:,1:ndmag)*sxcscf else !--------------------------! ! spin-unpolarised ! !--------------------------! if (xcgrad.le.0) then call xcifc(xctype_,n,tempa=swidth,rho=rhoir_,ex=exir_,ec=ecir_,vx=vx,vc=vc) else if (xcgrad.eq.1) then call ggair_1(rhoir_,grho,g2rho,g3rho) call xcifc(xctype_,n,rho=rhoir_,grho=grho,g2rho=g2rho,g3rho=g3rho,ex=exir_,& ec=ecir_,vx=vx,vc=vc) else if (xcgrad.eq.2) then call ggair_2a(rhoir_,g2rho,gvrho,grho2) call xcifc(xctype_,n,rho=rhoir_,grho2=grho2,ex=exir_,ec=ecir_,vx=vx,vc=vc, & dxdgr2=dxdgr2,dcdgr2=dcdgr2) call ggair_2b(g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) else if (xcgrad.eq.3) then call ggair_2a(rhoir_,g2rho,gvrho,grho2) call xcifc(xctype_,n,c_tb09=c_tb09,rho=rhoir_,g2rho=g2rho,grho2=grho2, & tau=tauir_,vx=vx,vc=vc) exir_(:)=0.d0; ecir_(:)=0.d0 else if (xcgrad.eq.4) then call ggair_2a(rhoir_,g2rho,gvrho,grho2) call xcifc(xctype_,n,rho=rhoir_,g2rho=g2rho,grho2=grho2,tau=tauir_, & ex=exir_,ec=ecir_,vx=vx,vc=vc,dxdgr2=dxdgr2,dcdgr2=dcdgr2,dxdg2r=dxdg2r, & dcdg2r=dcdg2r,wx=wx,wc=wc) call ggair_2b(g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) wxcir_(:)=wx(:)+wc(:) end if ! hybrid functionals if (hybrid) then t1=1.d0-hybridc ! scale exchange part of energy exir_(:)=t1*exir_(:) ! scale exchange part of potential vxcir_(:)=t1*vx(:)+vc(:) else vxcir_(:)=vx(:)+vc(:) end if end if if (spinpol) then deallocate(rhoup,rhodn,vxup,vxdn,vcup,vcdn) if (xcgrad.eq.1) then deallocate(grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) else if (xcgrad.eq.2) then deallocate(g2up,g2dn) deallocate(gvup,gvdn) deallocate(gup2,gdn2,gupdn) deallocate(dxdgu2,dxdgd2,dxdgud) deallocate(dcdgu2,dcdgd2,dcdgud) else if (xcgrad.eq.3) then deallocate(g2up,g2dn) deallocate(gvup,gvdn) deallocate(gup2,gdn2,gupdn) end if else deallocate(vx,vc) if (xcgrad.eq.1) then deallocate(grho,g2rho,g3rho) else if (xcgrad.eq.2) then deallocate(g2rho,gvrho,grho2) deallocate(dxdgr2,dcdgr2) else if (xcgrad.eq.3) then deallocate(g2rho,gvrho,grho2) else if (xcgrad.eq.4) then deallocate(g2rho,gvrho,grho2) deallocate(dxdgr2,dcdgr2,dxdg2r,dcdg2r) deallocate(wx,wc) end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/potxc.f900000644000000000000000000000013214061636517014401 xustar0030 mtime=1623670095.392102049 30 atime=1623670094.173103181 30 ctime=1623670095.392102049 elk-7.2.42/src/potxc.f900000644002504400250440000000501314061636517016435 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: potxc ! !INTERFACE: subroutine potxc(tsh,xctype_,rhomt_,rhoir_,magmt_,magir_,taumt_,tauir_,exmt_, & exir_,ecmt_,ecir_,vxcmt_,vxcir_,bxcmt_,bxcir_,wxcmt_,wxcir_) ! !USES: use modmain use modomp ! !DESCRIPTION: ! Computes the exchange-correlation potential and energy density. In the ! muffin-tin, the density is transformed from spherical harmonic coefficients ! $\rho_{lm}$ to spherical coordinates $(\theta,\phi)$ with a backward ! spherical harmonic transformation (SHT). Once calculated, the ! exchange-correlation potential and energy density are transformed with a ! forward SHT. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: tsh integer, intent(in) :: xctype_(3) real(8), intent(in) :: rhomt_(npmtmax,natmtot),rhoir_(ngtot) real(8), intent(in) :: magmt_(npmtmax,natmtot,ndmag),magir_(ngtot,ndmag) real(8), intent(in) :: taumt_(npmtmax,natmtot,nspinor),tauir_(ngtot,nspinor) real(8), intent(out) :: exmt_(npmtmax,natmtot),exir_(ngtot) real(8), intent(out) :: ecmt_(npmtmax,natmtot),ecir_(ngtot) real(8), intent(out) :: vxcmt_(npmtmax,natmtot),vxcir_(ngtot) real(8), intent(out) :: bxcmt_(npmtmax,natmtot,ndmag),bxcir_(ngtot,ndmag) real(8), intent(out) :: wxcmt_(npmtmax,natmtot),wxcir_(ngtot) ! local variables integer ias,nthd1,nthd2 call holdthd(2,nthd1) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(nthd2,ias) & !$OMP NUM_THREADS(nthd1) !$OMP SECTIONS !$OMP SECTION ! muffin-tin exchange-correlation potential, field and energy density call holdthd(natmtot,nthd2) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd2) do ias=1,natmtot call potxcmt(tsh,ias,xctype_,rhomt_,magmt_,taumt_,exmt_,ecmt_,vxcmt_,bxcmt_, & wxcmt_) end do !$OMP END PARALLEL DO call freethd(nthd2) !$OMP SECTION ! interstitial exchange-correlation potential, field and energy density call potxcir(xctype_,rhoir_,magir_,tauir_,exir_,ecir_,vxcir_,bxcir_,wxcir_) !$OMP END SECTIONS ! symmetrise the exchange-correlation potential and magnetic field if (tsh) then !$OMP SECTIONS !$OMP SECTION call symrf(nrmt,nrmti,npmt,ngridg,ngtot,ngvec,igfft,npmtmax,vxcmt_,vxcir_) !$OMP SECTION if (spinpol) call symrvf(.true.,ncmag,nrmt,nrmti,npmt,ngridg,ngtot,ngvec, & igfft,npmtmax,bxcmt_,ngtot,bxcir_) !$OMP END SECTIONS end if !$OMP END PARALLEL call freethd(nthd1) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rzfmtinp.f900000644000000000000000000000013214061636517015115 xustar0030 mtime=1623670095.393102048 30 atime=1623670094.175103179 30 ctime=1623670095.393102048 elk-7.2.42/src/rzfmtinp.f900000644002504400250440000000202014061636517017144 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure complex(8) function rzfmtinp(nr,nri,wr,rfmt,zfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) real(8), intent(in) :: rfmt(*) complex(8), intent(in) :: zfmt(*) ! local variables integer n,ir,i complex(8) z1,z2 ! compute the dot-products for each radial point and integrate over r z1=0.d0 i=1 if (lmaxi.eq.1) then do ir=1,nri z1=z1+wr(ir) & *(rfmt(i)*zfmt(i) & +rfmt(i+1)*zfmt(i+1) & +rfmt(i+2)*zfmt(i+2) & +rfmt(i+3)*zfmt(i+3)) i=i+4 end do z1=pi*z1 else n=lmmaxi-1 do ir=1,nri z1=z1+wr(ir)*dot_product(rfmt(i:i+n),zfmt(i:i+n)) i=i+lmmaxi end do z1=(fourpi/dble(lmmaxi))*z1 end if z2=0.d0 n=lmmaxo-1 do ir=nri+1,nr z2=z2+wr(ir)*dot_product(rfmt(i:i+n),zfmt(i:i+n)) i=i+lmmaxo end do rzfmtinp=z1+(fourpi/dble(lmmaxo))*z2 end function elk-7.2.42/src/PaxHeaders.21776/rhoplot.f900000644000000000000000000000013214061636517014733 xustar0030 mtime=1623670095.395102046 30 atime=1623670094.177103177 30 ctime=1623670095.395102046 elk-7.2.42/src/rhoplot.f900000644002504400250440000000254614061636517016777 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rhoplot ! !INTERFACE: subroutine rhoplot ! !USES: use modmain ! !DESCRIPTION: ! Outputs the charge density, read in from {\tt STATE.OUT}, for 1D, 2D or 3D ! plotting. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! initialise universal variables call init0 ! read density from file call readstate ! write the density plot to file select case(task) case(31) open(50,file='RHO1D.OUT',form='FORMATTED',action='WRITE') open(51,file='RHOLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,1,rhomt,rhoir) close(50) close(51) write(*,*) write(*,'("Info(rhoplot):")') write(*,'(" 1D density plot written to RHO1D.OUT")') write(*,'(" vertex location lines written to RHOLINES.OUT")') case(32) open(50,file='RHO2D.OUT',form='FORMATTED',action='WRITE') call plot2d(.false.,50,1,rhomt,rhoir) close(50) write(*,*) write(*,'("Info(rhoplot): 2D density plot written to RHO2D.OUT")') case(33) open(50,file='RHO3D.OUT',form='FORMATTED',action='WRITE') call plot3d(50,1,rhomt,rhoir) close(50) write(*,*) write(*,'("Info(rhoplot): 3D density plot written to RHO3D.OUT")') end select end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/occupy.f900000644000000000000000000000013214061636517014546 xustar0030 mtime=1623670095.396102045 30 atime=1623670094.178103176 30 ctime=1623670095.396102045 elk-7.2.42/src/occupy.f900000644002504400250440000000633614061636517016613 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: occupy ! !INTERFACE: subroutine occupy ! !USES: use modmain use modtest ! !DESCRIPTION: ! Finds the Fermi energy and sets the occupation numbers for the ! second-variational states using the routine {\tt fermi}. ! ! !REVISION HISTORY: ! Created February 2004 (JKD) ! Added gap estimation, November 2009 (F. Cricchio) ! Added adaptive smearing width, April 2010 (T. Bjorkman) !EOP !BOC implicit none ! local variables integer, parameter :: maxit=1000 integer ik,ist,it real(8) e0,e1,e real(8) chg,w,x,t1 ! external functions real(8), external :: sdelta,stheta ! determine the smearing width automatically if required if ((autoswidth).and.(iscl.gt.1)) call findswidth ! find minimum and maximum eigenvalues e0=evalsv(1,1) e1=e0 do ik=1,nkpt do ist=1,nstsv e=evalsv(ist,ik) if (e.lt.e0) e0=e if (e.gt.e1) e1=e end do end do if (e0.lt.e0min) then write(*,*) write(*,'("Warning(occupy): minimum eigenvalue less than minimum & &linearisation energy : ",2G18.10)') e0,e0min write(*,'(" for s.c. loop ",I5)') iscl end if t1=1.d0/swidth ! determine the Fermi energy using the bisection method do it=1,maxit efermi=0.5d0*(e0+e1) chg=0.d0 do ik=1,nkpt w=wkpt(ik) do ist=1,nstsv e=evalsv(ist,ik) if (e.lt.e0min) then occsv(ist,ik)=0.d0 else x=(efermi-e)*t1 occsv(ist,ik)=occmax*stheta(stype,x) chg=chg+w*occsv(ist,ik) end if end do end do if (chg.lt.chgval) then e0=efermi else e1=efermi end if if ((e1-e0).lt.1.d-12) goto 10 end do write(*,*) write(*,'("Warning(occupy): could not find Fermi energy")') 10 continue ! find the density of states at the Fermi surface in units of ! states/Hartree/unit cell fermidos=0.d0 do ik=1,nkpt w=wkpt(ik) do ist=1,nstsv x=(evalsv(ist,ik)-efermi)*t1 fermidos=fermidos+w*sdelta(stype,x)*t1 end do if (abs(occsv(nstsv,ik)).gt.epsocc) then write(*,*) write(*,'("Warning(occupy): not enough empty states for k-point ",I6)') ik write(*,'(" and s.c. loop ",I5)') iscl end if end do fermidos=fermidos*occmax ! write Fermi density of states to test file call writetest(500,'DOS at Fermi energy',tol=5.d-3,rv=fermidos) ! estimate the indirect band gap (FC) e0=-1.d8 e1=1.d8 ikgap(1)=1 ikgap(2)=1 ! these loops are inefficiently ordered to fix a bug in versions 17 and 18 of ! the Intel compiler do ist=1,nstsv do ik=1,nkpt e=evalsv(ist,ik) if (e.lt.efermi) then if (e.gt.e0) then e0=e ikgap(1)=ik end if else if (e.lt.e1) then e1=e ikgap(2)=ik end if end if end do end do bandgap(1)=e1-e0 ! write band gap to test file call writetest(510,'estimated indirect band gap',tol=2.d-2,rv=bandgap(1)) ! estimate the direct band gap e=1.d8 ikgap(3)=1 do ik=1,nkpt e0=-1.d8 e1=1.d8 do ist=1,nstsv t1=evalsv(ist,ik) if (t1.le.efermi) then if (t1.gt.e0) e0=t1 else if (t1.lt.e1) e1=t1 end if end do t1=e1-e0 if (t1.lt.e) then e=t1 ikgap(3)=ik end if end do bandgap(2)=e end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/symveca.f900000644000000000000000000000013214061636517014713 xustar0030 mtime=1623670095.398102044 30 atime=1623670094.180103174 30 ctime=1623670095.398102044 elk-7.2.42/src/symveca.f900000644002504400250440000000224114061636517016747 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: symveca ! !INTERFACE: subroutine symveca(vca) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! vca : vectors in Cartesian coordinates for all atoms (in,real(3,natmtot)) ! !DESCRIPTION: ! Symmetrises a 3-vector at each atomic site by rotating and averaging over ! equivalent atoms. Only the spatial part of each crystal symmetry is used. ! ! !REVISION HISTORY: ! Created June 2004 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(inout) :: vca(3,natmtot) ! local variables integer is,ia,ja,ias,jas integer isym,lspl real(8) v(3),t1 ! automatic arrays real(8) vs(3,natmtot) ! make symmetric average vs(:,:)=0.d0 do isym=1,nsymcrys lspl=lsplsymc(isym) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ja=ieqatom(ia,is,isym) jas=idxas(ja,is) call r3mv(symlatc(:,:,lspl),vca(:,jas),v) vs(:,ias)=vs(:,ias)+v(:) end do end do end do ! normalise t1=1.d0/dble(nsymcrys) vca(:,:)=t1*vs(:,:) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/jprplot.f900000644000000000000000000000013214061636517014736 xustar0030 mtime=1623670095.399102043 30 atime=1623670094.182103172 30 ctime=1623670095.399102043 elk-7.2.42/src/jprplot.f900000644002504400250440000000334414061636517016777 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine jprplot use modmain use modmpi implicit none ! local variables integer ik ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the occupancies from file do ik=1,nkpt call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! compute the paramagnetic current density call genjpr ! plot the current density (master process only) if (mp_mpi) then write(*,*) write(*,'("Info(jprplot):")') select case(task) case(371) open(50,file='JPR1D.OUT',form='FORMATTED') open(51,file='JPRLINES.OUT',form='FORMATTED') call plot1d(50,51,3,jrmt,jrir) close(50) write(*,'(" 1D paramagnetic current density written to JPR1D.OUT")') write(*,'(" vertex location lines written to JPRLINES.OUT")') case(372) open(50,file='JPR2D.OUT',form='FORMATTED') call plot2d(.true.,50,3,jrmt,jrir) close(50) write(*,'(" 2D paramagnetic current density written to JPR2D.OUT")') write(*,'(" Note that the 3D vector field has been locally projected")') write(*,'(" onto the 2D plotting plane axes")') case(373) open(50,file='JPR3D.OUT',form='FORMATTED') call plot3d(50,3,jrmt,jrir) close(50) write(*,'(" 3D paramagnetic current density written to JPR3D.OUT")') end select end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genvmatk.f900000644000000000000000000000013214061636517015060 xustar0030 mtime=1623670095.401102041 30 atime=1623670094.183103171 30 ctime=1623670095.401102041 elk-7.2.42/src/genvmatk.f900000644002504400250440000000522414061636517017120 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvmatk(vmt,vir,ngp,igpig,wfmt,ld,wfgp,vmat) use modmain use modomp implicit none ! arguments ! the potential is multiplied by the radial integration weights in the ! muffin-tin and by the characteristic function in the interstitial region real(8), intent(in) :: vmt(npcmtmax,natmtot),vir(ngtot) integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) integer, intent(in) :: ld complex(8), intent(in) :: wfgp(ld,nspinor,nstsv) complex(8), intent(out) :: vmat(nstsv,nstsv) ! local variables integer ist,jst,ispn,jspn integer is,ias,npc,igp,nthd ! automatic arrays complex(8) wfmt1(npcmtmax),z(ngkmax) ! allocatable arrays complex(8), allocatable :: wfir(:) ! external functions complex(8), external :: zdotc ! zero the matrix elements vmat(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfmt1,ispn,ias) & !$OMP PRIVATE(is,npc,ist) & !$OMP NUM_THREADS(nthd) do jst=1,nstsv do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! apply potential to wavefunction wfmt1(1:npc)=vmt(1:npc,ias)*wfmt(1:npc,ias,ispn,jst) ! compute the inner products do ist=1,jst vmat(ist,jst)=vmat(ist,jst)+zdotc(npc,wfmt(:,ias,ispn,ist),1,wfmt1,1) end do end do end do end do !$OMP END PARALLEL DO call freethd(nthd) !---------------------------! ! interstitial part ! !---------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir,z,ispn,jspn) & !$OMP PRIVATE(igp,ist) & !$OMP NUM_THREADS(nthd) allocate(wfir(ngtot)) !$OMP DO do jst=1,nstsv do ispn=1,nspinor jspn=jspnfv(ispn) ! Fourier transform wavefunction to real-space wfir(:)=0.d0 do igp=1,ngp(jspn) wfir(igfft(igpig(igp,jspn)))=wfgp(igp,ispn,jst) end do call zfftifc(3,ngridg,1,wfir) ! apply potential to wavefunction wfir(1:ngtot)=vir(1:ngtot)*wfir(1:ngtot) ! Fourier transform to G+p-space call zfftifc(3,ngridg,-1,wfir) do igp=1,ngp(jspn) z(igp)=wfir(igfft(igpig(igp,jspn))) end do do ist=1,jst ! compute inner product vmat(ist,jst)=vmat(ist,jst)+zdotc(ngp(jspn),wfgp(:,ispn,ist),1,z,1) end do end do end do !$OMP END DO deallocate(wfir) !$OMP END PARALLEL call freethd(nthd) ! lower triangular part do ist=1,nstsv do jst=1,ist-1 vmat(ist,jst)=conjg(vmat(jst,ist)) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/geomopt.f900000644000000000000000000000012714061636517014722 xustar0029 mtime=1623670095.40210204 29 atime=1623670094.18510317 29 ctime=1623670095.40210204 elk-7.2.42/src/geomopt.f900000644002504400250440000001377314061636517016766 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine geomopt use modmain use modmpi use modstore use moddelf implicit none ! local variables integer istp,jstp,i real(8) ds ! initialise global variables (and the muffin-tin radii) call init0 call init1 ! smooth the exchange-correlation potentials and fields msmooth_=msmooth msmooth=4 ! store orginal volume omega_=omega ! atomic forces are required tforce=.true. if (task.eq.3) then trdstate=.true. else trdstate=.false. end if ! initial atomic step sizes if (allocated(tauatp)) deallocate(tauatp) allocate(tauatp(natmtot)) tauatp(:)=tau0atp ! initialise the previous total force on each atom if (allocated(forcetotp)) deallocate(forcetotp) allocate(forcetotp(3,natmtot)) forcetotp(:,:)=0.d0 ! initial lattice optimisation step size taulatv(:)=tau0latv ! initialise previous stress tensor stressp(:)=0.d0 if (mp_mpi) then ! open TOTENERGY.OUT open(71,file='TOTENERGY_OPT.OUT',form='FORMATTED') ! open FORCEMAX.OUT open(72,file='FORCEMAX.OUT',form='FORMATTED') ! open GEOMETRY_OPT.OUT open(73,file='GEOMETRY_OPT.OUT',form='FORMATTED') ! open IADIST_OPT.OUT open(74,file='IADIST_OPT.OUT',form='FORMATTED') ! open FORCES_OPT.OUT open(75,file='FORCES_OPT.OUT',form='FORMATTED') ! open MOMENTM_OPT.OUT if (spinpol) then open(78,file='MOMENTM_OPT.OUT',form='FORMATTED') end if ! open STRESSMAX.OUT and STRESS_OPT.OUT if required if (latvopt.ne.0) then open(86,file='STRESSMAX.OUT',form='FORMATTED') open(87,file='STRESS_OPT.OUT',form='FORMATTED') open(88,file='OMEGA_OPT.OUT',form='FORMATTED') end if end if if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) do istp=1,maxlatvstp do jstp=1,maxatpstp if (atpopt.eq.0) exit if (mp_mpi) then write(*,'("Info(geomopt): Atomic position optimisation step : ",I6)') jstp end if ! ground-state and forces calculation call gndstate ! check for stop signal if (tstop) goto 10 ! subsequent calculations will read in the potential from STATE.OUT trdstate=.true. ! update the atomic positions call atpstep ! write total energy, forces, atomic positions, interatomic distances to file if (mp_mpi) then write(71,'(G22.12)') engytot flush(71) write(72,'(G18.10)') forcemax flush(72) write(73,*); write(73,*) write(73,'("! Atomic position optimisation step : ",I6)') jstp call writegeom(73) flush(73) write(74,*); write(74,*) write(74,'("Atomic position optimisation step : ",I6)') jstp call writeiad(74) flush(74) write(75,*); write(75,*) write(75,'("Atomic position optimisation step : ",I6)') jstp call writeforces(75) write(75,*) write(75,'("Maximum force magnitude over all atoms (target) : ",G18.10,& &" (",G18.10,")")') forcemax,epsforce flush(75) if (spinpol) then write(78,'(G22.12)') momtotm flush(78) end if end if ! broadcast forcemax from master process to all other processes call mpi_bcast(forcemax,1,mpi_double_precision,0,mpicom,ierror) ! check force convergence if (forcemax.le.epsforce) then if (mp_mpi) then write(75,*) write(75,'("Force convergence target achieved")') end if exit end if if (mp_mpi.and.(jstp.eq.maxatpstp)) then write(*,*) write(*,'("Warning(geomopt): atomic position optimisation failed to & &converge in ",I6," steps")') maxatpstp end if ! store the current forces array forcetotp(:,:)=forcetot(:,:) ! end loop over atomic position optimisation end do ! exit lattice optimisation loop if required if (latvopt.eq.0) exit if (mp_mpi) then write(*,'("Info(geomopt): Lattice optimisation step : ",I6)') istp end if ! generate the stress tensor call genstress ! take average of current and previous stress tensors stress(:)=0.5d0*(stress(:)+stressp(:)) ! check for stop signal if (tstop) goto 10 ! update the lattice vectors call latvstep ! write stress tensor components and maximum magnitude to file if (mp_mpi) then write(71,'(G22.12)') engytot flush(71) write(73,*); write(73,*) write(73,'("! Lattice optimisation step : ",I6)') istp call writegeom(73) flush(73) write(74,*); write(74,*) write(74,'("Lattice optimisation step : ",I6)') istp call writeiad(74) flush(74) if (spinpol) then write(78,'(G22.12)') momtotm flush(78) end if write(86,'(G18.10)') stressmax flush(86) write(87,*) write(87,'("Lattice optimisation step : ",I6)') istp write(87,'("Derivative of total energy w.r.t. strain tensors :")') do i=1,nstrain write(87,'(G18.10)') stress(i) end do flush(87) write(88,'(G18.10)') omega flush(88) end if ! check for stress convergence if (latvopt.eq.1) then ds=sum(abs(stress(:))) else ! stress may be non-zero because of volume constraint; check change in stress ! tensor instead ds=sum(abs(stress(:)-stressp(:))) end if ! broadcase ds from master process to all other processes call mpi_bcast(ds,1,mpi_double_precision,0,mpicom,ierror) if ((istp.ge.3).and.(ds.le.epsstress*tau0latv)) then if (mp_mpi) then write(87,*) write(87,'("Stress convergence target achieved")') end if exit end if if (mp_mpi.and.(istp.eq.maxlatvstp)) then write(*,*) write(*,'("Warning(geomopt): lattice optimisation failed to converge in ",& &I6," steps")') maxlatvstp end if stressp(1:nstrain)=stress(1:nstrain) ! delete the eigenvector files call delfiles(evec=.true.) ! end loop over lattice optimisation end do 10 continue if (mp_mpi) then close(71); close(72); close(73); close(74); close(75) if (spinpol) close(78) if (latvopt.ne.0) then close(86); close(87); close(88) end if end if ! ground-state should be run again after lattice optimisation if (latvopt.ne.0) call gndstate ! restore original parameters msmooth=msmooth_ end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnss.f900000644000000000000000000000013214061636517014730 xustar0030 mtime=1623670095.404102038 30 atime=1623670094.187103168 30 ctime=1623670095.404102038 elk-7.2.42/src/eveqnss.f900000644002504400250440000001472014061636517016771 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnss(ngp,igpig,apwalm,evalfv,evecfv,evalsvp,evecsv) use modmain use moddftu use modomp implicit none ! arguments integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) real(8), intent(in) :: evalfv(nstfv,nspnfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv,nspnfv) real(8), intent(out) :: evalsvp(nstsv) complex(8), intent(out) :: evecsv(nstsv,nstsv) ! local variables integer ist,jst,ispn integer is,ias,i,j,k integer nrc,nrci,nrco integer l,lm,nm,npc,npci integer igp,ld,nthd real(8) ts0,ts1 complex(8) zq ! automatic arrays complex(8) wfmt2(npcmtmax,nspnfv),wfmt4(npcmtmax) complex(8) wfmt31(npcmtmax),wfmt32(npcmtmax),wfmt33(npcmtmax) complex(8) wfgp1(ngkmax),wfgp2(ngkmax),wfgp3(ngkmax) ! allocatable arrays complex(8), allocatable :: wfmt1(:,:,:),wfir1(:,:),wfir2(:) ! external functions complex(8), external :: zdotc if (.not.spinpol) then write(*,*) write(*,'("Error(eveqnss): spin-unpolarised calculation")') write(*,*) stop end if call timesec(ts0) ld=lmmaxdm*nspinor ! zero the second-variational Hamiltonian (stored in the eigenvector array) evecsv(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! allocate(wfmt1(npcmtmax,nstfv,nspnfv)) call holdthd(nstfv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfmt2,wfmt31,wfmt32,wfmt33,wfmt4) & !$OMP PRIVATE(ias,is,nrc,nrci,nrco) & !$OMP PRIVATE(npc,npci,zq,ispn) & !$OMP PRIVATE(ist,jst,l,nm,lm,i,j,k) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) nrco=nrc-nrci npc=npcmt(is) npci=npcmti(is) ! de-phasing factor (FC, FB & LN) if (ssdph) zq=zqss(ias) ! compute the first-variational wavefunctions do ispn=1,nspnfv if (ssdph.and.(ispn.eq.2)) zq=conjg(zq) !$OMP DO do ist=1,nstfv call wavefmt(lradstp,ias,ngp(ispn),apwalm(:,:,:,ias,ispn), & evecfv(:,ist,ispn),wfmt1(:,ist,ispn)) ! de-phase if required if (ssdph) wfmt1(1:npc,ist,ispn)=zq*wfmt1(1:npc,ist,ispn) end do !$OMP END DO end do !$OMP DO do jst=1,nstfv ! convert wavefunction to spherical coordinates do ispn=1,nspnfv call zbsht(nrc,nrci,wfmt1(:,jst,ispn),wfmt2(:,ispn)) end do ! apply effective magnetic field and convert to spherical harmonics wfmt4(1:npc)=bsmt(1:npc,ias,3)*wfmt2(1:npc,1) call zfsht(nrc,nrci,wfmt4,wfmt31) wfmt4(1:npc)=-bsmt(1:npc,ias,3)*wfmt2(1:npc,2) call zfsht(nrc,nrci,wfmt4,wfmt32) wfmt4(1:npc)=cmplx(bsmt(1:npc,ias,1),-bsmt(1:npc,ias,2),8)*wfmt2(1:npc,2) call zfsht(nrc,nrci,wfmt4,wfmt33) ! apply muffin-tin potential matrix if required if (tvmatmt) then do l=0,lmaxdm if (tvmmt(l,ias)) then nm=2*l+1 lm=l**2+1 i=npci+lm if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,1,lm,1,ias),ld, & wfmt1(lm,jst,1),lmmaxi,zone,wfmt31(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,1,lm,1,ias),ld, & wfmt1(i,jst,1),lmmaxo,zone,wfmt31(i),lmmaxo) if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,2,lm,2,ias),ld, & wfmt1(lm,jst,2),lmmaxi,zone,wfmt32(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,2,lm,2,ias),ld, & wfmt1(i,jst,2),lmmaxo,zone,wfmt32(i),lmmaxo) if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,1,lm,2,ias),ld, & wfmt1(lm,jst,2),lmmaxi,zone,wfmt33(lm),lmmaxi) end if call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,1,lm,2,ias),ld, & wfmt1(i,jst,2),lmmaxo,zone,wfmt33(i),lmmaxo) end if end do end if ! add to second-variational Hamiltonian matrix ! upper diagonal block call zfmtwr(nrc,nrci,wrcmt(:,is),wfmt31) do ist=1,jst evecsv(ist,jst)=evecsv(ist,jst)+zdotc(npc,wfmt1(:,ist,1),1,wfmt31,1) end do j=jst+nstfv ! lower diagonal block call zfmtwr(nrc,nrci,wrcmt(:,is),wfmt32) do ist=1,jst i=ist+nstfv evecsv(i,j)=evecsv(i,j)+zdotc(npc,wfmt1(:,ist,2),1,wfmt32,1) end do ! off-diagonal block call zfmtwr(nrc,nrci,wrcmt(:,is),wfmt33) do ist=1,nstfv evecsv(ist,j)=evecsv(ist,j)+zdotc(npc,wfmt1(:,ist,1),1,wfmt33,1) end do end do !$OMP END DO ! end loop over atoms end do !$OMP END PARALLEL call freethd(nthd) deallocate(wfmt1) !---------------------------! ! interstitial part ! !---------------------------! call holdthd(nstfv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir1,wfir2,wfgp1,wfgp2,wfgp3) & !$OMP PRIVATE(ispn,igp,ist,i,j) & !$OMP NUM_THREADS(nthd) allocate(wfir1(ngtot,nspnfv),wfir2(ngtot)) ! begin loop over states !$OMP DO do jst=1,nstfv do ispn=1,nspnfv wfir1(:,ispn)=0.d0 do igp=1,ngp(ispn) wfir1(igfft(igpig(igp,ispn)),ispn)=evecfv(igp,jst,ispn) end do ! Fourier transform wavefunction to real-space call zfftifc(3,ngridg,1,wfir1(:,ispn)) end do ! multiply with magnetic field and transform to G-space wfir2(1:ngtot)=bsir(1:ngtot,3)*wfir1(1:ngtot,1) call zfftifc(3,ngridg,-1,wfir2) do igp=1,ngp(1) wfgp1(igp)=wfir2(igfft(igpig(igp,1))) end do wfir2(1:ngtot)=-bsir(1:ngtot,3)*wfir1(1:ngtot,2) call zfftifc(3,ngridg,-1,wfir2) do igp=1,ngp(2) wfgp2(igp)=wfir2(igfft(igpig(igp,2))) end do wfir2(1:ngtot)=cmplx(bsir(1:ngtot,1),-bsir(1:ngtot,2),8)*wfir1(1:ngtot,2) call zfftifc(3,ngridg,-1,wfir2) do igp=1,ngp(1) wfgp3(igp)=wfir2(igfft(igpig(igp,1))) end do ! add to second-variational Hamiltonian matrix ! upper diagonal block do ist=1,jst evecsv(ist,jst)=evecsv(ist,jst)+zdotc(ngp(1),evecfv(:,ist,1),1,wfgp1,1) end do ! lower diagonal block j=jst+nstfv do ist=1,jst i=ist+nstfv evecsv(i,j)=evecsv(i,j)+zdotc(ngp(2),evecfv(:,ist,2),1,wfgp2,1) end do ! off-diagonal block do ist=1,nstfv evecsv(ist,j)=evecsv(ist,j)+zdotc(ngp(1),evecfv(:,ist,1),1,wfgp3,1) end do end do !$OMP END DO deallocate(wfir1,wfir2) !$OMP END PARALLEL call freethd(nthd) ! add the diagonal first-variational part i=0 do ispn=1,nspinor do ist=1,nstfv i=i+1 evecsv(i,i)=evecsv(i,i)+evalfv(ist,ispn) end do end do ! diagonalise the second-variational Hamiltonian call eveqnzh(nstsv,nstsv,evecsv,evalsvp) call timesec(ts1) !$OMP ATOMIC timesv=timesv+ts1-ts0 end subroutine elk-7.2.42/src/PaxHeaders.21776/hartfock.f900000644000000000000000000000013214061636517015045 xustar0030 mtime=1623670095.405102037 30 atime=1623670094.189103166 30 ctime=1623670095.405102037 elk-7.2.42/src/hartfock.f900000644002504400250440000001575614061636517017120 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hartfock use modmain use modmpi use modomp implicit none ! local variables integer ik,lp,nthd real(8) etp,de ! allocatable arrays real(8), allocatable :: vmt(:,:),vir(:) real(8), allocatable :: bmt(:,:,:),bir(:,:) complex(8), allocatable :: evecsv(:,:) ! initialise universal variables call init0 call init1 call init2 ! read the charge density from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! generate the first- and second-variational eigenvectors and eigenvalues call genevfsv ! find the occupation numbers and Fermi energy call occupy ! generate the kinetic matrix elements in the first-variational basis call genkmat(.true.,.true.) ! allocate local arrays allocate(vmt(npcmtmax,natmtot),vir(ngtot)) if (hybrid.and.spinpol) then allocate(bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag)) end if ! only the MPI master process should write files if (mp_mpi) then ! open HF_INFO.OUT file open(60,file='HF_INFO'//trim(filext),form='FORMATTED') ! open TOTENERGY.OUT open(61,file='TOTENERGY'//trim(filext),form='FORMATTED') ! open FERMIDOS.OUT open(62,file='FERMIDOS'//trim(filext),form='FORMATTED') ! open MOMENT.OUT if required if (spinpol) open(63,file='MOMENT'//trim(filext),form='FORMATTED') ! open GAP.OUT open(64,file='GAP'//trim(filext),form='FORMATTED') ! open DTOTENERGY.OUT open(66,file='DTOTENERGY'//trim(filext),form='FORMATTED') ! open MOMENTM.OUT if (spinpol) open(68,file='MOMENTM'//trim(filext),form='FORMATTED') ! write out general information to HF_INFO.OUT call writeinfo(60) end if ! set last self-consistent loop flag tlast=.false. etp=0.d0 ! begin the self-consistent loop if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') end if do iscl=1,maxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') flush(60) write(*,*) write(*,'("Info(hartfock): self-consistent loop number : ",I4)') iscl end if if (iscl.ge.maxscl) then if (mp_mpi) then write(60,*) write(60,'("Reached self-consistent loops maximum")') end if tlast=.true. end if ! reset the OpenMP thread variables call omp_reset ! compute the Hartree-Fock local potentials call hflocal(vmt,vir,bmt,bir) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecsv) & !$OMP NUM_THREADS(nthd) allocate(evecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call getevecsv(filext,ik,vkl(:,ik),evecsv) ! solve the Hartree-Fock eigenvalue equation call eveqnhf(ik,vmt,vir,bmt,bir,evecsv) ! write the eigenvalues/vectors to file call putevalsv(filext,ik,evalsv(:,ik)) call putevecsv(filext,ik,evecsv) end do !$OMP END DO deallocate(evecsv) !$OMP END PARALLEL call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! broadcast eigenvalue array to every process do ik=1,nkpt lp=mod(ik-1,np_mpi) call mpi_bcast(evalsv(:,ik),nstsv,mpi_double_precision,lp,mpicom,ierror) end do ! find the occupation numbers and Fermi energy call occupy if (mp_mpi) then ! write the occupation numbers to file do ik=1,nkpt call putoccsv(filext,ik,occsv(:,ik)) end do ! write out the eigenvalues and occupation numbers call writeeval ! write the Fermi energy to file call writefermi end if ! generate the density and magnetisation call rhomag ! compute the energy components call energy if (mp_mpi) then ! output energy components call writeengy(60) write(60,*) write(60,'("Density of states at Fermi energy : ",G18.10)') fermidos write(60,'(" (states/Hartree/unit cell)")') write(60,*) write(60,'("Estimated indirect band gap : ",G18.10)') bandgap(1) write(60,'(" from k-point ",I6," to k-point ",I6)') ikgap(1),ikgap(2) write(60,'("Estimated direct band gap : ",G18.10)') bandgap(2) write(60,'(" at k-point ",I6)') ikgap(3) ! write total energy to TOTENERGY.OUT write(61,'(G22.12)') engytot flush(61) ! write DOS at Fermi energy to FERMIDOS.OUT write(62,'(G18.10)') fermidos flush(62) ! output charges and moments call writechg(60) if (spinpol) then call writemom(60) ! write total moment to MOMENT.OUT write(63,'(3G18.10)') momtot(1:ndmag) flush(63) ! write total moment magnitude to MOMENTM.OUT write(68,'(G18.10)') momtotm flush(68) end if ! write estimated Hartree-Fock indirect band gap write(64,'(G22.12)') bandgap(1) flush(64) end if if (tlast) goto 10 ! compute the change in total energy and check for convergence if (iscl.ge.2) then de=abs(engytot-etp) if (mp_mpi) then write(60,*) write(60,'("Absolute change in total energy (target) : ",G18.10," (",& &G18.10,")")') de,epsengy end if if (de.lt.epsengy) then if (mp_mpi) then write(60,*) write(60,'("Energy convergence target achieved")') end if tlast=.true. end if if (mp_mpi) then write(66,'(G18.10)') de flush(66) end if end if etp=engytot ! check for STOP file call checkstop if (tstop) tlast=.true. ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) end do 10 continue if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') if (maxscl.gt.1) then call writestate write(60,*) write(60,'("Wrote STATE.OUT")') end if end if !-----------------------! ! compute forces ! !-----------------------! if (tforce) then call force ! output forces to HF_INFO.OUT if (mp_mpi) call writeforces(60) end if if (mp_mpi) then write(60,*) write(60,'("+----------------------------+")') write(60,'("| Elk version ",I1.1,".",I1.1,".",I2.2," stopped |")') version write(60,'("+----------------------------+")') ! close the HF_INFO.OUT file close(60) ! close the TOTENERGY.OUT file close(61) ! close the FERMIDOS.OUT file close(62) ! close the MOMENT.OUT and MOMENTM.OUT files if (spinpol) then close(63); close(68) end if ! close the GAP.OUT file close(64) ! close the DTOTENERGY.OUT file close(66) end if deallocate(vmt,vir) if (hybrid.and.spinpol) deallocate(bmt,bir) end subroutine elk-7.2.42/src/PaxHeaders.21776/potplot.f900000644000000000000000000000013214061636517014745 xustar0030 mtime=1623670095.407102035 30 atime=1623670094.190103165 30 ctime=1623670095.407102035 elk-7.2.42/src/potplot.f900000644002504400250440000000411614061636517017004 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: potplot ! !INTERFACE: subroutine potplot ! !USES: use modmain ! !DESCRIPTION: ! Outputs the exchange, correlation and Coulomb potentials, read in from ! {\tt STATE.OUT}, for 1D, 2D or 3D plotting. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! initialise universal variables call init0 ! read the density and potentials from file call readstate ! write the potential plots to file select case(task) case(41) open(50,file='VCL1D.OUT',form='FORMATTED',action='WRITE') open(51,file='VLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,1,vclmt,vclir) close(50) close(51) open(50,file='VXC1D.OUT',form='FORMATTED',action='WRITE') open(51,file='VLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,1,vxcmt,vxcir) close(50) close(51) write(*,*) write(*,'("Info(potplot):")') write(*,'(" 1D Coulomb potential plot written to VCL1D.OUT")') write(*,'(" 1D exchange-correlation potential plot written to VXC1D.OUT")') write(*,'(" vertex location lines written to VLINES.OUT")') case(42) open(50,file='VCL2D.OUT',form='FORMATTED',action='WRITE') call plot2d(.false.,50,1,vclmt,vclir) close(50) open(50,file='VXC2D.OUT',form='FORMATTED',action='WRITE') call plot2d(.false.,50,1,vxcmt,vxcir) close(50) write(*,*) write(*,'("Info(potplot):")') write(*,'(" 2D Coulomb potential plot written to VCL2D.OUT")') write(*,'(" 2D exchange-correlation potential plot written to VXC2D.OUT")') case(43) open(50,file='VCL3D.OUT',form='FORMATTED',action='WRITE') call plot3d(50,1,vclmt,vclir) close(50) open(50,file='VXC3D.OUT',form='FORMATTED',action='WRITE') call plot3d(50,1,vxcmt,vxcir) close(50) write(*,*) write(*,'("Info(potplot):")') write(*,'(" 3D Coulomb potential plot written to VCL3D.OUT")') write(*,'(" 3D exchange-correlation potential plot written to VXC3D.OUT")') end select end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genwfpw.f900000644000000000000000000000013214061636517014721 xustar0030 mtime=1623670095.409102033 30 atime=1623670094.192103163 30 ctime=1623670095.409102033 elk-7.2.42/src/genwfpw.f900000644002504400250440000001350714061636517016764 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genwfpw(vpl,ngp,igpig,vgpl,vgpc,gpc,sfacgp,nhp,vhpc,hpc,sfachp,wfpw) use modmain use modpw implicit none ! arguments real(8), intent(in) :: vpl(3) integer, intent(in) :: ngp(nspnfv),igpig(ngkmax,nspnfv) real(8), intent(in) :: vgpl(3,ngkmax,nspnfv),vgpc(3,ngkmax,nspnfv) real(8), intent(in) :: gpc(ngkmax,nspnfv) complex(8), intent(in) :: sfacgp(ngkmax,natmtot,nspnfv) integer, intent(in) :: nhp(nspnfv) real(8), intent(in) :: vhpc(3,nhkmax,nspnfv),hpc(nhkmax,nspnfv) complex(8), intent(in) :: sfachp(nhkmax,natmtot,nspnfv) complex(8), intent(out) :: wfpw(nhkmax,nspinor,nstsv) ! local variables integer ispn0,ispn1,ispn,jspn integer ist,is,ia,ias integer nrc,nrci,irco,irc integer lmax,l,m,lm integer npci,i,igp,ihp real(8) t0,t1 complex(8) zsm,z1,z2,z3,z4 ! automatic arrays integer idx(nstsv) complex(8) ylm(lmmaxo) ! allocatable arrays real(8), allocatable :: jl(:,:) complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgp(:,:,:) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),evecsv(nstsv,nstsv)) allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv)) allocate(wfgp(ngkmax,nspinor,nstsv)) ! get the eigenvectors from file call getevecfv(filext,0,vpl,vgpl,evecfv) call getevecsv(filext,0,vpl,evecsv) ! find the matching coefficients do ispn=1,nspnfv call match(ngp(ispn),vgpc(:,:,ispn),gpc(:,ispn),sfacgp(:,:,ispn), & apwalm(:,:,:,:,ispn)) end do ! index to all states do ist=1,nstsv idx(ist)=ist end do ! calculate the second-variational wavefunctions for all states call genwfsv(.true.,.true.,nstsv,idx,ngridg,igfft,ngp,igpig,apwalm,evecfv, & evecsv,wfmt,ngkmax,wfgp) deallocate(apwalm,evecfv,evecsv) ! zero the plane wave coefficients wfpw(:,:,:)=0.d0 !---------------------------! ! interstitial part ! !---------------------------! do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if i=1 do ihp=1,nhp(jspn) do igp=i,ngp(jspn) t1=abs(vhpc(1,ihp,jspn)-vgpc(1,igp,jspn)) & +abs(vhpc(2,ihp,jspn)-vgpc(2,igp,jspn)) & +abs(vhpc(3,ihp,jspn)-vgpc(3,igp,jspn)) if (t1.lt.epslat) then do ist=1,nstsv do ispn=ispn0,ispn1 wfpw(ihp,ispn,ist)=wfgp(igp,ispn,ist) end do end do if (igp.eq.i) i=i+1 exit end if end do end do end do !-------------------------! ! muffin-tin part ! !-------------------------! allocate(jl(0:lmaxo,nrcmtmax)) t0=fourpi/sqrt(omega) ! remove continuation of interstitial function into muffin-tin do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if ! loop over G+p-vectors do igp=1,ngp(jspn) ! generate the conjugate spherical harmonics Y_lm*(G+p) call genylmv(lmaxo,vgpc(:,igp,jspn),ylm) ylm(:)=conjg(ylm(:)) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) irco=nrci+1 npci=npcmti(is) ! generate spherical Bessel functions lmax=lmaxi do irc=1,nrc t1=gpc(igp,jspn)*rcmt(irc,is) call sbessel(lmax,t1,jl(:,irc)) if (irc.eq.nrci) lmax=lmaxo end do ! loop over atoms do ia=1,natoms(is) ias=idxas(ia,is) z1=t0*sfacgp(igp,ias,jspn) do ist=1,nstsv do ispn=ispn0,ispn1 z2=z1*wfgp(igp,ispn,ist) lm=0 do l=0,lmaxi z3=z2*zil(l) do m=-l,l lm=lm+1 z4=z3*ylm(lm) i=lm do irc=1,nrci wfmt(i,ias,ispn,ist)=wfmt(i,ias,ispn,ist)-z4*jl(l,irc) i=i+lmmaxi end do end do end do lm=0 do l=0,lmaxo z3=z2*zil(l) do m=-l,l lm=lm+1 z4=z3*ylm(lm) i=npci+lm do irc=irco,nrc wfmt(i,ias,ispn,ist)=wfmt(i,ias,ispn,ist)-z4*jl(l,irc) i=i+lmmaxo end do end do end do end do end do end do end do end do end do ! Fourier transform the muffin-tin wavefunctions do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if ! loop over H+p-vectors do ihp=1,nhp(jspn) ! generate the spherical harmonics Y_lm(H+p) call genylmv(lmaxo,vhpc(:,ihp,jspn),ylm) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) ! generate spherical Bessel functions lmax=lmaxi do irc=1,nrc t1=hpc(ihp,jspn)*rcmt(irc,is) call sbessel(lmax,t1,jl(:,irc)) if (irc.eq.nrci) lmax=lmaxo end do do ia=1,natoms(is) ias=idxas(ia,is) ! conjugate structure factor z3=t0*conjg(sfachp(ihp,ias,jspn)) ! loop over states do ist=1,nstsv do ispn=ispn0,ispn1 zsm=0.d0 lmax=lmaxi i=0 do irc=1,nrc i=i+1 z1=jl(0,irc)*wfmt(i,ias,ispn,ist)*ylm(1) lm=1 do l=1,lmax lm=lm+1 i=i+1 z2=wfmt(i,ias,ispn,ist)*ylm(lm) do m=1-l,l lm=lm+1 i=i+1 z2=z2+wfmt(i,ias,ispn,ist)*ylm(lm) end do z1=z1+jl(l,irc)*zilc(l)*z2 end do zsm=zsm+wrcmt(irc,is)*z1 if (irc.eq.nrci) lmax=lmaxo end do ! add to the H+p wavefunction wfpw(ihp,ispn,ist)=wfpw(ihp,ispn,ist)+z3*zsm end do end do end do end do end do end do deallocate(jl,wfmt,wfgp) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlxbse.f900000644000000000000000000000013214061636517014706 xustar0030 mtime=1623670095.410102032 30 atime=1623670094.194103161 30 ctime=1623670095.410102032 elk-7.2.42/src/hmlxbse.f900000644002504400250440000000125414061636517016745 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmlxbse use modmain use modmpi use modomp implicit none ! local variables integer ik2,nthd call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik2=1,nkptnr ! distribute among MPI processes if (mod(ik2-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(hmlxbse_) write(*,'("Info(hmlxbse): ",I6," of ",I6," k-points")') ik2,nkptnr !$OMP END CRITICAL(hmlxbse_) call hmlxbsek(ik2) end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlxbsek.f900000644000000000000000000000013114061636517015060 xustar0030 mtime=1623670095.412102031 29 atime=1623670094.19510316 30 ctime=1623670095.412102031 elk-7.2.42/src/hmlxbsek.f900000644002504400250440000000671614061636517017130 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmlxbsek(ik2) use modmain implicit none ! arguments integer, intent(in) :: ik2 ! local variables integer ik1,ist1,ist2,jst1,jst2 integer i1,i2,j1,j2,a1,a2,b1,b2 integer is,ias,l real(8) t0 complex(8) z1 ! automatic arrays integer idx(nstsv),ngp(nspnfv) ! allocatable arrays integer, allocatable :: igpig(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:,:),zvclir(:,:) complex(8), allocatable :: zfmt(:) ! external functions complex(8), external :: zfinp ! allocate local arrays allocate(igpig(ngkmax,nspnfv)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) allocate(zvclmt(npcmtmax,natmtot,nvcbse),zvclir(ngtc,nvcbse)) allocate(zfmt(npcmtmax)) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of k-point ik2 call genwfsvp(.false.,.false.,nstsv,idx,ngdgc,igfc,vkl(:,ik2),ngp,igpig,wfmt2, & ngtc,wfir2) l=0 do i2=1,nvbse ist2=istbse(i2,ik2) do j2=1,ncbse jst2=jstbse(j2,ik2) a2=ijkbse(i2,j2,ik2) l=l+1 ! calculate the complex overlap density call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist2),wfir2(:,:,ist2), & wfmt2(:,:,:,jst2),wfir2(:,:,jst2),zrhomt,zrhoir) ! compute the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax,zrhomt, & zvclmt(:,:,l)) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc,gc, & gclg,ngvec,jlgrmt,ylmg,sfacg,zrhoir,npcmtmax,zvclmt(:,:,l),zvclir(:,l)) zvclir(:,l)=zvclir(:,l)*cfrc(:) end do end do t0=occmax*wkptnr ! start loop over ik1 do ik1=1,nkptnr if (ik1.eq.ik2) then wfmt1(:,:,:,:)=wfmt2(:,:,:,:) wfir1(:,:,:)=wfir2(:,:,:) else call genwfsvp(.false.,.false.,nstsv,idx,ngdgc,igfc,vkl(:,ik1),ngp,igpig, & wfmt1,ngtc,wfir1) end if do i1=1,nvbse ist1=istbse(i1,ik1) do j1=1,ncbse jst1=jstbse(j1,ik1) a1=ijkbse(i1,j1,ik1) ! calculate the complex overlap density call genzrho(.true.,.true.,ngtc,wfmt1(:,:,:,ist1),wfir1(:,:,ist1), & wfmt1(:,:,:,jst1),wfir1(:,:,jst1),zrhomt,zrhoir) l=0 do i2=1,nvbse ist2=istbse(i2,ik2) do j2=1,ncbse jst2=jstbse(j2,ik2) a2=ijkbse(i2,j2,ik2) l=l+1 ! compute the matrix element z1=t0*zfinp(zrhomt,zrhoir,zvclmt(:,:,l),zvclir(:,l)) hmlbse(a1,a2)=hmlbse(a1,a2)+z1 ! compute off-diagonal blocks if required if (bsefull) then b1=a1+nbbse b2=a2+nbbse hmlbse(b1,b2)=hmlbse(b1,b2)-conjg(z1) ! conjugate the potential do ias=1,natmtot is=idxis(ias) call zfmtconj(nrcmt(is),nrcmti(is),npcmt(is),zvclmt(:,ias,l)) end do zvclir(:,l)=conjg(zvclir(:,l)) z1=t0*zfinp(zrhomt,zrhoir,zvclmt(:,:,l),zvclir(:,l)) hmlbse(a1,b2)=hmlbse(a1,b2)+z1 hmlbse(b1,a2)=hmlbse(b1,a2)-conjg(z1) end if end do end do end do end do end do deallocate(igpig,wfmt1,wfmt2,wfir1,wfir2) deallocate(zrhomt,zrhoir,zvclmt,zvclir,zfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmldbse.f900000644000000000000000000000013014061636517014660 xustar0029 mtime=1623670095.41310203 30 atime=1623670094.197103158 29 ctime=1623670095.41310203 elk-7.2.42/src/hmldbse.f900000644002504400250440000000125414061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmldbse use modmain use modmpi use modomp implicit none ! local variables integer ik2,nthd call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik2=1,nkptnr ! distribute among MPI processes if (mod(ik2-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(hmldbse_) write(*,'("Info(hmldbse): ",I6," of ",I6," k-points")') ik2,nkptnr !$OMP END CRITICAL(hmldbse_) call hmldbsek(ik2) end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmldbsek.f900000644000000000000000000000013214061636517015035 xustar0030 mtime=1623670095.415102028 30 atime=1623670094.199103157 30 ctime=1623670095.415102028 elk-7.2.42/src/hmldbsek.f900000644002504400250440000001434514061636517017101 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmldbsek(ik2) use modmain use modomp implicit none ! arguments integer, intent(in) :: ik2 ! local variables integer ik1,ist1,ist2,jst1,jst2 integer i1,i2,j1,j2,a1,a2,b1,b2 integer iv(3),iq,ig,jg,nthd real(8) vl(3),vc(3),t0,t1,t2 complex(8) z1 ! automatic arrays integer idx(nstsv),ngp(nspnfv) ! allocatable arrays integer, allocatable :: igpig(:,:) real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqr(:,:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvv(:,:,:),zcc(:,:,:) complex(8), allocatable :: zvc(:,:,:),zcv(:,:,:) complex(8), allocatable :: epsi(:,:,:) allocate(igpig(ngkmax,nspnfv)) allocate(vgqc(3,ngrf),gqc(ngrf),gclgq(ngrf)) allocate(jlgqr(njcmax,nspecies,ngrf)) allocate(ylmgq(lmmaxo,ngrf),sfacgq(ngrf,natmtot)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zvv(ngrf,nvbse,nvbse),zcc(ngrf,ncbse,ncbse)) allocate(epsi(ngrf,ngrf,nwrf)) if (bsefull) then allocate(zvc(ngrf,nvbse,ncbse)) allocate(zcv(ngrf,ncbse,nvbse)) end if ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! generate the wavefunctions for all states of k-point ik2 call genwfsvp(.false.,.false.,nstsv,idx,ngdgc,igfc,vkl(:,ik2),ngp,igpig,wfmt2, & ngtc,wfir2) ! begin loop over ik1 do ik1=1,nkptnr ! generate the wavefunctions for all states of k-point ik1 call genwfsvp(.false.,.false.,nstsv,idx,ngdgc,igfc,vkl(:,ik1),ngp,igpig, & wfmt1,ngtc,wfir1) ! determine equivalent q-vector in first Brillouin zone iv(:)=ivk(:,ik1)-ivk(:,ik2) iv(:)=modulo(iv(:),ngridk(:)) iq=ivqiq(iv(1),iv(2),iv(3)) ! q-vector in lattice and Cartesian coordinates vl(:)=vkl(:,ik1)-vkl(:,ik2) vc(:)=vkc(:,ik1)-vkc(:,ik2) ! generate the G+q-vectors and related functions call gengqf(ngrf,vc,vgqc,gqc,jlgqr,ylmgq,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngrf,gqc,gclgq) ! symmetrise the Coulomb Green's function gclgq(:)=sqrt(gclgq(:)) ! compute the matrix elements call holdthd(nvbse,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,ist1,ist2,i2) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) !$OMP DO do i1=1,nvbse ist1=istbse(i1,ik1) do i2=1,nvbse ist2=istbse(i2,ik2) call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist2),wfir2(:,:,ist2), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zvv(:,i1,i2)) end do end do !$OMP END DO deallocate(zrhomt,zrhoir) !$OMP END PARALLEL call freethd(nthd) ! compute the matrix elements call holdthd(ncbse,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,jst1,jst2,j2) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) !$OMP DO do j1=1,ncbse jst1=jstbse(j1,ik1) do j2=1,ncbse jst2=jstbse(j2,ik2) call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,jst2),wfir2(:,:,jst2), & wfmt1(:,:,:,jst1),wfir1(:,:,jst1),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zcc(:,j1,j2)) end do end do !$OMP END DO deallocate(zrhomt,zrhoir) !$OMP END PARALLEL call freethd(nthd) ! matrix elements for full BSE kernel if required if (bsefull) then ! compute the matrix elements call holdthd(nvbse,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,ist1,jst2,j2) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) !$OMP DO do i1=1,nvbse ist1=istbse(i1,ik1) do j2=1,ncbse jst2=jstbse(j2,ik2) call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,jst2),wfir2(:,:,jst2), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zvc(:,i1,j2)) end do end do !$OMP END DO deallocate(zrhomt,zrhoir) !$OMP END PARALLEL call freethd(nthd) ! compute the matrix elements call holdthd(ncbse,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,jst1,ist2,i2) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) !$OMP DO do j1=1,ncbse jst1=jstbse(j1,ik1) do i2=1,nvbse ist2=istbse(i2,ik2) call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist2),wfir2(:,:,ist2), & wfmt1(:,:,:,jst1),wfir1(:,:,jst1),zrhomt,zrhoir) call zftzf(ngrf,jlgqr,ylmgq,ngrf,sfacgq,zrhomt,zrhoir,zcv(:,j1,i2)) end do end do !$OMP END DO deallocate(zrhomt,zrhoir) !$OMP END PARALLEL call freethd(nthd) end if ! get RPA inverse epsilon from file call getcfgq('EPSINV.OUT',vl,ngrf,nwrf,epsi) t0=wkptnr*omega do i1=1,nvbse do j1=1,ncbse a1=ijkbse(i1,j1,ik1) do i2=1,nvbse do j2=1,ncbse a2=ijkbse(i2,j2,ik2) z1=0.d0 do ig=1,ngrf t1=t0*gclgq(ig) do jg=1,ngrf t2=t1*gclgq(jg) z1=z1+t2*epsi(ig,jg,1)*conjg(zcc(ig,j1,j2))*zvv(jg,i1,i2) end do end do hmlbse(a1,a2)=hmlbse(a1,a2)-z1 ! compute off-diagonal blocks if required if (bsefull) then b1=a1+nbbse b2=a2+nbbse hmlbse(b1,b2)=hmlbse(b1,b2)+conjg(z1) z1=0.d0 do ig=1,ngrf t1=t0*gclgq(ig) do jg=1,ngrf t2=t1*gclgq(jg) z1=z1+t2*epsi(ig,jg,1)*conjg(zcv(ig,j1,i2))*zvc(jg,i1,j2) end do end do hmlbse(a1,b2)=hmlbse(a1,b2)-z1 hmlbse(b1,a2)=hmlbse(b1,a2)+conjg(z1) end if ! end loop over i2 and j2 end do end do ! end loop over i1 and j1 end do end do ! end loop over ik1 end do deallocate(igpig,vgqc,gqc,gclgq,jlgqr) deallocate(ylmgq,sfacgq) deallocate(wfmt1,wfmt2,wfir1,wfir2) deallocate(zvv,zcc,epsi) if (bsefull) deallocate(zvc,zcv) end subroutine elk-7.2.42/src/PaxHeaders.21776/gradwfcr2.f900000644000000000000000000000013214061636517015125 xustar0030 mtime=1623670095.416102027 30 atime=1623670094.200103156 30 ctime=1623670095.416102027 elk-7.2.42/src/gradwfcr2.f900000644002504400250440000000255014061636517017164 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gradwfcr2(gwf2mt) use modmain implicit none ! arguments real(8), intent(inout) :: gwf2mt(npmtmax,natmtot) ! local variables integer ist,is,ias integer nr,nri,iro,ir integer np,l,lm,i ! allocatable arrays complex(8), allocatable :: wfmt(:),gwfmt(:,:),zfmt(:) allocate(wfmt(npmtmax),gwfmt(npmtmax,3),zfmt(npmtmax)) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) iro=nri+1 np=npmt(is) do ist=1,nstsp(is) if (spcore(ist,is).and.(ksp(ist,is).eq.lsp(ist,is)+1)) then l=lsp(ist,is) do lm=l**2+1,(l+1)**2 wfmt(1:np)=0.d0 i=lm do ir=1,nri wfmt(i)=rwfcr(ir,1,ist,ias)/rsp(ir,is) i=i+lmmaxi end do do ir=iro,nr wfmt(i)=rwfcr(ir,1,ist,ias)/rsp(ir,is) i=i+lmmaxo end do call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),wfmt,npmtmax,gwfmt) do i=1,3 call zbsht(nr,nri,gwfmt(:,i),zfmt) ! factor of 2 from spin gwf2mt(1:np,ias)=gwf2mt(1:np,ias) & +2.d0*(dble(zfmt(1:np))**2+aimag(zfmt(1:np))**2) end do end do end if end do ! end loops over atoms end do deallocate(wfmt,gwfmt,zfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/oepresk.f900000644000000000000000000000013214061636517014714 xustar0030 mtime=1623670095.418102025 30 atime=1623670094.202103154 30 ctime=1623670095.418102025 elk-7.2.42/src/oepresk.f900000644002504400250440000001402714061636517016755 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine oepresk(ik,vclcv,vclvv,dvxmt,dvxir,dbxmt,dbxir) use modmain implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: vclcv(ncrmax,natmtot,nstsv,nkpt) complex(8), intent(in) :: vclvv(nstsv,nstsv,nkpt) real(8), intent(inout) :: dvxmt(npcmtmax,natmtot),dvxir(ngtot) real(8), intent(inout) :: dbxmt(npcmtmax,natmtot,ndmag),dbxir(ngtot,ndmag) ! local variables integer ist,jst,idm integer is,ia,ias,ic,m integer nrc,nrci,npc real(8) de complex(8) z1,z2 ! automatic arrays integer idx(nstsv) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:),wfcr(:,:) complex(8), allocatable :: zfmt1(:),zvfmt1(:,:) complex(8), allocatable :: zfmt2(:,:),zfir2(:) complex(8), allocatable :: zvfmt2(:,:,:),zvfir2(:,:) ! external functions complex(8), external :: rzfinp,rzfmtinp ! get the eigenvalues/vectors from file for input k-point allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! find the matching coefficients allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! index to all states do ist=1,nstsv idx(ist)=ist end do ! calculate the wavefunctions for all states allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfir(ngtot,nspinor,nstsv)) call genwfsv(.false.,.false.,nstsv,idx,ngridg,igfft,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt,ngtot,wfir) deallocate(apwalm,evecfv,evecsv) !-----------------------------------------------------------! ! core-conduction overlap density and magnetisation ! !-----------------------------------------------------------! allocate(wfcr(npcmtmax,2),zfmt1(npcmtmax)) if (spinpol) allocate(zvfmt1(npcmtmax,ndmag)) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) ic=0 do ist=1,nstsp(is) if (spcore(ist,is)) then do m=-ksp(ist,is),ksp(ist,is)-1 ic=ic+1 ! pass in m-1/2 to wavefcr call wavefcr(.false.,lradstp,is,ia,ist,m,npcmtmax,wfcr) do jst=1,nstsv if (evalsv(jst,ik).gt.efermi) then if (spinpol) then ! compute the complex density and magnetisation call genzrm(npc,wfcr,wfcr(:,2),wfmt(:,ias,1,jst), & wfmt(:,ias,2,jst),zfmt1,npcmtmax,zvfmt1) else ! compute the complex density zfmt1(1:npc)=conjg(wfcr(1:npc,1))*wfmt(1:npc,ias,1,jst) end if z1=conjg(vclcv(ic,ias,jst,ik)) z2=rzfmtinp(nrc,nrci,wrcmt(:,is),vxmt(:,ias),zfmt1) z1=z1-conjg(z2) do idm=1,ndmag z2=rzfmtinp(nrc,nrci,wrcmt(:,is),bxmt(:,ias,idm),zvfmt1(:,idm)) z1=z1-conjg(z2) end do de=evalcr(ist,ias)-evalsv(jst,ik) z1=z1*occmax*wkpt(ik)/(de+zi*swidth) ! residuals for exchange potential and field !$OMP CRITICAL(oepresk_) call rzadd(npc,z1,zfmt1,dvxmt(:,ias)) do idm=1,ndmag call rzadd(npc,z1,zvfmt1(:,idm),dbxmt(:,ias,idm)) end do !$OMP END CRITICAL(oepresk_) ! end loop over jst end if end do end do ! end loop over ist end if end do ! end loops over atoms and species end do end do deallocate(wfcr,zfmt1) if (spinpol) deallocate(zvfmt1) !--------------------------------------------------------------! ! valence-conduction overlap density and magnetisation ! !--------------------------------------------------------------! allocate(zfmt2(npcmtmax,natmtot),zfir2(ngtot)) if (spinpol) then allocate(zvfmt2(npcmtmax,natmtot,ndmag),zvfir2(ngtot,ndmag)) end if do ist=1,nstsv if (evalsv(ist,ik).lt.efermi) then do jst=1,nstsv if (evalsv(jst,ik).gt.efermi) then if (spinpol) then ! compute the complex density and magnetisation call genzfrm(wfmt(:,:,1,ist),wfmt(:,:,2,ist),wfir(:,1,ist), & wfir(:,2,ist),wfmt(:,:,1,jst),wfmt(:,:,2,jst),wfir(:,1,jst), & wfir(:,2,jst),zfmt2,zfir2,zvfmt2,zvfir2) else ! compute the complex density call genzrho(.false.,.true.,ngtot,wfmt(:,:,:,ist),wfir(:,:,ist), & wfmt(:,:,:,jst),wfir(:,:,jst),zfmt2,zfir2) end if z1=conjg(vclvv(ist,jst,ik)) z2=rzfinp(vxmt,vxir,zfmt2,zfir2) z1=z1-conjg(z2) do idm=1,ndmag z2=rzfinp(bxmt(:,:,idm),bxir(:,idm),zvfmt2(:,:,idm),zvfir2(:,idm)) z1=z1-conjg(z2) end do de=evalsv(ist,ik)-evalsv(jst,ik) z1=z1*occmax*wkpt(ik)/(de+zi*swidth) ! add to residuals for exchange potential and field !$OMP CRITICAL(oepresk_) call rzfadd(z1,zfmt2,zfir2,dvxmt,dvxir) do idm=1,ndmag call rzfadd(z1,zvfmt2(:,:,idm),zvfir2(:,idm),dbxmt(:,:,idm), & dbxir(:,idm)) end do !$OMP END CRITICAL(oepresk_) ! end loop over jst end if end do ! end loop over ist end if end do deallocate(wfmt,wfir,zfmt2,zfir2) if (spinpol) deallocate(zvfmt2,zvfir2) end subroutine subroutine rzadd(n,za,zv,rv) implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: za real(8), intent(in) :: zv(2*n) real(8), intent(out) :: rv(n) ! local variables real(8) t1 t1=dble(za) if (abs(t1).gt.1.d-12) call daxpy(n,t1,zv,2,rv,1) t1=-aimag(za) if (abs(t1).gt.1.d-12) call daxpy(n,t1,zv(2),2,rv,1) end subroutine subroutine rzfadd(za,zfmt,zfir,rfmt,rfir) use modmain implicit none ! arguments complex(8), intent(in) :: za complex(8), intent(in) :: zfmt(npcmtmax,natmtot),zfir(ngtot) real(8), intent(inout) :: rfmt(npcmtmax,natmtot),rfir(ngtot) ! local variables integer is,ias do ias=1,natmtot is=idxis(ias) call rzadd(npcmt(is),za,zfmt(:,ias),rfmt(:,ias)) end do call rzadd(ngtot,za,zfir,rfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/addlorbcnd.f900000644000000000000000000000013214061636517015340 xustar0030 mtime=1623670095.419102024 30 atime=1623670094.204103152 30 ctime=1623670095.419102024 elk-7.2.42/src/addlorbcnd.f900000644002504400250440000000157214061636517017402 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine addlorbcnd use modmain implicit none ! local variables integer is,nlo,l,io if (.not.lorbcnd) return ! add conduction local-orbitals to each species do is=1,nspecies nlo=nlorb(is) do l=0,lmaxo nlo=nlo+1 if (nlo.gt.maxlorb) then write(*,*) write(*,'("Error(addlorbcnd): nlorb too large : ",I8)') nlo write(*,'(" for species ",I4)') is write(*,'("Adjust maxlorb in modmain and recompile code")') write(*,*) stop end if lorbl(nlo,is)=l lorbord(nlo,is)=lorbordc do io=1,lorbordc lorbe0(io,nlo,is)=0.15d0 lorbdm(io,nlo,is)=io-1 lorbve(io,nlo,is)=.true. end do end do nlorb(is)=nlo end do end subroutine elk-7.2.42/src/PaxHeaders.21776/energy.f900000644000000000000000000000013114061636517014534 xustar0030 mtime=1623670095.421102022 29 atime=1623670094.20610315 30 ctime=1623670095.421102022 elk-7.2.42/src/energy.f900000644002504400250440000002127614061636517016602 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: energy ! !INTERFACE: subroutine energy ! !USES: use modmain use moddftu use modtest ! !DESCRIPTION: ! Computes the total energy and its individual contributions. The kinetic ! energy is given by ! $$ T_s=\sum_i n_i\epsilon_i-\int\rho({\bf r})[v_{\rm C}({\bf r}) ! +v_{\rm xc}({\bf r})]d{\bf r}-\int {\bf m}({\bf r})\cdot ! ({\bf B}_{\rm xc}({\bf r})+{\bf B}_{\rm ext}({\bf r}))d{\bf r}, $$ ! where $n_i$ are the occupancies and $\epsilon_i$ are the eigenvalues of both ! the core and valence states; $\rho$ is the density; ${\bf m}$ is the ! magnetisation density; $v_{\rm C}$ is the Coulomb potential; $v_{\rm xc}$ ! and ${\bf B}_{\rm xc}$ are the exchange-correlation potential and magnetic ! field, respectively; and ${\bf B}_{\rm ext}$ is the external magnetic field. ! The Hartree, electron-nuclear and nuclear-nuclear electrostatic energies are ! combined into the Coulomb energy: ! \begin{align*} ! E_{\rm C}&=E_{\rm H}+E_{\rm en}+E_{\rm nn} \\ ! &=\frac{1}{2}V_{\rm C}+E_{\rm Mad}, ! \end{align*} ! where ! $$ V_{\rm C}=\int\rho({\bf r})v_{\rm C}({\bf r})d{\bf r} $$ ! is the Coulomb potential energy. The Madelung energy is given by ! $$ E_{\rm Mad}=\frac{1}{2}\sum_{\alpha}z_{\alpha}R_{\alpha}, $$ ! where ! $$ R_{\alpha}=\lim_{r\rightarrow 0}\left(v^{\rm C}_{\alpha;00}(r)Y_{00} ! +\frac{z_{\alpha}}{r}\right) $$ ! for atom $\alpha$, with $v^{\rm C}_{\alpha;00}$ being the $l=0$ component of ! the spherical harmonic expansion of $v_{\rm C}$ in the muffin-tin, and ! $z_{\alpha}$ is the nuclear charge. Using the nuclear-nuclear energy ! determined at the start of the calculation, the electron-nuclear and Hartree ! energies can be isolated with ! $$ E_{\rm en}=2\left(E_{\rm Mad}-E_{\rm nn}\right) $$ ! and ! $$ E_{\rm H}=\frac{1}{2}(E_{\rm C}-E_{\rm en}). $$ ! Finally, the total energy is ! $$ E=T_s+E_{\rm C}+E_{\rm xc}, $$ ! where $E_{\rm xc}$ is obtained either by integrating the ! exchange-correlation energy density, or in the case of exact exchange, the ! explicit calculation of the Fock exchange integral. The energy from the ! external magnetic fields in the muffin-tins, {\tt bfcmt}, is always removed ! from the total since these fields are non-physical: their field lines do not ! close. The energy of the physical external field, {\tt bfieldc}, is also not ! included in the total because this field, like those in the muffin-tins, is ! used for breaking spin symmetry and taken to be infintesimal. If this field ! is intended to be finite, then the associated energy, {\tt engybext}, should ! be added to the total by hand. See {\tt potxc}, {\tt exxengy} and related ! subroutines. ! ! !REVISION HISTORY: ! Created May 2003 (JKD) !EOP !BOC implicit none ! local variables integer ik,ist,ispn,idm,jdm integer is,ia,ias,np,n2,i real(8) cb,sm,w,f complex(8) z1 ! allocatable arrays real(8), allocatable :: rfmt(:,:) complex(8), allocatable :: evecsv(:,:),kmat(:,:),c(:,:) ! external functions real(8), external :: rfinp complex(8), external :: zdotc ! coupling constant of the external field (g_e/4c) cb=gfacte/(4.d0*solsc) !-----------------------------------------------! ! exchange-correlation potential energy ! !-----------------------------------------------! engyvxc=rfinp(rhomt,rhoir,vxcmt,vxcir) !-----------------------------------------------------! ! exchange-correlation effective field energy ! !-----------------------------------------------------! engybxc=0.d0 do idm=1,ndmag engybxc=engybxc+rfinp(magmt(:,:,idm),magir(:,idm),bxcmt(:,:,idm),bxcir(:,idm)) end do !------------------------------------------! ! external magnetic field energies ! !------------------------------------------! engybext=0.d0 do idm=1,ndmag if (ncmag) then jdm=idm else jdm=3 end if ! energy of physical global field engybext=engybext+cb*momtot(idm)*bfieldc(jdm) end do !----------------------------------! ! Coulomb potential energy ! !----------------------------------! engyvcl=rfinp(rhomt,rhoir,vclmt,vclir) !-----------------------! ! Madelung term ! !-----------------------! engymad=0.d0 do ias=1,natmtot is=idxis(ias) engymad=engymad+0.5d0*spzn(is)*(vclmt(1,ias)-vcln(1,is))*y00 end do !---------------------------------------------! ! electron-nuclear interaction energy ! !---------------------------------------------! engyen=2.d0*(engymad-engynn) !------------------------! ! Hartree energy ! !------------------------! engyhar=0.5d0*(engyvcl-engyen) !------------------------! ! Coulomb energy ! !------------------------! engycl=engynn+engyen+engyhar !-------------------------! ! exchange energy ! !-------------------------! if ((xctype(1).lt.0).or.(task.eq.5)) then ! exact exchange for OEP-EXX or Hartree-Fock on last self-consistent loop if (tlast) then call exxengy ! mix exact and DFT exchange energies for hybrid functionals if (hybrid) then engyx=engyx*hybridc engyx=engyx+rfinp(rhomt,rhoir,exmt,exir) end if else engyx=0.d0 end if else ! exchange energy from the density engyx=rfinp(rhomt,rhoir,exmt,exir) end if !----------------------------! ! correlation energy ! !----------------------------! if (task.eq.5) then if (hybrid) then ! fraction of DFT correlation energy for hybrid functionals engyc=rfinp(rhomt,rhoir,ecmt,ecir) else ! zero correlation energy for pure Hartree-Fock engyc=0.d0 end if else ! correlation energy from the density engyc=rfinp(rhomt,rhoir,ecmt,ecir) end if !----------------------! ! DFT+U energy ! !----------------------! engydu=0.d0 if (dftu.ne.0) then do i=1,ndftu is=idftu(1,i) do ia=1,natoms(is) engydu=engydu+engyadu(ia,i) end do end do end if !----------------------------! ! sum of eigenvalues ! !----------------------------! ! core eigenvalues evalsum=0.d0 do ias=1,natmtot is=idxis(ias) do ist=1,nstsp(is) if (spcore(ist,is)) evalsum=evalsum+occcr(ist,ias)*evalcr(ist,ias) end do end do ! valence eigenvalues do ik=1,nkpt w=wkpt(ik) do ist=1,nstsv evalsum=evalsum+w*occsv(ist,ik)*evalsv(ist,ik) end do end do !------------------------! ! kinetic energy ! !------------------------! ! core electron kinetic energy call energykncr ! total electron kinetic energy if (task.eq.5) then ! Hartree-Fock case engykn=engykncr ! kinetic energy from valence states allocate(evecsv(nstsv,nstsv),kmat(nstsv,nstsv),c(nstsv,nstsv)) do ik=1,nkpt w=wkpt(ik) call getevecsv(filext,ik,vkl(:,ik),evecsv) call getkmat(ik,kmat) call zgemm('N','N',nstsv,nstsv,nstsv,zone,kmat,nstsv,evecsv,nstsv,zzero,c, & nstsv) do ist=1,nstsv z1=zdotc(nstsv,evecsv(:,ist),1,c(:,ist),1) engykn=engykn+w*occsv(ist,ik)*dble(z1) end do end do deallocate(evecsv,kmat,c) else ! Kohn-Sham case allocate(rfmt(npmtmax,natmtot)) ! remove magnetic field contribution sm=0.d0 do idm=1,ndmag do ias=1,natmtot is=idxis(ias) call rfsht(nrcmt(is),nrcmti(is),bsmt(:,ias,idm),rfmt(:,ias)) end do call rfmtctof(rfmt) sm=sm+rfinp(magmt(:,:,idm),magir(:,idm),rfmt,bsir(:,idm)) end do ! remove integral of w_xc times tau for generalised Kohn-Sham meta-GGA if (xcgrad.eq.4) then do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) np=npmt(is) rfmt(1:np,ias)=taumt(1:np,ias,ispn)-taucr(1:np,ias,ispn) end do sm=sm+rfinp(rfmt,tauir,wxcmt,wxcir) end do end if ! remove fixed tensor moment potential matrix contribution if (ftmtype.ne.0) then n2=(lmmaxdm*nspinor)**2 do ias=1,natmtot z1=zdotc(n2,dmatmt(:,:,:,:,ias),1,vmftm(:,:,:,:,ias),1) sm=sm+dble(z1) end do end if engykn=evalsum-engyvcl-engyvxc-sm deallocate(rfmt) end if !-------------------------------! ! entropic contribution ! !-------------------------------! entrpy=0.d0 engyts=0.d0 ! non-zero only for the Fermi-Dirac smearing function if (stype.eq.3) then sm=0.d0 do ik=1,nkpt w=wkpt(ik) do ist=1,nstsv f=occsv(ist,ik)/occmax if ((f.gt.0.d0).and.(f.lt.1.d0)) then sm=sm+w*(f*log(f)+(1.d0-f)*log(1.d0-f)) end if end do end do ! entropy entrpy=-occmax*kboltz*sm ! contribution to free energy engyts=-swidth*entrpy/kboltz end if !----------------------! ! total energy ! !----------------------! engytot=engykn+0.5d0*engyvcl+engymad+engyx+engyc+engyts ! add the DFT+U correction if required if (dftu.ne.0) engytot=engytot+engydu ! write total energy to test file call writetest(0,'total energy',tol=1.d-4,rv=engytot) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/wfplot.f900000644000000000000000000000013214061636517014557 xustar0030 mtime=1623670095.422102021 30 atime=1623670094.208103148 30 ctime=1623670095.422102021 elk-7.2.42/src/wfplot.f900000644002504400250440000000563614061636517016626 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wfplot use modmain use modmpi use modomp implicit none ! local variables integer ik,ist real(8) x,t1 ! external functions real(8), external :: sdelta ! initialise universal variables call init0 call init1 ! read the density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! set the occupancies if ((task.eq.61).or.(task.eq.62).or.(task.eq.63)) then ! plot of wavefunction modulus squared ik=kstlist(1,1) ist=kstlist(2,1) if ((ik.lt.1).or.(ik.gt.nkpt)) then write(*,*) write(*,'("Error(wfplot): k-point out of range : ",I8)') ik write(*,*) stop end if if ((ist.lt.1).or.(ist.gt.nstsv)) then write(*,*) write(*,'("Error(wfplot): state out of range : ",I8)') ist write(*,*) stop end if ! select a particular wavefunction using its occupancy occsv(:,:)=0.d0 occsv(ist,ik)=1.d0/wkpt(ik) ! no symmetrisation required nsymcrys=1 else ! plotting an STM image by setting occupancies to be a delta function at the ! Fermi energy t1=1.d0/swidth do ik=1,nkpt ! get the eigenvalues from file call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) do ist=1,nstsv x=(efermi-evalsv(ist,ik))*t1 occsv(ist,ik)=occmax*wkpt(ik)*sdelta(stype,x)*t1 end do end do end if ! compute the valence charge density with the new occupancies call rhomagv ! write the wavefunction modulus squared plot to file if (mp_mpi) then select case(task) case(61) open(50,file='WF1D.OUT',form='FORMATTED') open(51,file='WFLINES.OUT',form='FORMATTED') call plot1d(50,51,1,rhomt,rhoir) close(50) close(51) write(*,*) write(*,'("Info(wfplot):")') write(*,'(" 1D wavefunction modulus squared written to WF1D.OUT")') write(*,'(" vertex location lines written to WFLINES.OUT")') case(62) open(50,file='WF2D.OUT',form='FORMATTED') call plot2d(.false.,50,1,rhomt,rhoir) close(50) write(*,*) write(*,'("Info(wfplot):")') write(*,'(" 2D wavefunction modulus squared written to WF2D.OUT")') case(162) open(50,file='STM2D.OUT',form='FORMATTED') call plot2d(.false.,50,1,rhomt,rhoir) close(50) write(*,*) write(*,'("Info(wfplot):")') write(*,'(" 2D STM image written to STM2D.OUT")') case(63) open(50,file='WF3D.OUT',form='FORMATTED') call plot3d(50,1,rhomt,rhoir) close(50) write(*,*) write(*,'("Info(wfplot):")') write(*,'(" 3D wavefunction modulus squared written to WF3D.OUT")') end select if (task.ne.162) then write(*,'(" for k-point ",I8," and state ",I6)') kstlist(1,1),kstlist(2,1) end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/oepvcl.f900000644000000000000000000000013214061636517014534 xustar0030 mtime=1623670095.424102019 30 atime=1623670094.210103146 30 ctime=1623670095.424102019 elk-7.2.42/src/oepvcl.f900000644002504400250440000000216514061636517016575 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine oepvcl(vclcv,vclvv) use modmain use modmpi use modomp implicit none ! arguments complex(8), intent(out) :: vclcv(ncrmax,natmtot,nstsv,nkpt) complex(8), intent(out) :: vclvv(nstsv,nstsv,nkpt) ! local variables integer ik,ncv,nvv integer lp,nthd call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(oepvcl_) write(*,'("Info(oepvcl): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(oepvcl_) call oepvclk(ik,vclcv(:,:,:,ik),vclvv(:,:,ik)) end do !$OMP END PARALLEL DO call freethd(nthd) ! broadcast matrix elements to all other processes ncv=ncrmax*natmtot*nstsv nvv=nstsv*nstsv do ik=1,nkpt lp=mod(ik-1,np_mpi) call mpi_bcast(vclcv(:,:,:,ik),ncv,mpi_double_complex,lp,mpicom,ierror) call mpi_bcast(vclvv(:,:,ik),nvv,mpi_double_complex,lp,mpicom,ierror) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/oepvclk.f900000644000000000000000000000013214061636517014707 xustar0030 mtime=1623670095.425102019 30 atime=1623670094.211103145 30 ctime=1623670095.425102019 elk-7.2.42/src/oepvclk.f900000644002504400250440000002336114061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine oepvclk(ikp,vclcv,vclvv) use modmain implicit none ! arguments integer, intent(in) :: ikp complex(8), intent(out) :: vclcv(ncrmax,natmtot,nstsv) complex(8), intent(out) :: vclvv(nstsv,nstsv) ! local variables integer ik,jk,nst,ist1,ist2,ist3 integer is,ia,ias,nrc,nrci,npc integer iv(3),ig,iq integer ic,jc,m1,m2 real(8) vc(3) complex(8) z1 ! automatic arrays integer idx(nstsv) ! allocatable arrays real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfmt2(:,:,:,:) complex(8), allocatable :: wfir1(:,:,:),wfir2(:,:,:) complex(8), allocatable :: wfcr1(:,:),wfcr2(:,:) complex(8), allocatable :: zrhomt1(:,:,:),zrhomt2(:,:),zrhoir1(:,:) complex(8), allocatable :: zvclmt(:,:),zvclir(:),zfmt(:) ! external functions complex(8), external :: zfinp,zfmtinp ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv)) allocate(wfir1(ngtc,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(wfcr1(npcmtmax,2),wfcr2(npcmtmax,2)) allocate(zrhomt1(npcmtmax,natmtot,nstsv),zrhoir1(ngtc,nstsv)) allocate(zrhomt2(npcmtmax,nstcr),zfmt(npcmtmax)) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) ! zero the Coulomb matrix elements vclcv(:,:,:)=0.d0 vclvv(:,:)=0.d0 ! get the eigenvectors from file for input reduced k-point call getevecfv(filext,ikp,vkl(:,ikp),vgkl(:,:,:,ikp),evecfv) call getevecsv(filext,ikp,vkl(:,ikp),evecsv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of the input k-point call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsv,wfmt1,ngtc,wfir1) ! loop over non-reduced k-point set do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! determine the q-vector iv(:)=ivk(:,ikp)-ivk(:,ik) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vc(:)=vkc(:,ikp)-vkc(:,ik) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file for non-reduced k-points call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,1,ik),evecfv) call getevecsv(filext,0,vkl(:,ik),evecsv) ! count and index occupied states nst=0 do ist3=1,nstsv if (evalsv(ist3,jk).lt.efermi) then nst=nst+1 idx(nst)=ist3 end if end do ! calculate the wavefunctions for occupied states call genwfsv(.false.,.false.,nst,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) do ist3=1,nst ! compute the complex overlap densities for all valence-valence states do ist1=1,nstsv call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist3),wfir2(:,:,ist3), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt1(:,:,ist1),zrhoir1(:,ist1)) end do ! compute the complex overlap densities for all valence-core states jc=0 do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do ist1=1,nstsp(is) if (spcore(ist1,is)) then do m1=-ksp(ist1,is),ksp(ist1,is)-1 jc=jc+1 ! generate the core wavefunction in spherical coordinates (pass in m-1/2) call wavefcr(.false.,lradstp,is,ia,ist1,m1,npcmtmax,wfcr1) if (spinpol) then call zrho2(npc,wfmt2(:,ias,1,ist3),wfmt2(:,ias,2,ist3),wfcr1, & wfcr1(:,2),zfmt) else call zrho1(npc,wfmt2(:,ias,1,ist3),wfcr1,zfmt) end if ! convert to spherical harmonics call zfsht(nrc,nrci,zfmt,zrhomt2(:,jc)) end do end if end do end do end do do ist2=1,nstsv if (evalsv(ist2,ikp).gt.efermi) then ! calculate the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax, & zrhomt1(:,:,ist2),zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc,& gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir1(:,ist2),npcmtmax,zvclmt, & zvclir) zvclir(:)=zvclir(:)*cfrc(:) !----------------------------------------------! ! valence-valence-valence contribution ! !----------------------------------------------! do ist1=1,nstsv if (evalsv(ist1,ikp).lt.efermi) then z1=zfinp(zrhomt1(:,:,ist1),zrhoir1(:,ist1),zvclmt,zvclir) vclvv(ist1,ist2)=vclvv(ist1,ist2)-wqptnr*z1 end if end do !-------------------------------------------! ! core-valence-valence contribution ! !-------------------------------------------! jc=0 do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) do ia=1,natoms(is) ias=idxas(ia,is) ic=0 do ist1=1,nstsp(is) if (spcore(ist1,is)) then do m1=-ksp(ist1,is),ksp(ist1,is)-1 ic=ic+1 jc=jc+1 z1=zfmtinp(nrc,nrci,wrcmt(:,is),zrhomt2(:,jc),zvclmt(:,ias)) vclcv(ic,ias,ist2)=vclcv(ic,ias,ist2)-wqptnr*z1 end do ! end loop over ist1 end if end do ! end loops over atoms and species end do end do ! end loop over ist2 end if end do ! end loop over ist3 end do ! end loop over non-reduced k-point set end do ! begin loops over atoms and species do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do ist3=1,nstsp(is) if (spcore(ist3,is)) then do m1=-ksp(ist3,is),ksp(ist3,is)-1 ! generate the core wavefunction in spherical coordinates (pass in m-1/2) call wavefcr(.false.,lradstp,is,ia,ist3,m1,npcmtmax,wfcr1) ! compute the complex overlap densities for the core-valence states do ist1=1,nstsv if (spinpol) then call zrho2(npc,wfcr1,wfcr1(:,2),wfmt1(:,ias,1,ist1), & wfmt1(:,ias,2,ist1),zfmt) else call zrho1(npc,wfcr1,wfmt1(:,ias,1,ist1),zfmt) end if call zfsht(nrc,nrci,zfmt,zrhomt1(:,ias,ist1)) end do ! compute the complex overlap densities for the core-core states ic=0 do ist1=1,nstsp(is) if (spcore(ist1,is)) then do m2=-ksp(ist1,is),ksp(ist1,is)-1 ic=ic+1 call wavefcr(.false.,lradstp,is,ia,ist1,m2,npcmtmax,wfcr2) call zrho2(npc,wfcr1,wfcr1(:,2),wfcr2,wfcr2(:,2),zfmt) call zfsht(nrc,nrci,zfmt,zrhomt2(:,ic)) end do end if end do do ist2=1,nstsv if (evalsv(ist2,ikp).gt.efermi) then ! calculate the Coulomb potential call zpotclmt(nrc,nrci,nrcmtmax,rlcmt(:,:,is),wprcmt(:,:,is), & zrhomt1(:,ias,ist2),zvclmt) !-------------------------------------------! ! valence-core-valence contribution ! !-------------------------------------------! do ist1=1,nstsv if (evalsv(ist1,ikp).lt.efermi) then z1=zfmtinp(nrc,nrci,wrcmt(:,is),zrhomt1(:,ias,ist1),zvclmt) vclvv(ist1,ist2)=vclvv(ist1,ist2)-z1 end if end do !----------------------------------------! ! core-core-valence contribution ! !----------------------------------------! ic=0 do ist1=1,nstsp(is) if (spcore(ist1,is)) then do m2=-ksp(ist1,is),ksp(ist1,is)-1 ic=ic+1 z1=zfmtinp(nrc,nrci,wrcmt(:,is),zrhomt2(:,ic),zvclmt) vclcv(ic,ias,ist2)=vclcv(ic,ias,ist2)-z1 end do ! end loop over ist1 end if end do ! end loop over ist2 end if end do ! end loops over ist3 and m1 end do end if end do ! end loops over atoms and species end do end do deallocate(vgqc,gqc,gclgq,jlgqrmt) deallocate(apwalm,evecfv,evecsv,ylmgq,sfacgq) deallocate(wfmt1,wfmt2,wfir1,wfir2,wfcr1,wfcr2) deallocate(zrhomt1,zrhomt2,zrhoir1) deallocate(zvclmt,zvclir,zfmt) return contains pure subroutine zrho1(n,x,y,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x(n),y(n) complex(8), intent(out) :: z(n) z(:)=conjg(x(:))*y(:) end subroutine pure subroutine zrho2(n,x1,x2,y1,y2,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x1(n),x2(n),y1(n),y2(n) complex(8), intent(out) :: z(n) z(:)=conjg(x1(:))*y1(:)+conjg(x2(:))*y2(:) end subroutine end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/polar.f900000644000000000000000000000013214061636517014361 xustar0030 mtime=1623670095.427102017 30 atime=1623670094.213103143 30 ctime=1623670095.427102017 elk-7.2.42/src/polar.f900000644002504400250440000000501014061636517016412 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: polar ! !INTERFACE: subroutine polar(pvl) ! !USES: use modmain use modstore use modmpi use modomp ! !INPUT/OUTPUT PARAMETERS: ! pvl : polarisation vector modulo $2\pi$ (out,real(8)) ! !DESCRIPTION: ! Calculates the polarisation vector modulo $2\pi$ in lattice coordinates ! using the formula of R. D. King-Smith and David Vanderbilt [Phys. Rev. B ! {\bf 47}, 1651(R) (1993)], namely ! $$ P_l=\sum_{\bf k}{\rm Im}\ln\det\left(\langle ! u_{i{\bf k}+\Delta{\bf k}_l}|u_{j{\bf k}}\rangle\right),$$ ! where $\Delta{\bf k}_l=(1/n_l){\bf B}_l$ and ${\bf B}_l$ is a reciprocal ! lattice vector. The number of points $n_l$ is equal to that of the original ! $k$-point grid in direction of ${\bf B}_l$, multiplied by {\tt nskpolar}. ! See also the routines {\tt polark} and {\tt bornechg}. ! ! !REVISION HISTORY: ! Created May 2020 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(out) :: pvl(3) ! local variables integer ik,l,nthd real(8) vc(3),vgqc(3),gqc,pl ! allocatable arrays real(8), allocatable :: jlgqr(:,:) complex(8), allocatable :: ylmgq(:),sfacgq(:),expqmt(:,:) ! allocate local arrays allocate(jlgqr(njcmax,nspecies)) allocate(ylmgq(lmmaxo),sfacgq(natmtot)) allocate(expqmt(npcmtmax,natmtot)) maxscl=1 ! loop over reciprocal lattice vectors do l=1,3 ! create fine k-point grid in direction l ngridk(:)=ngridk_(:) ngridk(l)=nkspolar*ngridk(l) ! run one loop of the ground-state calculation call gndstate ! difference between adjacent k-vectors in this reciprocal lattice direction vc(:)=bvec(:,l)/dble(ngridk(l)) ! calculate the phase factor function exp(iq.r) call gengqf(1,vc,vgqc,gqc,jlgqr,ylmgq,sfacgq) call genexpmt(1,jlgqr,ylmgq,1,sfacgq,expqmt) pl=0.d0 ! parallel loop over non-reduced k-points call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP REDUCTION(+:pl) & !$OMP NUM_THREADS(nthd) do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call polark(ik,l,expqmt,pl) end do !$OMP END PARALLEL DO call freethd(nthd) ! add polarisation from each process and redistribute if (np_mpi.gt.1) then call mpi_allreduce(mpi_in_place,pl,1,mpi_double_precision,mpi_sum,mpicom, & ierror) end if pvl(l)=pl end do ! restore original input parameters ngridk(:)=ngridk_(:) maxscl=maxscl_ deallocate(jlgqr,ylmgq,sfacgq,expqmt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/dbxcplot.f900000644000000000000000000000013214061636517015063 xustar0030 mtime=1623670095.429102015 30 atime=1623670094.215103142 30 ctime=1623670095.429102015 elk-7.2.42/src/dbxcplot.f900000644002504400250440000000416114061636517017122 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dbxcplot use modmain implicit none ! local variables integer idm,is,ias,np ! allocatable arrays real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) real(8), allocatable :: rfmt(:,:),rfir(:) real(8), allocatable :: grfmt(:,:,:),grfir(:,:) ! initialise universal variables call init0 if (.not.spinpol) then write(*,*) write(*,'("Error(dbxcplot): spin-unpolarised magnetic field is zero")') write(*,*) stop end if ! read magnetisation from file call readstate allocate(rvfmt(npmtmax,natmtot,3),rvfir(ngtot,3)) allocate(rfmt(npmtmax,natmtot),rfir(ngtot)) allocate(grfmt(npmtmax,natmtot,3),grfir(ngtot,3)) if (ncmag) then ! non-collinear rvfmt(:,:,:)=bxcmt(:,:,:) rvfir(:,:)=bxcir(:,:) else ! collinear rvfmt(:,:,1:2)=0.d0 rvfir(:,1:2)=0.d0 rvfmt(:,:,3)=bxcmt(:,:,1) rvfir(:,3)=bxcir(:,1) end if rfmt(:,:)=0.d0 rfir(:)=0.d0 do idm=1,3 call gradrf(rvfmt(:,:,idm),rvfir(:,idm),grfmt,grfir) do ias=1,natmtot is=idxis(ias) np=npmt(is) rfmt(1:np,ias)=rfmt(1:np,ias)+grfmt(1:np,ias,idm) end do rfir(:)=rfir(:)+grfir(:,idm) end do select case(task) case(91) open(50,file='DBXC1D.OUT',form='FORMATTED') open(51,file='DBXCLINES.OUT',form='FORMATTED') call plot1d(50,51,1,rfmt,rfir) close(50) close(51) write(*,*) write(*,'("Info(dbxcplot):")') write(*,'(" 1D divergence of exchange-correlation field written to & &DBXC1D.OUT")') write(*,'(" vertex location lines written to DBXCLINES.OUT")') case(92) open(50,file='DBXC2D.OUT',form='FORMATTED') call plot2d(.false.,50,1,rfmt,rfir) close(50) write(*,'("Info(dbxcplot):")') write(*,'(" 2D divergence of exchange-correlation field written to & &DBXC2D.OUT")') case(93) open(50,file='DBXC3D.OUT',form='FORMATTED') call plot3d(50,1,rfmt,rfir) close(50) write(*,'("Info(dbxcplot):")') write(*,'(" 3D divergence of exchange-correlation field written to & &DBXC3D.OUT")') end select deallocate(rvfmt,rvfir,rfmt,rfir,grfmt,grfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/sbesseldm.f900000644000000000000000000000013114061636517015224 xustar0030 mtime=1623670095.430102014 29 atime=1623670094.21710314 30 ctime=1623670095.430102014 elk-7.2.42/src/sbesseldm.f900000644002504400250440000000603614061636517017267 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: sbesseldm ! !INTERFACE: subroutine sbesseldm(m,lmax,x,djl) ! !INPUT/OUTPUT PARAMETERS: ! m : order of derivatve (in,integer) ! lmax : maximum order of Bessel function (in,integer) ! x : real argument (in,real) ! djl : array of returned values (out,real(0:lmax)) ! !DESCRIPTION: ! Computes the $m$th derivative of the spherical Bessel function of the first ! kind, $j_l(x)$, for argument $x$ and $l=0,1,\ldots,l_{\rm max}$. For ! $x\ge 1$ this is done by repeatedly using the relations ! \begin{align*} ! \frac{d}{dx}j_l(x)&=\frac{l}{x}j_l(x)-j_{l+1}(x) \\ ! j_{l+1}(x)&=\frac{2l+1}{x}j_l(x)-j_{l-1}(x). ! \end{align*} ! While for $x<1$ the series expansion of the Bessel function is used ! $$ \frac{d^m}{dx^m}j_l(x)=\sum_{i=0}^{\infty} ! \frac{(2i+l)!}{(-2)^ii!(2i+l-m)!(2i+2l+1)!!}x^{2i+l-m}. $$ ! This procedure is numerically stable and accurate to near machine precision ! for $l\le 30$ and $m\le 6$. ! ! !REVISION HISTORY: ! Created March 2003 (JKD) ! Modified to return an array of values, October 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: m,lmax real(8), intent(in) :: x real(8), intent(out) :: djl(0:lmax) ! local variables integer, parameter :: maxm=6,maxns=20 integer i,j,l,i0 real(8) t1,sm,x2 ! automatic arrays integer a(0:maxm+1),a1(0:maxm+1) integer b(0:maxm+1),b1(0:maxm+1) real(8) jl(0:lmax+1) ! external functions real(8), external :: factnm,factr if (m.eq.0) then call sbessel(lmax,x,djl) return end if if ((m.lt.0).or.(m.gt.maxm)) then write(*,*) write(*,'("Error(sbesseldm): m out of range : ",I8)') m write(*,*) stop end if if ((lmax.lt.0).or.(lmax.gt.30)) then write(*,*) write(*,'("Error(sbesseldm): lmax out of range : ",I8)') lmax write(*,*) stop end if if ((x.lt.0.d0).or.(x.gt.1.d5)) then write(*,*) write(*,'("Error(sbesseldm): x out of range : ",G18.10)') x write(*,*) stop end if if (x.gt.1.d0) then call sbessel(lmax+1,x,jl) do l=0,lmax a(1:m+1)=0 a(0)=1 a1(0:m+1)=0 do i=1,m b(0)=0 b1(0)=0 do j=0,i b(j+1)=a(j)*(l-j) b1(j+1)=-a1(j)*(j+l+2) end do do j=0,i b1(j)=b1(j)-a(j) b(j)=b(j)+a1(j) end do a(0:i+1)=b(0:i+1) a1(0:i+1)=b1(0:i+1) end do t1=1.d0 sm=dble(a(0))*jl(l)+dble(a1(0))*jl(l+1) do i=1,m+1 t1=t1*x sm=sm+(dble(a(i))*jl(l)+dble(a1(i))*jl(l+1))/t1 end do djl(l)=sm end do else x2=x**2 do l=0,lmax i0=max((m-l+1)/2,0) j=2*i0+l-m if (j.eq.0) then t1=1.d0 else t1=x**j end if t1=factr(j+m,j)*t1/(factnm(i0,1)*factnm(j+l+m+1,2)*dble((-2)**i0)) sm=t1 do i=i0+1,maxns j=2*i+l t1=-t1*dble((j-1)*j)*x2/dble((j-l)*(j-m-1)*(j-m)*(j+l+1)) if (abs(t1).le.1.d-40) exit sm=sm+t1 end do djl(l)=sm end do end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writehmlbse.f900000644000000000000000000000013214061636517015571 xustar0030 mtime=1623670095.432102012 30 atime=1623670094.218103139 30 ctime=1623670095.432102012 elk-7.2.42/src/writehmlbse.f900000644002504400250440000000533114061636517017630 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writehmlbse use modmain use modmpi ! sets up the BSE matrix and writes it to file implicit none ! local variables integer ik,jk,ist,jst integer a,b,i,j,m,n real(8) t1 ! initialise global variables call init0 call init1 call init2 call init3 ! read density and potentials from file call readstate ! read Fermi energy from a file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! check if system is metallic t1=minval(abs(0.5d0-occsv(:,:)/occmax)) if (abs(t1-0.5d0).gt.0.01d0) then write(*,*) write(*,'("Warning(writehmlbse): system is metallic, the BSE may fail")') write(*,'("Try using a different vkloff or reducing swidth")') end if ! generate the BSE state index arrays call genidxbse if (allocated(hmlbse)) deallocate(hmlbse) allocate(hmlbse(nmbse,nmbse)) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(*,*) write(*,'("Info(writehmlbse): setting up BSE Hamiltonian matrix")') end if ! zero the BSE Hamiltonian hmlbse(:,:)=0.d0 ! compute diagonal matrix elements do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) do i=1,nvbse ist=istbse(i,ik) do j=1,ncbse jst=jstbse(j,ik) a=ijkbse(i,j,ik) hmlbse(a,a)=(evalsv(jst,jk)+scissor)-evalsv(ist,jk) if (bsefull) then b=a+nbbse hmlbse(b,b)=-hmlbse(a,a) end if end do end do end do ! add the exchange matrix elements if (hxbse) call hmlxbse ! add the direct matrix elements if (hdbse) call hmldbse ! add matrices from all processes and redistribute if (np_mpi.gt.1) then ! ensure that the number of elements transmitted by MPI is not larger than the ! maximum packet size (assumed to be 1024³ bytes) m=67108864/nmbse do b=1,nmbse,m n=min(nmbse-b+1,m) n=nmbse*n call mpi_allreduce(mpi_in_place,hmlbse(1,b),n,mpi_double_complex,mpi_sum, & mpicom,ierror) end do end if ! write the BSE matrix to HMLBSE.OUT if (mp_mpi) then open(140,file='HMLBSE.OUT',form='UNFORMATTED',action='WRITE') write(140) nmbse write(140) hmlbse close(140) write(*,*) write(*,'("Info(writehmlbse): BSE Hamiltonian matrix written to HMLBSE.OUT")') end if ! deallocate global BSE arrays deallocate(istbse,jstbse,ijkbse,hmlbse) end subroutine elk-7.2.42/src/PaxHeaders.21776/dielectric_bse.f900000644000000000000000000000013214061636517016204 xustar0030 mtime=1623670095.433102011 30 atime=1623670094.220103137 30 ctime=1623670095.433102011 elk-7.2.42/src/dielectric_bse.f900000644002504400250440000000654514061636517020253 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dielectric_bse use modmain use modtest implicit none ! local variables integer a1,a2,ik1,jk1 integer i1,j1,ist1,jst1 integer iw,i,j,l integer ios,nmbse_ real(8) e,eji,t1,t2 complex(8) eta,zv(3),z1 character(256) fname ! allocatable arrays real(8), allocatable :: w(:) complex(8), allocatable :: pmat(:,:,:),sigma(:,:,:) ! initialise global variables call init0 call init1 ! read Fermi energy from a file call readfermi ! get the eigenvalues from file do ik1=1,nkpt call getevalsv(filext,ik1,vkl(:,ik1),evalsv(:,ik1)) end do ! generate the BSE state index arrays call genidxbse ! allocate global BSE arrays if (allocated(evalbse)) deallocate(evalbse) allocate(evalbse(nmbse)) if (allocated(hmlbse)) deallocate(hmlbse) allocate(hmlbse(nmbse,nmbse)) ! read in the BSE eigenvectors and eigenvalues open(140,file='EVBSE.OUT',form='UNFORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(dielectric_bse): error opening EVBSE.OUT")') write(*,*) stop end if read(140) nmbse_ if (nmbse.ne.nmbse_) then write(*,*) write(*,'("Error(dielectric_bse): differing nmbse")') write(*,'(" current : ",I6)') nmbse write(*,'(" EVBSE.OUT : ",I6)') nmbse_ stop end if read(140) evalbse read(140) hmlbse close(140) ! allocate local arrays allocate(w(nwplot)) allocate(pmat(nstsv,nstsv,3)) allocate(sigma(3,3,nwplot)) ! set up the frequency grid (starting from zero) t1=wplot(2)/dble(nwplot) do iw=1,nwplot w(iw)=t1*dble(iw-1) end do ! i divided by the complex relaxation time eta=cmplx(0.d0,swidth,8) sigma(:,:,:)=0.d0 do a2=1,nmbse e=evalbse(a2) zv(:)=0.d0 ! loop over non-reduced k-points do ik1=1,nkptnr ! equivalent reduced k-point jk1=ivkik(ivk(1,ik1),ivk(2,ik1),ivk(3,ik1)) ! read the momentum matrix elements from file call getpmat(vkl(:,ik1),pmat) do i1=1,nvbse ist1=istbse(i1,ik1) do j1=1,ncbse jst1=jstbse(j1,ik1) a1=ijkbse(i1,j1,ik1) eji=evalsv(jst1,jk1)-evalsv(ist1,jk1) z1=(e/eji)*hmlbse(a1,a2) zv(:)=zv(:)+z1*pmat(ist1,jst1,:) end do end do end do if (abs(e).gt.1.d-8) then do i=1,3 do j=1,3 z1=zv(i)*conjg(zv(j))/e sigma(i,j,:)=sigma(i,j,:)+z1/(w(:)-e+eta)+conjg(z1)/(w(:)+e+eta) end do end do end if end do z1=zi*occmax*wkptnr/omega sigma(:,:,:)=z1*sigma(:,:,:) ! loop over tensor components do l=1,noptcomp i=optcomp(1,l) j=optcomp(2,l) t1=0.d0 if (i.eq.j) t1=1.d0 write(fname,'("EPSILON_BSE_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') do iw=1,nwplot t2=t1-fourpi*aimag(sigma(i,j,iw)/(w(iw)+eta)) write(50,'(2G18.10)') w(iw),t2 end do write(50,*) do iw=1,nwplot t2=fourpi*dble(sigma(i,j,iw)/(w(iw)+eta)) write(50,'(2G18.10)') w(iw),t2 end do close(50) end do write(*,*) write(*,'("Info(dielectric_bse):")') write(*,'(" dielectric tensor written to EPSILON_BSE_ij.OUT")') write(*,'(" for components")') do l=1,noptcomp write(*,'(" i = ",I1,", j = ",I1)') optcomp(1:2,l) end do ! write sigma to test file call writetest(187,'BSE optical conductivity',nv=nwplot,tol=1.d-3,zva=sigma) deallocate(w,pmat,sigma) ! deallocate global BSE arrays deallocate(evalbse,hmlbse) end subroutine elk-7.2.42/src/PaxHeaders.21776/vecplot.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.435102009 30 atime=1623670094.222103135 30 ctime=1623670095.435102009 elk-7.2.42/src/vecplot.f900000644002504400250440000001241514061636517016760 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: vecplot ! !INTERFACE: subroutine vecplot ! !DESCRIPTION: ! Outputs a 2D or 3D vector field for plotting. The vector field can be the ! magnetisation vector field, ${\bf m}$; the exchange-correlation magnetic ! field, ${\bf B}_{\rm xc}$; or the electric field ! ${\bf E}\equiv-\nabla V_{\rm C}$. The magnetisation is obtained from the ! spin density matrix, $\rho_{\alpha\beta}$, by solving ! $$ \rho_{\alpha\beta}({\bf r})=\frac{1}{2}\left(n({\bf r}) ! \delta_{\alpha\beta}+\sigma\cdot {\bf m}({\bf r})\right), $$ ! where $n\equiv\tr\rho_{\alpha\beta}$ is the total density. In the case of 2D ! plots, the magnetisation vectors are still 3D, but are in the coordinate ! system of the plane. ! ! !REVISION HISTORY: ! Created August 2004 (JKD) ! Included electric field plots, August 2006 (JKD) !EOP !BOC use modmain implicit none ! allocatable arrays real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) ! initialise universal variables call init0 if ((task.eq.72).or.(task.eq.73).or.(task.eq.82).or.(task.eq.83)) then if (.not.spinpol) then write(*,*) write(*,'("Error(vecplot): spin-unpolarised magnetisation/field is zero")') write(*,*) stop end if end if ! read magnetisation and exchange-correlation magnetic field from file call readstate allocate(rvfmt(npmtmax,natmtot,3),rvfir(ngtot,3)) select case(task) case(71,72,73) ! magnetisation if (ncmag) then ! non-collinear rvfmt(:,:,:)=magmt(:,:,:) rvfir(:,:)=magir(:,:) else ! collinear rvfmt(:,:,1:2)=0.d0 rvfir(:,1:2)=0.d0 rvfmt(:,:,3)=magmt(:,:,1) rvfir(:,3)=magir(:,1) end if case(81,82,83) ! exchange-correlation magnetic field if (ncmag) then ! non-collinear rvfmt(:,:,:)=bxcmt(:,:,:) rvfir(:,:)=bxcir(:,:) else ! collinear rvfmt(:,:,1:2)=0.d0 rvfir(:,1:2)=0.d0 rvfmt(:,:,3)=bxcmt(:,:,1) rvfir(:,3)=bxcir(:,1) end if case(141,142,143) ! electric field call gradrf(vclmt,vclir,rvfmt,rvfir) ! use the negative of the gradient rvfmt(:,:,:)=-rvfmt(:,:,:) rvfir(:,:)=-rvfir(:,:) case(151,152,153) if (.not.ncmag) then write(*,*) write(*,'("Error(vecplot): collinear m(r) x B_xc(r) is zero")') write(*,*) stop end if call rvfcross(magmt,magir,bxcmt,bxcir,rvfmt,rvfir) end select select case(task) case(71,81,141,151) if (task.eq.71) then open(50,file='MAG1D.OUT',form='FORMATTED') open(51,file='MAGLINES.OUT',form='FORMATTED') else if (task.eq.81) then open(50,file='BXC1D.OUT',form='FORMATTED') open(51,file='BXCLINES.OUT',form='FORMATTED') else if (task.eq.141) then open(50,file='EF1D.OUT',form='FORMATTED') open(51,file='EFLINES.OUT',form='FORMATTED') else open(50,file='MCBXC1D.OUT',form='FORMATTED') open(51,file='MCBXCLINES.OUT',form='FORMATTED') end if call plot1d(50,51,3,rvfmt,rvfir) close(50) write(*,*) write(*,'("Info(vecplot):")') if (task.eq.71) then write(*,'(" 1D magnetisation density written to MAG1D.OUT")') write(*,'(" vertex location lines written to MAGLINES.OUT")') else if (task.eq.81) then write(*,'(" 1D exchange-correlation field written to BXC1D.OUT")') write(*,'(" vertex location lines written to BXCLINES.OUT")') else if (task.eq.141) then write(*,'(" 1D electric field written to EF1D.OUT")') write(*,'(" vertex location lines written to EFLINES.OUT")') else write(*,'(" 1D m(r) x B_xc(r) written to MCBXC1D.OUT")') write(*,'(" vertex location lines written to MCBXCLINES.OUT")') end if case(72,82,142,152) if (task.eq.72) then open(50,file='MAG2D.OUT',form='FORMATTED') else if (task.eq.82) then open(50,file='BXC2D.OUT',form='FORMATTED') else if (task.eq.142) then open(50,file='EF2D.OUT',form='FORMATTED') else open(50,file='MCBXC2D.OUT',form='FORMATTED') end if call plot2d(.true.,50,3,rvfmt,rvfir) close(50) write(*,*) write(*,'("Info(vecplot):")') if (task.eq.72) then write(*,'(" 2D magnetisation density written to MAG2D.OUT")') else if (task.eq.82) then write(*,'(" 2D exchange-correlation field written to BXC2D.OUT")') else if (task.eq.142) then write(*,'(" 2D electric field written to EF2D.OUT")') else write(*,'(" 2D m(r) x B_xc(r) written to MCBXC2D.OUT")') end if write(*,'(" Note that the 3D vector field has been locally projected")') write(*,'(" onto the 2D plotting plane axes")') case(73,83,143,153) if (task.eq.73) then open(50,file='MAG3D.OUT',form='FORMATTED') else if (task.eq.83) then open(50,file='BXC3D.OUT',form='FORMATTED') else if (task.eq.143) then open(50,file='EF3D.OUT',form='FORMATTED') else open(50,file='MCBXC3D.OUT',form='FORMATTED') end if call plot3d(50,3,rvfmt,rvfir) close(50) write(*,*) write(*,'("Info(vecplot):")') if (task.eq.73) then write(*,'(" 3D magnetisation density written to MAG3D.OUT")') else if (task.eq.83) then write(*,'(" 3D exchange-correlation field written to BXC3D.OUT")') else if (task.eq.143) then write(*,'(" 3D electric field written to EF3D.OUT")') else write(*,'(" 3D m(r) x B_xc(r) written to MCBXC3D.OUT")') end if end select deallocate(rvfmt,rvfir) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/nesting.f900000644000000000000000000000013214061636517014713 xustar0030 mtime=1623670095.436102008 30 atime=1623670094.223103134 30 ctime=1623670095.436102008 elk-7.2.42/src/nesting.f900000644002504400250440000000441714061636517016756 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine nesting use modmain use modomp implicit none ! local variables integer iq,ik,jk,jkq,ivkq(3) integer ist,i1,i2,i3,nthd real(8) sm0,sm1,sm2,sm3 real(8) vl(3),vc(3),x,t1 ! allocatable arrays real(8), allocatable :: nq(:) ! external functions real(8), external :: sdelta ! initialise universal variables call init0 call init1 call init2 ! read Fermi energy from file call readfermi ! get the eigenvalues from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do allocate(nq(nqpt)) t1=1.d0/swidth sm0=0.d0 call holdthd(nqpt,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(sm1,sm2,sm3,ik,jk) & !$OMP PRIVATE(ivkq,jkq,ist,x) & !$OMP REDUCTION(+:sm0) & !$OMP NUM_THREADS(nthd) do iq=1,nqpt !$OMP CRITICAL(nesting_) write(*,'("Info(nesting): ",I6," of ",I6," q-points")') iq,nqpt !$OMP END CRITICAL(nesting_) sm1=0.d0 do ik=1,nkptnr jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ivkq(:)=ivk(:,ik)+ivq(:,iq) ivkq(:)=mod(ivkq(:),ngridk(:)) jkq=ivkik(ivkq(1),ivkq(2),ivkq(3)) sm2=0.d0 do ist=1,nstsv x=(efermi-evalsv(ist,jk))*t1 sm2=sm2+sdelta(stype,x)*t1 end do sm3=0.d0 do ist=1,nstsv x=(efermi-evalsv(ist,jkq))*t1 sm3=sm3+sdelta(stype,x)*t1 end do sm1=sm1+sm2*sm3 end do nq(iq)=occmax*omegabz*wkptnr*sm1 sm0=sm0+omegabz*wqpt(iq)*nq(iq) end do !$OMP END PARALLEL DO call freethd(nthd) open(50,file='NEST3D.OUT',form='FORMATTED') write(50,'(3I6," : grid size")') ngridq(:) do i3=0,ngridq(3)-1 vl(3)=dble(i3)/dble(ngridq(3)) do i2=0,ngridq(2)-1 vl(2)=dble(i2)/dble(ngridq(2)) do i1=0,ngridq(1)-1 vl(1)=dble(i1)/dble(ngridq(1)) vc(:)=bvec(:,1)*vl(1)+bvec(:,2)*vl(2)+bvec(:,3)*vl(3) iq=ivqiq(i1,i2,i3) write(50,'(4G18.10)') vc(:),nq(iq) end do end do end do close(50) open(50,file='NESTING.OUT',form='FORMATTED') write(50,'(G18.10)') sm0 close(50) write(*,*) write(*,'("Info(nesting):")') write(*,'(" Nesting function N(q) written to NEST3D.OUT for plotting")') write(*,*) write(*,'(" Total integrated nesting per unit volume written to NESTING.OUT")') deallocate(nq) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeevbse.f900000644000000000000000000000013214061636517015423 xustar0030 mtime=1623670095.438102006 30 atime=1623670094.225103132 30 ctime=1623670095.438102006 elk-7.2.42/src/writeevbse.f900000644002504400250440000000437714061636517017473 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeevbse use modmain implicit none ! local variables integer ik,a integer ios,nmbse_ ! allocatable arrays complex(8), allocatable :: w(:) ! initialise global variables call init0 call init1 ! read Fermi energy from a file call readfermi ! get the eigenvalues from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do ! generate the BSE state index arrays call genidxbse ! allocate global BSE arrays if (allocated(evalbse)) deallocate(evalbse) allocate(evalbse(nmbse)) if (allocated(hmlbse)) deallocate(hmlbse) allocate(hmlbse(nmbse,nmbse)) ! read in BSE Hamiltonian matrix open(140,file='HMLBSE.OUT',form='UNFORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(writeevbse): error opening HMLBSE.OUT")') write(*,*) stop end if read(140) nmbse_ if (nmbse.ne.nmbse_) then write(*,*) write(*,'("Error(writeevbse): differing nmbse")') write(*,'(" current : ",I6)') nmbse write(*,'(" HMLBSE.OUT : ",I6)') nmbse_ write(*,*) stop end if read(140) hmlbse close(140) write(*,*) write(*,'("Info(writeevbse): diagonalising the BSE Hamiltonian matrix")') if (bsefull) then ! full non-Hermitian matrix allocate(w(nmbse)) call eveqnzg(nmbse,nmbse,hmlbse,w) evalbse(:)=dble(w(:)) else ! Hermitian block only call eveqnzh(nmbse,nmbse,hmlbse,evalbse) end if ! write the BSE eigenvectors and eigenvalues to file open(140,file='EVBSE.OUT',form='UNFORMATTED',action='WRITE') write(140) nmbse write(140) evalbse write(140) hmlbse close(140) ! write the BSE eigenvalues to file open(50,file='EIGVAL_BSE.OUT',form='FORMATTED',action='WRITE') write(50,'(I6," : nmbse")') nmbse if (bsefull) then do a=1,nmbse write(50,'(I6,2G18.10)') a,dble(w(a)),aimag(w(a)) end do deallocate(w) else do a=1,nmbse write(50,'(I6,G18.10)') a,evalbse(a) end do end if close(50) write(*,*) write(*,'("Info(writeevbse):")') write(*,'(" BSE eigenvectors and eigenvalues written to EVBSE.OUT")') write(*,'(" BSE eigenvalues written to EIGVAL_BSE.OUT")') ! deallocate global BSE arrays deallocate(evalbse,hmlbse) end subroutine elk-7.2.42/src/PaxHeaders.21776/emdplot3d.f900000644000000000000000000000013114061636517015136 xustar0030 mtime=1623670095.439102006 29 atime=1623670094.22710313 30 ctime=1623670095.439102006 elk-7.2.42/src/emdplot3d.f900000644002504400250440000000202514061636517017173 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine emdplot3d(emds) use modmain use modpw use modomp implicit none ! arguments real(4), intent(in) :: emds(nhkmax,nkpt) ! local variables integer np,ip,nthd real(8) v1(3),t1 ! allocatable arrays real(8), allocatable :: vpl(:,:) ! external functions real(8), external :: rfhkintp ! total number of plot points np=np3d(1)*np3d(2)*np3d(3) ! generate the 3D plotting points allocate(vpl(3,np)) call plotpt3d(vpl) open(50,file='EMD3D.OUT',form='FORMATTED') write(50,'(3I6," : grid size")') np3d(:) call holdthd(np,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(t1,v1) & !$OMP NUM_THREADS(nthd) !$OMP DO ORDERED do ip=1,np t1=rfhkintp(vpl(:,ip),emds) call r3mv(bvec,vpl(:,ip),v1) !$OMP ORDERED write(50,'(4G18.10)') v1(:),t1 !$OMP END ORDERED end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) close(50) deallocate(vpl) end subroutine elk-7.2.42/src/PaxHeaders.21776/emdplot2d.f900000644000000000000000000000013214061636517015136 xustar0030 mtime=1623670095.441102004 30 atime=1623670094.229103129 30 ctime=1623670095.441102004 elk-7.2.42/src/emdplot2d.f900000644002504400250440000000311314061636517017171 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine emdplot2d(emds) use modmain use modpw use modomp implicit none ! arguments real(4), intent(in) :: emds(nhkmax,nkpt) ! local variables integer nh(3),np,ip,n,i,nthd real(8) vpnl(3),v1(3),t1 ! allocatable arrays real(8), allocatable :: vpl(:,:),vppc(:,:) real(8), allocatable :: x(:),wx(:),f(:) ! external functions real(8), external :: rfhkintp ! allocate local arrays np=np2d(1)*np2d(2) allocate(vpl(3,np),vppc(2,np)) ! generate the 2D plotting points call plotpt2d(bvec,binv,vpnl,vpl,vppc) ! determine the number of integration points nh(:)=int(hkmax*sqrt(avec(1,:)**2+avec(2,:)**2+avec(3,:)**2)/pi)+1 n=2*maxval(nh(:)*ngridk(:)) allocate(x(n),wx(n)) do i=1,n t1=2.d0*dble(i-1)/dble(n-1)-1.d0 x(i)=t1*hkmax end do ! determine the weights for spline integration call wsplint(n,x,wx) open(50,file='EMD2D.OUT',form='FORMATTED') write(50,'(2I6," : grid size")') np2d(:) ! loop over plotting points in the 2D plane call holdthd(np,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(f,i,v1,t1) & !$OMP NUM_THREADS(nthd) allocate(f(n)) !$OMP DO ORDERED do ip=1,np ! integrate along normal to plane do i=1,n v1(:)=vpl(:,ip)+x(i)*vpnl(:) f(i)=rfhkintp(v1,emds) end do t1=dot_product(wx(:),f(:)) !$OMP ORDERED write(50,'(3G18.10)') vppc(1,ip),vppc(2,ip),t1 !$OMP END ORDERED end do !$OMP END DO deallocate(f) !$OMP END PARALLEL call freethd(nthd) close(50) deallocate(vpl,vppc,x,wx) end subroutine elk-7.2.42/src/PaxHeaders.21776/emdplot1d.f900000644000000000000000000000013214061636517015135 xustar0030 mtime=1623670095.442102003 30 atime=1623670094.230103128 30 ctime=1623670095.442102003 elk-7.2.42/src/emdplot1d.f900000644002504400250440000000470414061636517017177 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine emdplot1d(emds) use modmain use modpw use modomp use modtest implicit none ! arguments real(4), intent(in) :: emds(nhkmax,nkpt) ! local variables integer nh(3),ip,n,i,j,nthd real(8) vl1(3),vl2(3),vl3(3) real(8) vc1(3),vc2(3),vc3(3),t1 ! allocatable arrays real(8), allocatable :: x(:),wx(:),f1(:),f2(:) ! external functions real(8), external :: rfhkintp ! generate the 1D plotting points: use only the first segment call plotpt1d(bvec,2,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) ! compute two vectors orthogonal to each other and the plotting vector; these ! are the directions to be used for integration vl1(:)=vvlp1d(:,2)-vvlp1d(:,1) call r3mv(bvec,vl1,vc1) t1=sqrt(vc1(1)**2+vc1(2)**2+vc1(3)**2) if (t1.lt.epslat) then write(*,*) write(*,'("Error(emdplot1d): zero length plotting vector")') write(*,*) stop end if vc1(:)=vc1(:)/t1 i=1 do j=2,3 if (abs(vc1(j)).lt.abs(vc1(i))) i=j end do vc2(:)=0.d0 vc2(i)=1.d0 t1=dot_product(vc1,vc2) vc2(:)=vc2(:)-t1*vc1(:) t1=sqrt(vc2(1)**2+vc2(2)**2+vc2(3)**2) vc2(:)=vc2(:)/t1 call r3cross(vc1,vc2,vc3) ! integration directions in lattice coordinates call r3mv(binv,vc2,vl2) call r3mv(binv,vc3,vl3) ! determine the number of integration points nh(:)=int(hkmax*sqrt(avec(1,:)**2+avec(2,:)**2+avec(3,:)**2)/pi)+1 n=2*maxval(nh(:)*ngridk(:)) allocate(x(n),wx(n)) do i=1,n t1=2.d0*dble(i-1)/dble(n-1)-1.d0 x(i)=t1*hkmax end do ! determine the weights for spline integration call wsplint(n,x,wx) open(50,file='EMD1D.OUT',form='FORMATTED') write(*,*) ! loop over plotting points along 1D line call holdthd(npp1d,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(f1,f2,i,j,vl1,t1) & !$OMP NUM_THREADS(nthd) allocate(f1(n),f2(n)) !$OMP DO ORDERED do ip=1,npp1d do i=1,n do j=1,n vl1(:)=vplp1d(:,ip)+x(i)*vl2(:)+x(j)*vl3(:) f1(j)=rfhkintp(vl1,emds) end do f2(i)=dot_product(wx(:),f1(:)) end do t1=dot_product(wx(:),f2(:)) !$OMP ORDERED write(*,'("Info(emdplot1d): done ",I6," of ",I6," points")') ip,npp1d write(50,'(2G18.10)') dpp1d(ip),t1 flush(50) !$OMP END ORDERED ! write to test file if required if (test.and.(ip.eq.1)) then call writetest(171,'integrated EMD',nv=n,tol=1.d-4,rva=f2) end if end do !$OMP END DO deallocate(f1,f2) !$OMP END PARALLEL call freethd(nthd) close(50) deallocate(x,wx) end subroutine elk-7.2.42/src/PaxHeaders.21776/rfhkintp.f900000644000000000000000000000013214061636517015071 xustar0030 mtime=1623670095.444102001 30 atime=1623670094.232103126 30 ctime=1623670095.444102001 elk-7.2.42/src/rfhkintp.f900000644002504400250440000000461314061636517017132 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function rfhkintp(vhpl,rfhk) use modmain use modpw implicit none ! arguments real(8), intent(in) :: vhpl(3) real(4), intent(in) :: rfhk(nhkmax,nkpt) ! local variables integer ivh0(3),ivk0(3),ihk integer ivhb(3,0:1,0:1,0:1) integer ivkb(3,0:1,0:1,0:1) integer isym,lspl,ik,jk,i,j,k real(8) vpl(3),fb(0:1,0:1,0:1) real(8) f00,f01,f10,f11,f0,f1 real(8) v0(3),v1(3),v2(3),t1,t2 ! find the H-vector and k-vector corresponding to the input H+p-vector ivh0(:)=floor(vhpl(:)) vpl(:)=vhpl(:)-dble(ivh0(:)) v1(:)=vpl(:)*dble(ngridk(:)) ivk0(:)=floor(v1(:)) ! determine the corners of the box containing the input point do i=0,1; do j=0,1; do k=0,1 ivkb(1,i,j,k)=ivk0(1)+i ivkb(2,i,j,k)=ivk0(2)+j ivkb(3,i,j,k)=ivk0(3)+k ivhb(:,i,j,k)=ivh0(:)+ivkb(:,i,j,k)/ngridk(:) ivkb(:,i,j,k)=modulo(ivkb(:,i,j,k),ngridk(:)) end do; end do; end do ! determine the function at each corner of the box do i=0,1; do j=0,1; do k=0,1 fb(i,j,k)=0.d0 ! non-reduced k-point index jk=ivkiknr(ivkb(1,i,j,k),ivkb(2,i,j,k),ivkb(3,i,j,k)) ! H+k-vector at corner of box v1(:)=dble(ivhb(:,i,j,k))+vkl(:,jk) ! store the origin of the box if ((i.eq.0).and.(j.eq.0).and.(k.eq.0)) v0(:)=v1(:) ! vector in Cartesian coordinates v2(:)=bvec(:,1)*v1(1)+bvec(:,2)*v1(2)+bvec(:,3)*v1(3) ! check length is within range t1=sqrt(v2(1)**2+v2(2)**2+v2(3)**2) if (t1.gt.hkmax) cycle ! find the lattice symmetry which maps the non-reduced to reduced k-point call findkpt(vkl(:,jk),isym,ik) ! index to spatial rotation in lattice point group lspl=lsplsymc(isym) v2(:)=symlat(1,:,lspl)*v1(1)+symlat(2,:,lspl)*v1(2)+symlat(3,:,lspl)*v1(3) ! find the H+k-vector for the reduced k-point do ihk=1,nhk(1,ik) t1=abs(v2(1)-vhkl(1,ihk,1,ik)) & +abs(v2(2)-vhkl(2,ihk,1,ik)) & +abs(v2(3)-vhkl(3,ihk,1,ik)) if (t1.lt.epslat) then fb(i,j,k)=rfhk(ihk,ik) exit end if end do end do; end do; end do ! interpolate function t2=(vhpl(1)-v0(1))*dble(ngridk(1)) t1=1.d0-t2 f00=fb(0,0,0)*t1+fb(1,0,0)*t2 f01=fb(0,0,1)*t1+fb(1,0,1)*t2 f10=fb(0,1,0)*t1+fb(1,1,0)*t2 f11=fb(0,1,1)*t1+fb(1,1,1)*t2 t2=(vhpl(2)-v0(2))*dble(ngridk(2)) t1=1.d0-t2 f0=f00*t1+f10*t2 f1=f01*t1+f11*t2 t2=(vhpl(3)-v0(3))*dble(ngridk(3)) t1=1.d0-t2 rfhkintp=f0*t1+f1*t2 end function elk-7.2.42/src/PaxHeaders.21776/writewfpw.f900000644000000000000000000000012414061636517015303 xustar0027 mtime=1623670095.445102 30 atime=1623670094.233103125 27 ctime=1623670095.445102 elk-7.2.42/src/writewfpw.f900000644002504400250440000000415114061636517017340 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writewfpw use modmain use modpw use modmpi use modomp implicit none ! local variables integer ik,recl,nthd ! allocatable arrays complex(8), allocatable :: wfpw(:,:,:) ! initialise global variables call init0 call init1 call init4 ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! delete existing WFPW.OUT if (mp_mpi) then open(270,file='WFPW.OUT') close(270,status='DELETE') end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! determine the record length and open WFPW.OUT allocate(wfpw(nhkmax,nspinor,nstsv)) inquire(iolength=recl) vkl(:,1),nhkmax,nspinor,nstsv,wfpw deallocate(wfpw) open(270,file='WFPW.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) ! begin parallel loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfpw) & !$OMP NUM_THREADS(nthd) allocate(wfpw(nhkmax,nspinor,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(writewfpw_) write(*,'("Info(writewfpw): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(writewfpw_) ! generate the plane wave wavefunctions call genwfpw(vkl(:,ik),ngk(:,ik),igkig(:,:,ik),vgkl(:,:,:,ik), & vgkc(:,:,:,ik),gkc(:,:,ik),sfacgk(:,:,:,ik),nhk(:,ik),vhkc(:,:,:,ik), & hkc(:,:,ik),sfachk(:,:,:,ik),wfpw) !$OMP CRITICAL(u270) write(270,rec=ik) vkl(:,ik),nhkmax,nspinor,nstsv,wfpw !$OMP END CRITICAL(u270) end do !$OMP END DO deallocate(wfpw) !$OMP END PARALLEL call freethd(nthd) close(270) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(*,*) write(*,'("Info(writewfpw): plane wave wavefunctions written to WFPW.OUT")') write(*,'(" for all H+k-vectors up to |H+k| < hkmax")') end if end subroutine elk-7.2.42/src/PaxHeaders.21776/vblocal.f900000644000000000000000000000013214061636517014666 xustar0030 mtime=1623670095.447101998 30 atime=1623670094.235103123 30 ctime=1623670095.447101998 elk-7.2.42/src/vblocal.f900000644002504400250440000000273414061636517016731 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine vblocal(vmt,vir,bmt) use modmain use modomp implicit none ! arguments real(8), intent(out) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(out) :: bmt(npcmtmax,natmtot,ndmag) ! local variables integer idm,is,ias,nthd integer nrc,nrci,npc ! automatic arrays real(8) rfmt(npcmtmax) call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(rfmt,is,nrc,nrci) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! convert muffin-tin Kohn-Sham potential to spherical coordinates call rfmtftoc(nrc,nrci,vsmt(:,ias),rfmt) call rbsht(nrc,nrci,rfmt,vmt(:,ias)) ! multiply by radial integration weights call rfcmtwr(nrc,nrci,wrcmt(:,is),vmt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! multiply interstitial Kohn-Sham potential by characteristic function vir(:)=vsir(:)*cfunir(:) if (.not.spinpol) return ! repeat for the Kohn-Sham magnetic field call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is,nrc,nrci,npc,idm) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do idm=1,ndmag bmt(1:npc,ias,idm)=bsmt(1:npc,ias,idm) call rfcmtwr(nrc,nrci,wrcmt(:,is),bmt(:,ias,idm)) end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/writefsm.f900000644000000000000000000000013214061636517015104 xustar0030 mtime=1623670095.448101997 30 atime=1623670094.237103121 30 ctime=1623670095.448101997 elk-7.2.42/src/writefsm.f900000644002504400250440000000154114061636517017142 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writefsm(fnum) use modmain implicit none ! arguments integer, intent(in) :: fnum ! local variables integer is,ia,ias if (fsmtype.eq.0) return write(fnum,*) if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then write(fnum,'("FSM global effective field",T30,": ",3G18.10)') bfsmc(1:ndmag) end if if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then write(fnum,'("FSM local muffin-tin effective fields :")') do is=1,nspecies write(fnum,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(fnum,'(" atom ",I4,T30,": ",3G18.10)') ia,bfsmcmt(1:ndmag,ias) end do end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/getwfpw.f900000644000000000000000000000013114061636517014726 xustar0030 mtime=1623670095.450101995 29 atime=1623670094.23810312 30 ctime=1623670095.450101995 elk-7.2.42/src/getwfpw.f900000644002504400250440000001177014061636517016772 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getwfpw(vpl,vhpl,wfpw) use modmain use modpw implicit none ! arguments real(8), intent(in) :: vpl(3) real(8), intent(in) :: vhpl(3,nhkmax,nspnfv) complex(8), intent(out) :: wfpw(nhkmax,nspinor,nstsv) ! local variables integer isym,lspl,ilspl,lspn integer ik,ist,ihk,ihp,jhp,ig integer ispn0,ispn1,jspn,i integer recl,nhkmax_,nspinor_,nstsv_ real(8) vkl_(3),si(3,3) real(8) v(3),det,th,t1 complex(8) su2(2,2),z1,z2 ! automatic arrays logical done(nhkmax) ! allocatable arrays complex(8), allocatable :: wfpw_(:,:,:) ! find the equivalent k-point number and symmetry which rotates vkl to vpl call findkpt(vpl,isym,ik) ! index to spatial rotation in lattice point group lspl=lsplsymc(isym) ! find the record length inquire(iolength=recl) vkl_,nhkmax_,nspinor_,nstsv_,wfpw !$OMP CRITICAL(u270) open(270,file='WFPW.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(270,rec=ik) vkl_,nhkmax_,nspinor_,nstsv_,wfpw !$OMP END CRITICAL(u270) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getwfpw): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" WFPW.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nhkmax.ne.nhkmax_) then write(*,*) write(*,'("Error(getwfpw): differing nhkmax for k-point ",I8)') ik write(*,'(" current : ",I8)') nhkmax write(*,'(" WFPW.OUT : ",I8)') nhkmax_ write(*,*) stop end if if (nspinor.ne.nspinor_) then write(*,*) write(*,'("Error(getwfpw): differing nspinor for k-point ",I8)') ik write(*,'(" current : ",I8)') nspinor write(*,'(" WFPW.OUT : ",I8)') nspinor_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getwfpw): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" WFPW.OUT : ",I8)') nstsv_ write(*,*) stop end if ! if p = k then return t1=abs(vpl(1)-vkl(1,ik))+abs(vpl(2)-vkl(2,ik))+abs(vpl(3)-vkl(3,ik)) if (t1.lt.epslat) return !--------------------------------------------------------! ! translate and rotate wavefunction coefficients ! !--------------------------------------------------------! ! allocate temporary copy of wavefunction allocate(wfpw_(nhkmax,nspinor,nstsv)) ! the inverse of the spatial symmetry ilspl=isymlat(lspl) si(:,:)=dble(symlat(:,:,ilspl)) ! loop over first-variational spins do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if ! apply translation operation if required if (tv0symc(isym)) then ! translation vector is zero do ihk=1,nhk(jspn,ik) wfpw_(ihk,ispn0:ispn1,:)=wfpw(ihk,ispn0:ispn1,:) end do else ! non-zero translation vector gives a phase factor v(:)=vtcsymc(:,isym) do ihk=1,nhk(jspn,ik) ig=ihkig(ihk,jspn,ik) t1=-(vgc(1,ig)*v(1)+vgc(2,ig)*v(2)+vgc(3,ig)*v(3)) z1=cmplx(cos(t1),sin(t1),8) wfpw_(ihk,ispn0:ispn1,:)=z1*wfpw(ihk,ispn0:ispn1,:) end do end if ! apply spatial rotation operation (passive transformation) done(1:nhk(jspn,ik))=.false. i=1 do ihk=1,nhk(jspn,ik) call r3mtv(si,vhkl(:,ihk,jspn,ik),v) do ihp=i,nhk(jspn,ik) if (done(ihp)) cycle t1=abs(v(1)-vhpl(1,ihp,jspn)) & +abs(v(2)-vhpl(2,ihp,jspn)) & +abs(v(3)-vhpl(3,ihp,jspn)) if (t1.lt.epslat) then wfpw(ihp,ispn0:ispn1,:)=wfpw_(ihk,ispn0:ispn1,:) done(ihp)=.true. exit end if end do do ihp=i,nhk(jspn,ik) if (.not.done(ihp)) then i=ihp exit end if end do end do end do ! apply spin rotation if required if (spinpol) then ! index to global spin rotation in lattice point group lspn=lspnsymc(isym) ! if symmetry element is the identity return if (lspn.eq.1) return ! find the SU(2) representation of the spin rotation matrix call rotaxang(epslat,symlatc(:,:,lspn),det,v,th) call axangsu2(v,th,su2) ! apply SU(2) matrix to spinor wavefunctions (active transformation) if (spinsprl) then ! spin-spiral case wfpw(:,2,:)=0.d0 i=1 do ihp=1,nhk(1,ik) v(:)=vhpl(:,ihp,1)-vqlss(:) do jhp=i,nhk(2,ik) t1=abs(v(1)-vhpl(1,jhp,2)) & +abs(v(2)-vhpl(2,jhp,2)) & +abs(v(3)-vhpl(3,jhp,2)) if (t1.lt.epslat) then do ist=1,nstsv z1=wfpw(ihp,1,ist) z2=wfpw(jhp,2,ist) wfpw(ihp,1,ist)=su2(1,1)*z1+su2(1,2)*z2 wfpw(jhp,2,ist)=su2(2,1)*z1+su2(2,2)*z2 end do if (jhp.eq.i) i=i+1 goto 10 end if end do wfpw(ihp,1,:)=0.d0 10 continue end do else ! normal spin case do ist=1,nstsv do ihp=1,nhk(1,ik) z1=wfpw(ihp,1,ist) z2=wfpw(ihp,2,ist) wfpw(ihp,1,ist)=su2(1,1)*z1+su2(1,2)*z2 wfpw(ihp,2,ist)=su2(2,1)*z1+su2(2,2)*z2 end do end do end if end if deallocate(wfpw_) end subroutine elk-7.2.42/src/PaxHeaders.21776/plotpt1d.f900000644000000000000000000000013214061636517015013 xustar0030 mtime=1623670095.451101994 30 atime=1623670094.240103118 30 ctime=1623670095.451101994 elk-7.2.42/src/plotpt1d.f900000644002504400250440000000523414061636517017054 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: plotpt1d ! !INTERFACE: subroutine plotpt1d(cvec,nv,np,vvl,vpl,dv,dp) ! !INPUT/OUTPUT PARAMETERS: ! cvec : matrix of (reciprocal) lattice vectors stored column-wise ! (in,real(3,3)) ! nv : number of vertices (in,integer) ! np : number of connecting points (in,integer) ! vvl : vertex vectors in lattice coordinates (in,real(3,nv)) ! vpl : connecting point vectors in lattice coordinates (out,real(3,np)) ! dv : cummulative distance to each vertex (out,real(nv)) ! dp : cummulative distance to each connecting point (out,real(np)) ! !DESCRIPTION: ! Generates a set of points which interpolate between a given set of vertices. ! Vertex points are supplied in lattice coordinates in the array {\tt vvl} and ! converted to Cartesian coordinates with the matrix {\tt cvec}. Interpolating ! points are stored in the array {\tt vpl}. The cummulative distances to the ! vertices and points along the path are stored in arrays {\tt dv} and ! {\tt dp}, respectively. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) ! Improved September 2007 (JKD) ! Improved again, July 2010 (T. McQueen and JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: cvec(3,3) integer, intent(in) :: nv,np real(8), intent(in) :: vvl(3,nv) real(8), intent(out) :: vpl(3,np),dv(nv),dp(np) ! local variables integer i,j,k,m,n real(8) vl(3),vc(3) real(8) dt,f,t1 ! alloctable arrays real(8), allocatable :: seg(:) if (nv.lt.1) then write(*,*) write(*,'("Error(plotpt1d): nv < 1 : ",I8)') nv write(*,*) stop end if if (np.lt.nv) then write(*,*) write(*,'("Error(plotpt1d): np < nv : ",2I8)') np,nv write(*,*) stop end if ! special case of 1 vertex if (nv.eq.1) then dv(1)=0.d0 dp(:)=0.d0 do i=1,np vpl(:,i)=vvl(:,1) end do return end if allocate(seg(nv)) ! find the length of each segment and total distance dt=0.d0 do i=1,nv-1 dv(i)=dt vl(:)=vvl(:,i+1)-vvl(:,i) call r3mv(cvec,vl,vc) seg(i)=sqrt(vc(1)**2+vc(2)**2+vc(3)**2) dt=dt+seg(i) end do dv(nv)=dt ! add small amount to total distance to avoid 0/0 condition dt=dt+1.d-8 ! number of points to use between vertices n=np-nv ! construct the interpolating path k=0 do i=1,nv-1 t1=dble(n)*seg(i)/dt m=nint(t1) if ((m.gt.n).or.(i.eq.(nv-1))) m=n do j=1,m+1 k=k+1 f=dble(j-1)/dble(m+1) dp(k)=dv(i)+f*seg(i) vpl(:,k)=vvl(:,i)*(1.d0-f)+vvl(:,i+1)*f end do dt=dt-seg(i) n=n-m end do dp(np)=dv(nv) vpl(:,np)=vvl(:,nv) deallocate(seg) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/init1.f900000644000000000000000000000013214061636517014270 xustar0030 mtime=1623670095.453101992 30 atime=1623670094.242103116 30 ctime=1623670095.453101992 elk-7.2.42/src/init1.f900000644002504400250440000002516714061636517016340 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: init1 ! !INTERFACE: subroutine init1 ! !USES: use modmain use moddftu use modulr use modtddft use modtest use modvars use modstore ! !DESCRIPTION: ! Generates the $k$-point set and then allocates and initialises global ! variables which depend on the $k$-point set. ! ! !REVISION HISTORY: ! Created January 2004 (JKD) !EOP !BOC implicit none ! local variables logical lsym(48) integer is,ia,ias,nppt integer io,ilo,i1,i2,i3 integer ik,isym,jspn integer l1,l2,l3,m1,m2,m3 integer lm1,lm2,lm3,n real(8) vl(3),vc(3),t1 real(8) boxl(3,0:3) real(8) ts0,ts1 ! external functions complex(8), external :: gauntyry call timesec(ts0) !---------------------! ! k-point set ! !---------------------! ! check if the system is an isolated molecule if (molecule) then ngridk(:)=1 vkloff(:)=0.d0 autokpt=.false. end if ! store the point group symmetries for reducing the k-point set if (reducek.eq.0) then nsymkpt=1 symkpt(:,:,1)=symlat(:,:,1) else lsym(:)=.false. do isym=1,nsymcrys if (reducek.eq.2) then ! check symmetry is symmorphic if (.not.tv0symc(isym)) goto 10 ! check also that the spin rotation is the same as the spatial rotation if (spinpol) then if (lspnsymc(isym).ne.lsplsymc(isym)) goto 10 end if end if lsym(lsplsymc(isym))=.true. 10 continue end do nsymkpt=0 do isym=1,nsymlat if (lsym(isym)) then nsymkpt=nsymkpt+1 symkpt(:,:,nsymkpt)=symlat(:,:,isym) end if end do end if if (any(task.eq.[20,21,22,23])) then ! generate k-points along a path for band structure plots call plotpt1d(bvec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) nkpt=npp1d if (allocated(vkl)) deallocate(vkl) allocate(vkl(3,nkpt)) if (allocated(vkc)) deallocate(vkc) allocate(vkc(3,nkpt)) do ik=1,nkpt vkl(:,ik)=vplp1d(:,ik) call r3mv(bvec,vkl(:,ik),vkc(:,ik)) end do nkptnr=nkpt else if (task.eq.25) then ! effective mass calculation nkpt=(2*ndspem+1)**3 if (allocated(ivk)) deallocate(ivk) allocate(ivk(3,nkpt)) if (allocated(vkl)) deallocate(vkl) allocate(vkl(3,nkpt)) if (allocated(vkc)) deallocate(vkc) allocate(vkc(3,nkpt)) ! map vector to [0,1) call r3frac(epslat,vklem) ik=0 do i3=-ndspem,ndspem do i2=-ndspem,ndspem do i1=-ndspem,ndspem ik=ik+1 ivk(1,ik)=i1; ivk(2,ik)=i2; ivk(3,ik)=i3 vc(1)=dble(i1); vc(2)=dble(i2); vc(3)=dble(i3) vc(:)=vc(:)*deltaem call r3mv(binv,vc,vl) vkl(:,ik)=vklem(:)+vl(:) call r3mv(bvec,vkl(:,ik),vkc(:,ik)) end do end do end do nkptnr=nkpt else ! determine the k-point grid automatically from radkpt if required if (autokpt) then t1=radkpt/twopi ngridk(:)=int(t1*sqrt(bvec(1,:)**2+bvec(2,:)**2+bvec(3,:)**2))+1 end if ! set up the default k-point box boxl(:,0)=vkloff(:)/dble(ngridk(:)) if (task.eq.102) boxl(:,0)=0.d0 boxl(:,1)=boxl(:,0) boxl(:,2)=boxl(:,0) boxl(:,3)=boxl(:,0) boxl(1,1)=boxl(1,1)+1.d0 boxl(2,2)=boxl(2,2)+1.d0 boxl(3,3)=boxl(3,3)+1.d0 ! k-point set and box for Fermi surface plots if (any(task.eq.[100,101,102])) then ngridk(:)=np3d(:) if (task.ne.102) boxl(:,:)=vclp3d(:,:) end if ! allocate the k-point set arrays if (allocated(ivkik)) deallocate(ivkik) allocate(ivkik(0:ngridk(1)-1,0:ngridk(2)-1,0:ngridk(3)-1)) if (allocated(ivkiknr)) deallocate(ivkiknr) allocate(ivkiknr(0:ngridk(1)-1,0:ngridk(2)-1,0:ngridk(3)-1)) nkptnr=ngridk(1)*ngridk(2)*ngridk(3) if (allocated(ivk)) deallocate(ivk) allocate(ivk(3,nkptnr)) if (allocated(vkl)) deallocate(vkl) allocate(vkl(3,nkptnr)) if (allocated(vkc)) deallocate(vkc) allocate(vkc(3,nkptnr)) if (allocated(wkpt)) deallocate(wkpt) allocate(wkpt(nkptnr)) ! generate the k-point set call genppts(.false.,nsymkpt,symkpt,ngridk,nkptnr,epslat,bvec,boxl,nkpt, & ivkik,ivkiknr,ivk,vkl,vkc,wkpt,wkptnr) ! write to VARIABLES.OUT call writevars('nsymkpt',iv=nsymkpt) call writevars('symkpt',nv=9*nsymkpt,iva=symkpt) call writevars('ngridk',nv=3,iva=ngridk) call writevars('vkloff',nv=3,rva=vkloff) call writevars('nkpt',iv=nkpt) call writevars('ivkik',nv=nkptnr,iva=ivkik) call writevars('ivk',nv=3*nkptnr,iva=ivk) call writevars('vkl',nv=3*nkptnr,rva=vkl) call writevars('wkpt',nv=nkpt,rva=wkpt) end if if (any(task.eq.[700,701,731,732,733,741,742,743,771,772,773])) then ! generate ultracell reciprocal lattice vectors if required call reciplat(avecu,bvecu,omegau,omegabzu) ! generate the kappa, k+kappa and Q-points if required call genkpakq end if ! write the k-points to test file call writetest(910,'k-points (Cartesian)',nv=3*nkpt,tol=1.d-8,rva=vkc) !---------------------! ! G+k-vectors ! !---------------------! if ((xctype(1).lt.0).or.tddos.or. & (any(task.eq.[5,10,205,300,600,620,630,800,801]))) then nppt=nkptnr else nppt=nkpt end if ! find the maximum number of G+k-vectors call findngkmax(nkpt,vkc,nspnfv,vqcss,ngvc,vgc,gkmax,ngkmax) ! allocate the G+k-vector arrays if (allocated(ngk)) deallocate(ngk) allocate(ngk(nspnfv,nppt)) if (allocated(igkig)) deallocate(igkig) allocate(igkig(ngkmax,nspnfv,nppt)) if (allocated(vgkl)) deallocate(vgkl) allocate(vgkl(3,ngkmax,nspnfv,nppt)) if (allocated(vgkc)) deallocate(vgkc) allocate(vgkc(3,ngkmax,nspnfv,nppt)) if (allocated(gkc)) deallocate(gkc) allocate(gkc(ngkmax,nspnfv,nppt)) if (allocated(sfacgk)) deallocate(sfacgk) allocate(sfacgk(ngkmax,natmtot,nspnfv,nppt)) do ik=1,nppt do jspn=1,nspnfv vl(:)=vkl(:,ik) vc(:)=vkc(:,ik) ! spin-spiral case if (spinsprl) then if (jspn.eq.1) then vl(:)=vl(:)+0.5d0*vqlss(:) vc(:)=vc(:)+0.5d0*vqcss(:) else vl(:)=vl(:)-0.5d0*vqlss(:) vc(:)=vc(:)-0.5d0*vqcss(:) end if end if ! generate the G+k-vectors call gengkvec(ngvc,ivg,vgc,vl,vc,gkmax,ngkmax,ngk(jspn,ik), & igkig(:,jspn,ik),vgkl(:,:,jspn,ik),vgkc(:,:,jspn,ik),gkc(:,jspn,ik)) ! generate structure factors for G+k-vectors call gensfacgp(ngk(jspn,ik),vgkc(:,:,jspn,ik),ngkmax,sfacgk(:,:,jspn,ik)) end do end do ! write to VARIABLES.OUT call writevars('nspnfv',iv=nspnfv) call writevars('ngk',nv=nspnfv*nkpt,iva=ngk) do ik=1,nkpt do jspn=1,nspnfv call writevars('igkig',l=jspn,m=ik,nv=ngk(jspn,ik),iva=igkig(:,jspn,ik)) end do end do !---------------------------------! ! APWs and local-orbitals ! !---------------------------------! apwordmax=0 lorbordmax=0 nlomax=0 lolmax=0 do is=1,nspecies lmoapw(is)=0 do l1=0,lmaxapw ! find the maximum APW order apwordmax=max(apwordmax,apword(l1,is)) ! find total number of APW coefficients (l, m and order) lmoapw(is)=lmoapw(is)+(2*l1+1)*apword(l1,is) end do ! find the maximum number of local-orbitals nlomax=max(nlomax,nlorb(is)) ! find the maximum local-orbital order and angular momentum do ilo=1,nlorb(is) lolmax=max(lolmax,lorbl(ilo,is)) lorbordmax=max(lorbordmax,lorbord(ilo,is)) end do end do lolmmax=(lolmax+1)**2 ! polynomial order used for APW and local-orbital radial derivatives npapw=max(apwordmax+1,4) nplorb=max(lorbordmax+1,4) ! set the APW and local-orbital linearisation energies to the default if (allocated(apwe)) deallocate(apwe) allocate(apwe(apwordmax,0:lmaxapw,natmtot)) if (allocated(lorbe)) deallocate(lorbe) allocate(lorbe(lorbordmax,maxlorb,natmtot)) do is=1,nspecies do l1=0,lmaxapw do io=1,apword(l1,is) do ia=1,natoms(is) ias=idxas(ia,is) apwe(io,l1,ias)=apwe0(io,l1,is) end do end do end do do ilo=1,nlorb(is) do io=1,lorbord(ilo,is) do ia=1,natoms(is) ias=idxas(ia,is) lorbe(io,ilo,ias)=lorbe0(io,ilo,is) end do end do end do end do ! generate the local-orbital index call genidxlo ! allocate radial function arrays if (allocated(apwfr)) deallocate(apwfr) allocate(apwfr(nrmtmax,2,apwordmax,0:lmaxapw,natmtot)) if (allocated(apwdfr)) deallocate(apwdfr) allocate(apwdfr(apwordmax,0:lmaxapw,natmtot)) if (allocated(lofr)) deallocate(lofr) allocate(lofr(nrmtmax,2,nlomax,natmtot)) !-------------------------! ! DFT+U variables ! !-------------------------! if (dftu.ne.0) then ! allocate energy arrays to calculate Slater integrals with Yukawa potential if (allocated(fdue)) deallocate(fdue) allocate(fdue(0:lmaxdm,natmtot)) ! allocate radial functions to calculate Slater integrals with Yukawa potential if (allocated(fdufr)) deallocate(fdufr) allocate(fdufr(nrmtmax,0:lmaxdm,natmtot)) end if !---------------------------------------! ! eigenvalue equation variables ! !---------------------------------------! ! total number of empty states (M. Meinert) nempty=nint(nempty0*max(natmtot,1)) if (nempty.lt.1) nempty=1 ! number of first-variational states nstfv=int(chgval/2.d0)+nempty+1 ! overlap and Hamiltonian matrix sizes if (allocated(nmat)) deallocate(nmat) allocate(nmat(nspnfv,nkpt)) nmatmax=0 do ik=1,nkpt do jspn=1,nspnfv n=ngk(jspn,ik)+nlotot if (nstfv.gt.n) then write(*,*) write(*,'("Error(init1): number of first-variational states larger than & &matrix size")') write(*,'("Increase rgkmax or decrease nempty")') write(*,*) stop end if nmat(jspn,ik)=n nmatmax=max(nmatmax,n) end do end do ! number of second-variational states nstsv=nstfv*nspinor ! allocate second-variational arrays if (allocated(evalsv)) deallocate(evalsv) allocate(evalsv(nstsv,nkpt)) if (allocated(occsv)) deallocate(occsv) allocate(occsv(nstsv,nkpt)) occsv(:,:)=0.d0 ! allocate overlap and Hamiltonian integral arrays if (allocated(oalo)) deallocate(oalo) allocate(oalo(apwordmax,nlomax,natmtot)) if (allocated(ololo)) deallocate(ololo) allocate(ololo(nlomax,nlomax,natmtot)) if (allocated(haa)) deallocate(haa) allocate(haa(lmmaxo,apwordmax,0:lmaxapw,apwordmax,0:lmaxapw,natmtot)) if (allocated(hloa)) deallocate(hloa) allocate(hloa(lmmaxo,apwordmax,0:lmaxapw,nlomax,natmtot)) if (allocated(hlolo)) deallocate(hlolo) allocate(hlolo(lmmaxo,nlomax,nlomax,natmtot)) ! allocate and generate complex Gaunt coefficient array if (allocated(gntyry)) deallocate(gntyry) allocate(gntyry(lmmaxo,lmmaxapw,lmmaxapw)) do l1=0,lmaxapw do m1=-l1,l1 lm1=l1*(l1+1)+m1+1 do l3=0,lmaxapw do m3=-l3,l3 lm3=l3*(l3+1)+m3+1 do l2=0,lmaxo do m2=-l2,l2 lm2=l2*(l2+1)+m2+1 gntyry(lm2,lm3,lm1)=gauntyry(l1,l2,l3,m1,m2,m3) end do end do end do end do end do end do ! write to VARIABLES.OUT call writevars('nempty',iv=nempty) call writevars('nstfv',iv=nstfv) call writevars('nlotot',iv=nlotot) call writevars('nstsv',iv=nstsv) call timesec(ts1) timeinit=timeinit+ts1-ts0 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/init2.f900000644000000000000000000000013214061636517014271 xustar0030 mtime=1623670095.454101992 30 atime=1623670094.244103115 30 ctime=1623670095.454101992 elk-7.2.42/src/init2.f900000644002504400250440000000775414061636517016343 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine init2 use modmain use modrdm use modphonon use modvars use modmpi implicit none ! local variables logical lsym(48) integer isym,iv(3) real(8) boxl(3,0:3) real(8) ts0,ts1 call timesec(ts0) !---------------------! ! q-point set ! !---------------------! ! check if the system is an isolated molecule if (molecule) ngridq(:)=1 ! store the point group symmetries for reducing the q-point set if (reduceq.eq.0) then nsymqpt=1 symqpt(:,:,1)=symlat(:,:,1) else lsym(:)=.false. do isym=1,nsymcrys lsym(lsplsymc(isym))=.true. end do nsymqpt=0 do isym=1,nsymlat if (lsym(isym)) then nsymqpt=nsymqpt+1 symqpt(:,:,nsymqpt)=symlat(:,:,isym) end if end do end if if (any(task.eq.[105,180,185,320,330,331])) then ! equal k- and q-point grids for nesting function, BSE and linear-reposnse TDDFT ngridq(:)=ngridk(:) else if ((xctype(1).lt.0).or.(any(task.eq.[5,300,600,620,630,800,801]))) then ! allow the q-point grid to be smaller than the k-point grid for OEP, ! Hartree-Fock, RDMFT and GW if (any(ngridq(:).le.0)) ngridq(:)=ngridk(:) else ngridq(:)=abs(ngridq(:)) end if ! check that the q-point and k-point grids are commensurate for some tasks if ((xctype(1).lt.0).or.(any(task.eq.[5,205,240,241,300,600,620,630, & 800,801]))) then iv(:)=mod(ngridk(:),ngridq(:)) if ((iv(1).ne.0).or.(iv(2).ne.0).or.(iv(3).ne.0)) then write(*,*) write(*,'("Error(init2): k-point grid incommensurate with q-point grid")') write(*,'(" ngridk : ",3I6)') ngridk write(*,'(" ngridq : ",3I6)') ngridq write(*,*) stop end if end if ! allocate the q-point arrays if (allocated(ivqiq)) deallocate(ivqiq) allocate(ivqiq(0:ngridq(1)-1,0:ngridq(2)-1,0:ngridq(3)-1)) if (allocated(ivqiqnr)) deallocate(ivqiqnr) allocate(ivqiqnr(0:ngridq(1)-1,0:ngridq(2)-1,0:ngridq(3)-1)) nqptnr=ngridq(1)*ngridq(2)*ngridq(3) if (allocated(ivq)) deallocate(ivq) allocate(ivq(3,nqptnr)) if (allocated(vql)) deallocate(vql) allocate(vql(3,nqptnr)) if (allocated(vqc)) deallocate(vqc) allocate(vqc(3,nqptnr)) if (allocated(wqpt)) deallocate(wqpt) allocate(wqpt(nqptnr)) ! set up the q-point box (offset should always be zero) boxl(:,:)=0.d0 boxl(1,1)=1.d0; boxl(2,2)=1.d0; boxl(3,3)=1.d0 ! generate the q-point set ! (note that the vectors vql and vqc are in the first Brillouin zone) call genppts(.true.,nsymqpt,symqpt,ngridq,nqptnr,epslat,bvec,boxl,nqpt,ivqiq, & ivqiqnr,ivq,vql,vqc,wqpt,wqptnr) ! write the q-points to QPOINTS.OUT if (mp_mpi) call writeqpts ! write to VARIABLES.OUT call writevars('nsymqpt',iv=nsymqpt) call writevars('symqpt',nv=9*nsymqpt,iva=symqpt) call writevars('ngridq',nv=3,iva=ngridq) call writevars('nqpt',iv=nqpt) call writevars('ivqiq',nv=nqptnr,iva=ivqiq) call writevars('ivq',nv=3*nqptnr,iva=ivq) call writevars('vql',nv=3*nqptnr,rva=vql) call writevars('wqpt',nv=nqpt,rva=wqpt) !--------------------------------------------------------! ! OEP, Hartree-Fock, RDMFT, BSE and GW variables ! !--------------------------------------------------------! if ((xctype(1).lt.0).or.(any(task.eq.[5,180,185,188,205,300,320,330,331,600, & 620,630,800,801]))) then ! determine the regularised Coulomb Green's function for small q call gengclq ! output the Coulomb Green's function to GCLQ.OUT if (mp_mpi) call writegclq ! initialise OEP variables if (xctype(1).lt.0) call initoep end if if (task.eq.300) then if (allocated(vclmat)) deallocate(vclmat) allocate(vclmat(nstsv,nstsv,nkpt)) if (allocated(dkdc)) deallocate(dkdc) allocate(dkdc(nstsv,nstsv,nkpt)) end if !-------------------------! ! phonon variables ! !-------------------------! if (allocated(wphq)) deallocate(wphq) if (task.eq.220) then allocate(wphq(nbph,npp1d)) end if if (any(task.eq.[240,241,250,270,271,280,285])) then allocate(wphq(nbph,nqpt)) end if call timesec(ts1) timeinit=timeinit+ts1-ts0 end subroutine elk-7.2.42/src/PaxHeaders.21776/findsymcrys.f900000644000000000000000000000013014061636517015614 xustar0029 mtime=1623670095.45610199 30 atime=1623670094.245103114 29 ctime=1623670095.45610199 elk-7.2.42/src/findsymcrys.f900000644002504400250440000001475114061636517017663 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: findsymcrys ! !INTERFACE: subroutine findsymcrys ! !USES: use modmain use modmpi use modtest ! !DESCRIPTION: ! Finds the complete set of symmetries which leave the crystal structure ! (including the magnetic fields) invariant. A crystal symmetry is of the form ! $\{\alpha_S|\alpha_R|{\bf t}\}$, where ${\bf t}$ is a translation vector, ! $\alpha_R$ is a spatial rotation operation and $\alpha_S$ is a global spin ! rotation. Note that the order of operations is important and defined to be ! from right to left, i.e. translation followed by spatial rotation followed ! by spin rotation. In the case of spin-orbit coupling $\alpha_S=\alpha_R$. In ! order to determine the translation vectors, the entire atomic basis is ! shifted so that the first atom in the smallest set of atoms of the same ! species is at the origin. Then all displacement vectors between atoms in ! this set are checked as possible symmetry translations. If the global ! variable {\tt tshift} is set to {\tt .false.} then the shift is not ! performed. See L. M. Sandratskii and P. G. Guletskii, {\it J. Phys. F: Met. ! Phys.} {\bf 16}, L43 (1986) and the routine {\tt findsym}. ! ! !REVISION HISTORY: ! Created April 2007 (JKD) !EOP !BOC implicit none ! local variables integer ia,ja,is,js integer isym,nsym,i,n integer lspl(48),lspn(48),ilspl real(8) v0(3),v1(3),v2(3),t1 real(8) apl(3,maxatoms,maxspecies) ! automatic arrays integer iea(natmmax,nspecies,48) real(8) vtl(3,natmmax**2+1) ! allocate global equivalent atom arrays if (allocated(ieqatom)) deallocate(ieqatom) allocate(ieqatom(natmmax,nspecies,maxsymcrys)) if (allocated(eqatoms)) deallocate(eqatoms) allocate(eqatoms(natmmax,natmmax,nspecies)) ! store position of first atom if (natmtot.gt.0) v0(:)=atposl(:,1,1) ! find the smallest set of atoms is=1 do js=1,nspecies if (natoms(js).lt.natoms(is)) is=js end do if ((tshift).and.(natmtot.gt.0)) then ! shift basis so that the first atom in the smallest atom set is at the origin v1(:)=atposl(:,1,is) do js=1,nspecies do ia=1,natoms(js) ! shift atom atposl(:,ia,js)=atposl(:,ia,js)-v1(:) ! map lattice coordinates back to [0,1) call r3frac(epslat,atposl(:,ia,js)) ! determine the new Cartesian coordinates call r3mv(avec,atposl(:,ia,js),atposc(:,ia,js)) end do end do end if ! determine possible translation vectors from smallest set of atoms n=1 vtl(:,1)=0.d0 do ia=1,natoms(is) do ja=2,natoms(is) ! compute difference between two atom vectors v1(:)=atposl(:,ia,is)-atposl(:,ja,is) ! map lattice coordinates to [0,1) call r3frac(epslat,v1) ! check if vector has any component along electric field if (tefield) then call r3mv(avec,v1,v2) t1=efieldc(1)*v2(1)+efieldc(2)*v2(2)+efieldc(3)*v2(3) if (abs(t1).gt.epslat) goto 10 end if do i=1,n t1=abs(vtl(1,i)-v1(1))+abs(vtl(2,i)-v1(2))+abs(vtl(3,i)-v1(3)) if (t1.lt.epslat) goto 10 end do n=n+1 vtl(:,n)=v1(:) 10 continue end do end do ! no translations required when symtype=0,2 (F. Cricchio) if (symtype.ne.1) n=1 eqatoms(:,:,:)=.false. nsymcrys=0 ! loop over all possible translations do i=1,n ! construct new array with translated positions do is=1,nspecies do ia=1,natoms(is) apl(:,ia,is)=atposl(:,ia,is)+vtl(:,i) end do end do ! find the symmetries for current translation call findsym(atposl,apl,nsym,lspl,lspn,iea) do isym=1,nsym nsymcrys=nsymcrys+1 if (nsymcrys.gt.maxsymcrys) then write(*,*) write(*,'("Error(findsymcrys): too many crystal symmetries")') write(*,'(" Adjust maxsymcrys in modmain and recompile code")') write(*,*) stop end if vtlsymc(:,nsymcrys)=vtl(:,i) lsplsymc(nsymcrys)=lspl(isym) lspnsymc(nsymcrys)=lspn(isym) do is=1,nspecies do ia=1,natoms(is) ja=iea(ia,is,isym) ieqatom(ia,is,nsymcrys)=ja eqatoms(ia,ja,is)=.true. eqatoms(ja,ia,is)=.true. end do end do end do end do tsyminv=.false. do isym=1,nsymcrys ! check if inversion symmetry is present i=lsplsymc(isym) if (all(symlat(:,:,i).eq.-symlat(:,:,1))) then tsyminv=.true. ! make inversion the second symmetry element (the identity is the first) v1(:)=vtlsymc(:,isym); vtlsymc(:,isym)=vtlsymc(:,2); vtlsymc(:,2)=v1(:) i=lsplsymc(isym); lsplsymc(isym)=lsplsymc(2); lsplsymc(2)=i i=lspnsymc(isym); lspnsymc(isym)=lspnsymc(2); lspnsymc(2)=i do is=1,nspecies do ia=1,natoms(is) i=ieqatom(ia,is,isym) ieqatom(ia,is,isym)=ieqatom(ia,is,2) ieqatom(ia,is,2)=i end do end do exit end if end do ! if inversion exists then shift basis so that inversion center is at origin if (tsyminv.and.tshift) then v1(:)=v1(:)/2.d0 do is=1,nspecies do ia=1,natoms(is) ! shift atom atposl(:,ia,is)=atposl(:,ia,is)+v1(:) ! map lattice coordinates back to [0,1) call r3frac(epslat,atposl(:,ia,is)) ! map lattice coordinates to [-0.5,0.5) do i=1,3 if (atposl(i,ia,is).gt.0.5d0) atposl(i,ia,is)=atposl(i,ia,is)-1.d0 end do ! determine the new Cartesian coordinates call r3mv(avec,atposl(:,ia,is),atposc(:,ia,is)) end do end do ! recalculate crystal symmetry translation vectors do isym=1,nsymcrys ilspl=isymlat(lsplsymc(isym)) v2(:)=symlat(:,1,ilspl)*v1(1) & +symlat(:,2,ilspl)*v1(2) & +symlat(:,3,ilspl)*v1(3) vtlsymc(:,isym)=vtlsymc(:,isym)-v1(:)+v2(:) call r3frac(epslat,vtlsymc(:,isym)) end do end if ! translation vector in Cartesian coordinates do isym=1,nsymcrys call r3mv(avec,vtlsymc(:,isym),vtcsymc(:,isym)) end do ! set flag for zero translation vector do isym=1,nsymcrys t1=abs(vtlsymc(1,isym))+abs(vtlsymc(2,isym))+abs(vtlsymc(3,isym)) if (t1.lt.epslat) then tv0symc(isym)=.true. else tv0symc(isym)=.false. end if end do ! check inversion does not include a translation if (tsyminv) then if (.not.tv0symc(2)) tsyminv=.false. end if if (natmtot.gt.0) then v1(:)=atposl(:,1,1)-v0(:) t1=abs(v1(1))+abs(v1(2))+abs(v1(3)) if (mp_mpi.and.(t1.gt.epslat)) then write(*,*) write(*,'("Info(findsymcrys): atomic basis shift (lattice) :")') write(*,'(3G18.10)') v1(:) write(*,'("See GEOMETRY.OUT for new atomic positions")') end if end if ! write number of crystal symmetries to test file call writetest(705,'number of crystal symmetries',iv=nsymcrys) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/plotpt3d.f900000644000000000000000000000013214061636517015015 xustar0030 mtime=1623670095.457101989 30 atime=1623670094.247103112 30 ctime=1623670095.457101989 elk-7.2.42/src/plotpt3d.f900000644002504400250440000000142714061636517017056 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine plotpt3d(vpl) use modmain implicit none ! arguments real(8), intent(out) :: vpl(3,np3d(1)*np3d(2)*np3d(3)) ! local variables integer ip,i1,i2,i3 real(8) v1(3),v2(3),v3(3) real(8) t1,t2,t3 ! generate 3D grid from corner vectors v1(:)=vclp3d(:,1)-vclp3d(:,0) v2(:)=vclp3d(:,2)-vclp3d(:,0) v3(:)=vclp3d(:,3)-vclp3d(:,0) ip=0 do i3=0,np3d(3)-1 t3=dble(i3)/dble(np3d(3)) do i2=0,np3d(2)-1 t2=dble(i2)/dble(np3d(2)) do i1=0,np3d(1)-1 t1=dble(i1)/dble(np3d(1)) ip=ip+1 vpl(:,ip)=t1*v1(:)+t2*v2(:)+t3*v3(:)+vclp3d(:,0) end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/elnes.f900000644000000000000000000000013114061636517014351 xustar0030 mtime=1623670095.459101987 29 atime=1623670094.24910311 30 ctime=1623670095.459101987 elk-7.2.42/src/elnes.f900000644002504400250440000000717314061636517016417 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine elnes use modmain use modomp use modtest implicit none ! local variables integer ik,jk,ikq,isym,nsk(3) integer ist,jst,iw,n,nthd real(8) vgqc(3),gqc real(8) vkql(3),v(3) real(8) q,wd,dw,w,t1 ! allocatable arrays real(8), allocatable :: jlgqr(:,:),ddcs(:) real(8), allocatable :: e(:,:,:),f(:,:,:) complex(8), allocatable :: ylmgq(:),sfacgq(:) complex(8), allocatable :: expmt(:,:),emat(:,:) ! initialise universal variables call init0 call init1 call init2 ! check q-vector is commensurate with k-point grid v(:)=dble(ngridk(:))*vecql(:) v(:)=abs(v(:)-nint(v(:))) if ((v(1).gt.epslat).or.(v(2).gt.epslat).or.(v(3).gt.epslat)) then write(*,*) write(*,'("Error(elnes): q-vector incommensurate with k-point grid")') write(*,'(" ngridk : ",3I6)') ngridk write(*,'(" vecql : ",3G18.10)') vecql write(*,*) stop end if ! read in the density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the second-variational eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the phase factor function exp(iq.r) in the muffin-tins allocate(jlgqr(njcmax,nspecies)) allocate(ylmgq(lmmaxo),sfacgq(natmtot)) allocate(expmt(npcmtmax,natmtot)) call gengqf(1,vecqc,vgqc,gqc,jlgqr,ylmgq,sfacgq) call genexpmt(1,jlgqr,ylmgq,1,sfacgq,expmt) deallocate(jlgqr,ylmgq,sfacgq) allocate(e(nstsv,nstsv,nkptnr),f(nstsv,nstsv,nkptnr)) e(:,:,:)=0.d0 f(:,:,:)=0.d0 ! begin parallel loop over non-reduced k-points call holdthd(nkptnr,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(emat,jk,vkql,isym) & !$OMP PRIVATE(ikq,ist,jst,t1) & !$OMP NUM_THREADS(nthd) allocate(emat(nstsv,nstsv)) !$OMP DO do ik=1,nkptnr !$OMP CRITICAL(elnes_) write(*,'("Info(elnes): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(elnes_) ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! k+q-vector in lattice coordinates vkql(:)=vkl(:,ik)+vecql(:) ! index to k+q-vector call findkpt(vkql,isym,ikq) ! compute < i,k+q | exp(iq.r) | j,k > matrix elements call genexpmat(vkl(:,ik),expmt,emat) ! add to the double differential scattering cross-section do jst=1,nstsv if (evalsv(jst,jk).lt.emaxelnes) then do ist=1,nstsv e(ist,jst,ik)=evalsv(ist,ikq)-evalsv(jst,jk) t1=dble(emat(ist,jst))**2+aimag(emat(ist,jst))**2 f(ist,jst,ik)=t1*occsv(jst,jk)*(occmax-occsv(ist,ikq)) end do end if end do end do !$OMP END DO deallocate(emat) !$OMP END PARALLEL call freethd(nthd) ! number of subdivisions used for interpolation nsk(:)=max(ngrkf/ngridk(:),1) n=nstsv*nstsv ! integrate over the Brillouin zone allocate(ddcs(nwplot)) call brzint(nswplot,ngridk,nsk,ivkiknr,nwplot,wplot,n,n,e,f,ddcs) q=sqrt(vecqc(1)**2+vecqc(2)**2+vecqc(3)**2) t1=2.d0/(omega*occmax) if (q.gt.epslat) t1=t1/q**4 ddcs(:)=t1*ddcs(:) open(50,file='ELNES.OUT',form='FORMATTED') wd=wplot(2)-wplot(1) dw=wd/dble(nwplot) do iw=1,nwplot w=dw*dble(iw-1)+wplot(1) write(50,'(2G18.10)') w,ddcs(iw) end do close(50) write(*,*) write(*,'("Info(elnes):")') write(*,'(" ELNES double differential cross-section written to ELNES.OUT")') ! write ELNES distribution to test file call writetest(140,'ELNES cross-section',nv=nwplot,tol=1.d-2,rva=ddcs) deallocate(e,f,ddcs,expmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/fermisurfbxsf.f900000644000000000000000000000013214061636517016131 xustar0030 mtime=1623670095.460101986 30 atime=1623670094.250103109 30 ctime=1623670095.460101986 elk-7.2.42/src/fermisurfbxsf.f900000644002504400250440000001011514061636517020164 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 F. Cricchio, F. Bultmark and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine fermisurfbxsf use modmain use modomp implicit none ! local variables integer ik,nst,ist integer ist0,ist1,jst0,jst1 integer i1,i2,i3,j1,j2,j3 integer nf,f,i,nthd real(8) e0,e1 ! allocatable arrays integer, allocatable :: idx(:) real(8), allocatable :: evalfv(:,:),e(:) complex(8), allocatable :: evecfv(:,:,:) complex(8), allocatable :: evecsv(:,:) ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! begin parallel loop over reduced k-points set call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evalfv,evecfv,evecsv) & !$OMP NUM_THREADS(nthd) allocate(evalfv(nstfv,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv)) allocate(evecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkpt !$OMP CRITICAL(fermisurfbxsf_) write(*,'("Info(fermisurfbxsf): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(fermisurfbxsf_) ! solve the first- and second-variational eigenvalue equations call eveqn(ik,evalfv,evecfv,evecsv) ! end loop over reduced k-points set end do !$OMP END DO deallocate(evalfv,evecfv,evecsv) !$OMP END PARALLEL call freethd(nthd) ! if iterative diagonalisation is used the eigenvalues must be reordered if (tefvit.and.(.not.spinpol)) then allocate(idx(nstsv),e(nstsv)) do ik=1,nkpt e(:)=evalsv(:,ik) call sortidx(nstsv,e,idx) do ist=1,nstsv evalsv(ist,ik)=e(idx(ist)) end do end do deallocate(idx,e) end if ! number of files to plot (2 for collinear magnetism, 1 otherwise) if (ndmag.eq.1) then nf=2 else nf=1 end if do f=1,nf if (nf.eq.2) then if (f.eq.1) then open(50,file='FERMISURF_UP.bxsf',form='FORMATTED') jst0=1; jst1=nstfv else open(50,file='FERMISURF_DN.bxsf',form='FORMATTED') jst0=nstfv+1; jst1=2*nstfv end if else open(50,file='FERMISURF.bxsf',form='FORMATTED') jst0=1; jst1=nstsv end if ! find the range of eigenvalues which contribute to the Fermi surface (Lars) ist0=jst1; ist1=jst0 do ist=jst0,jst1 e0=minval(evalsv(ist,:)); e1=maxval(evalsv(ist,:)) ! determine if the band crosses the Fermi energy if ((e0.lt.efermi).and.(e1.gt.efermi)) then ist0=min(ist0,ist); ist1=max(ist1,ist) end if end do nst=ist1-ist0+1 write(50,'(" BEGIN_INFO")') write(50,'(" # Band-XCRYSDEN-Structure-File for Fermi surface plotting")') write(50,'(" # created by Elk version ",I1.1,".",I1.1,".",I2.2)') version write(50,'(" # Launch as: xcrysden --bxsf FERMISURF(_UP/_DN).bxsf")') write(50,'(" Fermi Energy: ",G18.10)') 0.d0 write(50,'(" END_INFO")') write(50,'(" BEGIN_BLOCK_BANDGRID_3D")') write(50, '(" band_energies")') write(50,'(" BANDGRID_3D_BANDS")') write(50,'(I4)') nst write(50,'(3I6)') ngridk(:)+1 write(50,'(3G18.10)') 0.d0,0.d0,0.d0 do i=1,3 write(50,'(3G18.10)') bvec(:,i) end do do ist=ist0,ist1 write(50,'(" BAND: ",I4)') ist do i1=0,ngridk(1) j1=mod(i1,ngridk(1)) do i2=0,ngridk(2) j2=mod(i2,ngridk(2)) do i3=0,ngridk(3) j3=mod(i3,ngridk(3)) ik=ivkik(j1,j2,j3) write(50,'(G18.10)') evalsv(ist,ik)-efermi end do end do end do end do write(50,'(" END_BANDGRID_3D")') write(50,'(" END_BLOCK_BANDGRID_3D")') close(50) end do write(*,*) write(*,'("Info(fermisurfbxsf):")') if (ndmag.eq.1) then write(*,'(" 3D Fermi surface data written to FERMISURF_UP.bxsf and & &FERMISURF_DN.bxsf")') else write(*,'(" 3D Fermi surface data written to FERMISURF.bxsf")') end if write(*,'(" for plotting with XCrysDen (Fermi energy set to zero)")') write(*,*) write(*,'(" Launch as: xcrysden --bxsf FERMISURF(_UP/_DN).bxsf")') end subroutine elk-7.2.42/src/PaxHeaders.21776/genspecies.f900000644000000000000000000000013214061636517015371 xustar0030 mtime=1623670095.462101984 30 atime=1623670094.252103107 30 ctime=1623670095.462101984 elk-7.2.42/src/genspecies.f900000644002504400250440000000467514061636517017442 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genspecies(fnum) use modmain use modmpi implicit none ! arguments integer, intent(in) :: fnum ! local variables integer nz,nmax,nst,ist integer ne,nrm,nr,ir,it,i integer n(maxstsp),l(maxstsp),k(maxstsp) real(8) mass,zn,t1,t2,t3 real(8) rm,rmin,rmax real(8) occ(maxstsp),eval(maxstsp) character(256) symb,name ! allocatable arrays real(8), allocatable :: r(:),rho(:),vr(:),rwf(:,:,:) read(fnum,*,err=20) nz if (nz.le.0) then write(*,*) write(*,'("Error(genspecies): atomic number negative : ",I8)') nz write(*,*) stop end if read(fnum,*,err=20) symb,name read(fnum,*,err=20) mass ! convert from 'atomic mass units' to atomic units mass=mass*amu read(fnum,*,err=20) rm read(fnum,*,err=20) nst if ((nst.le.0).or.(nst.gt.maxstsp)) then write(*,*) write(*,'("Error(genspecies): nst out of range : ",I8)') nst write(*,'(" for species ",A)') trim(name) write(*,*) stop end if ne=0 nmax=1 do ist=1,nst read(fnum,*,err=20) n(ist),l(ist),k(ist),i ne=ne+i occ(ist)=i nmax=max(nmax,n(ist)) end do if (mp_mpi) then write(*,'("Info(genspecies): running Z = ",I4,", (",A,")")') nz,trim(name) if (ne.ne.nz) then write(*,*) write(*,'("Warning(genspecies): atom not neutral, electron number : ",& &I4)') ne end if end if ! nuclear charge in units of e zn=-dble(nz) ! minimum radial mesh point proportional to 1/sqrt(Z) rmin=2.d-6/sqrt(dble(nz)) ! default effective infinity rmax=100.d0 ! set the number of radial mesh points proportional to number of nodes nrm=100*(nmax+1) do it=1,2 ! number of points to effective infinity t1=log(rm/rmin) t2=log(rmax/rmin) t3=dble(nrm)*t2/t1 nr=int(t3) allocate(r(nr),rho(nr),vr(nr),rwf(nr,2,nst)) ! generate logarithmic radial mesh t2=t1/dble(nrm-1) do ir=1,nr r(ir)=rmin*exp(dble(ir-1)*t2) end do ! solve the Kohn-Sham-Dirac equation for the atom call atom(sol,.true.,zn,nst,n,l,k,occ,3,0,nr,r,eval,rho,vr,rwf) ! recompute the effective infinity do ir=nr,1,-1 if (rho(ir).gt.1.d-20) then rmax=1.75d0*r(ir) exit end if end do deallocate(r,rho,vr,rwf) end do ! write the species file call writespecies(symb,name,zn,mass,rmin,rm,rmax,nrm,nst,n,l,k,occ,eval) return 20 continue write(*,*) write(*,'("Error(genspecies): error reading species data")') write(*,*) stop end subroutine elk-7.2.42/src/PaxHeaders.21776/writeexpmat.f900000644000000000000000000000013214061636517015615 xustar0030 mtime=1623670095.464101982 30 atime=1623670094.254103105 30 ctime=1623670095.464101982 elk-7.2.42/src/writeexpmat.f900000644002504400250440000000501114061636517017647 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeexpmat use modmain implicit none ! local variables integer nk,ik,jk,i,j real(8) vgqc(3),gqc real(8) a,b ! allocatable arrays real(8), allocatable :: jlgqr(:,:) complex(8), allocatable :: ylmgq(:),sfacgq(:) complex(8), allocatable :: expmt(:,:),emat(:,:) ! initialise universal variables call init0 call init1 call init2 ! read in the density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! generate the phase factor function exp(iq.r) in the muffin-tins allocate(jlgqr(njcmax,nspecies)) allocate(ylmgq(lmmaxo),sfacgq(natmtot)) allocate(expmt(npcmtmax,natmtot)) call gengqf(1,vecqc,vgqc,gqc,jlgqr,ylmgq,sfacgq) call genexpmt(1,jlgqr,ylmgq,1,sfacgq,expmt) expmt(:,:)=omega*expmt(:,:) deallocate(jlgqr,ylmgq,sfacgq) ! number of k-points to write out if (kstlist(1,1).le.0) then nk=nkpt else nk=nkstlist end if open(50,file='EXPIQR.OUT',form='FORMATTED') write(50,*) write(50,'("q-vector (lattice coordinates) :")') write(50,'(3G18.10)') vecql write(50,'("q-vector (Cartesian coordinates) :")') write(50,'(3G18.10)') vecqc write(50,*) write(50,'(I8," : number of k-points")') nk write(50,'(I6," : number of states per k-point")') nstsv allocate(emat(nstsv,nstsv)) do jk=1,nk if (kstlist(1,1).le.0) then ik=jk else ik=kstlist(1,jk) end if if ((ik.le.0).or.(ik.gt.nkpt)) then write(*,*) write(*,'("Error(writeexpiqr): k-point out of range : ",I8)') ik write(*,*) stop end if write(50,*) write(50,'(" k-point (lattice coordinates) :")') write(50,'(3G18.10)') vkl(:,ik) write(50,*) write(50,'(" k-point (Cartesian coordinates) :")') write(50,'(3G18.10)') vkc(:,ik) call genexpmat(vkl(:,ik),expmt,emat) do i=1,nstsv write(50,*) write(50,'(I6," : state i; state j, <...>, |<...>|² below")') i do j=1,nstsv a=dble(emat(i,j)) b=aimag(emat(i,j)) write(50,'(I6,3G18.10)') j,a,b,a**2+b**2 end do end do ! end loop over k-points end do close(50) write(*,*) write(*,'("Info(writeexpmat)")') write(*,'(" < i,k+q | exp(iq.r) | j,k > matrix elements written to & &EXPIQR.OUT")') write(*,'(" for the q-vector in vecql and all k-points in kstlist")') deallocate(expmt,emat) end subroutine elk-7.2.42/src/PaxHeaders.21776/writekpts.f900000644000000000000000000000013214061636517015300 xustar0030 mtime=1623670095.465101981 30 atime=1623670094.255103104 30 ctime=1623670095.465101981 elk-7.2.42/src/writekpts.f900000644002504400250440000000137314061636517017341 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writekpts ! !INTERFACE: subroutine writekpts ! !USES: use modmain ! !DESCRIPTION: ! Writes the $k$-points in lattice coordinates, weights and number of ! ${\bf G+k}$-vectors to the file {\tt KPOINTS.OUT}. ! ! !REVISION HISTORY: ! Created June 2003 (JKD) !EOP !BOC implicit none ! local variables integer ik open(50,file='KPOINTS'//trim(filext),form='FORMATTED') write(50,'(I6," : nkpt; k-point, vkl, wkpt, nmat below")') nkpt do ik=1,nkpt write(50,'(I6,4G18.10,2I8)') ik,vkl(:,ik),wkpt(ik),nmat(:,ik) end do close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/wfcrplot.f900000644000000000000000000000013014061636517015102 xustar0029 mtime=1623670095.46610198 30 atime=1623670094.257103103 29 ctime=1623670095.46610198 elk-7.2.42/src/wfcrplot.f900000644002504400250440000000177114061636517017147 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wfcrplot use modmain implicit none ! local variables integer ist,is,ia,ias,ir character(256) fname ! initialise universal variables call init0 ! read density and potentials from file call readstate ! generate the core wavefunctions call gencore do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(fname,'("WFCORE_S",I2.2,"_A",I4.4,".OUT")') is,ia open(50,file=trim(fname),form='FORMATTED') do ist=1,nstsp(is) if (spcore(ist,is)) then do ir=1,nrsp(is) write(50,'(2G18.10)') rsp(ir,is),rwfcr(ir,1,ist,ias) end do write(50,*) end if end do close(50) end do end do write(*,*) write(*,'("Info(wfcrplot):")') write(*,'(" Core state wavefunctions written to WFCORE_Sss_Aaaaa.OUT")') write(*,'(" for all species and atoms")') end subroutine elk-7.2.42/src/PaxHeaders.21776/writedos.f900000644000000000000000000000013214061636517015104 xustar0030 mtime=1623670095.468101979 30 atime=1623670094.259103101 30 ctime=1623670095.468101979 elk-7.2.42/src/writedos.f900000644002504400250440000000344614061636517017150 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writedos use modmain implicit none ! local variables integer ik ! initialise universal variables call init0 call init1 ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) if (dosocc) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the partial and total DOS and write to file call dos('.OUT',dosocc,occsv) write(*,*) write(*,'("Info(writedos):")') write(*,'(" Total density of states written to TDOS.OUT")') write(*,*) write(*,'(" Partial density of states written to PDOS_Sss_Aaaaa.OUT")') write(*,'(" for all species and atoms")') if (dosmsum) then write(*,'(" PDOS summed over m")') end if if (dosssum) then write(*,'(" PDOS summed over spin")') end if write(*,*) write(*,'(" Spin-quantisation axis : ",3G18.10)') sqados(:) if (lmirep) then write(*,*) write(*,'(" Eigenvalues of a random matrix in the (l,m) basis symmetrised")') write(*,'(" with the site symmetries written to ELMIREP.OUT for all")') write(*,'(" species and atoms. Degenerate eigenvalues correspond to")') write(*,'(" irreducible representations of each site symmetry group")') end if write(*,*) write(*,'(" Interstitial density of states written to IDOS.OUT")') write(*,*) write(*,'(" Fermi energy is at zero in plots")') write(*,*) write(*,'(" DOS units are states/Hartree/unit cell")') end subroutine elk-7.2.42/src/PaxHeaders.21776/energykncr.f900000644000000000000000000000013014061636517015411 xustar0030 mtime=1623670095.470101977 28 atime=1623670094.2601031 30 ctime=1623670095.470101977 elk-7.2.42/src/energykncr.f900000644002504400250440000000223714061636517017454 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine energykncr use modmain implicit none integer ist,is,ias integer nr,nri,ir,i ! automatic arrays real(8) rfmt(npmtmax) ! external functions real(8), external :: rfmtinp ! calculate the kinetic energy for core states engykncr=0.d0 do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) ! sum of core eigenvalues do ist=1,nstsp(is) if (spcore(ist,is)) engykncr=engykncr+occcr(ist,ias)*evalcr(ist,ias) end do ! core density rfmt(1:npmt(is))=0.d0 i=1 if (spincore) then ! spin-polarised core do ir=1,nri rfmt(i)=rhocr(ir,ias,1)+rhocr(ir,ias,2) i=i+lmmaxi end do do ir=nri+1,nr rfmt(i)=rhocr(ir,ias,1)+rhocr(ir,ias,2) i=i+lmmaxo end do else ! spin-unpolarised core do ir=1,nri rfmt(i)=rhocr(ir,ias,1) i=i+lmmaxi end do do ir=nri+1,nr rfmt(i)=rhocr(ir,ias,1) i=i+lmmaxo end do end if engykncr=engykncr-rfmtinp(nr,nri,wrmt(:,is),rfmt,vsmt(:,ias)) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/ggamt_1.f900000644000000000000000000000013214061636517014563 xustar0030 mtime=1623670095.471101976 30 atime=1623670094.262103098 30 ctime=1623670095.471101976 elk-7.2.42/src/ggamt_1.f900000644002504400250440000000327514061636517016627 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_1 ! !INTERFACE: subroutine ggamt_1(tsh,is,np,rho,grho,g2rho,g3rho) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggamt\_sp\_1}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD) !EOP !BOC implicit none ! arguments logical, intent(in) :: tsh integer, intent(in) :: is,np real(8), intent(in) :: rho(np) real(8), intent(out) :: grho(np),g2rho(np),g3rho(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: grfmt(:,:),gvrho(:,:),rfmt1(:),rfmt2(:) allocate(grfmt(np,3),gvrho(np,3),rfmt2(np)) nr=nrmt(is) nri=nrmti(is) ! |grad rho| if (tsh) then call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rho,np,grfmt) else allocate(rfmt1(np)) call rfsht(nr,nri,rho,rfmt1) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) end if do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvrho(:,i)) end do grho(1:np)=sqrt(gvrho(1:np,1)**2+gvrho(1:np,2)**2+gvrho(1:np,3)**2) ! grad^2 rho in spherical coordinates if (tsh) then call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rho,rfmt2) else call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) end if call rbsht(nr,nri,rfmt2,g2rho) ! (grad rho).(grad |grad rho|) call rfsht(nr,nri,grho,rfmt2) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt2,np,grfmt) g3rho(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) g3rho(1:np)=g3rho(1:np)+gvrho(1:np,i)*rfmt2(1:np) end do deallocate(grfmt,gvrho,rfmt2) if (.not.tsh) deallocate(rfmt1) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_1.f900000644000000000000000000000013214061636517014555 xustar0030 mtime=1623670095.473101974 30 atime=1623670094.264103096 30 ctime=1623670095.473101974 elk-7.2.42/src/ggair_1.f900000644002504400250440000000307014061636517016612 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_1 ! !INTERFACE: subroutine ggair_1(rho,grho,g2rho,g3rho) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggair\_sp\_1}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rho(ngtot) real(8), intent(out) :: grho(ngtot),g2rho(ngtot),g3rho(ngtot) ! local variables integer i,ig,ifg ! allocatable arrays real(8), allocatable :: gvrho(:,:) complex(8), allocatable :: zfft1(:),zfft2(:) allocate(gvrho(ngtot,3)) allocate(zfft1(ngtot),zfft2(ngtot)) zfft1(:)=rho(:) call zfftifc(3,ngridg,-1,zfft1) ! |grad rho| do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvrho(:,i)=dble(zfft2(:)) end do grho(:)=sqrt(gvrho(:,1)**2+gvrho(:,2)**2+gvrho(:,3)**2) ! grad^2 rho zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2rho(:)=dble(zfft2(:)) ! (grad rho).(grad |grad rho|) zfft1(:)=grho(:) call zfftifc(3,ngridg,-1,zfft1) g3rho(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) g3rho(:)=g3rho(:)+gvrho(:,i)*dble(zfft2(:)) end do deallocate(gvrho,zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggamt_sp_1.f900000644000000000000000000000013214061636517015265 xustar0030 mtime=1623670095.474101973 30 atime=1623670094.265103095 30 ctime=1623670095.474101973 elk-7.2.42/src/ggamt_sp_1.f900000644002504400250440000001017214061636517017323 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_sp_1 ! !INTERFACE: subroutine ggamt_sp_1(is,np,rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! is : species number (in,integer) ! np : number of muffin-tin points (in,integer) ! rhoup : spin-up density in spherical coordinates (in,real(np)) ! rhodn : spin-down density (in,real(np)) ! grho : |grad rho| (out,real(np)) ! gup : |grad rhoup| (out,real(np)) ! gdn : |grad rhodn| (out,real(np)) ! g2up : grad^2 rhoup (out,real(np)) ! g2dn : grad^2 rhodn (out,real(np)) ! g3rho : (grad rho).(grad |grad rho|) (out,real(np)) ! g3up : (grad rhoup).(grad |grad rhoup|) (out,real(np)) ! g3dn : (grad rhodn).(grad |grad rhodn|) (out,real(np)) ! !DESCRIPTION: ! Computes $|\nabla\rho|$, $|\nabla\rho^{\uparrow}|$, ! $|\nabla\rho^{\downarrow}|$, $\nabla^2\rho^{\uparrow}$, ! $\nabla^2\rho^{\downarrow}$, $\nabla\rho\cdot(\nabla|\nabla\rho|)$, ! $\nabla\rho^{\uparrow}\cdot(\nabla|\nabla\rho^{\uparrow}|)$ and ! $\nabla\rho^{\downarrow}\cdot(\nabla|\nabla\rho^{\downarrow}|)$ ! for a muffin-tin charge density, as required by the generalised gradient ! approximation functionals of type 1 for spin-polarised densities. The input ! densities and output gradients are in terms of spherical coordinates. See ! routines {\tt potxc} and {\tt modxcifc}. ! ! !REVISION HISTORY: ! Created April 2004 (JKD) ! Simplified and improved, October 2009 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: is,np real(8), intent(in) :: rhoup(np),rhodn(np) real(8), intent(out) :: grho(np),gup(np),gdn(np) real(8), intent(out) :: g2up(np),g2dn(np) real(8), intent(out) :: g3rho(np),g3up(np),g3dn(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: gvup(:,:),gvdn(:,:),grfmt(:,:) real(8), allocatable :: rfmt1(:),rfmt2(:) allocate(grfmt(np,3),gvup(np,3),gvdn(np,3)) allocate(rfmt1(np),rfmt2(np)) nr=nrmt(is) nri=nrmti(is) !----------------! ! rho up ! !----------------! ! convert rhoup to spherical harmonics call rfsht(nr,nri,rhoup,rfmt1) ! grad rhoup in spherical coordinates call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvup(:,i)) end do ! |grad rhoup| gup(1:np)=sqrt(gvup(1:np,1)**2+gvup(1:np,2)**2+gvup(1:np,3)**2) ! grad^2 rhoup in spherical coordinates call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) call rbsht(nr,nri,rfmt2,g2up) ! (grad rhoup).(grad |grad rhoup|) call rfsht(nr,nri,gup,rfmt1) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) g3up(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt1) g3up(1:np)=g3up(1:np)+gvup(1:np,i)*rfmt1(1:np) end do !------------------! ! rho down ! !------------------! ! convert rhodn to spherical harmonics call rfsht(nr,nri,rhodn,rfmt1) ! grad rhodn in spherical coordinates call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvdn(:,i)) end do gdn(1:np)=sqrt(gvdn(1:np,1)**2+gvdn(1:np,2)**2+gvdn(1:np,3)**2) ! grad^2 rhodn in spherical coordinates call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) call rbsht(nr,nri,rfmt2,g2dn) ! (grad rhodn).(grad |grad rhodn|) call rfsht(nr,nri,gdn,rfmt1) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) g3dn(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt1) g3dn(1:np)=g3dn(1:np)+gvdn(1:np,i)*rfmt1(1:np) end do !-------------! ! rho ! !-------------! ! |grad rho| grho(1:np)=sqrt((gvup(1:np,1)+gvdn(1:np,1))**2 & +(gvup(1:np,2)+gvdn(1:np,2))**2 & +(gvup(1:np,3)+gvdn(1:np,3))**2) ! (grad rho).(grad |grad rho|) call rfsht(nr,nri,grho,rfmt1) call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) g3rho(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt1) g3rho(1:np)=g3rho(1:np)+(gvup(1:np,i)+gvdn(1:np,i))*rfmt1(1:np) end do deallocate(rfmt1,rfmt2,grfmt,gvup,gvdn) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_sp_1.f900000644000000000000000000000013214061636517015257 xustar0030 mtime=1623670095.476101971 30 atime=1623670094.267103093 30 ctime=1623670095.476101971 elk-7.2.42/src/ggair_sp_1.f900000644002504400250440000001021214061636517017310 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_sp_1 ! !INTERFACE: subroutine ggair_sp_1(rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho,g3up,g3dn) ! !INPUT/OUTPUT PARAMETERS: ! rhoup : spin-up density (in,real(ngtot)) ! rhodn : spin-down density (in,real(ngtot)) ! grho : |grad rho| (out,real(ngtot)) ! gup : |grad rhoup| (out,real(ngtot)) ! gdn : |grad rhodn| (out,real(ngtot)) ! g2up : grad^2 rhoup (out,real(ngtot)) ! g2dn : grad^2 rhodn (out,real(ngtot)) ! g3rho : (grad rho).(grad |grad rho|) (out,real(ngtot)) ! g3up : (grad rhoup).(grad |grad rhoup|) (out,real(ngtot)) ! g3dn : (grad rhodn).(grad |grad rhodn|) (out,real(ngtot)) ! !DESCRIPTION: ! Computes $|\nabla\rho|$, $|\nabla\rho^{\uparrow}|$, ! $|\nabla\rho^{\downarrow}|$, $\nabla^2\rho^{\uparrow}$, ! $\nabla^2\rho^{\downarrow}$, $\nabla\rho\cdot(\nabla|\nabla\rho|)$, ! $\nabla\rho^{\uparrow}\cdot(\nabla|\nabla\rho^{\uparrow}|)$ and ! $\nabla\rho^{\downarrow}\cdot(\nabla|\nabla\rho^{\downarrow}|)$ for the ! interstitial charge density, as required by the generalised gradient ! approximation functionals of type 1 for spin-polarised densities. See ! routines {\tt potxc} and {\tt modxcifc}. ! ! !REVISION HISTORY: ! Created October 2004 (JKD) ! Simplified and improved, October 2009 (JKD) !EOP !BOC use modmain implicit none ! arguments real(8), intent(in) :: rhoup(ngtot),rhodn(ngtot) real(8), intent(out) :: grho(ngtot),gup(ngtot),gdn(ngtot) real(8), intent(out) :: g2up(ngtot),g2dn(ngtot) real(8), intent(out) :: g3rho(ngtot),g3up(ngtot),g3dn(ngtot) ! local variables integer ig,ifg,i ! allocatable arrays real(8), allocatable :: gvup(:,:),gvdn(:,:) complex(8), allocatable :: zfft1(:),zfft2(:) allocate(gvup(ngtot,3),gvdn(ngtot,3)) allocate(zfft1(ngtot),zfft2(ngtot)) !----------------! ! rho up ! !----------------! zfft1(:)=rhoup(:) call zfftifc(3,ngridg,-1,zfft1) ! |grad rhoup| do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvup(:,i)=dble(zfft2(:)) end do gup(:)=sqrt(gvup(:,1)**2+gvup(:,2)**2+gvup(:,3)**2) ! grad^2 rhoup zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2up(:)=dble(zfft2(:)) ! (grad rhoup).(grad |grad rhoup|) zfft1(:)=gup(:) call zfftifc(3,ngridg,-1,zfft1) g3up(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) g3up(:)=g3up(:)+gvup(:,i)*dble(zfft2(:)) end do !------------------! ! rho down ! !------------------! zfft1(:)=rhodn(:) call zfftifc(3,ngridg,-1,zfft1) ! |grad rhodn| do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvdn(:,i)=dble(zfft2(:)) end do gdn(:)=sqrt(gvdn(:,1)**2+gvdn(:,2)**2+gvdn(:,3)**2) ! grad^2 rhodn zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2dn(:)=dble(zfft2(:)) ! (grad rhodn).(grad |grad rhodn|) zfft1(:)=gdn(:) call zfftifc(3,ngridg,-1,zfft1) g3dn(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) g3dn(:)=g3dn(:)+gvdn(:,i)*dble(zfft2(:)) end do !-------------! ! rho ! !-------------! ! |grad rho| grho(:)=sqrt((gvup(:,1)+gvdn(:,1))**2 & +(gvup(:,2)+gvdn(:,2))**2 & +(gvup(:,3)+gvdn(:,3))**2) ! (grad rho).(grad |grad rho|) zfft1(:)=grho(:) call zfftifc(3,ngridg,-1,zfft1) g3rho(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) g3rho(:)=g3rho(:)+(gvup(:,i)+gvdn(:,i))*dble(zfft2(:)) end do deallocate(gvup,gvdn,zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggamt_2a.f900000644000000000000000000000013014061636517014723 xustar0029 mtime=1623670095.47710197 30 atime=1623670094.269103091 29 ctime=1623670095.47710197 elk-7.2.42/src/ggamt_2a.f900000644002504400250440000000273114061636517016765 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_2a ! !INTERFACE: subroutine ggamt_2a(tsh,is,np,rho,g2rho,gvrho,grho2) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggamt\_sp\_2a}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments logical, intent(in) :: tsh integer, intent(in) :: is,np real(8), intent(in) :: rho(np) real(8), intent(out) :: g2rho(np),gvrho(np,3),grho2(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: grfmt(:,:),rfmt1(:),rfmt2(:) allocate(grfmt(np,3),rfmt2(np)) nr=nrmt(is) nri=nrmti(is) ! compute grad^2 rho in spherical coordinates if (tsh) then call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rho,rfmt2) else allocate(rfmt1(np)) call rfsht(nr,nri,rho,rfmt1) call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) end if call rbsht(nr,nri,rfmt2,g2rho) ! compute grad rho in spherical coordinates if (tsh) then call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rho,np,grfmt) else call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) end if do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvrho(:,i)) end do ! (grad rho)^2 grho2(1:np)=gvrho(1:np,1)**2+gvrho(1:np,2)**2+gvrho(1:np,3)**2 deallocate(rfmt2,grfmt) if (.not.tsh) deallocate(rfmt1) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_2a.f900000644000000000000000000000013214061636517014717 xustar0030 mtime=1623670095.478101969 30 atime=1623670094.270103091 30 ctime=1623670095.478101969 elk-7.2.42/src/ggair_2a.f900000644002504400250440000000235014061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_2a ! !INTERFACE: subroutine ggair_2a(rho,g2rho,gvrho,grho2) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggair\_sp\_2a}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rho(ngtot) real(8), intent(out) :: g2rho(ngtot),gvrho(ngtot,3),grho2(ngtot) ! local variables integer i,ig,ifg ! allocatable arrays complex(8), allocatable :: zfft1(:),zfft2(:) allocate(zfft1(ngtot),zfft2(ngtot)) ! Fourier transform density to G-space zfft1(:)=rho(:) call zfftifc(3,ngridg,-1,zfft1) ! grad^2 rho zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2rho(:)=dble(zfft2(:)) ! grad rho do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvrho(:,i)=dble(zfft2(:)) end do ! (grad rho)^2 grho2(:)=gvrho(:,1)**2+gvrho(:,2)**2+gvrho(:,3)**2 deallocate(zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggamt_2b.f900000644000000000000000000000013214061636517014726 xustar0030 mtime=1623670095.480101967 30 atime=1623670094.272103089 30 ctime=1623670095.480101967 elk-7.2.42/src/ggamt_2b.f900000644002504400250440000000336314061636517016770 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_2b ! !INTERFACE: subroutine ggamt_2b(is,np,g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggamt\_sp\_2b}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments integer, intent(in) :: is,np real(8), intent(in) :: g2rho(np),gvrho(np,3) real(8), intent(inout) :: vx(np),vc(np) real(8), intent(in) :: dxdgr2(np),dcdgr2(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: rfmt1(:),rfmt2(:),grfmt(:,:) allocate(rfmt1(np),rfmt2(np),grfmt(np,3)) nr=nrmt(is) nri=nrmti(is) !------------------! ! exchange ! !------------------! ! convert dxdgr2 to spherical harmonics call rfsht(nr,nri,dxdgr2,rfmt1) ! compute grad dxdgr2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dxdgr2).(grad rho) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvrho(1:np,i) end do vx(1:np)=vx(1:np)-2.d0*(rfmt1(1:np)+dxdgr2(1:np)*g2rho(1:np)) !---------------------! ! correlation ! !---------------------! ! convert dcdgr2 to spherical harmonics call rfsht(nr,nri,dcdgr2,rfmt1) ! compute grad dcdgr2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dcdgr2).(grad rho) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvrho(1:np,i) end do vc(1:np)=vc(1:np)-2.d0*(rfmt1(1:np)+dcdgr2(1:np)*g2rho(1:np)) deallocate(rfmt1,rfmt2,grfmt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_2b.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.481101967 30 atime=1623670094.274103087 30 ctime=1623670095.481101967 elk-7.2.42/src/ggair_2b.f900000644002504400250440000000332114061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_2b ! !INTERFACE: subroutine ggair_2b(g2rho,gvrho,vx,vc,dxdgr2,dcdgr2) ! !USES: use modmain ! !DESCRIPTION: ! Spin-unpolarised version of {\tt ggair\_sp\_2b}. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments real(8), intent(in) :: g2rho(ngtot),gvrho(ngtot,3) real(8), intent(inout) :: vx(ngtot),vc(ngtot) real(8), intent(in) :: dxdgr2(ngtot),dcdgr2(ngtot) ! local variables integer ig,ifg,i ! allocatable arrays real(8), allocatable :: rfir(:) complex(8), allocatable :: zfft1(:),zfft2(:) allocate(rfir(ngtot)) allocate(zfft1(ngtot),zfft2(ngtot)) !------------------! ! exchange ! !------------------! ! compute grad dxdgr2 zfft1(:)=dxdgr2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dxdgr2).(grad rho) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvrho(:,i) end do vx(:)=vx(:)-2.d0*(rfir(:)+dxdgr2(:)*g2rho(:)) !---------------------! ! correlation ! !---------------------! ! compute grad dcdgr2 zfft1(:)=dcdgr2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dcdgr2).(grad rho) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvrho(:,i) end do vc(:)=vc(:)-2.d0*(rfir(:)+dcdgr2(:)*g2rho(:)) deallocate(rfir,zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggamt_sp_2a.f900000644000000000000000000000013214061636517015427 xustar0030 mtime=1623670095.483101965 30 atime=1623670094.275103086 30 ctime=1623670095.483101965 elk-7.2.42/src/ggamt_sp_2a.f900000644002504400250440000001032214061636517017462 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_sp_2a ! !INTERFACE: subroutine ggamt_sp_2a(is,np,rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) ! !USES: use modmain ! !DESCRIPTION: ! Computes the muffin-tin gradients $\nabla^2\rho^{\uparrow}$, ! $\nabla^2\rho^{\downarrow}$, $\nabla\rho^{\uparrow}$, ! $\nabla\rho^{\downarrow}$, $(\nabla\rho^{\uparrow})^2$, ! $(\nabla\rho^{\downarrow})^2$ and ! $\nabla\rho^{\uparrow}\cdot\nabla\rho^{\downarrow}$, which are passed in to ! GGA functional subroutines of type 2. The exchange-correlation energy in ! these routines has the functional form ! $$ E_{xc}[\rho^{\uparrow},\rho^{\downarrow}]=\int d^3r\,\hat{\epsilon}_{xc} ! \bigl(\rho^{\uparrow}({\bf r}),\rho^{\downarrow}({\bf r}), ! (\nabla\rho^{\uparrow}({\bf r}))^2,(\nabla\rho^{\downarrow}({\bf r}))^2, ! \nabla\rho^{\uparrow}({\bf r}) ! \cdot\nabla\rho^{\downarrow}({\bf r})\bigr), $$ ! where $\hat{\epsilon}_{xc}({\bf r})=\epsilon_{xc}({\bf r})\rho({\bf r})$ is ! the xc energy per unit volume, with $\epsilon_{xc}$ being the xc energy per ! electron, and $\rho=\rho^{\uparrow}+\rho^{\downarrow}$. From the gradients ! above, type 2 GGA routines return $\epsilon_{xc}$, but not directly the xc ! potentials. Instead they generate the derivatives ! $\partial\hat{\epsilon}_{xc}/\partial\rho^{\uparrow}({\bf r})$, ! $\partial\hat{\epsilon}_{xc}/\partial(\nabla\rho^{\uparrow}({\bf r}))^2$, ! and the same for down spin, as well as ! $\partial\hat{\epsilon}_{xc}/\partial(\nabla\rho^{\uparrow}({\bf r}) ! \cdot\nabla\rho^{\downarrow}({\bf r}))$. In a post-processing step invoked ! by {\tt ggamt\_sp\_2b}, integration by parts is used to obtain the xc ! potential explicitly with ! \begin{align*} ! V_{xc}^{\uparrow}({\bf r})=&\frac{\partial\hat{\epsilon}_{xc}}{\partial ! \rho^{\uparrow}({\bf r})}-2\left(\nabla\frac{\partial\hat{\epsilon}_{xc}} ! {\partial(\nabla\rho^{\uparrow})^2}\right)\cdot\nabla\rho^{\uparrow} ! -2\frac{\hat{\epsilon}_{xc}}{\partial(\nabla\rho^{\uparrow})^2}\nabla^2 ! \rho^{\uparrow}\\ ! &-\left(\nabla\frac{\hat{\epsilon}_{xc}}{\partial(\nabla\rho^{\uparrow} ! \cdot\nabla\rho^{\downarrow})}\right)\cdot\nabla\rho^{\downarrow} ! -\frac{\partial\hat{\epsilon}_{xc}}{\partial(\nabla\rho^{\uparrow}\cdot ! \nabla\rho^{\downarrow})}\nabla^2\rho^{\downarrow}, ! \end{align*} ! and similarly for $V_{xc}^{\downarrow}$. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments integer, intent(in) :: is,np real(8), intent(in) :: rhoup(np),rhodn(np) real(8), intent(out) :: g2up(np),g2dn(np) real(8), intent(out) :: gvup(np,3),gvdn(np,3) real(8), intent(out) :: gup2(np),gdn2(np),gupdn(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: rfmt1(:),rfmt2(:),grfmt(:,:) allocate(rfmt1(np),rfmt2(np),grfmt(np,3)) nr=nrmt(is) nri=nrmti(is) !----------------! ! rho up ! !----------------! ! convert rhoup to spherical harmonics call rfsht(nr,nri,rhoup,rfmt1) ! compute grad^2 rhoup in spherical coordinates call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) call rbsht(nr,nri,rfmt2,g2up) ! grad rhoup in spherical coordinates call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvup(:,i)) end do ! (grad rhoup)^2 gup2(1:np)=gvup(1:np,1)**2+gvup(1:np,2)**2+gvup(1:np,3)**2 !------------------! ! rho down ! !------------------! ! convert rhodn to spherical harmonics call rfsht(nr,nri,rhodn,rfmt1) ! compute grad^2 rhodn in spherical coordinates call grad2rfmt(nr,nri,rlmt(:,-1,is),rlmt(:,-2,is),wcrmt(:,:,is),rfmt1,rfmt2) call rbsht(nr,nri,rfmt2,g2dn) ! grad rhodn in spherical coordinates call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) do i=1,3 call rbsht(nr,nri,grfmt(:,i),gvdn(:,i)) end do ! (grad rhodn)^2 gdn2(1:np)=gvdn(1:np,1)**2+gvdn(1:np,2)**2+gvdn(1:np,3)**2 ! (grad rhoup).(grad rhodn) gupdn(1:np)=gvup(1:np,1)*gvdn(1:np,1) & +gvup(1:np,2)*gvdn(1:np,2) & +gvup(1:np,3)*gvdn(1:np,3) deallocate(rfmt1,rfmt2,grfmt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_sp_2a.f900000644000000000000000000000013214061636517015421 xustar0030 mtime=1623670095.484101964 30 atime=1623670094.277103084 30 ctime=1623670095.484101964 elk-7.2.42/src/ggair_sp_2a.f900000644002504400250440000000455314061636517017465 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_sp_2a ! !INTERFACE: subroutine ggair_sp_2a(rhoup,rhodn,g2up,g2dn,gvup,gvdn,gup2,gdn2,gupdn) ! !USES: use modmain ! !DESCRIPTION: ! Computes the interstitial gradients $\nabla^2\rho^{\uparrow}$, ! $\nabla^2\rho^{\downarrow}$, $\nabla\rho^{\uparrow}$, ! $\nabla\rho^{\downarrow}$, $(\nabla\rho^{\uparrow})^2$, ! $(\nabla\rho^{\downarrow})^2$ and ! $\nabla\rho^{\uparrow}\cdot\nabla\rho^{\downarrow}$. These are used for GGA ! functionals of type 2 and meta-GGA. See {\tt ggamt\_sp\_2a} for details. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rhoup(ngtot),rhodn(ngtot) real(8), intent(out) :: g2up(ngtot),g2dn(ngtot) real(8), intent(out) :: gvup(ngtot,3),gvdn(ngtot,3) real(8), intent(out) :: gup2(ngtot),gdn2(ngtot),gupdn(ngtot) ! local variables integer ig,ifg,i ! allocatable arrays complex(8), allocatable :: zfft1(:),zfft2(:) allocate(zfft1(ngtot),zfft2(ngtot)) !----------------! ! rho up ! !----------------! zfft1(:)=rhoup(:) call zfftifc(3,ngridg,-1,zfft1) ! compute grad^2 rhoup zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2up(:)=dble(zfft2(:)) ! grad rhoup do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvup(:,i)=dble(zfft2(:)) end do ! (grad rhoup)^2 gup2(:)=gvup(:,1)**2+gvup(:,2)**2+gvup(:,3)**2 !------------------! ! rho down ! !------------------! zfft1(:)=rhodn(:) call zfftifc(3,ngridg,-1,zfft1) ! compute grad^2 rhodn zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=-(gc(ig)**2)*zfft1(ifg) end do call zfftifc(3,ngridg,1,zfft2) g2dn(:)=dble(zfft2(:)) ! grad rhodn do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) gvdn(:,i)=dble(zfft2(:)) end do ! (grad rhodn)^2 gdn2(:)=gvdn(:,1)**2+gvdn(:,2)**2+gvdn(:,3)**2 ! (grad rhoup).(grad rhodn) gupdn(:)=gvup(:,1)*gvdn(:,1)+gvup(:,2)*gvdn(:,2)+gvup(:,3)*gvdn(:,3) deallocate(zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggamt_sp_2b.f900000644000000000000000000000013214061636517015430 xustar0030 mtime=1623670095.486101962 30 atime=1623670094.279103082 30 ctime=1623670095.486101962 elk-7.2.42/src/ggamt_sp_2b.f900000644002504400250440000000721314061636517017470 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggamt_sp_2b ! !INTERFACE: subroutine ggamt_sp_2b(is,np,g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2, & dxdgd2,dxdgud,dcdgu2,dcdgd2,dcdgud) ! !USES: use modmain ! !DESCRIPTION: ! Post processing step of muffin-tin gradients for GGA type 2. See routine ! {\tt ggamt\_sp\_2a} for full details. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none ! arguments integer, intent(in) :: is,np real(8), intent(in) :: g2up(np),g2dn(np) real(8), intent(in) :: gvup(np,3),gvdn(np,3) real(8), intent(inout) :: vxup(np),vxdn(np) real(8), intent(inout) :: vcup(np),vcdn(np) real(8), intent(in) :: dxdgu2(np),dxdgd2(np),dxdgud(np) real(8), intent(in) :: dcdgu2(np),dcdgd2(np),dcdgud(np) ! local variables integer nr,nri,i ! allocatable arrays real(8), allocatable :: rfmt1(:),rfmt2(:),grfmt(:,:) allocate(rfmt1(np),rfmt2(np),grfmt(np,3)) nr=nrmt(is) nri=nrmti(is) !------------------! ! exchange ! !------------------! ! convert dxdgu2 to spherical harmonics call rfsht(nr,nri,dxdgu2,rfmt1) ! compute grad dxdgu2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dxdgu2).(grad rhoup) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvup(1:np,i) end do vxup(1:np)=vxup(1:np)-2.d0*(rfmt1(1:np)+dxdgu2(1:np)*g2up(1:np)) & -dxdgud(1:np)*g2dn(1:np) ! convert dxdgd2 to spherical harmonics call rfsht(nr,nri,dxdgd2,rfmt1) ! compute grad dxdgd2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dxdgd2).(grad rhodn) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvdn(1:np,i) end do vxdn(1:np)=vxdn(1:np)-2.d0*(rfmt1(1:np)+dxdgd2(1:np)*g2dn(1:np)) & -dxdgud(1:np)*g2up(1:np) ! convert dxdgud to spherical harmonics call rfsht(nr,nri,dxdgud,rfmt1) ! compute grad dxdgud call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dxdgud).(grad rhodn) and (grad dxdgud).(grad rhoup) do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt1) vxup(1:np)=vxup(1:np)-rfmt1(1:np)*gvdn(1:np,i) vxdn(1:np)=vxdn(1:np)-rfmt1(1:np)*gvup(1:np,i) end do !---------------------! ! correlation ! !---------------------! ! convert dcdgu2 to spherical harmonics call rfsht(nr,nri,dcdgu2,rfmt1) ! compute grad dcdgu2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dcdgu2).(grad rhoup) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvup(1:np,i) end do vcup(1:np)=vcup(1:np)-2.d0*(rfmt1(1:np)+dcdgu2(1:np)*g2up(1:np)) & -dcdgud(1:np)*g2dn(1:np) ! convert dcdgd2 to spherical harmonics call rfsht(nr,nri,dcdgd2,rfmt1) ! compute grad dcdgd2 call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dcdgd2).(grad rhodn) in spherical coordinates rfmt1(1:np)=0.d0 do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt2) rfmt1(1:np)=rfmt1(1:np)+rfmt2(1:np)*gvdn(1:np,i) end do vcdn(1:np)=vcdn(1:np)-2.d0*(rfmt1(1:np)+dcdgd2(1:np)*g2dn(1:np)) & -dcdgud(1:np)*g2up(1:np) ! convert dcdgud to spherical harmonics call rfsht(nr,nri,dcdgud,rfmt1) ! compute grad dcdgud call gradrfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),rfmt1,np,grfmt) ! (grad dcdgud).(grad rhodn) and (grad dcdgud).(grad rhoup) do i=1,3 call rbsht(nr,nri,grfmt(:,i),rfmt1) vcup(1:np)=vcup(1:np)-rfmt1(1:np)*gvdn(1:np,i) vcdn(1:np)=vcdn(1:np)-rfmt1(1:np)*gvup(1:np,i) end do deallocate(rfmt1,rfmt2,grfmt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/ggair_sp_2b.f900000644000000000000000000000013114061636517015421 xustar0030 mtime=1623670095.487101961 29 atime=1623670094.28110308 30 ctime=1623670095.487101961 elk-7.2.42/src/ggair_sp_2b.f900000644002504400250440000000714514061636517017466 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: ggair_sp_2b ! !INTERFACE: subroutine ggair_sp_2b(g2up,g2dn,gvup,gvdn,vxup,vxdn,vcup,vcdn,dxdgu2,dxdgd2, & dxdgud,dcdgu2,dcdgd2,dcdgud) ! !USES: use modmain ! !DESCRIPTION: ! Post processing step of interstitial gradients for GGA type 2. See routine ! {\tt ggamt\_sp\_2a} for full details. ! ! !REVISION HISTORY: ! Created November 2009 (JKD and TMcQ) !EOP !BOC implicit none real(8), intent(in) :: g2up(ngtot),g2dn(ngtot) real(8), intent(in) :: gvup(ngtot,3),gvdn(ngtot,3) real(8), intent(inout) :: vxup(ngtot),vxdn(ngtot) real(8), intent(inout) :: vcup(ngtot),vcdn(ngtot) real(8), intent(in) :: dxdgu2(ngtot),dxdgd2(ngtot),dxdgud(ngtot) real(8), intent(in) :: dcdgu2(ngtot),dcdgd2(ngtot),dcdgud(ngtot) ! local variables integer ig,ifg,i ! allocatable arrays real(8), allocatable :: rfir(:) complex(8), allocatable :: zfft1(:),zfft2(:) allocate(rfir(ngtot)) allocate(zfft1(ngtot),zfft2(ngtot)) !------------------! ! exchange ! !------------------! ! compute grad dxdgu2 zfft1(:)=dxdgu2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dxdgu2).(grad rhoup) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvup(:,i) end do vxup(:)=vxup(:)-2.d0*(rfir(:)+dxdgu2(:)*g2up(:))-dxdgud(:)*g2dn(:) ! compute grad dxdgd2 zfft1(:)=dxdgd2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dxdgd2).(grad rhodn) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvdn(:,i) end do vxdn(:)=vxdn(:)-2.d0*(rfir(:)+dxdgd2(:)*g2dn(:))-dxdgud(:)*g2up(:) ! compute grad dxdgud zfft1(:)=dxdgud(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dxdgud).(grad rhodn) and (grad dxdgud).(grad rhoup) do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) vxup(:)=vxup(:)-dble(zfft2(:))*gvdn(:,i) vxdn(:)=vxdn(:)-dble(zfft2(:))*gvup(:,i) end do !---------------------! ! correlation ! !---------------------! ! compute grad dcdgu2 zfft1(:)=dcdgu2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dcdgu2).(grad rhoup) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvup(:,i) end do vcup(:)=vcup(:)-2.d0*(rfir(:)+dcdgu2(:)*g2up(:))-dcdgud(:)*g2dn(:) ! compute grad dcdgd2 zfft1(:)=dcdgd2(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dcdgd2).(grad rhodn) rfir(:)=0.d0 do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) rfir(:)=rfir(:)+dble(zfft2(:))*gvdn(:,i) end do vcdn(:)=vcdn(:)-2.d0*(rfir(:)+dcdgd2(:)*g2dn(:))-dcdgud(:)*g2up(:) ! compute grad dcdgud zfft1(:)=dcdgud(:) call zfftifc(3,ngridg,-1,zfft1) ! (grad dcdgud).(grad rhodn) and (grad dcdgud).(grad rhoup) do i=1,3 zfft2(:)=0.d0 do ig=1,ngvec ifg=igfft(ig) zfft2(ifg)=vgc(i,ig)*cmplx(-aimag(zfft1(ifg)),dble(zfft1(ifg)),8) end do call zfftifc(3,ngridg,1,zfft2) vcup(:)=vcup(:)-dble(zfft2(:))*gvdn(:,i) vcdn(:)=vcdn(:)-dble(zfft2(:))*gvup(:,i) end do deallocate(rfir,zfft1,zfft2) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeemd.f900000644000000000000000000000013214061636517015064 xustar0030 mtime=1623670095.489101959 30 atime=1623670094.282103079 30 ctime=1623670095.489101959 elk-7.2.42/src/writeemd.f900000644002504400250440000000524114061636517017123 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Dugdale, D. Ernsting and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeemd use modmain use modpw use modmpi use modomp implicit none ! local variables integer ik,ihk,recl integer ist,ispn,nthd real(8) sm,t1 complex(8) z1 ! allocatable arrays real(8), allocatable :: emd(:) complex(8), allocatable :: wfpw(:,:,:) if (spinsprl) then write(*,*) write(*,'("Error(writeemd): electron momentum density not available for & &spin-spirals")') write(*,*) stop end if ! initialise universal variables call init0 call init1 call init4 ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the occupancies from file do ik=1,nkpt call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! delete existing EMD.OUT if (mp_mpi) then open(250,file='EMD.OUT') close(250,status='DELETE') end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) allocate(emd(nhkmax)) inquire(iolength=recl) vkl(:,1),nhkmax,emd deallocate(emd) open(250,file='EMD.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) ! loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(emd,wfpw,ihk,sm) & !$OMP PRIVATE(ist,ispn,z1,t1) & !$OMP NUM_THREADS(nthd) allocate(emd(nhkmax),wfpw(nhkmax,nspinor,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(writeemd_) write(*,'("Info(writeemd): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(writeemd_) ! Fourier transform the wavefunctions call genwfpw(vkl(:,ik),ngk(1,ik),igkig(:,1,ik),vgkl(:,:,1,ik), & vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),nhk(1,ik),vhkc(:,:,1,ik), & hkc(:,1,ik),sfachk(:,:,1,ik),wfpw) ! loop over all H+k-vectors do ihk=1,nhk(1,ik) ! sum over occupied states and spins sm=0.d0 do ist=1,nstsv do ispn=1,nspinor z1=wfpw(ihk,ispn,ist) t1=dble(z1)**2+aimag(z1)**2 sm=sm+occsv(ist,ik)*t1 end do end do emd(ihk)=sm end do !$OMP CRITICAL(u250) write(250,rec=ik) vkl(:,ik),nhk(1,ik),emd !$OMP END CRITICAL(u250) end do !$OMP END DO deallocate(emd,wfpw) !$OMP END PARALLEL call freethd(nthd) close(250) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(*,*) write(*,'("Info(writeemd): electron momentum density written to EMD.OUT")') write(*,'(" for all H+k-vectors up to |H+k| < hkmax")') end if end subroutine elk-7.2.42/src/PaxHeaders.21776/reademd.f900000644000000000000000000000013214061636517014645 xustar0030 mtime=1623670095.493101955 30 atime=1623670094.284103078 30 ctime=1623670095.493101955 elk-7.2.42/src/reademd.f900000644002504400250440000000262714061636517016711 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine reademd(emds) use modmain use modpw use modtest implicit none ! arguments real(4), intent(out) :: emds(nhkmax,nkpt) ! local variables integer ik,recl,nhk_ real(8) vkl_(3),t1 ! allocatable arrays real(8), allocatable :: emd(:) allocate(emd(nhkmax)) ! find the record length inquire(iolength=recl) vkl_,nhk_,emd open(250,file='EMD.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) do ik=1,nkpt read(250,rec=ik) vkl_,nhk_,emd t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(reademd): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" EMD.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nhk(1,ik).ne.nhk_) then write(*,*) write(*,'("Error(reademd): differing nhk for k-point ",I8)') ik write(*,'(" current : ",I8)') nhk(1,ik) write(*,'(" EMD.OUT : ",I8)') nhk_ write(*,*) stop end if ! store momentum density in single-precision array emds(:,ik)=real(emd(:)) end do close(250) ! write the EMD of the last k-point to test file if required call writetest(170,'electron momentum density',nv=nhkmax,tol=1.d-4,rva=emd) deallocate(emd) end subroutine elk-7.2.42/src/PaxHeaders.21776/emdplot.f900000644000000000000000000000013214061636517014710 xustar0030 mtime=1623670095.495101953 30 atime=1623670094.286103076 30 ctime=1623670095.495101953 elk-7.2.42/src/emdplot.f900000644002504400250440000000216114061636517016745 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 D. Ernsting, S. Dugdale and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine emdplot use modmain use modpw implicit none ! local variables real(8) t1 ! allocatable arrays real(4), allocatable :: emds(:,:) t1=sum(abs(vkloff(:))) if (t1.gt.epslat) then write(*,*) write(*,'("Error(emdplot): use vkloff = 0 for the ground-state run")') write(*,*) stop end if ! initialise universal variables call init0 call init1 call init4 ! read in the electron momentum density allocate(emds(nhkmax,nkpt)) call reademd(emds) ! write the density plot to file select case(task) case(171) call emdplot1d(emds) write(*,*) write(*,'("Info(emdplot): 1D electron momentum density written to & &EMD1D.OUT")') case(172) call emdplot2d(emds) write(*,*) write(*,'("Info(emdplot): 2D electron momentum density written to & &EMD2D.OUT")') case(173) call emdplot3d(emds) write(*,*) write(*,'("Info(emdplot): 3D electron momentum density written to & &EMD3D.OUT")') end select deallocate(emds) end subroutine elk-7.2.42/src/PaxHeaders.21776/init3.f900000644000000000000000000000013214061636517014272 xustar0030 mtime=1623670095.496101953 30 atime=1623670094.288103074 30 ctime=1623670095.496101953 elk-7.2.42/src/init3.f900000644002504400250440000000275214061636517016335 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine init3 use modmain use modgw use modtddft use modvars use modmpi implicit none ! local variables integer ig,iw real(8) w1,w2,t1,t2 !-------------------------------------------------------------! ! response function and perturbation theory variables ! !-------------------------------------------------------------! ! G-vectors for response functions ngrf=1 do ig=2,ngvec if (gc(ig).gt.gmaxrf) then ngrf=ig-1 exit end if end do ngrf=min(ngrf,ngvc) ! write the G-vectors to file if (mp_mpi) call writegvecrf ! frequencies for reponse functions nwrf=1 if (allocated(wrf)) deallocate(wrf) select case(task) case(188,320,330,331) nwrf=nwplot allocate(wrf(nwrf)) w1=wplot(1) w2=max(wplot(2),w1) t1=(w2-w1)/dble(nwplot) do iw=1,nwplot t2=w1+t1*dble(iw-1) wrf(iw)=cmplx(t2,swidth,8) end do ! set the first frequency to zero for the bootstrap functional if ((fxctype(1).eq.210).or.(fxctype(1).eq.211)) then wrf(1)=cmplx(0.d0,swidth,8) end if case(600,610,620,630,640) ! GW Matsubara frequencies call genwgw case default nwrf=1 allocate(wrf(nwrf)) wrf(1)=cmplx(0.d0,swidth,8) end select ! write to VARIABLES.OUT call writevars('gmaxrf',rv=gmaxrf) call writevars('ngrf',iv=ngrf) call writevars('nwrf',iv=nwrf) call writevars('wrf',nv=nwrf,zva=wrf) end subroutine elk-7.2.42/src/PaxHeaders.21776/init4.f900000644000000000000000000000013214061636517014273 xustar0030 mtime=1623670095.498101951 30 atime=1623670094.289103073 30 ctime=1623670095.498101951 elk-7.2.42/src/init4.f900000644002504400250440000001424314061636517016334 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine init4 use modmain use modphonon use modpw use modvars implicit none ! local variables integer ik,jspn,n,i integer l1,l2,l3,m1,m2,m3 integer lm1,lm2,lm3 real(8) vl(3),vc(3) ! external functions real(8), external :: gaunt !---------------------------! ! H+k-vector arrays ! !---------------------------! if (any(task.eq.[135,170,171,172,173])) then if (task.eq.135) hkmax=0.5d0*gmaxvr-epslat call findngkmax(nkpt,vkc,nspnfv,vqcss,ngvec,vgc,hkmax,nhkmax) ! allocate the H+k-vector arrays if (allocated(nhk)) deallocate(nhk) allocate(nhk(nspnfv,nkpt)) if (allocated(ihkig)) deallocate(ihkig) allocate(ihkig(nhkmax,nspnfv,nkpt)) if (allocated(vhkl)) deallocate(vhkl) allocate(vhkl(3,nhkmax,nspnfv,nkpt)) if (allocated(vhkc)) deallocate(vhkc) allocate(vhkc(3,nhkmax,nspnfv,nkpt)) if (allocated(hkc)) deallocate(hkc) allocate(hkc(nhkmax,nspnfv,nkpt)) if (allocated(sfachk)) deallocate(sfachk) allocate(sfachk(nhkmax,natmtot,nspnfv,nkpt)) ! initialise H+k-vectors arrays do ik=1,nkpt do jspn=1,nspnfv vl(:)=vkl(:,ik) vc(:)=vkc(:,ik) ! spin-spiral case if (spinsprl) then if (jspn.eq.1) then vl(:)=vl(:)+0.5d0*vqlss(:) vc(:)=vc(:)+0.5d0*vqcss(:) else vl(:)=vl(:)-0.5d0*vqlss(:) vc(:)=vc(:)-0.5d0*vqcss(:) end if end if ! generate the H+k-vectors call gengkvec(ngvec,ivg,vgc,vl,vc,hkmax,nhkmax,nhk(jspn,ik), & ihkig(:,jspn,ik),vhkl(:,:,jspn,ik),vhkc(:,:,jspn,ik),hkc(:,jspn,ik)) ! generate structure factors for H+k-vectors call gensfacgp(nhk(jspn,ik),vhkc(:,:,jspn,ik),nhkmax,sfachk(:,:,jspn,ik)) end do end do ! write to VARIABLES.OUT call writevars('hkmax',rv=hkmax) call writevars('nhk',nv=nspnfv*nkpt,iva=nhk) do ik=1,nkpt do jspn=1,nspnfv call writevars('ihkig',l=jspn,m=ik,nv=nhk(jspn,ik),iva=ihkig(:,jspn,ik)) end do end do end if !-----------------------------! ! G+k+q-vector arrays ! !-----------------------------! if (task.eq.205) then if (allocated(vkql)) deallocate(vkql) allocate(vkql(3,nkptnr)) if (allocated(vkqc)) deallocate(vkqc) allocate(vkqc(3,nkptnr)) if (allocated(ngkq)) deallocate(ngkq) allocate(ngkq(nspnfv,nkptnr)) if (allocated(igkqig)) deallocate(igkqig) allocate(igkqig(ngkmax,nspnfv,nkptnr)) if (allocated(vgkql)) deallocate(vgkql) allocate(vgkql(3,ngkmax,nspnfv,nkptnr)) if (allocated(vgkqc)) deallocate(vgkqc) allocate(vgkqc(3,ngkmax,nspnfv,nkptnr)) if (allocated(gkqc)) deallocate(gkqc) allocate(gkqc(ngkmax,nspnfv,nkptnr)) if (allocated(sfacgkq)) deallocate(sfacgkq) allocate(sfacgkq(ngkmax,natmtot,nspnfv,nkptnr)) end if !---------------------------! ! G+q-vector arrays ! !---------------------------! if (task.eq.205) then if (allocated(vgqc)) deallocate(vgqc) allocate(vgqc(3,ngtot)) if (allocated(gqc)) deallocate(gqc) allocate(gqc(ngtot)) if (allocated(gclgq)) deallocate(gclgq) allocate(gclgq(ngvec)) if (allocated(jlgqrmt)) deallocate(jlgqrmt) allocate(jlgqrmt(0:lnpsd,ngvec,nspecies)) if (allocated(ylmgq)) deallocate(ylmgq) allocate(ylmgq(lmmaxo,ngvec)) if (allocated(sfacgq)) deallocate(sfacgq) allocate(sfacgq(ngvec,natmtot)) if (allocated(ffacgq)) deallocate(ffacgq) allocate(ffacgq(ngtot,nspecies)) if (allocated(dcfunig)) deallocate(dcfunig) allocate(dcfunig(ngtot)) if (allocated(dcfunir)) deallocate(dcfunir) allocate(dcfunir(ngtot)) end if !-----------------------------------------------------------------! ! phonon density functional perturbation theory variables ! !-----------------------------------------------------------------! if (task.eq.205) then if (allocated(drhomt)) deallocate(drhomt) allocate(drhomt(npmtmax,natmtot)) if (allocated(drhoir)) deallocate(drhoir) allocate(drhoir(ngtot)) if (allocated(dmagmt)) deallocate(dmagmt) if (allocated(dmagir)) deallocate(dmagir) if (spinpol) then allocate(dmagmt(npmtmax,natmtot,ndmag)) allocate(dmagir(ngtot,ndmag)) end if if (allocated(dvclmt)) deallocate(dvclmt) allocate(dvclmt(npmtmax,natmtot)) if (allocated(dvclir)) deallocate(dvclir) allocate(dvclir(ngtot)) if (allocated(zvnmt)) deallocate(zvnmt) allocate(zvnmt(npmtmax)) if (allocated(gvsmt)) deallocate(gvsmt) allocate(gvsmt(npmtmax)) ! combined target array for Kohn-Sham potential and magnetic field derivative if (allocated(dvsbs)) deallocate(dvsbs) n=npmtmax*natmtot+ngtot if (spinpol) n=n+(npcmtmax*natmtot+ngtot)*ndmag allocate(dvsbs(n)) ! zero the array dvsbs(:)=0.d0 ! associate pointer arrays with target dvsmt(1:npmtmax,1:natmtot)=>dvsbs(1:) i=npmtmax*natmtot+1 dvsir(1:ngtot)=>dvsbs(i:) if (spinpol) then i=i+ngtot dbsmt(1:npcmtmax,1:natmtot,1:ndmag)=>dvsbs(i:) i=i+npcmtmax*natmtot*ndmag dbsir(1:ngtot,1:ndmag)=>dvsbs(i:) end if if (allocated(dvsig)) deallocate(dvsig) allocate(dvsig(ngtot)) if (allocated(dsocfr)) deallocate(dsocfr) if (spinorb) then allocate(dsocfr(nrcmtmax,natmtot)) end if if (allocated(dhaa)) deallocate(dhaa) allocate(dhaa(lmmaxo,apwordmax,0:lmaxapw,apwordmax,0:lmaxapw,natmtot)) if (allocated(dhloa)) deallocate(dhloa) allocate(dhloa(lmmaxo,apwordmax,0:lmaxapw,nlomax,natmtot)) if (allocated(dhlolo)) deallocate(dhlolo) allocate(dhlolo(lmmaxo,nlomax,nlomax,natmtot)) ! allocate and generate real Gaunt coefficient array if (allocated(gntyyy)) deallocate(gntyyy) allocate(gntyyy(lmmaxo,lmmaxapw,lmmaxapw)) do l1=0,lmaxapw do m1=-l1,l1 lm1=l1*(l1+1)+m1+1 do l3=0,lmaxapw do m3=-l3,l3 lm3=l3*(l3+1)+m3+1 do l2=0,lmaxo do m2=-l2,l2 lm2=l2*(l2+1)+m2+1 gntyyy(lm2,lm3,lm1)=gaunt(l1,l2,l3,m1,m2,m3) end do end do end do end do end do end do if (allocated(devalfv)) deallocate(devalfv) allocate(devalfv(nstfv,nspnfv,nkptnr)) if (allocated(devalsv)) deallocate(devalsv) allocate(devalsv(nstsv,nkptnr)) if (allocated(doccsv)) deallocate(doccsv) allocate(doccsv(nstsv,nkptnr)) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/fsmbfield.f900000644000000000000000000000013014061636517015175 xustar0029 mtime=1623670095.49910195 30 atime=1623670094.291103071 29 ctime=1623670095.49910195 elk-7.2.42/src/fsmbfield.f900000644002504400250440000000436514061636517017244 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: fsmbfield ! !INTERFACE: subroutine fsmbfield ! !USES: use modmain ! !DESCRIPTION: ! Updates the effective magnetic field, ${\bf B}_{\rm FSM}$, required for ! fixing the spin moment to a given value, ${\bf M}_{\rm FSM}$. This is done ! by adding a vector to the field which is proportional to the difference ! between the moment calculated in the $i$th self-consistent loop and the ! required moment: ! $$ {\bf B}_{\rm FSM}^{i+1}={\bf B}_{\rm FSM}^i+\lambda\left({\bf M}^i ! -{\bf M}_{\rm FSM}\right), $$ ! where $\lambda$ is a scaling factor. ! ! !REVISION HISTORY: ! Created March 2005 (JKD) !EOP !BOC implicit none ! local variables integer is,ia,ias real(8) v1(3),v2(3),t1 if ((.not.spinpol).or.(fsmtype.eq.0)) return ! fixed spin direction not valid for collinear magnetism if ((.not.ncmag).and.(fsmtype.lt.0)) return ! determine the global effective field if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then if (ncmag) then v1(:)=momtot(:) else v1(:)=0.d0 v1(3)=momtot(1) end if v2(:)=v1(:)-momfix(:) if (ncmag) then bfsmc(:)=bfsmc(:)+taufsm*v2(:) else bfsmc(1)=bfsmc(1)+taufsm*v2(3) end if ! make sure that the constraining field is perpendicular to the fixed moment ! for fixed direction calculations (Y. Kvashnin and LN) if (fsmtype.lt.0) call r3vo(momfix,bfsmc) end if if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then ! determine the muffin-tin fields for fixed local moments do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! if any component is >= 1000 then do not fix the moment t1=sum(abs(mommtfix(:,ia,is))) if (t1.ge.1000.d0) cycle if (ncmag) then v1(:)=mommt(:,ias) else v1(:)=0.d0 v1(3)=mommt(1,ias) end if v2(:)=v1(:)-mommtfix(:,ia,is) if (ncmag) then bfsmcmt(:,ias)=bfsmcmt(:,ias)+taufsm*v2(:) else bfsmcmt(1,ias)=bfsmcmt(1,ias)+taufsm*v2(3) end if ! fixed spin direction if (fsmtype.lt.0) call r3vo(mommtfix(:,ia,is),bfsmcmt(:,ias)) end do end do end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genvmmtsv.f900000644000000000000000000000013214061636517015272 xustar0030 mtime=1623670095.501101948 30 atime=1623670094.293103069 30 ctime=1623670095.501101948 elk-7.2.42/src/genvmmtsv.f900000644002504400250440000000401314061636517017325 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvmmtsv(wfmt,vmat) use modmain use moddftu use modomp implicit none ! arguments complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(inout) :: vmat(nstsv,nstsv) ! local variables integer ist,jst,ispn,jspn integer is,ias,ld,nthd integer nrc,nrci,nrco,i integer nm,l,lm,npc,npci ! allocatable arrays complex(8), allocatable :: wfmt1(:,:,:),wfmt2(:) ! external functions complex(8), external :: zfmtinp if (.not.tvmatmt) return ld=lmmaxdm*nspinor allocate(wfmt1(npcmtmax,nspinor,nstsv),wfmt2(npcmtmax)) ! loop over atoms do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) nrco=nrc-nrci npc=npcmt(is) npci=npcmti(is) ! convert wavefunctions to spherical harmonics do ist=1,nstsv do ispn=1,nspinor call zfsht(nrc,nrci,wfmt(:,ias,ispn,ist),wfmt1(:,ispn,ist)) end do end do ! loop over second-variational states do jst=1,nstsv ! loop over spins do ispn=1,nspinor wfmt2(1:npc)=0.d0 do jspn=1,nspinor do l=0,lmaxdm if (tvmmt(l,ias)) then nm=2*l+1 lm=l**2+1 if (l.le.lmaxi) then call zgemm('N','N',nm,nrci,nm,zone,vmatmt(lm,ispn,lm,jspn,ias), & ld,wfmt1(lm,jspn,jst),lmmaxi,zone,wfmt2(lm),lmmaxi) end if i=npci+lm call zgemm('N','N',nm,nrco,nm,zone,vmatmt(lm,ispn,lm,jspn,ias),ld, & wfmt1(i,jspn,jst),lmmaxo,zone,wfmt2(i),lmmaxo) end if end do end do ! compute the matrix elements call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ist=1,nstsv vmat(ist,jst)=vmat(ist,jst)+zfmtinp(nrc,nrci,wrcmt(:,is), & wfmt1(:,ispn,ist),wfmt2) end do !$OMP END PARALLEL DO call freethd(nthd) end do end do end do deallocate(wfmt1,wfmt2) end subroutine elk-7.2.42/src/PaxHeaders.21776/testcheck.f900000644000000000000000000000013214061636517015221 xustar0030 mtime=1623670095.502101947 30 atime=1623670094.295103067 30 ctime=1623670095.502101947 elk-7.2.42/src/testcheck.f900000644002504400250440000001127714061636517017266 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine testcheck implicit none ! local variables logical exist integer i,j,k,n integer nv_,nv,vt_,vt,iv_,iv real(8) rv_,rv,a,b real(8) tol,t1,t2 complex(8) zv_,zv character(256) fname_,fname,descr n=0 do i=0,999 write(fname_,'("TEST_",I3.3,".OUT_")') i inquire(file=trim(fname_),exist=exist) if (exist) then write(fname,'("TEST_",I3.3,".OUT")') i inquire(file=trim(fname),exist=exist) if (.not.exist) then write(*,*) write(*,'("Error(testcheck): file ",A," does not exist")') trim(fname) write(*,*) error stop end if open(91,file=trim(fname_),form='FORMATTED') open(92,file=trim(fname),form='FORMATTED') read(91,*,err=10) descr read(92,*,err=20) descr read(91,*,err=10) vt_,nv_ read(92,*,err=20) vt,nv if (vt_.ne.vt) then write(*,*) write(*,'("Error(testcheck): differing variable type")') write(*,'(" for quantity ''",A,"''")') trim(descr) write(*,'(" ",A," : ",I8)') trim(fname_),vt_ write(*,'(" ",A," : ",I8)') trim(fname),vt write(*,*) error stop end if if (nv_.ne.nv) then write(*,*) write(*,'("Error(testcheck): differing number of variables")') write(*,'(" for quantity ''",A,"''")') trim(descr) write(*,'(" ",A," : ",I8)') trim(fname_),nv_ write(*,'(" ",A," : ",I8)') trim(fname),nv write(*,*) error stop end if if (nv.le.0) then write(*,*) write(*,'("Error(testcheck): nv <= 0 : ",I8)') nv write(*,*) error stop end if if (vt.eq.1) then ! integer variables do j=1,nv read(91,*,err=10) k,iv_ if (j.ne.k) goto 10 read(92,*,err=20) k,iv if (j.ne.k) goto 20 if (iv.ne.iv_) then write(*,*) write(*,'("Error(testcheck): variable ",I8," is different")') j write(*,'(" for quantity ''",A,"''")') trim(descr) write(*,'(" ",A," : ",I8)') trim(fname_),iv_ write(*,'(" ",A," : ",I8)') trim(fname),iv write(*,*) error stop end if end do else if (vt.eq.2) then ! real variables read(91,*,err=10) tol read(92,*,err=20) tol do j=1,nv read(91,*,err=10) k,rv_ if (j.ne.k) goto 10 read(92,*,err=20) k,rv if (j.ne.k) goto 20 t1=abs(rv_-rv) t2=abs(rv_)*tol if ((t1.gt.t2).and.(abs(rv_).gt.1.d-4)) then write(*,*) write(*,'("Error(testcheck): variable ",I8," outside tolerance")') j write(*,'(" for quantity ''",A,"''")') trim(descr) write(*,'(" ",A," (correct value)",T40," : ",G22.12)') trim(fname_), & rv_ write(*,'(" ",A,T40," : ",G22.12)') trim(fname),rv write(*,'(" absolute difference",T40," : ",G22.12)') t1 write(*,'(" required relative tolerance",T40," : ",G22.12)') tol write(*,'(" required absolute tolerance",T40," : ",G22.12)') t2 write(*,*) error stop end if end do else if (vt.eq.3) then ! complex variables read(91,*,err=10) tol read(92,*,err=20) tol do j=1,nv read(91,*,err=10) k,a,b zv_=cmplx(a,b,8) if (j.ne.k) goto 10 read(92,*,err=20) k,a,b zv=cmplx(a,b,8) if (j.ne.k) goto 20 t1=abs(zv_-zv) t2=abs(zv_)*tol if ((t1.gt.t2).and.(abs(zv_).gt.1.d-4)) then write(*,*) write(*,'("Error(testcheck): variable ",I8," outside tolerance")') j write(*,'(" for quantity ''",A,"''")') trim(descr) write(*,'(" ",A," (correct value)",T40," : ",2G22.12)') & trim(fname_),zv_ write(*,'(" ",A,T40," : ",2G22.12)') trim(fname),zv write(*,'(" difference",T40," : ",G22.12)') t1 write(*,'(" required relative tolerance",T40," : ",G22.12)') tol write(*,'(" required absolute tolerance",T40," : ",G22.12)') t2 write(*,*) error stop end if end do else write(*,*) write(*,'("Error(testcheck): variable type not defined : ",I8)') vt write(*,*) error stop end if close(91) close(92) n=n+1 end if end do if (n.eq.0) then write(*,*) write(*,'("Warning(testcheck): no tests found")') else write(*,*) write(*,'("Info(testcheck): passed all tests")') end if return 10 continue write(*,*) write(*,'("Error(testcheck): error reading from ",A)') trim(fname_) write(*,*) error stop 20 continue write(*,*) write(*,'("Error(testcheck): error reading from ",A)') trim(fname) write(*,*) error stop end subroutine elk-7.2.42/src/PaxHeaders.21776/pade.f900000644000000000000000000000013214061636517014155 xustar0030 mtime=1623670095.504101945 30 atime=1623670094.296103066 30 ctime=1623670095.504101945 elk-7.2.42/src/pade.f900000644002504400250440000000465014061636517016217 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) A. Sanna and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: pade ! !INTERFACE: subroutine pade(ni,zi,ui,no,zo,uo) ! !INPUT/OUTPUT PARAMETERS: ! ni : number of input points (in,integer) ! zi : input points (in,complex(ni)) ! ui : input function values (in,complex(ni)) ! no : number of output points (in,integer) ! zo : output points (in,complex(no)) ! uo : output function values (out,complex(no)) ! !DESCRIPTION: ! Calculates a Pad\'{e} approximant of a function, given the function ! evaluated on a set of points in the complex plane. The function is returned ! for a set of complex output points. The algorithm from H. J. Vidberg and ! J. W. Serene {\it J. Low Temp. Phys.} {\bf 29}, 179 (1977) is used. ! ! !REVISION HISTORY: ! Created December 2010 (Antonio Sanna) !EOP !BOC implicit none ! arguments integer, intent(in) :: ni complex(8), intent(in) :: zi(ni) complex(8), intent(in) :: ui(ni) integer, intent(in) :: no complex(8), intent(in) :: zo(no) complex(8), intent(out) :: uo(no) ! local variables integer i,j real(8) t1 complex(8) a0,a1,b0,b1,z1,z2 ! allocatable arrays complex(8), allocatable :: g(:,:) if ((ni.le.0).or.(no.le.0)) then write(*,*) write(*,'("Error(pade): invalid number of input or output points : ",2I8)') & ni,no write(*,*) stop end if allocate(g(ni,ni)) ! define the g functions using Eq. (A2) g(1,:)=ui(:) do i=2,ni do j=i,ni z1=(zi(j)-zi(i-1))*g(i-1,j) t1=abs(dble(z1))+abs(aimag(z1)) if (t1.gt.1.d-14) then g(i,j)=(g(i-1,i-1)-g(i-1,j))/z1 else g(i,j)=0.d0 end if end do end do ! loop over output points do i=1,no ! use recursive algorithm in Eq. (A3) to evaluate function a0=0.d0 a1=g(1,1) b0=1.d0 b1=1.d0 do j=2,ni z1=(zo(i)-zi(j-1))*g(j,j) z2=a1+z1*a0 a0=a1 a1=z2 z2=b1+z1*b0 b0=b1 b1=z2 ! check for overflow and rescale if ((abs(dble(a1)).gt.1.d100).or.(abs(aimag(a1)).gt.1.d100)) then t1=1.d0/abs(a1) a0=a0*t1 b0=b0*t1 a1=a1*t1 b1=b1*t1 end if if ((abs(dble(b1)).gt.1.d100).or.(abs(aimag(b1)).gt.1.d100)) then t1=1.d0/abs(b1) a0=a0*t1 b0=b0*t1 a1=a1*t1 b1=b1*t1 end if end do t1=abs(dble(b1))+abs(aimag(b1)) if (t1.ne.0.d0) then uo(i)=a1/b1 else uo(i)=0.d0 end if end do deallocate(g) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/wsplint.f900000644000000000000000000000013214061636517014744 xustar0030 mtime=1623670095.505101944 30 atime=1623670094.298103065 30 ctime=1623670095.505101944 elk-7.2.42/src/wsplint.f900000644002504400250440000000135714061636517017007 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine wsplint(n,x,w) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: x(n) real(8), intent(out) :: w(n) ! local variables integer i ! automatic arrays real(8) f(9) ! external functions real(8), external :: splint if (n.le.9) then do i=1,n f(:)=0.d0 f(i)=1.d0 w(i)=splint(n,x,f) end do return end if do i=1,4 f(:)=0.d0 f(i)=1.d0 w(i)=splint(9,x,f) end do f(:)=0.d0 f(5)=1.d0 do i=5,n-4 w(i)=splint(9,x(i-4),f) end do do i=1,4 f(:)=0.d0 f(i+5)=1.d0 w(n-4+i)=splint(9,x(n-8),f) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/gensocfr.f900000644000000000000000000000013214061636517015052 xustar0030 mtime=1623670095.507101942 30 atime=1623670094.300103063 30 ctime=1623670095.507101942 elk-7.2.42/src/gensocfr.f900000644002504400250440000000200314061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine gensocfr use modmain use modomp implicit none ! local variables integer is,ias,nthd integer nr,nri,ir,irc real(8) cso,rm ! automatic arrays real(8) vr(nrmtmax),dvr(nrmtmax) if (.not.spinorb) return ! coefficient of spin-orbit coupling cso=y00*socscf/(4.d0*solsc**2) call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(vr,dvr,is,nr,nri) & !$OMP PRIVATE(irc,ir,rm) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) ! radial derivative of the spherical part of the Kohn-Sham potential call rfmtlm(1,nr,nri,vsmt(:,ias),vr) call splined(nr,wcrmt(:,:,is),vr,dvr) irc=0 do ir=1,nr,lradstp irc=irc+1 rm=1.d0-2.d0*cso*vr(ir) socfr(irc,ias)=cso*dvr(ir)/(rsp(ir,is)*rm**2) end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/pades.f900000644000000000000000000000013214061636517014340 xustar0030 mtime=1623670095.508101942 30 atime=1623670094.302103061 30 ctime=1623670095.508101942 elk-7.2.42/src/pades.f900000644002504400250440000000210614061636517016374 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine pades(ns,r,ni,zi,ui,no,zo,uo) implicit none ! arguments integer, intent(in) :: ns real(8), intent(in) :: r integer, intent(in) :: ni complex(8), intent(in) :: zi(ni) complex(8), intent(in) :: ui(ni) integer, intent(in) :: no complex(8), intent(in) :: zo(no) complex(8), intent(out) :: uo(no) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8) t1,t2 complex(8) z1 ! allocatable arrays complex(8), allocatable :: u1(:),u2(:) if (ns.le.0) then write(*,*) write(*,'("Error(pades): ns <= 0 : ",I8)') ns write(*,*) stop end if if (ns.eq.1) then call pade(ni,zi,ui,no,zo,uo) return end if allocate(u1(ni),u2(no)) uo(:)=0.d0 do i=1,ns t1=dble(i-1)/dble(ns) t2=6.d0*pi*t1 z1=r*t1*cmplx(cos(t2),sin(t2),8) u1(:)=ui(:)+z1 call pade(ni,zi,u1,no,zo,u2) uo(:)=uo(:)+u2(:)-z1 end do t1=1.d0/dble(ns) uo(:)=t1*uo(:) deallocate(u1,u2) end subroutine elk-7.2.42/src/PaxHeaders.21776/genscss.f900000644000000000000000000000012714061636517014715 xustar0029 mtime=1623670095.51010194 29 atime=1623670094.30310306 29 ctime=1623670095.51010194 elk-7.2.42/src/genscss.f900000644002504400250440000000276014061636517016753 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genscss use modmain use modstore implicit none ! local variables integer is,ia,na,i real(8) vc(3),cs,sn,t1 ! automatic arrays real(8) vsc(3,nqptnr) ! find the smallest supercell which contains q-vector call findscq(iqss,avec_,nscss,vsc) ! construct supercell atomic positions and magnetic fields do is=1,nspecies na=0 do ia=1,natoms_(is) do i=1,nscss na=na+1 if (na.gt.maxatoms) then write(*,*) write(*,'("Error(genscss): too many atoms in supercell : ",I8)') na write(*,'(" for species ",I4)') is write(*,'("Adjust maxatoms in modmain and recompile code")') write(*,*) stop end if vc(:)=vsc(:,i)+atposc_(:,ia,is) ! new atomic position in lattice coordinates call r3mv(ainv,vc,atposl(:,na,is)) ! rotate external B-field and fixed spin moment vector by angle q.r t1=dot_product(vqc(:,iqss),vc(:)) cs=cos(t1); sn=sin(t1) bfcmt0(1,na,is)=cs*bfcmt0_(1,ia,is)-sn*bfcmt0_(2,ia,is) bfcmt0(2,na,is)=sn*bfcmt0_(1,ia,is)+cs*bfcmt0_(2,ia,is) bfcmt0(3,na,is)=bfcmt0_(3,ia,is) mommtfix(1,na,is)=cs*mommtfix_(1,ia,is)-sn*mommtfix_(2,ia,is) mommtfix(2,na,is)=sn*mommtfix_(1,ia,is)+cs*mommtfix_(2,ia,is) mommtfix(3,na,is)=mommtfix_(3,ia,is) end do end do natoms(is)=na end do end subroutine elk-7.2.42/src/PaxHeaders.21776/rfcmtwr.f900000644000000000000000000000013214061636517014730 xustar0030 mtime=1623670095.511101939 30 atime=1623670094.305103058 30 ctime=1623670095.511101939 elk-7.2.42/src/rfcmtwr.f900000644002504400250440000000134414061636517016767 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine rfcmtwr(nr,nri,wr,rfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) real(8), intent(inout) :: rfmt(*) ! local variables integer n,ir,i real(8) t1 i=1 if (lmaxi.eq.1) then do ir=1,nri rfmt(i:i+3)=(pi*wr(ir))*rfmt(i:i+3) i=i+4 end do else t1=fourpi/dble(lmmaxi) n=lmmaxi-1 do ir=1,nri rfmt(i:i+n)=(t1*wr(ir))*rfmt(i:i+n) i=i+lmmaxi end do end if t1=fourpi/dble(lmmaxo) n=lmmaxo-1 do ir=nri+1,nr rfmt(i:i+n)=(t1*wr(ir))*rfmt(i:i+n) i=i+lmmaxo end do end subroutine elk-7.2.42/src/PaxHeaders.21776/nonlinopt.f900000644000000000000000000000013214061636517015264 xustar0030 mtime=1623670095.513101937 30 atime=1623670094.307103056 30 ctime=1623670095.513101937 elk-7.2.42/src/nonlinopt.f900000644002504400250440000002100714061636517017321 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: nonlinopt ! !INTERFACE: subroutine nonlinopt ! !USES: use modmain use modtest use modomp ! !DESCRIPTION: ! Calculates susceptibility tensor for non-linear optical second-harmonic ! generation (SHG). The terms (ztm) are numbered according to Eqs. (49)-(51) ! of the article {\it Physica Scripta} {\bf T109}, 128 (2004). Other good ! references are {\it Phys. Rev. B} {\bf 48}, 11705 (1993) and ! {\it Phys. Rev. B} {\bf 53}, 10751 (1996). ! ! !REVISION HISTORY: ! Rewrote earlier version, June 2010 (Sharma) ! Improved parallelism, January 2020 (R. Cohen) !EOP !BOC implicit none ! local variables logical tssr integer ik,jk,ist,jst,kst integer iw,a,b,c,l,nthd ! smallest eigenvalue difference allowed in denominator real(8), parameter :: etol=1.d-4 real(8) ei,ej,ek,eji,eki,ekj,t1 complex(8) pii(3),dji(3),vji(3),vik(3),vkj(3) complex(8) eta,ztm(3,3),z1 character(256) fname ! allocatable arrays real(8), allocatable :: w(:) complex(8), allocatable :: pmat(:,:,:) complex(8), allocatable :: chiw(:,:),chi2w(:,:) ! initialise universal variables call init0 call init1 ! read Fermi energy from file call readfermi ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate energy grid (starting from zero) allocate(w(nwplot)) t1=wplot(2)/dble(nwplot) do iw=1,nwplot w(iw)=t1*dble(iw-1) end do ! allocate response function arrays allocate(chiw(nwplot,3)) allocate(chi2w(nwplot,2)) ! i divided by the complex relaxation time eta=cmplx(0.d0,swidth,8) ! set flag for scissor operator if (abs(scissor).gt.1.d-8) then tssr=.true. else tssr=.false. end if ! begin loop over components do l=1,noptcomp a=optcomp(1,l) b=optcomp(2,l) c=optcomp(3,l) chiw(:,:)=0.d0 chi2w(:,:)=0.d0 ! parallel loop over non-reduced k-points call holdthd(nkptnr,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(pmat,jk,ist,jst,kst) & !$OMP PRIVATE(ei,ej,ek,eji,eki,ekj,t1,z1) & !$OMP PRIVATE(pii,dji,vji,vik,vkj,ztm,iw) & !$OMP REDUCTION(+:chiw,chi2w) & !$OMP NUM_THREADS(nthd) allocate(pmat(nstsv,nstsv,3)) !$OMP DO do ik=1,nkptnr !$OMP CRITICAL(nonlinopt_) write(*,'("Info(nonlinopt): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(nonlinopt_) ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! read momentum matrix elements from file call getpmat(vkl(:,ik),pmat) ! scissor correct the matrix elements if required if (tssr) then do ist=1,nstsv ei=evalsv(ist,jk) if (ei.lt.efermi) then do jst=1,nstsv ej=evalsv(jst,jk) if (ej.gt.efermi) then eji=ej-ei t1=(eji+scissor)/eji pmat(ist,jst,:)=t1*pmat(ist,jst,:) end if end do end if end do end if z1=(wkptnr*occmax/omega)*zi ! loop over valence states do ist=1,nstsv ei=evalsv(ist,jk) if (ei.lt.efermi) then pii(:)=pmat(ist,ist,:) ! loop over conduction states do jst=1,nstsv ej=evalsv(jst,jk) if (ej.gt.efermi) then eji=ej-ei+scissor dji(:)=pmat(jst,jst,:)-pii(:) vji(:)=pmat(jst,ist,:) ! loop over intermediate states do kst=1,nstsv ek=evalsv(kst,jk) if ((kst.ne.ist).and.(kst.ne.jst)) then eki=ek-ei ekj=ek-ej if (ek.gt.efermi) then eki=eki+scissor else ekj=ekj-scissor end if vik(:)=pmat(ist,kst,:) vkj(:)=pmat(kst,jst,:) ! interband terms t1=-eji*eki*(-ekj)*(eki+ekj) if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(1,1)=z1*conjg(vji(a))*(conjg(vkj(b))*conjg(vik(c)) & +conjg(vik(b))*conjg(vkj(c)))*t1 t1=eji*(-eki)*ekj*(-eki-eji) if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(1,2)=0.5d0*z1*vkj(c)*(vji(a)*vik(b)+vik(a)*vji(b))*t1 t1=eji*(-eki)*ekj*(ekj-eji) if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(1,3)=0.5d0*z1*vik(b)*(vkj(c)*vji(a)+vji(c)*vkj(a))*t1 ! intraband terms t1=(-eki)*ekj*eji**3 if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(2,1)=0.5d0*z1*(eki*vik(b)*(vkj(c)*vji(a)+vji(c)*vkj(a)) & +ekj*vkj(c)*(vji(a)*vik(b)+vik(a)*vji(b)))*t1 t1=((-eji)*eki*(-ekj)*eji**2)/(-ekj-eki) if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(2,3)=z1*conjg(vji(a))*(conjg(vkj(b))*conjg(vik(c)) & +conjg(vik(b))*conjg(vkj(c)))*t1 ! modulation terms t1=ekj*(-eki)*eji**3 if (abs(t1).gt.etol) then t1=1.d0/t1 else t1=0.d0 end if ztm(3,1)=0.25d0*z1*(-eki)*vkj(a)*(vji(b)*vik(c) & +vik(b)*vji(c))*t1 ztm(3,2)=0.25d0*z1*ekj*vik(a)*(vkj(b)*vji(c)+vji(b)*vkj(c))*t1 do iw=1,nwplot ! 2w interband chi2w(iw,1)=chi2w(iw,1)+ztm(1,1)/(eji-2.d0*w(iw)+eta) ! 2w intraband chi2w(iw,2)=chi2w(iw,2)+ztm(2,3)/(eji-2.d0*w(iw)+eta) ! w interband chiw(iw,1)=chiw(iw,1)-(ztm(1,2)-ztm(1,3))/(eji-w(iw)+eta) ! w intraband chiw(iw,2)=chiw(iw,2)+ztm(2,1)/(eji-w(iw)+eta) ! w modulation chiw(iw,3)=chiw(iw,3)+(ztm(3,1)-ztm(3,2))/(eji-w(iw)+eta) end do end if ! end loop over kst end do ztm(2,2)=4.d0*z1*conjg(vji(a))*(dji(b)*vji(c)+vji(b)*dji(c))/eji**4 ztm(3,3)=0.25d0*z1*vji(a)*(vji(b)*dji(c)+dji(b)*vji(c))/eji**4 do iw=1,nwplot ! 2w intraband chi2w(iw,2)=chi2w(iw,2)+ztm(2,2)/(eji-2.d0*w(iw)+eta) ! w modulation chiw(iw,3)=chiw(iw,3)+ztm(3,3)/(eji-w(iw)+eta) end do ! end loop over jst end if end do ! end loop over ist end if end do ! end loop over k-points end do !$OMP END DO deallocate(pmat) !$OMP END PARALLEL call freethd(nthd) ! write to files write(fname,'("CHI_INTER2w_",3I1,".OUT")') a,b,c open(51,file=trim(fname),form='FORMATTED') write(fname,'("CHI_INTRA2w_",3I1,".OUT")') a,b,c open(52,file=trim(fname),form='FORMATTED') write(fname,'("CHI_INTERw_",3I1,".OUT")') a,b,c open(53,file=trim(fname),form='FORMATTED') write(fname,'("CHI_INTRAw_",3I1,".OUT")') a,b,c open(54,file=trim(fname),form='FORMATTED') write(fname,'("CHI_",3I1,".OUT")') a,b,c open(55,file=trim(fname),form='FORMATTED') do iw=1,nwplot write(51,'(2G18.10)') w(iw),dble(chi2w(iw,1)) write(52,'(2G18.10)') w(iw),dble(chi2w(iw,2)) write(53,'(2G18.10)') w(iw),dble(chiw(iw,1)) write(54,'(2G18.10)') w(iw),dble(chiw(iw,2)) t1=dble(chi2w(iw,1)+chi2w(iw,2)+chiw(iw,1)+chiw(iw,2)+chiw(iw,3)) write(55,'(2G18.10)') w(iw),t1 end do write(51,*) write(52,*) write(53,*) write(54,*) write(55,*) do iw=1,nwplot write(51,'(2G18.10)') w(iw),aimag(chi2w(iw,1)) write(52,'(2G18.10)') w(iw),aimag(chi2w(iw,2)) write(53,'(2G18.10)') w(iw),aimag(chiw(iw,1)) write(54,'(2G18.10)') w(iw),aimag(chiw(iw,2)) t1=aimag(chi2w(iw,1)+chi2w(iw,2)+chiw(iw,1)+chiw(iw,2)+chiw(iw,3)) write(55,'(2G18.10)') w(iw),t1 end do close(51); close(52); close(53); close(54); close(55) ! end loop over components end do write(*,*) write(*,'("Info(nonlinopt):")') write(*,'(" susceptibility tensor written to CHI_abc.OUT")') write(*,'(" interband contributions written to CHI_INTERx_abc.OUT")') write(*,'(" intraband contributions written to CHI_INTRAx_abc.OUT")') write(*,'(" for components")') do l=1,noptcomp write(*,'(" a = ",I1,", b = ",I1,", c = ",I1)') optcomp(1:3,l) end do ! write chi2w to test file if required call writetest(125,'non-linear susceptibility',nv=nwplot*2,tol=1.d-2,zva=chi2w) deallocate(w,chiw,chi2w) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writelat.f900000644000000000000000000000013214061636517015077 xustar0030 mtime=1623670095.515101935 30 atime=1623670094.309103054 30 ctime=1623670095.515101935 elk-7.2.42/src/writelat.f900000644002504400250440000000325514061636517017141 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writelat use modmain implicit none open(50,file='LATTICE'//trim(filext),form='FORMATTED',action='WRITE') write(50,*) write(50,'("+----------------------------+")') write(50,'("| Real-space lattice vectors |")') write(50,'("+----------------------------+")') write(50,*) write(50,'("vector a1 : ",3G18.10)') avec(:,1) write(50,'("vector a2 : ",3G18.10)') avec(:,2) write(50,'("vector a3 : ",3G18.10)') avec(:,3) write(50,*) write(50,'("Stored column-wise as a matrix :")') write(50,'(3G18.10)') avec(1,:) write(50,'(3G18.10)') avec(2,:) write(50,'(3G18.10)') avec(3,:) write(50,*) write(50,'("Inverse of matrix :")') write(50,'(3G18.10)') ainv(1,:) write(50,'(3G18.10)') ainv(2,:) write(50,'(3G18.10)') ainv(3,:) write(50,*) write(50,'("Unit cell volume : ",G18.10)') omega write(50,*) write(50,*) write(50,'("+----------------------------------+")') write(50,'("| Reciprocal-space lattice vectors |")') write(50,'("+----------------------------------+")') write(50,*) write(50,'("vector b1 : ",3G18.10)') bvec(:,1) write(50,'("vector b2 : ",3G18.10)') bvec(:,2) write(50,'("vector b3 : ",3G18.10)') bvec(:,3) write(50,*) write(50,'("Stored column-wise as a matrix :")') write(50,'(3G18.10)') bvec(1,:) write(50,'(3G18.10)') bvec(2,:) write(50,'(3G18.10)') bvec(3,:) write(50,*) write(50,'("Inverse of matrix :")') write(50,'(3G18.10)') binv(1,:) write(50,'(3G18.10)') binv(2,:) write(50,'(3G18.10)') binv(3,:) write(50,*) write(50,'("Brillouin zone volume : ",G18.10)') omegabz close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhocore.f900000644000000000000000000000013214061636517014705 xustar0030 mtime=1623670095.516101934 30 atime=1623670094.311103052 30 ctime=1623670095.516101934 elk-7.2.42/src/rhocore.f900000644002504400250440000000374214061636517016750 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rhocore ! !INTERFACE: subroutine rhocore ! !USES: use modmain ! !DESCRIPTION: ! Adds the core density and magnetisation to the muffin-tin functions. Also ! computes the amount of leakage of core charge from the muffin-tin spheres ! into the interstitial. ! ! !REVISION HISTORY: ! Created April 2003 (JKD) ! Fixed core moment direction, October 2012 (M. Meinert) !EOP !BOC implicit none ! local variables integer ispn,idm,is,ias integer nr,nri,iro,ir,i real(8) v(ndmag),sm,t1 ! external functions real(8), external :: rfmtint do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) iro=nri+1 sm=0.d0 ! loop over spin channels do ispn=1,nspncr ! add the core density to the muffin-tin density i=1 do ir=1,nri rhomt(i,ias)=rhomt(i,ias)+rhocr(ir,ias,ispn) i=i+lmmaxi end do do ir=iro,nr rhomt(i,ias)=rhomt(i,ias)+rhocr(ir,ias,ispn) i=i+lmmaxo end do ! compute the core charge inside the muffin-tins t1=dot_product(wrmt(1:nr,is),rhocr(1:nr,ias,ispn)) sm=sm+fourpi*y00*t1 end do ! core leakage charge chgcrlk(ias)=chgcr(is)-sm ! add to the magnetisation in the case of a spin-polarised core if (spincore) then ! compute the moment in the muffin-tin do idm=1,ndmag v(idm)=rfmtint(nr,nri,wrmt(:,is),magmt(:,ias,idm)) end do ! normalise if (ncmag) then t1=sqrt(v(1)**2+v(2)**2+v(3)**2) else t1=abs(v(1)) end if if (t1.gt.1.d-10) v(:)=v(:)/t1 ! add the core magnetisation to the total i=1 do ir=1,nri t1=rhocr(ir,ias,1)-rhocr(ir,ias,2) magmt(i,ias,:)=magmt(i,ias,:)+t1*v(:) i=i+lmmaxi end do do ir=iro,nr t1=rhocr(ir,ias,1)-rhocr(ir,ias,2) magmt(i,ias,:)=magmt(i,ias,:)+t1*v(:) i=i+lmmaxo end do end if end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rzfinp.f900000644000000000000000000000013214061636517014554 xustar0030 mtime=1623670095.518101932 30 atime=1623670094.312103052 30 ctime=1623670095.518101932 elk-7.2.42/src/rzfinp.f900000644002504400250440000000172514061636517016616 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. complex(8) function rzfinp(rfmt,rfir,zfmt,zfir) use modmain use modomp implicit none ! arguments real(8), intent(in) :: rfmt(npcmtmax,natmtot),rfir(ngtot) complex(8), intent(in) :: zfmt(npcmtmax,natmtot),zfir(ngtot) ! local variables integer is,ias,ir,nthd ! external functions complex(8), external :: rzfmtinp ! interstitial contribution rzfinp=0.d0 do ir=1,ngtot rzfinp=rzfinp+(cfunir(ir)*rfir(ir))*zfir(ir) end do rzfinp=rzfinp*(omega/dble(ngtot)) ! muffin-tin contribution call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) REDUCTION(+:rzfinp) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) rzfinp=rzfinp+rzfmtinp(nrcmt(is),nrcmti(is),wrcmt(:,is),rfmt(:,ias), & zfmt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) end function elk-7.2.42/src/PaxHeaders.21776/readspecies.f900000644000000000000000000000013114061636517015532 xustar0030 mtime=1623670095.519101931 29 atime=1623670094.31410305 30 ctime=1623670095.519101931 elk-7.2.42/src/readspecies.f900000644002504400250440000002327614061636517017602 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readspecies use modmain implicit none ! local variables integer is,ist,ios integer nlx,ilx,lx,ilo integer io,jo,ko,l,i,j e0min=0.d0 do is=1,nspecies open(50,file=trim(sppath)//trim(spfname(is)),status='OLD',form='FORMATTED', & action='READ',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readspecies): error opening species file ",A)') & trim(sppath)//trim(spfname(is)) write(*,*) stop end if read(50,*) spsymb(is) read(50,*) spname(is) read(50,*) spzn(is) read(50,*) spmass(is) read(50,*) rminsp(is),rmt(is),rmaxsp(is),nrmt(is) if (rminsp(is).le.0.d0) then write(*,*) write(*,'("Error(readspecies): rminsp <= 0 : ",G18.10)') rminsp(is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (rmt(is).le.rminsp(is)) then write(*,*) write(*,'("Error(readspecies): rmt <= rminsp : ",2G18.10)') rmt(is), & rminsp(is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (rmaxsp(is).lt.rmt(is)) then write(*,*) write(*,'("Error(readspecies): rmaxsp < rmt : ",2G18.10)') rmaxsp(is), & rmt(is) write(*,*) stop end if if (nrmt(is).lt.20) then write(*,*) write(*,'("Error(readspecies): nrmt too small : ",I8)') nrmt(is) write(*,'(" for species ",I4)') is write(*,*) stop end if ! multiply nrmt by the scale factor nrmt(is)=nint(dble(nrmt(is))*nrmtscf) ! reduce the minimum radial mesh point by the same factor rminsp(is)=rminsp(is)/nrmtscf read(50,*) nstsp(is) if ((nstsp(is).le.0).or.(nstsp(is).gt.maxstsp)) then write(*,*) write(*,'("Error(readspecies): nstsp out of range : ",I8)') nstsp(is) write(*,'(" for species ",I4)') is write(*,*) stop end if do ist=1,nstsp(is) read(50,*) nsp(ist,is),lsp(ist,is),ksp(ist,is),occsp(ist,is),spcore(ist,is) if (nsp(ist,is).lt.1) then write(*,*) write(*,'("Error(readspecies): nsp < 1 : ",I8)') nsp(ist,is) write(*,'(" for species ",I4)') is write(*,'(" and state ",I4)') ist write(*,*) stop end if if (lsp(ist,is).lt.0) then write(*,*) write(*,'("Error(readspecies): lsp < 0 : ",I8)') lsp(ist,is) write(*,'(" for species ",I4)') is write(*,'(" and state ",I4)') ist write(*,*) stop end if if (ksp(ist,is).lt.1) then write(*,*) write(*,'("Error(readspecies): ksp < 1 : ",I8)') ksp(ist,is) write(*,'(" for species ",I4)') is write(*,'(" and state ",I4)') ist write(*,*) stop end if if (occsp(ist,is).lt.0.d0) then write(*,*) write(*,'("Error(readspecies): occsp < 0 : ",G18.10)') occsp(ist,is) write(*,'(" for species ",I4)') is write(*,'(" and state ",I4)') ist write(*,*) stop end if end do read(50,*) apword(0,is) if (apword(0,is).le.0) then write(*,*) write(*,'("Error(readspecies): apword <= 0 : ",I8)') apword(0,is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (apword(0,is).gt.maxapword) then write(*,*) write(*,'("Error(readspecies): apword too large : ",I8)') apword(0,is) write(*,'(" for species ",I4)') is write(*,'("Adjust maxapword in modmain and recompile code")') write(*,*) stop end if ! set the APW orders for l>0 apword(1:lmaxapw,is)=apword(0,is) do io=1,apword(0,is) read(50,*) apwe0(io,0,is),apwdm(io,0,is),apwve(io,0,is) if (apwdm(io,0,is).lt.0) then write(*,*) write(*,'("Error(readspecies): apwdm < 0 : ",I8)') apwdm(io,0,is) write(*,'(" for species ",I4)') is write(*,'(" and order ",I4)') io write(*,*) stop end if ! set the APW linearisation energies, derivative orders and variability for l>0 apwe0(io,1:lmaxapw,is)=apwe0(io,0,is) apwdm(io,1:lmaxapw,is)=apwdm(io,0,is) apwve(io,1:lmaxapw,is)=apwve(io,0,is) e0min=min(e0min,apwe0(io,0,is)) end do read(50,*) nlx if (nlx.lt.0) then write(*,*) write(*,'("Error(readspecies): nlx < 0 : ",I8)') nlx write(*,'(" for species ",I4)') is write(*,*) stop end if do ilx=1,nlx read(50,*) lx,io if (lx.lt.0) then write(*,*) write(*,'("Error(readspecies): lx < 0 : ",I8)') lx write(*,'(" for species ",I4)') is write(*,'(" and exception number ",I4)') ilx write(*,*) stop end if if (lx.gt.lmaxapw) then write(*,*) write(*,'("Error(readspecies): lx > lmaxapw : ",I8)') lx write(*,'(" for species ",I4)') is write(*,'(" and exception number ",I4)') ilx write(*,*) stop end if apword(lx,is)=io if (apword(lx,is).le.0) then write(*,*) write(*,'("Error(readspecies): apword <= 0 : ",I8)') apword(lx,is) write(*,'(" for species ",I4)') is write(*,'(" and exception number ",I4)') ilx write(*,*) stop end if if (apword(lx,is).gt.maxapword) then write(*,*) write(*,'("Error(readspecies): apword too large : ",I8)') apword(lx,is) write(*,'(" for species ",I4)') is write(*,'(" and exception number ",I4)') ilx write(*,'("Adjust maxapword in modmain and recompile code")') write(*,*) stop end if do io=1,apword(lx,is) read(50,*) apwe0(io,lx,is),apwdm(io,lx,is),apwve(io,lx,is) if (apwdm(io,lx,is).lt.0) then write(*,*) write(*,'("Error(readspecies): apwdm < 0 : ",I8)') apwdm(io,lx,is) write(*,'(" for species ",I4)') is write(*,'(" exception number ",I4)') ilx write(*,'(" and order ",I4)') io write(*,*) stop end if e0min=min(e0min,apwe0(io,lx,is)) end do end do ! add excess order to APW functions if required if (nxoapwlo.gt.0) then do l=0,lmaxapw jo=apword(l,is) ko=jo+nxoapwlo if (ko.gt.maxapword) ko=maxapword i=0 do io=jo+1,ko i=i+1 apwe0(io,l,is)=apwe0(jo,l,is) apwdm(io,l,is)=apwdm(jo,l,is)+i apwve(io,l,is)=apwve(jo,l,is) end do apword(l,is)=ko end do end if read(50,*) nlorb(is) if (nlorb(is).lt.0) then write(*,*) write(*,'("Error(readspecies): nlorb < 0 : ",I8)') nlorb(is) write(*,'(" for species ",I4)') is write(*,*) stop end if if (nlorb(is).gt.maxlorb) then write(*,*) write(*,'("Error(readspecies): nlorb too large : ",I8)') nlorb(is) write(*,'(" for species ",I4)') is write(*,'("Adjust maxlorb in modmain and recompile code")') write(*,*) stop end if do ilo=1,nlorb(is) read(50,*) lorbl(ilo,is),lorbord(ilo,is) if (lorbl(ilo,is).lt.0) then write(*,*) write(*,'("Error(readspecies): lorbl < 0 : ",I8)') lorbl(ilo,is) write(*,'(" for species ",I4)') is write(*,'(" and local-orbital ",I4)') ilo write(*,*) stop end if if (lorbl(ilo,is).gt.lmaxo) then write(*,*) write(*,'("Error(readspecies): lorbl > lmaxo : ",2I8)') lorbl(ilo,is), & lmaxo write(*,'(" for species ",I4)') is write(*,'(" and local-orbital ",I4)') ilo write(*,*) stop end if if (lorbord(ilo,is).lt.2) then write(*,*) write(*,'("Error(readspecies): lorbord < 2 : ",I8)') lorbord(ilo,is) write(*,'(" for species ",I4)') is write(*,'(" and local-orbital ",I4)') ilo write(*,*) stop end if if (lorbord(ilo,is).gt.maxlorbord) then write(*,*) write(*,'("Error(readspecies): lorbord too large : ",I8)') lorbord(ilo,is) write(*,'(" for species ",I4)') is write(*,'(" and local-orbital ",I4)') ilo write(*,'("Adjust maxlorbord in modmain and recompile code")') write(*,*) stop end if do io=1,lorbord(ilo,is) read(50,*) lorbe0(io,ilo,is),lorbdm(io,ilo,is),lorbve(io,ilo,is) if (lorbdm(io,ilo,is).lt.0) then write(*,*) write(*,'("Error(readspecies): lorbdm < 0 : ",I8)') lorbdm(io,ilo,is) write(*,'(" for species ",I4)') is write(*,'(" local-orbital ",I4)') ilo write(*,'(" and order ",I4)') io write(*,*) stop end if e0min=min(e0min,lorbe0(io,ilo,is)) end do end do ! add excess local-orbitals if required if (nxlo.gt.0) then lx=-1 do ilo=1,nlorb(is) do io=1,lorbord(ilo,is) if (lorbe0(io,ilo,is).lt.0.d0) goto 10 end do if (lorbl(ilo,is).gt.lx) lx=lorbl(ilo,is) 10 continue end do ilo=nlorb(is) do i=1,nxlo if (ilo.eq.maxlorb) exit l=lx+i if (l.gt.lmaxo) exit ilo=ilo+1 lorbl(ilo,is)=l lorbord(ilo,is)=apword(l,is)+1 do io=1,lorbord(ilo,is) lorbe0(io,ilo,is)=apwe0(1,l,is) lorbdm(io,ilo,is)=io-1 lorbve(io,ilo,is)=apwve(1,l,is) end do end do nlorb(is)=ilo end if ! add excess order to local-orbitals if required if (nxoapwlo.gt.0) then do ilo=1,nlorb(is) ! find the maximum energy derivative jo=1 j=lorbdm(jo,ilo,is) do io=1,lorbord(ilo,is) i=lorbdm(io,ilo,is) if (i.gt.j) then jo=io j=i end if end do ko=lorbord(ilo,is)+nxoapwlo if (ko.gt.maxlorbord) ko=maxlorbord i=0 do io=lorbord(ilo,is)+1,ko i=i+1 lorbe0(io,ilo,is)=lorbe0(jo,ilo,is) lorbdm(io,ilo,is)=lorbdm(jo,ilo,is)+i lorbve(io,ilo,is)=lorbve(jo,ilo,is) end do lorbord(ilo,is)=ko end do end if close(50) end do ! set all muffin-tin radii to single value if required if (rmtall.gt.0.d0) rmt(1:nspecies)=rmtall ! add conduction state local-orbitals if required call addlorbcnd ! subtract 2 Hartree from the minimum energy e0min=e0min-2.d0 end subroutine elk-7.2.42/src/PaxHeaders.21776/findband.f900000644000000000000000000000013214061636517015011 xustar0030 mtime=1623670095.521101929 30 atime=1623670094.316103048 30 ctime=1623670095.521101929 elk-7.2.42/src/findband.f900000644002504400250440000000631714061636517017055 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: findband ! !INTERFACE: subroutine findband(sol,l,nr,r,vr,eps,demax,e,fnd) ! !INPUT/OUTPUT PARAMETERS: ! sol : speed of light in atomic units (in,real) ! l : angular momentum quantum number (in,integer) ! nr : number of radial mesh points (in,integer) ! r : radial mesh (in,real(nr)) ! vr : potential on radial mesh (in,real(nr)) ! eps : energy search tolerance (in,real) ! demax : maximum allowed change from the input energy; enforced only if e < 0 ! (in,real) ! e : input energy and returned band energy (inout,real) ! fnd : set to .true. if the band energy is found (out,logical) ! !DESCRIPTION: ! Finds the band energies for a given radial potential and angular momentum. ! This is done by first searching upwards in energy, starting from the input ! energy plus the offset energy, until the radial wavefunction at the ! muffin-tin radius is zero. This is the energy at the top of the band, ! denoted $E_{\rm t}$. A downward search is now performed from $E_{\rm t}$ ! until the slope of the radial wavefunction at the muffin-tin radius is zero. ! This energy, $E_{\rm b}$, is at the bottom of the band. The band energy is ! taken as $(E_{\rm t}+E_{\rm b})/2$. If either $E_{\rm t}$ or $E_{\rm b}$ ! cannot be found then the band energy is set to the input value. ! ! !REVISION HISTORY: ! Created September 2004 (JKD) ! Added two-pass loop, October 2013 (JKD) !EOP !BOC implicit none ! arguments real(8), intent(in) :: sol integer, intent(in) :: l,nr real(8), intent(in) :: r(nr),vr(nr) real(8), intent(in) :: eps,demax real(8), intent(inout) :: e logical, intent(out) :: fnd ! local variables logical ft,fb ! maximum number of steps integer, parameter :: maxstp=250 integer ip,ie,nn ! initial step size real(8), parameter :: de0=0.001d0 real(8) de,et,eb,t,tp ! automatic arrays real(8) p0(nr),p1(nr),q0(nr),q1(nr) ft=.false. fb=.false. fnd=.false. et=e eb=e ! two-pass loop do ip=1,2 ! find the top of the band tp=0.d0 de=de0 do ie=1,maxstp et=et+de if (e.lt.0.d0) then if (et.gt.e+demax) exit end if call rschrodint(sol,l,et,nr,r,vr,nn,p0,p1,q0,q1) t=p0(nr) if (ie.gt.1) then if (t*tp.le.0.d0) then if (abs(de).lt.eps) then if (fb) goto 10 ft=.true. eb=et+5.d0*abs(de0) exit end if de=-0.5d0*de else de=1.5d0*de end if end if tp=t end do if (fb) return ! find the bottom of the band tp=0.d0 de=-de0 do ie=1,maxstp eb=eb+de if (eb.lt.e-demax) return call rschrodint(sol,l,eb,nr,r,vr,nn,p0,p1,q0,q1) t=p1(nr) if (ie.gt.1) then if (t*tp.le.0.d0) then if (abs(de).lt.eps) then if (ft) goto 10 fb=.true. et=eb-5.d0*abs(de0) exit end if de=-0.5d0*de else de=1.5d0*de end if end if tp=t end do end do return 10 continue ! set the band energy halfway between top and bottom e=(et+eb)/2.d0 fnd=.true. end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/exxengy.f900000644000000000000000000000013214061636517014733 xustar0030 mtime=1623670095.523101928 30 atime=1623670094.318103046 30 ctime=1623670095.523101928 elk-7.2.42/src/exxengy.f900000644002504400250440000000555014061636517016775 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2006 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine exxengy use modmain use modmpi use modomp implicit none ! local variables integer ik,ist,jst,is,ia integer nrc,nrci,npc integer m1,m2,nthd complex(8) z1 ! allocatable arrays complex(8), allocatable :: wfcr1(:,:),wfcr2(:,:) complex(8), allocatable :: zrhomt(:),zvclmt(:),zfmt(:) ! external functions complex(8), external :: zfmtinp allocate(wfcr1(npcmtmax,2),wfcr2(npcmtmax,2)) allocate(zrhomt(npcmtmax),zvclmt(npcmtmax),zfmt(npcmtmax)) ! zero the exchange energy engyx=0.d0 !--------------------------------------------------! ! val-val-val and val-cr-val contributions ! !--------------------------------------------------! call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(exxengy_) write(*,'("Info(exxengy): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(exxengy_) call exxengyk(ik) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! add energies from each process and redistribute call mpi_allreduce(mpi_in_place,engyx,1,mpi_double_precision,mpi_sum,mpicom, & ierror) !-----------------------------------! ! core-core-core contribution ! !-----------------------------------! ! begin loops over atoms and species do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) do jst=1,nstsp(is) if (spcore(jst,is)) then do m2=-ksp(jst,is),ksp(jst,is)-1 ! generate the core wavefunction in spherical coordinates (pass in m-1/2) call wavefcr(.false.,lradstp,is,ia,jst,m2,npcmtmax,wfcr2) do ist=1,nstsp(is) if (spcore(ist,is)) then do m1=-ksp(ist,is),ksp(ist,is)-1 call wavefcr(.false.,lradstp,is,ia,ist,m1,npcmtmax,wfcr1) ! calculate the complex overlap density call zrho2(npc,wfcr1,wfcr1(:,2),wfcr2,wfcr2(:,2),zfmt) call zfsht(nrc,nrci,zfmt,zrhomt) ! calculate the Coulomb potential call zpotclmt(nrc,nrci,nrcmtmax,rlcmt(:,:,is),wprcmt(:,:,is), & zrhomt,zvclmt) z1=zfmtinp(nrc,nrci,wrcmt(:,is),zrhomt,zvclmt) engyx=engyx-0.5d0*dble(z1) end do ! end loop over ist end if end do end do ! end loop over jst end if end do ! end loops over atoms and species end do end do deallocate(wfcr1,wfcr2,zrhomt,zvclmt,zfmt) return contains pure subroutine zrho2(n,x1,x2,y1,y2,z) implicit none integer, intent(in) :: n complex(8), intent(in) :: x1(n),x2(n),y1(n),y2(n) complex(8), intent(out) :: z(n) z(:)=conjg(x1(:))*y1(:)+conjg(x2(:))*y2(:) end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/gentauk.f900000644000000000000000000000013214061636517014702 xustar0030 mtime=1623670095.524101927 30 atime=1623670094.320103044 30 ctime=1623670095.524101927 elk-7.2.42/src/gentauk.f900000644002504400250440000000554714061636517016752 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gentauk(ik) use modmain implicit none ! arguments integer, intent(in) :: ik ! local variables integer ispn,jspn,nst,ist,jst integer is,ias,nrc,nrci integer npc,igk,ifg,i real(8) wo complex(8) z1 ! automatic arrays integer idx(nstsv) ! automatic arrays complex(8) gzfmt(npcmtmax,3),zfmt(npcmtmax),zfft(ngtc) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgp(:,:,:) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) ! find the matching coefficients do ispn=1,nspnfv call match(ngk(ispn,ik),vgkc(:,:,ispn,ik),gkc(:,ispn,ik), & sfacgk(:,:,ispn,ik),apwalm(:,:,:,:,ispn)) end do ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! count and index the occupied states nst=0 do ist=1,nstsv if (abs(occsv(ist,ik)).lt.epsocc) cycle nst=nst+1 idx(nst)=ist end do ! calculate the second-variational wavefunctions for occupied states allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfgp(ngkmax,nspinor,nst)) call genwfsv(.true.,.true.,nst,idx,ngdgc,igfc,ngk(:,ik),igkig(:,:,ik),apwalm, & evecfv,evecsv,wfmt,ngkmax,wfgp) deallocate(apwalm,evecfv,evecsv) !-------------------------! ! muffin-tin part ! !-------------------------! do ist=1,nst jst=idx(ist) wo=0.5d0*wkpt(ik)*occsv(jst,ik) do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! compute the gradient of the wavefunction call gradzfmt(nrc,nrci,rlcmt(:,-1,is),wcrcmt(:,:,is), & wfmt(:,ias,ispn,ist),npcmtmax,gzfmt) do i=1,3 ! convert gradient to spherical coordinates call zbsht(nrc,nrci,gzfmt(:,i),zfmt) ! add to total in muffin-tin !$OMP CRITICAL(gentauk_1) taumt(1:npc,ias,ispn)=taumt(1:npc,ias,ispn) & +wo*(dble(zfmt(1:npc))**2+aimag(zfmt(1:npc))**2) !$OMP END CRITICAL(gentauk_1) end do end do end do end do deallocate(wfmt) !---------------------------! ! interstitial part ! !---------------------------! do ist=1,nst jst=idx(ist) wo=0.5d0*wkpt(ik)*occsv(jst,ik)/omega do ispn=1,nspinor jspn=jspnfv(ispn) do i=1,3 zfft(:)=0.d0 do igk=1,ngk(jspn,ik) ifg=igfc(igkig(igk,jspn,ik)) z1=wfgp(igk,ispn,ist) zfft(ifg)=vgkc(i,igk,jspn,ik)*cmplx(-aimag(z1),dble(z1),8) end do call zfftifc(3,ngdgc,1,zfft) !$OMP CRITICAL(gentauk_2) tauir(1:ngtc,ispn)=tauir(1:ngtc,ispn) & +wo*(dble(zfft(1:ngtc))**2+aimag(zfft(1:ngtc))**2) !$OMP END CRITICAL(gentauk_2) end do end do end do deallocate(wfgp) end subroutine elk-7.2.42/src/PaxHeaders.21776/gradrfmt.f900000644000000000000000000000013214061636517015052 xustar0030 mtime=1623670095.526101925 30 atime=1623670094.321103043 30 ctime=1623670095.526101925 elk-7.2.42/src/gradrfmt.f900000644002504400250440000000364514061636517017117 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: gradrfmt ! !INTERFACE: subroutine gradrfmt(nr,nri,ri,wcr,rfmt,ld,grfmt) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of points on inner part of muffin-tin (in,integer) ! ri : 1/r on the radial mesh (in,real(nr)) ! wcr : weights for spline coefficients on radial mesh (in,real(12,nr)) ! rfmt : real muffin-tin function (in,real(*)) ! ld : leading dimension (in,integer) ! grfmt : gradient of rfmt (out,real(ld,3)) ! !DESCRIPTION: ! Calculates the gradient of a real muffin-tin function. In other words, given ! the real spherical harmonic expansion coefficients, $f_{lm}(r)$, of a ! function $f({\bf r})$, the routine returns ${\bf F}_{lm}$ where ! $$ \sum_{lm}{\bf F}_{lm}(r)R_{lm}(\hat{\bf r})=\nabla f({\bf r}), $$ ! and $R_{lm}$ is a real spherical harmonic function. This is done by first ! converting the function to a complex spherical harmonic expansion and then ! using the routine {\tt gradzfmt}. See routine {\tt genrlm}. ! ! !REVISION HISTORY: ! Created August 2003 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: ri(nr),wcr(12,nr) real(8), intent(in) :: rfmt(*) integer, intent(in) :: ld real(8), intent(out) :: grfmt(ld,3) ! local variables integer i ! automatic arrays complex(8) zfmt(ld),gzfmt(ld,3) ! convert real to complex spherical harmonic expansion call rtozfmt(nr,nri,rfmt,zfmt) ! compute the gradient call gradzfmt(nr,nri,ri,wcr,zfmt,ld,gzfmt) ! convert complex to real spherical harmonic expansion do i=1,3 call ztorfmt(nr,nri,gzfmt(:,i),grfmt(:,i)) ! apply smoothing if required call rfmtsm(msmooth,nr,nri,grfmt(:,i)) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/symrf.f900000644000000000000000000000013214061636517014404 xustar0030 mtime=1623670095.527101924 30 atime=1623670094.323103041 30 ctime=1623670095.527101924 elk-7.2.42/src/symrf.f900000644002504400250440000000376114061636517016450 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: symrf ! !INTERFACE: subroutine symrf(nr,nri,np,ngdg,ngt,ngv,igf,ld,rfmt,rfir) ! !USES: use modmain use modomp ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial points for each species (in,integer(nspecies)) ! nri : number of radial points on the inner part (in,integer(nspecies)) ! np : total number of points in each muffin-tin (in,integer(nspecies)) ! ngdg : G-vector grid sizes (in,integer(3)) ! ngt : total number of G-vectors (in,integer) ! ngv : number of G-vectors within cut-off (in,integer) ! igf : map from G-vector index to FFT array (in,integer(ngv)) ! ld : leading dimension (in,integer) ! rfmt : real muffin-tin function (inout,real(ld,natmtot)) ! rfir : real intersitial function (inout,real(ngtot)) ! !DESCRIPTION: ! Symmetrises a real scalar function defined over the entire unit cell using ! the full set of crystal symmetries. In the muffin-tin of a particular atom ! the spherical harmonic coefficients of every equivlent atom are rotated and ! averaged. The interstitial part of the function is first Fourier transformed ! to $G$-space, and then averaged over each symmetry by rotating the Fourier ! coefficients and multiplying them by a phase factor corresponding to the ! symmetry translation. ! ! !REVISION HISTORY: ! Created May 2007 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr(nspecies),nri(nspecies),np(nspecies) integer, intent(in) :: ngdg(3),ngt,ngv,igf(ngv) integer, intent(in) :: ld real(8), intent(inout) :: rfmt(ld,natmtot),rfir(ngt) ! local variables integer nthd call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP SECTION call symrfmt(nr,nri,np,ld,rfmt) !$OMP SECTION call symrfir(ngdg,ngt,ngv,igf,rfir) !$OMP END PARALLEL SECTIONS call freethd(nthd) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rfmtinp.f900000644000000000000000000000013114061636517014722 xustar0030 mtime=1623670095.529101922 29 atime=1623670094.32510304 30 ctime=1623670095.529101922 elk-7.2.42/src/rfmtinp.f900000644002504400250440000000351114061636517016760 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2003-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rfmtinp ! !INTERFACE: pure real(8) function rfmtinp(nr,nri,wr,rfmt1,rfmt2) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! nr : number of radial mesh points (in,integer) ! nri : number of radial mesh points on the inner part of the muffin-tin ! (in,integer) ! wr : weights for integration on radial mesh (in,real(nr)) ! rfmt1 : first real function inside muffin-tin (in,real(*)) ! rfmt2 : second real function inside muffin-tin (in,real(*)) ! !DESCRIPTION: ! Calculates the inner product of two real functions in the muffin-tin. So ! given two real functions of the form ! $$ f({\bf r})=\sum_{l=0}^{l_{\rm max}}\sum_{m=-l}^{l}f_{lm}(r)R_{lm} ! (\hat{\bf r}) $$ ! where $R_{lm}$ are the real spherical harmonics, the function returns ! $$ I=\int\sum_{l=0}^{l_{\rm max}}\sum_{m=-l}^{l}f_{lm}^1(r)f_{lm}^2(r)r^2 ! dr\;. $$ ! ! !REVISION HISTORY: ! Created November 2003 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) real(8), intent(in) :: rfmt1(*),rfmt2(*) ! local variables integer n,ir,i ! compute the dot-products for each radial point and integrate over r rfmtinp=0.d0 i=1 if (lmaxi.eq.1) then do ir=1,nri rfmtinp=rfmtinp+wr(ir) & *(rfmt1(i)*rfmt2(i) & +rfmt1(i+1)*rfmt2(i+1) & +rfmt1(i+2)*rfmt2(i+2) & +rfmt1(i+3)*rfmt2(i+3)) i=i+4 end do else n=lmmaxi-1 do ir=1,nri rfmtinp=rfmtinp+wr(ir)*dot_product(rfmt1(i:i+n),rfmt2(i:i+n)) i=i+lmmaxi end do end if n=lmmaxo-1 do ir=nri+1,nr rfmtinp=rfmtinp+wr(ir)*dot_product(rfmt1(i:i+n),rfmt2(i:i+n)) i=i+lmmaxo end do end function !EOC elk-7.2.42/src/PaxHeaders.21776/checkfsm.f900000644000000000000000000000013214061636517015027 xustar0030 mtime=1623670095.530101921 30 atime=1623670094.327103038 30 ctime=1623670095.530101921 elk-7.2.42/src/checkfsm.f900000644002504400250440000000304014061636517017061 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine checkfsm use modmain implicit none ! local variables integer isym,lspn integer is,ia,ja real(8) sc(3,3),v(3),t1 if (fsmtype.eq.0) return do isym=1,nsymcrys lspn=lspnsymc(isym) ! proper rotation matrix in Cartesian coordinates sc(:,:)=dble(symlatd(lspn))*symlatc(:,:,lspn) ! check invariance of global moment if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then call r3mv(sc,momfix,v) t1=sum(abs(momfix(:)-v(:))) if (t1.gt.epslat) then write(*,*) write(*,'("Error(checkfsm): momfix not invariant under symmetry group")') write(*,*) stop end if end if ! check invariance of muffin-tin moments if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then do is=1,nspecies do ia=1,natoms(is) ! if any component is >= 1000 then do not fix the moment t1=sum(abs(mommtfix(:,ia,is))) if (t1.ge.1000.d0) cycle ! equivalent atom ja=ieqatom(ia,is,isym) call r3mv(sc,mommtfix(:,ja,is),v) t1=sum(abs(mommtfix(:,ia,is)-v(:))) if (t1.gt.epslat) then write(*,*) write(*,'("Error(checkfsm): mommtfix not invariant under symmetry & &group")') write(*,'(" for species ",I4)') is write(*,'(" and equivalent atoms ",2I4)') ia,ja write(*,*) stop end if end do end do end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/genrlmv.f900000644000000000000000000000013214061636517014716 xustar0030 mtime=1623670095.532101919 30 atime=1623670094.328103037 30 ctime=1623670095.532101919 elk-7.2.42/src/genrlmv.f900000644002504400250440000000367514061636517016766 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: genrlmv ! !INTERFACE: subroutine genrlmv(lmax,v,rlm) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum angular momentum (in,integer) ! v : input vector (in,real(3)) ! rlm : array of real spherical harmonics (out,real((lmax+1)**2)) ! !DESCRIPTION: ! Generates a sequence of real spherical harmonics evaluated at angles ! $(\theta,\phi)$ for $00 \\ ! \sqrt{2}\,\Im\{Y_{lm}(\theta,\phi)\} & m<0 \\ ! \Re\{Y_{lm}(\theta,\phi)\} & m=0 ! \end{cases}, $$ ! where $Y_{lm}$ are the complex spherical harmonics. These functions are ! orthonormal and complete and may be used for expanding real-valued functions ! on the sphere. This routine is numerically stable and accurate to near ! machine precision for $l\le 50$. See routine {\tt genylmv}. ! ! !REVISION HISTORY: ! Created March 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax real(8), intent(in) :: v(3) real(8), intent(out) :: rlm(*) ! local variables integer l,m,lm real(8), parameter :: sqtwo=1.4142135623730950488d0 ! automatic arrays complex(8) ylm((lmax+1)**2) if ((lmax.lt.0).or.(lmax.gt.50)) then write(*,*) write(*,'("Error(genrlmv): lmax out of range : ",I8)') lmax write(*,*) stop end if ! generate complex spherical harmonics call genylmv(lmax,v,ylm) ! convert to real spherical harmonics lm=0 do l=0,lmax do m=-l,-1 lm=lm+1 rlm(lm)=sqtwo*aimag(ylm(lm)) end do lm=lm+1 rlm(lm)=dble(ylm(lm)) do m=1,l lm=lm+1 rlm(lm)=sqtwo*dble(ylm(lm)) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/mae.f900000644000000000000000000000013214061636517014006 xustar0030 mtime=1623670095.533101918 30 atime=1623670094.330103035 30 ctime=1623670095.533101918 elk-7.2.42/src/mae.f900000644002504400250440000001007014061636517016041 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine mae use modmain use modmpi use modstore use moddelf implicit none ! local variables integer i,j,im(2) real(8) em(2),de real(8) v1(3),v2(3),th real(8) a(3,3),b(3,3) ! initialise global variables call init0 ! store original parameters avec_(:,:)=avec(:,:) spinpol_=spinpol spinorb_=spinorb cmagz_=cmagz bfieldc0_(:)=bfieldc0(:) reducebf_=reducebf fsmtype_=fsmtype vkloff_(:)=vkloff(:) ! enable spin-orbit coupling spinorb=.true. ! enforce collinear magnetism in the z-direction cmagz=.true. ! no fixed spin moment calculation: the crystal is rotated instead fsmtype=0 ! if task=28 then start from atomic densities; if task=29 read STATE.OUT if (task.eq.28) then trdstate=.false. else trdstate=.true. end if ! zero k-point offset vkloff(:)=0.d0 ! start with large magnetic field bfieldc0(1:2)=0.d0 bfieldc0(3)=-2.d0 ! reduce the external magnetic field after each s.c. loop reducebf=0.75d0 ! generate the spin moment directions in (theta,phi) coordinates call gentpmae ! open MAE_INFO.OUT if (mp_mpi) then open(71,file='MAE_INFO.OUT',form='FORMATTED') write(71,*) write(71,'("Scale factor of spin-orbit coupling term : ",G18.10)') socscf end if im(:)=1 em(1)=1.d8 em(2)=-1.d8 ! loop over points on sphere do i=1,npmae if (mp_mpi) then write(*,'("Info(mae): fixed spin moment direction ",I6," of ",I6)') i,npmae end if ! rotate lattice vectors instead of moment (thanks to J. Glasbrenner, ! K. Bussmann and I. Mazin) ! first by -phi around the z-axis v1(:)=0.d0 v1(3)=1.d0 th=-tpmae(2,i) call axangrot(v1,th,a) ! then by -theta around the y-axis v1(:)=0.d0 v1(2)=1.d0 th=-tpmae(1,i) call axangrot(v1,th,b) call r3mm(b,a,rotsht) call r3mm(rotsht,avec_,avec) ! find the corresponding moment direction vector call r3minv(rotsht,a) v1(:)=0.d0 v1(3)=1.d0 call r3mv(a,v1,v2) do j=1,3 if (abs(v2(j)).lt.epslat) v2(j)=0.d0 end do ! rotate the spherical cover used for the spherical harmonic transform trotsht=.true. ! run the ground-state calculation call gndstate ! subsequent calculations should read the previous density trdstate=.true. ! make external magnetic field small bfieldc0(3)=-0.01d0 if (mp_mpi) then write(71,*) write(71,'("Fixed spin moment direction point ",I6," of ",I6)') i,npmae write(71,'("Spherical coordinates of direction : ",2G18.10)') tpmae(:,i) write(71,'("Direction vector (Cartesian coordinates) : ",3G18.10)') v2 write(71,'("Calculated total moment magnitude : ",G18.10)') momtotm write(71,'("Total energy : ",G22.12)') engytot flush(71) end if ! check for minimum and maximum total energy if (engytot.lt.em(1)) then em(1)=engytot im(1)=i end if if (engytot.gt.em(2)) then em(2)=engytot im(2)=i end if ! delete the eigenvector files call delfiles(evec=.true.) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end do ! magnetic anisotropy energy de=em(2)-em(1) if (mp_mpi) then write(71,*) write(71,'("Minimum energy point : ",I6)') im(1) write(71,'("Maximum energy point : ",I6)') im(2) write(71,*) write(71,'("Estimated magnetic anisotropy energy (MAE) : ",G18.10)') de write(71,*) write(71,'("MAE per unit volume : ",G18.10)') de/omega close(71) open(50,file='MAE.OUT',form='FORMATTED') write(50,'(G18.10)') de close(50) open(50,file='MAEPUV.OUT',form='FORMATTED') write(50,'(G18.10)') de/omega close(50) write(*,*) write(*,'("Info(mae):")') write(*,'(" Estimated magnetic anisotropy energy written to MAE.OUT")') write(*,'(" MAE per unit volume written to MAEPUV.OUT")') write(*,*) write(*,'(" Number of fixed spin moment directions used : ",I6)') npmae write(*,*) write(*,'(" Additional information written to MAE_INFO.OUT")') end if ! restore original input parameters avec(:,:)=avec_(:,:) spinpol=spinpol_ spinorb=spinorb_ cmagz=cmagz_ fsmtype=fsmtype_ bfieldc0(:)=bfieldc0_(:) reducebf=reducebf_ vkloff(:)=vkloff_(:) trotsht=.false. end subroutine elk-7.2.42/src/PaxHeaders.21776/writegvecrf.f900000644000000000000000000000013214061636517015573 xustar0030 mtime=1623670095.535101916 30 atime=1623670094.332103033 30 ctime=1623670095.535101916 elk-7.2.42/src/writegvecrf.f900000644002504400250440000000077714061636517017643 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writegvecrf use modmain implicit none ! local variables integer ig open(50,file='GVECRF.OUT',form='FORMATTED',action='WRITE') write(50,'(G18.10," : gmaxrf")') gmaxrf write(50,'(I8," : ngrf; G-vector index, ivg below")') ngrf do ig=1,ngrf write(50,'(I8,3I6)') ig,ivg(1:3,ig) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/zcfmtwr.f900000644000000000000000000000013214061636517014740 xustar0030 mtime=1623670095.536101915 30 atime=1623670094.333103032 30 ctime=1623670095.536101915 elk-7.2.42/src/zcfmtwr.f900000644002504400250440000000134714061636517017002 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine zcfmtwr(nr,nri,wr,zfmt,cfmt) use modmain implicit none ! arguments integer, intent(in) :: nr,nri real(8), intent(in) :: wr(nr) complex(8), intent(in) :: zfmt(*) complex(4), intent(out) :: cfmt(*) ! local variables integer n,ir,i i=1 if (lmaxi.eq.1) then do ir=1,nri cfmt(i:i+3)=cmplx(wr(ir)*zfmt(i:i+3)) i=i+4 end do else n=lmmaxi-1 do ir=1,nri cfmt(i:i+n)=cmplx(wr(ir)*zfmt(i:i+n)) i=i+lmmaxi end do end if n=lmmaxo-1 do ir=nri+1,nr cfmt(i:i+n)=cmplx(wr(ir)*zfmt(i:i+n)) i=i+lmmaxo end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dolpistl.f900000644000000000000000000000013114061636517015075 xustar0030 mtime=1623670095.538101914 29 atime=1623670094.33510303 30 ctime=1623670095.538101914 elk-7.2.42/src/dolpistl.f900000644002504400250440000000133614061636517017136 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dolpistl(ngp,ngpq,igpig,igpqig,ld,od) use modmain use modphonon implicit none ! arguments integer, intent(in) :: ngp,ngpq integer, intent(in) :: igpig(ngkmax),igpqig(ngkmax) integer, intent(in) :: ld complex(8), intent(inout) :: od(ld,*) ! local variables integer i1,i2,i3,j1,j2,j3 integer ig,i,j do j=1,ngp ig=igpig(j) j1=ivg(1,ig); j2=ivg(2,ig); j3=ivg(3,ig) do i=1,ngpq ig=igpqig(i) i1=ivg(1,ig)-j1; i2=ivg(2,ig)-j2; i3=ivg(3,ig)-j3 od(i,j)=od(i,j)+dcfunig(ivgig(i1,i2,i3)) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dhmlistl.f900000644000000000000000000000013214061636517015064 xustar0030 mtime=1623670095.539101913 30 atime=1623670094.336103029 30 ctime=1623670095.539101913 elk-7.2.42/src/dhmlistl.f900000644002504400250440000000162714061636517017127 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dhmlistl(ngp,ngpq,igpig,igpqig,vgpc,vgpqc,ld,dh) use modmain use modphonon implicit none ! arguments integer, intent(in) :: ngp,ngpq integer, intent(in) :: igpig(ngkmax),igpqig(ngkmax) real(8), intent(in) :: vgpc(3,ngkmax),vgpqc(3,ngkmax) integer, intent(in) :: ld complex(8), intent(inout) :: dh(ld,*) ! local variables integer j1,j2,j3 integer ig,i,j real(8) v1,v2,v3,t1 do j=1,ngp ig=igpig(j) j1=ivg(1,ig); j2=ivg(2,ig); j3=ivg(3,ig) v1=0.5d0*vgpc(1,j); v2=0.5d0*vgpc(2,j); v3=0.5d0*vgpc(3,j) do i=1,ngpq ig=igpqig(i) ig=ivgig(ivg(1,ig)-j1,ivg(2,ig)-j2,ivg(3,ig)-j3) t1=vgpqc(1,i)*v1+vgpqc(2,i)*v2+vgpqc(3,i)*v3 dh(i,j)=dh(i,j)+dvsig(ig)+t1*dcfunig(ig) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/olpaloq.f900000644000000000000000000000013214061636517014713 xustar0030 mtime=1623670095.541101911 30 atime=1623670094.338103027 30 ctime=1623670095.541101911 elk-7.2.42/src/olpaloq.f900000644002504400250440000000170514061636517016753 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine olpaloq(is,ias,ngp,ngpq,apwalm,apwalmq,ld,oq) use modmain implicit none ! arguments integer, intent(in) :: is,ias integer, intent(in) :: ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: oq(ld,*) ! local variables integer ilo,io,l,lm integer i0,j0,i,j real(8) t1 do ilo=1,nlorb(is) l=lorbl(ilo,is) do lm=l**2+1,(l+1)**2 i=idxlo(lm,ilo,ias) i0=ngpq+i j0=ngp+i do io=1,apword(l,is) t1=oalo(io,ilo,ias) do i=1,ngpq oq(i,j0)=oq(i,j0)+t1*conjg(apwalmq(i,io,lm)) end do do j=1,ngp oq(i0,j)=oq(i0,j)+t1*apwalm(j,io,lm) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlaloq.f900000644000000000000000000000013014061636517014677 xustar0029 mtime=1623670095.54210191 30 atime=1623670094.340103026 29 ctime=1623670095.54210191 elk-7.2.42/src/hmlaloq.f900000644002504400250440000000262014061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmlaloq(is,ias,ngp,ngpq,apwalm,apwalmq,ld,hq) use modmain implicit none ! arguments integer, intent(in) :: is,ias integer, intent(in) :: ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: hq(ld,*) ! local variables integer io,ilo integer l1,l2,l3 integer lm1,lm2,lm3 integer i0,j0,i,j complex(8) z1 do ilo=1,nlorb(is) l1=lorbl(ilo,is) do lm1=l1**2+1,(l1+1)**2 i=idxlo(lm1,ilo,ias) i0=ngpq+i j0=ngp+i do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do io=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*hloa(lm2,io,l3,ilo,ias) end do end if end do if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then do i=1,ngpq hq(i,j0)=hq(i,j0)+conjg(z1*apwalmq(i,io,lm3)) end do do j=1,ngp hq(i0,j)=hq(i0,j)+z1*apwalm(j,io,lm3) end do end if end do end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dolpalo.f900000644000000000000000000000013214061636517014676 xustar0030 mtime=1623670095.544101908 30 atime=1623670094.341103025 30 ctime=1623670095.544101908 elk-7.2.42/src/dolpalo.f900000644002504400250440000000174014061636517016735 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dolpalo(is,ias,ngp,ngpq,dapwalm,dapwalmq,ld,od) use modmain use modphonon implicit none ! arguments integer, intent(in) :: is,ias,ngp,ngpq complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: od(ld,*) ! local variables integer ilo,io,l,lm integer i0,j0,i,j real(8) t1 if (ias.ne.iasph) return do ilo=1,nlorb(is) l=lorbl(ilo,is) do lm=l**2+1,(l+1)**2 i=idxlo(lm,ilo,ias) i0=ngpq+i j0=ngp+i do io=1,apword(l,is) t1=oalo(io,ilo,ias) do i=1,ngpq od(i,j0)=od(i,j0)+t1*conjg(dapwalmq(i,io,lm)) end do do j=1,ngp od(i0,j)=od(i0,j)+t1*dapwalm(j,io,lm) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dhmlalo.f900000644000000000000000000000013214061636517014664 xustar0030 mtime=1623670095.545101907 30 atime=1623670094.343103023 30 ctime=1623670095.545101907 elk-7.2.42/src/dhmlalo.f900000644002504400250440000000435514061636517016730 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dhmlalo(is,ias,ngp,ngpq,apwalm,apwalmq,dapwalm,dapwalmq,ld,dh) use modmain use modphonon implicit none ! arguments integer, intent(in) :: is,ias,ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: dh(ld,*) ! local variables integer io,ilo integer l1,l2,l3 integer lm1,lm2,lm3 integer i0,j0,i,j complex(8) z1 do ilo=1,nlorb(is) l1=lorbl(ilo,is) do lm1=l1**2+1,(l1+1)**2 i=idxlo(lm1,ilo,ias) i0=ngpq+i j0=ngp+i do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do io=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyyy(lm2,lm3,lm1)*dhloa(lm2,io,l3,ilo,ias) end do end if end do if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then do i=1,ngpq dh(i,j0)=dh(i,j0)+conjg(z1*apwalmq(i,io,lm3)) end do do j=1,ngp dh(i0,j)=dh(i0,j)+z1*apwalm(j,io,lm3) end do end if end do end do end do if (ias.eq.iasph) then do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do io=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*hloa(lm2,io,l3,ilo,ias) end do end if end do if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then do i=1,ngpq dh(i,j0)=dh(i,j0)+conjg(z1*dapwalmq(i,io,lm3)) end do do j=1,ngp dh(i0,j)=dh(i0,j)+z1*dapwalm(j,io,lm3) end do end if end do end do end do end if end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dhmllolo.f900000644000000000000000000000013214061636517015056 xustar0030 mtime=1623670095.547101905 30 atime=1623670094.345103021 30 ctime=1623670095.547101905 elk-7.2.42/src/dhmllolo.f900000644002504400250440000000200114061636517017104 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dhmllolo(is,ias,ngp,ngpq,ld,dh) use modmain use modphonon implicit none ! arguments integer, intent(in) :: is,ias integer, intent(in) :: ngp,ngpq integer, intent(in) :: ld complex(8), intent(inout) :: dh(ld,*) ! local variables integer ilo,jlo,i,j integer l1,l2,l3 integer lm1,lm2,lm3 complex(8) z1 do jlo=1,nlorb(is) l3=lorbl(jlo,is) do lm3=l3**2+1,(l3+1)**2 j=ngp+idxlo(lm3,jlo,ias) do ilo=1,nlorb(is) l1=lorbl(ilo,is) do lm1=l1**2+1,(l1+1)**2 i=ngpq+idxlo(lm1,ilo,ias) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyyy(lm2,lm3,lm1)*dhlolo(lm2,jlo,ilo,ias) end do end if end do dh(i,j)=dh(i,j)+z1 end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/olpaaq.f900000644000000000000000000000013114061636517014520 xustar0030 mtime=1623670095.548101904 29 atime=1623670094.34610302 30 ctime=1623670095.548101904 elk-7.2.42/src/olpaaq.f900000644002504400250440000000151314061636517016556 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine olpaaq(is,ngp,ngpq,apwalm,apwalmq,ld,oq) use modmain implicit none ! arguments integer, intent(in) :: is,ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: oq(*) ! local variables integer io,l,lm,i ! automatic arrays complex(8) a(lmoapw(is),ngpq),b(lmoapw(is),ngp) i=0 do l=0,lmaxapw do lm=l**2+1,(l+1)**2 do io=1,apword(l,is) i=i+1 a(i,1:ngpq)=apwalmq(1:ngpq,io,lm) b(i,1:ngp)=apwalm(1:ngp,io,lm) end do end do end do call zmctm(lmoapw(is),ngpq,ngp,a,b,ld,oq) end subroutine elk-7.2.42/src/PaxHeaders.21776/dolpaa.f900000644000000000000000000000013214061636517014504 xustar0030 mtime=1623670095.550101903 30 atime=1623670094.348103018 30 ctime=1623670095.550101903 elk-7.2.42/src/dolpaa.f900000644002504400250440000000240614061636517016543 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dolpaa(is,ias,ngp,ngpq,apwalm,apwalmq,dapwalm,dapwalmq,ld,od) use modmain use modphonon implicit none ! arguments integer, intent(in) :: is,ias integer, intent(in) :: ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: od(*) ! local variables integer lmo,io,l,lm,i ! automatic arrays complex(8) a(lmoapw(is),ngpq),b(lmoapw(is),ngp) if (ias.ne.iasph) return lmo=lmoapw(is) i=0 do l=0,lmaxapw do lm=l**2+1,(l+1)**2 do io=1,apword(l,is) i=i+1 a(i,1:ngpq)=apwalmq(1:ngpq,io,lm) b(i,1:ngp)=dapwalm(1:ngp,io,lm) end do end do end do call zmctm(lmo,ngpq,ngp,a,b,ld,od) i=0 do l=0,lmaxapw do lm=l**2+1,(l+1)**2 do io=1,apword(l,is) i=i+1 a(i,1:ngpq)=dapwalmq(1:ngpq,io,lm) b(i,1:ngp)=apwalm(1:ngp,io,lm) end do end do end do call zmctm(lmo,ngpq,ngp,a,b,ld,od) end subroutine elk-7.2.42/src/PaxHeaders.21776/dhmlaa.f900000644000000000000000000000013214061636517014472 xustar0030 mtime=1623670095.551101901 30 atime=1623670094.349103017 30 ctime=1623670095.551101901 elk-7.2.42/src/dhmlaa.f900000644002504400250440000000517014061636517016532 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dhmlaa(is,ias,ngp,ngpq,apwalm,apwalmq,dapwalm,dapwalmq,ld,dh) use modmain use modphonon implicit none ! arguments integer, intent(in) :: is,ias integer, intent(in) :: ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: dh(*) ! local variables integer lmo,io,jo,i integer l1,l2,l3 integer lm1,lm2,lm3 real(8) t0 complex(8) z1 ! automatic arrays complex(8) a1(lmoapw(is),ngpq),b1(lmoapw(is),ngp) complex(8) a2(lmoapw(is),ngpq),b2(lmoapw(is),ngp) lmo=lmoapw(is) t0=0.5d0*rmt(is)**2 i=0 do l1=0,lmaxapw do lm1=l1**2+1,(l1+1)**2 do io=1,apword(l1,is) i=i+1 b1(i,:)=0.d0 do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do jo=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyyy(lm2,lm3,lm1)*dhaa(lm2,jo,l3,io,l1,ias) end do end if end do if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then call zaxpy(ngp,z1,apwalm(:,jo,lm3),1,b1(i,1),lmo) end if end do end do end do if (ias.eq.iasph) then b2(i,:)=0.d0 do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do jo=1,apword(l3,is) z1=0.d0 do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*haa(lm2,jo,l3,io,l1,ias) end do end if end do ! kinetic surface contribution if (lm1.eq.lm3) then z1=z1+t0*apwfr(nrmt(is),1,io,l1,ias)*apwdfr(jo,l1,ias) end if if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then call zaxpy(ngp,z1,dapwalm(:,jo,lm3),1,b1(i,1),lmo) call zaxpy(ngp,z1,apwalm(:,jo,lm3),1,b2(i,1),lmo) end if end do end do end do a2(i,1:ngpq)=dapwalmq(1:ngpq,io,lm1) end if a1(i,1:ngpq)=apwalmq(1:ngpq,io,lm1) end do end do end do call zmctm(lmo,ngpq,ngp,a1,b1,ld,dh) if (ias.eq.iasph) then call zmctm(lmo,ngpq,ngp,a2,b2,ld,dh) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlaaq.f900000644000000000000000000000012614061636517014512 xustar0028 mtime=1623670095.5531019 30 atime=1623670094.351103015 28 ctime=1623670095.5531019 elk-7.2.42/src/hmlaaq.f900000644002504400250440000000315614061636517016551 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine hmlaaq(is,ias,ngp,ngpq,apwalm,apwalmq,ld,hq) use modmain implicit none integer, intent(in) :: is,ias,ngp,ngpq complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) integer, intent(in) :: ld complex(8), intent(inout) :: hq(*) ! local variables integer lmo,io,jo,i integer l1,l2,l3 integer lm1,lm2,lm3 real(8) t0 complex(8) z1 ! automatic arrays complex(8) a(lmoapw(is),ngpq),b(lmoapw(is),ngp) lmo=lmoapw(is) t0=0.5d0*rmt(is)**2 i=0 do l1=0,lmaxapw do lm1=l1**2+1,(l1+1)**2 do io=1,apword(l1,is) i=i+1 b(i,:)=0.d0 do l3=0,lmaxapw do lm3=l3**2+1,(l3+1)**2 do jo=1,apword(l3,is) z1=0.d0 ! kinetic and potential contribution do l2=0,lmaxo if (mod(l1+l2+l3,2).eq.0) then do lm2=l2**2+1,(l2+1)**2 z1=z1+gntyry(lm2,lm3,lm1)*haa(lm2,jo,l3,io,l1,ias) end do end if end do ! kinetic surface contribution if (lm1.eq.lm3) then z1=z1+t0*apwfr(nrmt(is),1,io,l1,ias)*apwdfr(jo,l1,ias) end if if (abs(dble(z1))+abs(aimag(z1)).gt.1.d-14) then call zaxpy(ngp,z1,apwalm(:,jo,lm3),1,b(i,1),lmo) end if end do end do end do a(i,1:ngpq)=apwalmq(1:ngpq,io,lm1) end do end do end do call zmctm(lmo,ngpq,ngp,a,b,ld,hq) end subroutine elk-7.2.42/src/PaxHeaders.21776/initeph.f900000644000000000000000000000013214061636517014704 xustar0030 mtime=1623670095.554101899 30 atime=1623670094.353103013 30 ctime=1623670095.554101899 elk-7.2.42/src/initeph.f900000644002504400250440000000627614061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine initeph use modmain use modphonon use modbog implicit none ! local variables integer iq,ik,n,i ! automatic arrays complex(8) u(nstsv,nstsv),v(nstsv,nstsv) complex(8) w(nbph,nbph),x(nbph,nbph),y(nbph) ! allocatable arrays complex(8), allocatable :: dynq(:,:,:),ev(:,:) complex(8), allocatable :: ephmat(:,:,:) ! combined target array for fermionic and bosonic density matrices if (allocated(duvwx)) deallocate(duvwx) n=2*nstsv*nstsv*nkpt+2*nbph*nbph*nqpt allocate(duvwx(n)) !------------------------------! ! electronic variables ! !------------------------------! if (allocated(evaluv)) deallocate(evaluv) allocate(evaluv(nstsv,nkpt)) if (allocated(vnorm)) deallocate(vnorm) allocate(vnorm(nstsv,nkpt)) ! associate the electronic density matrices with target dvv(1:nstsv,1:nstsv,1:nkpt)=>duvwx(1:) i=nstsv*nstsv*nkpt+1 duv(1:nstsv,1:nstsv,1:nkpt)=>duvwx(i:) i=i+nstsv*nstsv*nkpt if (task.eq.270) then ! initialise the density matrices to random numbers dvv(:,:,:)=0.d0 duv(:,:,:)=0.d0 do ik=1,nkpt call rndevsv(1.d-8,dvv(:,:,ik)) call rndevsv(1.d-8,duv(:,:,ik)) end do else do ik=1,nkpt ! get the eigenvalues from file call getevaluv(ik,evaluv(:,ik)) ! get the eigenvectors from file call getevecuv(ik,vkl(:,ik),u,v) ! calculate the density matrices call dmatuv(nstsv,efermi,evalsv(:,ik),u,v,dvv(:,:,ik),duv(:,:,ik)) end do end if !----------------------------! ! phononic variables ! !----------------------------! allocate(dynq(nbph,nbph,nqpt),ev(nbph,nbph)) ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! find the eigenvalues of the dynamical matrices and store in global array do iq=1,nqpt call dynev(dynq(:,:,iq),wphq(:,iq),ev) end do deallocate(dynq,ev) if (allocated(evalwx)) deallocate(evalwx) allocate(evalwx(nbph,nqpt)) ! associate the phononic density matrices with target dxx(1:nbph,1:nbph,1:nqpt)=>duvwx(i:) i=i+nbph*nbph*nqpt dwx(1:nbph,1:nbph,1:nqpt)=>duvwx(i:) if (task.eq.270) then ! zero the density matrices dxx(:,:,:)=0.d0 dwx(:,:,:)=0.d0 else do iq=1,nqpt ! get the eigenvalues from file call getevalwx(iq,evalwx(:,iq)) ! get the eigenvectors from file call getevecwxy(iq,w,x,y) ! calculate the density matrices call dmatwx(nbph,w,x,dxx(:,:,iq),dwx(:,:,iq)) end do end if !-----------------------------------! ! electron-phonon variables ! !-----------------------------------! if (any(task.eq.[270,271])) then ! allocate the electron-phonon matrix elements array if (allocated(ephmkq)) deallocate(ephmkq) allocate(ephmkq(nstsv,nstsv,nbph,nkptnr,nqpt)) ! read the matrix elements from file and store in global array allocate(ephmat(nstsv,nstsv,nbph)) do iq=1,nqpt do ik=1,nkptnr call getephmat(iq,ik,ephmat) ephmkq(:,:,:,ik,iq)=ephmat(:,:,:) end do ! zero the electron-phonon coupling for phonon small phonon frequencies do i=1,nbph if (wphq(i,iq).lt.wphcut) ephmkq(:,:,i,:,iq)=0.d0 end do end do deallocate(ephmat) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/dengyeph.f900000644000000000000000000000013214061636517015047 xustar0030 mtime=1623670095.556101897 30 atime=1623670094.355103012 30 ctime=1623670095.556101897 elk-7.2.42/src/dengyeph.f900000644002504400250440000000134314061636517017105 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine dengyeph use modmain use modphonon use modbog implicit none ! local variables integer ik,iq,i real(8) w ! change in electron energy per unit cell dengye=0.d0 do ik=1,nkpt w=wkpt(ik) do i=1,nstsv dengye=dengye+w*abs((evalsv(i,ik)-efermi)*dble(dvv(i,i,ik))) end do end do dengye=abs(occmax*dengye) ! change in phonon energy per unit cell dengyph=0.d0 do iq=1,nqpt w=wqpt(iq) do i=1,nbph dengyph=dengyph+w*abs(wphq(i,iq)*dble(dxx(i,i,iq))) end do end do ! sum of both dengy=dengye+dengyph end subroutine elk-7.2.42/src/PaxHeaders.21776/gndsteph.f900000644000000000000000000000013214061636517015060 xustar0030 mtime=1623670095.557101896 30 atime=1623670094.356103011 30 ctime=1623670095.557101896 elk-7.2.42/src/gndsteph.f900000644002504400250440000001103414061636517017114 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gndsteph use modmain use modphonon use modbog use modmpi use modomp use modstore implicit none ! local variables integer nmix,nwork real(8) dv ! allocatable arrays real(8), allocatable :: work(:) ! initialise universal variables call init0 call init1 call init2 call readstate call genvsig call gencore call readfermi call linengy call genapwlofr call gensocfr call genevfsv ! precise determination of the Fermi energy swidth_=swidth swidth=1.d-5 call occupy swidth=swidth_ ! initialise electron-phonon variables call initeph ! size of mixing vector for electron and phonon density matrices (complex array) nmix=2*size(duvwx) ! determine the size of the mixer work array nwork=-1 call mixerifc(mixtype,nmix,duvwx,dv,nwork,duvwx) allocate(work(nwork)) ! initialise the mixer iscl=0 call mixerifc(mixtype,nmix,duvwx,dv,nwork,work) ! set the stop signal to .false. tstop=.false. ! set last self-consistent loop flag tlast=.false. ! only the MPI master process should write files if (mp_mpi) then ! open EPH_INFO.OUT file open(60,file='EPH_INFO.OUT',form='FORMATTED') write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') ! open EPHGAP.OUT open(64,file='EPHGAP.OUT',form='FORMATTED') ! open RMSDVS.OUT open(65,file='RMSDVS.OUT',form='FORMATTED') ! open FACE.OUT open(67,file='FACE.OUT',form='FORMATTED') end if if (mp_mpi) write(*,*) ! begin the self-consistent loop do iscl=1,maxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') flush(60) write(*,'("Info(gndsteph): self-consistent loop number : ",I4)') iscl end if if (iscl.ge.maxscl) then if (mp_mpi) then write(60,*) write(60,'("Reached self-consistent loops maximum")') end if tlast=.true. end if ! determine change in electron and phonon energies call dengyeph ! solve the electron and phonon eigenvalue equations call eveqneph ! update the Fermi energy call occupyuv if (mp_mpi) then ! write the electronic eigenvalues to file call writeevaluv ! write the Fermi energy to file call writefermi write(60,*) write(60,'("Energies :")') write(60,'(" Fermi",T30,": ",G22.12)') efermi write(60,'(" electronic change",T30,": ",G22.12)') dengye write(60,'(" phononic change",T30,": ",G22.12)') dengyph write(60,'(" sum of changes",T30,": ",G22.12)') dengy write(60,*) write(60,'("Estimated indirect band gap : ",G18.10)') bandgap(1) write(60,'(" from k-point ",I6," to k-point ",I6)') ikgap(1),ikgap(2) write(60,*) write(60,'("Fermionic anomalous correlation entropy : ",G18.10)') face write(60,*) write(60,'("Electron-phonon scaling factor : ",G18.10)') ephscf(1) ! write estimated indirect band gap write(64,'(G22.12)') bandgap(1) flush(64) ! write the fermionic anomalous correlation entropy write(67,'(G18.10)') face flush(67) end if ! mix the old and new electron and phonon density matrices call mixerifc(mixtype,nmix,duvwx,dv,nwork,work) ! adjust the electron-phonon term scale factor towards 1 ephscf(1)=(1.d0-ephscf(2))*ephscf(1)+ephscf(2) ! exit self-consistent loop if required if (tlast) goto 10 ! check for convergence if (iscl.ge.2) then if (mp_mpi) then write(60,*) write(60,'("RMS change in density matrices (target) : ",G18.10," (",& &G18.10,")")') dv,epspot write(65,'(G18.10)') dv flush(65) if (dv.lt.epspot) then write(60,*) write(60,'("Convergence targets achieved")') tlast=.true. end if end if end if ! check for STOP file call checkstop if (tstop) tlast=.true. ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) ! reset the OpenMP thread variables call omp_reset end do 10 continue if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') ! close the EPH_INFO.OUT file close(60) ! close the EPHGAP.OUT file close(64) ! close the RMSDVS.OUT file close(65) ! close the FACE.OUT file close(67) end if deallocate(work) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqneph.f900000644000000000000000000000013214061636517015057 xustar0030 mtime=1623670095.559101894 30 atime=1623670094.358103009 30 ctime=1623670095.559101894 elk-7.2.42/src/eveqneph.f900000644002504400250440000000721314061636517017117 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine eveqneph use modmain use modphonon use modbog use modmpi use modomp implicit none ! local variables integer iq,ik,ist integer n,lp,nthd ! automatic arrays real(8) xnorm(nbph) ! allocatable arrays complex(8), allocatable :: dw(:,:,:),ex(:,:,:),fy(:,:) complex(8), allocatable :: au(:,:,:),bv(:,:,:) !------------------------------------! ! phonon eigenvalue equation ! !------------------------------------! allocate(dw(nbph,nbph,nqpt),ex(nbph,nbph,nqpt),fy(nbph,nqpt)) ! parallel loop over reduced q-point set call holdthd(nqpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(xnorm) & !$OMP NUM_THREADS(nthd) !$OMP DO do iq=1,nqpt ! distribute among MPI processes if (mod(iq-1,np_mpi).ne.lp_mpi) cycle ! generate the matrices D and E call hmlephde(iq,dw(:,:,iq),ex(:,:,iq)) ! zero the vector F fy(:,iq)=0.d0 ! solve the phononic Bogoliubov equation call eveqnwxy(nbph,dw(:,:,iq),ex(:,:,iq),fy(:,iq),evalwx(:,iq),xnorm) ! write the eigenvalues and eigenvectors to file if (tlast) then call putevalwx(iq,evalwx(:,iq)) call putevecwxy(iq,dw(:,:,iq),ex(:,:,iq),fy(:,iq)) call putxnorm(iq,xnorm) end if end do !$OMP END DO !$OMP DO do iq=1,nqpt ! distribute among MPI processes if (mod(iq-1,np_mpi).ne.lp_mpi) cycle ! update the density matrices call dmatwx(nbph,dw(:,:,iq),ex(:,:,iq),dxx(:,:,iq),dwx(:,:,iq)) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) deallocate(dw,ex,fy) ! broadcast arrays to every MPI process if (np_mpi.gt.1) then n=nbph*nbph do iq=1,nqpt lp=mod(iq-1,np_mpi) call mpi_bcast(evalwx(:,iq),nbph,mpi_double_precision,lp,mpicom,ierror) call mpi_bcast(dxx(:,:,iq),n,mpi_double_complex,lp,mpicom,ierror) call mpi_bcast(dwx(:,:,iq),n,mpi_double_complex,lp,mpicom,ierror) end do end if !--------------------------------------! ! electron eigenvalue equation ! !--------------------------------------! allocate(au(nstsv,nstsv,nkpt),bv(nstsv,nstsv,nkpt)) ! parallel loop over reduced k-point set call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(ist) & !$OMP NUM_THREADS(nthd) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! generate the matrix A call hmlepha(ik,au(:,:,ik)) ! generate the matrix B call hmlephb(ik,bv(:,:,ik)) ! solve the electronic Bogoliubov equation call eveqnuv(nstsv,au(:,:,ik),bv(:,:,ik),evaluv(:,ik),vnorm(:,ik)) ! negate eigenvalues corresponding to V-norm > 1/2 do ist=1,nstsv if (vnorm(ist,ik).gt.0.5d0) evaluv(ist,ik)=-evaluv(ist,ik) end do ! write the eigenvalues and eigenvectors to file if (tlast) then call putevaluv(ik,evaluv(:,ik)) call putevecuv(ik,au(:,:,ik),bv(:,:,ik)) call putvnorm(ik,vnorm(:,ik)) end if end do !$OMP END DO !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! update the density matrices call dmatuv(nstsv,efermi,evalsv(:,ik),au(:,:,ik),bv(:,:,ik),dvv(:,:,ik), & duv(:,:,ik)) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) deallocate(au,bv) ! broadcast arrays to every MPI process if (np_mpi.gt.1) then n=nstsv*nstsv do ik=1,nkpt lp=mod(ik-1,np_mpi) call mpi_bcast(evaluv(:,ik),nstsv,mpi_double_precision,lp,mpicom,ierror) call mpi_bcast(vnorm(:,ik),nstsv,mpi_double_precision,lp,mpicom,ierror) call mpi_bcast(dvv(:,:,ik),n,mpi_double_complex,lp,mpicom,ierror) call mpi_bcast(duv(:,:,ik),n,mpi_double_complex,lp,mpicom,ierror) end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlepha.f900000644000000000000000000000013214061636517014662 xustar0030 mtime=1623670095.560101893 30 atime=1623670094.359103008 30 ctime=1623670095.560101893 elk-7.2.42/src/hmlepha.f900000644002504400250440000000371714061636517016727 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine hmlepha(ik,a) use modmain use modphonon use modbog use modomp implicit none ! arguments integer, intent(in) :: ik complex(8), intent(out) :: a(nstsv,nstsv) ! local variables integer iq,jq,ikq,isym,nthd integer i1,i2,j1,j2,l1,l2 real(8) vl(3),t0,t1 complex(8) z1 ! automatic arrays complex(4) ephmat(nstsv,nstsv,nbph) complex(8) x(nbph,nstsv),y(nstsv,nbph) ! prefactor t0=-2.d0*wqptnr*ephscf(1)**2/dengy a(:,:)=0.d0 ! parallel loop over non-reduced q-points call holdthd(nqptnr,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ephmat,x,y,jq,vl,isym,ikq) & !$OMP PRIVATE(i1,i2,j1,j2,l1,l2,z1,t1) & !$OMP REDUCTION(+:a) & !$OMP NUM_THREADS(nthd) do iq=1,nqptnr ! equivalent reduced q-point jq=ivqiq(ivq(1,iq),ivq(2,iq),ivq(3,iq)) ! k+q-vector in lattice coordinates vl(:)=vkl(:,ik)+vql(:,iq) ! index to reduced k+q-vector call findkpt(vl,isym,ikq) ! read in the electron-phonon matrix elements from file call getephmkq(iq,ik,ephmat) ! perform the contraction do i2=1,nstsv do j2=1,nstsv do l2=1,nbph z1=0.d0 do j1=1,nstsv z1=z1+ephmat(j1,i2,l2)*dvv(j1,j2,ikq) end do x(l2,j2)=z1 end do end do do l1=1,nbph do j2=1,nstsv z1=0.d0 do l2=1,nbph t1=dble(dxx(l1,l2,jq))+dble(dwx(l2,l1,jq)) z1=z1+t1*x(l2,j2) end do y(j2,l1)=z1 end do end do do i1=1,i2 z1=0.d0 do l1=1,nbph do j2=1,nstsv z1=z1+conjg(ephmat(j2,i1,l1))*y(j2,l1) end do end do a(i1,i2)=a(i1,i2)+t0*z1 end do end do end do !$OMP END PARALLEL DO call freethd(nthd) 10 continue ! add the second-variational eigenvalues minus the Fermi energy do i1=1,nstsv a(i1,i1)=a(i1,i1)+evalsv(i1,ik)-efermi end do end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlephb.f900000644000000000000000000000013214061636517014663 xustar0030 mtime=1623670095.562101891 30 atime=1623670094.361103006 30 ctime=1623670095.562101891 elk-7.2.42/src/hmlephb.f900000644002504400250440000000361114061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine hmlephb(ik,b) use modmain use modphonon use modbog use modomp implicit none ! arguments integer, intent(in) :: ik complex(8), intent(out) :: b(nstsv,nstsv) ! local variables integer iq,jq,ikq,isym,nthd integer i1,i2,j1,j2,l1,l2 real(8) vl(3),t0,t1 complex(8) z1 ! automatic arrays complex(4) ephmat(nstsv,nstsv,nbph) complex(8) x(nbph,nstsv),y(nstsv,nbph) ! prefactor t0=-2.d0*wqptnr*ephscf(1)**2/dengy b(:,:)=0.d0 if (.not.anomalous) return ! parallel loop over non-reduced q-points call holdthd(nqptnr,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ephmat,x,y,jq,vl,isym,ikq) & !$OMP PRIVATE(i1,i2,j1,j2,l1,l2,z1,t1) & !$OMP REDUCTION(+:b) & !$OMP NUM_THREADS(nthd) do iq=1,nqptnr ! equivalent reduced q-point jq=ivqiq(ivq(1,iq),ivq(2,iq),ivq(3,iq)) ! k+q-vector in lattice coordinates vl(:)=vkl(:,ik)+vql(:,iq) ! index to reduced k+q-vector call findkpt(vl,isym,ikq) ! read in the electron-phonon matrix elements from file call getephmkq(iq,ik,ephmat) ! perform the contraction do i2=1,nstsv do j1=1,nstsv do l2=1,nbph z1=0.d0 do j2=1,nstsv z1=z1+ephmat(j2,i2,l2)*duv(j1,j2,ikq) end do x(l2,j1)=z1 end do end do do l1=1,nbph do j1=1,nstsv z1=0.d0 do l2=1,nbph t1=dble(dxx(l1,l2,jq))+dble(dwx(l2,l1,jq)) z1=z1+t1*x(l2,j1) end do y(j1,l1)=z1 end do end do do i1=1,nstsv if (bdiag.and.(i1.ne.i2)) cycle z1=0.d0 do l1=1,nbph do j1=1,nstsv z1=z1+conjg(ephmat(j1,i1,l1))*y(j1,l1) end do end do b(i1,i2)=b(i1,i2)+t0*z1 end do end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/hmlephde.f900000644000000000000000000000013014061636517015030 xustar0029 mtime=1623670095.56310189 30 atime=1623670094.363103004 29 ctime=1623670095.56310189 elk-7.2.42/src/hmlephde.f900000644002504400250440000000544314061636517017075 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine hmlephde(iq,d,e) use modmain use modphonon use modbog use modomp implicit none ! arguments integer, intent(in) :: iq complex(8), intent(out) :: d(nbph,nbph),e(nbph,nbph) ! local variables integer ik,jk,ikq,isym,nthd integer i1,i2,j1,j2,l1,l2 real(8) vl(3),t0 complex(8) z1 ! automatic arrays complex(4) ephmat(nstsv,nstsv,nbph) complex(8) x(nstsv,nstsv),y(nstsv,nstsv) ! prefactor t0=-occmax*wkptnr*ephscf(1)**2/dengy e(:,:)=0.d0 ! parallel loop over non-reduced k-points call holdthd(nkptnr,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ephmat,x,y,jk,vl,isym,ikq) & !$OMP PRIVATE(l1,l2,j1,j2,i1,i2,z1) & !$OMP REDUCTION(+:e) & !$OMP NUM_THREADS(nthd) do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! k+q-vector in lattice coordinates vl(:)=vkl(:,ik)+vql(:,iq) ! index to reduced k+q-vector call findkpt(vl,isym,ikq) ! read in the electron-phonon matrix elements from file call getephmkq(iq,ik,ephmat) ! perform the contraction if (anomalous) then do l2=1,nbph do j1=1,nstsv do i2=1,nstsv z1=0.d0 do j2=1,nstsv z1=z1+ephmat(j2,i2,l2)*duv(j1,j2,ikq) end do x(i2,j1)=z1 end do end do do i1=1,nstsv do j1=1,nstsv z1=0.d0 do i2=1,nstsv z1=z1-conjg(duv(i1,i2,jk))*x(i2,j1) end do y(j1,i1)=z1 end do end do do l1=1,l2 z1=0.d0 do i1=1,nstsv do j1=1,nstsv z1=z1+conjg(ephmat(j1,i1,l1))*y(j1,i1) end do end do e(l1,l2)=e(l1,l2)+t0*z1 end do end do else do l2=1,nbph do j2=1,nstsv do i2=1,nstsv z1=0.d0 do j1=1,nstsv z1=z1+ephmat(j1,i2,l2)*dvv(j1,j2,ikq) end do x(i2,j2)=z1 end do end do do j2=1,nstsv do i1=1,nstsv z1=0.d0 do i2=1,nstsv z1=z1+dvv(i1,i2,jk)*x(i2,j2) end do y(i1,j2)=z1 end do end do do l1=1,l2 z1=0.d0 do j2=1,nstsv do i1=1,nstsv z1=z1+conjg(ephmat(j2,i1,l1))*y(i1,j2) end do end do e(l1,l2)=e(l1,l2)+t0*z1 end do end do end if end do !$OMP END PARALLEL DO call freethd(nthd) ! set the lower triangular part of the Hermitian matrix E do l1=1,nbph do l2=1,l1-1 e(l1,l2)=conjg(e(l2,l1)) end do end do ! determine the matrix D = D0 or D = D0 + E if (tephde) then d(:,:)=e(:,:) else d(:,:)=0.d0 end if do l1=1,nbph d(l1,l1)=d(l1,l1)+wphq(l1,iq) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/getephmkq.f900000644000000000000000000000013214061636517015231 xustar0030 mtime=1623670095.565101889 30 atime=1623670094.364103003 30 ctime=1623670095.565101889 elk-7.2.42/src/getephmkq.f900000644002504400250440000000135314061636517017270 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getephmkq(iqp,ikp,ephmat) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iqp,ikp complex(4), intent(out) :: ephmat(nstsv,nstsv,nbph) ! local variables integer isym,lspl,iq,ik,iv(3) if (iqp.le.nqpt) then ! q-point is in the reduced set iq=iqp ik=ikp else ! q-point is not in the reduced set call findqpt(vql(:,iqp),isym,iq) lspl=lsplsymc(isym) call i3mtv(symlat(:,:,lspl),ivk(:,ikp),iv) iv(:)=modulo(iv(:),ngridk(:)) ik=ivkiknr(iv(1),iv(2),iv(3)) end if ephmat(:,:,:)=ephmkq(:,:,:,ik,iq) end subroutine elk-7.2.42/src/PaxHeaders.21776/ephdos.f900000644000000000000000000000013214061636517014526 xustar0030 mtime=1623670095.566101888 30 atime=1623670094.366103001 30 ctime=1623670095.566101888 elk-7.2.42/src/ephdos.f900000644002504400250440000000443414061636517016570 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine ephdos use modmain use modphonon use modbog implicit none ! local variables integer nsk(3),ik,ist,iw real(8) dw,vn,t1 ! allocatable arrays integer, allocatable :: idx(:) real(8), allocatable :: w(:),f(:,:),g(:) ! initialise universal variables call init0 call init1 call init2 call initeph allocate(idx(nstsv),w(nstsv)) do ik=1,nkpt ! get the eigenvalues from file call getevaluv(ik,evaluv(:,ik)) ! arrange in ascending order w(:)=evaluv(:,ik) call sortidx(nstsv,w,idx) evaluv(:,ik)=w(idx(:)) ! get the V-norm from file and put in the same order as the eigenvalues call getvnorm(ik,vnorm(:,ik)) w(:)=vnorm(:,ik) vnorm(:,ik)=w(idx(:)) end do deallocate(idx,w) ! generate the partial and total DOS and write to file allocate(w(nwplot),f(nstsv,nkptnr),g(nwplot)) ! generate frequency grid dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot w(iw)=dw*dble(iw-1)+wplot(1) end do ! number of subdivisions used for interpolation in the Brillouin zone nsk(:)=max(ngrkf/ngridk(:),1) ! set the weight array f(:,:)=occmax ! integrate over the Brillouin zone call brzint(nswplot,ngridk,nsk,ivkik,nwplot,wplot,nstsv,nstsv,evaluv,f,g) ! output the electronic DOS to file open(50,file='EPHDOS.OUT',form='FORMATTED',action='WRITE') do iw=1,nwplot write(50,'(2G18.10)') w(iw),g(iw) end do close(50) ! output the FACE vs energy histogram to file open(50,file='FACEEH.OUT',form='FORMATTED',action='WRITE') do ik=1,nkpt do ist=1,nstsv vn=vnorm(ist,ik) if ((vn.gt.0.d0).and.(vn.lt.1.d0)) then t1=-(vn*log(vn)+(1.d0-vn)*log(1.d0-vn)) else t1=0.d0 end if if (t1.lt.1.d-4) cycle write(50,'(2G18.10)') evaluv(ist,ik),t1 end do end do close(50) write(*,*) write(*,'("Info(ephdos):")') write(*,'(" Electronic density of states for the electron-phonon system")') write(*,'(" written to EPHDOS.OUT")') write(*,*) write(*,'(" Fermionic anomalous correlation entropy vs energy histogram")') write(*,'(" written to FACEEH.OUT")') write(*,*) write(*,'(" Fermi energy is at zero in plots")') write(*,*) write(*,'(" DOS units are states/Hartree/unit cell")') deallocate(w,f,g) end subroutine elk-7.2.42/src/PaxHeaders.21776/gradrhomt.f900000644000000000000000000000012714061636517015237 xustar0030 mtime=1623670095.568101886 27 atime=1623670094.368103 30 ctime=1623670095.568101886 elk-7.2.42/src/gradrhomt.f900000644002504400250440000000137114061636517017272 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gradrhomt use modmain use modphonon implicit none ! local variables integer nr,nri,np ! automatic arrays complex(8) zfmt(npmtmax),gzfmt(npmtmax,3) ! add gradient contribution from rigid shift of muffin-tin nr=nrmt(isph) nri=nrmti(isph) np=npmt(isph) ! convert the density to complex spherical harmonic expansion call rtozfmt(nr,nri,rhomt(:,iasph),zfmt) ! compute the gradient call gradzfmt(nr,nri,rlmt(:,-1,isph),wcrmt(:,:,isph),zfmt,npmtmax,gzfmt) ! subtract from the density derivative drhomt(1:np,iasph)=drhomt(1:np,iasph)-gzfmt(1:np,ipph) end subroutine elk-7.2.42/src/PaxHeaders.21776/gendcfun.f900000644000000000000000000000013214061636517015035 xustar0030 mtime=1623670095.569101885 30 atime=1623670094.369102999 30 ctime=1623670095.569101885 elk-7.2.42/src/gendcfun.f900000644002504400250440000000114414061636517017072 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendcfun use modmain use modphonon implicit none ! local variables integer ig real(8) v1,v2,v3,t1,t2 complex(8) z1 v1=atposc(1,iaph,isph) v2=atposc(2,iaph,isph) v3=atposc(3,iaph,isph) do ig=1,ngtot t1=vgqc(1,ig)*v1+vgqc(2,ig)*v2+vgqc(3,ig)*v3 t2=ffacgq(ig,isph)*vgqc(ipph,ig) z1=t2*cmplx(sin(t1),cos(t1),8) dcfunig(ig)=z1 dcfunir(igfft(ig))=z1 end do call zfftifc(3,ngridg,1,dcfunir) end subroutine elk-7.2.42/src/PaxHeaders.21776/gendvsig.f900000644000000000000000000000013214061636517015052 xustar0030 mtime=1623670095.571101883 30 atime=1623670094.371102997 30 ctime=1623670095.571101883 elk-7.2.42/src/gendvsig.f900000644002504400250440000000102414061636517017104 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendvsig use modmain use modphonon implicit none ! allocatable arrays complex(8), allocatable :: zfft(:) allocate(zfft(ngtot)) zfft(:)=dvsir(:)*cfunir(:)+vsir(:)*dcfunir(:) ! Fourier transform to G+q-space call zfftifc(3,ngridg,-1,zfft) ! store in global array dvsig(1:ngvec)=zfft(igfft(1:ngvec)) deallocate(zfft) end subroutine elk-7.2.42/src/PaxHeaders.21776/drhomagsh.f900000644000000000000000000000013214061636517015220 xustar0030 mtime=1623670095.572101882 30 atime=1623670094.373102995 30 ctime=1623670095.572101882 elk-7.2.42/src/drhomagsh.f900000644002504400250440000000210614061636517017254 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine drhomagsh use modmain use modphonon use modomp implicit none ! local variables integer idm,is,ias,nthd integer nrc,nrci,npc ! automatic arrays complex(8) zfmt(npcmtmax) call holdthd(natmtot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,is,nrc,nrci,npc,idm) & !$OMP NUM_THREADS(nthd) !$OMP DO do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! convert the density derivative to spherical harmonics zfmt(1:npc)=drhomt(1:npc,ias) call zfsht(nrc,nrci,zfmt,drhomt(:,ias)) end do !$OMP END DO NOWAIT do idm=1,ndmag !$OMP DO do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! convert the magnetisation derivative to spherical harmonics zfmt(1:npc)=dmagmt(1:npc,ias,idm) call zfsht(nrc,nrci,zfmt,dmagmt(:,ias,idm)) end do !$OMP END DO end do !$OMP END PARALLEL call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/doccupy.f900000644000000000000000000000013214061636517014712 xustar0030 mtime=1623670095.573101881 30 atime=1623670094.374102994 30 ctime=1623670095.573101881 elk-7.2.42/src/doccupy.f900000644002504400250440000000213214061636517016745 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine doccupy use modmain use modphonon implicit none ! local variables integer, parameter :: maxit=1000 integer ik,jk,ist,it real(8) de0,de1,de real(8) dchg,x,dx,t1 ! external functions real(8), external :: sdelta if (.not.tphq0) return de0=1.d6 de1=-1.d6 do ik=1,nkptnr do ist=1,nstsv de=devalsv(ist,ik) if (de.lt.de0) de0=de if (de.gt.de1) de1=de end do end do t1=1.d0/swidth do it=1,maxit defermi=0.5d0*(de0+de1) dchg=0.d0 do ik=1,nkptnr jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) do ist=1,nstsv x=(efermi-evalsv(ist,jk))*t1 dx=(defermi-devalsv(ist,ik))*t1 doccsv(ist,ik)=occmax*sdelta(stype,x)*dx dchg=dchg+wkptnr*doccsv(ist,ik) end do end do if (dchg.lt.0.d0) then de0=defermi else de1=defermi end if if ((de1-de0).lt.1.d-12) return end do write(*,*) write(*,'("Warning(doccupy): could not find Fermi energy derivative")') end subroutine elk-7.2.42/src/PaxHeaders.21776/dhmlrad.f900000644000000000000000000000013214061636517014657 xustar0030 mtime=1623670095.575101879 30 atime=1623670094.376102992 30 ctime=1623670095.575101879 elk-7.2.42/src/dhmlrad.f900000644002504400250440000000772014061636517016722 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dhmlrad use modmain use modphonon implicit none ! local variables integer is,ias integer nr,nri,iro integer ir,npi,i integer l1,l2,l3,m2,lm2 integer io,jo,ilo,jlo real(8) t1 complex(8) zsm ! begin loops over atoms and species do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) iro=nri+1 npi=npmti(is) !---------------------------! ! APW-APW integrals ! !---------------------------! do l1=0,lmaxapw do io=1,apword(l1,is) do l3=0,lmaxapw do jo=1,apword(l3,is) lm2=0 do l2=0,lmaxi do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=lm2 do ir=1,nri t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxi end do do ir=iro,nr t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhaa(lm2,jo,l3,io,l1,ias)=zsm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=npi+lm2 do ir=iro,nr t1=apwfr(ir,1,io,l1,ias)*apwfr(ir,1,jo,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhaa(lm2,jo,l3,io,l1,ias)=zsm end do end do end do end do end do end do !-------------------------------------! ! local-orbital-APW integrals ! !-------------------------------------! do ilo=1,nlorb(is) l1=lorbl(ilo,is) do l3=0,lmaxapw do io=1,apword(l3,is) lm2=0 do l2=0,lmaxi do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=lm2 do ir=1,nri t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxi end do do ir=iro,nr t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhloa(lm2,io,l3,ilo,ias)=zsm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=npi+lm2 do ir=iro,nr t1=lofr(ir,1,ilo,ias)*apwfr(ir,1,io,l3,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhloa(lm2,io,l3,ilo,ias)=zsm end do end do end do end do end do !-----------------------------------------------! ! local-orbital-local-orbital integrals ! !-----------------------------------------------! do ilo=1,nlorb(is) l1=lorbl(ilo,is) do jlo=1,nlorb(is) l3=lorbl(jlo,is) lm2=0 do l2=0,lmaxi do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=lm2 do ir=1,nri t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxi end do do ir=iro,nr t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhlolo(lm2,jlo,ilo,ias)=zsm end do end do do l2=lmaxi+1,lmaxo do m2=-l2,l2 lm2=lm2+1 zsm=0.d0 i=npi+lm2 do ir=iro,nr t1=lofr(ir,1,ilo,ias)*lofr(ir,1,jlo,ias)*wrmt(ir,is) zsm=zsm+t1*dvsmt(i,ias) i=i+lmmaxo end do dhlolo(lm2,jlo,ilo,ias)=zsm end do end do end do end do ! end loops over atoms and species end do end subroutine elk-7.2.42/src/PaxHeaders.21776/gendwfsv.f900000644000000000000000000000013114061636517015066 xustar0030 mtime=1623670095.576101878 29 atime=1623670094.37810299 30 ctime=1623670095.576101878 elk-7.2.42/src/gendwfsv.f900000644002504400250440000001255614061636517017135 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendwfsv(tsh,tgp,nst,idx,ngp,ngpq,igpqig,apwalmq,dapwalm,evecfv, & devecfv,evecsv,devecsv,dwfmt,ld,dwfir) use modmain implicit none ! arguments logical, intent(in) :: tsh,tgp integer, intent(in) :: nst,idx(nst) integer, intent(in) :: ngp(nspnfv),ngpq(nspnfv) integer, intent(in) :: igpqig(ngkmax,nspnfv) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw,nspnfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv,nspnfv) complex(8), intent(in) :: devecfv(nmatmax,nstfv,nspnfv) complex(8), intent(in) :: evecsv(nstsv,nstsv),devecsv(nstsv,nstsv) complex(8), intent(out) :: dwfmt(npcmtmax,natmtot,nspinor,nst) integer, intent(in) :: ld complex(8), intent(out) :: dwfir(ld,nspinor,nst) ! local variables integer ist,ispn,jspn integer is,ia,ias,nrc,nrci integer npc,igp,ifg,i,j,k real(8) t1 complex(8) z1 ! automatic arrays logical done(nstfv),ddone(nstfv) ! allocatable arrays complex(8), allocatable :: wfmt1(:,:),wfmt2(:),dwfmt1(:,:) !---------------------------------------------! ! muffin-tin wavefunction derivatives ! !---------------------------------------------! if (tevecsv) then allocate(wfmt1(npcmtmax,nstfv),dwfmt1(npcmtmax,nstfv)) end if if (.not.tsh) allocate(wfmt2(npcmtmax)) do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) do ia=1,natoms(is) ias=idxas(ia,is) done(:)=.false. do j=1,nst k=idx(j) if (tevecsv) then i=0 do ispn=1,nspinor jspn=jspnfv(ispn) dwfmt(1:npc,ias,ispn,j)=0.d0 do ist=1,nstfv i=i+1 z1=devecsv(i,k) !***** check if tq0 is needed here if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then if (.not.done(ist)) then if (tsh) then call wavefmt(lradstp,ias,ngp(jspn),apwalmq(:,:,:,ias,jspn), & evecfv(:,ist,jspn),wfmt1(:,ist)) else call wavefmt(lradstp,ias,ngp(jspn),apwalmq(:,:,:,ias,jspn), & evecfv(:,ist,jspn),wfmt2) call zbsht(nrc,nrci,wfmt2,wfmt1(:,ist)) end if done(ist)=.true. end if call zaxpy(npc,z1,wfmt1(:,ist),1,dwfmt(:,ias,ispn,j),1) end if z1=evecsv(i,k) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then if (.not.ddone(ist)) then if (tsh) then call dwavefmt(lradstp,ias,ngp(jspn),ngpq(jspn), & apwalmq(:,:,:,ias,jspn),dapwalm(:,:,:,jspn), & evecfv(:,ist,jspn),devecfv(:,ist,jspn),dwfmt1(:,ist)) else call dwavefmt(lradstp,ias,ngp(jspn),ngpq(jspn), & apwalmq(:,:,:,ias,jspn),dapwalm(:,:,:,jspn), & evecfv(:,ist,jspn),devecfv(:,ist,jspn),wfmt2) call zbsht(nrc,nrci,wfmt2,dwfmt1(:,ist)) end if ddone(ist)=.true. end if call zaxpy(npc,z1,dwfmt1(:,ist),1,dwfmt(:,ias,ispn,j),1) end if end do end do else if (tsh) then call dwavefmt(lradstp,ias,ngp,ngpq,apwalmq(:,:,:,ias,1),dapwalm, & evecfv(:,k,1),devecfv(:,k,1),dwfmt(:,ias,1,j)) else call dwavefmt(lradstp,ias,ngp,ngpq,apwalmq(:,:,:,ias,1),dapwalm, & evecfv(:,k,1),devecfv(:,k,1),wfmt2) call zbsht(nrc,nrci,wfmt2,dwfmt(:,ias,1,j)) end if end if end do end do end do if (tevecsv) deallocate(wfmt1,dwfmt1) if (.not.tsh) deallocate(wfmt2) !-----------------------------------------------! ! interstitial wavefunction derivatives ! !-----------------------------------------------! t1=1.d0/sqrt(omega) do j=1,nst k=idx(j) dwfir(:,:,j)=0.d0 if (tevecsv) then i=0 do ispn=1,nspinor jspn=jspnfv(ispn) do ist=1,nstfv i=i+1 z1=devecsv(i,k) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then if (tgp) then do igp=1,ngp(jspn) dwfir(igp,ispn,j)=dwfir(igp,ispn,j)+z1*evecfv(igp,ist,jspn) end do else z1=t1*z1 do igp=1,ngp(jspn) ifg=igfft(igpqig(igp,jspn)) dwfir(ifg,ispn,j)=dwfir(ifg,ispn,j)+z1*evecfv(igp,ist,jspn) end do end if end if z1=evecsv(i,k) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then if (tgp) then do igp=1,ngpq(jspn) dwfir(igp,ispn,j)=dwfir(igp,ispn,j)+z1*devecfv(igp,ist,jspn) end do else z1=t1*z1 do igp=1,ngpq(jspn) ifg=igfft(igpqig(igp,jspn)) dwfir(ifg,ispn,j)=dwfir(ifg,ispn,j)+z1*devecfv(igp,ist,jspn) end do end if end if end do end do else if (tgp) then do igp=1,ngpq(1) dwfir(igp,1,j)=devecfv(igp,k,1) end do else do igp=1,ngpq(1) ifg=igfft(igpqig(igp,1)) dwfir(ifg,1,j)=t1*devecfv(igp,k,1) end do end if end if if (.not.tgp) then do ispn=1,nspinor call zfftifc(3,ngridg,1,dwfir(:,ispn,j)) end do end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dwavefmt.f900000644000000000000000000000013214061636517015061 xustar0030 mtime=1623670095.578101876 30 atime=1623670094.379102989 30 ctime=1623670095.578101876 elk-7.2.42/src/dwavefmt.f900000644002504400250440000000504114061636517017116 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dwavefmt(lrstp,ias,ngp,ngpq,apwalmq,dapwalm,evecfv,devecfv,dwfmt) use modmain use modphonon implicit none ! arguments integer, intent(in) :: lrstp,ias,ngp,ngpq complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: evecfv(nmatmax),devecfv(nmatmax) real(8), intent(out) :: dwfmt(2,*) ! local variables integer is,ldi,ldo,io,ilo integer nrc,nrci,nrco,iro integer l,lm,npc,npci,i complex(8) z1 ! external functions complex(8), external :: zdotu is=idxis(ias) ldi=2*lmmaxi ldo=2*lmmaxo iro=nrmti(is)+lrstp if (lrstp.eq.1) then nrc=nrmt(is) nrci=nrmti(is) npc=npmt(is) npci=npmti(is) else nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) npci=npcmti(is) end if nrco=nrc-nrci ! zero the wavefunction derivative dwfmt(:,1:npc)=0.d0 !-----------------------! ! APW functions ! !-----------------------! do l=0,lmaxo do lm=l**2+1,(l+1)**2 i=npci+lm do io=1,apword(l,is) z1=zdotu(ngpq,devecfv,1,apwalmq(:,io,lm),1) if (ias.eq.iasph) then z1=z1+zdotu(ngp,evecfv,1,dapwalm(:,io,lm),1) end if if (abs(dble(z1)).gt.1.d-14) then if (l.le.lmaxi) then call daxpy(nrci,dble(z1),apwfr(1,1,io,l,ias),lrstp,dwfmt(1,lm),ldi) end if call daxpy(nrco,dble(z1),apwfr(iro,1,io,l,ias),lrstp,dwfmt(1,i),ldo) end if if (abs(aimag(z1)).gt.1.d-14) then if (l.le.lmaxi) then call daxpy(nrci,aimag(z1),apwfr(1,1,io,l,ias),lrstp,dwfmt(2,lm),ldi) end if call daxpy(nrco,aimag(z1),apwfr(iro,1,io,l,ias),lrstp,dwfmt(2,i),ldo) end if end do end do end do !---------------------------------! ! local-orbital functions ! !---------------------------------! do ilo=1,nlorb(is) l=lorbl(ilo,is) do lm=l**2+1,(l+1)**2 i=npci+lm z1=devecfv(ngpq+idxlo(lm,ilo,ias)) if (abs(dble(z1)).gt.1.d-14) then if (l.le.lmaxi) then call daxpy(nrci,dble(z1),lofr(1,1,ilo,ias),lrstp,dwfmt(1,lm),ldi) end if call daxpy(nrco,dble(z1),lofr(iro,1,ilo,ias),lrstp,dwfmt(1,i),ldo) end if if (abs(aimag(z1)).gt.1.d-14) then if (l.le.lmaxi) then call daxpy(nrci,aimag(z1),lofr(1,1,ilo,ias),lrstp,dwfmt(2,lm),ldi) end if call daxpy(nrco,aimag(z1),lofr(iro,1,ilo,ias),lrstp,dwfmt(2,i),ldo) end if end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/gengqvec.f900000644000000000000000000000013214061636517015043 xustar0030 mtime=1623670095.579101876 30 atime=1623670094.381102988 30 ctime=1623670095.579101876 elk-7.2.42/src/gengqvec.f900000644002504400250440000000161714061636517017105 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gengqvec(iq) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq ! local variables integer is,ig do ig=1,ngtot ! G+q-vector in Cartesian coordinates vgqc(1:3,ig)=vgc(1:3,ig)+vqc(1:3,iq) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) end do ! spherical harmonics for G+q-vectors do ig=1,ngvec call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! compute the spherical Bessel functions j_l(|G+q|R_mt) call genjlgprmt(lnpsd,ngvec,gqc,ngvec,jlgqrmt) ! structure factors for G+q call gensfacgp(ngvec,vgqc,ngvec,sfacgq) ! generate the smooth step function form factors for G+q do is=1,nspecies call genffacgp(is,gqc,ffacgq(:,is)) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dmatch.f900000644000000000000000000000013214061636517014504 xustar0030 mtime=1623670095.581101874 30 atime=1623670094.396102974 30 ctime=1623670095.581101874 elk-7.2.42/src/dmatch.f900000644002504400250440000000152214061636517016541 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine dmatch(ias,ip,ngp,vgpc,apwalm,dapwalm) use modmain implicit none ! arguments integer, intent(in) :: ias,ip,ngp real(8), intent(in) :: vgpc(3,ngkmax) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) complex(8), intent(out) :: dapwalm(ngkmax,apwordmax,lmmaxapw) ! local variables integer is,l,lm,io,igp complex(8) z1 ! take derivative with respect to atomic displacement is=idxis(ias) do l=0,lmaxapw do lm=l**2+1,(l+1)**2 do io=1,apword(l,is) do igp=1,ngp z1=apwalm(igp,io,lm,ias) dapwalm(igp,io,lm)=vgpc(ip,igp)*cmplx(-aimag(z1),dble(z1),8) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/writedvs.f900000644000000000000000000000013214061636517015113 xustar0030 mtime=1623670095.582101873 30 atime=1623670094.398102972 30 ctime=1623670095.582101873 elk-7.2.42/src/writedvs.f900000644002504400250440000000147214061636517017154 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writedvs(fext) use modmain use modphonon implicit none ! arguments character(*), intent(in) :: fext ! local variables integer is,ias ! allocatable arrays complex(8), allocatable :: zfmt(:,:,:) allocate(zfmt(lmmaxo,nrmtmax,natmtot)) open(150,file='DVS'//trim(fext),form='UNFORMATTED',action='WRITE') write(150) version write(150) nspecies write(150) lmmaxo do is=1,nspecies write(150) natoms(is) write(150) nrmt(is) end do write(150) ngridg do ias=1,natmtot is=idxis(ias) call zfmtpack(.false.,nrmt(is),nrmti(is),dvsmt(:,ias),zfmt(:,:,ias)) end do write(150) zfmt,dvsir close(150) deallocate(zfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/readdyn.f900000644000000000000000000000013114061636517014671 xustar0030 mtime=1623670095.584101871 29 atime=1623670094.40010297 30 ctime=1623670095.584101871 elk-7.2.42/src/readdyn.f900000644002504400250440000000244714061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readdyn(dynq) use modmain use modphonon implicit none ! arguments complex(8), intent(out) :: dynq(nbph,nbph,nqpt) ! local variables logical exist integer iq,is,js,ia,ja integer ip,jp,i,j real(8) a,b character(256) fext do iq=1,nqpt i=0 do is=1,nspecies do ia=1,natoms(is) do ip=1,3 i=i+1 call dynfext(iq,is,ia,ip,fext) inquire(file='DYN'//trim(fext),exist=exist) if (.not.exist) then write(*,*) write(*,'("Error(readdyn): file not found :")') write(*,'(A)') ' DYN'//trim(fext) write(*,*) stop end if open(50,file='DYN'//trim(fext),status='OLD',form='FORMATTED') j=0 do js=1,nspecies do ja=1,natoms(js) do jp=1,3 j=j+1 read(50,*) a,b dynq(i,j,iq)=cmplx(a,b,8) end do end do end do close(50) end do ! end loops over atoms and species end do end do ! symmetrise the dynamical matrix call dynsym(vql(:,iq),dynq(:,:,iq)) ! end loop over q-vectors end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dyntask.f900000644000000000000000000000013014061636517014717 xustar0029 mtime=1623670095.58510187 30 atime=1623670094.401102969 29 ctime=1623670095.58510187 elk-7.2.42/src/dyntask.f900000644002504400250440000000276714061636517016772 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dyntask(fnum,fext) use modmain use modphonon use modmpi implicit none ! arguments integer, intent(in) :: fnum character(*), intent(out) :: fext ! local variables logical exist ! only master process should search for file if (.not.mp_mpi) goto 10 do ipph=1,3 do isph=1,nspecies do iaph=1,natoms(isph) do iqph=1,nqpt ! construct the dynamical matrix file extension call dynfext(iqph,isph,iaph,ipph,fext) ! determine if the DYN file with this extension exists inquire(file='DYN'//trim(fext),exist=exist) if (.not.exist) then open(fnum,file='DYN'//trim(fext),form='FORMATTED') iasph=idxas(iaph,isph) goto 10 end if end do end do end do end do iqph=0; isph=0; iaph=0; iasph=0; ipph=0 write(*,*) write(*,'("Info(dyntask): nothing more to do")') 10 continue ! broadcast to all other MPI processes call mpi_bcast(iqph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(isph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(iaph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(iasph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(ipph,1,mpi_integer,0,mpicom,ierror) if (iqph.eq.0) then fext='.OUT' else call dynfext(iqph,isph,iaph,ipph,fext) end if ! set the q=0 flag if (iqph.eq.1) then tphq0=.true. else tphq0=.false. end if end subroutine elk-7.2.42/src/PaxHeaders.21776/dpotks.f900000644000000000000000000000013214061636517014550 xustar0030 mtime=1623670095.587101868 30 atime=1623670094.403102967 30 ctime=1623670095.587101868 elk-7.2.42/src/dpotks.f900000644002504400250440000000305314061636517016606 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dpotks use modmain use modphonon use modomp implicit none ! local variables integer is,ias,nthd integer nr,nri,np ! automatic arrays complex(8) zfmt(npmtmax) ! convert density derivative to spherical coordinates call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,is,nr,nri,np) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) zfmt(1:np)=drhomt(1:np,ias) call zbsht(nr,nri,zfmt,drhomt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! compute the exchange-correlation potential derivative call dpotxc ! convert density derivative to spherical harmonics call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,is,nr,nri,np) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) zfmt(1:np)=drhomt(1:np,ias) call zfsht(nr,nri,zfmt,drhomt(:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! generate the Coulomb potential derivative call dpotcoul ! add to the Kohn-Sham potential derivative do ias=1,natmtot is=idxis(ias) np=npmt(is) dvsmt(1:np,ias)=dvsmt(1:np,ias)+dvclmt(1:np,ias) end do dvsir(1:ngtot)=dvsir(1:ngtot)+dvclir(1:ngtot) ! remove the gradient part of the potential derivative for displaced muffin-tin np=npmt(isph) dvsmt(1:np,iasph)=dvsmt(1:np,iasph)+gvsmt(1:np) end subroutine elk-7.2.42/src/PaxHeaders.21776/dpotxc.f900000644000000000000000000000013214061636517014545 xustar0030 mtime=1623670095.588101867 30 atime=1623670094.405102965 30 ctime=1623670095.588101867 elk-7.2.42/src/dpotxc.f900000644002504400250440000001110614061636517016601 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dpotxc use modmain use modphonon implicit none ! local variables integer idm,is,ias integer nr,nri,nrc,nrci integer ir,np ! allocatable arrays real(8), allocatable :: fxcmt(:,:,:,:),fxcir(:,:,:) complex(8), allocatable :: dvmt(:),dbmt(:,:),zfmt(:) ! compute the exchange-correlation kernel if (spinpol) then allocate(fxcmt(npmtmax,natmtot,4,4),fxcir(ngtot,4,4)) call genspfxcr(.false.,fxcmt,fxcir) else allocate(fxcmt(npmtmax,natmtot,1,1),fxcir(ngtot,1,1)) call genfxcr(.false.,fxcmt,fxcir) end if allocate(dvmt(npmtmax)) if (spinpol) allocate(dbmt(npmtmax,3),zfmt(npcmtmax)) !---------------------------------------! ! muffin-tin potential and field ! !---------------------------------------! ! note: muffin-tin functions are in spherical coordinates do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) nrc=nrcmt(is) nrci=nrcmti(is) np=npmt(is) ! charge-charge contribution to potential derivative dvmt(1:np)=fxcmt(1:np,ias,1,1)*drhomt(1:np,ias) ! spin-polarised case if (spinpol) then if (ncmag) then ! non-collinear ! add charge-spin contribution to potential derivative dvmt(1:np)=dvmt(1:np) & +fxcmt(1:np,ias,1,2)*dmagmt(1:np,ias,1) & +fxcmt(1:np,ias,1,3)*dmagmt(1:np,ias,2) & +fxcmt(1:np,ias,1,4)*dmagmt(1:np,ias,3) ! spin-charge contribution to B-field derivative dbmt(1:np,1)=fxcmt(1:np,ias,1,2)*drhomt(1:np,ias) dbmt(1:np,2)=fxcmt(1:np,ias,1,3)*drhomt(1:np,ias) dbmt(1:np,3)=fxcmt(1:np,ias,1,4)*drhomt(1:np,ias) ! add spin-spin contribution to B-field derivative ! (note: fxc is stored as an upper triangular matrix) dbmt(1:np,1)=dbmt(1:np,1) & +fxcmt(1:np,ias,2,2)*dmagmt(1:np,ias,1) & +fxcmt(1:np,ias,2,3)*dmagmt(1:np,ias,2) & +fxcmt(1:np,ias,2,4)*dmagmt(1:np,ias,3) dbmt(1:np,2)=dbmt(1:np,2) & +fxcmt(1:np,ias,2,3)*dmagmt(1:np,ias,1) & +fxcmt(1:np,ias,3,3)*dmagmt(1:np,ias,2) & +fxcmt(1:np,ias,3,4)*dmagmt(1:np,ias,3) dbmt(1:np,3)=dbmt(1:np,3) & +fxcmt(1:np,ias,2,4)*dmagmt(1:np,ias,1) & +fxcmt(1:np,ias,3,4)*dmagmt(1:np,ias,2) & +fxcmt(1:np,ias,4,4)*dmagmt(1:np,ias,3) else ! collinear ! add charge-spin contribution to potential derivative dvmt(1:np)=dvmt(1:np)+fxcmt(1:np,ias,1,4)*dmagmt(1:np,ias,1) ! spin-charge contribution to B-field derivative dbmt(1:np,1)=fxcmt(1:np,ias,1,4)*drhomt(1:np,ias) ! add spin-spin contribution to B-field derivative dbmt(1:np,1)=dbmt(1:np,1)+fxcmt(1:np,ias,4,4)*dmagmt(1:np,ias,1) end if end if ! convert potential derivative to spherical harmonics call zfsht(nr,nri,dvmt,dvsmt(:,ias)) ! convert magnetic field derivative to spherical harmonics on coarse mesh do idm=1,ndmag call zfmtftoc(nrc,nrci,dbmt(:,idm),zfmt) call zfsht(nrc,nrci,zfmt,dbsmt(:,ias,idm)) end do end do !------------------------------------------! ! interstitial potential and field ! !------------------------------------------! ! charge-charge contribution to potential derivative do ir=1,ngtot dvsir(ir)=fxcir(ir,1,1)*drhoir(ir) end do ! spin-polarised case if (spinpol) then if (ncmag) then ! non-collinear do ir=1,ngtot ! add charge-spin contribution to potential derivative dvsir(ir)=dvsir(ir) & +fxcir(ir,1,2)*dmagir(ir,1) & +fxcir(ir,1,3)*dmagir(ir,2) & +fxcir(ir,1,4)*dmagir(ir,3) ! spin-charge contribution to B-field derivative dbsir(ir,1)=fxcir(ir,1,2)*drhoir(ir) dbsir(ir,2)=fxcir(ir,1,3)*drhoir(ir) dbsir(ir,3)=fxcir(ir,1,4)*drhoir(ir) ! add spin-spin contribution to B-field derivative dbsir(ir,1)=dbsir(ir,1) & +fxcir(ir,2,2)*dmagir(ir,1) & +fxcir(ir,2,3)*dmagir(ir,2) & +fxcir(ir,2,4)*dmagir(ir,3) dbsir(ir,2)=dbsir(ir,2) & +fxcir(ir,2,3)*dmagir(ir,1) & +fxcir(ir,3,3)*dmagir(ir,2) & +fxcir(ir,3,4)*dmagir(ir,3) dbsir(ir,3)=dbsir(ir,3) & +fxcir(ir,2,4)*dmagir(ir,1) & +fxcir(ir,3,4)*dmagir(ir,2) & +fxcir(ir,4,4)*dmagir(ir,3) end do else ! collinear do ir=1,ngtot ! add charge-spin contribution to potential derivative dvsir(ir)=dvsir(ir)+fxcir(ir,1,4)*dmagir(ir,1) ! spin-charge contribution to B-field derivative dbsir(ir,1)=fxcir(ir,1,4)*drhoir(ir) ! add spin-spin contribution to B-field derivative dbsir(ir,1)=dbsir(ir,1)+fxcir(ir,4,4)*dmagir(ir,1) end do end if end if deallocate(fxcmt,fxcir,dvmt) if (spinpol) deallocate(dbmt,zfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/deveqnfv.f900000644000000000000000000000013214061636517015062 xustar0030 mtime=1623670095.590101865 30 atime=1623670094.406102964 30 ctime=1623670095.590101865 elk-7.2.42/src/deveqnfv.f900000644002504400250440000000712614061636517017125 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine deveqnfv(ngp,ngpq,igpig,igpqig,vgpc,vgpqc,evalfv,apwalm,apwalmq, & dapwalm,dapwalmq,evecfv,devalfvp,devecfv) use modmain use modphonon use modomp implicit none ! arguments integer, intent(in) :: ngp,ngpq integer, intent(in) :: igpig(ngkmax),igpqig(ngkmax) real(8), intent(in) :: vgpc(3,ngkmax),vgpqc(3,ngkmax) real(8), intent(in) :: evalfv(nstfv) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw,natmtot) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: dapwalmq(ngkmax,apwordmax,lmmaxapw) complex(8), intent(in) :: evecfv(nmatmax,nstfv) real(8), intent(out) :: devalfvp(nstfv) complex(8), intent(out) :: devecfv(nmatmax,nstfv) ! local variables integer nm,nmq,is,ias,jst,i integer lwork,info,nthd real(8) t1 complex(8) z1 ! allocatable arrays real(8), allocatable :: w(:),rwork(:) complex(8), allocatable :: h(:,:),o(:,:),dh(:,:),od(:,:) complex(8), allocatable :: x(:),y(:),work(:) ! external functions complex(8), external :: zdotc ! matrix sizes for k and k+q nm=ngp+nlotot nmq=ngpq+nlotot allocate(h(nmq,nmq),o(nmq,nmq)) ! compute the Hamiltonian and overlap matrices at p+q call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP SECTION call hmlfv(nmq,ngpq,igpqig,vgpqc,apwalmq,h) !$OMP SECTION call olpfv(nmq,ngpq,igpqig,apwalmq,o) !$OMP END PARALLEL SECTIONS call freethd(nthd) ! solve the generalised eigenvalue problem (H - e_j O)|v_j> = 0 ! (note: these are also the eigenvalues/vectors of O^(-1)H ) lwork=2*nmq allocate(w(nmq),rwork(3*nmq),work(lwork)) call zhegv(1,'V','U',nmq,h,nmq,o,nmq,w,work,lwork,rwork,info) if (info.ne.0) then write(*,*) write(*,'("Error(deveqnfv): diagonalisation failed")') write(*,'(" ZHEGV returned INFO = ",I8)') info write(*,*) stop end if deallocate(rwork,o,work) ! compute the Hamiltonian and overlap matrix derivatives allocate(dh(nmq,nm),od(nmq,nm)) call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP PRIVATE(ias,is) & !$OMP NUM_THREADS(nthd) !$OMP SECTION dh(:,:)=0.d0 do ias=1,natmtot is=idxis(ias) call dhmlaa(is,ias,ngp,ngpq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),dapwalm, & dapwalmq,nmq,dh) call dhmlalo(is,ias,ngp,ngpq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),dapwalm, & dapwalmq,nmq,dh) call dhmllolo(is,ias,ngp,ngpq,nmq,dh) end do call dhmlistl(ngp,ngpq,igpig,igpqig,vgpc,vgpqc,nmq,dh) !$OMP SECTION od(:,:)=0.d0 do ias=1,natmtot is=idxis(ias) call dolpaa(is,ias,ngp,ngpq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),dapwalm, & dapwalmq,nmq,od) call dolpalo(is,ias,ngp,ngpq,dapwalm,dapwalmq,nmq,od) end do call dolpistl(ngp,ngpq,igpig,igpqig,nmq,od) !$OMP END PARALLEL SECTIONS call freethd(nthd) allocate(x(nmq),y(nmq)) ! loop over states do jst=1,nstfv ! compute |dv_j> = V(e_j - D)^(-1)V† (dH - e_j dO)|v_j> z1=-evalfv(jst) call zgemv('N',nmq,nm,z1,od,nmq,evecfv(:,jst),1,zzero,x,1) call zgemv('N',nmq,nm,zone,dh,nmq,evecfv(:,jst),1,zone,x,1) ! compute the first-order change in eigenvalue if (tphq0) then z1=zdotc(nmq,evecfv(:,jst),1,x,1) devalfvp(jst)=dble(z1) else devalfvp(jst)=0.d0 end if call zgemv('C',nmq,nmq,zone,h,nmq,x,1,zzero,y,1) do i=1,nmq t1=evalfv(jst)-w(i) if (abs(t1).gt.epsdev) then y(i)=y(i)/t1 else y(i)=0.d0 end if end do call zgemv('N',nmq,nmq,zone,h,nmq,y,1,zzero,devecfv(:,jst),1) end do deallocate(w,h,dh,od,x,y) end subroutine elk-7.2.42/src/PaxHeaders.21776/dpotcoul.f900000644000000000000000000000013214061636517015075 xustar0030 mtime=1623670095.591101864 30 atime=1623670094.408102963 30 ctime=1623670095.591101864 elk-7.2.42/src/dpotcoul.f900000644002504400250440000000155414061636517017137 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dpotcoul use modmain use modphonon implicit none ! local variables integer np ! automatic arrays complex(8) gzfmt(npmtmax,3) ! solve the complex Poisson's equation in the muffin-tins call genzvclmt(nrmt,nrmti,nrmtmax,rlmt,wprmt,npmtmax,drhomt,dvclmt) ! calculate the gradient of the nuclear potential call gradzvcln(isph,gzfmt) ! subtract gradient component corresponding to the phonon polarisation np=npmt(isph) dvclmt(1:np,iasph)=dvclmt(1:np,iasph)-gzfmt(1:np,ipph) ! solve Poisson's equation in the entire unit cell call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gqc,gclgq, & ngvec,jlgqrmt,ylmgq,sfacgq,drhoir,npmtmax,dvclmt,dvclir) end subroutine elk-7.2.42/src/PaxHeaders.21776/drhomagk.f900000644000000000000000000000013214061636517015040 xustar0030 mtime=1623670095.593101863 30 atime=1623670094.410102961 30 ctime=1623670095.593101863 elk-7.2.42/src/drhomagk.f900000644002504400250440000001533114061636517017100 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine drhomagk(ngp,ngpq,igpig,igpqig,occsvp,doccsvp,apwalm,apwalmq, & dapwalm,evecfv,devecfv,evecsv,devecsv) use modmain use modphonon implicit none ! arguments integer, intent(in) :: ngp(nspnfv),ngpq(nspnfv) integer, intent(in) :: igpig(ngkmax,nspnfv),igpqig(ngkmax,nspnfv) real(8), intent(in) :: occsvp(nstsv),doccsvp(nstsv) complex(8), intent(in) :: apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) complex(8), intent(in) :: apwalmq(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv) complex(8), intent(in) :: dapwalm(ngkmax,apwordmax,lmmaxapw,nspnfv) complex(8), intent(in) :: evecfv(nmatmax,nstfv,nspnfv) complex(8), intent(in) :: devecfv(nmatmax,nstfv,nspnfv) complex(8), intent(in) :: evecsv(nstsv,nstsv),devecsv(nstsv,nstsv) ! local variables integer nst,ist,jst integer is,ias,npc real(8) wo,dwo ! automatic arrays integer idx(nstsv) ! allocatable arrays complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: dwfmt(:,:,:,:),dwfir(:,:,:) ! count and index the occupied states nst=0 do ist=1,nstsv if (abs(occsvp(ist)).gt.epsocc) then nst=nst+1 idx(nst)=ist end if end do ! generate the wavefunctions allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfir(ngtot,nspinor,nst)) call genwfsv(.false.,.false.,nst,idx,ngridg,igfft,ngp,igpig,apwalm,evecfv, & evecsv,wfmt,ngtot,wfir) ! generate the wavefunction derivatives allocate(dwfmt(npcmtmax,natmtot,nspinor,nst),dwfir(ngtot,nspinor,nst)) call gendwfsv(.false.,.false.,nst,idx,ngp,ngpq,igpqig,apwalmq,dapwalm,evecfv, & devecfv,evecsv,devecsv,dwfmt,ngtot,dwfir) ! loop over occupied states do ist=1,nst jst=idx(ist) wo=2.d0*wkptnr*occsvp(jst) dwo=wkptnr*doccsvp(jst) !----------------------------------------------! ! muffin-tin density and magnetisation ! !----------------------------------------------! do ias=1,natmtot is=idxis(ias) npc=npcmt(is) !$OMP CRITICAL(drhomagk_1) if (spinpol) then ! spin-polarised if (ncmag) then ! non-collinear call drmk1(npc,wo,wfmt(:,ias,1,jst),wfmt(:,ias,2,jst), & dwfmt(:,ias,1,jst),dwfmt(:,ias,2,jst),drhomt(:,ias),dmagmt(:,ias,1), & dmagmt(:,ias,2),dmagmt(:,ias,3)) if (tphq0) then call drmk01(npc,dwo,wfmt(:,ias,1,jst),wfmt(:,ias,2,jst), & drhomt(:,ias),dmagmt(:,ias,1),dmagmt(:,ias,2),dmagmt(:,ias,3)) end if else ! collinear call drmk2(npc,wo,wfmt(:,ias,1,jst),wfmt(:,ias,2,jst), & dwfmt(:,ias,1,jst),dwfmt(:,ias,2,jst),drhomt(:,ias),dmagmt(:,ias,1)) if (tphq0) then call drmk02(npc,dwo,wfmt(:,ias,1,jst),wfmt(:,ias,2,jst), & drhomt(:,ias),dmagmt(:,ias,1)) end if end if else ! spin-unpolarised call drmk3(npc,wo,wfmt(:,ias,1,jst),dwfmt(:,ias,1,jst),drhomt(:,ias)) if (tphq0) then call drmk03(npc,dwo,wfmt(:,ias,1,jst),drhomt(:,ias)) end if end if !$OMP END CRITICAL(drhomagk_1) !****** use lock end do !------------------------------------------------! ! interstitial density and magnetisation ! !------------------------------------------------! !$OMP CRITICAL(drhomagk_2) if (spinpol) then ! spin-polarised if (ncmag) then call drmk1(ngtot,wo,wfir(:,1,jst),wfir(:,2,jst),dwfir(:,1,jst), & dwfir(:,2,jst),drhoir,dmagir,dmagir(:,2),dmagir(:,3)) if (tphq0) then call drmk01(ngtot,dwo,wfir(:,1,jst),wfir(:,2,jst),drhoir,dmagir, & dmagir(:,2),dmagir(:,3)) end if else ! collinear call drmk2(ngtot,wo,wfir(:,1,jst),wfir(:,2,jst),dwfir(:,1,jst), & dwfir(:,2,jst),drhoir,dmagir) if (tphq0) then call drmk02(ngtot,dwo,wfir(:,1,jst),wfir(:,2,jst),drhoir,dmagir) end if end if else ! spin-unpolarised call drmk3(ngtot,wo,wfir(:,1,jst),dwfir(:,1,jst),drhoir) if (tphq0) then call drmk03(ngtot,dwo,wfir(:,1,jst),drhoir) end if end if !$OMP END CRITICAL(drhomagk_2) ! end loop over states end do deallocate(wfmt,wfir,dwfmt,dwfir) return contains pure subroutine drmk1(n,wo,wf1,wf2,dwf1,dwf2,drho,dmag1,dmag2,dmag3) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) complex(8), intent(in) :: dwf1(n),dwf2(n) complex(8), intent(inout) :: drho(n) complex(8), intent(inout) :: dmag1(n),dmag2(n),dmag3(n) ! local variables integer i complex(8) z1,z2,z3,z4,z5,z6 do i=1,n z1=conjg(wf1(i)) z2=conjg(wf2(i)) z3=dwf1(i) z4=dwf2(i) z5=z1*z3 z6=z2*z4 drho(i)=drho(i)+wo*(z5+z6) dmag3(i)=dmag3(i)+wo*(z5-z6) z5=z1*z4 z6=z2*z3 dmag1(i)=dmag1(i)+wo*(z5+z6) z5=z5-z6 dmag2(i)=dmag2(i)+wo*cmplx(aimag(z5),-dble(z5),8) end do end subroutine pure subroutine drmk01(n,dwo,wf1,wf2,drho,dmag1,dmag2,dmag3) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: dwo complex(8), intent(in) :: wf1(n),wf2(n) complex(8), intent(inout) :: drho(n) complex(8), intent(inout) :: dmag1(n),dmag2(n),dmag3(n) ! local variables integer i real(8) t1,t2 complex(8) z1,z2 do i=1,n z1=wf1(i) z2=wf2(i) t1=dble(z1)**2+aimag(z1)**2 t2=dble(z2)**2+aimag(z2)**2 z1=conjg(z1)*z2 drho(i)=drho(i)+dwo*(t1+t2) dmag1(i)=dmag1(i)+dwo*2.d0*dble(z1) dmag2(i)=dmag2(i)+dwo*2.d0*aimag(z1) dmag3(i)=dmag3(i)+dwo*(t1-t2) end do !******* speed up: see rhomagk end subroutine pure subroutine drmk2(n,wo,wf1,wf2,dwf1,dwf2,drho,dmag) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) complex(8), intent(in) :: dwf1(n),dwf2(n) complex(8), intent(inout) :: drho(n),dmag(n) ! local variables integer i complex(8) z1,z2 do i=1,n z1=conjg(wf1(i))*dwf1(i) z2=conjg(wf2(i))*dwf2(i) drho(i)=drho(i)+wo*(z1+z2) dmag(i)=dmag(i)+wo*(z1-z2) end do end subroutine pure subroutine drmk02(n,dwo,wf1,wf2,drho,dmag) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: dwo complex(8), intent(in) :: wf1(n),wf2(n) complex(8), intent(inout) :: drho(n),dmag(n) ! local variables integer i real(8) t1,t2 do i=1,n t1=dble(wf1(i))**2+aimag(wf1(i))**2 t2=dble(wf2(i))**2+aimag(wf2(i))**2 drho(i)=drho(i)+dwo*(t1+t2) dmag(i)=dmag(i)+dwo*(t1-t2) end do end subroutine pure subroutine drmk3(n,wo,wf,dwf,drho) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf(n),dwf(n) complex(8), intent(inout) :: drho(n) drho(:)=drho(:)+wo*conjg(wf(:))*dwf(:) end subroutine pure subroutine drmk03(n,dwo,wf,drho) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: dwo complex(8), intent(in) :: wf(n) complex(8), intent(inout) :: drho(n) drho(:)=drho(:)+dwo*(dble(wf(:))**2+aimag(wf(:))**2) end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/gengvsmt.f900000644000000000000000000000013114061636517015075 xustar0030 mtime=1623670095.594101862 29 atime=1623670094.41110296 30 ctime=1623670095.594101862 elk-7.2.42/src/gengvsmt.f900000644002504400250440000000135614061636517017140 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gengvsmt use modmain use modphonon implicit none ! local variables integer nr,nri,np ! allocatable arrays complex(8), allocatable :: zfmt(:),gzfmt(:,:) allocate(zfmt(npmtmax),gzfmt(npmtmax,3)) nr=nrmt(isph) nri=nrmti(isph) np=npmt(isph) ! convert potential to complex spherical harmonics call rtozfmt(nr,nri,vsmt(:,iasph),zfmt) ! calculate the gradient call gradzfmt(nr,nri,rlmt(:,-1,isph),wcrmt(:,:,isph),zfmt,npmtmax,gzfmt) ! copy current polarisation component to global array gvsmt(1:np)=gzfmt(1:np,ipph) deallocate(zfmt,gzfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/dforce.f900000644000000000000000000000013014061636517014504 xustar0029 mtime=1623670095.59610186 30 atime=1623670094.413102958 29 ctime=1623670095.59610186 elk-7.2.42/src/dforce.f900000644002504400250440000001150614061636517016546 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dforce(dyn) use modmain use modphonon use modomp implicit none ! arguments complex(8), intent(out) :: dyn(3,natmtot) ! local variables integer ik,is,ias,nthd integer nr,nri,ir,np,i complex(8) z1 ! allocatable arrays complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: grhomt(:,:,:),grhoir(:,:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) complex(8), allocatable :: gvclmt(:,:,:),gvclir(:,:) complex(8), allocatable :: zfmt(:),gzfmt(:,:) ! external functions complex(8), external :: zfmtinp allocate(zrhomt(npmtmax,natmtot),zrhoir(ngtot)) allocate(grhomt(npmtmax,natmtot,3),grhoir(ngtot,3)) allocate(zvclmt(npmtmax,natmtot),zvclir(ngtot)) allocate(gvclmt(npmtmax,natmtot,3),gvclir(ngtot,3)) allocate(zfmt(npmtmax),gzfmt(npmtmax,3)) ! make complex copy of the density do ias=1,natmtot is=idxis(ias) call rtozfmt(nrmt(is),nrmti(is),rhomt(:,ias),zrhomt(:,ias)) end do zrhoir(:)=rhoir(:) ! compute the gradient of the density call gradzf(zrhomt,zrhoir,grhomt,grhoir) !--------------------------------------------------------------! ! Hellmann-Feynman force derivative for displaced atom ! !--------------------------------------------------------------! nr=nrmt(isph) nri=nrmti(isph) np=npmt(isph) ! calculate the gradient of the nuclear potential call gradzvcln(isph,gzfmt) ! compute the q-dependent nuclear Coulomb potential derivative zvclmt(:,:)=0.d0 zvclmt(1:np,iasph)=gzfmt(1:np,ipph) tphdyn=.true. ! zero the interstitial density zrhoir(:)=0.d0 call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gqc,gclgq, & ngvec,jlgqrmt,ylmgq,sfacgq,zrhoir,npmtmax,zvclmt,zvclir) zfmt(1:np)=zvnmt(1:np) ! multiply with density derivative and integrate z1=0.d0 do ir=1,ngtot z1=z1+cfunir(ir)*conjg(zvclir(ir))*drhoir(ir) end do z1=z1*omega/dble(ngtot) do ias=1,natmtot is=idxis(ias) z1=z1+zfmtinp(nrmt(is),nrmti(is),wrmt(:,is),zvclmt(:,ias),drhomt(:,ias)) end do dyn(ipph,iasph)=-z1 ! compute the lattice-periodic nuclear Coulomb potential derivative zvclmt(:,:)=0.d0 zvclmt(1:np,iasph)=gzfmt(1:np,ipph) call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec,gc,gclg, & ngvec,jlgrmt,ylmg,sfacg,zrhoir,npmtmax,zvclmt,zvclir) tphdyn=.false. ! multiply with density gradient and integrate z1=0.d0 do ir=1,ngtot z1=z1+cfunir(ir)*zvclir(ir)*grhoir(ir,ipph) end do z1=z1*omega/dble(ngtot) do ias=1,natmtot is=idxis(ias) z1=z1+zfmtinp(nrmt(is),nrmti(is),wrmt(:,is),zvclmt(:,ias),grhomt(:,ias,ipph)) end do dyn(ipph,iasph)=dyn(ipph,iasph)-z1 ! nuclear-nuclear term zvclmt(1:np,iasph)=zvnmt(1:np)-zfmt(1:np) call gradzf(zvclmt,zvclir,gvclmt,gvclir) do ias=1,natmtot is=idxis(ias) z1=spzn(is)*gvclmt(1,ias,ipph)*y00 dyn(ipph,iasph)=dyn(ipph,iasph)+z1 end do !-------------------------------------------------------------------! ! Hellmann-Feynman force derivative for non-displaced atoms ! !-------------------------------------------------------------------! do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) ! remove the gradient part of the Coulomb potential for displaced muffin-tin if (ias.eq.iasph) then call rtozfmt(nr,nri,vclmt(:,ias),zfmt) call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),zfmt,npmtmax,gzfmt) dvclmt(1:np,ias)=dvclmt(1:np,ias)+gzfmt(1:np,ipph) end if ! compute the gradient of the Coulomb potential derivative at the nucleus call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),dvclmt(:,ias),npmtmax,gzfmt) do i=1,3 if ((ias.eq.iasph).and.(i.eq.ipph)) cycle dyn(i,ias)=spzn(is)*gzfmt(1,i)*y00 end do end do !--------------------------------------------! ! IBS correction to force derivative ! !--------------------------------------------! ! k-point dependent part call holdthd(nkptnr,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkptnr call dforcek(ik,dyn) end do !$OMP END PARALLEL DO call freethd(nthd) ! k-point independent part do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) do i=1,3 z1=zfmtinp(nr,nri,wrmt(:,is),grhomt(:,ias,i),dvsmt(:,ias)) dyn(i,ias)=dyn(i,ias)-z1 end do ! remove the gradient part from the density derivative for displaced muffin-tin if (ias.eq.iasph) then drhomt(1:np,ias)=drhomt(1:np,ias)+grhomt(1:np,ias,ipph) end if ! compute the gradient of the density derivative call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),drhomt(:,ias),npmtmax,gzfmt) ! convert Kohn-Sham potential to complex spherical harmonics call rtozfmt(nr,nri,vsmt(:,ias),zfmt) do i=1,3 z1=zfmtinp(nr,nri,wrmt(:,is),zfmt,gzfmt(:,i)) dyn(i,ias)=dyn(i,ias)-z1 end do end do deallocate(zrhomt,zrhoir,grhomt,grhoir) deallocate(zvclmt,zvclir,gvclmt,gvclir,zfmt,gzfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/dforcek.f900000644000000000000000000000013214061636517014661 xustar0030 mtime=1623670095.597101859 30 atime=1623670094.415102956 30 ctime=1623670095.597101859 elk-7.2.42/src/dforcek.f900000644002504400250440000002400014061636517016712 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dforcek(ik,dyn) use modmain use modphonon use modpw implicit none ! arguments integer, intent(in) :: ik complex(8), intent(inout) :: dyn(3,natmtot) ! local variables integer ispn0,ispn1,ispn,jspn integer n,nq,nm,nmq,nm2 integer is,ias,ist,jst,jk integer iv(3),ig,i,j,k,l real(8) t1 complex(8) z1,z2,dt1,dz1,dz2 ! automatic arrays real(8) evalfv(nstfv,nspnfv) complex(8) vh(nmatmax),vo(nmatmax),dvh(nmatmax),dvo(nmatmax) complex(8) ffv(nstfv,nstfv),dffv(nstfv,nstfv),y(nstfv),dy(nstfv) ! allocatable arrays integer, allocatable :: ijg(:,:),ijgq(:,:) real(8), allocatable :: dp(:,:),dpq(:,:) complex(8), allocatable :: apwalm(:,:,:,:),apwalmq(:,:,:,:),dapwalm(:,:,:) complex(8), allocatable :: evecfv(:,:,:),devecfv(:,:,:) complex(8), allocatable :: evecsv(:,:),devecsv(:,:) complex(8), allocatable :: h(:),o(:),dlh(:),dlo(:) complex(8), allocatable :: hq(:,:),oq(:,:),dh(:,:),od(:,:) complex(8), allocatable :: dlhq(:,:),dloq(:,:),ddlh(:,:),ddlo(:,:) ! external functions complex(8), external :: zdotc nm2=nmatmax**2 ! allocate local arrays allocate(ijg(nmatmax,nmatmax),ijgq(nmatmax,nmatmax)) allocate(dp(nmatmax,nmatmax),dpq(nmatmax,nmatmax)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(apwalmq(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(dapwalm(ngkmax,apwordmax,lmmaxapw)) allocate(evecfv(nmatmax,nstfv,nspnfv)) allocate(devecfv(nmatmax,nstfv,nspnfv)) allocate(h(nm2),o(nm2),dlh(nm2),dlo(nm2)) allocate(hq(nmatmax,nmatmax),oq(nmatmax,nmatmax)) allocate(dh(nmatmax,nmatmax),od(nmatmax,nmatmax)) allocate(dlhq(nmatmax,nmatmax),dloq(nmatmax,nmatmax)) allocate(ddlh(nmatmax,nmatmax),ddlo(nmatmax,nmatmax)) ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! get the eigenvalues/vectors from file call getevalfv(filext,0,vkl(:,ik),evalfv) call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,:,ik),evecfv) ! get the eigenvalue/vector derivatives from file call getdevecfv(ik,iqph,isph,iaph,ipph,devecfv) if (tevecsv) then allocate(evecsv(nstsv,nstsv),devecsv(nstsv,nstsv)) call getevecsv(filext,0,vkl(:,ik),evecsv) call getdevecsv(ik,iqph,isph,iaph,ipph,devecsv) end if ! loop over first-variational spin components do jspn=1,nspnfv if (spinsprl) then ispn0=jspn; ispn1=jspn else ispn0=1; ispn1=nspinor end if n=ngk(jspn,ik) nq=ngkq(jspn,ik) nm=n+nlotot nmq=nq+nlotot do j=1,n do i=1,n iv(:)=ivg(:,igkig(i,jspn,ik))-ivg(:,igkig(j,jspn,ik)) iv(:)=modulo(iv(:)-intgv(1,:),ngridg(:))+intgv(1,:) ijg(i,j)=ivgig(iv(1),iv(2),iv(3)) dp(i,j)=0.5d0*dot_product(vgkc(1:3,i,jspn,ik),vgkc(1:3,j,jspn,ik)) end do end do do j=1,n do i=1,nq iv(:)=ivg(:,igkqig(i,jspn,ik))-ivg(:,igkig(j,jspn,ik)) iv(:)=modulo(iv(:)-intgv(1,:),ngridg(:))+intgv(1,:) ijgq(i,j)=ivgig(iv(1),iv(2),iv(3)) dpq(i,j)=0.5d0*dot_product(vgkqc(1:3,i,jspn,ik),vgkc(1:3,j,jspn,ik)) end do end do ! find the matching coefficients call match(n,vgkc(:,:,jspn,ik),gkc(:,jspn,ik),sfacgk(:,:,jspn,ik),apwalm) call match(nq,vgkqc(:,:,jspn,ik),gkqc(:,jspn,ik),sfacgkq(:,:,jspn,ik), & apwalmq) ! find the matching coefficient derivatives call dmatch(iasph,ipph,n,vgkc(:,:,jspn,ik),apwalm,dapwalm) ! loop over species and atoms do ias=1,natmtot is=idxis(ias) ! Hamiltonian and overlap matrices h(:)=0.d0 call hmlaa(.false.,is,ias,n,apwalm(:,:,:,ias),nm,h) call hmlalo(is,ias,n,apwalm(:,:,:,ias),nm,h) o(:)=0.d0 call olpaa(.false.,is,n,apwalm(:,:,:,ias),nm,o) call olpalo(is,ias,n,apwalm(:,:,:,ias),nm,o) hq(:,:)=0.d0 call hmlaaq(is,ias,n,nq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),nmatmax,hq) call hmlaloq(is,ias,n,nq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),nmatmax,hq) oq(:,:)=0.d0 call olpaaq(is,n,nq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),nmatmax,oq) call olpaloq(is,ias,n,nq,apwalm(:,:,:,ias),apwalmq(:,:,:,ias),nmatmax,oq) ! Hamiltonian and overlap derivatives dh(:,:)=0.d0 call dhmlaa(is,ias,n,n,apwalm(:,:,:,ias),apwalm(:,:,:,ias),dapwalm,dapwalm,& nmatmax,dh) call dhmlalo(is,ias,n,n,apwalm(:,:,:,ias),apwalm(:,:,:,ias),dapwalm, & dapwalm,nmatmax,dh) od(:,:)=0.d0 call dolpaa(is,ias,n,n,apwalm(:,:,:,ias),apwalm(:,:,:,ias),dapwalm,dapwalm,& nmatmax,od) call dolpalo(is,ias,n,n,dapwalm,dapwalm,nmatmax,od) ! loop over Cartesian directions do l=1,3 ! APW-APW contribution do j=1,n k=(j-1)*nm do i=1,j k=k+1 ig=ijg(i,j) t1=vgc(l,ig) z1=-ffacg(ig,is)*conjg(sfacg(ig,ias)) z2=t1*(dp(i,j)*z1+h(k)) dlh(k)=cmplx(-aimag(z2),dble(z2),8) z2=t1*(z1+o(k)) dlo(k)=cmplx(-aimag(z2),dble(z2),8) end do end do do j=n+1,nm k=(j-1)*nm ! APW-local-orbital contribution do i=1,n k=k+1 t1=vgkc(l,i,jspn,ik) z1=t1*h(k) dlh(k)=cmplx(-aimag(z1),dble(z1),8) z1=t1*o(k) dlo(k)=cmplx(-aimag(z1),dble(z1),8) end do ! zero the local-orbital-local-orbital contribution do i=n+1,j k=k+1 dlh(k)=0.d0 dlo(k)=0.d0 end do end do ! non-square H/O(G+k+q,G'+k) matrices ! APW-APW contribution do j=1,n do i=1,nq ig=ijgq(i,j) t1=vgqc(l,ig) z1=-ffacgq(ig,is)*conjg(sfacgq(ig,ias)) z2=t1*(dpq(i,j)*z1+hq(i,j)) dlhq(i,j)=cmplx(-aimag(z2),dble(z2),8) z2=t1*(z1+oq(i,j)) dloq(i,j)=cmplx(-aimag(z2),dble(z2),8) end do ! local-orbital-APW derivative t1=-vgkc(l,j,jspn,ik) do i=nq+1,nmq z1=t1*hq(i,j) dlhq(i,j)=cmplx(-aimag(z1),dble(z1),8) z1=t1*oq(i,j) dloq(i,j)=cmplx(-aimag(z1),dble(z1),8) end do end do do j=n+1,nm ! APW-local-orbital contribution do i=1,nq t1=vgkqc(l,i,jspn,ik) z1=t1*hq(i,j) dlhq(i,j)=cmplx(-aimag(z1),dble(z1),8) z1=t1*oq(i,j) dloq(i,j)=cmplx(-aimag(z1),dble(z1),8) end do ! zero the local-orbital-local-orbital contribution do i=nq+1,nmq dlhq(i,j)=0.d0 dloq(i,j)=0.d0 end do end do ! APW-APW derivative do j=1,n do i=1,n ig=ijg(i,j) t1=vgc(l,ig) if (ias.eq.iasph) then z1=-ffacg(ig,is)*conjg(sfacg(ig,ias)) dz1=vgc(ipph,ig)*cmplx(aimag(z1),-dble(z1),8) else dz1=0.d0 end if z2=t1*(dp(i,j)*dz1+dh(i,j)) ddlh(i,j)=cmplx(-aimag(z2),dble(z2),8) z2=t1*(dz1+od(i,j)) ddlo(i,j)=cmplx(-aimag(z2),dble(z2),8) end do ! local-orbital-APW derivative t1=-vgkc(l,j,jspn,ik) do i=n+1,nm z1=t1*dh(i,j) ddlh(i,j)=cmplx(-aimag(z1),dble(z1),8) z1=t1*od(i,j) ddlo(i,j)=cmplx(-aimag(z1),dble(z1),8) end do end do ! APW-local-orbital derivative do j=n+1,nm do i=1,n t1=vgkc(l,i,jspn,ik) z1=t1*dh(i,j) ddlh(i,j)=cmplx(-aimag(z1),dble(z1),8) z1=t1*od(i,j) ddlo(i,j)=cmplx(-aimag(z1),dble(z1),8) end do ! zero the local-orbital-local-orbital derivative do i=n+1,nm ddlh(i,j)=0.d0 ddlo(i,j)=0.d0 end do end do if (tphq0) then ! compute the force matrix elements in the first-variational basis do jst=1,nstfv call zhemv('U',nm,zone,dlh,nm,evecfv(:,jst,jspn),1,zzero,vh,1) call zhemv('U',nm,zone,dlo,nm,evecfv(:,jst,jspn),1,zzero,vo,1) t1=evalfv(jst,jspn) do ist=1,nstfv z1=zdotc(nm,evecfv(:,ist,jspn),1,vh,1) z2=zdotc(nm,evecfv(:,ist,jspn),1,vo,1) ffv(ist,jst)=z1-t1*z2 end do end do end if ! compute the force derivative matrix elements in the first-variational basis dffv(:,:)=0.d0 do jst=1,nstfv call zhemv('U',nm,zone,dlo,nm,evecfv(:,jst,jspn),1,zzero,vo,1) call zgemv('N',nm,nm,zone,ddlh,nmatmax,evecfv(:,jst,jspn),1,zzero,dvh,1) call zgemv('N',nm,nm,zone,ddlo,nmatmax,evecfv(:,jst,jspn),1,zzero,dvo,1) t1=evalfv(jst,jspn) dt1=devalfv(jst,jspn,ik) do ist=1,nstfv z2=zdotc(nm,evecfv(:,ist,jspn),1,vo,1) dz1=zdotc(nm,evecfv(:,ist,jspn),1,dvh,1) dz2=zdotc(nm,evecfv(:,ist,jspn),1,dvo,1) dffv(ist,jst)=dffv(ist,jst)+dz1-dt1*z2-t1*dz2 end do call zgemv('C',nmq,nm,zone,dlhq,nmatmax,devecfv(:,jst,jspn),1,zzero, & dvh,1) call zgemv('C',nmq,nm,zone,dloq,nmatmax,devecfv(:,jst,jspn),1,zzero, & dvo,1) do ist=1,nstfv dz1=2.d0*zdotc(nm,evecfv(:,ist,jspn),1,dvh,1) dz2=2.d0*zdotc(nm,evecfv(:,ist,jspn),1,dvo,1) dffv(ist,jst)=dffv(ist,jst)+dz1-t1*dz2 end do end do z1=0.d0 if (tevecsv) then ! spin-polarised case do j=1,nstsv do ispn=ispn0,ispn1 i=(ispn-1)*nstfv+1 call zgemv('N',nstfv,nstfv,zone,ffv,nstfv,evecsv(i,j),1,zzero,y,1) call zgemv('N',nstfv,nstfv,zone,dffv,nstfv,evecsv(i,j),1,zzero,dy,1) call zgemv('N',nstfv,nstfv,zone,ffv,nstfv,devecsv(i,j),1,zone,dy,1) dz1=zdotc(nstfv,evecsv(i,j),1,dy,1) dz1=dz1+zdotc(nstfv,devecsv(i,j),1,y,1) z1=z1+occsv(j,jk)*dz1 !******** doccsv end do end do else ! spin-unpolarised case do j=1,nstsv z1=z1+occsv(j,jk)*dffv(j,j) if (tphq0) then z1=z1+doccsv(j,ik)*dble(ffv(j,j)) end if end do end if !$OMP ATOMIC dyn(l,ias)=dyn(l,ias)-wkptnr*z1 ! end loop over Cartesian components end do ! end loop over atoms and species end do ! end loop over first-variational spins end do deallocate(ijg,ijgq,dp,dpq) deallocate(apwalm,apwalmq,dapwalm) deallocate(evecfv,devecfv) deallocate(h,o,dlh,dlo,hq,oq,dh,od) deallocate(dlhq,dloq,ddlh,ddlo) if (tevecsv) deallocate(evecsv,devecsv) end subroutine elk-7.2.42/src/PaxHeaders.21776/dynqtor.f900000644000000000000000000000013214061636517014744 xustar0030 mtime=1623670095.599101857 30 atime=1623670094.417102954 30 ctime=1623670095.599101857 elk-7.2.42/src/dynqtor.f900000644002504400250440000000426214061636517017005 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynqtor(dynq,dynr) use modmain use modphonon implicit none ! arguments complex(8), intent(in) :: dynq(nbph,nbph,nqpt) complex(8), intent(out) :: dynr(nbph,nbph,nqptnr) ! local variables integer ir,iq,i,j,n integer isym,lspl,intr(2,3) integer i1,i2,i3,j1,j2,j3 real(8) v1(3),v2(3),v3(3) real(8) s(3,3),t1 complex(8) z1 ! automatic arrays complex(8) dyns(nbph,nbph) intr(2,:)=ngridq(:)/2 intr(1,:)=intr(2,:)-ngridq(:)+1 dynr(:,:,:)=0.d0 ! loop over q-vectors do j1=0,ngridq(1)-1 v1(1)=dble(j1)/dble(ngridq(1)) do j2=0,ngridq(2)-1 v1(2)=dble(j2)/dble(ngridq(2)) do j3=0,ngridq(3)-1 v1(3)=dble(j3)/dble(ngridq(3)) iq=ivqiq(j1,j2,j3) ! map v1 to the first Brillouin zone v2(:)=v1(:) call vecfbz(epslat,bvec,v2) ! rotate and add the dynamical matrix of the reduced q-point with all symmetries n=0 dyns(:,:)=0.d0 do isym=1,nsymcrys lspl=lsplsymc(isym) s(:,:)=dble(symlat(:,:,lspl)) call r3mtv(s,vql(:,iq),v3) call vecfbz(epslat,bvec,v3) t1=abs(v2(1)-v3(1))+abs(v2(2)-v3(2))+abs(v2(3)-v3(3)) if (t1.lt.epslat) then call dynsymapp(isym,vql(:,iq),dynq(:,:,iq),dyns) n=n+1 end if end do if (n.eq.0) then write(*,*) write(*,'("Error(dynqtor): vector ",3G18.10)') v1 write(*,'(" cannot be mapped to reduced q-point set")') write(*,*) stop end if t1=1.d0/dble(n) dyns(:,:)=t1*dyns(:,:) ! loop over R-vectors ir=0 do i3=intr(1,3),intr(2,3) do i2=intr(1,2),intr(2,2) do i1=intr(1,1),intr(2,1) ir=ir+1 t1=twopi*(v1(1)*dble(i1)+v1(2)*dble(i2)+v1(3)*dble(i3)) z1=cmplx(cos(t1),sin(t1),8) do i=1,nbph do j=1,nbph dynr(i,j,ir)=dynr(i,j,ir)+z1*dyns(i,j) end do end do end do end do end do end do end do end do t1=1.d0/dble(nqptnr) dynr(:,:,:)=t1*dynr(:,:,:) end subroutine elk-7.2.42/src/PaxHeaders.21776/dynevs.f900000644000000000000000000000013214061636517014554 xustar0030 mtime=1623670095.600101856 30 atime=1623670094.418102953 30 ctime=1623670095.600101856 elk-7.2.42/src/dynevs.f900000644002504400250440000000152614061636517016615 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynevs(ev,a,w) use modmain use modphonon implicit none ! arguments complex(8), intent(in) :: ev(nbph,nbph) complex(8), intent(in) :: a(nbph,nbph) real(8), intent(out) :: w(nbph) ! local variables integer i,j,k real(8) t1,t2 complex(8) z1 ! automatic arrays real(8) wt(nbph) ! find the eigenvalues and eigenvectors of the matrix a call eveqnzh(nbph,nbph,a,w) ! reorder eigenvalues so that the eigenvectors maximally overlap with ev wt(:)=w(:) do i=1,nbph j=1 t1=0.d0 do k=1,nbph z1=dot_product(ev(:,i),a(:,k)) t2=dble(z1)**2+aimag(z1)**2 if (t2.gt.t1) then j=k t1=t2 end if end do w(i)=wt(j) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/phonon.f900000644000000000000000000000013214061636517014545 xustar0030 mtime=1623670095.602101854 30 atime=1623670094.420102951 30 ctime=1623670095.602101854 elk-7.2.42/src/phonon.f900000644002504400250440000002267714061636517016620 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phonon use modmain use modphonon use modpw use modmpi use modomp use moddelf implicit none ! local variables integer ik,jk,iv(3),jspn,idm integer is,ia,ias,ip,nthd integer nmix,nwork,n,lp ! use Broyden mixing only integer, parameter :: mtype=3 real(8) ddv,a,b character(256) fext ! allocatable arrays real(8), allocatable :: evalfv(:,:),work(:) complex(8), allocatable :: dyn(:,:) complex(8), allocatable :: apwalm(:,:,:,:,:),apwalmq(:,:,:,:,:) complex(8), allocatable :: dapwalm(:,:,:,:),dapwalmq(:,:,:,:) complex(8), allocatable :: evecfv(:,:,:),devecfv(:,:,:) complex(8), allocatable :: evecsv(:,:),devecsv(:,:) ! initialise universal variables call init0 call init1 call init2 call init4 ! check k-point grid is commensurate with q-point grid iv(:)=mod(ngridk(:),ngridq(:)) if ((iv(1).ne.0).or.(iv(2).ne.0).or.(iv(3).ne.0)) then write(*,*) write(*,'("Error(phonon): k-point grid incommensurate with q-point grid")') write(*,'(" ngridk : ",3I6)') ngridk write(*,'(" ngridq : ",3I6)') ngridq write(*,*) stop end if if (spinpol) then write(*,*) write(*,'("Error(phonon): spin-polarised phonons not yet available")') write(*,*) stop end if ! check spin-spiral de-phasing is not used if (ssdph) then write(*,*) write(*,'("Error(phonon): ssdph should be .false. for DFPT phonons")') write(*,*) stop end if ! check for zero atoms if (natmtot.eq.0) return ! read in the density and potentials call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! size of mixing vector (complex array) nmix=2*size(dvsbs) ! determine the size of the mixer work array nwork=-1 call mixerifc(mtype,nmix,dvsbs,ddv,nwork,dvsbs) allocate(work(nwork)) ! allocate dynamical matrix column allocate(dyn(3,natmtot)) ! begin new dynamical matrix task 10 continue call dyntask(80,fext) ! if nothing more to do then return if (iqph.eq.0) return if (mp_mpi) then write(*,'("Info(phonon): working on ",A)') 'DYN'//trim(fext) ! open RMSDDVS.OUT open(65,file='RMSDDVS'//trim(fext),form='FORMATTED') end if ! zero the dynamical matrix row dyn(:,:)=0.d0 ! check to see if mass is considered infinite if (spmass(isph).le.0.d0) goto 20 ! generate the G+k+q-vectors and related quantities call gengkqvec(iqph) ! generate the G+q-vectors and related quantities call gengqvec(iqph) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.false.,iqph,ngvec,gqc,gclgq) ! generate the characteristic function derivative call gendcfun ! generate the gradient of the Kohn-Sham potential call gengvsmt ! initialise the potential derivative drhomt(:,:)=0.d0 drhoir(:)=0.d0 if (spinpol) then dmagmt(:,:,:)=0.d0 dmagir(:,:)=0.d0 end if call dpotks call gendvsig ! initialise the mixer iscl=0 call mixerifc(mtype,nmix,dvsbs,ddv,nwork,work) ! initialise the Fermi energy and occupancy derivatives defermi=0.d0 doccsv(:,:)=0.d0 ! set last self-consistent loop flag tlast=.false. ! begin the self-consistent loop do iscl=1,maxscl ! compute the Hamiltonian radial integral derivatives call dhmlrad ! zero the density and magnetisation derivatives drhomt(:,:)=0.d0 drhoir(:)=0.d0 if (spinpol) then dmagmt(:,:,:)=0.d0 dmagir(:,:)=0.d0 end if ! parallel loop over k-points call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evalfv,apwalm,apwalmq,dapwalm,dapwalmq) & !$OMP PRIVATE(evecfv,devecfv,evecsv,devecsv,jk,jspn) & !$OMP NUM_THREADS(nthd) allocate(evalfv(nstfv,nspnfv)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(apwalmq(ngkmax,apwordmax,lmmaxapw,natmtot,nspnfv)) allocate(dapwalm(ngkmax,apwordmax,lmmaxapw,nspnfv)) allocate(dapwalmq(ngkmax,apwordmax,lmmaxapw,nspnfv)) allocate(evecfv(nmatmax,nstfv,nspnfv),devecfv(nmatmax,nstfv,nspnfv)) allocate(evecsv(nstsv,nstsv),devecsv(nstsv,nstsv)) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! compute the matching coefficients and derivatives do jspn=1,nspnfv call match(ngk(jspn,ik),vgkc(:,:,jspn,ik),gkc(:,jspn,ik), & sfacgk(:,:,jspn,ik),apwalm(:,:,:,:,jspn)) call dmatch(iasph,ipph,ngk(jspn,ik),vgkc(:,:,jspn,ik), & apwalm(:,:,:,:,jspn),dapwalm(:,:,:,jspn)) call match(ngkq(jspn,ik),vgkqc(:,:,jspn,ik),gkqc(:,jspn,ik), & sfacgkq(:,:,jspn,ik),apwalmq(:,:,:,:,jspn)) call dmatch(iasph,ipph,ngkq(jspn,ik),vgkqc(:,:,jspn,ik), & apwalmq(:,:,:,:,jspn),dapwalmq(:,:,:,jspn)) end do ! get the first- and second-variational eigenvalues and eigenvectors from file call getevalfv(filext,0,vkl(:,ik),evalfv) call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,0,vkl(:,ik),evecsv) ! solve the first-variational eigenvalue equation derivative do jspn=1,nspnfv call deveqnfv(ngk(jspn,ik),ngkq(jspn,ik),igkig(:,jspn,ik), & igkqig(:,jspn,ik),vgkc(:,:,jspn,ik),vgkqc(:,:,jspn,ik),evalfv(:,jspn), & apwalm(:,:,:,:,jspn),apwalmq(:,:,:,:,jspn),dapwalm(:,:,:,jspn), & dapwalmq(:,:,:,jspn),evecfv(:,:,jspn),devalfv(:,jspn,ik), & devecfv(:,:,jspn)) end do if (spinsprl) then ! solve the spin-spiral second-variational eigenvalue equation derivative ! call deveqnss(ngk(:,ik),ngkq(:,ik),igkig(:,:,ik),igkqig(:,:,ik),apwalm, & ! dapwalm,devalfv,evecfv,evecfvq,devecfv,evalsv(:,jk),evecsv,devecsv) else ! solve the second-variational eigenvalue equation derivative ! call deveqnsv(ngk(1,ik),ngkq(1,ik),igkig(:,1,ik),igkqig(:,1,ik), & ! vgkqc(:,:,1,ik),apwalm,dapwalm,devalfv,evecfv,evecfvq,devecfv, & ! evalsv(:,jk),evecsv,devecsv) end if !******* devalsv(:,ik)=devalfv(:,1,ik) !******* ! write the eigenvalue/vector derivatives to file call putdevecfv(ik,devecfv) if (tevecsv) call putdevecsv(ik,devecsv) ! add to the density and magnetisation derivatives call drhomagk(ngk(:,ik),ngkq(:,ik),igkig(:,:,ik),igkqig(:,:,ik), & occsv(:,jk),doccsv(:,ik),apwalm,apwalmq,dapwalm,evecfv,devecfv,evecsv, & devecsv) end do !$OMP END DO deallocate(evalfv,apwalm,apwalmq,dapwalm,dapwalmq) deallocate(evecfv,devecfv,evecsv,devecsv) !$OMP END PARALLEL call freethd(nthd) ! broadcast eigenvalue derivative arrays to every process n=nstfv*nspnfv do ik=1,nkptnr lp=mod(ik-1,np_mpi) call mpi_bcast(devalfv(:,:,ik),n,mpi_double_precision,lp,mpicom,ierror) call mpi_bcast(devalsv(:,ik),nstsv,mpi_double_precision,lp,mpicom,ierror) end do ! convert to spherical harmonic representation call drhomagsh ! convert from a coarse to a fine radial mesh call zfmtctof(drhomt) do idm=1,ndmag call zfmtctof(dmagmt(:,:,idm)) end do ! add densities from each process and redistribute if (np_mpi.gt.1) then n=npmtmax*natmtot call mpi_allreduce(mpi_in_place,drhomt,n,mpi_double_complex,mpi_sum, & mpicom,ierror) call mpi_allreduce(mpi_in_place,drhoir,ngtot,mpi_double_complex,mpi_sum, & mpicom,ierror) if (spinpol) then n=npmtmax*natmtot*ndmag call mpi_allreduce(mpi_in_place,dmagmt,n,mpi_double_complex,mpi_sum, & mpicom,ierror) n=ngtot*ndmag call mpi_allreduce(mpi_in_place,dmagir,n,mpi_double_complex,mpi_sum, & mpicom,ierror) end if end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! add gradient contribution to density derivative call gradrhomt ! compute the Kohn-Sham potential derivative call dpotks ! mix the old potential and field with the new call mixerifc(mtype,nmix,dvsbs,ddv,nwork,work) if (mp_mpi) then write(65,'(G18.10)') ddv flush(65) end if ! exit self-consistent loop if required if (tlast) goto 20 ! check for convergence if (iscl.ge.2) then if (ddv.lt.epspot) tlast=.true. end if ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) ! Fourier transform Kohn-Sham potential derivative to G+q-space call gendvsig ! compute the occupation number derivatives call doccupy ! end the self-consistent loop end do write(*,*) write(*,'("Warning(phonon): failed to reach self-consistency after ",I4,& &" loops")') maxscl 20 continue ! close the RMSDDVS.OUT file if (mp_mpi) close(65) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! generate the dynamical matrix row from force derivatives call dforce(dyn) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! write dynamical matrix row to file if (mp_mpi) then do ias=1,natmtot is=idxis(ias) ia=idxia(ias) do ip=1,3 a=dble(dyn(ip,ias)) b=aimag(dyn(ip,ias)) if (abs(a).lt.1.d-12) a=0.d0 if (abs(b).lt.1.d-12) b=0.d0 write(80,'(2G18.10," : is = ",I4,", ia = ",I4,", ip = ",I4)') a,b,is,ia,ip end do end do close(80) ! write the complex Kohn-Sham potential derivative to file call writedvs(fext) end if ! delete the non-essential files call delfiles(devec=.true.) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/dynrtoq.f900000644000000000000000000000013214061636517014744 xustar0030 mtime=1623670095.604101852 30 atime=1623670094.422102949 30 ctime=1623670095.604101852 elk-7.2.42/src/dynrtoq.f900000644002504400250440000000171514061636517017005 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynrtoq(vpl,dynr,dynp) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: vpl(3) complex(8), intent(in) :: dynr(nbph,nbph,nqptnr) complex(8), intent(out) :: dynp(nbph,nbph) ! local variables integer i1,i2,i3,ir,i,j real(8) t1 complex(8) z1 dynp(:,:)=0.d0 ! loop over R-vectors ir=0 do i3=ngridq(3)/2-ngridq(3)+1,ngridq(3)/2 do i2=ngridq(2)/2-ngridq(2)+1,ngridq(2)/2 do i1=ngridq(1)/2-ngridq(1)+1,ngridq(1)/2 ir=ir+1 t1=-twopi*(vpl(1)*dble(i1)+vpl(2)*dble(i2)+vpl(3)*dble(i3)) z1=cmplx(cos(t1),sin(t1),8) do i=1,nbph do j=1,nbph dynp(i,j)=dynp(i,j)+z1*dynr(i,j,ir) end do end do end do end do end do ! symmetrise the dynamical matrix call dynsym(vpl,dynp) end subroutine elk-7.2.42/src/PaxHeaders.21776/mcmillan.f900000644000000000000000000000013214061636517015040 xustar0030 mtime=1623670095.605101851 30 atime=1623670094.424102948 30 ctime=1623670095.605101851 elk-7.2.42/src/mcmillan.f900000644002504400250440000000275114061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, A. Sanna, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine mcmillan(w,a2f,lambda,wlog,wrms,tc) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: w(nwplot),a2f(nwplot) real(8), intent(out) :: lambda,wlog,wrms,tc ! local variables integer iw real(8) l1,l2,f1,f2,t1 ! allocatable arrays real(8), allocatable :: f(:) ! external functions real(8), external :: splint allocate(f(nwplot)) ! compute the total lambda do iw=1,nwplot if (w(iw).gt.1.d-8) then f(iw)=a2f(iw)/w(iw) else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) lambda=2.d0*t1 ! compute the logarithmic average frequency do iw=1,nwplot if (w(iw).gt.1.d-8) then f(iw)=a2f(iw)*log(w(iw))/w(iw) else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) t1=(2.d0/lambda)*t1 wlog=exp(t1) ! compute < w^2 >^(1/2) do iw=1,nwplot if (w(iw).gt.1.d-8) then f(iw)=a2f(iw)*w(iw) else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) t1=(2.d0/lambda)*t1 wrms=sqrt(abs(t1)) ! compute McMillan-Allen-Dynes superconducting critical temperature t1=(-1.04d0*(1.d0+lambda))/(lambda-mustar-0.62d0*lambda*mustar) tc=(wlog/(1.2d0*kboltz))*exp(t1) l1=2.46d0*(1.d0+3.8d0*mustar) l2=1.82d0*(1.d0+6.3d0*mustar)*(wrms/wlog) f1=(1.d0+(lambda/l1)**(3.d0/2.d0))**(1.d0/3.d0) f2=1.d0+(wrms/wlog-1.d0)*(lambda**2)/(lambda**2+l2**2) tc=tc*f1*f2 deallocate(f) end subroutine elk-7.2.42/src/PaxHeaders.21776/genephmat.f900000644000000000000000000000013014061636517015212 xustar0029 mtime=1623670095.60710185 30 atime=1623670094.425102947 29 ctime=1623670095.60710185 elk-7.2.42/src/genephmat.f900000644002504400250440000000760714061636517017263 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genephmat(iq,ik,de,a,dvmt,dvir,ephmat) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq,ik real(8), intent(in) :: de complex(8), intent(in) :: a(nbph,nbph) complex(8), intent(in) :: dvmt(npcmtmax,natmtot,nbph),dvir(ngtot,nbph) complex(8), intent(out) :: ephmat(nstsv,nstsv,nbph) ! local variables integer jk,jkq,isym,ld integer nst,nstq,ist,jst integer ispn,jspn,is,ias integer nrc,nrci,npc,i,j,l integer igp,igpq,ifg real(8) vpql(3) ! automatic arrays integer idx(nstsv),idxq(nstsv) integer ngp(nspnfv),ngpq(nspnfv) complex(8) zfmt1(npcmtmax),zfmt2(npcmtmax) complex(8) z(ngkmax),x(nbph) ! allocatable arrays integer, allocatable :: igpig(:,:),igpqig(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgp(:,:,:) complex(8), allocatable :: wfmtq(:,:,:,:),wfgpq(:,:,:) complex(8), allocatable :: wfir1(:),wfir2(:) ! external functions complex(8), external :: zdotc ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! k+q-vector in lattice coordinates vpql(:)=vkl(:,ik)+vql(:,iq) ! find reduced k-point index corresponding to k+q call findkpt(vpql,isym,jkq) ! index to states in energy window around Fermi energy nst=0 nstq=0 do ist=1,nstsv if (abs(evalsv(ist,jk)-efermi).lt.de) then nst=nst+1 idx(nst)=ist end if if (abs(evalsv(ist,jkq)-efermi).lt.de) then nstq=nstq+1 idxq(nstq)=ist end if end do ! generate the second-variational wavefunctions for all states at k and k+q allocate(igpig(ngkmax,nspnfv)) allocate(wfmt(npcmtmax,natmtot,nspinor,nst),wfgp(ngkmax,nspinor,nst)) call genwfsvp(.false.,.true.,nst,idx,ngridg,igfft,vkl(:,ik),ngp,igpig,wfmt, & ngkmax,wfgp) allocate(igpqig(ngkmax,nspnfv)) allocate(wfmtq(npcmtmax,natmtot,nspinor,nstq),wfgpq(ngkmax,nspinor,nstq)) call genwfsvp(.false.,.true.,nstq,idxq,ngridg,igfft,vpql,ngpq,igpqig,wfmtq, & ngkmax,wfgpq) ! zero the electron-phonon coupling matrix elements ephmat(:,:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! do j=1,nst jst=idx(j) do i=1,nstq ist=idxq(i) x(:)=0.d0 do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) if (spinpol) then zfmt1(1:npc)=wfmtq(1:npc,ias,1,i)*conjg(wfmt(1:npc,ias,1,j)) & +wfmtq(1:npc,ias,2,i)*conjg(wfmt(1:npc,ias,2,j)) else zfmt1(1:npc)=wfmtq(1:npc,ias,1,i)*conjg(wfmt(1:npc,ias,1,j)) end if call zfsht(nrc,nrci,zfmt1,zfmt2) do l=1,nbph x(l)=x(l)+zdotc(npc,zfmt2,1,dvmt(:,ias,l),1) end do end do ephmat(ist,jst,:)=x(:) end do end do deallocate(wfmt,wfmtq) !---------------------------! ! interstitial part ! !---------------------------! allocate(wfir1(ngtot),wfir2(ngtot)) do j=1,nst jst=idx(j) do ispn=1,nspinor jspn=jspnfv(ispn) ! Fourier transform wavefunction to real-space wfir1(:)=0.d0 do igp=1,ngp(jspn) ifg=igfft(igpig(igp,jspn)) wfir1(ifg)=wfgp(igp,ispn,j) end do call zfftifc(3,ngridg,1,wfir1) do l=1,nbph ! apply potential derivative to wavefunction wfir2(:)=dvir(:,l)*wfir1(:) ! Fourier transform to G+p+q-space call zfftifc(3,ngridg,-1,wfir2) do igpq=1,ngpq(jspn) ifg=igfft(igpqig(igpq,jspn)) z(igpq)=wfir2(ifg) end do do i=1,nstq ist=idxq(i) ! compute inner product ephmat(ist,jst,l)=ephmat(ist,jst,l)+zdotc(ngpq(jspn),wfgpq(:,ispn,i), & 1,z,1) end do end do end do end do deallocate(wfir1,wfir2) ! convert to phonon coordinates ld=nstsv**2 do i=1,nstq ist=idxq(i) do j=1,nst jst=idx(j) x(:)=ephmat(ist,jst,:) call zgemv('T',nbph,nbph,zone,a,nbph,x,1,zzero,ephmat(ist,jst,1),ld) end do end do deallocate(igpig,igpqig,wfgp,wfgpq) end subroutine elk-7.2.42/src/PaxHeaders.21776/gengkqvec.f900000644000000000000000000000013214061636517015216 xustar0030 mtime=1623670095.608101849 30 atime=1623670094.427102945 30 ctime=1623670095.608101849 elk-7.2.42/src/gengkqvec.f900000644002504400250440000000222314061636517017252 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gengkqvec(iq) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq ! local variables integer ik,jspn real(8) vl(3),vc(3) ! loop over non-reduced k-point set do ik=1,nkptnr ! k+q-vectors in lattice and Cartesian coordinates vkql(1:3,ik)=vkl(1:3,ik)+vql(1:3,iq) vkqc(1:3,ik)=vkc(1:3,ik)+vqc(1:3,iq) do jspn=1,nspnfv vl(:)=vkql(:,ik) vc(:)=vkqc(:,ik) ! spin-spiral case if (spinsprl) then if (jspn.eq.1) then vl(:)=vl(:)+0.5d0*vqlss(:) vc(:)=vc(:)+0.5d0*vqcss(:) else vl(:)=vl(:)-0.5d0*vqlss(:) vc(:)=vc(:)-0.5d0*vqcss(:) end if end if ! generate the G+k+q-vectors call gengkvec(ngvec,ivg,vgc,vl,vc,gkmax,ngkmax,ngkq(jspn,ik), & igkqig(:,jspn,ik),vgkql(:,:,jspn,ik),vgkqc(:,:,jspn,ik),gkqc(:,jspn,ik)) ! generate structure factors for the G+k+q-vectors call gensfacgp(ngkq(jspn,ik),vgkqc(:,:,jspn,ik),ngkmax,sfacgkq(:,:,jspn,ik)) end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/genmcph.f900000644000000000000000000000013214061636517014665 xustar0030 mtime=1623670095.609101848 30 atime=1623670094.429102943 30 ctime=1623670095.609101848 elk-7.2.42/src/genmcph.f900000644002504400250440000000131714061636517016724 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure subroutine genmcph(w,ev,a) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: w(nbph) complex(8), intent(in) :: ev(nbph,nbph) complex(8), intent(out) :: a(nbph,nbph) ! local variables integer is,ia,ip,i,j real(8) t1 do j=1,nbph i=0 do is=1,nspecies t1=2.d0*spmass(is)*w(j) if (t1.gt.1.d-8) then t1=1.d0/sqrt(t1) else t1=0.d0 end if do ia=1,natoms(is) do ip=1,3 i=i+1 a(i,j)=t1*ev(i,j) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/putdevecfv.f900000644000000000000000000000013214061636517015417 xustar0030 mtime=1623670095.611101846 30 atime=1623670094.430102942 30 ctime=1623670095.611101846 elk-7.2.42/src/putdevecfv.f900000644002504400250440000000200714061636517017453 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putdevecfv(ik,devecfv) use modmain use modphonon use modramdisk implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: devecfv(nmatmax,nstfv,nspnfv) ! local variables integer recl character(256) fext,fname ! construct the dynamical matrix file extension call dynfext(iqph,isph,iaph,ipph,fext) ! construct filename fname=trim(scrpath)//'DEVECFV'//trim(fext) ! find the record length inquire(iolength=recl) vkl(:,ik),nmatmax,nstfv,nspnfv,devecfv !$OMP CRITICAL(u222) open(222,file=fname,form='UNFORMATTED',access='DIRECT',recl=recl) write(222,rec=ik) vkl(:,ik),nmatmax,nstfv,nspnfv,devecfv close(222) ! write to RAM disk if required if (ramdisk) then call putrd(fname,ik,v1=vkl(:,ik),n1=nmatmax,n2=nstfv,n3=nspnfv, & nzv=nmatmax*nstfv*nspnfv,zva=devecfv) end if !$OMP END CRITICAL(u222) end subroutine elk-7.2.42/src/PaxHeaders.21776/getdevecfv.f900000644000000000000000000000013114061636517015365 xustar0030 mtime=1623670095.612101845 29 atime=1623670094.43210294 30 ctime=1623670095.612101845 elk-7.2.42/src/getdevecfv.f900000644002504400250440000000410314061636517017421 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getdevecfv(ik,iq,is,ia,ip,devecfv) use modmain use modphonon use modramdisk implicit none ! arguments integer, intent(in) :: ik,iq,is,ia,ip complex(8), intent(out) :: devecfv(nmatmax,nstfv,nspnfv) ! local variables logical tgs integer recl,nmatmax_,nstfv_,nspnfv_ real(8) vkl_(3),t1 character(256) fext,fname ! construct the dynamical matrix file extension call dynfext(iq,is,ia,ip,fext) ! construct filename fname=trim(scrpath)//'DEVECFV'//trim(fext) ! find the record length inquire(iolength=recl) vkl_,nmatmax_,nstfv_,nspnfv_,devecfv !$OMP CRITICAL(u222) ! read from RAM disk if required if (ramdisk) then call getrd(fname,ik,tgs,v1=vkl_,n1=nmatmax_,n2=nstfv_,n3=nspnfv_, & nzv=nmatmax*nstfv*nspnfv,zva=devecfv) if (tgs) goto 10 end if open(222,file=fname,form='UNFORMATTED',access='DIRECT',recl=recl) read(222,rec=ik) vkl_,nmatmax_,nstfv_,nspnfv_,devecfv 10 continue !$OMP END CRITICAL(u222) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getdevecfv): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" ",A," : ",3G18.10)') trim(fname),vkl_ write(*,*) stop end if if (nmatmax.ne.nmatmax_) then write(*,*) write(*,'("Error(getdevecfv): differing nmatmax for k-point ",I8)') ik write(*,'(" current : ",I8)') nmatmax write(*,'(" ",A," : ",I8)') trim(fname),nmatmax_ write(*,*) stop end if if (nstfv.ne.nstfv_) then write(*,*) write(*,'("Error(getdevecfv): differing nstfv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstfv write(*,'(" ",A," : ",I8)') trim(fname),nstfv_ write(*,*) stop end if if (nspnfv.ne.nspnfv_) then write(*,*) write(*,'("Error(getdevecfv): differing nspnfv for k-point ",I8)') ik write(*,'(" current : ",I8)') nspnfv write(*,'(" ",A," : ",I8)') trim(fname),nspnfv_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/putdevecsv.f900000644000000000000000000000013214061636517015434 xustar0030 mtime=1623670095.614101843 30 atime=1623670094.434102938 30 ctime=1623670095.614101843 elk-7.2.42/src/putdevecsv.f900000644002504400250440000000167414061636517017501 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putdevecsv(ik,devecsv) use modmain use modphonon use modramdisk implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: devecsv(nstsv,nstsv) ! local variables integer recl character(256) fext,fname ! construct the dynamical matrix file extension call dynfext(iqph,isph,iaph,ipph,fext) ! construct filename fname=trim(scrpath)//'DEVECSV'//trim(fext) ! find the record length inquire(iolength=recl) vkl(:,ik),nstsv,devecsv !$OMP CRITICAL(u226) open(226,file=fname,form='UNFORMATTED',access='DIRECT',recl=recl) write(226,rec=ik) vkl(:,ik),nstsv,devecsv close(226) ! write to RAM disk if required if (ramdisk) then call putrd(fname,ik,v1=vkl(:,ik),n1=nstsv,nzv=nstsv*nstsv,zva=devecsv) end if !$OMP END CRITICAL(u226) end subroutine elk-7.2.42/src/PaxHeaders.21776/getdevecsv.f900000644000000000000000000000013214061636517015403 xustar0030 mtime=1623670095.615101842 30 atime=1623670094.435102937 30 ctime=1623670095.615101842 elk-7.2.42/src/getdevecsv.f900000644002504400250440000000302214061636517017435 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getdevecsv(ik,iq,is,ia,ip,devecsv) use modmain use modphonon use modramdisk implicit none ! arguments integer, intent(in) :: ik,iq,is,ia,ip complex(8), intent(out) :: devecsv(nstsv,nstsv) ! local variables logical tgs integer recl,nstsv_ real(8) vkl_(3),t1 character(256) fext,fname ! construct the dynamical matrix file extension call dynfext(iq,is,ia,ip,fext) ! construct filename fname=trim(scrpath)//'DEVECSV'//trim(fext) ! find the record length inquire(iolength=recl) vkl_,nstsv_,devecsv !$OMP CRITICAL(u226) ! read from RAM disk if required if (ramdisk) then call getrd(fname,ik,tgs,v1=vkl_,n1=nstsv_,nzv=nstsv*nstsv,zva=devecsv) if (tgs) goto 10 end if open(226,file=fname,form='UNFORMATTED',access='DIRECT',recl=recl) read(226,rec=ik) vkl_,nstsv_,devecsv 10 continue !$OMP END CRITICAL(u226) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getdevecsv): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" ",A," : ",3G18.10)') trim(fname),vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getdevecsv): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" ",A," : ",I8)') trim(fname),nstsv_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/phononsc.f900000644000000000000000000000013014061636517015071 xustar0029 mtime=1623670095.61710184 30 atime=1623670094.437102936 29 ctime=1623670095.61710184 elk-7.2.42/src/phononsc.f900000644002504400250440000001171614061636517017136 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phononsc use modmain use modphonon use modstore use modmpi use moddelf implicit none ! local variables integer is,ia,ja,ias,jas integer ip,nph,p,n,i real(8) a,b,t1 real(8) ft(3,maxatoms*maxspecies) complex(8) z1,z2 ! allocatable arrays real(8), allocatable :: vsmt_(:,:),vsir_(:) complex(8), allocatable :: dyn(:,:) ! store original parameters natoms_(:)=natoms(:) avec_(:,:)=avec(:,:) atposl_(:,:,:)=atposl(:,:,:) bfcmt0_(:,:,:)=bfcmt0(:,:,:) mommtfix_(:,:,:)=mommtfix(:,:,:) tshift_=tshift tforce_=tforce autokpt_=autokpt primcell_=primcell ngridk_(:)=ngridk(:) ! no shifting of atomic basis allowed tshift=.false. ! require forces tforce=.true. ! determine k-point grid size from radkpt autokpt=.true. ! no reduction to primitive cell primcell=.false. ! initialise universal variables call init0 ! initialise q-point dependent variables call init2 ! store original parameters natmtot_=natmtot idxis_(1:natmtot)=idxis(1:natmtot) bvec_(:,:)=bvec(:,:) binv_(:,:)=binv(:,:) atposc_(:,:,:)=atposc(:,:,:) ngridg_(:)=ngridg(:) ngtot_=ngtot if (allocated(ivg_)) deallocate(ivg_) allocate(ivg_(3,ngtot_)) ivg_(:,:)=ivg(:,:) if (allocated(igfft_)) deallocate(igfft_) allocate(igfft_(ngtot_)) igfft_(:)=igfft(:) ! allocate the Kohn-Sham potential derivative arrays if (allocated(dvsbs)) deallocate(dvsbs) n=npmtmax*natmtot+ngtot allocate(dvsbs(n)) dvsmt(1:npmtmax,1:natmtot)=>dvsbs(1:) i=npmtmax*natmtot+1 dvsir(1:ngtot)=>dvsbs(i:) ! allocate supercell offset vector array if (allocated(vscph)) deallocate(vscph) allocate(vscph(3,nqptnr)) ! allocate dynamical matrix column allocate(dyn(3,natmtot)) ! begin new phonon task 10 continue natoms(:)=natoms_(:) ! find a dynamical matrix to calculate call dyntask(80,filext) ! if nothing more to do then restore original input parameters and return if (iqph.eq.0) then filext='.OUT' natoms(:)=natoms_(:) avec(:,:)=avec_(:,:) atposl(:,:,:)=atposl_(:,:,:) bfcmt0(:,:,:)=bfcmt0_(:,:,:) mommtfix(:,:,:)=mommtfix_(:,:,:) tshift=tshift_ tforce=tforce_ autokpt=autokpt_ primcell=primcell_ ngridk(:)=ngridk_(:) deallocate(ivg_,igfft_) return end if if (mp_mpi) write(*,'("Info(phononsc): working on ",A)') 'DYN'//trim(filext) ! dry run: just generate empty DYN files if (task.eq.202) goto 10 ! zero the dynamical matrix row dyn(:,:)=0.d0 ! zero the Kohn-Sham potential derivative dvsmt(:,:)=0.d0 dvsir(:)=0.d0 ! check to see if mass is considered infinite if (spmass(isph).le.0.d0) goto 20 ! loop over phases: 0 = cos and 1 = sin displacements if ((ivq(1,iqph).eq.0).and.(ivq(2,iqph).eq.0).and.(ivq(3,iqph).eq.0)) then nph=0 else nph=1 end if ! initialise or read the charge density and potentials from file if (task.eq.200) then trdstate=.false. else trdstate=.true. end if ! loop over cos and sin displacements do p=0,nph ! generate the supercell with negative displacement call genscph(p,-0.5d0*deltaph) ! run the ground-state calculation call gndstate ! subsequent calculations will read in this supercell potential trdstate=.true. ! store the total force for this displacement do ias=1,natmtot ft(:,ias)=forcetot(:,ias) end do ! store the Kohn-Sham potential for this displacement allocate(vsmt_(npmtmax,natmtot),vsir_(ngtot)) vsmt_(:,:)=vsmt(:,:) vsir_(:)=vsir(:) ! generate the supercell again with positive displacement call genscph(p,0.5d0*deltaph) ! run the ground-state calculation again call gndstate ! compute the complex Kohn-Sham potential derivative with implicit q-phase call phscdvs(p,vsmt_,vsir_) deallocate(vsmt_,vsir_) ! Fourier transform the force differences to obtain the dynamical matrix z1=1.d0/(dble(nscph)*deltaph) ! multiply by i for sin-like displacement if (p.eq.1) z1=z1*zi ias=0 jas=0 do is=1,nspecies ja=0 do ia=1,natoms_(is) ias=ias+1 do i=1,nscph ja=ja+1 jas=jas+1 t1=-dot_product(vqc(:,iqph),vscph(:,i)) z2=z1*cmplx(cos(t1),sin(t1),8) do ip=1,3 t1=-(forcetot(ip,jas)-ft(ip,jas)) dyn(ip,ias)=dyn(ip,ias)+z2*t1 end do end do end do end do end do 20 continue ! write dynamical matrix row to file if (mp_mpi) then ias=0 do is=1,nspecies do ia=1,natoms_(is) ias=ias+1 do ip=1,3 a=dble(dyn(ip,ias)) b=aimag(dyn(ip,ias)) if (abs(a).lt.1.d-12) a=0.d0 if (abs(b).lt.1.d-12) b=0.d0 write(80,'(2G18.10," : is = ",I4,", ia = ",I4,", ip = ",I4)') a,b,is, & ia,ip end do end do end do close(80) ! write the complex Kohn-Sham potential derivative to file natoms(:)=natoms_(:) natmtot=natmtot_ idxis(1:natmtot)=idxis_(1:natmtot) ngridg(:)=ngridg_(:) call writedvs(filext) end if ! delete the non-essential files call delfiles(evec=.true.,eval=.true.,occ=.true.) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/genscph.f900000644000000000000000000000013214061636517014673 xustar0030 mtime=1623670095.618101839 30 atime=1623670094.439102934 30 ctime=1623670095.618101839 elk-7.2.42/src/genscph.f900000644002504400250440000000327414061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genscph(p,dph) use modmain use modphonon use modstore implicit none ! arguments integer, intent(in) :: p real(8), intent(in) :: dph ! local variables integer is,ia,na,i real(8) vc(3),t1 if ((p.ne.0).and.(p.ne.1)) then write(*,*) write(*,'("Error(genscph): phase (p) should be 0 or 1 : ",I8)') p write(*,*) stop end if ! find the smallest supercell which contains the q-vector call findscq(iqph,avec_,nscph,vscph) ! construct supercell atomic positions and magnetic fields do is=1,nspecies na=0 do ia=1,natoms_(is) do i=1,nscph na=na+1 if (na.gt.maxatoms) then write(*,*) write(*,'("Error(genscph): too many atoms in supercell : ",I8)') na write(*,'(" for species ",I4)') is write(*,'("Adjust maxatoms in modmain and recompile code")') write(*,*) stop end if vc(:)=vscph(:,i)+atposc_(:,ia,is) ! add small periodic displacement if ((isph.eq.is).and.(iaph.eq.ia)) then t1=dot_product(vqc(:,iqph),vscph(:,i)) if (p.eq.0) then vc(ipph)=vc(ipph)+dph*cos(t1) else vc(ipph)=vc(ipph)+dph*sin(t1) end if end if ! convert to new lattice coordinates call r3mv(ainv,vc,atposl(:,na,is)) call r3frac(epslat,atposl(:,na,is)) ! set muffin-tin fields and fixed spin moments if required if (spinpol) then bfcmt0(:,na,is)=bfcmt0_(:,ia,is) mommtfix(:,na,is)=mommtfix_(:,ia,is) end if end do end do natoms(is)=na end do end subroutine elk-7.2.42/src/PaxHeaders.21776/phdisp.f900000644000000000000000000000013214061636517014533 xustar0030 mtime=1623670095.620101837 30 atime=1623670094.440102933 30 ctime=1623670095.620101837 elk-7.2.42/src/phdisp.f900000644002504400250440000000356514061636517016601 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phdisp use modmain use modphonon implicit none ! local variables integer iq,i,iv real(8) wmin,wmax ! allocatable arrays complex(8), allocatable :: dynq(:,:,:),dynr(:,:,:) complex(8), allocatable :: dynp(:,:),ev(:,:) ! initialise universal variables call init0 call init2 ! allocate local arrays allocate(dynq(nbph,nbph,nqpt)) allocate(dynr(nbph,nbph,nqptnr)) allocate(dynp(nbph,nbph)) allocate(ev(nbph,nbph)) ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! Fourier transform the dynamical matrices to real-space call dynqtor(dynq,dynr) ! generate a set of q-point vectors along a path in the Brillouin zone call plotpt1d(bvec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) wmin=0.d0 wmax=0.d0 ! compute the phonon frequencies along the path do iq=1,npp1d ! compute the dynamical matrix at this particular q-point call dynrtoq(vplp1d(:,iq),dynr,dynp) ! find the phonon frequencies and eigenvectors call dynev(dynp,wphq(:,iq),ev) wmin=min(wmin,wphq(1,iq)) wmax=max(wmax,wphq(nbph,iq)) end do wmax=wmax+(wmax-wmin)*0.5d0 wmin=wmin-(wmax-wmin)*0.5d0 ! output the vertex location lines open(50,file='PHDLINES.OUT',form='FORMATTED') do iv=1,nvp1d write(50,'(2G18.10)') dvp1d(iv),wmin write(50,'(2G18.10)') dvp1d(iv),wmax write(50,*) end do close(50) ! output the phonon dispersion open(50,file='PHDISP.OUT',form='FORMATTED') do i=1,nbph do iq=1,npp1d write(50,'(2G18.10)') dpp1d(iq),wphq(i,iq) end do write(50,*) end do close(50) write(*,*) write(*,'("Info(phdisp):")') write(*,'(" phonon dispersion written to PHDISP.OUT")') write(*,'(" vertex location lines written to PHDLINES.OUT")') deallocate(dynq,dynr,dynp,ev) end subroutine elk-7.2.42/src/PaxHeaders.21776/dynsymapp.f900000644000000000000000000000013214061636517015270 xustar0030 mtime=1623670095.621101837 30 atime=1623670094.442102931 30 ctime=1623670095.621101837 elk-7.2.42/src/dynsymapp.f900000644002504400250440000000360114061636517017325 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2005-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynsymapp(isym,vpl,dyn,dyns) use modmain use modphonon implicit none ! arguments integer, intent(in) :: isym real(8), intent(in) :: vpl(3) complex(8), intent(in) :: dyn(nbph,nbph) complex(8), intent(inout) :: dyns(nbph,nbph) ! local variables integer is,ia,ja,ias,jas integer lspl,ilspl,i,j,k,l,m,n real(8) sl(3,3),sic(3,3),v(3),t1 real(8) a(3,3),b(3,3),c(3,3) complex(8) z1 ! automatic arrays integer map(natmtot) complex(8) zph(natmtot) ! index to spatial rotation in lattice point group lspl=lsplsymc(isym) ! the inverse of the spatial symmetry ilspl=isymlat(lspl) ! symmetry matrix in lattice coordinates sl(:,:)=dble(symlat(:,:,lspl)) ! inverse symmetry matrix in Cartesian coordinates sic(:,:)=symlatc(:,:,ilspl) ! operate with symmetry matrix on vpl call r3mtv(sl,vpl,v) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) ! equivalent atom with this symmetry ja=ieqatom(ia,is,isym) jas=idxas(ja,is) map(ias)=jas ! phase factor t1=twopi*dot_product(vpl(:),atposl(:,ia,is)) z1=cmplx(cos(t1),sin(t1),8) zph(ias)=z1 t1=-twopi*dot_product(v(:),atposl(:,ja,is)) zph(ias)=z1*cmplx(cos(t1),sin(t1),8) end do end do ! rotate and phase-shift dynamical matrix with symmetry do ias=1,natmtot i=3*(ias-1) k=3*(map(ias)-1) do jas=1,natmtot j=3*(jas-1) l=3*(map(jas)-1) do m=1,3 do n=1,3 a(m,n)=dble(dyn(i+m,j+n)) b(m,n)=aimag(dyn(i+m,j+n)) end do end do call r3mm(sic,a,c) call r3mmt(c,sic,a) call r3mm(sic,b,c) call r3mmt(c,sic,b) z1=zph(ias)*conjg(zph(jas)) do m=1,3 do n=1,3 dyns(k+m,l+n)=dyns(k+m,l+n)+z1*cmplx(a(m,n),b(m,n),8) end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dynsym.f900000644000000000000000000000013214061636517014567 xustar0030 mtime=1623670095.623101835 30 atime=1623670094.444102929 30 ctime=1623670095.623101835 elk-7.2.42/src/dynsym.f900000644002504400250440000000234114061636517016624 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006-2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynsym(vpl,dynp) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: vpl(3) complex(8), intent(inout) :: dynp(nbph,nbph) ! local variables integer isym,lspl,i,j,n real(8) v1(3),v2(3),s(3,3),t1 ! automatic arrays complex(8) dyns(nbph,nbph) ! map input vector to first Brillouin zone v1(:)=vpl(:) call vecfbz(epslat,bvec,v1) n=0 dyns(:,:)=0.d0 ! use the symmetries which leave vpl invariant do isym=1,nsymcrys if (.not.tv0symc(isym)) cycle lspl=lsplsymc(isym) s(:,:)=dble(symlat(:,:,lspl)) call r3mtv(s,v1,v2) t1=abs(v1(1)-v2(1))+abs(v1(2)-v2(2))+abs(v1(3)-v2(3)) if (t1.lt.epslat) then call dynsymapp(isym,v1,dynp,dyns) n=n+1 end if end do if (n.eq.0) then write(*,*) write(*,'("Error(dynsym): no symmetries leave vpl invariant")') write(*,*) stop end if t1=1.d0/dble(n) dynp(:,:)=t1*dyns(:,:) ! make the matrix Hermitian do j=1,nbph do i=1,j-1 dynp(i,j)=0.5d0*(dynp(i,j)+conjg(dynp(j,i))) dynp(j,i)=conjg(dynp(i,j)) end do dynp(j,j)=dble(dynp(j,j)) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/dynev.f900000644000000000000000000000013214061636517014371 xustar0030 mtime=1623670095.624101834 30 atime=1623670094.445102928 30 ctime=1623670095.624101834 elk-7.2.42/src/dynev.f900000644002504400250440000000236014061636517016427 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynev(dynp,w,ev) use modmain use modphonon implicit none ! arguments complex(8), intent(in) :: dynp(nbph,nbph) real(8), intent(out) :: w(nbph) complex(8), intent(out) :: ev(nbph,nbph) ! local variables integer is,ia,js,ja integer ip,jp,i,j real(8) t1 ev(:,:)=0.d0 i=0 do is=1,nspecies do ia=1,natoms(is) do ip=1,3 i=i+1 j=0 do js=1,nspecies ! mass factor if ((spmass(is).le.0.d0).or.(spmass(js).le.0.d0)) then ! infinite mass t1=0.d0 else t1=1.d0/sqrt(spmass(is)*spmass(js)) end if do ja=1,natoms(js) do jp=1,3 j=j+1 if (i.le.j) then ! use Hermitian average of dynamical matrix ev(i,j)=0.5d0*t1*(dynp(i,j)+conjg(dynp(j,i))) end if end do end do end do end do end do end do ! find the eigenvalues and eigenvectors of the dynamical matrix call eveqnzh(nbph,nbph,ev,w) do i=1,nbph if (w(i).ge.0.d0) then w(i)=sqrt(w(i)) else w(i)=-sqrt(abs(w(i))) end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/phdos.f900000644000000000000000000000013214061636517014361 xustar0030 mtime=1623670095.626101832 30 atime=1623670094.447102926 30 ctime=1623670095.626101832 elk-7.2.42/src/phdos.f900000644002504400250440000001011514061636517016414 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phdos use modmain use modphonon use modtest implicit none ! local variables integer iq,i,iw integer i1,i2,i3 real(8) wmin,wmax,wd,dw real(8) tmax,temp(ntemp),s(ntemp) real(8) v(3),t1,t2 ! allocatable arrays real(8), allocatable :: wp(:),w(:),gw(:),f(:) complex(8), allocatable :: dynq(:,:,:),dynr(:,:,:) complex(8), allocatable :: dynp(:,:),ev(:,:) ! external functions real(8), external :: splint ! initialise universal variables call init0 call init2 allocate(wp(nbph),w(nwplot),gw(nwplot),f(nwplot)) allocate(dynq(nbph,nbph,nqpt),dynr(nbph,nbph,nqptnr)) allocate(dynp(nbph,nbph),ev(nbph,nbph)) ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! Fourier transform the dynamical matrices to real-space call dynqtor(dynq,dynr) ! find the minimum and maximum frequencies wmin=0.d0 wmax=0.d0 do iq=1,nqpt call dynev(dynq(:,:,iq),wp,ev) wmin=min(wmin,wp(1)) wmax=max(wmax,wp(nbph)) end do wmax=wmax+(wmax-wmin)*0.1d0 wmin=wmin-(wmax-wmin)*0.1d0 wd=wmax-wmin if (wd.lt.1.d-8) wd=1.d0 dw=wd/dble(nwplot) ! generate energy grid do iw=1,nwplot w(iw)=dw*dble(iw-1)+wmin end do gw(:)=0.d0 do i1=0,ngrkf-1 v(1)=dble(i1)/dble(ngrkf) do i2=0,ngrkf-1 v(2)=dble(i2)/dble(ngrkf) do i3=0,ngrkf-1 v(3)=dble(i3)/dble(ngrkf) ! compute the dynamical matrix at this particular q-point call dynrtoq(v,dynr,dynp) ! find the phonon frequencies call dynev(dynp,wp,ev) do i=1,nbph t1=(wp(i)-wmin)/dw+1.d0 iw=nint(t1) if ((iw.ge.1).and.(iw.le.nwplot)) then gw(iw)=gw(iw)+1.d0 end if end do end do end do end do t1=1.d0/(dw*dble(ngrkf)**3) gw(:)=t1*gw(:) ! smooth phonon DOS if required if (nswplot.gt.0) call fsmooth(nswplot,nwplot,gw) ! write phonon DOS to file open(50,file='PHDOS.OUT',form='FORMATTED') do iw=1,nwplot write(50,'(2G18.10)') w(iw),gw(iw) end do close(50) write(*,*) write(*,'("Info(phdos):")') write(*,'(" phonon density of states written to PHDOS.OUT")') !-------------------------------------------! ! thermodynamic properties from DOS ! !-------------------------------------------! ! maximum temperature tmax=wmax/kboltz ! temperature grid do i=1,ntemp temp(i)=tmax*dble(i)/dble(ntemp) end do open(50,file='THERMO.OUT',form='FORMATTED') write(50,*) write(50,'("(All quantities are per unit cell)")') ! zero point energy do iw=1,nwplot f(iw)=gw(iw)*w(iw) end do t1=splint(nwplot,w,f) t1=0.5d0*t1 write(50,*) write(50,'("Zero-point energy : ",G18.10)') t1 ! vibrational energy write(50,*) write(50,'("Vibrational energy vs. temperature :")') do i=1,ntemp do iw=1,nwplot t1=w(iw)/(2.d0*kboltz*temp(i)) if (t1.gt.0.d0) then f(iw)=gw(iw)*w(iw)*cosh(t1)/sinh(t1) else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) t1=0.5d0*t1 write(50,'(2G18.10)') temp(i),t1 s(i)=t1 end do ! free energy write(50,*) write(50,'("Free energy vs. temperature :")') do i=1,ntemp do iw=1,nwplot t1=2.d0*sinh(w(iw)/(2.d0*kboltz*temp(i))) if (t1.gt.0.d0) then f(iw)=gw(iw)*log(t1) else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) t1=kboltz*temp(i)*t1 write(50,'(2G18.10)') temp(i),t1 ! compute entropy from S = (F-E)/T s(i)=(s(i)-t1)/temp(i) end do ! entropy write(50,*) write(50,'("Entropy vs. temperature :")') do i=1,ntemp write(50,'(2G18.10)') temp(i),s(i) end do ! heat capacity write(50,*) write(50,'("Heat capacity vs. temperature :")') do i=1,ntemp do iw=1,nwplot t1=w(iw)/(kboltz*temp(i)) t2=exp(t1)-1.d0 if (abs(t2).gt.1.d-14) then f(iw)=gw(iw)*(t1**2)*(t2+1.d0)/t2**2 else f(iw)=0.d0 end if end do t1=splint(nwplot,w,f) t1=kboltz*t1 write(50,'(2G18.10)') temp(i),t1 end do close(50) write(*,'(" thermodynamic properties written to THERMO.OUT")') ! write phonon DOS to test file call writetest(210,'phonon DOS',nv=nwplot,tol=1.d-2,rva=gw) deallocate(wp,w,gw,f,dynq,dynr,dynp,ev) end subroutine elk-7.2.42/src/PaxHeaders.21776/sumrule.f900000644000000000000000000000013214061636517014740 xustar0030 mtime=1623670095.627101831 30 atime=1623670094.449102924 30 ctime=1623670095.627101831 elk-7.2.42/src/sumrule.f900000644002504400250440000000337614061636517017006 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: sumrule ! !INTERFACE: subroutine sumrule(dynq) ! !INPUT/OUTPUT PARAMETERS: ! dynq : dynamical matrices on q-point set (in,real(nbph,nbph,nqpt)) ! !DESCRIPTION: ! Applies the same correction to all the dynamical matrices such that the ! matrix for ${\bf q}=0$ satisfies the acoustic sum rule. In other words, the ! matrices are updated with ! $$ D_{ij}^{\bf q}\rightarrow D_{ij}^{\bf q}-\sum_{k=1}^3 \omega_k^0 ! v_{k;i}^0 v_{k;j}^0 $$ ! for all ${\bf q}$, where $\omega_k^0$ is the $k$th eigenvalue of the ! ${\bf q}=0$ dynamical matrix and $v_{k;i}^0$ the $i$th component of its ! eigenvector. The eigenvalues are assumed to be arranged in ascending order. ! This ensures that the ${\bf q}=0$ dynamical matrix has 3 zero eigenvalues, ! which the uncorrected matrix may not have due to the finite ! exchange-correlation grid. ! ! !REVISION HISTORY: ! Created May 2005 (JKD) !EOP !BOC use modmain use modphonon implicit none ! arguments complex(8), intent(inout) :: dynq(nbph,nbph,nqpt) ! local variables integer iq,i,j,k ! automatic arrays real(8) w(nbph) complex(8) ev(nbph,nbph) ! compute the eigenvalues and vectors of the q = 0 dynamical matrix do i=1,nbph do j=i,nbph ev(i,j)=0.5d0*(dynq(i,j,1)+conjg(dynq(j,i,1))) end do end do call eveqnzh(nbph,nbph,ev,w) ! subtract outer products of 3 lowest eigenvectors for q = 0 from all the ! dynamical matrices do iq=1,nqpt do i=1,nbph do j=1,nbph do k=1,3 dynq(i,j,iq)=dynq(i,j,iq)-w(k)*ev(i,k)*conjg(ev(j,k)) end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writephn.f900000644000000000000000000000013214061636517015104 xustar0030 mtime=1623670095.629101829 30 atime=1623670094.450102924 30 ctime=1623670095.629101829 elk-7.2.42/src/writephn.f900000644002504400250440000000325214061636517017143 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writephn use modmain use modphonon implicit none ! local variables integer iq,i,j,is,ia,ip ! allocatable arrays real(8), allocatable :: w(:) complex(8), allocatable :: dynq(:,:,:),dynr(:,:,:) complex(8), allocatable :: dynp(:,:),ev(:,:) ! initialise universal variables call init0 call init2 allocate(w(nbph)) allocate(dynq(nbph,nbph,nqpt)) allocate(dynr(nbph,nbph,nqptnr)) allocate(dynp(nbph,nbph)) allocate(ev(nbph,nbph)) ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! Fourier transform the dynamical matrices to real-space call dynqtor(dynq,dynr) open(50,file='PHONON.OUT',form='FORMATTED') do iq=1,nphwrt call dynrtoq(vqlwrt(:,iq),dynr,dynp) call dynev(dynp,w,ev) write(50,*) write(50,'(I6,3G18.10," : q-point, vqlwrt")') iq,vqlwrt(:,iq) do j=1,nbph write(50,*) write(50,'(I6,G18.10," : mode, frequency")') j,w(j) i=0 do is=1,nspecies do ia=1,natoms(is) do ip=1,3 i=i+1 if (i.eq.1) then write(50,'(3I4,2G18.10," : species, atom, polarisation, & &eigenvector")') is,ia,ip,ev(i,j) else write(50,'(3I4,2G18.10)') is,ia,ip,ev(i,j) end if end do end do end do end do write(50,*) end do close(50) write(*,*) write(*,'("Info(writephn): phonon frequencies and eigenvectors written to & &PHONON.OUT")') write(*,'(" for all q-vectors in the phwrite list")') deallocate(w,dynq,dynr,dynp,ev) end subroutine elk-7.2.42/src/PaxHeaders.21776/dynfext.f900000644000000000000000000000013214061636517014725 xustar0030 mtime=1623670095.630101828 30 atime=1623670094.452102922 30 ctime=1623670095.630101828 elk-7.2.42/src/dynfext.f900000644002504400250440000000132414061636517016762 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dynfext(iq,is,ia,ip,fext) use modmain implicit none ! arguments integer, intent(in) :: iq,is,ia,ip character(*), intent(out) :: fext ! local variables integer i,j,m(3),n(3) ! external functions integer, external :: gcd do i=1,3 if (ivq(i,iq).ne.0) then j=gcd(ivq(i,iq),ngridq(i)) m(i)=ivq(i,iq)/j n(i)=ngridq(i)/j else m(i)=0 n(i)=0 end if end do write(fext,'("_Q",2I2.2,"_",2I2.2,"_",2I2.2,"_S",I2.2,"_A",I3.3,"_P",I1,& &".OUT")') m(1),n(1),m(2),n(2),m(3),n(3),is,ia,ip end subroutine elk-7.2.42/src/PaxHeaders.21776/writegamma.f900000644000000000000000000000013114061636517015400 xustar0030 mtime=1623670095.632101826 29 atime=1623670094.45410292 30 ctime=1623670095.632101826 elk-7.2.42/src/writegamma.f900000644002504400250440000000164714061636517017446 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writegamma(gq) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: gq(nbph,nqpt) ! local variables integer iq,i open(50,file='GAMMAQ.OUT',form='FORMATTED',action='WRITE') write(50,*) write(50,'(I4," : total number of atoms")') natmtot write(50,'(I6," : number of q-points")') nqpt write(50,*) do iq=1,nqpt write(50,'(I6," : q-point")') iq write(50,'(3G18.10," : q-vector (lattice coordinates)")') vql(:,iq) write(50,'(3G18.10," : q-vector (Cartesian coordinates)")') vqc(:,iq) do i=1,nbph write(50,'(I4,G18.10)') i,gq(i,iq) end do write(50,*) end do close(50) write(*,*) write(*,'("Info(writegamma):")') write(*,'(" wrote phonon linewidths for all q-points to GAMMAQ.OUT")') end subroutine elk-7.2.42/src/PaxHeaders.21776/readgamma.f900000644000000000000000000000013214061636517015162 xustar0030 mtime=1623670095.633101825 30 atime=1623670094.455102919 30 ctime=1623670095.633101825 elk-7.2.42/src/readgamma.f900000644002504400250440000000401314061636517017215 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readgamma(gq) use modmain use modphonon implicit none ! arguments real(8), intent(out) :: gq(nbph,nqpt) ! local variables integer iq,i integer natmtot_,nqpt_,iq_,i_ real(8) vql_(3),vqc_(3),t1 open(50,file='GAMMAQ.OUT',form='FORMATTED',status='OLD') read(50,*) read(50,*) natmtot_ if (natmtot.ne.natmtot_) then write(*,*) write(*,'("Error(readgamma): differing natmtot")') write(*,'(" current : ",I4)') natmtot write(*,'(" GAMMAQ.OUT : ",I4)') natmtot_ write(*,*) stop end if read(50,*) nqpt_ if (nqpt.ne.nqpt_) then write(*,*) write(*,'("Error(readgamma): differing nqpt")') write(*,'(" current : ",I6)') nqpt write(*,'(" GAMMAQ.OUT : ",I6)') nqpt_ write(*,*) stop end if read(50,*) do iq=1,nqpt read(50,*) iq_ if (iq.ne.iq_) then write(*,*) write(*,'("Error(readgamma): incorrect q-point index in GAMMAQ.OUT for & &q-point ",I6)') iq write(*,*) stop end if read(50,*) vql_ t1=sum(abs(vql(:,iq)-vql_(:))) if (t1.gt.epslat) then write(*,*) write(*,'("Error(readgamma): differing q-vectors in lattice coordinates & &for q-point ",I6)') iq write(*,'(" current : ",3G18.10)') vql(:,iq) write(*,'(" GAMMAQ.OUT : ",3G18.10)') vql_ write(*,*) stop end if read(50,*) vqc_ t1=sum(abs(vqc(:,iq)-vqc_(:))) if (t1.gt.epslat) then write(*,*) write(*,'("Error(readgamma): differing q-vectors in Cartesian coordinates & &for q-point ",I6)') iq write(*,'(" current : ",3G18.10)') vqc(:,iq) write(*,'(" GAMMAQ.OUT : ",3G18.10)') vqc_ write(*,*) stop end if do i=1,nbph read(50,*) i_,gq(i,iq) if (i.ne.i_) then write(*,*) write(*,'("Error(readgamma): incorrect mode index in GAMMAQ.OUT for & &q-point ",I6)') iq write(*,*) stop end if end do read(50,*) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/phlwidth.f900000644000000000000000000000013214061636517015067 xustar0030 mtime=1623670095.635101824 30 atime=1623670094.457102917 30 ctime=1623670095.635101824 elk-7.2.42/src/phlwidth.f900000644002504400250440000000507514061636517017133 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phlwidth use modmain use modphonon implicit none ! local variables integer i,j,iq,iv real(8) gmin,gmax,t1 ! allocatable arrays real(8), allocatable :: wq(:),gq(:,:),gp(:,:) complex(8), allocatable :: dynq(:,:,:),ev(:,:),b(:,:) complex(8), allocatable :: gmq(:,:,:),gmr(:,:,:),gmp(:,:) ! initialise universal variables call init0 call init2 allocate(wq(nbph),gq(nbph,nqpt),gp(nbph,npp1d)) allocate(dynq(nbph,nbph,nqpt)) allocate(ev(nbph,nbph),b(nbph,nbph)) allocate(gmq(nbph,nbph,nqpt)) allocate(gmr(nbph,nbph,nqptnr)) allocate(gmp(nbph,nbph)) ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! read in the phonon linewidths for each q-point call readgamma(gq) ! loop over phonon q-points do iq=1,nqpt ! diagonalise the dynamical matrix call dynev(dynq(:,:,iq),wq,ev) ! construct a complex matrix from the phonon eigenvectors such that its ! eigenvalues squared are the phonon linewidths do i=1,nbph t1=sqrt(abs(gq(i,iq))) do j=1,nbph b(i,j)=t1*conjg(ev(j,i)) end do end do call zgemm('N','N',nbph,nbph,nbph,zone,ev,nbph,b,nbph,zzero,gmq(:,:,iq),nbph) end do ! Fourier transform the gamma matrices to real-space call dynqtor(gmq,gmr) ! generate a set of q-point vectors along a path in the Brillouin zone call plotpt1d(bvec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) gmin=1.d8 gmax=0.d0 ! compute the linewidths along the path do iq=1,npp1d ! compute the gamma matrix at this particular q-point call dynrtoq(vplp1d(:,iq),gmr,gmp) ! diagonalise the gamma matrix call eveqnzh(nbph,nbph,gmp,gp(:,iq)) ! square the eigenvalues to recover the linewidths gp(:,iq)=gp(:,iq)**2 gmin=min(gmin,gp(1,iq)) gmax=max(gmax,gp(nbph,iq)) end do gmax=gmax+(gmax-gmin)*0.5d0 gmin=gmin-(gmax-gmin)*0.5d0 ! output the vertex location lines open(50,file='PHLWLINES.OUT',form='FORMATTED') do iv=1,nvp1d write(50,'(2G18.10)') dvp1d(iv),gmin write(50,'(2G18.10)') dvp1d(iv),gmax write(50,*) end do close(50) ! output the phonon linewidth dispersion open(50,file='PHLWIDTH.OUT',form='FORMATTED') do i=1,nbph do iq=1,npp1d write(50,'(2G18.10)') dpp1d(iq),gp(i,iq) end do write(50,*) end do close(50) write(*,*) write(*,'("Info(phlwidth):")') write(*,'(" phonon linewidth dispersion written to PHLWIDTH.OUT")') write(*,'(" vertex location lines written to PHLWLINES.OUT")') deallocate(wq,gq,gp,dynq) deallocate(ev,b,gmq,gmr,gmp) end subroutine elk-7.2.42/src/PaxHeaders.21776/alpha2f.f900000644000000000000000000000013214061636517014561 xustar0030 mtime=1623670095.636101823 30 atime=1623670094.459102915 30 ctime=1623670095.636101823 elk-7.2.42/src/alpha2f.f900000644002504400250440000001155114061636517016621 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine alpha2f use modmain use modphonon use modtest implicit none ! local variables integer ik,iq,i,j integer i1,i2,i3,iw real(8) wmin,wmax,wd,dw real(8) wlog,wrms,lambda,tc real(8) v(3),t1 ! allocatable arrays real(8), allocatable :: gq(:,:),wp(:),a2fp(:),w(:),a2f(:) complex(8), allocatable :: dynq(:,:,:),dynr(:,:,:) complex(8), allocatable :: dynp(:,:),ev(:,:),b(:,:) complex(8), allocatable :: a2fmq(:,:,:),a2fmr(:,:,:),a2fmp(:,:) ! initialise universal variables call init0 call init1 call init2 ! allocate local arrays allocate(gq(nbph,nqpt),wp(nbph),a2fp(nbph)) allocate(w(nwplot),a2f(nwplot)) allocate(dynq(nbph,nbph,nqpt)) allocate(dynr(nbph,nbph,nqptnr)) allocate(dynp(nbph,nbph)) allocate(ev(nbph,nbph),b(nbph,nbph)) allocate(a2fmq(nbph,nbph,nqpt)) allocate(a2fmr(nbph,nbph,nqptnr)) allocate(a2fmp(nbph,nbph)) ! get the eigenvalues from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do ! compute the density of states at the Fermi energy call occupy ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! Fourier transform the dynamical matrices to real-space call dynqtor(dynq,dynr) ! read in the phonon linewidths for each q-point call readgamma(gq) ! loop over phonon q-points do iq=1,nqpt ! find the eigenvalues and eigenvectors of the dynamical matrix call dynev(dynq(:,:,iq),wphq(:,iq),ev) ! construct a complex matrix from the phonon eigenvectors such that its ! eigenvalues squared are the phonon linewidths divided by the frequency do i=1,nbph if (wphq(i,iq).gt.1.d-8) then t1=sqrt(abs(gq(i,iq)/wphq(i,iq))) else t1=0.d0 end if do j=1,nbph b(i,j)=t1*conjg(ev(j,i)) end do end do call zgemm('N','N',nbph,nbph,nbph,zone,ev,nbph,b,nbph,zzero,a2fmq(:,:,iq), & nbph) end do ! Fourier transform the matrices to real-space call dynqtor(a2fmq,a2fmr) ! find the minimum and maximum frequencies wmin=0.d0 wmax=0.d0 do iq=1,nqpt wmin=min(wmin,wphq(1,iq)) wmax=max(wmax,wphq(nbph,iq)) end do wmax=wmax+(wmax-wmin)*0.1d0 wmin=wmin-(wmax-wmin)*0.1d0 wd=wmax-wmin if (wd.lt.1.d-8) wd=1.d0 dw=wd/dble(nwplot) ! generate energy grid do iw=1,nwplot w(iw)=dw*dble(iw-1)+wmin end do a2f(:)=0.d0 do i1=0,ngrkf-1 v(1)=dble(i1)/dble(ngrkf) do i2=0,ngrkf-1 v(2)=dble(i2)/dble(ngrkf) do i3=0,ngrkf-1 v(3)=dble(i3)/dble(ngrkf) ! compute the dynamical matrix at this particular q-point call dynrtoq(v,dynr,dynp) ! find the phonon eigenvalues and eigenvectors call dynev(dynp,wp,ev) ! compute the α²F matrix at this particular q-point call dynrtoq(v,a2fmr,a2fmp) ! diagonalise the α²F matrix simultaneously with the dynamical matrix ! (thanks to Matthieu Verstraete and Ryotaro Arita for correcting this) call dynevs(ev,a2fmp,a2fp) ! square the eigenvalues to recover the linewidths divided by the frequency a2fp(:)=a2fp(:)**2 do i=1,nbph t1=(wp(i)-wmin)/dw+1.d0 iw=nint(t1) if ((iw.ge.1).and.(iw.le.nwplot)) then a2f(iw)=a2f(iw)+a2fp(i) end if end do end do end do end do t1=twopi*(fermidos/2.d0)*dw*dble(ngrkf)**3 if (t1.gt.1.d-8) then t1=1.d0/t1 else t1=0.d0 end if a2f(:)=t1*a2f(:) ! smooth Eliashberg function if required if (nswplot.gt.0) call fsmooth(nswplot,nwplot,a2f) ! write Eliashberg function to file open(50,file='ALPHA2F.OUT',form='FORMATTED') do iw=1,nwplot write(50,'(2G18.10)') w(iw),a2f(iw) end do close(50) write(*,*) write(*,'("Info(alpha2f):")') write(*,'(" Eliashberg function α²F written to ALPHA2F.OUT")') ! compute lambda, logarithmic average frequency, RMS average frequency and ! McMillan-Allen-Dynes superconducting critical temperature call mcmillan(w,a2f,lambda,wlog,wrms,tc) open(50,file='MCMILLAN.OUT',form='FORMATTED') write(50,*) write(50,'("Electron-phonon coupling constant, λ : ",G18.10)') lambda write(50,*) write(50,'("Logarithmic average frequency : ",G18.10)') wlog write(50,*) write(50,'("RMS average frequency : ",G18.10)') wrms write(50,*) write(50,'("Coulomb pseudopotential, μ* : ",G18.10)') mustar write(50,*) write(50,'("McMillan-Allen-Dynes superconducting critical temperature")') write(50,'(" [Eq. 34, Phys. Rev. B 12, 905 (1975)] (kelvin) : ",G18.10)') tc write(50,*) close(50) write(*,*) write(*,'("Info(alpha2f):")') write(*,'(" Electron-phonon coupling constant, λ,")') write(*,'(" logarithmic and RMS average frequencies,")') write(*,'(" and McMillan-Allen-Dynes superconducting critical temperature")') write(*,'(" written to MCMILLAN.OUT")') ! write lambda to test file call writetest(251,'electron-phonon coupling constant, lambda',tol=5.d-2, & rv=lambda) deallocate(wp,gq,a2fp,w,a2f) deallocate(dynq,dynr,dynp,ev,b) deallocate(a2fmq,a2fmr,a2fmp) end subroutine elk-7.2.42/src/PaxHeaders.21776/writelambda.f900000644000000000000000000000013214061636517015537 xustar0030 mtime=1623670095.637101822 30 atime=1623670094.460102914 30 ctime=1623670095.637101822 elk-7.2.42/src/writelambda.f900000644002504400250440000000205014061636517017571 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writelambda(gq) use modmain use modphonon implicit none ! arguments real(8), intent(in) :: gq(nbph,nqpt) ! local variables integer iq,i real(8) t1,t2 open(50,file='LAMBDAQ.OUT',form='FORMATTED') write(50,*) write(50,'(I4," : total number of atoms")') natmtot write(50,'(I6," : number of q-points")') nqpt write(50,*) do iq=1,nqpt write(50,'(I6," : q-point")') iq write(50,'(3G18.10," : q-vector (lattice coordinates)")') vql(:,iq) write(50,'(3G18.10," : q-vector (Cartesian coordinates)")') vqc(:,iq) do i=1,nbph t1=pi*fermidos*wphq(i,iq)**2 if (t1.gt.1.d-8) then t2=gq(i,iq)/t1 else t2=0.d0 end if write(50,'(I4,G18.10)') i,t2 end do write(50,*) end do close(50) write(*,*) write(*,'("Info(writelambda):")') write(*,'(" wrote electron-phonon coupling constants for all q-points to & &LAMBDAQ.OUT")') end subroutine elk-7.2.42/src/PaxHeaders.21776/ephcouple.f900000644000000000000000000000013014061636517015226 xustar0029 mtime=1623670095.63910182 30 atime=1623670094.462102912 29 ctime=1623670095.63910182 elk-7.2.42/src/ephcouple.f900000644002504400250440000001271014061636517017266 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine ephcouple use modmain use modphonon use modmpi use modomp use modstore implicit none ! local variables integer iq,ik,jk,jkq integer ist,jst,isym,ip integer is,ia,ias,js,jas integer nr,nri,np,i,n,nthd real(8) vl(3),de,x real(8) t1,t2,t3,t4 ! allocatable arrays real(8), allocatable :: gq(:,:) complex(8), allocatable :: dynq(:,:,:),ev(:,:),a(:,:) complex(8), allocatable :: dvmt(:,:,:),dvir(:,:) complex(8), allocatable :: zfmt(:),gzfmt(:,:,:) complex(8), allocatable :: ephmat(:,:,:) ! external functions real(8), external :: sdelta ! increase the angular momentum cut-off on the inner part of the muffin-tin lmaxi_=lmaxi lmaxi=max(lmaxi,4) ! initialise universal variables call init0 call init1 call init2 ! allocate global arrays if (allocated(dvsbs)) deallocate(dvsbs) n=npmtmax*natmtot+ngtot allocate(dvsbs(n)) dvsmt(1:npmtmax,1:natmtot)=>dvsbs(1:) i=npmtmax*natmtot+1 dvsir(1:ngtot)=>dvsbs(i:) ! allocate local arrays allocate(gq(nbph,nqpt)) allocate(dynq(nbph,nbph,nqpt),ev(nbph,nbph),a(nbph,nbph)) allocate(dvmt(npcmtmax,natmtot,nbph),dvir(ngtot,nbph)) allocate(zfmt(npmtmax),gzfmt(npmtmax,3,natmtot)) ! read in the density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! set the speed of light >> 1 (non-relativistic approximation) solsc=sol*100.d0 ! new file extension for eigenvector files with c >> 1 filext='_EPH.OUT' ! generate the first- and second-variational eigenvectors and eigenvalues call linengy call genapwlofr call gensocfr call genevfsv ! precise determination of the Fermi energy swidth_=swidth swidth=1.d-5 call occupy swidth=swidth_ ! restore the speed of light solsc=sol ! read in the dynamical matrices call readdyn(dynq) ! apply the acoustic sum rule call sumrule(dynq) ! compute the gradients of the Kohn-Sham potential for the rigid-ion term do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) call rtozfmt(nr,nri,vsmt(:,ias),zfmt) call gradzfmt(nr,nri,rlmt(:,-1,is),wcrmt(:,:,is),zfmt,npmtmax,gzfmt(:,:,ias)) end do ! energy window for calculating the electron-phonon matrix elements if (task.eq.240) then de=4.d0*swidth else de=1.d6 end if ! loop over phonon q-points do iq=1,nqpt if (mp_mpi) write(*,'("Info(ephcouple): ",I6," of ",I6," q-points")') iq,nqpt ! diagonalise the dynamical matrix call dynev(dynq(:,:,iq),wphq(:,iq),ev) ! generate the matrix for converting between Cartesian and phonon coordinates call genmcph(wphq(:,iq),ev,a) i=0 do is=1,nspecies nr=nrmt(is) nri=nrmti(is) np=npmt(is) do ia=1,natoms(is) ias=idxas(ia,is) do ip=1,3 i=i+1 ! read in the Cartesian change in Kohn-Sham potential call readdvs(iq,is,ia,ip,dvsmt,dvsir) ! add the rigid-ion term dvsmt(1:np,ias)=dvsmt(1:np,ias)-gzfmt(1:np,ip,ias) do jas=1,natmtot js=idxis(jas) ! convert to coarse radial mesh call zfmtftoc(nrcmt(js),nrcmti(js),dvsmt(:,jas),dvmt(:,jas,i)) ! apply the radial integration weights call zfmtwr(nrcmt(js),nrcmti(js),wrcmt(:,js),dvmt(:,jas,i)) end do ! multiply the interstitial potential with the characteristic function dvir(:,i)=dvsir(:)*cfunir(:) end do end do end do ! zero the phonon linewidths array gq(:,iq)=0.d0 call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(ephmat,jk,vl,isym,jkq) & !$OMP PRIVATE(t1,t2,t3,t4,ist,jst,x,i) & !$OMP NUM_THREADS(nthd) allocate(ephmat(nstsv,nstsv,nbph)) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! compute the electron-phonon coupling matrix elements call genephmat(iq,ik,de,a,dvmt,dvir,ephmat) ! write the matrix elements to file if required if (task.eq.241) call putephmat(iq,ik,ephmat) ! k+q-vector in lattice coordinates vl(:)=vkl(:,ik)+vql(:,iq) ! index to k+q-vector call findkpt(vl,isym,jkq) t1=pi*wkptnr*occmax ! loop over second-variational states do ist=1,nstsv x=(evalsv(ist,jkq)-efermi)/swidth t2=t1*sdelta(stype,x)/swidth do jst=1,nstsv ! loop over phonon branches do i=1,nbph x=(wphq(i,iq)+evalsv(jst,jk)-evalsv(ist,jkq))/swidth t3=t2*sdelta(stype,x)/swidth t4=dble(ephmat(ist,jst,i))**2+aimag(ephmat(ist,jst,i))**2 !$OMP ATOMIC gq(i,iq)=gq(i,iq)+wphq(i,iq)*t3*t4 end do end do end do ! end loop over k-points end do !$OMP END DO deallocate(ephmat) !$OMP END PARALLEL call freethd(nthd) ! end loop over phonon q-points end do ! add gq from each MPI process if (np_mpi.gt.1) then n=nbph*nqpt call mpi_allreduce(mpi_in_place,gq,n,mpi_double_precision,mpi_sum,mpicom, & ierror) end if ! restore the default file extension filext='.OUT' if (mp_mpi) then ! write the phonon linewidths to file call writegamma(gq) ! write electron-phonon coupling constants to file call writelambda(gq) if (task.eq.241) then write(*,*) write(*,'("Info(ephcouple):")') write(*,'(" wrote electron-phonon matrix elements to EPHMAT.OUT")') end if end if ! deallocate global arrays deallocate(dvsbs) ! deallocate local arrays deallocate(gq,dynq,ev,a) deallocate(dvmt,dvir,zfmt,gzfmt) ! restore original input parameters lmaxi=lmaxi_ end subroutine elk-7.2.42/src/PaxHeaders.21776/eliashberg.f900000644000000000000000000000013214061636517015351 xustar0030 mtime=1623670095.640101819 30 atime=1623670094.464102911 30 ctime=1623670095.640101819 elk-7.2.42/src/eliashberg.f900000644002504400250440000001447214061636517017416 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 A. Sanna and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: eliashberg ! !INTERFACE: subroutine eliashberg ! !USES: use modmain use modphonon use modomp ! !DESCRIPTION: ! Calculates the superconducting gap within Eliashberg theory. This ! implementation is isotropic and assumes a flat density of states. The ! Eliashberg function $\alpha^2F$ is required as input for this calculation. ! ! !REVISION HISTORY: ! Created December 2010 (Antonio Sanna) ! Modified, June 2011 (JKD) !EOP !BOC implicit none ! local variables ! maximum allowed number of Matsubara frequencies integer, parameter :: maxwf=40000 ! maximum number of iterations integer, parameter :: maxit=1000 integer nwf,nwfcl,nin,nout integer itemp,it,i,m,n,nthd ! convergence tolerance real(8), parameter :: eps=1.d-12 ! mixing paramter real(8), parameter :: beta=0.5d0 real(8) lambda,wlog,wrms,tc real(8) wfmax,tmin,tmax,dtemp,temp real(8) dw,dmu,sm,a,b,t0,t1 ! allocatable arrays real(8), allocatable :: w(:),a2f(:),wf(:),l(:) real(8), allocatable :: d0(:),d(:),z0(:),z(:),r(:) complex(8), allocatable :: zin(:),uin(:),zout(:),uout(:) ! initialise universal variables call init0 call init1 allocate(w(nwplot),a2f(nwplot)) ! read in the Eliashberg function call readalpha2f(w,a2f) dw=(w(nwplot)-w(1))/dble(nwplot) ! compute the McMillan parameters call mcmillan(w,a2f,lambda,wlog,wrms,tc) ! Matsubara frequency cut-off wfmax=20.d0*wrms ! minumum temperature tmin=tc/6.d0 if (tmin.lt.1.d-2) tmin=0.1d0 ! maximum temperature tmax=5.d0*tc if (tmax.lt.1.d0) tmax=1.d0 ! temperature step size dtemp=(tmax-tmin)/dble(ntemp) ! maximum number of fermionic Matsubara frequencies nwf=nint(wfmax/(twopi*kboltz*dtemp)) if (nwf.lt.1) nwf=1 if (nwf.gt.maxwf) nwf=maxwf allocate(wf(-nwf:nwf)) allocate(l(-2*nwf:2*nwf)) allocate(d0(0:nwf),d(0:nwf)) allocate(z0(0:nwf),z(0:nwf)) allocate(r(0:nwf)) allocate(zin(0:nwf),uin(0:nwf)) ! generate output points for continuation on the real axis nout=4*nwplot allocate(zout(nout),uout(nout)) do i=1,nout zout(i)=cmplx(2.d0*dble(i-1)*dw,0.d0,8) end do ! open files for writing open(62,file='ELIASHBERG.OUT',form='FORMATTED') open(63,file='ELIASHBERG_IA.OUT',form='FORMATTED') open(64,file='ELIASHBERG_GAP_T.OUT',form='FORMATTED') open(65,file='ELIASHBERG_GAP_RA.OUT',form='FORMATTED') open(66,file='ELIASHBERG_Z_RA.OUT',form='FORMATTED') write(62,'("+------------------------------+")') write(62,'("| Eliashberg equations |")') write(62,'("+------------------------------+")') write(62,*) write(62,'("Temperature range : ",2G18.10)') tmin,tmax write(62,'("Number of temperature steps : ",I6)') ntemp write(62,'("Number of output frequencies : ",I8)') nout write(62,'("Fermionic Matsubara frequency cut-off")') write(62,'(" phonons : ",G18.10)') wfmax write(62,'(" Coulomb : ",G18.10)') 2.d0*wrms flush(62) d0(:)=1.d-4 z0(:)=1.d0 ! main loop over temperature do itemp=1,ntemp write(*,'("Info(eliashberg): temperature step ",I6," of ",I6)') itemp,ntemp temp=dble(itemp)*dtemp+tmin write(62,*) write(62,'("Temperature (kelvin) : ",G18.10)') temp t0=pi*kboltz*temp ! number of Matsubara frequencies nwf=nint(wfmax/(2.d0*t0)) if (nwf.gt.maxwf) nwf=maxwf nwfcl=nint(2.d0*wrms/(2.d0*t0)) if (nwfcl.lt.1) nwfcl=1 if (nwfcl.gt.nwf) nwfcl=nwf write(62,'("Number of Matsubara frequencies")') write(62,'(" phonons : ",I8)') nwf write(62,'(" Coulomb : ",I8)') nwfcl ! make Pade approximant input points same as Matsubara frequencies nin=nwf ! generate fermionic Matsubara frequencies do m=-nwf,nwf wf(m)=t0*dble(2*m+1) end do ! compute lambda call holdthd(4*nwf+1,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(t1,sm,i) & !$OMP NUM_THREADS(nthd) do m=-2*nwf,2*nwf t1=(t0*dble(2*m))**2 sm=0.d0 do i=1,nwplot sm=sm+w(i)*a2f(i)/(w(i)**2+t1) end do l(m)=2.d0*sm*dw end do !$OMP END PARALLEL DO call freethd(nthd) ! begin iteration loop do it=1,maxit do m=0,nwf r(m)=sqrt((wf(m)**2+d0(m)**2)*z0(m)**2) end do do n=0,nwf sm=0.d0 do m=0,nwf-1 sm=sm+(l(n-m)-l(n+m+1))*z0(m)*wf(m)/r(m) end do z(n)=t0*sm/wf(n) end do z(0:nwf)=z(0:nwf)+1.d0 z0(0:nwf)=z(0:nwf) ! Coulomb part of summation dmu=0.d0 do n=0,nwfcl dmu=dmu+mustar*d0(n)*z(n)/r(n) end do dmu=dmu*2.d0 ! Gap do n=0,nwf sm=0.d0 do m=0,nwf-1 sm=sm+(l(n-m)+l(n+m+1))*d0(m)*z(m)/r(m) end do d(n)=t0*(sm-dmu)/z(n) end do ! mix old and new gap functions d(0:nwf)=beta*d(0:nwf)+(1.d0-beta)*d0(0:nwf) sm=0.d0 do m=0,nwf sm=sm+abs(d0(m)-d(m)) end do sm=sm/dble(2*nwf) d0(0:nwf)=d(0:nwf) if (sm.le.eps) then write(62,'("Eliashberg equations converged in ",I6," iterations")') it goto 10 end if ! end iteration loop end do write(*,*) write(*,'("Warning(eliashberg): failed to converge: possibly close to T_c")') write(62,'("Failed to converge: possibly close to T_c")') 10 continue flush(62) do n=-nwf,nwf if (n.ge.0) then m=n else m=-n-1 end if write(63,'(3G18.10)') wf(n),d(m),z(m) end do write(63,*) flush(63) write(64,'(3G18.10)') temp,d(0),z(0) flush(64) ! analytic continuation to real axis do m=0,nin zin(m)=cmplx(0.d0,wf(m),8) uin(m)=cmplx(d(m),0.d0,8) end do call pade(nin,zin,uin,nout,zout,uout) do i=1,nout a=dble(uout(i)) b=aimag(uout(i)) write(65,'(3G18.10)') dble(zout(i)),a,b end do write(65,*) flush(65) do m=0,nin uin(m)=cmplx(z(m),0.d0,8) end do call pade(nin,zin,uin,nout,zout,uout) do i=1,nout a=dble(uout(i)) b=aimag(uout(i)) write(66,'(3G18.10)') dble(zout(i)),a,b end do write(66,*) flush(66) ! end loop over temperatures end do close(62); close(63); close(64); close(65); close(66) write(*,*) write(*,'("Info(eliashberg):")') write(*,'(" calculation information written to ELIASHBERG.OUT")') write(*,'(" gap and Z functions on the imaginary axis written to & &ELIASHBERG_IA.OUT")') write(*,'(" gap vs. temperature written to ELIASHBERG_GAP_T.OUT")') write(*,'(" gap function on the real axis written to ELIASHBERG_GAP_RA.OUT")') write(*,'(" Z function on the real axis written to ELIASHBERG_Z_RA.OUT")') deallocate(w,a2f,wf,l) deallocate(d0,d,z0,z,r) deallocate(zin,uin,zout,uout) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/phscdvs.f900000644000000000000000000000013214061636517014716 xustar0030 mtime=1623670095.642101817 30 atime=1623670094.466102909 30 ctime=1623670095.642101817 elk-7.2.42/src/phscdvs.f900000644002504400250440000000453014061636517016755 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine phscdvs(p,vsmt_,vsir_) use modmain use modphonon use modstore implicit none ! arguments integer, intent(in) :: p real(8), intent(in) :: vsmt_(npmtmax,natmtot),vsir_(ngtot) ! local variables integer is,ia,ja,ias,jas integer nr,nri,np,i integer iv(3),ig_,ifg_,ifg real(8) vl(3),vc(3),t1 complex(8) z0,z1,z2 ! allocatable arrays real(8), allocatable :: rfmt(:) complex(8), allocatable :: zfmt(:),zfir(:) ! prefactor z0=1.d0/deltaph ! multiply by i for sin-like displacement if (p.eq.1) z0=z0*zi !------------------------------! ! muffin-tin potential ! !------------------------------! allocate(rfmt(npmtmax),zfmt(npmtmax)) z1=z0/dble(nscph) ias=0 jas=0 do is=1,nspecies nr=nrmt(is) nri=nrmti(is) np=npmt(is) ja=0 do ia=1,natoms_(is) ias=ias+1 do i=1,nscph ja=ja+1 jas=jas+1 ! compute the difference between the perturbed and unperturbed potentials rfmt(1:np)=vsmt(1:np,jas)-vsmt_(1:np,jas) ! convert real potential difference to a complex spherical harmonic expansion call rtozfmt(nr,nri,rfmt,zfmt) ! the muffin-tin potential should have an *explicit* phase exp(iq.r) t1=-dot_product(vqc(:,iqph),vscph(:,i)) z2=z1*cmplx(cos(t1),sin(t1),8) ! add to total dvsmt(1:np,ias)=dvsmt(1:np,ias)+z2*zfmt(1:np) end do ! end loop over atoms and species end do end do deallocate(rfmt,zfmt) !--------------------------------! ! interstitial potential ! !--------------------------------! ! Fourier transform interstitial potential derivative to G-space allocate(zfir(ngtot)) zfir(:)=z0*(vsir(:)-vsir_(:)) call zfftifc(3,ngridg,-1,zfir) ! convert to G+q-space do ig_=1,ngtot_ ifg_=igfft_(ig_) vl(:)=dble(ivg_(:,ig_))+vql(:,iqph) call r3mv(bvec_,vl,vc) call r3mv(binv,vc,vl) iv(:)=nint(vl(:)) if ((iv(1).ge.intgv(1,1)).and.(iv(1).le.intgv(2,1)).and. & (iv(2).ge.intgv(1,2)).and.(iv(2).le.intgv(2,2)).and. & (iv(3).ge.intgv(1,3)).and.(iv(3).le.intgv(2,3))) then ifg=igfft(ivgig(iv(1),iv(2),iv(3))) dvsir(ifg_)=dvsir(ifg_)+zfir(ifg) else dvsir(ifg_)=0.d0 end if end do ! Fourier transform back to real-space if (p.eq.1) call zfftifc(3,ngridg_,1,dvsir) deallocate(zfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/readdvs.f900000644000000000000000000000013214061636517014674 xustar0030 mtime=1623670095.644101815 30 atime=1623670094.467102908 30 ctime=1623670095.644101815 elk-7.2.42/src/readdvs.f900000644002504400250440000000550314061636517016734 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readdvs(iq,is,ia,ip,dvsmt,dvsir) use modmain implicit none ! arguments integer, intent(in) :: iq,is,ia,ip complex(8), intent(out) :: dvsmt(npmtmax,natmtot),dvsir(ngtot) ! local variables integer js,jas,ios integer version_(3),nspecies_ integer lmmaxo_,natoms_ integer nrmt_,ngridg_(3) character(256) fext,fname ! allocatable arrays complex(8), allocatable :: zfmt(:,:,:) allocate(zfmt(lmmaxo,nrmtmax,natmtot)) call dynfext(iq,is,ia,ip,fext) fname='DVS'//trim(fext) open(150,file=trim(fname),form='UNFORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readdvs): error opening ",A)') trim(fname) write(*,*) stop end if read(150) version_ if ((version(1).ne.version_(1)).or.(version(2).ne.version_(2)) & .or.(version(3).ne.version_(3))) then write(*,*) write(*,'("Warning(readdvs): different versions")') write(*,'(" current : ",I3.3,".",I3.3,".",I3.3)') version write(*,'(" file : ",I3.3,".",I3.3,".",I3.3)') version_ write(*,'(" in file ",A)') trim(fname) end if read(150) nspecies_ if (nspecies.ne.nspecies_) then write(*,*) write(*,'("Error(readdvs): differing nspecies")') write(*,'(" current : ",I4)') nspecies write(*,'(" file : ",I4)') nspecies_ write(*,'(" in file ",A)') trim(fname) write(*,*) stop end if read(150) lmmaxo_ if (lmmaxo.ne.lmmaxo_) then write(*,*) write(*,'("Error(readdvs): differing lmmaxo")') write(*,'(" current : ",I4)') lmmaxo write(*,'(" file : ",I4)') lmmaxo_ write(*,'(" in file ",A)') trim(fname) write(*,*) stop end if do js=1,nspecies read(150) natoms_ if (natoms(js).ne.natoms_) then write(*,*) write(*,'("Error(readdvs): differing natoms for species ",I4)') js write(*,'(" current : ",I4)') natoms(js) write(*,'(" file : ",I4)') natoms_ write(*,'(" in file ",A)') trim(fname) write(*,*) stop end if read(150) nrmt_ if (nrmt(js).ne.nrmt_) then write(*,*) write(*,'("Error(readdvs): differing nrmt for species ",I4)') js write(*,'(" current : ",I6)') nrmt(js) write(*,'(" file : ",I6)') nrmt_ write(*,'(" in file ",A)') trim(fname) write(*,*) stop end if end do read(150) ngridg_ if ((ngridg(1).ne.ngridg_(1)).or.(ngridg(2).ne.ngridg_(2)).or. & (ngridg(3).ne.ngridg_(3))) then write(*,*) write(*,'("Error(readdvs): differing ngridg")') write(*,'(" current : ",3I6)') ngridg write(*,'(" file : ",3I6)') ngridg_ write(*,'(" in file ",A)') trim(fname) write(*,*) stop end if read(150) zfmt,dvsir do jas=1,natmtot js=idxis(jas) call zfmtpack(.true.,nrmt(js),nrmti(js),zfmt(:,:,jas),dvsmt(:,jas)) end do close(150) deallocate(zfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/readalpha2f.f900000644000000000000000000000013214061636517015415 xustar0030 mtime=1623670095.645101814 30 atime=1623670094.469102906 30 ctime=1623670095.645101814 elk-7.2.42/src/readalpha2f.f900000644002504400250440000000146314061636517017456 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 A. Sanna and E. K. U. Gross ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readalpha2f(w,a2f) use modmain implicit none ! arguments real(8), intent(out) :: w(nwplot) real(8), intent(out) :: a2f(nwplot) ! local variables integer iw,ios open(50,file='ALPHA2F.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readalpha2f): error opening ALPHA2F.OUT")') write(*,*) stop end if do iw=1,nwplot read(50,*,iostat=ios) w(iw),a2f(iw) if (ios.ne.0) then write(*,*) write(*,'("Error(readalpha2f): error reading from ALPHA2F.OUT")') write(*,'(" for frequency ",I6)') iw write(*,*) stop end if end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/gendsocfr.f900000644000000000000000000000013214061636517015216 xustar0030 mtime=1623670095.647101812 30 atime=1623670094.471102904 30 ctime=1623670095.647101812 elk-7.2.42/src/gendsocfr.f900000644002504400250440000000214614061636517017256 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine gendsocfr use modmain use modphonon implicit none integer is,ias,i integer nr,nri,ir,irc real(8) cso complex(8) z1 ! allocatable arrays real(8), allocatable :: vr1(:),vr2(:) real(8), allocatable :: dvr1(:),dvr2(:) if (.not.spinorb) return ! coefficient of spin-orbit coupling cso=y00*socscf/(4.d0*solsc**2) allocate(vr1(nrmtmax),vr2(nrmtmax)) allocate(dvr1(nrmtmax),dvr2(nrmtmax)) do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri vr1(ir)=dble(dvsmt(i,ias)) vr2(ir)=aimag(dvsmt(i,ias)) i=i+lmmaxi end do do ir=nri+1,nr vr1(ir)=dble(dvsmt(i,ias)) vr2(ir)=aimag(dvsmt(i,ias)) i=i+lmmaxo end do call splined(nr,wcrmt(:,:,is),vr1,dvr1) call splined(nr,wcrmt(:,:,is),vr2,dvr2) irc=0 do ir=1,nr,lradstp irc=irc+1 z1=cmplx(dvr1(ir),dvr2(ir),8) dsocfr(irc,ias)=(cso/rsp(ir,is))*z1 end do end do deallocate(vr1,vr2,dvr1,dvr2) end subroutine elk-7.2.42/src/PaxHeaders.21776/bornechg.f900000644000000000000000000000013214061636517015033 xustar0030 mtime=1623670095.648101812 30 atime=1623670094.472102903 30 ctime=1623670095.648101812 elk-7.2.42/src/bornechg.f900000644002504400250440000000534414061636517017076 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine bornechg use modmain use modphonon use modstore use modmpi use modtest implicit none ! local variables integer ip,l real(8) vc(3),pvl1(3),pvl2(3) real(8) becl(3),becc(3),t1 ! no shifting of the atomic basis tshift_=tshift tshift=.false. ! initialise universal variables call init0 call init1 ! store original parameters atposl_(:,:,:)=atposl(:,:,:) atposc_(:,:,:)=atposc(:,:,:) ngridk_(:)=ngridk(:) maxscl_=maxscl ! begin new Born effective charge task 10 continue call bectask(80,filext) ! if nothing more to do then restore original input parameters and return if (isph.eq.0) then filext='.OUT' tshift=tshift_ atposl(:,:,:)=atposl_(:,:,:) return end if if (mp_mpi) then write(*,'("Info(bornechg): working on ",A)') 'BEC'//trim(filext) end if ! dry run: just generate empty BEC files if (task.eq.209) goto 10 ! apply negative atomic displacement atposl(:,:,:)=atposl_(:,:,:) atposc(:,:,:)=atposc_(:,:,:) vc(:)=atposc(:,iaph,isph) vc(ipph)=vc(ipph)-0.5d0*deltaph call r3mv(ainv,vc,atposl(:,iaph,isph)) ! initial ground-state run should start from atomic densities trdstate=.false. ! run the ground-state calculation call gndstate ! subsequent calculations will read in the previous potential trdstate=.true. ! compute the first polarisation in lattice coordinates call polar(pvl1) ! apply positive atomic displacement atposl(:,:,:)=atposl_(:,:,:) atposc(:,:,:)=atposc_(:,:,:) vc(:)=atposc(:,iaph,isph) vc(ipph)=vc(ipph)+0.5d0*deltaph call r3mv(ainv,vc,atposl(:,iaph,isph)) ! run the ground-state calculation again call gndstate ! compute the second polarisation call polar(pvl2) do l=1,3 ! add multiple of 2*pi to bring polarisation vectors into coincidence pvl1(l)=modulo(pvl1(l),twopi) pvl2(l)=modulo(pvl2(l),twopi) t1=pvl1(l)-pvl2(l) if (abs(t1-twopi).lt.abs(t1)) then pvl1(l)=pvl1(l)-twopi else if (abs(t1+twopi).lt.abs(t1)) then pvl1(l)=pvl1(l)+twopi end if ! calculate the Born effective charge from the difference in polarisations t1=wkptnr*occmax*dble(nkspolar*ngridk(l))/(twopi*deltaph) becl(l)=t1*(pvl2(l)-pvl1(l)) end do ! convert from lattice to Cartesian coordinates call r3mv(avec,becl,becc) ! add the core and nuclear charge becc(ipph)=becc(ipph)+chgcr(isph)+spzn(isph) ! write Born effective charge matrix row to file if (mp_mpi) then do ip=1,3 write(80,'(G18.10," : ip = ",I4)') becc(ip),ip end do close(80) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! write test file if required and return if (test) then call writetest(208,'Born effective charge',nv=3,tol=1.d-3,rva=becc) return end if goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/bectask.f900000644000000000000000000000013014061636517014656 xustar0029 mtime=1623670095.65010181 30 atime=1623670094.474102901 29 ctime=1623670095.65010181 elk-7.2.42/src/bectask.f900000644002504400250440000000241714061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine bectask(fnum,fext) use modmain use modphonon use modmpi implicit none ! arguments integer, intent(in) :: fnum character(*), intent(out) :: fext ! local variables logical exist ! only master process should search for file if (.not.mp_mpi) goto 10 do ipph=1,3 do isph=1,nspecies do iaph=1,natoms(isph) ! Born effective charge file extension call becfext(isph,iaph,ipph,fext) ! determine if the BEC file with this extension exists inquire(file='BEC'//trim(fext),exist=exist) if (.not.exist) then open(fnum,file='BEC'//trim(fext),form='FORMATTED') iasph=idxas(iaph,isph) goto 10 end if end do end do end do isph=0; iaph=0; iasph=0; ipph=0 write(*,*) write(*,'("Info(bectask): nothing more to do")') 10 continue ! broadcast to all other MPI processes call mpi_bcast(isph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(iaph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(iasph,1,mpi_integer,0,mpicom,ierror) call mpi_bcast(ipph,1,mpi_integer,0,mpicom,ierror) if (isph.eq.0) then fext='.OUT' else call becfext(isph,iaph,ipph,fext) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/becfext.f900000644000000000000000000000013214061636517014664 xustar0030 mtime=1623670095.651101809 30 atime=1623670094.476102899 30 ctime=1623670095.651101809 elk-7.2.42/src/becfext.f900000644002504400250440000000060514061636517016722 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine becfext(is,ia,ip,fext) use modmain implicit none ! arguments integer, intent(in) :: is,ia,ip character(*), intent(out) :: fext write(fext,'("_S",I2.2,"_A",I3.3,"_P",I1,".OUT")') is,ia,ip end subroutine elk-7.2.42/src/PaxHeaders.21776/putephmat.f900000644000000000000000000000013214061636517015253 xustar0030 mtime=1623670095.653101807 30 atime=1623670094.477102899 30 ctime=1623670095.653101807 elk-7.2.42/src/putephmat.f900000644002504400250440000000133514061636517017312 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine putephmat(iq,ik,ephmat) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq,ik complex(8), intent(in) :: ephmat(nstsv,nstsv,nbph) ! local variables integer recl,n ! determine the record length inquire(iolength=recl) vql(:,iq),vkl(:,ik),nstsv,nbph,ephmat ! record number n=(iq-1)*nkptnr+ik !$OMP CRITICAL(u240) open(240,file='EPHMAT.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(240,rec=n) vql(:,iq),vkl(:,ik),nstsv,nbph,ephmat close(240) !$OMP END CRITICAL(u240) end subroutine elk-7.2.42/src/PaxHeaders.21776/getephmat.f900000644000000000000000000000013214061636517015222 xustar0030 mtime=1623670095.654101806 30 atime=1623670094.479102897 30 ctime=1623670095.654101806 elk-7.2.42/src/getephmat.f900000644002504400250440000000412614061636517017262 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine getephmat(iqp,ikp,ephmat) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iqp,ikp complex(8), intent(out) :: ephmat(nstsv,nstsv,nbph) ! local variables integer isym,lspl,iq,ik,iv(3) integer recl,n,nstsv_,nbph_ real(8) vql_(3),vkl_(3),t1 if (iqp.le.nqpt) then ! q-point is in the reduced set iq=iqp ik=ikp else ! q-point is not in the reduced set call findqpt(vql(:,iqp),isym,iq) lspl=lsplsymc(isym) call i3mtv(symlat(:,:,lspl),ivk(:,ikp),iv) iv(:)=modulo(iv(:),ngridk(:)) ik=ivkiknr(iv(1),iv(2),iv(3)) end if ! find the record length inquire(iolength=recl) vql_,vkl_,nstsv_,nbph_,ephmat ! record number n=(iq-1)*nkptnr+ik !$OMP CRITICAL(u240) open(240,file='EPHMAT.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(240,rec=n) vql_,vkl_,nstsv_,nbph_,ephmat !$OMP END CRITICAL(u240) t1=abs(vql(1,iq)-vql_(1))+abs(vql(2,iq)-vql_(2))+abs(vql(3,iq)-vql_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getephmat): differing vectors for q-point ",I8)') iq write(*,'(" current : ",3G18.10)') vql(:,iq) write(*,'(" EPHMAT.OUT : ",3G18.10)') vql_ write(*,*) stop end if t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getephmat): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" EPHMAT.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getephmat): differing nstsv for q-point, k-point ",2I8)') & iq,ik write(*,'(" current : ",I8)') nstsv write(*,'(" EPHMAT.OUT : ",I8)') nstsv_ write(*,*) stop end if if (nbph.ne.nbph_) then write(*,*) write(*,'("Error(getephmat): differing nbph for q-point, k-point ",2I8)') & iq,ik write(*,'(" current : ",I8)') nbph write(*,'(" EPHMAT.OUT : ",I8)') nbph_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/xc_pzca.f900000644000000000000000000000013214061636517014673 xustar0030 mtime=1623670095.656101804 30 atime=1623670094.481102895 30 ctime=1623670095.656101804 elk-7.2.42/src/xc_pzca.f900000644002504400250440000000376214061636517016740 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: xc_pzca ! !INTERFACE: subroutine xc_pzca(n,rho,ex,ec,vx,vc) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! rho : charge density (in,real(n)) ! ex : exchange energy density (out,real(n)) ! ec : correlation energy density (out,real(n)) ! vx : exchange potential (out,real(n)) ! vc : correlation potential (out,real(n)) ! !DESCRIPTION: ! Spin-unpolarised exchange-correlation potential and energy of the ! Perdew-Zunger parameterisation of Ceperley-Alder electron gas: {\it Phys. ! Rev. B} {\bf 23}, 5048 (1981) and {\it Phys. Rev. Lett.} {\bf 45}, 566 ! (1980). ! ! !REVISION HISTORY: ! Created October 2002 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rho(n) real(8), intent(out) :: ex(n),ec(n),vx(n),vc(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: thrd=1.d0/3.d0, thrd2=2.d0/3.d0, thrd4=4.d0/3.d0 real(8), parameter :: g=-0.1423d0,b1=1.0529d0,b2=0.3334d0 real(8), parameter :: a=0.0311d0,b=-0.048d0,c=0.0020d0,d=-0.0116d0 real(8) p1,p2,r,rs,t1 if (n.le.0) then write(*,*) write(*,'("Error(xc_pzca): invalid n : ",I8)') n write(*,*) stop end if ! prefactors t1=3.d0/(4.d0*pi) p1=t1**thrd p2=t1*(9.d0*pi/4.d0)**thrd do i=1,n r=rho(i) if (r.lt.1.d-12) then ex(i)=0.d0 ec(i)=0.d0 vx(i)=0.d0 vc(i)=0.d0 cycle end if rs=p1/r**thrd ! exchange energy and potential ex(i)=-p2/rs vx(i)=thrd4*ex(i) ! correlation energy and potential if (rs.ge.1.d0) then t1=sqrt(rs) ec(i)=g/(1.d0+b1*t1+b2*rs) vc(i)=ec(i)*(1.d0+(7.d0/6.d0)*b1*t1+thrd4*b2*rs)/(1.d0+b1*t1+b2*rs) else t1=dlog(rs) ec(i)=a*t1+b+c*rs*t1+d*rs vc(i)=a*t1+(b-thrd*a)+thrd2*c*rs*t1+thrd*(2.d0*d-c)*rs end if end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/xc_pwca.f900000644000000000000000000000013214061636517014670 xustar0030 mtime=1623670095.657101803 30 atime=1623670094.482102894 30 ctime=1623670095.657101803 elk-7.2.42/src/xc_pwca.f900000644002504400250440000001102214061636517016721 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2011 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: xc_pwca ! !INTERFACE: subroutine xc_pwca(n,rhoup,rhodn,ex,ec,vxup,vxdn,vcup,vcdn) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! rhoup : spin-up charge density (in,real(n)) ! rhodn : spin-down charge density (in,real(n)) ! ex : exchange energy density (out,real(n)) ! ec : correlation energy density (out,real(n)) ! vxup : spin-up exchange potential (out,real(n)) ! vxdn : spin-down exchange potential (out,real(n)) ! vcup : spin-up correlation potential (out,real(n)) ! vcdn : spin-down correlation potential (out,real(n)) ! !DESCRIPTION: ! Spin-polarised exchange-correlation potential and energy of the Perdew-Wang ! parameterisation of the Ceperley-Alder electron gas: {\it Phys. Rev. B} ! {\bf 45}, 13244 (1992) and {\it Phys. Rev. Lett.} {\bf 45}, 566 (1980). ! ! !REVISION HISTORY: ! Created January 2004 (JKD) ! Rewrote, October 2011 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rhoup(n),rhodn(n) real(8), intent(out) :: ex(n),ec(n) real(8), intent(out) :: vxup(n),vxdn(n) real(8), intent(out) :: vcup(n),vcdn(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: thrd=1.d0/3.d0, thrd4=4.d0/3.d0 real(8), parameter :: d2f0=1.709921d0 real(8), parameter :: a(3)=[ 0.0310907d0, 0.01554535d0, 0.0168869d0 ] real(8), parameter :: a1(3)=[ 0.21370d0, 0.20548d0, 0.11125d0 ] real(8), parameter :: b1(3)=[ 7.5957d0, 14.1189d0, 10.357d0 ] real(8), parameter :: b2(3)=[ 3.5876d0, 6.1977d0, 3.6231d0 ] real(8), parameter :: b3(3)=[ 1.6382d0, 3.3662d0, 0.88026d0 ] real(8), parameter :: b4(3)=[ 0.49294d0, 0.62517d0, 0.49671d0 ] real(8) p1,p2,p3,rup,rdn,r,ri,ri2 real(8) rs,rs2,rs12,rs32,rsi,rs12i real(8) mz,z,z3,z4,drs,dzu,dzd real(8) fz,dfz,ders,dez,deu,ded real(8) a2,ec0,dec0,ec1,dec1,ac,dac real(8) t1,t2,t3,t4,t5,t6,t7,dt1,dt2 if (n.le.0) then write(*,*) write(*,'("Error(xc_pwca): invalid n : ",I8)') n write(*,*) stop end if ! prefactors t1=3.d0/(4.d0*pi) p1=t1**thrd p2=t1*(9.d0*pi/4.d0)**thrd p3=1.d0/(2.d0**thrd4-2.d0) do i=1,n rup=rhoup(i); rdn=rhodn(i) ! total density r=rup+rdn if ((rup.lt.0.d0).or.(rdn.lt.0.d0).or.(r.lt.1.d-20)) then ex(i)=0.d0 ec(i)=0.d0 vxup(i)=0.d0 vxdn(i)=0.d0 vcup(i)=0.d0 vcdn(i)=0.d0 cycle end if ri=1.d0/r ri2=ri**2 rs=p1*ri**thrd rs2=rs**2 rs12=sqrt(rs) rs32=rs12*rs rsi=1.d0/rs rs12i=1.d0/rs12 mz=rup-rdn z=mz/r z3=z**3 z4=z3*z ! drs/drup = drs/drdn = drs/drho drs=-thrd*rs*ri ! dz/drup, dz/drdn t1=mz*ri2 dzu=ri-t1 dzd=-ri-t1 !------------------! ! exchange ! !------------------! t1=-p2*rsi/2.d0 t2=1.d0+z t3=1.d0-z t4=t2**thrd4 t5=t3**thrd4 t6=t4+t5 ! exchange energy density ex(i)=t1*t6 ! dex/drs ders=-ex(i)*rsi ! f(z) fz=p3*(t6-2.d0) ! dex/dz t4=t4/t2 t5=t5/t3 t6=t4-t5 t7=thrd4*t6 dez=t1*t7 ! df/dz dfz=p3*t7 ! dex/drup, dex/drdn t1=ders*drs deu=t1+dez*dzu ded=t1+dez*dzd ! exchange potential vxup(i)=ex(i)+r*deu vxdn(i)=ex(i)+r*ded !---------------------! ! correlation ! !---------------------! ! ec(rs,0) a2=2.d0*a(1) t1=a2*(b1(1)*rs12+b2(1)*rs+b3(1)*rs32+b4(1)*rs2) dt1=a2*(0.5d0*b1(1)*rs12i+b2(1)+1.5d0*b3(1)*rs12+2.d0*b4(1)*rs) t3=1.d0/t1 t2=1.d0+t3 dt2=-dt1*t3**2 t3=1.d0/t2 t4=1.d0+a1(1)*rs t5=log(t2) ec0=-a2*t4*t5 dec0=-a2*(a1(1)*t5+t4*t3*dt2) ! ec(rs,1) a2=2.d0*a(2) t1=a2*(b1(2)*rs12+b2(2)*rs+b3(2)*rs32+b4(2)*rs2) dt1=a2*(0.5d0*b1(2)*rs12i+b2(2)+1.5d0*b3(2)*rs12+2.d0*b4(2)*rs) t3=1.d0/t1 t2=1.d0+t3 dt2=-dt1*t3**2 t3=1.d0/t2 t4=1.d0+a1(2)*rs t5=log(t2) ec1=-a2*t4*t5 dec1=-a2*(a1(2)*t5+t4*t3*dt2) ! ac(rs) a2=2.d0*a(3) t1=a2*(b1(3)*rs12+b2(3)*rs+b3(3)*rs32+b4(3)*rs2) dt1=a2*(0.5d0*b1(3)*rs12i+b2(3)+1.5d0*b3(3)*rs12+2.d0*b4(3)*rs) t3=1.d0/t1 t2=1.d0+t3 dt2=-dt1*t3**2 t3=1.d0/t2 t4=1.d0+a1(3)*rs t5=log(t2) ac=a2*t4*t5 dac=a2*(a1(3)*t5+t4*t3*dt2) ! correlation energy density t1=1.d0-z4 t2=(fz/d2f0)*t1 t3=ec1-ec0 t4=fz*z4 ec(i)=ec0+ac*t2+t3*t4 ! dec/drs t5=dec1-dec0 ders=dec0+dac*t2+t5*t4 ! dec/dz t6=4.d0*fz*z3 dez=(ac/d2f0)*(dfz*t1-t6)+t3*(dfz*z4+t6) ! dec/drup, dec/drdn t1=ders*drs deu=t1+dez*dzu ded=t1+dez*dzd ! correlation potential vcup(i)=ec(i)+r*deu vcdn(i)=ec(i)+r*ded end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/xc_pbe.f900000644000000000000000000000013214061636517014504 xustar0030 mtime=1623670095.659101801 30 atime=1623670094.484102892 30 ctime=1623670095.659101801 elk-7.2.42/src/xc_pbe.f900000644002504400250440000000711314061636517016543 0ustar00dewhurstdewhurst00000000000000 ! This routine is based on code written by K. Burke. !BOP ! !ROUTINE: xc_pbe ! !INTERFACE: subroutine xc_pbe(n,kappa,mu,beta,rhoup,rhodn,grho,gup,gdn,g2up,g2dn,g3rho, & g3up,g3dn,ex,ec,vxup,vxdn,vcup,vcdn) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! kappa : parameter for large-gradient limit (in,real) ! mu : gradient expansion coefficient (in,real) ! beta : gradient expansion coefficient (in,real) ! rhoup : spin-up charge density (in,real(n)) ! rhodn : spin-down charge density (in,real(n)) ! grho : |grad rho| (in,real(n)) ! gup : |grad rhoup| (in,real(n)) ! gdn : |grad rhodn| (in,real(n)) ! g2up : grad^2 rhoup (in,real(n)) ! g2dn : grad^2 rhodn (in,real(n)) ! g3rho : (grad rho).(grad |grad rho|) (in,real(n)) ! g3up : (grad rhoup).(grad |grad rhoup|) (in,real(n)) ! g3dn : (grad rhodn).(grad |grad rhodn|) (in,real(n)) ! ex : exchange energy density (out,real(n)) ! ec : correlation energy density (out,real(n)) ! vxup : spin-up exchange potential (out,real(n)) ! vxdn : spin-down exchange potential (out,real(n)) ! vcup : spin-up correlation potential (out,real(n)) ! vcdn : spin-down correlation potential (out,real(n)) ! !DESCRIPTION: ! Spin-polarised exchange-correlation potential and energy of the generalised ! gradient approximation functional of J. P. Perdew, K. Burke and M. Ernzerhof ! {\it Phys. Rev. Lett.} {\bf 77}, 3865 (1996) and {\bf 78}, 1396(E) (1997). ! The parameter $\kappa$, which controls the large-gradient limit, can be set ! to $0.804$ or $1.245$ corresponding to the value in the original article or ! the revised version of Y. Zhang and W. Yang, {\it Phys. Rev. Lett.} ! {\bf 80}, 890 (1998). ! ! !REVISION HISTORY: ! Modified routines written by K. Burke, October 2004 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: kappa,mu,beta real(8), intent(in) :: rhoup(n),rhodn(n) real(8), intent(in) :: grho(n),gup(n),gdn(n) real(8), intent(in) :: g2up(n),g2dn(n) real(8), intent(in) :: g3rho(n),g3up(n),g3dn(n) real(8), intent(out) :: ex(n),ec(n) real(8), intent(out) :: vxup(n),vxdn(n) real(8), intent(out) :: vcup(n),vcdn(n) ! local variables integer i real(8), parameter :: thrd=1.d0/3.d0 real(8), parameter :: thrd2=2.d0/3.d0 real(8), parameter :: pi=3.1415926535897932385d0 real(8) rup,rdn,r,r2,kf,s,u,v real(8) rs,z,g,ks,ksg real(8) t,uu,vv,ww real(8) g2rho,exup,exdn do i=1,n rup=rhoup(i); rdn=rhodn(i) ! total density r=rup+rdn if ((rup.ge.0.d0).and.(rdn.ge.0.d0).and.(r.gt.1.d-12)) then ! exchange energy density and potential ! spin-up r2=2.d0*rup kf=(r2*3.d0*pi**2)**thrd s=gup(i)/(2.d0*kf*rup) u=g3up(i)/((rup**2)*(2.d0*kf)**3) v=g2up(i)/(rup*(2.d0*kf)**2) call x_pbe(kappa,mu,r2,s,u,v,exup,vxup(i)) ! spin-down r2=2.d0*rdn kf=(r2*3.d0*pi**2)**thrd s=gdn(i)/(2.d0*kf*rdn) u=g3dn(i)/((rdn**2)*(2.d0*kf)**3) v=g2dn(i)/(rdn*(2.d0*kf)**2) call x_pbe(kappa,mu,r2,s,u,v,exdn,vxdn(i)) ! average exchange energy density ex(i)=(exup*rhoup(i)+exdn*rhodn(i))/r ! correlation rs=(3.d0/(4.d0*pi*r))**thrd z=(rhoup(i)-rhodn(i))/r g=((1.d0+z)**thrd2+(1.d0-z)**thrd2)/2.d0 kf=(r*3.d0*pi**2)**thrd ks=sqrt(4.d0*kf/pi) ksg=2.d0*ks*g t=grho(i)/(ksg*r) uu=g3rho(i)/((r**2)*ksg**3) g2rho=g2up(i)+g2dn(i) vv=g2rho/(r*ksg**2) ww=(gup(i)**2-gdn(i)**2-z*grho(i)**2)/(r*r*ksg**2) call c_pbe(beta,rs,z,t,uu,vv,ww,ec(i),vcup(i),vcdn(i)) else ex(i)=0.d0 ec(i)=0.d0 vxup(i)=0.d0 vxdn(i)=0.d0 vcup(i)=0.d0 vcdn(i)=0.d0 end if end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/xc_am05.f900000644000000000000000000000012514061636517014502 xustar0028 mtime=1623670095.6601018 29 atime=1623670094.48610289 28 ctime=1623670095.6601018 elk-7.2.42/src/xc_am05.f900000644002504400250440000002323414061636517016541 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2004, 2005 Rickard Armiento ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: xc_am05 ! !INTERFACE: subroutine xc_am05(n,rho,grho,g2rho,g3rho,ex,ec,vx,vc) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! rho : charge density (in,real(n)) ! grho : |grad rho| (in,real(n)) ! g2rho : grad^2 rho (in,real(n)) ! g3rho : (grad rho).(grad |grad rho|) (in,real(n)) ! ex : exchange energy density (out,real(n)) ! ec : correlation energy density (out,real(n)) ! vx : spin-unpolarised exchange potential (out,real(n)) ! vc : spin-unpolarised correlation potential (out,real(n)) ! !DESCRIPTION: ! Spin-unpolarised exchange-correlation potential and energy functional of ! R. Armiento and A. E. Mattsson, {\it Phys. Rev. B} {\bf 72}, 085108 (2005). ! ! !REVISION HISTORY: ! Created April 2005 (RAR); based on xc_pbe !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rho(n),grho(n),g2rho(n),g3rho(n) real(8), intent(out) :: ex(n),ec(n),vx(n),vc(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8) r,kf,s,v,u real(8) grho_,g2rho_,g3rho_ do i=1,n r=rho(i) if (r.gt.1.d-12) then grho_=grho(i) g2rho_=g2rho(i) g3rho_=g3rho(i) ! exchange energy density and potential kf=(r*3.d0*pi**2)**(1.d0/3.d0) s=grho_/(2.d0*kf*r) v=g2rho_/(r*(2.d0*kf)**2) u=g3rho_/((r**2)*(2.d0*kf)**3) call xc_am05_point(r,s,u,v,ex(i),ec(i),vx(i),vc(i),1) else ex(i)=0.d0 ec(i)=0.d0 vx(i)=0.d0 vc(i)=0.d0 end if end do end subroutine !EOC !BOP ! !ROUTINE: xc_am05_point ! !INTERFACE: subroutine xc_am05_point(rho,s,u,v,ex,ec,vx,vc,pot) ! !INPUT/OUTPUT PARAMETERS: ! rho : electron density (in,real) ! s : gradient of n / (2 kF n) ! u : grad n * grad | grad n | / (n**2 (2 kF)**3) ! v : laplacian of density / (n**2 (2.d0*kf)**3) ! ex : exchange energy density (out,real) ! ec : correlation energy density (out,real) ! vx : spin-unpolarised exchange potential (out,real) ! vc : spin-unpolarised correlation potential (out,real) ! !DESCRIPTION: ! Calculate the spin-unpolarised exchange-correlation potential and energy for ! the Armiento-Mattsson 05 functional for a single point. ! ! !REVISION HISTORY: ! Created April 2005 (RAR) !EOP !BOC implicit none ! arguments real(8), intent(in) :: rho, s, u, v integer, intent(in) :: pot real(8), intent(out) :: ex, ec, vx, vc ! constants real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: g = 0.8098d0 real(8), parameter :: a = 2.804d0 real(8), parameter :: c = 0.7168d0 ! local variables real(8) s2,exlda, vxlda, eclda, vclda, X, Xs, Xss real(8) F, Fs, Fss, Hx, Hxs, Hxss, Hc, Hcs, Hcss real(8) zb, zbs, zbss, w real(8) n0b, n0bs, n0bss real(8) ln0b, ln0bs, ln0bss real(8) zbb, zbbc, zbbs, zbbss real(8) fxb, fxbs, fxbss ! cutoff if((rho .le. 1.0d-16)) then ex = 0.0d0 ec = 0.0d0 vx = 0.0d0 vc = 0.0d0 return endif s2 = s**2 ! LDA correlation call xc_am05_ldapwc(rho,eclda,vclda) ! LDA exchange call xc_am05_ldax(rho,exlda,vxlda) !------------------! ! exchange ! !------------------! ! interpolation index X = 1.0d0 - a*s2/(1.0d0 + a*s2) ! Airy LAA refinement function call xc_am05_labertw(s**(3.0d0/2.0d0)/sqrt(24.0d0),w) zb = (3.0d0/2.0d0*w)**(2.0d0/3.0d0) n0b = w/(2.0d0*pi**2*s**3) ln0b = -3.0d0/(2.0d0*pi)*(3.0d0*pi**2*n0b)**(1.0d0/3.0d0) zbbc = ((4.0d0/3.0d0)**(1.0d0/3.0d0)*2.0d0*pi/3.0d0)**4 zbb = (zbbc*zb**2 + zb**4)**(1.0d0/4.0d0) Fxb = -1.0d0/(ln0b*2.0d0*zbb) F = (c*s2 + 1.0d0)/(c*s2/Fxb + 1.0d0) ! exchange refinement function Hx = X + (1.0d0 - X)*F ! exchange energy per particle, Ex = Integrate[n*ex] ex = exlda*Hx !---------------------! ! correlation ! !---------------------! ! correlation refinement function Hc = X + g*(1.0d0 - X) ! correlation energy per particle, Ec = Integrate[rho*ec] ec = eclda*Hc if (pot .eq. 0) return !----------------------------! ! exchange potential ! !----------------------------! ! interpolation index derivatives, dX/ds Xs = -2.0d0*a*s/(1.0d0 + a*s2)**2 Xss = 2.0d0*a*(3.0d0*a*s2-1.0d0)/(1.0d0+a*s2)**3 ! airy LAA refinement function derivatives, dF/ds zbs = zb/(s + s*w) zbss = - zb*w*(5.0d0+2.0d0*w)/(2.0d0*s2*(1.0d0+w)**3) n0bs = sqrt(zb)*(-2.0d0*zb+s*zbs)/(2.0d0*pi**2*s2**2) n0bss = (16.0d0*zb**2+s**2*zbs**2+2.0d0*s*zb*(-6.0d0* & zbs+s*zbss))/(4.0d0*pi**2*s**5*sqrt(zb)) ln0bs = -(3.0d0/pi)**(1.0d0/3.0d0)*n0bs/ & (2.0d0*n0b**(2.0d0/3.0d0)) ln0bss = (2.0d0*n0bs**2-3.0d0*n0b*n0bss)/(2.0d0* & 3.0d0**(2.0d0/3.0d0)*pi**(1.0d0/3.0d0)*n0b**(5.0d0/3.0d0)) zbbs = zb*(zbbc+2*zb**2)*zbs/ & (2.0d0*(zb**2*(zbbc+zb**2))**(3.0d0/4.0d0)) zbbss = zb**2*(-zbbc*(zbbc-2.0d0*zb**2)*zbs**2+ & 2.0d0*zb*(zbbc+zb**2)*(zbbc+2.0d0*zb**2)*zbss)/ & (4.0d0*(zb**2*(zbbc+zb**2))**(7.0d0/4.0d0)) Fxbs = (zbb*ln0bs+ln0b*zbbs)/(2.0d0*ln0b**2*zbb**2) Fxbss = (-2.0d0*ln0b**2*zbbs**2+zbb**2*(-2.0d0*ln0bs**2 + & ln0b*ln0bss)+ln0b*zbb*(-2.0d0*ln0bs*zbbs+ln0b*zbbss))/ & (2.0d0*ln0b**3*zbb**3) Fs = (c*s*(2.0d0*(Fxb-1.0d0)*Fxb + s*(1.0d0+c*s2)*Fxbs))/ & (c*s2 + Fxb)**2 Fss = (c*(-2.0d0*(3.0d0*c*s2-Fxb)*(Fxb-1.0d0)*Fxb+ & 4.0d0*s*(-c*s2+Fxb+2.0d0*c*s2*Fxb)*Fxbs - & 2.0d0*s2*(1.0d0+c*s2)*Fxbs**2+s2*(1.0d0+c*s2)* & (c*s2 + Fxb)*Fxbss))/(c*s2+Fxb)**3 ! GGA refinement function derivatives, dF/ds Hxs = - (X - 1.0d0)*Fs - (F - 1.0d0)*Xs Hxss = - 2.0d0*Fs*Xs - (X - 1.0d0)*Fss - (F - 1.0d0)*Xss ! vx formula for gradient dependent functional, ! generalized form of Eq. (24) in PRB 33, 8800 (1986) vx = vxlda*(Hx - s*Hxs) + & exlda*((4.0d0/3.0d0*s-v/s)*Hxs - & (u-4.0d0/3.0d0*s**3)*(Hxss/s-Hxs/s2)) !-------------------------------! ! correlation potential ! !-------------------------------! ! correlation refinement function derivatives, dF/ds Hcs = Xs - g*Xs Hcss = Xss - g*Xss ! vc formula for gradient dependent functional, ! generalized form of Eq. (24) in Phys. Rev. B 33, 8800 (1986) vc = vclda*(Hc - s*Hcs) + & eclda*((4.0d0/3.0d0*s - v/s)*Hcs - & (u - 4.0d0/3.0d0*s**3)*(Hcss/s - Hcs/s2)) end subroutine !EOC !BOP ! !ROUTINE: xc_am05_ldax ! !INTERFACE: subroutine xc_am05_ldax(n,ex,vx) ! !INPUT/OUTPUT PARAMETERS: ! n : electron density (in,real) ! ex : exchange energy per electron (out,real) ! vx : exchange potential (out,real) ! !DESCRIPTION: ! Local density approximation exchange. ! ! !REVISION HISTORY: ! Created April 2005 (RAR) !EOP !BOC implicit none ! arguments real(8), intent(in) :: n real(8), intent(out) :: ex real(8), intent(out) :: vx ! constants real(8), parameter :: pi=3.1415926535897932385d0 vx=-(3.d0*n/pi)**(1.d0/3.d0) ex=(3.d0/4.d0)*vx end subroutine !EOC !BOP ! !ROUTINE: xc_am05_ldapwc ! !INTERFACE: subroutine xc_am05_ldapwc(n,ec,vc) ! !INPUT/OUTPUT PARAMETERS: ! n : electron density (in,real) ! ec : correlation energy per electron (out,real) ! vc : correlation potential (out,real) ! !DESCRIPTION: ! Correlation energy and potential of the Perdew-Wang parameterisation of ! the Ceperley-Alder electron gas {\it Phys. Rev. B} {\bf 45}, 13244 (1992) ! and {\it Phys. Rev. Lett.} {\bf 45}, 566 (1980). This is a clean-room ! implementation from paper. ! ! !REVISION HISTORY: ! Created April 2005 (RAR) !EOP !BOC implicit none ! arguments real(8), intent(in) :: n real(8), intent(out) :: ec real(8), intent(out) :: vc ! constants real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: a01 = 0.21370d0 real(8), parameter :: b01 = 7.5957d0 real(8), parameter :: b02 = 3.5876d0 real(8), parameter :: b03 = 1.6382d0 real(8), parameter :: b04 = 0.49294d0 ! paper actually use this: ! real(8), parameter (A0 = 0.031091d0) ! but routines now "defacto standard" was distributed using: real(8), parameter :: A0 = 0.0310907d0 ! local variables real(8) rsq real(8) Q0, Q1, Q1p, ecrs rsq = (3.0d0/(4.0d0*pi*n))**(1.0d0/6.0d0) ec = -2.0d0*A0*(1.0d0 + a01*rsq**2)* & log(1.0d0 + 1.0d0/ & (2.0d0*A0*rsq*(b01 + rsq*(b02 + rsq*(b03 + b04*rsq))))) Q0 = -2.0d0*A0*(1.0d0 + a01*rsq**2) Q1 = 2.0d0*A0*rsq*(b01 + rsq*(b02 + rsq*(b03 + b04*rsq))) Q1p = A0*(b01/rsq+2.0d0*b02+3.0d0*b03*rsq+4.0d0*b04*rsq**2) ecrs = -2.0d0*A0*a01*log(1.0d0 + 1.0d0/Q1)-Q0*Q1p/(Q1**2+Q1) vc = ec - rsq**2/3.0d0*ecrs end subroutine !EOC !BOP ! !ROUTINE: xc_am05_labertw ! !INTERFACE: subroutine xc_am05_labertw(z,val) ! !INPUT/OUTPUT PARAMETERS: ! z : function argument (in,real) ! val : value of lambert W function of z (out,real) ! !DESCRIPTION: ! Lambert $W$-function using the method of Corless, Gonnet, Hare, Jeffrey and ! Knuth, {\it Adv. Comp. Math.} {\bf 5}, 329 (1996). The approach is based ! loosely on that in GNU Octave by N. N. Schraudolph, but this implementation ! is for real values and the principal branch only. ! ! !REVISION HISTORY: ! Created April 2005 (RAR) !EOP !BOC implicit none ! arguments real(8), intent(in) :: z real(8), intent(out) :: val ! local variables real(8) e,t,p integer i ! if z too low, go with the first term of the power expansion, z if (z.lt.1.d-20) then val=z return end if e=exp(1.d0) ! inital guess if (abs(z+1.d0/e).gt.1.45d0) then ! asymptotic expansion at 0 and Inf val=log(z) val=val-log(val) else ! series expansion about -1/e to first order val=1.d0*sqrt(2.d0*e*z+2.d0)-1.d0 end if ! find val through iteration do i=1,10 p=exp(val) t=val*p-z if (val.ne.-1.d0) then t=t/(p*(val+1.d0)-0.5d0*(val+2.d0)*t/(val+1.d0)) else t=0.d0 end if val=val-t if (abs(t).lt.(2.48d0*1.d-14)*(1.d0+abs(val))) return end do ! this should never happen! write(*,*) write(*,'("Error(xc_am05_labertw): iteration limit reached")') write(*,'(" Likely cause: improper numbers (INFs, NaNs) in density")') write(*,*) stop end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/xc_xalpha.f900000644000000000000000000000013214061636517015213 xustar0030 mtime=1623670095.662101798 30 atime=1623670094.488102888 30 ctime=1623670095.662101798 elk-7.2.42/src/xc_xalpha.f900000644002504400250440000000244114061636517017251 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 1998-2006 ABINIT group (DCA, XG, GMR). ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: xc_xalpha ! !INTERFACE: subroutine xc_xalpha(n,rho,exc,vxc) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! rho : charge density (in,real(n)) ! exc : exchange-correlation energy density (out,real(n)) ! vxc : exchange-correlation potential (out,real(n)) ! !DESCRIPTION: ! $X_{\alpha}$ approximation to the exchange-correlation potential and energy ! density. See J. C. Slater, {\it Phys. Rev.} {\bf 81}, 385 (1951). ! ! !REVISION HISTORY: ! Modified an ABINIT routine, September 2006 (JKD) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rho(n) real(8), intent(out) :: exc(n),vxc(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: alpha=1.d0 real(8) r,efac,rs,rsm1,vfac vfac=(1.5d0/pi)**(2.d0/3.d0) efac=0.75d0*vfac ! loop over density points do i=1,n r=rho(i) if (r.gt.1.d-12) then rs=(3.d0/(4.d0*pi*r))**(1.d0/3.d0) rsm1=1.0d0/rs ! compute energy density exc(i)=-alpha*efac*rsm1 ! compute potential vxc(i)=-alpha*vfac*rsm1 end if end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/xc_wc06.f900000644000000000000000000000013214061636517014515 xustar0030 mtime=1623670095.663101798 30 atime=1623670094.490102886 30 ctime=1623670095.663101798 elk-7.2.42/src/xc_wc06.f900000644002504400250440000000242614061636517016556 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 Zhigang Wu and R. E. Cohen. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine xc_wc06(n,rho,grho,g2rho,g3rho,ex,ec,vx,vc) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rho(n),grho(n),g2rho(n),g3rho(n) real(8), intent(out) :: ex(n),ec(n),vx(n),vc(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: thrd=1.d0/3.d0 ! default PBE beta real(8), parameter :: beta=0.06672455060314922d0 real(8) r,grho_,g2rho_,g3rho_ real(8) kf,s,u,v,rs,z,g real(8) ks,ksg,t,uu,vv,ww do i=1,n r=rho(i) if (r.gt.1.d-12) then grho_=grho(i) g2rho_=g2rho(i) g3rho_=g3rho(i) kf=(r*3.d0*pi**2)**thrd s=grho_/(2.d0*kf*r) u=g3rho_/((r**2)*(2.d0*kf)**3) v=g2rho_/(r*(2.d0*kf)**2) ! Wu-Cohen exchange call x_wc06(r,s,u,v,ex(i),vx(i)) ! Perdew-Burke-Ernzerhof correlation rs=(3.d0/(4.d0*pi*r))**thrd z=0.d0 g=1.d0 ks=sqrt(4.d0*kf/pi) ksg=2.d0*ks*g t=grho_/(ksg*r) uu=g3rho_/((r**2)*ksg**3) vv=g2rho_/(r*ksg**2) ww=0.d0 call c_pbe(beta,rs,z,t,uu,vv,ww,ec(i),vc(i),vc(i)) else ex(i)=0.d0 ec(i)=0.d0 vx(i)=0.d0 vc(i)=0.d0 end if end do end subroutine elk-7.2.42/src/PaxHeaders.21776/x_wc06.f900000644000000000000000000000013214061636517014352 xustar0030 mtime=1623670095.664101797 30 atime=1623670094.491102885 30 ctime=1623670095.664101797 elk-7.2.42/src/x_wc06.f900000644002504400250440000000221314061636517016405 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2006 Zhigang Wu and R. E. Cohen. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. elemental subroutine x_wc06(rho,s,u,v,ex,vx) implicit none ! arguments real(8), intent(in) :: rho,s,u,v real(8), intent(out) :: ex,vx ! local variables real(8), parameter :: ax=-0.7385587663820224059d0 real(8), parameter :: mu=0.2195149727645171d0 real(8), parameter :: kappa=0.804d0 real(8), parameter :: b=10.d0/81.d0 real(8), parameter :: c=0.00793746933516d0 real(8), parameter :: thrd=1.d0/3.d0 real(8), parameter :: thrd4=4.d0/3.d0 real(8) dmu,exu real(8) s2,s4,es2,x,p0,fxwc real(8) fs,fss,t0,t1,t2,t3 ! lda exchange energy density exu=ax*rho**thrd s2=s**2 s4=s2**2 es2=exp(-s2) t0=1.d0+c*s4 dmu=mu-b x=b*s2+dmu*s2*es2+log(t0) p0=1.d0+x/kappa ! WC enhancement factor fxwc=1.d0+kappa-kappa/p0 ! exchange energy density ex=exu*fxwc t1=b+dmu*(1.d0-s2)*es2+2.d0*c*s2/t0 t2=dmu*s*(s2-2.d0)*es2+2.d0*c/t0-4.d0*(c**2)*s4/(t0**2) t3=1.d0/(p0**2) fs=2.d0*t1*t3 fss=t3*(4.d0*t2-8.d0*s*(t1**2)/(kappa*p0)) ! exchange potential vx=exu*(thrd4*fxwc-(u-thrd4*s2*s)*fss-v*fs) end subroutine elk-7.2.42/src/PaxHeaders.21776/x_pbe.f900000644000000000000000000000013214061636517014341 xustar0030 mtime=1623670095.666101795 30 atime=1623670094.493102884 30 ctime=1623670095.666101795 elk-7.2.42/src/x_pbe.f900000644002504400250440000000125714061636517016403 0ustar00dewhurstdewhurst00000000000000 ! This routine is based on code written by K. Burke. elemental subroutine x_pbe(kappa,mu,rho,s,u,v,ex,vx) implicit none ! arguments real(8), intent(in) :: kappa,mu real(8), intent(in) :: rho,s,u,v real(8), intent(out) :: ex,vx ! local variables real(8), parameter :: ax=-0.7385587663820224058d0 real(8), parameter :: thrd=1.d0/3.d0 real(8), parameter :: thrd4=4.d0/3.d0 real(8) ul,exu,s2,p0 real(8) fxpbe,fs,fss ul=mu/kappa ! LDA exchange energy density exu=ax*rho**thrd ! PBE enhancement factor s2=s**2 p0=1.d0+ul*s2 fxpbe=1.d0+kappa-kappa/p0 ex=exu*fxpbe fs=2.d0*kappa*ul/(p0*p0) fss=-4.d0*ul*s*fs/p0 ! exchange potential vx=exu*(thrd4*fxpbe-(u-thrd4*s2*s)*fss-v*fs) end subroutine elk-7.2.42/src/PaxHeaders.21776/c_pbe.f900000644000000000000000000000013214061636517014314 xustar0030 mtime=1623670095.667101794 30 atime=1623670094.495102882 30 ctime=1623670095.667101794 elk-7.2.42/src/c_pbe.f900000644002504400250440000000516414061636517016357 0ustar00dewhurstdewhurst00000000000000 ! This routine is based on code written by K. Burke. subroutine c_pbe(beta,rs,z,t,uu,vv,ww,ec,vcup,vcdn) implicit none ! arguments real(8), intent(in) :: beta,rs,z,t,uu,vv,ww real(8), intent(out) :: ec,vcup,vcdn ! local variables real(8), parameter :: thrd=1.d0/3.d0 real(8), parameter :: thrdm=-thrd real(8), parameter :: thrd2=2.d0*thrd real(8), parameter :: thrd4=4.d0*thrd real(8), parameter :: sixthm=thrdm/2.d0 real(8), parameter :: gam=0.5198420997897463295d0 real(8), parameter :: fzz=8.d0/(9.d0*gam) real(8), parameter :: gamma=0.0310906908696548950d0 real(8), parameter :: eta=1.d-12 real(8) rtrs,eu,eurs,ep,eprs,alfm,alfrsm,z4,f real(8) ecrs,fz,ecz,comm,g,g3,pon,b,b2,t2,t4 real(8) q4,q5,g4,t6,rsthrd,gz,fac,bg,bec,q8,q9 real(8) hb,hrs,fact0,fact1,hbt,hrst,hz,ht,hzt real(8) fact2,fact3,htt,pref,fact5,h,dvcup,dvcdn real(8) delt delt=beta/gamma rtrs=sqrt(rs) call c_pbe_gcor(0.0310907d0,0.21370d0,7.5957d0,3.5876d0,1.6382d0,0.49294d0, & rtrs,eu,eurs) call c_pbe_gcor(0.01554535d0,0.20548d0,14.1189d0,6.1977d0,3.3662d0,0.62517d0, & rtrs,ep,eprs) call c_pbe_gcor(0.0168869d0,0.11125d0,10.357d0,3.6231d0,0.88026d0,0.49671d0, & rtrs,alfm,alfrsm) z4=z**4 f=((1.d0+z)**thrd4+(1.d0-z)**thrd4-2.d0)/gam ! local contribution to correlation energy density ec=eu*(1.d0-f*z4)+ep*f*z4-alfm*f*(1.d0-z4)/fzz ecrs=eurs*(1.d0-f*z4)+eprs*f*z4-alfrsm*f*(1.d0-z4)/fzz fz=thrd4*((1.d0+z)**thrd-(1.d0-z)**thrd)/gam ecz=4.d0*(z**3)*f*(ep-eu+alfm/fzz)+fz*(z4*ep-z4*eu-(1.d0-z4)*alfm/fzz) comm=ec-rs*ecrs/3.d0-z*ecz ! local contribution to correlation potential vcup=comm+ecz vcdn=comm-ecz g=((1.d0+z)**thrd2+(1.d0-z)**thrd2)/2.d0 g3=g**3 pon=-ec/(g3*gamma) b=delt/(exp(pon)-1.d0) b2=b*b t2=t*t t4=t2*t2 q4=1.d0+b*t2 q5=1.d0+b*t2+b2*t4 ! gradient correction to energy density h=g3*(beta/delt)*log(1.d0+delt*q4*t2/q5) g4=g3*g t6=t4*t2 rsthrd=rs/3.d0 gz=(((1.d0+z)**2+eta)**sixthm-((1.d0-z)**2+eta)**sixthm)/3.d0 fac=delt/b+1.d0 bg=-3.d0*b2*ec*fac/(beta*g4) bec=b2*fac/(beta*g3) q8=q5*q5+delt*q4*q5*t2 q9=1.d0+2.d0*b*t2 hb=-beta*g3*b*t6*(2.d0+b*t2)/q8 hrs=-rsthrd*hb*bec*ecrs fact0=2.d0*delt-6.d0*b fact1=q5*q9+q4*q9*q9 hbt=2.d0*beta*g3*t4*((q4*q5*fact0-delt*fact1)/q8)/q8 hrst=rsthrd*t2*hbt*bec*ecrs hz=3.d0*gz*h/g+hb*(bg*gz+bec*ecz) ht=2.d0*beta*g3*q9/q8 hzt=3.d0*gz*ht/g+hbt*(bg*gz+bec*ecz) fact2=q4*q5+b*t2*(q4*q9+q5) fact3=2.d0*b*q5*q9+delt*fact2 htt=4.d0*beta*g3*t*(2.d0*b/q8-(q9*fact3/q8)/q8) comm=h+hrs+hrst+t2*ht/6.d0+7.d0*t2*t*htt/6.d0 pref=hz-gz*t2*ht/g fact5=gz*(2.d0*ht+t*htt)/g comm=comm-pref*z-uu*htt-vv*ht-ww*(hzt-fact5) ! gradient correction to potential dvcup=comm+pref dvcdn=comm-pref ! add gradient corrections ec=ec+h vcup=vcup+dvcup vcdn=vcdn+dvcdn end subroutine elk-7.2.42/src/PaxHeaders.21776/c_pbe_gcor.f900000644000000000000000000000013214061636517015326 xustar0030 mtime=1623670095.669101792 30 atime=1623670094.496102881 30 ctime=1623670095.669101792 elk-7.2.42/src/c_pbe_gcor.f900000644002504400250440000000073314061636517017366 0ustar00dewhurstdewhurst00000000000000 ! This routine is based on code written by K. Burke. elemental subroutine c_pbe_gcor(a,a1,b1,b2,b3,b4,rtrs,gg,ggrs) implicit none ! arguments real(8), intent(in) :: a,a1,b1,b2,b3,b4,rtrs real(8), intent(out) :: gg,ggrs ! local variables real(8) q0,q1,q2,q3 q0=-2.d0*a*(1.d0+a1*rtrs*rtrs) q1=2.d0*a*rtrs*(b1+rtrs*(b2+rtrs*(b3+b4*rtrs))) q2=log(1.d0+1.d0/q1) gg=q0*q2 q3=a*(b1/rtrs+2.d0*b2+rtrs*(3.d0*b3+4.d0*b4*rtrs)) ggrs=-2.d0*a*a1*q2-q0*q3/(q1*(1.d0+q1)) end subroutine elk-7.2.42/src/PaxHeaders.21776/xc_vbh.f900000644000000000000000000000013214061636517014515 xustar0030 mtime=1623670095.670101791 30 atime=1623670094.498102879 30 ctime=1623670095.670101791 elk-7.2.42/src/xc_vbh.f900000644002504400250440000000620214061636517016552 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 F. Cricchio, J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: xc_vbh ! !INTERFACE: subroutine xc_vbh(n,rhoup,rhodn,ex,ec,vxup,vxdn,vcup,vcdn) ! !INPUT/OUTPUT PARAMETERS: ! n : number of density points (in,integer) ! rhoup : spin-up charge density (in,real(n)) ! rhodn : spin-down charge density (in,real(n)) ! ex : exchange energy density (out,real(n)) ! ec : correlation energy density (out,real(n)) ! vxup : spin-up exchange potential (out,real(n)) ! vxdn : spin-down exchange potential (out,real(n)) ! vcup : spin-up correlation potential (out,real(n)) ! vcdn : spin-down correlation potential (out,real(n)) ! !DESCRIPTION: ! Spin-polarised exchange-correlation potential and energy functional of ! von Barth and Hedin: {\it J. Phys. C} {\bf 5}, 1629 (1972). Note that the ! implementation is in Rydbergs in order to follow the paper step by step, at ! the end the potential and energy are converted to Hartree. ! ! !REVISION HISTORY: ! Created September 2007 (F. Cricchio) !EOP !BOC implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rhoup(n),rhodn(n) real(8), intent(out) :: ex(n),ec(n) real(8), intent(out) :: vxup(n),vxdn(n) real(8), intent(out) :: vcup(n),vcdn(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: cp=0.0504d0 real(8), parameter :: cf=0.0254d0 real(8), parameter :: rp=30.d0 real(8), parameter :: rf=75.d0 real(8) alpha0,eps0_x,a,gamma real(8) rup,rdn,r,rs,x,zf,zp real(8) fx,fp,ff,epsp_x,mup_x real(8) epsp_c,epsf_c,mup_c,muf_c,vc,tau_c alpha0=(4.d0/(9.d0*pi))**(1.d0/3.d0) eps0_x=(3.d0/2.d0)/(pi*alpha0) a=2.d0**(-1.d0/3.d0) gamma=(4.d0/3.d0)*a/(1.d0-a) do i=1,n rup=rhoup(i); rdn=rhodn(i) ! total density r=rup+rdn if ((rup.ge.0.d0).and.(rdn.ge.0.d0).and.(r.gt.1.d-12)) then ! Wigner-Seitz radius in atomic units (a0=1) rs=(3.d0/(4.d0*pi*r))**(1.d0/3.d0) x=rup/r fx=(1.d0/(1.d0-a))*(x**(4.d0/3.d0)+(1.d0-x)**(4.d0/3.d0)-a) epsp_x=-eps0_x/rs mup_x=(4.d0/3.d0)*epsp_x ! exchange energy ex(i)=epsp_x+(1.d0/gamma)*mup_x*fx zp=rs/rp fp=(1.d0+zp**3)*log(1.d0+1.d0/zp)+0.5d0*zp-zp**2-1.d0/3.d0 zf=rs/rf ff=(1.d0+zf**3)*log(1.d0+1.d0/zf)+0.5d0*zf-zf**2-1.d0/3.d0 epsp_c=-cp*fp epsf_c=-cf*ff vc=gamma*(epsf_c-epsp_c) ! correlation energy ec(i)=epsp_c+(1.d0/gamma)*vc*fx mup_c=-cp*log(1.d0+rp/rs) muf_c=-cf*log(1.d0+rf/rs) tau_c=muf_c-mup_c-(4.d0/3.d0)*(epsf_c-epsp_c) ! exchange potential vxup(i)=mup_x*(2.d0*x)**(1.d0/3.d0) vxdn(i)=mup_x*(2.d0*(1.d0-x))**(1.d0/3.d0) ! correlation potential vcup(i)=vc*(2.d0*x)**(1.d0/3.d0)+mup_c-vc+tau_c*fx vcdn(i)=vc*(2.d0*(1.d0-x))**(1.d0/3.d0)+mup_c-vc+tau_c*fx ! convert from Rybergs to Hartree ex(i)=0.5d0*ex(i) ec(i)=0.5d0*ec(i) vxup(i)=0.5d0*vxup(i) vxdn(i)=0.5d0*vxdn(i) vcup(i)=0.5d0*vcup(i) vcdn(i)=0.5d0*vcdn(i) else ex(i)=0.d0 ec(i)=0.d0 vxup(i)=0.d0 vxdn(i)=0.d0 vcup(i)=0.d0 vcdn(i)=0.d0 end if end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/fxc_pwca.f900000644000000000000000000000013214061636517015036 xustar0030 mtime=1623670095.672101789 30 atime=1623670094.500102877 30 ctime=1623670095.672101789 elk-7.2.42/src/fxc_pwca.f900000644002504400250440000001251714061636517017101 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine fxc_pwca(n,rhoup,rhodn,fxcuu,fxcud,fxcdd) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: rhoup(n) real(8), intent(in) :: rhodn(n) real(8), intent(out) :: fxcuu(n) real(8), intent(out) :: fxcud(n) real(8), intent(out) :: fxcdd(n) ! local variables integer i real(8), parameter :: pi=3.1415926535897932385d0 real(8), parameter :: thrd=1.d0/3.d0, thrd4=4.d0/3.d0 real(8), parameter :: d2f0=1.709921d0 real(8), parameter :: a(3)=[ 0.0310907d0, 0.01554535d0, 0.0168869d0 ] real(8), parameter :: a1(3)=[ 0.21370d0, 0.20548d0, 0.11125d0 ] real(8), parameter :: b1(3)=[ 7.5957d0, 14.1189d0, 10.357d0 ] real(8), parameter :: b2(3)=[ 3.5876d0, 6.1977d0, 3.6231d0 ] real(8), parameter :: b3(3)=[ 1.6382d0, 3.3662d0, 0.88026d0 ] real(8), parameter :: b4(3)=[ 0.49294d0, 0.62517d0, 0.49671d0 ] real(8) p1,p2,p3,rup,rdn,r,ri,ri2,ri3 real(8) rs,rs2,rs12,rs32,rsi,rs12i,rs32i real(8) mz,z,z2,z3,z4,fz,dfz,d2fz real(8) drs,d2rs,dzu,d2zu,dzd,d2zd,d2zud real(8) ders,d2ers,dez,d2ez,d2ersz real(8) deu,d2eu,ded,d2ed,d2eud,ex real(8) ec0,dec0,d2ec0,ec1,dec1,d2ec1 real(8) ac,dac,d2ac,a2,dt1,d2t1,dt2,d2t2 real(8) t1,t2,t3,t4,t5,t6,t7,t8 if (n.le.0) then write(*,*) write(*,'("Error(xc_pwca): invalid n : ",I8)') n write(*,*) stop end if ! prefactors t1=3.d0/(4.d0*pi) p1=t1**thrd p2=t1*(9.d0*pi/4.d0)**thrd p3=1.d0/(2.d0**thrd4-2.d0) do i=1,n rup=rhoup(i); rdn=rhodn(i) ! total density r=rup+rdn if ((rup.lt.0.d0).or.(rdn.lt.0.d0).or.(r.lt.1.d-20)) then fxcuu(i)=0.d0 fxcud(i)=0.d0 fxcdd(i)=0.d0 cycle end if ri=1.d0/r ri2=ri**2 ri3=ri2*ri rs=p1*ri**thrd rs2=rs**2 rs12=sqrt(rs) rs32=rs12*rs rsi=1.d0/rs rs12i=1.d0/rs12 rs32i=1.d0/rs32 mz=rup-rdn z=mz/r z2=z**2 z3=z2*z z4=z3*z ! drs/drup = drs/drdn = drs/drho drs=-thrd*rs*ri ! d2rs/drup^2 = d^2rs/drn^2 = d^2rs/drho^2 d2rs=-thrd4*drs*ri ! dz/drup, dz/drdn t1=mz*ri2 dzu=ri-t1 dzd=-ri-t1 ! d^2z/drup^2, d^2z/drdn^2, d^2z/drup*drdn t1=2.d0*mz*ri3 t2=2.d0*ri2 d2zu=t1-t2 d2zd=t1+t2 d2zud=t1 !------------------! ! exchange ! !------------------! t1=-p2*rsi/2.d0 t2=1.d0+z t3=1.d0-z t4=t2**thrd4 t5=t3**thrd4 t6=t4+t5 ! exchange energy density ex=t1*t6 ! dex/drs ders=-ex*rsi ! d^2ex/drs^2 d2ers=-2.d0*ders*rsi ! f(z) fz=p3*(t6-2.d0) ! dex/dz t4=t4/t2 t5=t5/t3 t6=t4-t5 t7=thrd4*t6 dez=t1*t7 ! df/dz dfz=p3*t7 ! d^2ex/dz^2 t4=t4/t2 t5=t5/t3 t6=t4+t5 t7=thrd4*thrd*t6 d2ez=t1*t7 ! d^2f/dz^2 d2fz=p3*t7 ! d^2ex/drs*dz d2ersz=-dez*rsi ! dex/drup, dex/drdn t1=ders*drs deu=t1+dez*dzu ded=t1+dez*dzd ! d^2ex/drup^2 t1=d2ers*drs t2=d2ersz*drs t3=ders*d2rs t4=(t1+d2ersz*dzu)*drs+t3 t5=t2+d2ez*dzu d2eu=t4+t5*dzu+dez*d2zu ! d^2ex/drdn^2 d2ed=(t1+d2ersz*dzd)*drs+t3+(t2+d2ez*dzd)*dzd+dez*d2zd ! d^2ex/drup*drdn d2eud=t4+t5*dzd+dez*d2zud ! calculate fxc fxcuu(i)=2.d0*deu+r*d2eu fxcud(i)=deu+ded+r*d2eud fxcdd(i)=2.d0*ded+r*d2ed !---------------------! ! correlation ! !---------------------! ! ec(rs,0) a2=2.d0*a(1) t1=a2*(b1(1)*rs12+b2(1)*rs+b3(1)*rs32+b4(1)*rs2) dt1=a2*(0.5d0*b1(1)*rs12i+b2(1)+1.5d0*b3(1)*rs12+2.d0*b4(1)*rs) d2t1=a2*(-0.25d0*b1(1)*rs32i+0.75d0*b3(1)*rs12i+2.d0*b4(1)) t3=1.d0/t1 t4=t3**2 t2=1.d0+t3 dt2=-dt1*t4 d2t2=t4*(2.d0*t3*dt1**2-d2t1) t3=1.d0/t2 t4=1.d0+a1(1)*rs t5=log(t2) ec0=-a2*t4*t5 dec0=-a2*(a1(1)*t5+t4*t3*dt2) d2ec0=-a2*(2.d0*a1(1)*t3*dt2+t4*t3*(d2t2-t3*dt2**2)) ! ec(rs,1) a2=2.d0*a(2) t1=a2*(b1(2)*rs12+b2(2)*rs+b3(2)*rs32+b4(2)*rs2) dt1=a2*(0.5d0*b1(2)*rs12i+b2(2)+1.5d0*b3(2)*rs12+2.d0*b4(2)*rs) d2t1=a2*(-0.25d0*b1(2)*rs32i+0.75d0*b3(2)*rs12i+2.d0*b4(2)) t3=1.d0/t1 t4=t3**2 t2=1.d0+t3 dt2=-dt1*t4 d2t2=t4*(2.d0*t3*dt1**2-d2t1) t3=1.d0/t2 t4=1.d0+a1(2)*rs t5=log(t2) ec1=-a2*t4*t5 dec1=-a2*(a1(2)*t5+t4*t3*dt2) d2ec1=-a2*(2.d0*a1(2)*t3*dt2+t4*t3*(d2t2-t3*dt2**2)) ! ac(rs) a2=2.d0*a(3) t1=a2*(b1(3)*rs12+b2(3)*rs+b3(3)*rs32+b4(3)*rs2) dt1=a2*(0.5d0*b1(3)*rs12i+b2(3)+1.5d0*b3(3)*rs12+2.d0*b4(3)*rs) d2t1=a2*(-0.25d0*b1(3)*rs32i+0.75d0*b3(3)*rs12i+2.d0*b4(3)) t3=1.d0/t1 t4=t3**2 t2=1.d0+t3 dt2=-dt1*t4 d2t2=t4*(2.d0*t3*dt1**2-d2t1) t3=1.d0/t2 t4=1.d0+a1(3)*rs t5=log(t2) ac=a2*t4*t5 dac=a2*(a1(3)*t5+t4*t3*dt2) d2ac=a2*(2.d0*a1(3)*t3*dt2+t4*t3*(d2t2-t3*dt2**2)) ! correlation energy density derivatives t1=1.d0-z4 t2=(fz/d2f0)*t1 t3=ec1-ec0 t4=fz*z4 ! dec/drs t5=dec1-dec0 ders=dec0+dac*t2+t5*t4 ! d^2ec/drs^2 t6=d2ec1-d2ec0 d2ers=d2ec0+d2ac*t2+t6*t4 ! dec/dz t4=ac/d2f0 t6=4.d0*fz*z3 t7=dfz*t1-t6 t8=dfz*z4+t6 dez=t4*t7+t3*t8 ! d^2ec/drs*dz d2ersz=(dac/d2f0)*t7+t5*t8 ! d^2ec/dz^2 t7=8.d0*dfz*z3 t8=12.d0*fz*z2 d2ez=t4*(d2fz*t1-t7-t8)+t3*(d2fz*z4+t7+t8) ! dec/drup, dec/drdn t1=ders*drs deu=t1+dez*dzu ded=t1+dez*dzd ! d^2ec/drup^2 t1=d2ers*drs t2=d2ersz*drs t3=ders*d2rs t4=(t1+d2ersz*dzu)*drs+t3 t5=t2+d2ez*dzu d2eu=t4+t5*dzu+dez*d2zu ! d^2ec/drdn^2 d2ed=(t1+d2ersz*dzd)*drs+t3+(t2+d2ez*dzd)*dzd+dez*d2zd ! d^2ec/drup*drdn d2eud=t4+t5*dzd+dez*d2zud ! calculate fxc fxcuu(i)=fxcuu(i)+2.d0*deu+r*d2eu fxcud(i)=fxcud(i)+deu+ded+r*d2eud fxcdd(i)=fxcdd(i)+2.d0*ded+r*d2ed end do end subroutine elk-7.2.42/src/PaxHeaders.21776/gendmatmt.f900000644000000000000000000000013214061636517015224 xustar0030 mtime=1623670095.673101788 30 atime=1623670094.501102876 30 ctime=1623670095.673101788 elk-7.2.42/src/gendmatmt.f900000644002504400250440000000107714061636517017266 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendmatmt use modmain use moddftu implicit none ! generate the density matrix in each muffin-tin call gendmat(.false.,.false.,0,lmaxdm,lmmaxdm,dmatmt) ! initialise with symmetry-breaking tensor moments if (ftmtype.lt.0) then dmftm=dmftm*reducebf dmatmt=dmatmt+dmftm endif ! symmetrise the density matrix call symdmat(lmaxdm,lmmaxdm,dmatmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/genveedu.f900000644000000000000000000000013214061636517015046 xustar0030 mtime=1623670095.675101786 30 atime=1623670094.503102874 30 ctime=1623670095.675101786 elk-7.2.42/src/genveedu.f900000644002504400250440000000316114061636517017104 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genveedu ! !INTERFACE: subroutine genveedu(i,u,j,vee) ! !USES: use modmain use moddftu ! !INPUT/OUTPUT PARAMETERS: ! i : DFT+U entry (in,integer) ! u : parameter U (out,real) ! j : parameter J (out,real) ! vee : Coulomb matrix elements (out,real(-lmaxdm:lmaxdm,-lmaxdm:lmaxdm, ! -lmaxdm:lmaxdm,-lmaxdm:lmaxdm)) ! !DESCRIPTION: ! Calculates the Coulomb matrix elements used in DFT+U calculations. See ! {\it Phys. Rev. B} {\bf 52}, 5467 (1995). ! ! !REVISION HISTORY: ! Created November 2007 (FC,JKD,FB,LN) ! Modified July 2009 (FC) !EOP !BOC implicit none ! arguments integer, intent(in) :: i real(8), intent(out) :: u,j real(8), intent(out) :: vee(-lmaxdm:lmaxdm,-lmaxdm:lmaxdm,-lmaxdm:lmaxdm, & -lmaxdm:lmaxdm) ! local variables integer l,m1,m2,m3,m4,k,q real(8) sm1,sm2,t1 ! automatic arrays real(8) :: f(0:2*lmaxdm) ! external functions real(8), external :: gaunt l=idftu(2,i) ! calculate Slater integrals call genfdu(i,u,j,f) do m1=-l,l do m2=-l,l do m3=-l,l do m4=-l,l sm1=0.d0 do k=0,2*l,2 sm2=0.d0 do q=-k,k t1=gaunt(l,k,l,m1,q,m2)*gaunt(l,k,l,m3,-q,m4) if (mod(q,2).eq.0) then sm2=sm2+t1 else sm2=sm2-t1 end if end do sm1=sm1+f(k)*sm2/dble(2*k+1) end do vee(m1,m3,m2,m4)=fourpi*sm1 end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genvmatmt.f900000644000000000000000000000013214061636517015246 xustar0030 mtime=1623670095.676101785 30 atime=1623670094.505102872 30 ctime=1623670095.676101785 elk-7.2.42/src/genvmatmt.f900000644002504400250440000002000714061636517017302 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genvmatmt !INTERFACE: subroutine genvmatmt ! !USES: use modmain use moddftu ! !DESCRIPTION: ! Calculate the DFT+U potential matrix to be used in the second-variational ! step. See {\it Phys. Rev. B} {\bf 52}, 5467 (1995) and {\it Phys. Rev. B} ! {\bf 80}, 035121 (2009). ! ! !REVISION HISTORY: ! Created November 2007 (FC,FB,LN,JKD) ! Fixed bug for dftu=3, January 2021 (JKD) !EOP !BOC ! local variables integer is,ia,ias,i integer l,lma,lmb,lm1,lm2 real(8) t1,t2 ! allocatable arrays real(8), allocatable :: enfll(:,:) complex(8), allocatable :: vmfll(:,:,:,:,:) select case(dftu) case(0) vmatmt(:,:,:,:,:)=0.d0 case(1,2) ! fully localised limit (FLL) or around mean field (AFM) call genvmatmt_12 case(3) ! interpolation between the two [PRB 67, 153106 (2003)] allocate(enfll(natmmax,ndftu)) allocate(vmfll(lmmaxdm,nspinor,lmmaxdm,nspinor,natmtot)) dftu=1 call genvmatmt_12 vmfll(:,:,:,:,:)=vmatmt(:,:,:,:,:) enfll(:,:)=engyadu(:,:) dftu=2 call genvmatmt_12 ! read in the interpolation constant (alpha) if required if (readadu) call readalphadu ! reset dftu value dftu=3 do i=1,ndftu is=idftu(1,i) l=idftu(2,i) lma=l**2+1; lmb=lma+2*l do ia=1,natoms(is) ias=idxas(ia,is) t1=alphadu(ia,i) t2=1.d0-t1 do lm1=lma,lmb do lm2=lma,lmb vmatmt(lm1,:,lm2,:,ias)=t1*vmfll(lm1,:,lm2,:,ias) & +t2*vmatmt(lm1,:,lm2,:,ias) end do end do engyadu(ia,i)=t1*enfll(ia,i)+t2*engyadu(ia,i) end do end do deallocate(enfll,vmfll) case default write(*,*) write(*,'("Error(genvmatmt): invalid dftu : ",I8)') dftu write(*,*) stop end select ! add the fixed tensor moment field if required call ftmfield end subroutine subroutine genvmatmt_12 use modmain use moddftu use modtest implicit none ! local variables integer ispn,jspn integer is,ia,ias,i integer l,m1,m2,m3,m4 integer ll,nm,lma,lmb integer lm1,lm2,lm3,lm4 real(8) u,j,n,n0 real(8) mg(3),mg0(3),mg2 real(8) edc,sm1,sm2 complex(8) z1,z2 ! automatic arrays real(8) vee(-lmaxdm:lmaxdm,-lmaxdm:lmaxdm,-lmaxdm:lmaxdm,-lmaxdm:lmaxdm) complex(8) dm(lmmaxdm,nspinor,lmmaxdm,nspinor) complex(8) dms(nspinor,nspinor) ! zero the DFT+U potential for each atom vmatmt(:,:,:,:,:)=0.d0 ! zero the DFT+U energy for each atom engyadu(:,:)=0.d0 ! zero the interpolation constants alphadu(:,:)=0.d0 ! loop over DFT+U entries do i=1,ndftu is=idftu(1,i) l=idftu(2,i) ll=l*(l+1)+1 nm=2*l+1 lma=l**2+1; lmb=lma+2*l ! calculate u, v and the Coulomb matrix elements call genveedu(i,u,j,vee) if ((abs(u).lt.1.d-10).and.(abs(j).lt.1.d-10)) cycle ! begin loop over atoms do ia=1,natoms(is) ias=idxas(ia,is) ! copy the density matrix for this atom dm(:,:,:,:)=dmatmt(:,:,:,:,ias) ! trace of density matrix for each spin dms(:,:)=0.d0 do ispn=1,nspinor do jspn=1,nspinor do lm1=lma,lmb dms(ispn,jspn)=dms(ispn,jspn)+dm(lm1,ispn,lm1,jspn) end do end do end do ! trace over spin n=dble(dms(1,1)) if (spinpol) n=n+dble(dms(2,2)) n0=n/dble(nspinor*nm) ! magnetisation if (spinpol) then mg(:)=0.d0 mg(3)=dble(dms(1,1)-dms(2,2)) ! non-collinear terms if (ncmag) then mg(1)=dble(dms(1,2)+dms(2,1)) mg(2)=dble(zi*(dms(1,2)-dms(2,1))) end if mg0(:)=mg(:)/dble(nspinor*nm) end if ! around mean field (AFM) approach if (dftu.eq.2) then ! modify density matrices do lm1=lma,lmb if (spinpol) then dm(lm1,1,lm1,1)=dm(lm1,1,lm1,1)-(n0+mg0(3)) dm(lm1,2,lm1,2)=dm(lm1,2,lm1,2)-(n0-mg0(3)) ! non-collinear terms if (ncmag) then dm(lm1,1,lm1,2)=dm(lm1,1,lm1,2)-(mg0(1)-zi*mg0(2)) dm(lm1,2,lm1,1)=dm(lm1,2,lm1,1)-(mg0(1)+zi*mg0(2)) end if else ! spin-unpolarised case dm(lm1,1,lm1,1)=dm(lm1,1,lm1,1)-n0 end if end do ! determine alpha [PRB 67,153106 (2003)] sm1=0.d0 do ispn=1,nspinor do lm1=lma,lmb do jspn=1,nspinor do lm2=lma,lmb sm1=sm1+dble(dm(lm1,ispn,lm2,jspn)*dm(lm2,jspn,lm1,ispn)) end do end do end do end do if (spinpol) then mg2=mg(3)**2 if (ncmag) mg2=mg2+mg(1)**2+mg(2)**2 else mg2=0.d0 end if sm2=n*(1.d0-0.5d0*n/dble(nm))-0.5d0*mg2/dble(nm) if (abs(sm2).gt.1.d-14) then alphadu(ia,i)=sm1/sm2 else alphadu(ia,i)=0.d0 end if end if ! calculation of DFT+U potential and energy ! begin loops over m1 and m2 do m1=-l,l lm1=ll+m1 do m2=-l,l lm2=ll+m2 ! begin loops over m3 and m4 do m3=-l,l lm3=ll+m3 do m4=-l,l lm4=ll+m4 do ispn=1,nspinor do jspn=1,nspinor z1=dm(lm2,ispn,lm1,ispn)*dm(lm4,jspn,lm3,jspn) z2=dm(lm4,jspn,lm1,ispn)*dm(lm2,ispn,lm3,jspn) engyadu(ia,i)=engyadu(ia,i)+dble(z1-z2)*vee(m1,m3,m2,m4) vmatmt(lm1,ispn,lm2,ispn,ias)=vmatmt(lm1,ispn,lm2,ispn,ias) & +dm(lm4,jspn,lm3,jspn)*vee(m1,m3,m2,m4) vmatmt(lm1,ispn,lm4,jspn,ias)=vmatmt(lm1,ispn,lm4,jspn,ias) & -dm(lm2,ispn,lm3,jspn)*vee(m1,m3,m2,m4) end do end do ! end loops over m3 and m4 end do end do ! end loops over m1 and m2 end do end do ! multiply energy by factor 1/2 engyadu(ia,i)=0.5d0*engyadu(ia,i) ! fully localised limit (FLL) approach: double counting corrections if (dftu.eq.1) then if (spinpol) then ! spin-polarised if (ncmag) then ! non-collinear case ! correction to the energy edc=0.5d0*u*n*(n-1.d0) edc=edc-0.5d0*j*dble(dms(1,1)*(dms(1,1)-1.d0)) edc=edc-0.5d0*j*dble(dms(2,2)*(dms(2,2)-1.d0)) edc=edc-0.5d0*j*dble(dms(1,2)*dms(2,1)) edc=edc-0.5d0*j*dble(dms(2,1)*dms(1,2)) ! correction to the potential do lm1=lma,lmb vmatmt(lm1,1,lm1,1,ias)=vmatmt(lm1,1,lm1,1,ias) & -u*(n-0.5d0)+j*(dms(1,1)-0.5d0) vmatmt(lm1,2,lm1,2,ias)=vmatmt(lm1,2,lm1,2,ias) & -u*(n-0.5d0)+j*(dms(2,2)-0.5d0) vmatmt(lm1,1,lm1,2,ias)=vmatmt(lm1,1,lm1,2,ias)+j*dms(1,2) vmatmt(lm1,2,lm1,1,ias)=vmatmt(lm1,2,lm1,1,ias)+j*dms(2,1) end do else ! collinear case ! correction to the energy edc=0.5d0*u*n*(n-1.d0) edc=edc-0.5d0*j*dble(dms(1,1)*(dms(1,1)-1.d0)) edc=edc-0.5d0*j*dble(dms(2,2)*(dms(2,2)-1.d0)) ! correction to the potential do lm1=lma,lmb vmatmt(lm1,1,lm1,1,ias)=vmatmt(lm1,1,lm1,1,ias) & -u*(n-0.5d0)+j*(dms(1,1)-0.5d0) vmatmt(lm1,2,lm1,2,ias)=vmatmt(lm1,2,lm1,2,ias) & -u*(n-0.5d0)+j*(dms(2,2)-0.5d0) end do end if else ! spin-unpolarised ! correction to the energy edc=0.5d0*u*n*(n-1.d0) edc=edc-0.5d0*j*n*(n-1.d0) ! correction to the potential do lm1=lma,lmb vmatmt(lm1,1,lm1,1,ias)=vmatmt(lm1,1,lm1,1,ias)-u*(n-0.5d0) & +j*(n-0.5d0) end do end if engyadu(ia,i)=engyadu(ia,i)-edc end if ! trace of dmatmt times vmatmt sm1=0.d0 do ispn=1,nspinor do lm1=lma,lmb do jspn=1,nspinor do lm2=lma,lmb sm1=sm1+dble(dm(lm1,ispn,lm2,jspn)*vmatmt(lm2,jspn,lm1,ispn,ias)) end do end do end do end do ! subtract contribution to the energy of DFT+U potential engyadu(ia,i)=engyadu(ia,i)-sm1 ! end loop over atoms end do ! end loop over species end do ! symmetrise the potential call symdmat(lmaxdm,lmmaxdm,vmatmt) ! write potential matrix to test file call writetest(800,'DFT+U energy for each atom',nv=natmmax*ndftu,tol=1.d-4, & rva=engyadu) ! write U and J parameters to test file call writetest(810,'U and J parameters',nv=2*maxdftu,tol=1.d-4,rva=ujdu) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writedftu.f900000644000000000000000000000013214061636517015261 xustar0030 mtime=1623670095.678101784 30 atime=1623670094.507102871 30 ctime=1623670095.678101784 elk-7.2.42/src/writedftu.f900000644002504400250440000000477214061636517017330 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine writedftu use modmain use moddftu implicit none ! local variables integer ispn,jspn,is,ia,ias integer i,k,l,ll,m1,m2,lm1,lm2 if (dftu.eq.0) return ! machine readable density matrix file open(50,file='DMATMT'//trim(filext),form='FORMATTED',action='WRITE') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) ll=l*(l+1)+1 do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,*) write(50,'(3I4," : species, atom, l")') is,ia,l do ispn=1,nspinor do jspn=1,nspinor write(50,*) write(50,'(2I4," : ispn, jspn; m1, m2, dmatmt below")') ispn,jspn do m1=-l,l lm1=ll+m1 do m2=-l,l lm2=ll+m2 write(50,'(2I6," ",2G18.10)') m1,m2,dmatmt(lm1,ispn,lm2,jspn,ias) end do end do end do end do end do end do close(50) ! machine readable potential matrix file open(50,file='VMATMT'//trim(filext),form='FORMATTED',action='WRITE') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) ll=l*(l+1)+1 do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,*) write(50,'(3I4," : species, atom, l")') is,ia,l do ispn=1,nspinor do jspn=1,nspinor write(50,*) write(50,'(2I4," : ispn, jspn; m1, m2, vmatmt below")') ispn,jspn do m1=-l,l lm1=ll+m1 do m2=-l,l lm2=ll+m2 write(50,'(2I6," ",2G18.10)') m1,m2,vmatmt(lm1,ispn,lm2,jspn,ias) end do end do end do end do end do end do close(50) ! machine readable alpha parameters if ((dftu.eq.3).and.(.not.readadu)) then open(50,file='ALPHADU'//trim(filext),form='FORMATTED',action='WRITE') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,'(3I4," : species, atom, l")') is,ia,l write(50,'(G18.10," : alpha")') alphadu(ia,i) end do end do close(50) end if ! Slater parameters open(50,file='FDU'//trim(filext),form='FORMATTED',action='WRITE') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) write(50,*) write(50,'(3I4," : species, l")') is,l do k=0,2*l,2 write(50,'(G18.10," : F^(",I1,")")') fdu(k,i),k end do write(50,'(G18.10," : U")') ujdu(1,i) write(50,'(G18.10," : J")') ujdu(2,i) if (inpdftu.ge.4) write(50,'(G18.10," : lambdadu")') lambdadu(i) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/readalphadu.f900000644000000000000000000000013114061636517015515 xustar0030 mtime=1623670095.679101783 29 atime=1623670094.50810287 30 ctime=1623670095.679101783 elk-7.2.42/src/readalphadu.f900000644002504400250440000000151214061636517017552 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. subroutine readalphadu use modmain use moddftu implicit none ! local variables integer is,ia,i,l integer is_,ia_,l_ if (.not.readadu) return open(50,file='ALPHADU'//trim(filext),form='FORMATTED') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) do ia=1,natoms(is) read(50,*) read(50,*) is_,ia_,l_ if ((is.ne.is_).or.(ia.ne.ia_).or.(l.ne.l_)) then write(*,*) write(*,'("Error(readalphadu): differing is, ia or l")') write(*,'(" current : ",3I8)') is,ia,l write(*,'(" ALPHADU.OUT : ",3I8)') is_,ia_,l_ write(*,*) stop end if read(50,*) alphadu(ia,i) end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/fyukawa.f900000644000000000000000000000013214061636517014713 xustar0030 mtime=1623670095.681101781 30 atime=1623670094.510102868 30 ctime=1623670095.681101781 elk-7.2.42/src/fyukawa.f900000644002504400250440000000452014061636517016751 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: fyukawa ! !INTERFACE: real(8) function fyukawa(is,l,k,lambda) ! !USES: use modmain use moddftu ! !INPUT/OUTPUT PARAMETERS: ! is : species type (in,integer) ! l : an angular momentum (in,integer) ! k : order of Slater parameter (in,integer) ! lambda : screening length of Yukawa potential (in,real) ! !DESCRIPTION: ! Calculates the Slater parameters using a screened Yukawa potential. See ! {\it Phys. Rev. B} {\bf 52}, 1421 (1995) and {\it Phys. Rev. B} {\bf 80}, ! 035121 (2009). ! ! !REVISION HISTORY: ! Created April 2008 (Lars Nordstrom) ! Modified and tested July 2008 (LN and FC) !EOP !BOC implicit none ! arguments integer, intent(in) :: is integer, intent(in) :: l,k real(8), intent(in) :: lambda ! local variables integer ias,nr,ir integer nr1,nr2,ir1,ir2 real(8) r2,x,t1 ! automatic arrays real(8) clow(nrmtmax),chigh(nrmtmax) real(8) blow(nrmtmax),bhigh(nrmtmax),fint(nrmtmax) real(8) bint(nrmtmax),cint(nrmtmax) ! allocatable arrays real(8), allocatable :: a(:,:),b(:,:) ias=idxas(1,is) nr=nrmt(is) ! (-1)**k factor takes care of the additional (-1)**k introduced by zbessela(b) t1=lambda*dble((2*k+1)*(-1)**(k+1)) ! allocate Bessel and Hankel functions allocate(a(0:2*l,nr),b(0:2*l,nr)) ! zero all quantities a(:,:)=0.d0 b(:,:)=0.d0 bint(:)=0.d0 blow(:)=0.d0 bhigh(:)=0.d0 clow(:)=0.d0 chigh(:)=0.d0 ! calculate Slater parameters do ir=1,nr r2=rlmt(ir,2,is) bint(ir)=fdufr(ir,l,ias)*fdufr(ir,l,ias)*r2 ! argument of Bessel and Hankel functions divided by i x=rsp(ir,is)*lambda ! calculate Bessel and Hankel functions divided by i call zbessela(2*l,x,a(:,ir)) call zbesselb(2*l,x,b(:,ir)) end do do ir=1,nr nr1=ir nr2=nr-ir+1 ! 1st term: r1 < r do ir1=1,nr1 ir2=ir1 blow(ir1)=bint(ir2)*a(k,ir2) end do ! integrate 1st term call fderiv(-1,nr1,rsp(1,is),blow,clow) ! 2nd term : r2 > r do ir1=1,nr2 ir2=ir1+ir-1 bhigh(ir1)=bint(ir2)*b(k,ir2) end do ! integrate 2nd term call fderiv(-1,nr2,rsp(ir,is),bhigh,chigh) ! sum of the two terms cint(ir)=bint(ir)*(b(k,ir)*clow(nr1)+a(k,ir)*chigh(nr2)) end do call fderiv(-1,nr,rsp(1,is),cint,fint) fyukawa=t1*fint(nr) deallocate(a,b) end function !EOC elk-7.2.42/src/PaxHeaders.21776/fyukawa0.f900000644000000000000000000000013014061636517014771 xustar0029 mtime=1623670095.68210178 30 atime=1623670094.512102866 29 ctime=1623670095.68210178 elk-7.2.42/src/fyukawa0.f900000644002504400250440000000354214061636517017034 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: fyukawa0 ! !INTERFACE: real(8) function fyukawa0(is,l1,k) ! !USES: use modmain use moddftu ! !INPUT/OUTPUT PARAMETERS: ! is : species type (in,integer) ! l : an angular momentum (in,integer) ! k : order of Slater parameter (in,integer) ! !DESCRIPTION: ! Calculates the Slater parameters in the unscreened case. See {\it Phys. Rev. ! B} {\bf 52}, 1421 (1995) and {\it Phys. Rev. B} {\bf 80}, 035121 (2009). ! ! !REVISION HISTORY: ! Created April 2008 (LN) ! Modified and tested July 2008 (LN and FC) !EOP !BOC implicit none ! arguments integer, intent(in) :: is integer, intent(in) :: l1 integer, intent(in) :: k ! local variables integer, parameter :: nstart=1 integer ir,nr,ias integer ir1,ir2,nr1,nr2 real(8) r2,x ! automatic arrays real(8) clow(nrmtmax),chigh(nrmtmax) real(8) blow(nrmtmax),bhigh(nrmtmax),fint(nrmtmax) real(8) bint(nrmtmax),cint(nrmtmax) ! allocatable arrays real(8), allocatable :: a(:,:),b(:,:) ias=idxas(1,is) nr=nrmt(is) allocate(a(0:k,nr),b(0:k,nr)) a(:,:)=0.d0 b(:,:)=0.d0 ! calculate unscreened Slater parameters do ir=1,nr r2=rlmt(ir,2,is) bint(ir)=fdufr(ir,l1,ias)*fdufr(ir,l1,ias)*r2 x=rsp(ir,is)**k a(k,ir)=x b(k,ir)=1.d0/(x*rsp(ir,is)) end do do ir=nstart,nr nr1=ir-nstart+1 nr2=nr-ir+1 do ir1=1,nr1 ir2=ir1+nstart-1 blow(ir1)=bint(ir2)*a(k,ir2) end do call fderiv(-1,nr1,rsp(nstart,is),blow,clow) do ir1=1,nr2 ir2=ir1+ir-1 bhigh(ir1)=bint(ir2)*b(k,ir2) end do call fderiv(-1,nr2,rsp(ir,is),bhigh,chigh) cint(ir-nstart+1)=bint(ir)*(b(k,ir)*clow(nr1)+a(k,ir)*chigh(nr2)) end do nr1=nr-nstart+1 call fderiv(-1,nr1,rsp(nstart,is),cint,fint) fyukawa0=fint(nr1) deallocate(a,b) end function !EOC elk-7.2.42/src/PaxHeaders.21776/genfdufr.f900000644000000000000000000000013214061636517015044 xustar0030 mtime=1623670095.684101778 30 atime=1623670094.513102865 30 ctime=1623670095.684101778 elk-7.2.42/src/genfdufr.f900000644002504400250440000000312614061636517017103 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genfdufr ! !INTERFACE: subroutine genfdufr ! !USES: use modmain use moddftu ! !DESCRIPTION: ! Generates the radial functions used to calculate the Slater integrals ! through a Yukawa potential. ! ! !REVISION HISTORY: ! Created April 2008 from genapwfr (Francesco Cricchio) !EOP !BOC implicit none ! local variables integer is,ia,ias integer nr,nri,ir integer nn,i,l real(8) t1 ! automatic arrays real(8) vr(nrmtmax),fr(nrmtmax) real(8) p0(nrmtmax),p1(nrmtmax),q0(nrmtmax),q1(nrmtmax) ! external functions real(8), external :: splint do i=1,ndftu is=idftu(1,i) l=idftu(2,i) nr=nrmt(is) nri=nrmti(is) do ia=1,natoms(is) ias=idxas(ia,is) call rfmtlm(1,nr,nri,vsmt(:,ias),vr) vr(1:nr)=vr(1:nr)*y00 ! integrate the radial Schrodinger equation call rschrodint(solsc,l,fdue(l,ias),nr,rlmt(:,1,is),vr,nn,p0,p1,q0,q1) ! normalise radial functions fr(1:nr)=p0(1:nr)**2 t1=splint(nr,rlmt(:,1,is),fr) if (t1.lt.1.d-20) then write(*,*) write(*,'("Error(genfdufr): degenerate APW radial functions")') write(*,'(" for species ",I4)') is write(*,'(" atom ",I4)') ia write(*,'(" and angular momentum ",I4)') l write(*,*) stop end if t1=1.d0/sqrt(abs(t1)) p0(1:nr)=t1*p0(1:nr) ! divide by r and store in global array do ir=1,nr fdufr(ir,l,ias)=p0(ir)/rsp(ir,is) end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/energyfdu.f900000644000000000000000000000013214061636517015234 xustar0030 mtime=1623670095.685101777 30 atime=1623670094.515102863 30 ctime=1623670095.685101777 elk-7.2.42/src/energyfdu.f900000644002504400250440000000311214061636517017266 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: energyfdu ! !INTERFACE: subroutine energyfdu ! !USES: use modmain use moddftu use modmpi ! !DESCRIPTION: ! Calculates the energies of radial functions to be used to calculate the ! Slater integrals. By convention those energies are chosen to be the ones at ! the center of the band. ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio) !EOP !BOC implicit none ! local variables integer is,ia,ja,ias,jas integer nr,nri,nnf,i,l logical fnd ! automatic arrays logical done(natmmax) real(8) vr(nrmtmax) nnf=0 ! loop over DFT+U entries do i=1,ndftu is=idftu(1,i) l=idftu(2,i) nr=nrmt(is) nri=nrmti(is) done(:)=.false. do ia=1,natoms(is) if (done(ia)) cycle ias=idxas(ia,is) call rfmtlm(1,nr,nri,vsmt(:,ias),vr) vr(1:nr)=vr(1:nr)*y00 ! find the center of the band starting from -0.5 Ha fdue(l,ias)=-0.5d0 call findband(solsc,l,nrmt(is),rsp(1,is),vr,epsband,demaxbnd,fdue(l,ias), & fnd) if (.not.fnd) nnf=nnf+1 done(ia)=.true. ! copy to equivalent atoms do ja=1,natoms(is) if ((.not.done(ja)).and.(eqatoms(ia,ja,is))) then jas=idxas(ja,is) fdue(l,jas)=fdue(l,ias) done(ja)=.true. end if end do ! end loops over atoms and species end do end do if (mp_mpi.and.(nnf.gt.0)) then write(*,*) write(*,'("Warning(energyfdu): could not find ",I3," energies")') nnf end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writeefdu.f900000644000000000000000000000013214061636517015242 xustar0030 mtime=1623670095.687101775 30 atime=1623670094.517102861 30 ctime=1623670095.687101775 elk-7.2.42/src/writeefdu.f900000644002504400250440000000174414061636517017305 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writeefdu ! !INTERFACE: subroutine writeefdu ! !USES: use modmain use moddftu ! !DESCRIPTION: ! Writes to file the linearisation energies for all radial functions used to ! calculate the Slater integrals through a Yukawa potential. ! ! !REVISION HISTORY: ! Created July 2008 (Francesco Cricchio) !EOP !BOC implicit none ! local variables integer is,ia,ias,i,l open(50,file='ENGYFDU'//trim(filext),form='FORMATTED') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) do ia=1,natoms(is) ias=idxas(ia,is) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is,trim(spsymb(is)),ia write(50,'(" Radial functions used for Slater parameters :")') write(50,'(" l = ",I2," : ",G18.10)') l,fdue(l,ias) end do end do close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zbessela.f900000644000000000000000000000013114061636517015053 xustar0030 mtime=1623670095.688101774 29 atime=1623670094.51810286 30 ctime=1623670095.688101774 elk-7.2.42/src/zbessela.f900000644002504400250440000000364614061636517017122 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zbessela ! !INTERFACE: subroutine zbessela(lmax,x,a) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum order of Bessel function (in,integer) ! x : real argument (in,real) ! a : array of returned values (out,real(0:lmax)) ! !DESCRIPTION: ! Computes variations of the spherical Bessel function, $a_l(x)=i^lj_l(ix)$, ! for real argument $x$ and $l=0,1,\ldots,l_{\rm max}$. The recursion relation ! $$ j_{l+1}(x)=\frac{2l+1}{x}j_l(x)+j_{l-1}(x) $$ ! is used upwards. For starting values there are ! $$ a_0(x)=\frac{\sinh(x)}{x};\qquad a_1(x)=\frac{a_0(x)-\cosh(x)}{x} $$. ! For $x\ll 1$ the asymtotic forms ! $$ a_l(x)\approx\frac{(-x)^l}{(2l+1)!!} $$ ! are used. ! ! !REVISION HISTORY: ! Created April 2008 from sbessel routine (Lars Nordstrom) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax real(8), intent(in) :: x real(8), intent(out) :: a(0:lmax) ! local variables integer l real(8) xi,a0,a1,at,t1,t2,xmin if ((lmax.lt.0).or.(lmax.gt.50)) then write(*,*) write(*,'("Error(zbessela): lmax out of range : ",I8)') lmax write(*,*) stop end if if ((x.lt.0.d0).or.(x.gt.1.d8)) then write(*,*) write(*,'("Error(zbessela): x out of range : ",G18.10)') x write(*,*) stop end if xi=1.d0/x xmin=1.d-7 select case (lmax) case(0) xmin=1.d-6 case(1:2) xmin=1.d-4 case(3:4) xmin=1.d-2 case(5:) xmin=1.d0 end select ! treat x << 1 if (x.lt.xmin) then a(0)=1.d0 t1=1.d0 t2=1.d0 do l=1,lmax t1=t1/dble(2*l+1) t2=-t2*x a(l)=t2*t1 end do return end if ! recurse up a(0)=xi*(sinh(x)) if (lmax.eq.0) return a(1)=xi*(a(0)-cosh(x)) if (lmax.eq.1) return a0=a(0) a1=a(1) do l=2,lmax at=dble(2*l-1)*a1*xi+a0 a0=a1 a1=at a(l)=a1 end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/zbesselb.f900000644000000000000000000000013214061636517015055 xustar0030 mtime=1623670095.690101773 30 atime=1623670094.520102858 30 ctime=1623670095.690101773 elk-7.2.42/src/zbesselb.f900000644002504400250440000000345714061636517017123 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: zbesselb ! !INTERFACE: subroutine zbesselb(lmax,x,b) ! !INPUT/OUTPUT PARAMETERS: ! lmax : maximum order of Bessel function (in,integer) ! x : real argument (in,real) ! b : array of returned values (out,real(0:lmax)) ! !DESCRIPTION: ! Computes variations of the spherical Bessel function ! $b_l(x)=i^lh^{(1)}_l(ix)$, for real argument $x$ and ! $l=0,1,\ldots,l_{\rm max}$. The recursion relation ! $$ j_{l+1}(x)=\frac{2l+1}{x}j_l(x)+j_{l-1}(x) $$ ! is used upwards. For starting values there are ! $$ b_0(x)=-\frac{e^{-x}}{x};\qquad b_1(x)=b_0(x)\left\{1+\frac{1}{x} ! \right\}. $$ ! For $x\ll 1$ the asymtotic forms ! $$ b_l(x)\approx\frac{-(2l-1)!!}{(-x)^{l+1}} $$ ! are used. ! ! !REVISION HISTORY: ! Created April 2008 from sbessel routine (Lars Nordstrom) !EOP !BOC implicit none ! arguments integer, intent(in) :: lmax real(8), intent(in) :: x real(8), intent(out) :: b(0:lmax) ! local variables integer l real(8) xi,b0,b1,bt,t3,t4 if ((lmax.lt.0).or.(lmax.gt.50)) then write(*,*) write(*,'("Error(zbesselb): lmax out of range : ",I8)') lmax write(*,*) stop end if if ((x.lt.0.d0).or.(x.gt.1.d8)) then write(*,*) write(*,'("Error(zbesselb): x out of range : ",G18.10)') x write(*,*) stop end if xi=1.d0/x ! treat x << 1 if (x.lt.1.d-7) then b(0)=-xi t3=-1.d0 t4=xi do l=1,lmax t3=t3*dble(2*l-1) t4=t4*xi b(l)=t4*t3 end do return end if ! recurse up b(0)=-xi*exp(-x) if (lmax.eq.0) return b(1)=b(0)*(1.d0+xi) if (lmax.eq.1) return b0=b(0) b1=b(1) do l=2,lmax bt=dble(2*l-1)*b1*xi+b0 b0=b1 b1=bt b(l)=b1 end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/readdmatmt.f900000644000000000000000000000013214061636517015366 xustar0030 mtime=1623670095.691101772 30 atime=1623670094.522102857 30 ctime=1623670095.691101772 elk-7.2.42/src/readdmatmt.f900000644002504400250440000000353414061636517017430 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readdmatmt use modmain use moddftu implicit none ! local variables integer is,ia,ias,ispn,jspn integer is_,ia_,ispn_,jspn_ integer i,l,ll,m1,m2,lm1,lm2 integer l_,m1_,m2_ real(8) a,b ! read density matrix from DMATMT.OUT open(50,file='DMATMT'//trim(filext),form='FORMATTED') do i=1,ndftu is=idftu(1,i) l=idftu(2,i) ll=l*(l+1)+1 do ia=1,natoms(is) ias=idxas(ia,is) read(50,*) read(50,*) read(50,*) is_,ia_,l_ if ((is.ne.is_).or.(ia.ne.ia_).or.(l.ne.l_)) then write(*,*) write(*,'("Error(readdmatmt): differing is, ia or l")') write(*,'(" current : ",3I4)') is,ia,l write(*,'(" DMATMT.OUT : ",3I4)') is_,ia_,l_ write(*,*) stop end if do ispn=1,nspinor do jspn=1,nspinor read(50,*) read(50,*) ispn_,jspn_ if ((ispn.ne.ispn_).or.(jspn.ne.jspn_)) then write(*,*) write(*,'("Error(readdmatmt): differing ispn or jspn")') write(*,'(" current : ",2I4)') ispn,jspn write(*,'(" DMATMT.OUT : ",2I4)') ispn_,jspn_ write(*,*) stop end if do m1=-l,l lm1=ll+m1 do m2=-l,l lm2=ll+m2 read(50,*) m1_,m2_,a,b if ((m1.ne.m1_).or.(m2.ne.m2_)) then write(*,*) write(*,'("Error(readdmatmt): differing m1 or m2")') write(*,'(" current : ",2I6)') m1,m2 write(*,'(" DMATMT.OUT : ",2I6)') m1_,m2_ write(*,*) stop end if dmatmt(lm1,ispn,lm2,jspn,ias)=cmplx(a,b,8) end do end do end do end do end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/genfdu.f900000644000000000000000000000013014061636517014512 xustar0029 mtime=1623670095.69310177 30 atime=1623670094.523102856 29 ctime=1623670095.69310177 elk-7.2.42/src/genfdu.f900000644002504400250440000001201414061636517016547 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genfdu ! !INTERFACE: subroutine genfdu(i,u,j,f) ! !USES: use moddftu use modmpi ! !INPUT/OUTPUT PARAMETERS: ! i : DFT+U entry (in,integer) ! u : parameter U (inout,real) ! j : parameter J (inout,real) ! f : Slater parameters (inout,real) ! !DESCRIPTION: ! Calculate the Slater parameters for DFT+$U$ calculation with different ! approaches, see {\it Phys. Rev. B} {\bf 80}, 035121 (2009). The relations ! among Slater and Racah parameters are from E. U. Condon and G. H. Shortley, ! {\it The Theory of Atomic Spectra}, The University Press, Cambridge (1935). ! ! !REVISION HISTORY: ! Created July 2008 (Francesco Cricchio) !EOP !BOC implicit none ! arguments integer, intent(in) :: i real(8), intent(inout) :: u,j real(8), intent(inout) :: f(0:2*lmaxdm) ! local variables integer is,l,k,q real(8) r1,r2 real(8) lambda,ufix ! automatic arrays real(8) :: e(0:lmaxdm) real(8) :: a(3,3),v1(3),v2(3) ! external functions real(8), external :: fyukawa,fyukawa0 is=idftu(1,i) l=idftu(2,i) ! load input parameters to calculate Slater integrals u=ujdu(1,i) j=ujdu(2,i) f(:)=fdu(:,i) e(:)=edu(:,i) lambda=lambdadu(i) if (inpdftu.lt.4) then ! F(0) = U for any l-shell if (inpdftu.eq.1) f(0)=u select case(l) case(0) ! s electrons only f(0)=u if (inpdftu.eq.3) then f(0)=e(0) u=f(0) end if case(1) ! p electrons if (inpdftu.eq.1) then ! F(2) = 5.0 * J f(2)=5.d0*j else if (inpdftu.eq.3) then ! F(0) = E(0) + J= E(0) + 5/3 * E(1) f(0)=e(0)+(5.d0/3.d0)*e(1) ! F(2) = 5 * J = 25/3 * E1, Eq. 101 f(2)=(25.d0/3.d0)*e(1) end if case(2) ! d electrons if (inpdftu.eq.1) then ! r1 = F(4)/F(2), see PRB 52, R5467 (1995) r1=0.625d0 f(2)=(14.d0*j)/(1.d0+r1) f(4)=f(2)*r1 else if (inpdftu.eq.3) then ! copy Racah parameters v1(1:3)=e(0:2) ! transformation matrix from Racah to Slater parameters ! obtained from inversion of Eq. 110-112, LN Notes 29-12-08 a(1,1)=1.d0 a(1,2)=1.4d0 a(1,3)=0.d0 a(2,1)=0.d0 a(2,2)=0.1428571428571428d0 a(2,3)=1.285714285714286d0 a(3,1)=0.d0 a(3,2)=2.8571428571428571d-2 a(3,3)=-0.1428571428571428d0 ! multiply transformation matrix by Racah parameters call r3mv(a,v1,v2) ! Slater parameters, Eq. 104-105, LN Notes 29-12-08 f(0)=v2(1) f(2)=49.d0*v2(2) f(4)=441.d0*v2(3) end if case(3) ! f electrons if (inpdftu.eq.1) then ! r2 = F(6)/F(2), r1 = F(4)/F(2), see PRB 50, 16861 (1994) r1=451.d0/675.d0 r2=1001.d0/2025.d0 f(2)=6435.d0*j/(286.d0+195.d0*r1+250.d0*r2) f(4)=f(2)*r1 f(6)=f(2)*r2 else if (inpdftu.eq.3) then ! F(0) = E(0) + 9/7 * E(1) , Eq. 119, LN Notes 29-12-08 f(0)=e(0)+(9.d0/7.d0)*e(1) ! copy Racah parameters v1(1:3)=e(1:3) ! transformation matrix from Racah to Slater parameters ! obtained from inversion of Eq. 120-122, LN Notes 29-12-08 a(1,1)=2.3809523809523808d-2 a(1,2)=3.404761904761904d0 a(1,3)=0.2619047619047619d0 a(2,1)=1.2987012987012984d-2 a(2,2)=-1.688311688311688d0 a(2,3)=5.1948051948051951d-2 a(3,1)=2.1645021645021645d-3 a(3,2)=7.5757575757575760d-2 a(3,3)=-1.5151515151515152d-2 ! multiply transformation matrix by Racah parameters call r3mv(a,v1,v2) ! Slater parameters, Eq. 115-117, LN Notes 29-12-08 f(2)=225.d0*v2(1) f(4)=1089.d0*v2(2) f(6)=(184041.d0/25.d0)*v2(3) end if case default write(*,*) write(*,'("Error(genfdu): invalid l : ",I8)') l write(*,*) stop end select else if (inpdftu.ge.4) then ! define energies for Slater parameters call energyfdu ! write energies for Slater parameters to a file if (mp_mpi) call writeefdu ! calculate radial functions for Slater parameters call genfdufr if (inpdftu.eq.5) then ufix=udufix(i) ! calculate the lambda corresponding to udufix ! lambdadu0 is in/out and is initialized to 0 in readinput call findlambdadu(is,l,ufix,lambdadu0(i),lambda) end if do q=0,l k=2*q if (lambda.lt.1.d-2) then ! unscreened Slater parameters f(k)=fyukawa0(is,l,k) else ! screened Slater parameters f(k)=fyukawa(is,l,k,lambda) end if end do end if ! calculate U and J from Slater integrals if (inpdftu.ne.1) then u=f(0) select case(l) case(0) j=0.d0 case(1) ! J = 1/5 * F(2) j=(1.d0/5.d0)*f(2) case(2) ! J = 1/14 * ( F(2) + F(4) ), Eq. 106, LN Notes 29-12-08 j=(1.d0/14.d0)*(f(2)+f(4)) case(3) ! J= 2/45 * F(2) + 1/33 * F(4) + 50/1287 * F(6), Eq. 118, LN Notes 29-12-08 j=(2.d0/45.d0)*f(2)+(1.d0/33.d0)*f(4)+(50.d0/1287.d0)*f(6) case default write(*,*) write(*,'("Error(genfdu): invalid l : ",I8)') l write(*,*) stop end select end if ! save calculated parameters ! (except Racah parameters that are provided only as input) ujdu(1,i)=u ujdu(2,i)=j fdu(:,i)=f(:) lambdadu(i)=lambda end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/findlambdadu.f900000644000000000000000000000013214061636517015656 xustar0030 mtime=1623670095.694101769 30 atime=1623670094.525102854 30 ctime=1623670095.694101769 elk-7.2.42/src/findlambdadu.f900000644002504400250440000000726314061636517017723 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: findlambdadu ! !INTERFACE: subroutine findlambdadu(is,l,ufix,lambda0,lambda) use modmpi ! !INPUT/OUTPUT PARAMETERS: ! is : species type (in,integer) ! l : angular momentum (in,integer) ! ufix : fixed U (in,integer) ! lambda0 : starting value for screening length (inout,real) ! lambda : screening length corresponding to fixed U (out,real) ! !DESCRIPTION: ! Find the screening length corresponding to a fixed value of $U$ by using the ! half-interval method in the first few steps and then the more efficient ! secant method. For $U=0$ the code automatically sets the screening length to ! ${\rm lambdamax}=50$. This value is enough to get $F^{(k)}\sim 10^{-3}$ ! corresponding to $U\sim 0$ (that perfectly mimics a bare DFT calculation). ! However the code is stable up to ${\rm lambdamax}\sim 200$ thanks to ! improvement of {\tt spline}. ! ! !REVISION HISTORY: ! Created July 2009 (Francesco Cricchio) !EOP !BOC implicit none ! arguments integer, intent(in) :: is integer, intent(in) :: l real(8), intent(in) :: ufix real(8), intent(inout) :: lambda0 real(8), intent(out) :: lambda ! local variables ! max iterations in secant algorithm integer, parameter :: maxit=100 integer it,nit ! if ufix 2*l : ",2I8)') k,2*l write(*,*) stop end if if ((p.lt.0).or.(p.gt.1)) then write(*,*) write(*,'("Error(dmtotm2): p should be 0 or 1 : ",I8)') p write(*,*) stop end if ! calculate the 2-index tensor moment; see Eq. (23) in article nlk=factnm(2*l,1)/sqrt(factnm(2*l-k,1)*factnm(2*l+k+1,1)) nsp=1.d0/sqrt(factnm(2+p,1)) t1=dble((-1)**(l))/(nlk*nsp) tm2(:,:)=0.d0 do x=-k,k do y=-p,p do ispn=1,nspinor do jspn=1,nspinor t2=t1*wigner3jf(1,2*p,1,2*jspn-3,2*y,3-2*ispn) if (abs(t2).gt.1.d-10) then lm1=l**2 do m1=-l,l lm1=lm1+1 lm2=l**2 do m2=-l,l lm2=lm2+1 t3=t2*dble((-1)**(1+jspn-m2))*wigner3j(l,k,l,-m2,x,m1) tm2(x,y)=tm2(x,y)+t3*dmat(lm1,ispn,lm2,jspn) end do end do end if end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/dmtotm3.f900000644000000000000000000000013014061636517014631 xustar0029 mtime=1623670095.70310176 30 atime=1623670094.535102845 29 ctime=1623670095.70310176 elk-7.2.42/src/dmtotm3.f900000644002504400250440000000643214061636517016675 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! !ROUTINE: dmtotm3 ! !INTERFACE: subroutine dmtotm3(l,nspinor,k,p,r,ld,dmat,tm3) ! !INPUT/OUTPUT PARAMETERS: ! l : angular momentum (in,integer) ! nspinor : number of spinor components (in,integer) ! k : k-index of tensor moment (in,integer) ! p : p-index of tensor moment (in,integer) ! r : r-index of tensor moment (in,integer) ! ld : leading dimension (in,integer) ! dmat : density matrix (in,complex(ld,nspinor,ld,nspinor)) ! tm3 : 3-index spherical tensor moment (out,complex(-ld:ld)) ! !DESCRIPTION: ! Transform the density matrix to a 3-index spherical tensor moment ! representation, see {\it Phys. Rev. B} {\bf 80}, 035121 (2009). ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio and L. Nordstrom) ! Modified, January 2014 (JKD) !EOP !BOC implicit none integer, intent(in) :: l,nspinor integer, intent(in) :: k,p,r integer, intent(in) :: ld complex(8), intent(in) :: dmat(ld,nspinor,ld,nspinor) complex(8), intent(out) :: tm3(-ld:ld) ! local variables integer ispn,jspn,g,t,x,y integer m1,m2,lm1,lm2 real(8) nlk,nsp,t1,t2,t3 complex(8), parameter :: zi=(0.d0,1.d0) complex(8) z1 ! external functions real(8), external :: wigner3j,wigner3jf,factnm,factr if (l.lt.0) then write(*,*) write(*,'("Error(dmtotm3): l < 0 : ",I8)') l write(*,*) stop end if if ((nspinor.lt.1).or.(nspinor.gt.2)) then write(*,*) write(*,'("Error(dmtotm3): nspinor should be 1 or 2 : ",I8)') nspinor write(*,*) stop end if if (k.lt.0) then write(*,*) write(*,'("Error(dmtotm3): k < 0 : ",I8)') k write(*,*) stop end if if (k.gt.2*l) then write(*,*) write(*,'("Error(dmtotm3): k > 2*l : ",2I8)') k,2*l write(*,*) stop end if if ((p.lt.0).or.(p.gt.1)) then write(*,*) write(*,'("Error(dmtotm3): p should be 0 or 1 : ",I8)') p write(*,*) stop end if if (r.lt.abs(k-p)) then write(*,*) write(*,'("Error(dmtotm3): r < |k-p| : ",2I8)') r,abs(k-p) write(*,*) stop end if if (r.gt.(k+p)) then write(*,*) write(*,'("Error(dmtotm3): r > k+p : ",2I8)') r,k+p write(*,*) stop end if ! calculate the 3-index tensor moment; see Eqs. (23), (26), (27) in article g=k+p+r if (mod(g,2).eq.0) then z1=1.d0/wigner3j(k,p,r,0,0,0) else t1=sqrt(factr(g+1,g-2*k)/(factnm(g-2*p,1)*factnm(g-2*r,1))) t1=t1*factnm(g-2*k,2)*factnm(g-2*p,2)*factnm(g-2*r,2)/factnm(g,2) z1=t1*zi**(-g) end if nlk=factnm(2*l,1)/sqrt(factnm(2*l-k,1)*factnm(2*l+k+1,1)) nsp=1.d0/sqrt(factnm(2+p,1)) z1=z1*dble((-1)**(k+p+l))/(nlk*nsp) tm3(:)=0.d0 do t=-r,r do x=-k,k do y=-p,p t1=dble((-1)**(x+y))*wigner3j(k,r,p,-x,t,-y) do ispn=1,nspinor do jspn=1,nspinor t2=t1*wigner3jf(1,2*p,1,2*jspn-3,2*y,3-2*ispn) if (abs(t2).gt.1.d-10) then lm1=l**2 do m1=-l,l lm1=lm1+1 lm2=l**2 do m2=-l,l lm2=lm2+1 t3=t2*dble((-1)**(1+jspn-m2))*wigner3j(l,k,l,-m2,x,m1) tm3(t)=tm3(t)+t3*z1*dmat(lm1,ispn,lm2,jspn) end do end do end if end do end do end do end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/tm2todm.f900000644000000000000000000000013214061636517014632 xustar0030 mtime=1623670095.705101759 30 atime=1623670094.536102844 30 ctime=1623670095.705101759 elk-7.2.42/src/tm2todm.f900000644002504400250440000000361014061636517016667 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tm2todm(l,nspinor,k,p,ld,tm2,dmat) implicit none ! arguments integer, intent(in) :: l,nspinor integer, intent(in) :: k,p integer, intent(in) :: ld complex(8), intent(in) :: tm2(-ld:ld,-1:1) complex(8), intent(out) :: dmat(ld,nspinor,ld,nspinor) ! local variables integer ispn,jspn,x,y integer m1,m2,lm1,lm2 real(8) nlk,nsp,t1,t2,t3 ! external functions real(8), external :: wigner3j,wigner3jf,factnm if (l.lt.0) then write(*,*) write(*,'("Error(tm2todm): l < 0 : ",I8)') l write(*,*) stop end if if ((nspinor.lt.1).or.(nspinor.gt.2)) then write(*,*) write(*,'("Error(tm2todm): nspinor should be 1 or 2 : ",I8)') nspinor write(*,*) stop end if if (k.lt.0) then write(*,*) write(*,'("Error(tm2todm): k < 0 : ",I8)') k write(*,*) stop end if if (k.gt.2*l) then write(*,*) write(*,'("Error(tm2todm): k > 2*l : ",2I8)') k,2*l write(*,*) stop end if if ((p.lt.0).or.(p.gt.1)) then write(*,*) write(*,'("Error(tm2todm): p should be 0 or 1 : ",I8)') p write(*,*) stop end if ! factors n_lk and n_sp; Eq. (21) in article nlk=factnm(2*l,1)/sqrt(factnm(2*l-k,1)*factnm(2*l+k+1,1)) nsp=1.d0/sqrt(factnm(2+p,1)) t1=dble((2*k+1)*(2*p+1))*nlk*nsp ! compute density matrix from 2-index tensor moment dmat(:,:,:,:)=0.d0 do x=-k,k do y=-p,p do ispn=1,nspinor do jspn=1,nspinor t2=t1*wigner3jf(1,2*p,1,2*jspn-3,2*y,3-2*ispn) lm1=l**2 do m1=-l,l lm1=lm1+1 lm2=l**2 do m2=-l,l lm2=lm2+1 t3=t2*dble((-1)**(m2-l+jspn-1))*wigner3j(l,k,l,-m2,x,m1) dmat(lm1,ispn,lm2,jspn)=dmat(lm1,ispn,lm2,jspn)+t3*tm2(x,y) end do end do end do end do end do end do end subroutine elk-7.2.42/src/PaxHeaders.21776/tm3todm.f900000644000000000000000000000013214061636517014633 xustar0030 mtime=1623670095.706101758 30 atime=1623670094.538102842 30 ctime=1623670095.706101758 elk-7.2.42/src/tm3todm.f900000644002504400250440000000422514061636517016673 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tm3todm(l,nspinor,k,p,r,ld,tm3,dmat) implicit none ! arguments integer, intent(in) :: l,nspinor integer, intent(in) :: k,p,r integer, intent(in) :: ld complex(8), intent(in) :: tm3(-ld:ld) complex(8), intent(out) :: dmat(ld,nspinor,ld,nspinor) ! parameters complex(8), parameter :: zi=(0.d0,1.d0) ! local variables integer x,y,g,t real(8) t1,t2 complex(8) z1 ! allocatable arrays complex(8), allocatable :: tm2(:,:) ! external functions real(8), external :: wigner3j,factnm,factr if (l.lt.0) then write(*,*) write(*,'("Error(tm3todm): l < 0 : ",I8)') l write(*,*) stop end if if ((nspinor.lt.1).or.(nspinor.gt.2)) then write(*,*) write(*,'("Error(tm3todm): nspinor should be 1 or 2 : ",I8)') nspinor write(*,*) stop end if if (k.lt.0) then write(*,*) write(*,'("Error(tm3todm): k < 0 : ",I8)') k write(*,*) stop end if if (k.gt.2*l) then write(*,*) write(*,'("Error(tm3todm): k > 2*l : ",2I8)') k,2*l write(*,*) stop end if if ((p.lt.0).or.(p.gt.1)) then write(*,*) write(*,'("Error(tm3todm): p should be 0 or 1 : ",I8)') p write(*,*) stop end if if (r.lt.abs(k-p)) then write(*,*) write(*,'("Error(tm3todm): r < |k-p| : ",2I8)') r,abs(k-p) write(*,*) stop end if if (r.gt.(k+p)) then write(*,*) write(*,'("Error(tm3todm): r > k+p : ",2I8)') r,k+p write(*,*) stop end if ! compute 2-index tensor moment from 3-index tensor moment allocate(tm2(-ld:ld,-1:1)) tm2(:,:)=0.d0 do x=-k,k do y=-p,p t1=dble((-1)**(x+y-k-p)) g=k+p+r if (mod(g,2).eq.0) then z1=t1*wigner3j(k,p,r,0,0,0) else t1=t1*sqrt(factr(g-2*k,g+1)*factnm(g-2*p,1)*factnm(g-2*r,1)) t1=t1*factnm(g,2)/(factnm(g-2*k,2)*factnm(g-2*p,2)*factnm(g-2*r,2)) z1=t1*zi**g end if do t=-r,r t2=wigner3j(k,r,p,-x,t,-y)*(2*r+1) tm2(x,y)=tm2(x,y)+t2*z1*tm3(t) end do end do end do ! compute the density matrix from the 2-index tensor moment call tm2todm(l,nspinor,k,p,ld,tm2,dmat) deallocate(tm2) end subroutine elk-7.2.42/src/PaxHeaders.21776/pottm2.f900000644000000000000000000000013114061636517014470 xustar0030 mtime=1623670095.707101757 29 atime=1623670094.54010284 30 ctime=1623670095.707101757 elk-7.2.42/src/pottm2.f900000644002504400250440000000246114061636517016531 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: pottm2 ! !INTERFACE: subroutine pottm2(i,k1,p,vh,vx) ! !USES: use moddftu ! !INPUT/OUTPUT PARAMETERS: ! i : DFT+U entry (in,integer) ! k1 : k-index of tensor moment (in,integer) ! p : p-index of tensor moment (in,integer) ! vh : Hartree potential energy (out,real) ! vx : exchange potential energy (out,real) ! !DESCRIPTION: ! Calculates the DFT+$U$ Hartree and exchange potential energies for a 2-index ! tensor moment component. See {\tt pottm3}. ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio and L. Nordstrom) ! Modified, January 2014 (JKD) !EOP !BOC implicit none integer, intent(in) :: i integer, intent(in) :: k1,p real(8), intent(out) :: vh,vx ! local variables integer l,k real(8) nlk,t1,t2 ! external functions real(8), external :: wigner3j,wigner6j,factnm l=idftu(2,i) nlk=factnm(2*l,1)/sqrt(factnm(2*l-k1,1)*factnm(2*l+k1+1,1)) vh=0.d0 vx=0.d0 do k=0,2*l,2 t1=0.5d0*(dble(2*l+1)*nlk*wigner3j(l,k,l,0,0,0))**2 t2=0.5d0*dble((2*k1+1)*(-1)**k1)*wigner6j(l,l,k1,l,l,k) if (k.eq.k1) then if (p.eq.0) vh=t1*fdu(k1,i) end if vx=vx-t1*t2*fdu(k,i) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/pottm3.f900000644000000000000000000000013214061636517014472 xustar0030 mtime=1623670095.709101755 30 atime=1623670094.541102839 30 ctime=1623670095.709101755 elk-7.2.42/src/pottm3.f900000644002504400250440000000332014061636517016525 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: pottm3 ! !INTERFACE: subroutine pottm3(i,k1,p,r,vh,vx) ! !USES: use moddftu ! !INPUT/OUTPUT PARAMETERS: ! i : DFT+U entry (in,integer) ! k1 : k-index of tensor moment (in,integer) ! p : p-index of tensor moment (in,integer) ! r : r-index of tensor moment (in,integer) ! vh : Hartree potential energy (out,real) ! vx : exchange potential energy (out,real) ! !DESCRIPTION: ! Calculates the DFT+$U$ Hartree and exchange potential energies for a 3-index ! tensor moment component. See Eq. (28) in {\it Phys. Rev. B} {\bf 80}, 035121 ! (2009); and Eqs. (3), (4) in {\it Phys. Rev. B} {\bf 78}, 100404 (2008). ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio and L. Nordstrom) ! Modified and fixed bug, January 2014 (JKD) !EOP !BOC implicit none integer, intent(in) :: i integer, intent(in) :: k1,p,r real(8), intent(out) :: vh,vx ! local variables integer l,k,g real(8) nlk,t1,t2,t3 ! external functions real(8), external :: wigner3j,wigner6j,factnm,factr l=idftu(2,i) g=k1+p+r if (mod(g,2).eq.0) then t1=wigner3j(k1,p,r,0,0,0) else t1=sqrt(factr(g-2*k1,g+1)*factnm(g-2*p,1)*factnm(g-2*r,1)) t1=t1*factnm(g,2)/(factnm(g-2*k1,2)*factnm(g-2*p,2)*factnm(g-2*r,2)) end if t3=dble(2*r+1)*t1**2 nlk=factnm(2*l,1)/sqrt(factnm(2*l-k1,1)*factnm(2*l+k1+1,1)) vh=0.d0 vx=0.d0 do k=0,2*l,2 t1=0.5d0*(dble(2*l+1)*nlk*wigner3j(l,k,l,0,0,0))**2 t2=0.5d0*dble((2*k1+1)*(-1)**k1)*wigner6j(l,l,k1,l,l,k)*t3 if (k.eq.k1) then if (p.eq.0) vh=t1*fdu(k1,i) end if vx=vx-t1*t2*fdu(k,i) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/tm2pol.f900000644000000000000000000000013214061636517014461 xustar0030 mtime=1623670095.711101753 30 atime=1623670094.543102837 30 ctime=1623670095.711101753 elk-7.2.42/src/tm2pol.f900000644002504400250440000000176314061636517016525 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tm2pol(l,k,w2,tm2p) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! l : angular momentum (in,integer) ! k : k-index of tensor moment (in,integer) ! w2 : modulus square of k-p tensmom (in,real) ! tm2p : polarisation (out,real) ! !DESCRIPTION: ! Calculate the polarisation of each 2-index tensor component of the density ! matrix, see {\it Phys. Rev. B} {\bf 80}, 035121 (2009). ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio and L. Nordstrom) !EOP !BOC implicit none ! input variables integer, intent(in) :: l,k real(8),intent(in) :: w2 real(8),intent(out) :: tm2p ! local variables real(8) nlk ! external functions real(8), external :: factnm nlk=factnm(2*l,1)/sqrt(factnm(2*l-k,1)*factnm(2*l+k+1,1)) tm2p=dble((2*k+1)*(2*l+1))*(nlk**2)*w2 end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/tm3pol.f900000644000000000000000000000013214061636517014462 xustar0030 mtime=1623670095.712101752 30 atime=1623670094.545102835 30 ctime=1623670095.712101752 elk-7.2.42/src/tm3pol.f900000644002504400250440000000266314061636517016526 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 F. Bultmark, F. Cricchio, L. Nordstrom and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tm3pol(l,k,p,r,w2,tm3p) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! l : angular momentum (in,integer) ! k : k-index of tensor moment (in,integer) ! p : p-index of tensor moment (in,integer) ! r : r-index of tensor moment (in,integer) ! w2 : modulus square of k-p-r tensor moment (in,real) ! tm3p : polarisation (out,real) ! !DESCRIPTION: ! Calculate the polarisation of each 3-index tensor component of the density ! matrix, see {\it Phys. Rev. B} {\bf 80}, 035121 (2009). ! ! !REVISION HISTORY: ! Created April 2008 (F. Cricchio and L. Nordstrom) !EOP !BOC implicit none ! input variables integer, intent(in) :: l,k,p,r real(8), intent(in) :: w2 real(8), intent(out) :: tm3p ! local variables integer g real(8) nlk,t1 ! external functions real(8), external :: wigner3j,factnm,factr g=k+p+r if (g.eq.0) then t1=sqrt(w2) tm3p=t1*(dble(2*(2*l+1))-t1) else if (mod(g,2).eq.0) then t1=wigner3j(k,p,r,0,0,0) else t1=sqrt(factnm(g-2*p,1)*factnm(g-2*r,1)*factr(g-2*k,g+1)) t1=t1*factnm(g,2)/(factnm(g-2*k,2)*factnm(g-2*p,2)*factnm(g-2*r,2)) end if nlk=factnm(2*l,1)/sqrt(factnm(2*l-k,1)*factnm(2*l+k+1,1)) tm3p=dble((2*k+1)*(2*r+1)*(2*l+1))*((t1*nlk)**2)*w2 end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gendmftm.f900000644000000000000000000000013014061636517015043 xustar0029 mtime=1623670095.71410175 30 atime=1623670094.546102834 29 ctime=1623670095.71410175 elk-7.2.42/src/gendmftm.f900000644002504400250440000000474514061636517017114 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma, E. K. U. Gross and L. Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gendmftm use modmain use moddftu implicit none ! local variables integer is,ia,ias,i integer l,n,k,p,r,t,x,y ! allocatable arrays complex(8), allocatable :: tm2(:,:),tm3(:) complex(8), allocatable :: dmat(:,:,:,:) ! external functions real(8), external :: dznrm2 if (ftmtype.eq.0) return ! allocate global array if (allocated(dmftm)) deallocate(dmftm) allocate(dmftm(lmmaxdm,nspinor,lmmaxdm,nspinor,natmtot)) ! allocate local arrays allocate(tm2(-lmmaxdm:lmmaxdm,-1:1),tm3(-lmmaxdm:lmmaxdm)) allocate(dmat(lmmaxdm,nspinor,lmmaxdm,nspinor)) ! zero the fixed tensor moment density matrices dmftm(:,:,:,:,:)=0.d0 do i=1,ntmfix is=itmfix(1,i) if (is.gt.nspecies) then write(*,*) write(*,'("Error(gendmftm): invalid species number : ",I8)') is write(*,*) stop end if ia=itmfix(2,i) if (ia.gt.natoms(is)) then write(*,*) write(*,'("Error(gendmftm): invalid atom number : ",I8)') ia write(*,'(" for species ",I4)') is write(*,*) stop end if ias=idxas(ia,is) l=itmfix(3,i) if (l.gt.lmaxdm) then write(*,*) write(*,'("Error(gendmftm): l > lmaxdm ",2I8)') l,lmaxdm write(*,'(" for species ",I4," and atom ",I4)') is,ia write(*,*) stop end if n=itmfix(4,i) k=itmfix(5,i) p=itmfix(6,i) if (n.eq.2) then ! generate the 2-index density matrix x=itmfix(7,i) y=itmfix(8,i) if ((abs(x).gt.lmmaxdm).or.(abs(y).gt.1)) then write(*,*) write(*,'("Error(gendmftm): invalid x or y : ",2I8)') x,y write(*,'(" for tensor moment entry ",I3)') i write(*,*) stop end if tm2(:,:)=0.d0 tm2(x,y)=tmfix(i) call tm2todm(l,nspinor,k,p,lmmaxdm,tm2,dmat) else ! generate the 3-index density matrix r=itmfix(7,i) t=itmfix(8,i) if (abs(t).gt.lmmaxdm) then write(*,*) write(*,'("Error(gendmftm): invalid t : ",I8)') t write(*,'(" for tensor moment entry ",I3)') i write(*,*) stop end if tm3(:)=0.d0 tm3(t)=tmfix(i) call tm3todm(l,nspinor,k,p,r,lmmaxdm,tm3,dmat) end if ! make density matrix Hermitian call hrmdmat(lmmaxdm*nspinor,dmat) ! apply rotation matrices and add to density matrix global array call rotdmat(rtmfix(:,:,1,i),rtmfix(:,:,2,i),lmaxdm,nspinor,lmmaxdm,dmat, & dmftm(:,:,:,:,ias)) end do deallocate(tm2,tm3,dmat) end subroutine elk-7.2.42/src/PaxHeaders.21776/ftmfield.f900000644000000000000000000000013214061636517015036 xustar0030 mtime=1623670095.715101749 30 atime=1623670094.548102833 30 ctime=1623670095.715101749 elk-7.2.42/src/ftmfield.f900000644002504400250440000000354714061636517017104 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 L. Nordstrom, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine ftmfield use modmain use moddftu implicit none ! local variables integer is,ia,ias,n2,i integer l,n,k,p,r,t,x,y complex(8) z1 ! allocatable arrays complex(8), allocatable :: tm2(:,:),tm3(:) complex(8), allocatable :: dmat(:,:,:,:) if (ftmtype.le.0) return if (mod(iscl,ftmstep).ne.1) return allocate(tm2(-lmmaxdm:lmmaxdm,-1:1),tm3(-lmmaxdm:lmmaxdm)) allocate(dmat(lmmaxdm,nspinor,lmmaxdm,nspinor)) n2=(lmmaxdm*nspinor)**2 ! loop over FTM entries do i=1,ntmfix is=itmfix(1,i) ia=itmfix(2,i) ias=idxas(ia,is) l=itmfix(3,i) n=itmfix(4,i) k=itmfix(5,i) p=itmfix(6,i) if (n.eq.2) then x=itmfix(7,i) y=itmfix(8,i) ! decompose density matrix in 2-index tensor moment components call dmtotm2(l,nspinor,k,p,lmmaxdm,dmatmt(:,:,:,:,ias),tm2) ! take difference between current and target moment z1=tm2(x,y)-tmfix(i) tm2(:,:)=0.d0 tm2(x,y)=tauftm*z1 ! compute new density matrix call tm2todm(l,nspinor,k,p,lmmaxdm,tm2,dmat) else r=itmfix(7,i) t=itmfix(8,i) ! decompose density matrix in 3-index tensor moment components call dmtotm3(l,nspinor,k,p,r,lmmaxdm,dmatmt(:,:,:,:,ias),tm3) ! take difference between current and target moment z1=tm3(t)-tmfix(i) tm3(:)=0.d0 tm3(t)=tauftm*z1 ! compute new density matrix call tm3todm(l,nspinor,k,p,r,lmmaxdm,tm3,dmat) end if ! make density matrix Hermitian call hrmdmat(lmmaxdm*nspinor,dmat) ! apply rotation matrices and add to potential matrix global arrays call rotdmat(rtmfix(:,:,1,i),rtmfix(:,:,2,i),lmaxdm,nspinor,lmmaxdm,dmat, & vmftm(:,:,:,:,ias)) call zaxpy(n2,zone,vmftm(:,:,:,:,ias),1,vmatmt(:,:,:,:,ias),1) end do deallocate(tm2,tm3,dmat) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeftm.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.717101748 30 atime=1623670094.549102832 30 ctime=1623670095.717101748 elk-7.2.42/src/writeftm.f900000644002504400250440000000306214061636517017143 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeftm use modmain use moddftu implicit none ! local variables integer is,ia,ias,i integer l,n,k,p,r,t,x,y ! allocatable arrays complex(8), allocatable :: tm2(:,:),tm3(:) allocate(tm2(-lmmaxdm:lmmaxdm,-1:1),tm3(-lmmaxdm:lmmaxdm)) ! open FTM.OUT open(50,file='FTM.OUT',form='FORMATTED') do i=1,ntmfix is=itmfix(1,i) ia=itmfix(2,i) ias=idxas(ia,is) l=itmfix(3,i) n=itmfix(4,i) k=itmfix(5,i) p=itmfix(6,i) write(50,*) write(50,'("Species : ",I4," (",A,"), atom : ",I4)') is,trim(spsymb(is)),ia write(50,'(" l = ",I2,", n = ",I2)') l,n if (n.eq.2) then x=itmfix(7,i) y=itmfix(8,i) write(50,'(" k = ",I2,", p = ",I2,", x = ",I2,", y = ",I2)') k,p,x,y ! decompose density matrix in 2-index tensor moment components call dmtotm2(l,nspinor,k,p,lmmaxdm,dmatmt(:,:,:,:,ias),tm2) write(50,'(" tensor moment")') write(50,'(" current : ",2G18.10)') tm2(x,y) write(50,'(" target : ",2G18.10)') tmfix(i) else r=itmfix(7,i) t=itmfix(8,i) write(50,'(" k = ",I2,", p = ",I2,", r = ",I2,", t = ",I2)') k,p,r,t ! decompose density matrix in 3-index tensor moment components call dmtotm3(l,nspinor,k,p,r,lmmaxdm,dmatmt(:,:,:,:,ias),tm3) write(50,'(" tensor moment")') write(50,'(" current : ",2G18.10)') tm3(t) write(50,'(" target : ",2G18.10)') tmfix(i) end if end do close(50) deallocate(tm2,tm3) end subroutine elk-7.2.42/src/PaxHeaders.21776/genvclijji.f900000644000000000000000000000013114061636517015367 xustar0030 mtime=1623670095.718101746 29 atime=1623670094.55110283 30 ctime=1623670095.718101746 elk-7.2.42/src/genvclijji.f900000644002504400250440000001107514061636517017431 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genvclijji ! !INTERFACE: subroutine genvclijji(ikp,vclijji) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ikp : k-point from non-reduced set (in,integer) ! vclijji : Coulomb matrix elements (out,real(nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the Coulomb matrix elements of the type $(i-jj-i)$. ! ! !REVISION HISTORY: ! Created June 2008 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: ikp real(8), intent(out) :: vclijji(nstsv,nstsv,nkpt) ! local variables integer ik,ist1,ist2 integer iv(3),iq,ig real(8) vc(3) complex(8) z1 ! automatic arrays integer idx(nstsv) ! allocatable arrays real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) ! external functions complex(8), external :: zfinp ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot),zrhoir(ngtc)) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) ! get the eigenvectors from file for non-reduced k-point ikp call getevecfv(filext,0,vkl(:,ikp),vgkl(:,:,1,ikp),evecfv) call getevecsv(filext,0,vkl(:,ikp),evecsv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of passed non-reduced k-point ikp call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) ! start loop over reduced k-point set do ik=1,nkpt ! determine the q-vector iv(:)=ivk(:,ik)-ivk(:,ikp) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vc(:)=vkc(:,ik)-vkc(:,ikp) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! calculate the wavefunctions for all states of the reduced k-point call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt1,ngtc,wfir1) !----------------------------------------------! ! valence-valence-valence contribution ! !----------------------------------------------! do ist1=1,nstsv do ist2=1,nstsv ! calculate the complex overlap density call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist2),wfir2(:,:,ist2), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt,zrhoir) ! compute the potential and G=0 coefficient of the density call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax,zrhomt,zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc, & gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir,npcmtmax,zvclmt,zvclir) zvclir(:)=zvclir(:)*cfrc(:) z1=zfinp(zrhomt,zrhoir,zvclmt,zvclir) vclijji(ist1,ist2,ik)=wqptnr*dble(z1) ! end loop over ist2 end do ! end loop over ist1 end do ! end loop over reduced k-point set end do deallocate(vgqc,gqc,gclgq,jlgqrmt) deallocate(apwalm,evecfv,evecsv,ylmgq,sfacgq) deallocate(wfmt1,wfmt2,wfir1,wfir2) deallocate(zrhomt,zrhoir,zvclmt,zvclir) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmft.f900000644000000000000000000000013214061636517014360 xustar0030 mtime=1623670095.720101745 30 atime=1623670094.553102828 30 ctime=1623670095.720101745 elk-7.2.42/src/rdmft.f900000644002504400250440000000636414061636517016426 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmft ! !INTERFACE: subroutine rdmft ! !USES: use modmain use modrdm use modmpi ! !DESCRIPTION: ! Main routine for one-body reduced density matrix functional theory (RDMFT). ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! initialise global variables call init0 call init1 ! generate q-point set and gclq array call init2 ! read density and potentials from file call readstate ! Fourier transform Kohn-Sham potential to G-space call genvsig ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! generate the spin-orbit coupling radial functions call gensocfr ! compute the kinetic energy of the core call energykncr ! generate the first- and second-variational eigenvectors and eigenvalues call genevfsv ! find the occupation numbers call occupy ! generate the kinetic matrix elements in the first-variational basis call genkmat(.true.,.false.) ! open information files (MPI master process only) if (mp_mpi) then open(60,file='RDM_INFO.OUT',form='FORMATTED') open(61,file='RDMN_ENERGY.OUT',form='FORMATTED') open(62,file='RDMC_ENERGY.OUT',form='FORMATTED') if (spinpol) then open(63,file='RDMN_MOMENT.OUT',form='FORMATTED') open(64,file='RDMC_MOMENT.OUT',form='FORMATTED') end if open(65,file='RDM_ENERGY.OUT',form='FORMATTED') ! write out general information to RDM_INFO.OUT call writeinfo(60) write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') end if ! begin main RDMFT self-consistent loop do iscl=1,rdmmaxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') flush(60) write(*,*) write(*,'("Info(rdmft): self-consistent loop number : ",I4)') iscl end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! minimisation over natural orbitals call rdmminc ! minimisation over occupation number call rdmminn ! compute the RDMFT 'eigenvalues' call rdmeval if (mp_mpi) then call rdmwriteengy(60) call writechg(60) if (spinpol) call writemom(60) call writeeval ! write out the total energy write(65,'(G18.10)') engytot flush(65) end if end do if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') ! write density to STATE.OUT call writestate write(60,*) write(60,'("Wrote STATE.OUT")') write(60,*) write(60,'("+----------------------------+")') write(60,'("| Elk version ",I1.1,".",I1.1,".",I2.2," stopped |")') version write(60,'("+----------------------------+")') ! close information files close(60) close(61) close(62) if (spinpol) then close(63) close(64) end if close(65) end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdkdc.f900000644000000000000000000000013214061636517014654 xustar0030 mtime=1623670095.721101744 30 atime=1623670094.554102827 30 ctime=1623670095.721101744 elk-7.2.42/src/rdmdkdc.f900000644002504400250440000000203614061636517016712 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmdkdc ! !INTERFACE: subroutine rdmdkdc ! !USES: use modmain use modrdm use modomp ! !DESCRIPTION: ! Calculates the derivative of kinetic energy w.r.t. the second-variational ! coefficients {\tt evecsv}. ! ! !REVISION HISTORY: ! Created October 2008 (Sharma) !EOP !BOC implicit none ! local variables integer ik,nthd ! allocatable arrays complex(8), allocatable :: evecsv(:,:),kmat(:,:) call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecsv,kmat) & !$OMP NUM_THREADS(nthd) allocate(evecsv(nstsv,nstsv),kmat(nstsv,nstsv)) !$OMP DO do ik=1,nkpt call getevecsv(filext,ik,vkl(:,ik),evecsv) call getkmat(ik,kmat) call zgemm('N','N',nstsv,nstsv,nstsv,zone,kmat,nstsv,evecsv,nstsv,zzero, & dkdc(:,:,ik),nstsv) end do !$OMP END DO deallocate(evecsv,kmat) !$OMP END PARALLEL call freethd(nthd) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmminc.f900000644000000000000000000000013214061636517014675 xustar0030 mtime=1623670095.722101743 30 atime=1623670094.556102825 30 ctime=1623670095.722101743 elk-7.2.42/src/rdmminc.f900000644002504400250440000000275514061636517016743 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmminc ! !INTERFACE: subroutine rdmminc ! !USES: use modmain use modrdm use modmpi ! !DESCRIPTION: ! Minimizes the total energy with respect to the second-variational ! coefficients {\tt evecsv}. The steepest-descent algorithm is used. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! local variables integer it if (maxitc.lt.1) return ! begin iteration loop do it=1,maxitc if (mp_mpi) then write(*,'("Info(rdmminc): iteration ",I4," of ",I4)') it,maxitc end if ! generate the density and magnetisation call rhomag ! calculate the Coulomb potential call potcoul ! calculate Coulomb potential matrix elements call genvmat(vclmt,vclir,vclmat) ! calculate derivative of kinetic energy w.r.t. evecsv call rdmdkdc ! write the Coulomb matrix elements to file call writevclijjk ! update evecsv, orthogonalise and write to file (MPI master process only) if (mp_mpi) call rdmvaryc ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! calculate the energy call rdmenergy ! write energy to file if (mp_mpi) then write(62,'(I6,G18.10)') it,engytot flush(62) end if ! end iteration loop end do if (mp_mpi) then write(60,*) write(60,'("Natural orbital minimisation done")') write(62,*) if (spinpol) write(64,*) end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmvaryc.f900000644000000000000000000000013214061636517015073 xustar0030 mtime=1623670095.724101741 30 atime=1623670094.557102824 30 ctime=1623670095.724101741 elk-7.2.42/src/rdmvaryc.f900000644002504400250440000000211314061636517017125 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmvaryc ! !INTERFACE: subroutine rdmvaryc ! !USES: use modmain use modrdm ! !DESCRIPTION: ! Calculates new {\tt evecsv} from old by using the derivatives of the total ! energy w.r.t. {\tt evecsv}. A single step of steepest-descent is made. ! ! !REVISION HISTORY: ! Created 2009 (Sharma) !EOP !BOC implicit none ! local variables integer ik ! allocatable arrays complex(8), allocatable :: dedc(:,:,:),evecsv(:,:) ! compute the derivative w.r.t. evecsv allocate(dedc(nstsv,nstsv,nkpt)) call rdmdedc(dedc) allocate(evecsv(nstsv,nstsv)) do ik=1,nkpt ! get the eigenvectors from file call getevecsv(filext,ik,vkl(:,ik),evecsv) ! calculate new evecsv evecsv(:,:)=evecsv(:,:)-taurdmc*dedc(:,:,ik) ! othogonalise evecsv call unitary(nstsv,evecsv) ! write new evecsv to file call putevecsv(filext,ik,evecsv) ! end loop over k-points end do deallocate(dedc,evecsv) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdedc.f900000644000000000000000000000013014061636517014644 xustar0029 mtime=1623670095.72510174 30 atime=1623670094.559102822 29 ctime=1623670095.72510174 elk-7.2.42/src/rdmdedc.f900000644002504400250440000000256414061636517016712 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmdedc ! !INTERFACE: subroutine rdmdedc(dedc) ! !USES: use modmain use modrdm use modomp ! !INPUT/OUTPUT PARAMETERS: ! dedc : energy derivative (out,complex(nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the derivative of the total energy w.r.t. the second-variational ! coefficients {\tt evecsv}. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments complex(8), intent(out) :: dedc(nstsv,nstsv,nkpt) ! local variables integer ik,ist,nthd ! allocatable arrays complex(8), allocatable :: evecsv(:,:),c(:,:) call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecsv,c,ist) & !$OMP NUM_THREADS(nthd) allocate(evecsv(nstsv,nstsv),c(nstsv,nstsv)) !$OMP DO do ik=1,nkpt ! get the eigenvectors from file call getevecsv(filext,ik,vkl(:,ik),evecsv) ! kinetic and Coulomb potential contribution call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,vclmat(:,:,ik),nstsv, & zzero,c,nstsv) do ist=1,nstsv dedc(:,ist,ik)=occsv(ist,ik)*(dkdc(:,ist,ik)+c(:,ist)) end do end do !$OMP END DO deallocate(evecsv,c) !$OMP END PARALLEL call freethd(nthd) ! exchange-correlation contribution call rdmdexcdc(dedc) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmenergy.f900000644000000000000000000000013114061636517015237 xustar0030 mtime=1623670095.727101738 29 atime=1623670094.56110282 30 ctime=1623670095.727101738 elk-7.2.42/src/rdmenergy.f900000644002504400250440000000433114061636517017276 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2005-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmenergy ! !INTERFACE: subroutine rdmenergy ! !USES: use modmain use modrdm use modtest ! !DESCRIPTION: ! Calculates RDMFT total energy (free energy for finite temperatures). ! ! !REVISION HISTORY: ! Created 2008 (Sharma) ! Updated for free energy 2009 (Baldsiefen) !EOP !BOC implicit none ! local variables integer ik,ist,is,ias integer nr,nri,ir,i real(8) wo complex(8) z1 ! allocatable arrays real(8), allocatable :: rfmt(:) complex(8), allocatable :: evecsv(:,:) ! external functions real(8), external :: rfmtinp complex(8), external :: zdotc allocate(rfmt(npmtmax)) ! Coulomb energy from core states engyvcl=0.d0 do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) rfmt(1:npmt(is))=0.d0 i=1 if (spincore) then ! spin-polarised core do ir=1,nri rfmt(i)=rhocr(ir,ias,1)+rhocr(ir,ias,2) i=i+lmmaxi end do do ir=nri+1,nr rfmt(i)=rhocr(ir,ias,1)+rhocr(ir,ias,2) i=i+lmmaxo end do else ! spin-unpolarised core do ir=1,nri rfmt(i)=rhocr(ir,ias,1) i=i+lmmaxi end do do ir=nri+1,nr rfmt(i)=rhocr(ir,ias,1) i=i+lmmaxo end do end if engyvcl=engyvcl+rfmtinp(nr,nri,wrmt(:,is),rfmt,vclmt(:,ias)) end do deallocate(rfmt) engykn=engykncr allocate(evecsv(nstsv,nstsv)) do ik=1,nkpt call getevecsv(filext,ik,vkl(:,ik),evecsv) do ist=1,nstsv wo=wkpt(ik)*occsv(ist,ik) ! Coulomb energy from valence states engyvcl=engyvcl+wo*dble(vclmat(ist,ist,ik)) ! kinetic energy from valence states z1=zdotc(nstsv,evecsv(:,ist),1,dkdc(:,ist,ik),1) engykn=engykn+wo*dble(z1) end do end do deallocate(evecsv) ! Madelung term engymad=0.d0 do ias=1,natmtot is=idxis(ias) engymad=engymad+0.5d0*spzn(is)*(vclmt(1,ias)-vcln(1,is))*y00 end do ! exchange-correlation energy call rdmengyxc ! total energy engytot=0.5d0*engyvcl+engymad+engykn+engyx if (rdmtemp.gt.0.d0) then call rdmentropy engytot=engytot-rdmtemp*rdmentrpy end if ! write total energy to test file call writetest(300,'RDMFT total energy',tol=1.d-6,rv=engytot) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmengyxc.f900000644000000000000000000000013114061636517015243 xustar0030 mtime=1623670095.728101737 29 atime=1623670094.56210282 30 ctime=1623670095.728101737 elk-7.2.42/src/rdmengyxc.f900000644002504400250440000000353214061636517017304 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdmengyxc ! !INTERFACE: subroutine rdmengyxc ! !USES: use modmain use modrdm ! !DESCRIPTION: ! Calculates RDMFT exchange-correlation energy. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! local variables integer ik1,ik2,jk,iv(3) integer ist1,ist2 real(8) t1,t2,t3,t4 ! allocatable arays real(8), allocatable :: vclijji(:,:,:) ! calculate the prefactor if (rdmxctype.eq.0) then engyx=0.d0 return else if (rdmxctype.eq.1) then ! Hartree-Fock functional t1=0.5d0/occmax else if (rdmxctype.eq.2) then ! Power functional if (spinpol) then t1=0.5d0 else t1=(0.25d0)**rdmalpha end if else write(*,*) write(*,'("Error(rdmengyxc): rdmxctype not defined : ",I8)') rdmxctype write(*,*) stop end if ! exchange-correlation energy engyx=0.d0 allocate(vclijji(nstsv,nstsv,nkpt)) ! start loop over non-reduced k-points do ik1=1,nkptnr call getvclijji(ik1,vclijji) ! find the equivalent reduced k-point iv(:)=ivk(:,ik1) jk=ivkik(iv(1),iv(2),iv(3)) do ist1=1,nstsv ! start loop over reduced k-points do ik2=1,nkpt do ist2=1,nstsv ! Hartree-Fock functional if (rdmxctype.eq.1) then t2=t1*wkpt(ik2)*occsv(ist2,ik2)*occsv(ist1,jk) ! Power functional else if (rdmxctype.eq.2) then t3=occsv(ist2,ik2)*occsv(ist1,jk) t4=sum(abs(vkl(:,ik2)-vkl(:,ik1))) if ((ist2.eq.ist1).and.(t4.lt.epslat)) then t2=(0.5d0/occmax)*wkpt(ik2)*t3 else t2=t1*wkpt(ik2)*(t3**rdmalpha) end if end if engyx=engyx-t2*vclijji(ist2,ist1,ik2) end do end do end do end do deallocate(vclijji) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmwritededn.f900000644000000000000000000000013214061636517015734 xustar0030 mtime=1623670095.730101735 30 atime=1623670094.564102818 30 ctime=1623670095.730101735 elk-7.2.42/src/rdmwritededn.f900000644002504400250440000000203714061636517017773 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdmwritededn ! !INTERFACE: subroutine rdmwritededn(dedn) ! !USES: use modmain use modrdm ! !INPUT/OUTPUT PARAMETERS: ! dedn : derivative of energy (in,real(nstsv,nkpt)) ! !DESCRIPTION: ! Writes the derivative of total energy with respect to occupation numbers to ! file {\tt RDM\_DEDN.OUT}. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments real(8), intent(in) :: dedn(nstsv,nkpt) ! local variables integer ik,ist open(50,file='RDM_DEDN.OUT',form='FORMATTED') write(50,'(I6," : nkpt")') nkpt write(50,'(I6," : nstsv")') nstsv do ik=1,nkpt write(50,*) write(50,'(I6,3G18.10," : k-point, vkl")') ik,vkl(:,ik) write(50,'(" (state, occupancy and derivative below)")') do ist=1,nstsv write(50,'(I6,4G18.10)') ist,occsv(ist,ik),-dedn(ist,ik) end do end do close(50) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmwriteengy.f900000644000000000000000000000013214061636517015764 xustar0030 mtime=1623670095.731101734 30 atime=1623670094.566102816 30 ctime=1623670095.731101734 elk-7.2.42/src/rdmwriteengy.f900000644002504400250440000000206714061636517020026 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmwriteengy ! !INTERFACE: subroutine rdmwriteengy(fnum) ! !USES: use modmain use modrdm ! !INPUT/OUTPUT PARAMETERS: ! fnum : file number for writing output (in,integer) ! !DESCRIPTION: ! Writes all contributions to the total energy to file. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: fnum write(fnum,*) write(fnum,'("Energies :")') write(fnum,'(" electronic kinetic",T30,": ",G18.10)') engykn write(fnum,'(" core electron kinetic",T30,": ",G18.10)') engykncr write(fnum,'(" Coulomb",T30,": ",G18.10)') engyvcl write(fnum,'(" Madelung",T30,": ",G18.10)') engymad write(fnum,'(" exchange-correlation",T30,": ",G18.10)') engyx if (rdmtemp.gt.0.d0) then write(fnum,'(" entropy",T30,": ",G18.10)') rdmentrpy end if write(fnum,'(" total energy",T30,": ",G18.10)') engytot flush(fnum) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmminn.f900000644000000000000000000000013214061636517014710 xustar0030 mtime=1623670095.733101733 30 atime=1623670094.567102815 30 ctime=1623670095.733101733 elk-7.2.42/src/rdmminn.f900000644002504400250440000000307114061636517016746 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmminn ! !INTERFACE: subroutine rdmminn ! !USES: use modmain use modrdm use modmpi ! !DESCRIPTION: ! Minimizes the total energy w.r.t. occupation numbers. The steepest-descent ! algorithm is used. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! local variables integer it,n if (maxitn.lt.1) return ! write the Coulomb matrix elements to file call writevclijji ! calculate derivative of kinetic energy w.r.t. evecsv call rdmdkdc ! begin iteration loop do it=1,maxitn if (mp_mpi) then if (mod(it,10).eq.0) then write(*,'("Info(rdmminn): iteration ",I4," of ",I4)') it,maxitn end if end if ! generate the density and magnetisation call rhomag ! calculate the Coulomb potential call potcoul ! calculate Coulomb potential matrix elements call genvmat(vclmt,vclir,vclmat) ! update occupation numbers and write to file (MPI master process only) if (mp_mpi) call rdmvaryn ! broadcast occupation numbers to all other processes n=nstsv*nkpt call mpi_bcast(occsv,n,mpi_double_precision,0,mpicom,ierror) ! calculate the energy call rdmenergy ! write energy to file if (mp_mpi) then write(61,'(I6,G18.10)') it,engytot flush(61) end if ! end iteration loop end do if (mp_mpi) then write(60,*) write(60,'("Occupation number minimisation done")') write(61,*) if (spinpol) write(63,*) end if end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmvaryn.f900000644000000000000000000000013214061636517015106 xustar0030 mtime=1623670095.734101732 30 atime=1623670094.569102813 30 ctime=1623670095.734101732 elk-7.2.42/src/rdmvaryn.f900000644002504400250440000000732614061636517017153 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdmvaryn ! !INTERFACE: subroutine rdmvaryn ! !USES: use modmain use modrdm use modmpi ! !DESCRIPTION: ! Calculates new occupation numbers from old by using the derivatives of the ! total energy: $n_i^{\rm new} = n_i^{\rm old}-\tau \gamma_i$, where $\tau$ is ! chosen such that $0 \le n_i \le n_{\rm max}$ with ! $$ \gamma_i=\begin{cases} ! g_i(n_{\rm max}-n_i) & g_i > 0 \\ ! g_i n_i & g_i\le 0 \end{cases} $$ ! where $g_i=\partial E/\partial n_i-\kappa$, and $\kappa$ is chosen such that ! $\sum_i\gamma_i=0$. ! ! !REVISION HISTORY: ! Created 2009 (JKD,Sharma) !EOP !BOC implicit none ! local variables integer, parameter :: maxit=10000 integer it,ik,ist real(8), parameter :: eps=1.d-12 real(8) tau,sm,gs,gsp,dgs real(8) kapa,dkapa,t1 ! allocatable arrays real(8), allocatable :: dedn(:,:),gamma(:,:) ! add constant to occupancies for charge conservation sm=0.d0 do ik=1,nkpt do ist=1,nstsv sm=sm+wkpt(ik)*occsv(ist,ik) end do end do t1=(chgval-sm)/dble(nstsv) occsv(:,:)=occsv(:,:)+t1 ! redistribute charge so that occupancies are in the interval [0,occmax] sm=0.d0 do ik=1,nkpt do ist=1,nstsv if (occsv(ist,ik).gt.occmax) then sm=sm+wkpt(ik)*(occsv(ist,ik)-occmax) occsv(ist,ik)=occmax end if if (occsv(ist,ik).lt.0.d0) then sm=sm+wkpt(ik)*occsv(ist,ik) occsv(ist,ik)=0.d0 end if end do end do do ist=1,nstsv do ik=1,nkpt if (sm.gt.0.d0) then t1=wkpt(ik)*(occmax-occsv(ist,ik)) t1=min(t1,sm) occsv(ist,ik)=occsv(ist,ik)+t1/wkpt(ik) sm=sm-t1 else t1=wkpt(ik)*occsv(ist,ik) t1=min(t1,-sm) occsv(ist,ik)=occsv(ist,ik)-t1/wkpt(ik) sm=sm+t1 end if end do end do allocate(dedn(nstsv,nkpt)) allocate(gamma(nstsv,nkpt)) ! get the derivatives call rdmdedn(dedn) ! find suitable value of kapa such that sum of gamma is 0 gsp=0.d0 kapa=0.d0 dkapa=0.1d0 do it=1,maxit gs=0.d0 sm=0.d0 do ik=1,nkpt do ist=1,nstsv t1=dedn(ist,ik)-kapa if (t1.gt.0.d0) then gamma(ist,ik)=t1*(occmax-occsv(ist,ik)) else gamma(ist,ik)=t1*occsv(ist,ik) end if gs=gs+wkpt(ik)*gamma(ist,ik) sm=sm+wkpt(ik)*gamma(ist,ik)**2 end do end do sm=sqrt(sm) sm=max(sm,1.d0) t1=abs(gs)/sm if (t1.lt.eps) goto 10 if (it.ge.2) then dgs=gs-gsp if (gs*dgs.gt.0.d0) dkapa=-dkapa if (gs*gsp.lt.0.d0) then dkapa=0.5d0*dkapa else dkapa=1.1d0*dkapa end if end if gsp=gs kapa=kapa+dkapa end do write(*,*) write(*,'("Error(rdmvaryn): could not find offset")') write(*,*) stop 10 continue ! write derivatives and occupancies to file call rdmwritededn(dedn) deallocate(dedn) ! normalize gamma if sum of squares is greater than 1 sm=0.d0 do ik=1,nkpt do ist=1,nstsv sm=sm+wkpt(ik)*gamma(ist,ik)**2 end do end do if (sm.gt.1.d0) then t1=1.d0/sqrt(sm) gamma(:,:)=t1*gamma(:,:) end if ! find step size which keeps occupancies in the interval [0,occmax] tau=taurdmn 20 continue if (abs(tau).lt.eps) goto 30 do ik=1,nkpt do ist=1,nstsv t1=occsv(ist,ik)+tau*gamma(ist,ik) if (gamma(ist,ik).gt.0.d0) then if (t1.gt.occmax+eps) then tau=0.75d0*tau goto 20 end if end if if (gamma(ist,ik).lt.0.d0) then if (t1.lt.-eps) then tau=0.75d0*tau goto 20 end if end if end do end do 30 continue ! update occupancies and write to file do ik=1,nkpt do ist=1,nstsv occsv(ist,ik)=occsv(ist,ik)+tau*gamma(ist,ik) end do call putoccsv(filext,ik,occsv(:,ik)) end do deallocate(gamma) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdedn.f900000644000000000000000000000013014061636517014657 xustar0029 mtime=1623670095.73610173 30 atime=1623670094.571102811 29 ctime=1623670095.73610173 elk-7.2.42/src/rdmdedn.f900000644002504400250440000000265714061636517016730 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmdedn ! !INTERFACE: subroutine rdmdedn(dedn) ! !USES: use modmain use modrdm use modomp ! !INPUT/OUTPUT PARAMETERS: ! dedn : free energy derivative (out,real(nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the negative of the derivative of total free energy w.r.t. ! occupation numbers. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments real(8), intent(out) :: dedn(nstsv,nkpt) ! local variables integer ik,ist,nthd ! allocatable arrays complex(8), allocatable :: evecsv(:,:),c(:,:) call holdthd(nkpt,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecsv,c,ist) & !$OMP NUM_THREADS(nthd) allocate(evecsv(nstsv,nstsv),c(nstsv,nstsv)) !$OMP DO do ik=1,nkpt ! get eigenvectors from file call getevecsv(filext,ik,vkl(:,ik),evecsv) ! kinetic and Coulomb potential contribution call zgemm('C','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,dkdc(:,:,ik),nstsv, & zzero,c,nstsv) do ist=1,nstsv dedn(ist,ik)=-(dble(c(ist,ist))+dble(vclmat(ist,ist,ik))) end do end do !$OMP END DO deallocate(evecsv,c) !$OMP END PARALLEL call freethd(nthd) ! add exchange correlation contribution call rdmdexcdn(dedn) ! add entropic contribution if needed if (rdmtemp.gt.0.d0) call rdmdtsdn(dedn) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdexcdn.f900000644000000000000000000000013114061636517015213 xustar0030 mtime=1623670095.737101729 29 atime=1623670094.57210281 30 ctime=1623670095.737101729 elk-7.2.42/src/rdmdexcdn.f900000644002504400250440000000420414061636517017251 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmdexcdn ! !INTERFACE: subroutine rdmdexcdn(dedn) ! !USES: use modmain use modrdm ! !INPUT/OUTPUT PARAMETERS: ! dedn : energy derivative (inout,real(nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the derivative of the exchange-correlation energy w.r.t. ! occupation numbers and adds the result to the total. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments real(8), intent(inout) :: dedn(nstsv,nkpt) ! local variables integer ik1,ik2,jk,iv(3) integer ist1,ist2 ! parameter for calculating the functional derivatives real(8), parameter :: eps=1.d-12 real(8) t1,t2,t3,t4 ! allocatable arays real(8), allocatable :: vclijji(:,:,:) if (rdmxctype.eq.0) return ! calculate the prefactor if (rdmxctype.eq.1) then t1=1.d0/occmax ! power functional else if (rdmxctype.eq.2) then if (spinpol) then t1=rdmalpha else t1=2.d0*rdmalpha*(0.25d0)**rdmalpha end if else write(*,*) write(*,'("Error(rdmdexcdn): rdmxctype not defined : ",I8)') rdmxctype write(*,*) stop end if allocate(vclijji(nstsv,nstsv,nkpt)) ! start loop over non-reduced k-points do ik1=1,nkptnr ! get the Coulomb matrix elements call getvclijji(ik1,vclijji) ! find the equivalent reduced k-point iv(:)=ivk(:,ik1) jk=ivkik(iv(1),iv(2),iv(3)) ! loop over reduced k-points do ik2=1,nkpt do ist1=1,nstsv do ist2=1,nstsv ! Hartree-Fock functional if (rdmxctype.eq.1) then t2=t1*occsv(ist1,jk) ! power functional else if (rdmxctype.eq.2) then t3=sum(abs(vkl(:,ik2)-vkl(:,ik1))) if ((ist2.eq.ist1).and.(t3.lt.epslat)) then t2=(1.d0/occmax)*occsv(ist1,jk) else t3=max(occsv(ist2,ik2),eps) t4=max(occsv(ist1,jk),eps) t2=t1*(t4**rdmalpha)/(t3**(1.d0-rdmalpha)) end if end if dedn(ist2,ik2)=dedn(ist2,ik2)+t2*vclijji(ist2,ist1,ik2) end do end do end do end do deallocate(vclijji) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/genvclijjk.f900000644000000000000000000000013214061636517015372 xustar0030 mtime=1623670095.739101727 30 atime=1623670094.574102808 30 ctime=1623670095.739101727 elk-7.2.42/src/genvclijjk.f900000644002504400250440000001151614061636517017433 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genvclijjk ! !INTERFACE: subroutine genvclijjk(ikp,vclijjk) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ikp : k-point from non-reduced set (in,integer) ! vclijjk : Coulomb matrix elements (out,complex(nstsv,nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Calculates Coulomb matrix elements of the type $(i-jj-k)$. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: ikp complex(8), intent(out) :: vclijjk(nstsv,nstsv,nstsv,nkpt) ! local variables integer ik,ist1,ist2,ist3 integer iv(3),iq,ig real(8) vc(3) complex(8) z1 ! automatic arrays integer idx(nstsv) ! allocatable arrays real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: zrhomt(:,:,:),zrhoir(:,:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) ! external functions complex(8), external :: zfinp ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot,nstsv),zrhoir(ngtc,nstsv)) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) ! get the eigenvectors from file for non-reduced k-point ikp call getevecfv(filext,0,vkl(:,ikp),vgkl(:,:,1,ikp),evecfv) call getevecsv(filext,0,vkl(:,ikp),evecsv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of passed non-reduced k-point ikp call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) ! start loop over reduced k-point set do ik=1,nkpt ! determine the q-vector iv(:)=ivk(:,ik)-ivk(:,ikp) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vc(:)=vkc(:,ik)-vkc(:,ikp) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! calculate the wavefunctions for all states of the reduced k-point call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt1,ngtc,wfir1) !----------------------------------------------! ! valence-valence-valence contribution ! !----------------------------------------------! do ist2=1,nstsv do ist1=1,nstsv ! calculate the complex overlap density for all states call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist2),wfir2(:,:,ist2), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt(:,:,ist1),zrhoir(:,ist1)) end do do ist1=1,nstsv ! compute the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax, & zrhomt(:,:,ist1),zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc, & gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir(:,ist1),npcmtmax,zvclmt, & zvclir) zvclir(:)=zvclir(:)*cfrc(:) do ist3=ist1,nstsv z1=zfinp(zrhomt(:,:,ist3),zrhoir(:,ist3),zvclmt,zvclir) vclijjk(ist3,ist1,ist2,ik)=wqptnr*z1 end do end do end do ! calculate the lower diagonal do ist1=1,nstsv do ist3=1,ist1-1 vclijjk(ist3,ist1,:,ik)=conjg(vclijjk(ist1,ist3,:,ik)) end do end do ! end loop over reduced k-point set end do deallocate(vgqc,gqc,gclgq,jlgqrmt) deallocate(apwalm,evecfv,evecsv,ylmgq,sfacgq) deallocate(wfmt1,wfmt2,wfir1,wfir2) deallocate(zrhomt,zrhoir,zvclmt,zvclir) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/getvclijji.f900000644000000000000000000000013214061636517015376 xustar0030 mtime=1623670095.740101726 30 atime=1623670094.576102806 30 ctime=1623670095.740101726 elk-7.2.42/src/getvclijji.f900000644002504400250440000000172014061636517017433 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: getvclijji ! !INTERFACE: subroutine getvclijji(ikp,vclijji) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ikp : k-point from non-reduced set (in,integer) ! vclijji : Coulomb matrix elements (out,real(nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Retrieves Coulomb matrix elements of the type $(i-jj-i)$ from the file ! {\tt VCLIJJI.OUT}. ! ! !REVISION HISTORY: ! Created 2009 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: ikp real(8), intent(out) :: vclijji(nstsv,nstsv,nkpt) ! local variables integer recl ! determine record length inquire(iolength=recl) vclijji !$OMP CRITICAL(u260) open(260,file='VCLIJJI.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(260,rec=ikp) vclijji !$OMP END CRITICAL(u260) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/getvclijjk.f900000644000000000000000000000013214061636517015400 xustar0030 mtime=1623670095.742101724 30 atime=1623670094.577102806 30 ctime=1623670095.742101724 elk-7.2.42/src/getvclijjk.f900000644002504400250440000000174214061636517017441 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: getvclijjk ! !INTERFACE: subroutine getvclijjk(ikp,vclijjk) ! !USES: use modmain ! !INPUT/OUTPUT PARAMETERS: ! ikp : k-point from non-reduced set (in,integer) ! vclijjk : Coulomb matrix elements (out,complex(nstsv,nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Retrieves Coulomb matrix elements of the type $(i-jj-k)$ from the file ! {\tt VCLIJJK.OUT}. ! ! !REVISION HISTORY: ! Created 2009 (Sharma) !EOP !BOC implicit none ! arguments integer, intent(in) :: ikp complex(8), intent(out) :: vclijjk(nstsv,nstsv,nstsv,nkpt) ! local variables integer recl ! determine record length inquire(iolength=recl) vclijjk !$OMP CRITICAL(u262) open(262,file='VCLIJJK.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(262,rec=ikp) vclijjk !$OMP END CRITICAL(u262) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writevclijji.f900000644000000000000000000000013214061636517015751 xustar0030 mtime=1623670095.743101723 30 atime=1623670094.579102804 30 ctime=1623670095.743101723 elk-7.2.42/src/writevclijji.f900000644002504400250440000000275714061636517020021 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writevclijji ! !INTERFACE: subroutine writevclijji ! !USES: use modmain use modmpi use modomp ! !DESCRIPTION: ! Generates Coulomb matrix elements of the type $(i-jj-i)$ and outputs them to ! the file {\tt VCLIJJI.OUT}. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! allocatable arrays real(8), allocatable :: vclijji(:,:,:) integer recl,ik,nthd ! determine record length for vclijji and open file allocate(vclijji(nstsv,nstsv,nkpt)) inquire(iolength=recl) vclijji deallocate(vclijji) open(260,file='VCLIJJI.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(vclijji) & !$OMP NUM_THREADS(nthd) allocate(vclijji(nstsv,nstsv,nkpt)) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(writevclijji_) write(*,'("Info(writevclijji): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(writevclijji_) ! calculate Coulomb matrix elements of the type (i-jj-i) call genvclijji(ik,vclijji) !$OMP CRITICAL(u260) write(260,rec=ik) vclijji !$OMP END CRITICAL(u260) end do !$OMP END DO deallocate(vclijji) !$OMP END PARALLEL call freethd(nthd) close(260) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writevclijjk.f900000644000000000000000000000013214061636517015753 xustar0030 mtime=1623670095.745101721 30 atime=1623670094.581102802 30 ctime=1623670095.745101721 elk-7.2.42/src/writevclijjk.f900000644002504400250440000000414314061636517020012 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: writevclijjk ! !INTERFACE: subroutine writevclijjk ! !USES: use modmain use modmpi use modomp ! !DESCRIPTION: ! Generates Coulomb matrix elements of the type $(i-jj-k)$ and outputs them to ! the file {\tt VCLIJJK.OUT}. Also writes the real diagonal of this matrix, ! $(i-jj-i)$, to {\tt VCLIJJI.OUT}. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! local variables integer ik,ist,recl,nthd ! allocatable arrays real(8), allocatable :: vclijji(:,:,:) complex(8), allocatable :: vclijjk(:,:,:,:) ! determine record length for vclijji and open file allocate(vclijji(nstsv,nstsv,nkpt)) inquire(iolength=recl) vclijji deallocate(vclijji) open(260,file='VCLIJJI.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) ! determine record length for vclijjk and open file allocate(vclijjk(nstsv,nstsv,nstsv,nkpt)) inquire(iolength=recl) vclijjk deallocate(vclijjk) open(262,file='VCLIJJK.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(vclijji,vclijjk,ist) & !$OMP NUM_THREADS(nthd) allocate(vclijji(nstsv,nstsv,nkpt),vclijjk(nstsv,nstsv,nstsv,nkpt)) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(writevclijjk_) write(*,'("Info(writevclijjk): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(writevclijjk_) ! calculate Coulomb matrix elements of the type (i-jj-k) call genvclijjk(ik,vclijjk) ! make a copy of the diagonal elements (i-jj-i) do ist=1,nstsv vclijji(ist,:,:)=dble(vclijjk(ist,ist,:,:)) end do !$OMP CRITICAL(u260) write(260,rec=ik) vclijji !$OMP END CRITICAL(u260) !$OMP CRITICAL(u262) write(262,rec=ik) vclijjk !$OMP END CRITICAL(u262) end do !$OMP END DO deallocate(vclijji,vclijjk) !$OMP END PARALLEL call freethd(nthd) close(260) close(262) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdexcdc.f900000644000000000000000000000013214061636517015201 xustar0030 mtime=1623670095.746101721 30 atime=1623670094.582102801 30 ctime=1623670095.746101721 elk-7.2.42/src/rdmdexcdc.f900000644002504400250440000000464014061636517017242 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmdexcdc ! !INTERFACE: subroutine rdmdexcdc(dedc) ! !USES: use modmain use modrdm ! !INPUT/OUTPUT PARAMETERS: ! dedc : energy derivative (inout,complex(nstsv,nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the derivative of the exchange-correlation energy w.r.t. ! {\tt evecsv} and adds the result to the total. ! ! !REVISION HISTORY: ! Created 2008 (Sharma) !EOP !BOC implicit none ! arguments complex(8), intent(inout) :: dedc(nstsv,nstsv,nkpt) ! local variables integer ik1,ik2,jk,iv(3) integer ist1,ist2,ist3,ist4 real(8) t1,t2,t3 ! allocatable arrays complex(8), allocatable :: vclijjk(:,:,:,:),evecsv(:,:) if (rdmxctype.eq.0) return ! calculate the prefactor if (rdmxctype.eq.1) then ! Hartree-Fock functional t1=1.d0/occmax else if (rdmxctype.eq.2) then ! power functional if (spinpol) then t1=1.d0 else t1=2.d0*(0.25d0)**rdmalpha end if else write(*,*) write(*,'("Error(rdmdexcdc): rdmxctype not defined : ",I8)') rdmxctype write(*,*) stop end if allocate(vclijjk(nstsv,nstsv,nstsv,nkpt)) allocate(evecsv(nstsv,nstsv)) ! start loop over non-reduced k-points do ik1=1,nkptnr ! get the Coulomb matrix elements call getvclijjk(ik1,vclijjk) ! find the equivalent reduced k-point iv(:)=ivk(:,ik1) jk=ivkik(iv(1),iv(2),iv(3)) ! start loop over reduced k-points do ik2=1,nkpt ! get the eigenvectors from file call getevecsv(filext,ik2,vkl(:,ik2),evecsv) do ist4=1,nstsv do ist3=1,nstsv do ist2=1,nstsv do ist1=1,nstsv if (rdmxctype.eq.1) then ! Hartree-Fock functional t2=t1*occsv(ist3,ik2)*occsv(ist4,jk) else if (rdmxctype.eq.2) then ! power functional t3=sum(abs(vkl(:,ik2)-vkl(:,ik1))) if ((ist3.eq.ist4).and.(t3.lt.epslat)) then t2=(1.d0/occmax)*occsv(ist4,jk)**2 else t2=t1*(occsv(ist3,ik2)*occsv(ist4,jk))**rdmalpha end if end if dedc(ist2,ist3,ik2)=dedc(ist2,ist3,ik2)-t2*evecsv(ist2,ist1)* & vclijjk(ist1,ist3,ist4,ik2) end do end do end do end do ! end loop over reduced k-points end do ! end loop over non-reduced k-points end do deallocate(vclijjk,evecsv) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmdtsdn.f900000644000000000000000000000013014061636517015061 xustar0029 mtime=1623670095.74710172 30 atime=1623670094.584102799 29 ctime=1623670095.74710172 elk-7.2.42/src/rdmdtsdn.f900000644002504400250440000000162414061636517017123 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 T. Baldsiefen, S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU Lesser General Public ! License. See the file COPYING for license details. !BOP ! !ROUTINE: rdmdtsdn ! !INTERFACE: subroutine rdmdtsdn(dedn) ! !USES: use modmain use modrdm ! !INPUT/OUTPUT PARAMETERS: ! dedn : energy derivative (inout,real(nstsv,nkpt)) ! !DESCRIPTION: ! Calculates the derivative of the entropic contribution to the free energy ! w.r.t. occupation numbers and adds it to the total. ! ! !REVISION HISTORY: ! Created 2008 (Baldsiefen) !EOP !BOC implicit none ! arguments real(8), intent(inout) :: dedn(nstsv,nkpt) ! local variables integer ik,ist real(8) t1 do ik=1,nkpt do ist=1,nstsv t1=max(occsv(ist,ik),epsocc) t1=min(t1,occmax-epsocc) dedn(ist,ik)=dedn(ist,ik)-rdmtemp*kboltz*log(t1/(occmax-t1)) end do end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmentropy.f900000644000000000000000000000013214061636517015447 xustar0030 mtime=1623670095.749101718 30 atime=1623670094.586102797 30 ctime=1623670095.749101718 elk-7.2.42/src/rdmentropy.f900000644002504400250440000000156014061636517017506 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2008 T. Baldsiefen, S. Sharma, J. K. Dewhurst and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. !BOP ! !ROUTINE: rdmentropy ! !INTERFACE: subroutine rdmentropy ! !USES: use modmain use modrdm ! !DESCRIPTION: ! Calculates RDMFT entropy $S=-\sum_i n_i\log(n_i/n_{\rm max}) ! +(n_{\rm max}-n_i)\log(1-n_i/n_{\rm max})$, where $n_{\rm max}$ is the ! maximum allowed occupancy (1 or 2). ! ! !REVISION HISTORY: ! Created 2008 (Baldsiefen) !EOP !BOC implicit none ! local variables integer ik,ist real(8) t1 rdmentrpy=0.d0 do ik=1,nkpt do ist=1,nstsv t1=max(occsv(ist,ik),epsocc) t1=min(t1,occmax-epsocc) rdmentrpy=rdmentrpy-wkpt(ik)*(t1*log(t1/occmax) & +(occmax-t1)*log(1.d0-t1/occmax)) end do end do rdmentrpy=kboltz*rdmentrpy end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/rdmeval.f900000644000000000000000000000013214061636517014676 xustar0030 mtime=1623670095.750101717 30 atime=1623670094.587102796 30 ctime=1623670095.750101717 elk-7.2.42/src/rdmeval.f900000644002504400250440000000165014061636517016735 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007-2008 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: rdmeval ! !INTERFACE: subroutine rdmeval ! !USES: use modmain use modrdm ! !DESCRIPTION: ! RDMFT eigenvalues are determined by calculating the derivative of the total ! energy with respect to the occupation number at half the maximum occupancy ! ($n_{\rm max}/2$). ! ! !REVISION HISTORY: ! Created 2009 (Sharma) !EOP !BOC implicit none ! local variables integer ik,ist real(8) t1 ! allocatable arrays real(8), allocatable :: dedn(:,:) allocate(dedn(nstsv,nkpt)) do ik=1,nkpt do ist=1,nstsv t1=occsv(ist,ik) occsv(ist,ik)=occmax/2.d0 call rdmdedn(dedn) evalsv(ist,ik)=-dedn(ist,ik) occsv(ist,ik)=t1 end do call putevalsv(filext,ik,evalsv(:,ik)) end do deallocate(dedn) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/gwdmat.f900000644000000000000000000000013214061636517014527 xustar0030 mtime=1623670095.752101715 30 atime=1623670094.589102794 30 ctime=1623670095.752101715 elk-7.2.42/src/gwdmat.f900000644002504400250440000000231214061636517016562 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gwdmat use modmain use modgw use modmpi use modomp implicit none ! local variables integer ik,nthd ! initialise universal variables call init0 call init1 call init3 ! read Fermi energy from file call readfermi ! get the eigenvalues from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do ! determine the GW Fermi energy call gwefermi ! compute the GW density matrices and write the natural orbitals and occupation ! numbers to EVECSV.OUT and OCCSV.OUT, respectively call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call gwdmatk(ik) end do !$OMP END PARALLEL DO call freethd(nthd) if (mp_mpi) then write(*,*) write(*,'("Info(gwdmat):")') write(*,'(" GW density matrices determined for each k-point")') write(*,*) write(*,'(" Natural orbitals and occupation numbers written to")') write(*,'(" EVECSV.OUT and OCCSV.OUT, respectively")') end if end subroutine elk-7.2.42/src/PaxHeaders.21776/gwlocal.f900000644000000000000000000000013214061636517014674 xustar0030 mtime=1623670095.753101714 30 atime=1623670094.591102793 30 ctime=1623670095.753101714 elk-7.2.42/src/gwlocal.f900000644002504400250440000000301314061636517016726 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwlocal(vmt,vir,bmt,bir) use modmain implicit none ! arguments real(8), intent(out) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(out) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) ! local variables integer idm,is,ias integer nrc,nrci,npc ! automatic arrays real(8) rfmt(npcmtmax) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) ! convert exchange-correlation potential to a coarse radial mesh call rfmtftoc(nrc,nrci,vxcmt(:,ias),rfmt) ! negate because V_xc should be removed from the self-energy rfmt(1:npc)=-rfmt(1:npc) ! convert to spherical coordinates call rbsht(nrc,nrci,rfmt,vmt(:,ias)) ! multiply by radial integration weights call rfcmtwr(nrc,nrci,wrcmt(:,is),vmt(:,ias)) end do ! negate and multiply the interstitial V_xc by the characteristic function vir(:)=-vxcir(:)*cfunir(:) ! do the same for B_xc in the spin-polarised case if (spinpol) then do idm=1,ndmag do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) call rfmtftoc(nrc,nrci,bxcmt(:,ias,idm),rfmt) rfmt(1:npc)=-rfmt(1:npc) call rbsht(nrc,nrci,rfmt,bmt(:,ias,idm)) call rfcmtwr(nrc,nrci,wrcmt(:,is),bmt(:,ias,idm)) end do end do do idm=1,ndmag bir(:,idm)=-bxcir(:,idm)*cfunir(:) end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genwgw.f900000644000000000000000000000013214061636517014542 xustar0030 mtime=1623670095.755101712 30 atime=1623670094.592102792 30 ctime=1623670095.755101712 elk-7.2.42/src/genwgw.f900000644002504400250440000000326414061636517016604 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine genwgw use modmain use modgw implicit none ! local variables integer ik,iw,jw,n real(8) de,t0,t1 t0=kboltz*tempk if (wmaxgw.le.0.d0) then ! read the Fermi energy from file call readfermi ! find the maximum eigenvalue range over all k-points do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do de=maxval(abs(evalsv(:,:)-efermi)) wmaxgw=abs(wmaxgw)*de end if ! number of Matsubara frequencies t1=pi*t0 nwgw=2*nint(wmaxgw/t1) nwgw=max(nwgw,2) call nfftifc(3,nwgw) ! determine integer ranges for grid intwgw(1)=nwgw/2-nwgw+1 intwgw(2)=nwgw/2 if (allocated(iwfft)) deallocate(iwfft) allocate(iwfft(intwgw(1):intwgw(2))) if (allocated(wgw)) deallocate(wgw) allocate(wgw(intwgw(1):intwgw(2))) do iw=intwgw(1),intwgw(2) if (iw.ge.0) then jw=iw else jw=nwgw+iw end if iwfft(iw)=jw+1 wgw(iw)=dble(iw)*t1 end do n=minval(abs(intwgw(:))) if (n.eq.0) then write(*,*) write(*,'("Error(genwgw): not enough Matsubara frequencies")') write(*,'("Increase wmaxgw")') write(*,*) stop end if if (mod(n,2).eq.0) then nwbs=n nwfm=n-1 else nwfm=n nwbs=n-1 end if ! store the complex fermionic frequencies if (allocated(wfm)) deallocate(wfm) allocate(wfm(0:nwfm)) do iw=-nwfm,nwfm,2 jw=(iw+nwfm)/2 wfm(jw)=cmplx(0.d0,wgw(iw),8) end do ! store the complex response function frequencies nwrf=nwbs+1 if (allocated(wrf)) deallocate(wrf) allocate(wrf(nwrf)) do iw=-nwbs,nwbs,2 jw=(iw+nwbs)/2+1 wrf(jw)=cmplx(0.d0,wgw(iw),8) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/ksinvert.f900000644000000000000000000000013114061636517015110 xustar0030 mtime=1623670095.756101711 29 atime=1623670094.59410279 30 ctime=1623670095.756101711 elk-7.2.42/src/ksinvert.f900000644002504400250440000000505014061636517017146 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 P. Elliott, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine ksinvert use modmain use modmpi implicit none ! local variables integer idm,it real(8) tau ! allocatable arrays real(8), allocatable :: rhomt_(:,:),rhoir_(:) real(8), allocatable :: magmt_(:,:,:),magir_(:,:) real(8), allocatable :: rfmt(:,:),rfir(:) ! copy the existing density and magnetisation allocate(rhomt_(npmtmax,natmtot),rhoir_(ngtot)) call rfcopy(rhomt,rhoir,rhomt_,rhoir_) allocate(rfmt(npmtmax,natmtot),rfir(ngtot)) if (spinpol) then allocate(magmt_(npmtmax,natmtot,ndmag),magir_(ngtot,ndmag)) do idm=1,ndmag call rfcopy(magmt(:,:,idm),magir(:,idm),magmt_(:,:,idm),magir_(:,idm)) end do end if ! initialise the exchange-correlation potential and magnetic field tau=tauoep(2) vxcmt(:,:)=tau*vxcmt(:,:) vxcir(:)=tau*vxcir(:) if (spinpol) then bxcmt(:,:,:)=tau*bxcmt(:,:,:) bxcir(:,:)=tau*bxcir(:,:) end if ! iterative method step size tau=tauoep(1) if (mp_mpi) then write(*,*) write(*,'("Info(ksinvert): inverting the Kohn-Sham equations")') end if do it=1,maxitoep if (mp_mpi.and.(mod(it,10).eq.0)) then write(*,'("Info(ksinvert): done ",I4," iterations of ",I4)') it,maxitoep end if call hmlrad call genevfsv call occupy call rhomag ! determine the residual and add it to the exchange-correlation potential call residual ! set the constant part of V_xc equal to zero call rfint0(0.d0,vxcmt,vxcir) ! add the external and Hartree potentials call potks(.false.) call genvsig end do deallocate(rhomt_,rhoir_,rfmt,rfir) if (spinpol) deallocate(magmt_,magir_) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) return contains subroutine residual implicit none ! local variables integer is,ias,np ! external functions real(8), external :: rfinp do ias=1,natmtot is=idxis(ias) np=npmt(is) rfmt(1:np,ias)=rhomt(1:np,ias)-rhomt_(1:np,ias) call daxpy(np,tau,rfmt(:,ias),1,vxcmt(:,ias),1) end do rfir(:)=rhoir(:)-rhoir_(:) call daxpy(ngtot,tau,rfir,1,vxcir,1) resoep=rfinp(rfmt,rfir,rfmt,rfir) if (spinpol) then do idm=1,ndmag do ias=1,natmtot is=idxis(ias) np=npmt(is) rfmt(1:np,ias)=magmt(1:np,ias,idm)-magmt_(1:np,ias,idm) call daxpy(np,tau,rfmt(:,ias),1,bxcmt(:,ias,idm),1) end do rfir(:)=magir(:,idm)-magir_(:,idm) call daxpy(ngtot,tau,rfir,1,bxcir(:,idm),1) resoep=resoep+rfinp(rfmt,rfir,rfmt,rfir) end do end if resoep=sqrt(resoep)/omega end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/gtwsum.f900000644000000000000000000000013214061636517014572 xustar0030 mtime=1623670095.758101709 30 atime=1623670094.596102788 30 ctime=1623670095.758101709 elk-7.2.42/src/gtwsum.f900000644002504400250440000000105014061636517016623 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 A. Davydov, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure complex(8) function gtwsum(gf,gl) use modmain use modgw implicit none ! arguments complex(8), intent(in) :: gf,gl ! local variables integer iw real(8) b complex(8) a1,a2,z1 z1=wfm(0) a1=0.5d0*(gf-gl)*z1 a2=0.5d0*(gf+gl)*z1**2 b=1.d0/(kboltz*tempk) gtwsum=b*(0.5d0*a1-0.25d0*b*a2) do iw=0,nwfm gtwsum=gtwsum-a2/wfm(iw)**2 end do end function elk-7.2.42/src/PaxHeaders.21776/minf_nm.f900000644000000000000000000000013214061636517014667 xustar0030 mtime=1623670095.759101709 30 atime=1623670094.598102786 30 ctime=1623670095.759101709 elk-7.2.42/src/minf_nm.f900000644002504400250440000000403414061636517016725 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2007 J. K. Dewhurst and D. W. H. Rankin. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine minf_nm(id,rd,n,x,maxit,iter,eps) implicit none ! arguments integer, intent(in) :: id(*) real(8), intent(in) :: rd(*) integer, intent(in) :: n real(8), intent(inout) :: x(n,n+1) integer, intent(in) :: maxit integer, intent(out) :: iter real(8), intent(in) :: eps ! local variables integer i,j,il,iu ! Nelder-Mead parmeters real(8), parameter :: alpha=1.d0,gamma=2.d0 real(8), parameter :: beta=0.5d0,sigma=0.5d0 real(8) fr,fe,fc,sm,t1 ! automatic arrays real(8) f(n+1),xm(n),xr(n),xe(n),xc(n) ! external functions real(8), external :: fmin_nm if (n.lt.0) then write(*,*) write(*,'("Error(minf_nm): n <= 0 : ",I8)') n write(*,*) stop end if ! evaluate the function at each vertex do i=1,n+1 f(i)=fmin_nm(id,rd,x(:,i)) end do iter=0 10 continue iter=iter+1 if (iter.ge.maxit) return ! find the lowest and highest vertex il=1 iu=1 do i=2,n+1 if (f(i).lt.f(il)) il=i if (f(i).gt.f(iu)) iu=i end do ! check for convergence if ((f(iu)-f(il)).lt.eps) return ! compute the mean of the n lowest vertices t1=1.d0/dble(n) do i=1,n sm=0.d0 do j=1,iu-1 sm=sm+x(i,j) end do do j=iu+1,n+1 sm=sm+x(i,j) end do xm(i)=t1*sm end do xr(:)=xm(:)+alpha*(xm(:)-x(:,iu)) fr=fmin_nm(id,rd,xr) if (f(il).gt.fr) goto 30 if ((f(il).le.fr).and.(fr.lt.f(iu))) then ! reflection x(:,iu)=xr(:) f(iu)=fr goto 10 else goto 40 end if 30 continue xe(:)=xm(:)+gamma*(xr(:)-xm(:)) fe=fmin_nm(id,rd,xe) if (fr.gt.fe) then ! expansion x(:,iu)=xe(:) f(iu)=fe else ! reflection x(:,iu)=xr(:) f(iu)=fr end if goto 10 40 continue xc(:)=xm(:)+beta*(x(:,iu)-xm(:)) fc=fmin_nm(id,rd,xc) if (fc.lt.f(iu)) then ! contraction x(:,iu)=xc(:) f(iu)=fc goto 10 end if ! shrinkage do j=1,il-1 x(:,j)=x(:,il)+sigma*(x(:,j)-x(:,il)) f(j)=fmin_nm(id,rd,x(1,j)) end do do j=il+1,n+1 x(:,j)=x(:,il)+sigma*(x(:,j)-x(:,il)) f(j)=fmin_nm(id,rd,x(1,j)) end do goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/acpole.f900000644000000000000000000000013214061636517014507 xustar0030 mtime=1623670095.761101707 30 atime=1623670094.599102785 30 ctime=1623670095.761101707 elk-7.2.42/src/acpole.f900000644002504400250440000000263014061636517016545 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine acpole(zm,zwr,zr) use modmain use modgw implicit none ! arguments complex(8), intent(in) :: zm(0:nwfm),zwr(nwplot) complex(8), intent(out) :: zr(nwplot) ! local variables integer, parameter :: maxit=1000 integer iter,iw integer n,n2,i,j real(8), parameter :: eps=1.d-5 ! allocatable arrays real(8), allocatable :: x(:,:) ! external functions complex(8), external :: zfpole n=2*npole+1 n2=2*n allocate(x(n2,n2+1)) ! intialise simplex x(:,:)=0.d0 ! fit the constant x(1,2)=0.5d0 x(2,3)=0.5d0 call minf_nm(1,zm,n2,x,maxit,iter,eps) ! fit the constant and the first pole x(3,1)=1.d0 do i=1,6 x(i,i+1)=x(i,1)+0.1d0 end do call minf_nm(1,zm,n2,x,maxit,iter,eps) ! fit the remaining poles one-by-one i=7 do j=2,npole x(i,1)=1.d0 x(i,i+1)=x(i,1)+0.1d0 i=i+1 x(i,i+1)=0.1d0 i=i+1 x(i,i+1)=0.1d0 i=i+1 x(i,i+1)=0.1d0 i=i+1 call minf_nm(1,zm,n2,x,maxit,iter,eps) end do ! fit the constant and the first pole again do i=1,6 x(i,i+1)=x(i,1)+0.1d0 end do call minf_nm(1,zm,n2,x,maxit,iter,eps) ! fit everything together if (npole.gt.1) then do i=1,n2 x(i,i+1)=x(i,1)+0.1d0 end do call minf_nm(1,zm,n2,x,maxit,iter,eps) end if do iw=1,nwplot zr(iw)=zfpole(x(:,1),zwr(iw)) end do deallocate(x) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwrhomag.f900000644000000000000000000000013214061636517015057 xustar0030 mtime=1623670095.762101706 30 atime=1623670094.601102783 30 ctime=1623670095.762101706 elk-7.2.42/src/gwrhomag.f900000644002504400250440000000152014061636517017112 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwrhomag use modmain use modgw use modmpi use modomp implicit none ! local variables integer ik,nthd ! compute the GW density matrices and write the natural orbitals and occupation ! numbers to EVECSV.OUT and OCCSV.OUT, respectively call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call gwdmatk(ik) end do !$OMP END PARALLEL DO call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! determine the density and magnetisation in the usual way call rhomag end subroutine elk-7.2.42/src/PaxHeaders.21776/gwdmatk.f900000644000000000000000000000013214061636517014702 xustar0030 mtime=1623670095.763101705 30 atime=1623670094.603102781 30 ctime=1623670095.763101705 elk-7.2.42/src/gwdmatk.f900000644002504400250440000000452414061636517016744 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gwdmatk(ik) use modmain use modgw implicit none ! arguments integer, intent(in) :: ik ! local variables integer ist,jst,iw real(8) e,t1 complex(8) z1 ! allocatable arrays complex(8), allocatable :: evecsv(:,:),se(:,:,:) complex(8), allocatable :: gs(:),g(:,:),gf(:,:),gl(:,:) complex(8), allocatable :: d(:,:),a(:,:) ! external functions complex(8), external :: gtwsum ! read the self-energy from file allocate(se(nstsv,nstsv,0:nwfm)) call getgwsefm(ik,se) ! allocate local arrays allocate(gs(nstsv),g(nstsv,nstsv)) allocate(gf(nstsv,nstsv),gl(nstsv,nstsv)) allocate(d(nstsv,nstsv)) ! zero the density matrix d(:,:)=0.d0 ! loop over fermionic Matsubara frequencies do iw=0,nwfm ! compute the diagonal matrix G_s do ist=1,nstsv e=evalsv(ist,ik)-efermi gs(ist)=1.d0/(wfm(iw)-e) end do ! compute 1 - G_s Sigma do ist=1,nstsv z1=-gs(ist) g(ist,:)=z1*se(ist,:,iw) g(ist,ist)=g(ist,ist)+1.d0 end do ! invert this matrix call zminv(nstsv,g) ! compute G = (1 - G_s Sigma)^(-1) G_s do jst=1,nstsv z1=gs(jst) g(:,jst)=g(:,jst)*z1 end do ! add to the density matrix d(:,:)=d(:,:)+g(:,:) ! store the Green's function at the first and last frequencies if (iw.eq.0) gf(:,:)=g(:,:) if (iw.eq.nwfm) gl(:,:)=g(:,:) end do ! add the Matsubara tails analytically do jst=1,nstsv do ist=1,nstsv d(ist,jst)=d(ist,jst)+gtwsum(gf(ist,jst),gl(ist,jst)) end do end do ! multiply by 1/beta t1=kboltz*tempk d(:,:)=t1*d(:,:) deallocate(se,gs,g,gf,gl) ! diagonalise the density matrix for the natural orbitals and occupation numbers call eveqnzh(nstsv,nstsv,d,occsv(:,ik)) occsv(:,ik)=occsv(:,ik)*occmax ! write the occupation numbers to file call putoccsv(filext,ik,occsv(:,ik)) ! get the second-variational eigenvectors from file allocate(evecsv(nstsv,nstsv)) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! apply unitary transformation to the third-variational states so that they ! refer to the first-variational basis allocate(a(nstsv,nstsv)) call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,d,nstsv,zzero,a,nstsv) ! write the density matrix to file as second-variational eigenvectors call putevecsv(filext,ik,a) deallocate(evecsv,d,a) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwefermi.f900000644000000000000000000000013114061636517015050 xustar0030 mtime=1623670095.765101703 29 atime=1623670094.60510278 30 ctime=1623670095.765101703 elk-7.2.42/src/gwefermi.f900000644002504400250440000000301014061636517017100 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 P. Elliott, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gwefermi use modmain use modgw use modmpi use modomp implicit none ! local variables integer, parameter :: maxit=1000 integer ik,ist,it,nthd real(8) e0,e1,e real(8) chg,chgk if (mp_mpi) then write(*,*) write(*,'("Info(gwefermi): finding the GW Fermi energy")') end if ! find minimum and maximum eigenvalues e0=evalsv(1,1) e1=e0 do ik=1,nkpt do ist=1,nstsv e=evalsv(ist,ik) if (e.lt.e0) e0=e if (e.gt.e1) e1=e end do end do do it=1,maxit if (mp_mpi.and.(mod(it,10).eq.0)) then write(*,'("Info(gwefermi): done ",I4," iterations")') it end if efermi=0.5d0*(e0+e1) chg=0.d0 ! begin parallel loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(chgk) REDUCTION(+:chg) & !$OMP NUM_THREADS(nthd) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call gwchgk(ik,chgk) chg=chg+chgk end do !$OMP END PARALLEL DO call freethd(nthd) ! add charge from each process and redistribute if (np_mpi.gt.1) then call mpi_allreduce(mpi_in_place,chg,1,mpi_double_precision,mpi_sum,mpicom, & ierror) end if if (chg.lt.chgval) then e0=efermi else e1=efermi end if if ((e1-e0).lt.1.d-12) return end do write(*,*) write(*,'("Warning(gwefermi): could not find GW Fermi energy")') end subroutine elk-7.2.42/src/PaxHeaders.21776/dysonr.f900000644000000000000000000000013214061636517014562 xustar0030 mtime=1623670095.766101702 30 atime=1623670094.606102779 30 ctime=1623670095.766101702 elk-7.2.42/src/dysonr.f900000644002504400250440000000355514061636517016627 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine dysonr(ik,wr,sem,sf) use modmain use modgw use modomp implicit none ! arguments integer, intent(in) :: ik real(8), intent(in) :: wr(nwplot) complex(8), intent(in) :: sem(nstsv,nstsv,0:nwfm) real(8), intent(out) :: sf(nwplot) ! local variables integer ist,jst,iw integer nthd real(8) w,e,sm,t1 complex(8) z1 ! allocatable arrays complex(8), allocatable :: ser(:,:,:),gs(:),g(:,:) allocate(ser(nstsv,nstsv,nwplot)) ser(:,:,:)=0.d0 call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ist) & !$OMP NUM_THREADS(nthd) do jst=1,nstsv do ist=1,nstsv if (tsediag.and.(ist.ne.jst)) cycle ! perform analytic continuation from the imaginary to the real axis call acgwse(ist,jst,sem,wr,ser) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! solve the Dyson equation for each frequency call holdthd(nwplot,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(gs,g,w,ist,jst) & !$OMP PRIVATE(e,t1,z1,sm) & !$OMP NUM_THREADS(nthd) allocate(gs(nstsv),g(nstsv,nstsv)) !$OMP DO do iw=1,nwplot w=wr(iw) ! compute the diagonal matrix G_s do ist=1,nstsv e=evalsv(ist,ik)-efermi t1=sign(swidth,e) gs(ist)=1.d0/cmplx(w-e,t1,8) end do ! compute 1 - G_s Sigma do ist=1,nstsv z1=-gs(ist) g(ist,:)=z1*ser(ist,:,iw) g(ist,ist)=g(ist,ist)+1.d0 end do ! invert this matrix call zminv(nstsv,g) ! compute G = (1 - G_s Sigma)^(-1) G_s do jst=1,nstsv z1=gs(jst) g(:,jst)=g(:,jst)*z1 end do ! determine the spectral function sm=0.d0 do ist=1,nstsv sm=sm+abs(aimag(g(ist,ist))) end do sf(iw)=sm*occmax/pi end do !$OMP END DO deallocate(gs,g) !$OMP END PARALLEL call freethd(nthd) deallocate(ser) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwsefm.f900000644000000000000000000000012614061636517014537 xustar0028 mtime=1623670095.7681017 30 atime=1623670094.608102777 28 ctime=1623670095.7681017 elk-7.2.42/src/gwsefm.f900000644002504400250440000000441714061636517016577 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwsefm use modmain use modgw use modmpi use modomp implicit none ! local variables integer ik,nthd ! allocatable arrays real(8), allocatable :: vmt(:,:),vir(:) real(8), allocatable :: bmt(:,:,:),bir(:,:) complex(8), allocatable :: se(:,:,:) ! initialise universal variables call init0 call init1 call init2 call init3 ! read density and potentials from file call readstate ! generate the core wavefunctions and densities call gencore ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! write the momentum matrix elements in the second-variational basis to file call genpmat ! generate the inverse dielectric function and write to file call epsinv ! compute the matrix elements of -V_xc and -B_xc allocate(vmt(npcmtmax,natmtot),vir(ngtot)) if (spinpol) then allocate(bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag)) end if call gwlocal(vmt,vir,bmt,bir) if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! loop over reduced k-point set call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(se) & !$OMP NUM_THREADS(nthd) allocate(se(nstsv,nstsv,0:nwfm)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(gwsefm_) write(*,'("Info(gwsefm): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(gwsefm_) ! determine the self-energy at the fermionic frequencies for current k-point call gwsefmk(ik,vmt,vir,bmt,bir,se) ! write the self-energy to file call putgwsefm(ik,se) end do !$OMP END DO deallocate(se) !$OMP END PARALLEL call freethd(nthd) if (mp_mpi) then write(*,*) write(*,'("Info(gwsefm): GW self-energy at the fermionic frequencies & &written to GWSEFM.OUT")') end if deallocate(vmt,vir) if (spinpol) deallocate(bmt,bir) end subroutine elk-7.2.42/src/PaxHeaders.21776/putgwsefm.f900000644000000000000000000000013214061636517015265 xustar0030 mtime=1623670095.769101699 30 atime=1623670094.609102776 30 ctime=1623670095.769101699 elk-7.2.42/src/putgwsefm.f900000644002504400250440000000121714061636517017323 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine putgwsefm(ik,se) use modmain use modgw implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: se(nstsv,nstsv,0:nwfm) ! local variables integer recl ! find the record length inquire(iolength=recl) vkl(:,ik),nstsv,nwfm,se !$OMP CRITICAL(u280) open(280,file='GWSEFM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(280,rec=ik) vkl(:,ik),nstsv,nwfm,se close(280) !$OMP END CRITICAL(u280) end subroutine elk-7.2.42/src/PaxHeaders.21776/getgwsefm.f900000644000000000000000000000013214061636517015234 xustar0030 mtime=1623670095.771101697 30 atime=1623670094.611102774 30 ctime=1623670095.771101697 elk-7.2.42/src/getgwsefm.f900000644002504400250440000000257514061636517017302 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine getgwsefm(ik,se) use modmain use modgw implicit none ! arguments integer, intent(in) :: ik complex(8), intent(out) :: se(nstsv,nstsv,0:nwfm) ! local variables integer recl,nstsv_,nwfm_ real(8) vkl_(3),t1 ! find the record length inquire(iolength=recl) vkl_,nstsv_,nwfm_,se !$OMP CRITICAL(u280) open(280,file='GWSEFM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(280,rec=ik) vkl_,nstsv_,nwfm_,se !$OMP END CRITICAL(u280) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getgwsefm): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" GWSEFM.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getgwsefm): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" GWSEFM.OUT : ",I8)') nstsv_ write(*,*) stop end if if (nwfm.ne.nwfm_) then write(*,*) write(*,'("Error(getgwsefm): differing nwfm for k-point ",I8)') ik write(*,'(" current : ",I8)') nwfm write(*,'(" GWSEFM.OUT : ",I8)') nwfm_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/writeigw.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.772101696 30 atime=1623670094.613102772 30 ctime=1623670095.772101696 elk-7.2.42/src/writeigw.f900000644002504400250440000000151114061636517017140 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeigw(fnum) use modmain use modgw implicit none ! arguments integer fnum write(fnum,'("+----------------------------------------|")') write(fnum,'("| Self-consistent density GW calculation |")') write(fnum,'("+----------------------------------------|")') write(fnum,*) write(fnum,'("Temperature (K) : ",G18.10)') tempk write(fnum,*) write(fnum,'("Matsubara frequency cut-off : ",G18.10)') wmaxgw write(fnum,'("Number of Matsubara frequencies : ",I6)') nwgw write(fnum,*) write(fnum,'("Maximum |G| for response function : ",G18.10)') gmaxrf write(fnum,'("Number of response-function G-vectors : ",I8)') ngrf flush(fnum) end subroutine elk-7.2.42/src/PaxHeaders.21776/polefit.f900000644000000000000000000000013214061636517014706 xustar0030 mtime=1623670095.774101695 30 atime=1623670094.614102771 30 ctime=1623670095.774101695 elk-7.2.42/src/polefit.f900000644002504400250440000000101614061636517016741 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function polefit(zfm,c) use modgw implicit none ! arguments complex(8), intent(in) :: zfm(0:nwfm),c(2*npole+1) ! local variables integer iw complex(8) z1 ! external functions complex(8), external :: zfpole polefit=0.d0 do iw=0,nwfm z1=zfm(iw)-zfpole(c,wfm(iw)) polefit=polefit+dble(z1)**2+aimag(z1)**2 end do end function elk-7.2.42/src/PaxHeaders.21776/gwchgk.f900000644000000000000000000000013214061636517014516 xustar0030 mtime=1623670095.775101694 30 atime=1623670094.616102769 30 ctime=1623670095.775101694 elk-7.2.42/src/gwchgk.f900000644002504400250440000000310314061636517016550 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 P. Elliott, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gwchgk(ik,chgk) use modmain use modgw implicit none ! arguments integer, intent(in) :: ik real(8), intent(out) :: chgk ! local variables integer ist,iw real(8) e complex(8) z1 ! allocatable arrays complex(8), allocatable :: gs(:),g(:,:),gf(:),gl(:) complex(8), allocatable :: se(:,:,:) ! external functions complex(8), external :: gtwsum ! read the self-energy from file allocate(se(nstsv,nstsv,0:nwfm)) call getgwsefm(ik,se) ! allocate local arrays allocate(gs(nstsv),g(nstsv,nstsv)) allocate(gf(nstsv),gl(nstsv)) chgk=0.d0 do iw=0,nwfm ! compute the diagonal matrix G_s do ist=1,nstsv e=evalsv(ist,ik)-efermi gs(ist)=1.d0/(wfm(iw)-e) end do ! compute 1 - G_s Sigma do ist=1,nstsv z1=-gs(ist) g(ist,:)=z1*se(ist,:,iw) g(ist,ist)=g(ist,ist)+1.d0 end do ! invert this matrix call zminv(nstsv,g) ! take the trace of G = (1 - G_s Sigma)^(-1) G_s do ist=1,nstsv g(ist,ist)=g(ist,ist)*gs(ist) chgk=chgk+dble(g(ist,ist)) end do ! store the Green's function at the first and last frequencies if (iw.eq.0) then do ist=1,nstsv gf(ist)=g(ist,ist) end do end if if (iw.eq.nwfm) then do ist=1,nstsv gl(ist)=g(ist,ist) end do end if end do ! add the Matsubara tails analytically do ist=1,nstsv chgk=chgk+dble(gtwsum(gf(ist),gl(ist))) end do chgk=chgk*wkpt(ik)*occmax*kboltz*tempk deallocate(se,gs,g,gf,gl) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwsefmk.f900000644000000000000000000000013214061636517014707 xustar0030 mtime=1623670095.777101692 30 atime=1623670094.618102767 30 ctime=1623670095.777101692 elk-7.2.42/src/gwsefmk.f900000644002504400250440000002334214061636517016750 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwsefmk(ikp,vmt,vir,bmt,bir,se) use modmain use modgw use modomp implicit none ! arguments integer, intent(in) :: ikp real(8), intent(in) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(in) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) complex(8), intent(out) :: se(nstsv,nstsv,0:nwfm) ! local variables integer ik,jk,ist1,ist2,ist3 integer iv(3),iq,ig,jg integer iw,jw,it,nthd real(8) vl(3),vc(3),t1,t2 complex(8) z1,z2 ! automatic arrays integer idx(nstsv) ! allocatable arrays integer(8), allocatable :: lock(:) real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:) real(8), allocatable :: jlgqr(:,:,:),jlgqrmt(:,:,:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: wfmt1(:,:,:,:),wfir1(:,:,:) complex(8), allocatable :: wfmt2(:,:,:,:),wfir2(:,:,:) complex(8), allocatable :: zrhomt(:,:,:),zrhoir(:,:) complex(8), allocatable :: zvclmt(:,:),zvclir(:) complex(8), allocatable :: zfgq(:),zrho(:,:,:),epsi(:,:,:) complex(8), allocatable :: v(:,:),stau(:,:,:) complex(8), allocatable :: gs(:,:),wc(:,:),zv(:) ! external functions complex(8), external :: zfinp ! allocate local arrays allocate(vgqc(3,ngvc),gqc(ngvc),gclgq(ngvc)) allocate(jlgqr(njcmax,nspecies,ngrf),jlgqrmt(0:lnpsd,ngvc,nspecies)) allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) allocate(ylmgq(lmmaxo,ngvc),sfacgq(ngvc,natmtot)) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) allocate(wfmt1(npcmtmax,natmtot,nspinor,nstsv),wfir1(ngtc,nspinor,nstsv)) allocate(wfmt2(npcmtmax,natmtot,nspinor,nstsv),wfir2(ngtc,nspinor,nstsv)) allocate(zrhomt(npcmtmax,natmtot,nstsv),zrhoir(ngtc,nstsv)) allocate(zrho(nstsv,ngrf,nstsv),epsi(ngrf,ngrf,nwrf)) allocate(v(nstsv,nstsv),stau(nstsv,nstsv,nwgw),gs(nwgw,nstsv)) ! initialise the OpenMP locks allocate(lock(nwgw)) do it=1,nwgw call omp_init_lock(lock(it)) end do ! get the eigenvectors from file for input reduced k-point call getevecfv(filext,ikp,vkl(:,ikp),vgkl(:,:,:,ikp),evecfv) call getevecsv(filext,ikp,vkl(:,ikp),evecsv) ! find the matching coefficients call match(ngk(1,ikp),vgkc(:,:,1,ikp),gkc(:,1,ikp),sfacgk(:,:,1,ikp),apwalm) ! index to all states do ist1=1,nstsv idx(ist1)=ist1 end do ! calculate the wavefunctions for all states of the input k-point call genwfsv(.false.,.true.,nstsv,idx,ngdgc,igfc,ngk(1,ikp),igkig(:,1,ikp), & apwalm,evecfv,evecsv,wfmt1,ngtc,wfir1) ! local -V_xc and -B_xc matrix elements if (spinpol) then call genvbmatk(vmt,vir,bmt,bir,ngk(1,ikp),igkig(:,1,ikp),wfmt1,ngtc,wfir1,v) else call genvmatk(vmt,vir,ngk(1,ikp),igkig(:,1,ikp),wfmt1,ngtc,wfir1,v) end if ! Fourier transform wavefunctions to real-space call zftwfir(ngk(1,ikp),igkig(:,1,ikp),wfir1) ! add the core Fock matrix elements call vclcore(wfmt1,v) ! zero the self-energy matrix elements in tau-space stau(:,:,:)=0.d0 ! loop over non-reduced k-point set do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) ! determine the q-vector iv(:)=ivk(:,ikp)-ivk(:,ik) iv(:)=modulo(iv(:),ngridk(:)) ! check if the q-point is in user-defined set iv(:)=iv(:)*ngridq(:) if (any(modulo(iv(:),ngridk(:)).ne.0)) cycle iv(:)=iv(:)/ngridk(:) iq=ivqiq(iv(1),iv(2),iv(3)) vl(:)=vkl(:,ikp)-vkl(:,ik) vc(:)=vkc(:,ikp)-vkc(:,ik) do ig=1,ngvc ! determine the G+q-vectors vgqc(:,ig)=vgc(:,ig)+vc(:) ! G+q-vector length gqc(ig)=sqrt(vgqc(1,ig)**2+vgqc(2,ig)**2+vgqc(3,ig)**2) ! spherical harmonics for G+q-vectors call genylmv(lmaxo,vgqc(:,ig),ylmgq(:,ig)) end do ! structure factors for G+q call gensfacgp(ngvc,vgqc,ngvc,sfacgq) ! generate the regularised Coulomb Green's function in G+q-space call gengclgq(.true.,iq,ngvc,gqc,gclgq) ! compute the required spherical Bessel functions call genjlgprmt(lnpsd,ngvc,gqc,ngvc,jlgqrmt) call genjlgpr(ngrf,gqc,jlgqr) ! find the matching coefficients call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! get the eigenvectors from file for non-reduced k-point call getevecfv(filext,0,vkl(:,ik),vgkl(:,:,1,ik),evecfv) call getevecsv(filext,0,vkl(:,ik),evecsv) ! calculate the wavefunctions for all states call genwfsv(.false.,.false.,nstsv,idx,ngdgc,igfc,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt2,ngtc,wfir2) ! determine the complex densities and Fourier transform to G+q-space do ist3=1,nstsv call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zfgq) & !$OMP NUM_THREADS(nthd) allocate(zfgq(ngrf)) !$OMP DO do ist1=1,nstsv call genzrho(.true.,.true.,ngtc,wfmt2(:,:,:,ist3),wfir2(:,:,ist3), & wfmt1(:,:,:,ist1),wfir1(:,:,ist1),zrhomt(:,:,ist1),zrhoir(:,ist1)) call zftzf(ngrf,jlgqr,ylmgq,ngvc,sfacgq,zrhomt(:,:,ist1),zrhoir(:,ist1), & zfgq) zrho(ist1,:,ist3)=conjg(zfgq(:)) end do !$OMP END DO deallocate(zfgq) !$OMP END PARALLEL call freethd(nthd) !--------------------------------------! ! valence Fock matrix elements ! !--------------------------------------! t1=wqptnr*occsv(ist3,jk)/occmax if (abs(t1).lt.epsocc) cycle call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zvclmt,zvclir) & !$OMP PRIVATE(ist1,z1) & !$OMP NUM_THREADS(nthd) allocate(zvclmt(npcmtmax,natmtot),zvclir(ngtc)) !$OMP DO do ist2=1,nstsv ! calculate the Coulomb potential call genzvclmt(nrcmt,nrcmti,nrcmtmax,rlcmt,wprcmt,npcmtmax, & zrhomt(:,:,ist2),zvclmt) call zpotcoul(nrcmt,nrcmti,npcmt,npcmti,nrcmtmax,rlcmt,ngdgc,igfc,ngvc, & gqc,gclgq,ngvc,jlgqrmt,ylmgq,sfacgq,zrhoir(:,ist2),npcmtmax,zvclmt, & zvclir) zvclir(:)=zvclir(:)*cfrc(:) do ist1=1,ist2 z1=zfinp(zrhomt(:,:,ist1),zrhoir(:,ist1),zvclmt,zvclir) v(ist1,ist2)=v(ist1,ist2)-t1*z1 end do end do !$OMP END DO deallocate(zvclmt,zvclir) !$OMP END PARALLEL call freethd(nthd) end do !-------------------------------------! ! correlation matrix elements ! !-------------------------------------! ! symmetrise the Coulomb Green's function gclgq(1:ngrf)=sqrt(gclgq(1:ngrf)) ! generate G_s in tau-space call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(t1,iw) & !$OMP NUM_THREADS(nthd) do ist1=1,nstsv t1=efermi-evalsv(ist1,jk) gs(:,ist1)=0.d0 do iw=-nwfm,nwfm,2 gs(iwfft(iw),ist1)=1.d0/cmplx(t1,wgw(iw),8) end do call zfftifc(1,nwgw,1,gs(:,ist1)) end do !$OMP END PARALLEL DO call freethd(nthd) ! get RPA inverse epsilon from file call getcfgq('EPSINV.OUT',vl,ngrf,nwrf,epsi) call holdthd(ngrf,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wc,zv,t1,t2,ig,iw,jw) & !$OMP PRIVATE(it,ist2,ist3,z1,z2) & !$OMP NUM_THREADS(nthd) allocate(wc(nwgw,ngrf),zv(nstsv)) !$OMP DO do jg=1,ngrf ! if epsi is exactly zero then there is no entry for this particular G'+q-vector ! so we cycle to the next if (abs(epsi(jg,jg,1)).eq.0.d0) cycle ! subtract one from inverse epsilon to leave just the correlation part epsi(jg,jg,:)=epsi(jg,jg,:)-1.d0 ! compute the correlation part of the screened interaction W_c t1=gclgq(jg) do ig=1,ngrf t2=t1*gclgq(ig) wc(:,ig)=0.d0 do iw=-nwbs,nwbs,2 jw=(iw+nwbs)/2+1 wc(iwfft(iw),ig)=t2*epsi(ig,jg,jw) end do ! Fourier transform W_c to tau-space call zfftifc(1,nwgw,1,wc(:,ig)) end do do it=1,nwgw do ist3=1,nstsv z1=gs(it,ist3) zv(1:nstsv)=0.d0 if (twdiag) then ! use only the diagonal elements of W_c z2=z1*wc(it,jg) call zaxpy(nstsv,z2,zrho(:,jg,ist3),1,zv,1) else ! use the full W_c do ig=1,ngrf z2=z1*wc(it,ig) call zaxpy(nstsv,z2,zrho(:,ig,ist3),1,zv,1) end do end if call omp_set_lock(lock(it)) if (tsediag) then ! compute only the diagonal elements of the self-energy do ist2=1,nstsv z2=conjg(zrho(ist2,jg,ist3)) stau(ist2,ist2,it)=stau(ist2,ist2,it)+z2*zv(ist2) end do else ! compute the full self-energy matrix do ist2=1,nstsv z2=conjg(zrho(ist2,jg,ist3)) call zaxpy(nstsv,z2,zv,1,stau(:,ist2,it),1) end do end if call omp_unset_lock(lock(it)) end do end do end do !$OMP END DO deallocate(wc,zv) !$OMP END PARALLEL call freethd(nthd) ! end loop over k-points end do ! destroy the OpenMP locks do it=1,nwgw call omp_destroy_lock(lock(it)) end do deallocate(lock) ! Fourier transform the self-energy to frequency space, multiply by GW diagram ! prefactor and store in output array t1=-wqptnr*omega*kboltz*tempk call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zv,ist1,iw,jw) & !$OMP NUM_THREADS(nthd) allocate(zv(nwgw)) !$OMP DO do ist2=1,nstsv do ist1=1,nstsv zv(1:nwgw)=stau(ist1,ist2,1:nwgw) call zfftifc(1,nwgw,-1,zv) do iw=-nwfm,nwfm,2 jw=(iw+nwfm)/2 se(ist1,ist2,jw)=t1*zv(iwfft(iw)) end do end do end do !$OMP END DO deallocate(zv) !$OMP END PARALLEL call freethd(nthd) ! add the local potential and Fock matrix elements to the self-energy for each ! Matsubara frequency call holdthd(nwfm+1,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ist1,ist2) & !$OMP NUM_THREADS(nthd) do iw=0,nwfm do ist2=1,nstsv do ist1=1,ist2 se(ist1,ist2,iw)=se(ist1,ist2,iw)+v(ist1,ist2) end do do ist1=ist2+1,nstsv se(ist1,ist2,iw)=se(ist1,ist2,iw)+conjg(v(ist2,ist1)) end do end do end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(vgqc,gqc,gclgq,jlgqr,jlgqrmt) deallocate(ylmgq,sfacgq,apwalm,evecfv,evecsv) deallocate(wfmt1,wfir1,wfmt2,wfir2) deallocate(zrhomt,zrhoir,zrho) deallocate(epsi,v,gs) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwspecf.f900000644000000000000000000000013214061636517014702 xustar0030 mtime=1623670095.778101691 30 atime=1623670094.620102766 30 ctime=1623670095.778101691 elk-7.2.42/src/gwspecf.f900000644002504400250440000000574514061636517016752 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwspecf use modmain use modgw use modmpi use modomp use modtest implicit none ! local variables integer ik,iw,nthd real(8) dw,w ! allocatable arrays real(8), allocatable :: wr(:),sft(:),sf(:) complex(8), allocatable :: se(:,:,:) ! initialise universal variables call init0 call init1 call init2 call init3 ! read Fermi energy from file call readfermi ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! real axis frequencies allocate(wr(nwplot)) dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot wr(iw)=dw*dble(iw-1)+wplot(1) end do ! allocate and zero the total spectral function allocate(sft(nwplot)) sft(:)=0.d0 if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! loop over reduced k-point set call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(sf,se) & !$OMP NUM_THREADS(nthd) allocate(sf(nwplot),se(nstsv,nstsv,0:nwfm)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(gwspecf_1) write(*,'("Info(gwspecf): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(gwspecf_1) ! get the self-energy at the fermionic frequencies from file call getgwsefm(ik,se) ! solve the Dyson equation on the real axis call dysonr(ik,wr,se,sf) ! write the spectral function to file !$OMP CRITICAL(gwspecf_2) call writegwsf(ik,sf) !$OMP END CRITICAL(gwspecf_2) ! add to the total spectral function !$OMP CRITICAL(gwspecf_3) sft(:)=sft(:)+wkpt(ik)*sf(:) !$OMP END CRITICAL(gwspecf_3) end do !$OMP END DO deallocate(sf,se) !$OMP END PARALLEL call freethd(nthd) ! add total spectral function from each process if (np_mpi.gt.1) then call mpi_allreduce(mpi_in_place,sft,nwplot,mpi_double_precision,mpi_sum, & mpicom,ierror) end if ! write the total spectral function to file (MPI master process only) if (mp_mpi) then open(50,file='GWTSF.OUT',form='FORMATTED') dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot w=dw*dble(iw-1)+wplot(1) write(50,'(2G18.10)') w,sft(iw) end do close(50) write(*,*) write(*,'("Info(gw):")') write(*,'(" GW spectral functions and Kohn-Sham eigenvalues written to & &GWSF_Kkkkkkk.OUT")') write(*,'(" for all k-points")') write(*,*) write(*,'(" Total GW spectral function written to GWTSF.OUT")') write(*,*) write(*,'(" Fermi energy for the Kohn-Sham eigenvalues is at zero in plots")') write(*,'(" Fermi energy for the GW spectral function is undetermined")') write(*,*) write(*,'(" Spectral function units are states/Hartree/unit cell")') end if ! write the total GW spectral function to test file call writetest(610,'total GW spectral function',nv=nwplot,tol=5.d-2,rva=sft) deallocate(wr,sft) end subroutine elk-7.2.42/src/PaxHeaders.21776/writegwsf.f900000644000000000000000000000013214061636517015265 xustar0030 mtime=1623670095.780101689 30 atime=1623670094.621102765 30 ctime=1623670095.780101689 elk-7.2.42/src/writegwsf.f900000644002504400250440000000154614061636517017330 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 A. Davydov, A. Sanna, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine writegwsf(ik,sf) use modmain use modgw implicit none ! arguments integer, intent(in) :: ik real(8), intent(in) :: sf(nwplot) ! local variables integer iw,ist real(8) dw,w,e character(256) fname write(fname,'("GWSF_K",I6.6,".OUT")') ik open(50,file=trim(fname),form='FORMATTED') ! write the GW spectral function dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot w=dw*dble(iw-1)+wplot(1) write(50,'(2G18.10)') w,sf(iw) end do write(50,*) ! write the Kohn-Sham eigenvalues for reference do ist=1,nstsv e=evalsv(ist,ik)-efermi write(50,'(2G18.10)') e,0.d0 write(50,'(2G18.10)') e,1.d0/swidth write(50,*) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/acgwse.f900000644000000000000000000000013214061636517014515 xustar0030 mtime=1623670095.781101688 30 atime=1623670094.623102763 30 ctime=1623670095.781101688 elk-7.2.42/src/acgwse.f900000644002504400250440000000163514061636517016557 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine acgwse(ist,jst,sem,wr,ser) use modmain use modgw implicit none ! arguments integer ist,jst complex(8), intent(in) :: sem(nstsv,nstsv,0:nwfm) real(8), intent(in) :: wr(nwplot) complex(8), intent(out) :: ser(nstsv,nstsv,nwplot) ! allocatable arrays complex(8), allocatable :: zm(:),zwr(:),zr(:) allocate(zm(0:nwfm),zwr(nwplot),zr(nwplot)) zm(:)=sem(ist,jst,:) zwr(:)=wr(:) select case(actype) case(1) ! fit a multipole model call acpole(zm,zwr,zr) case(10) ! stabilised Pade approximant call pades(nspade,swidth,nwfm+1,wfm,zm,nwplot,zwr,zr) case default write(*,*) write(*,'("Error(acgwse): actype not defined : ",I8)') actype write(*,*) stop end select ser(ist,jst,:)=zr(:) deallocate(zm,zwr,zr) end subroutine elk-7.2.42/src/PaxHeaders.21776/fmin_nm.f900000644000000000000000000000013214061636517014667 xustar0030 mtime=1623670095.783101686 30 atime=1623670094.625102761 30 ctime=1623670095.783101686 elk-7.2.42/src/fmin_nm.f900000644002504400250440000000106514061636517016726 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2007 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. real(8) function fmin_nm(id,rd,x) implicit none ! arguments integer, intent(in) :: id(*) real(8), intent(in) :: rd(*),x(*) ! external functions real(8), external :: polefit select case(id(1)) case(1) fmin_nm=polefit(rd,x) case default write(*,*) write(*,'("Error(fmin_nm): function type not defined : ",I8)') id(1) write(*,*) stop end select end function elk-7.2.42/src/PaxHeaders.21776/zfpole.f900000644000000000000000000000013114061636517014542 xustar0030 mtime=1623670095.784101685 29 atime=1623670094.62610276 30 ctime=1623670095.784101685 elk-7.2.42/src/zfpole.f900000644002504400250440000000076314061636517016606 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. pure complex(8) function zfpole(c,z) use modgw implicit none ! arguments complex(8), intent(in) :: c(*),z ! local variables integer i,j real(8) t1 complex(8) z1 zfpole=c(1) i=2 do j=1,npole z1=c(i)+z t1=abs(dble(z1))+abs(aimag(z1)) if (t1.gt.1.d-8) zfpole=zfpole+c(i+1)/z1 i=i+2 end do end function elk-7.2.42/src/PaxHeaders.21776/gwbandstr.f900000644000000000000000000000013214061636517015237 xustar0030 mtime=1623670095.786101684 30 atime=1623670094.628102758 30 ctime=1623670095.786101684 elk-7.2.42/src/gwbandstr.f900000644002504400250440000000554314061636517017303 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gwbandstr use modmain use modgw use modstore use modmpi use modomp implicit none ! local variables integer ip,iw real(8) dw ! allocatable arrays real(8), allocatable :: vmt(:,:),vir(:) real(8), allocatable :: bmt(:,:,:),bir(:,:) real(8), allocatable :: wr(:),sf(:) complex(8), allocatable :: se(:,:,:) ! store original parameters vkloff_(:)=vkloff(:) ! initialise universal variables call init0 call init1 call init2 call init3 ! read density and potentials from file call readstate ! generate the core wavefunctions and densities call gencore ! Fourier transform Kohn-Sham potential to G-space call genvsig ! read Fermi energy from file call readfermi ! generate k-points along a path for band structure plots call plotpt1d(bvec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) ! compute the matrix elements of -V_xc and -B_xc allocate(vmt(npcmtmax,natmtot),vir(ngtot)) if (spinpol) then allocate(bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag)) end if call gwlocal(vmt,vir,bmt,bir) ! real axis frequencies allocate(wr(nwplot)) dw=(wplot(2)-wplot(1))/dble(nwplot) do iw=1,nwplot wr(iw)=dw*dble(iw-1)+wplot(1) end do allocate(sf(nwplot),se(nstsv,nstsv,0:nwfm)) if (mp_mpi) then open(85,file='GWBAND.OUT',form='FORMATTED',action='WRITE') write(85,'(2I6," : grid size")') nwplot,npp1d end if ! loop over plot points along path do ip=1,npp1d if (mp_mpi) then write(*,*) write(*,'("Info(gwbandstr): ",I6," of ",I6," plot points")') ip,npp1d end if ! reset the OpenMP thread variables call omp_reset ! change the k-point offset vkloff(:)=vplp1d(:,ip)*ngridk(:) ! generate the new k-point set call init1 ! determine the Kohn-Sham ground-state for this k-point offset call linengy call genapwlofr call gensocfr call genevfsv call occupy ! write the momentum matrix elements to file call genpmat ! generate the inverse dielectric function and write to file call epsinv ! determine the self-energy for the first k-point if (mp_mpi) then write(*,*) write(*,'("Info(gwbandstr): calculating self-energy for first k-point")') end if call gwsefmk(1,vmt,vir,bmt,bir,se) ! solve the Dyson equation on the real axis call dysonr(1,wr,se,sf) if (mp_mpi) then do iw=1,nwplot write(85,'(3G18.10)') dpp1d(ip),wr(iw),sf(iw) end do flush(85) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end do deallocate(vmt,vir,wr,sf,se) if (spinpol) deallocate(bmt,bir) if (mp_mpi) then close(85) write(*,*) write(*,'("Info(gwbandstr):")') write(*,'(" GW spectral function band structure written to GWBAND.OUT")') end if ! restore original input parameters vkloff(:)=vkloff_(:) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/gwscrho.f900000644000000000000000000000013214061636517014720 xustar0030 mtime=1623670095.787101682 30 atime=1623670094.630102756 30 ctime=1623670095.787101682 elk-7.2.42/src/gwscrho.f900000644002504400250440000001466114061636517016765 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 A. Davydov, P. Elliott, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine gwscrho use modmain use modgw use modmpi use modomp implicit none ! local variables integer ik,nthd integer nmix,nwork real(8) dv ! allocatable arrays real(8), allocatable :: vmt(:,:),vir(:) real(8), allocatable :: bmt(:,:,:),bir(:,:) real(8), allocatable :: work(:) complex(8), allocatable :: se(:,:,:) ! initialise universal variables call init0 call init1 call init2 call init3 ! read density and potentials from file call readstate call genvsig ! read the Fermi energy call readfermi ! zero the exchange-correlation potential and magnetic field vxcmt(:,:)=0.d0 vxcir(:)=0.d0 if (spinpol) then bxcmt(:,:,:)=0.d0 bxcir(:,:)=0.d0 end if ! re-calculate the ground-state call gencore call linengy call genapwlofr call gensocfr call genevfsv call occupy allocate(vmt(npcmtmax,natmtot),vir(ngtot)) if (spinpol) then allocate(bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag)) end if if (mp_mpi) then ! open GW_INFO.OUT file open(60,file='GW_INFO.OUT',form='FORMATTED') ! open FERMIDOS.OUT open(62,file='FERMIDOS.OUT',form='FORMATTED') ! open MOMENT.OUT if required if (spinpol) open(63,file='MOMENT.OUT',form='FORMATTED') ! open GAP.OUT open(64,file='GAP.OUT',form='FORMATTED') ! open RMSDVS.OUT open(65,file='RMSDVS.OUT',form='FORMATTED') ! open MOMENTM.OUT if (spinpol) open(68,file='MOMENTM.OUT',form='FORMATTED') ! open RESIDUAL.OUT open(69,file='RESIDUAL.OUT',form='FORMATTED') ! write out general information to GW_INFO.OUT call writeigw(60) write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') end if ! size of mixing vector nmix=size(vsbs) ! determine the size of the mixer work array nwork=-1 call mixerifc(mixtype,nmix,vsbs,dv,nwork,vsbs) allocate(work(nwork)) ! initialise the mixer iscl=0 call mixerifc(mixtype,nmix,vsbs,dv,nwork,work) ! set the stop signal to .false. tstop=.false. ! set last self-consistent loop flag tlast=.false. do iscl=1,maxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') end if call genpmat call epsinv ! compute the matrix elements of -V_xc and -B_xc call gwlocal(vmt,vir,bmt,bir) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) write(*,*) ! loop over reduced k-point set call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(se) & !$OMP NUM_THREADS(nthd) allocate(se(nstsv,nstsv,0:nwfm)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(gwscrho_) write(*,'("Info(gwscrho): ",I6," of ",I6," k-points")') ik,nkpt !$OMP END CRITICAL(gwscrho_) ! determine the self-energy at the fermionic frequencies for current k-point call gwsefmk(ik,vmt,vir,bmt,bir,se) ! write the self-energy to file call putgwsefm(ik,se) end do !$OMP END DO deallocate(se) !$OMP END PARALLEL call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(60,*) write(60,'("Kohn-Sham Fermi energy : ",G18.10)') efermi end if ! determine the GW Fermi energy call gwefermi if (mp_mpi) then write(60,'("GW Fermi energy : ",G18.10)') efermi flush(60) end if ! determine the density and magnetisation call gwrhomag ! invert the Kohn-Sham equations to find V_s and B_s call ksinvert ! mix the old effective potential and field with the new call mixerifc(mixtype,nmix,vsbs,dv,nwork,work) ! Fourier transform Kohn-Sham potential to G-space call genvsig if (mp_mpi) then ! write the Kohn-Sham occupation numbers to file do ik=1,nkpt call putoccsv(filext,ik,occsv(:,ik)) end do call writeeval call writefermi ! write STATE.OUT file call writestate write(60,*) write(60,'("Density of states at Fermi energy : ",G18.10)') fermidos write(60,'(" (states/Hartree/unit cell)")') write(60,*) write(60,'("Estimated indirect band gap : ",G18.10)') bandgap(1) write(60,'(" from k-point ",I6," to k-point ",I6)') ikgap(1),ikgap(2) write(60,'("Estimated direct band gap : ",G18.10)') bandgap(2) write(60,'(" at k-point ",I6)') ikgap(3) ! output charges and moments call writechg(60) if (spinpol) call writemom(60) write(60,*) write(60,'("Magnitude of residual : ",G18.10)') resoep flush(60) ! write DOS at Fermi energy to FERMIDOS.OUT write(62,'(G18.10)') fermidos flush(62) if (spinpol) then ! write total moment to MOMENT.OUT write(63,'(3G18.10)') momtot(1:ndmag) flush(63) ! write total moment magnitude to MOMENTM.OUT write(68,'(G18.10)') momtotm flush(68) end if ! write estimated Kohn-Sham indirect band gap write(64,'(G22.12)') bandgap(1) flush(64) ! write residual to RESIDUAL.OUT write(69,'(G18.10)') resoep flush(69) end if ! exit self-consistent loop if required if (tlast) goto 10 ! check for convergence if (iscl.ge.2) then if (mp_mpi) then write(60,*) write(60,'("RMS change in Kohn-Sham potential (target) : ",G18.10," (",& &G18.10,")")') dv,epspot flush(60) write(65,'(G18.10)') dv flush(65) end if if (dv.lt.epspot) then if (mp_mpi) then write(60,*) write(60,'("Convergence targets achieved")') end if tlast=.true. end if end if ! check for STOP file call checkstop if (tstop) tlast=.true. ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) ! reset the OpenMP thread variables call omp_reset ! end the self-consistent loop end do 10 continue ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') ! close the GW_INFO.OUT file close(60) ! close the FERMIDOS.OUT file close(62) ! close the MOMENT.OUT and MOMENTM.OUT files if (spinpol) then close(63); close(68) end if ! close the GAP.OUT file close(64) ! close the RMSDVS.OUT file close(65) ! close the RESIDUAL.OUT file close(69) end if deallocate(vmt,vir) if (spinpol) deallocate(bmt,bir) end subroutine elk-7.2.42/src/PaxHeaders.21776/atptstep.f900000644000000000000000000000013214061636517015110 xustar0030 mtime=1623670095.789101681 30 atime=1623670094.632102755 30 ctime=1623670095.789101681 elk-7.2.42/src/atptstep.f900000644002504400250440000000134214061636517017145 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine atptstep use modmain use modtddft use modmpi implicit none ! local variables integer is,ia,ias real(8) dt,t1 ! time step length dt=times(itimes+1)-times(itimes) do is=1,nspecies t1=dt/spmass(is) do ia=1,natoms(is) ias=idxas(ia,is) ! add to the atomic velocities datposc(:,1,ia,is)=datposc(:,1,ia,is)+t1*forcet(:,ias,itimes) ! add to the atomic displacements datposc(:,0,ia,is)=datposc(:,0,ia,is)+datposc(:,1,ia,is)*dt end do end do ! write the atomic displacements and velocities to file if (mp_mpi) call writedatposc end subroutine elk-7.2.42/src/PaxHeaders.21776/potkst.f900000644000000000000000000000013014061636517014566 xustar0029 mtime=1623670095.79010168 30 atime=1623670094.633102754 29 ctime=1623670095.79010168 elk-7.2.42/src/potkst.f900000644002504400250440000000053314061636517016626 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potkst use modmain use modtddft implicit none ! adiabatic approximation to the exchange-correlation potential call potks(.true.) end subroutine elk-7.2.42/src/PaxHeaders.21776/tdbackup.f900000644000000000000000000000013214061636517015041 xustar0030 mtime=1623670095.792101678 30 atime=1623670094.635102752 30 ctime=1623670095.792101678 elk-7.2.42/src/tdbackup.f900000644002504400250440000000173314061636517017102 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tdbackup use modmain use modtddft use modmpi implicit none ! local variables integer ik ! allocatable arrays complex(8), allocatable :: evecsvt(:,:) if (ntsbackup.le.0) return if (mod(itimes-1,ntsbackup).ne.0) return allocate(evecsvt(nstsv,nstsv)) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! read in time-dependent Kohn-Sham eigenvectors call getevecsv(filext,ik,vkl(:,ik),evecsvt) ! write eigenvectors to backup file call putevecsv('_TD_BACKUP.OUT',ik,evecsvt) end do deallocate(evecsvt) ! write the time step backup file if (mp_mpi) then open(50,file='TIMESTEP_BACKUP.OUT',form='FORMATTED') write(50,'(I8,G18.10)') itimes,times(itimes) close(50) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/writetimes.f900000644000000000000000000000013214061636517015440 xustar0030 mtime=1623670095.793101677 30 atime=1623670094.636102751 30 ctime=1623670095.793101677 elk-7.2.42/src/writetimes.f900000644002504400250440000000057514061636517017504 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writetimes use modmain use modtddft implicit none open(50,file='TIMESTEP.OUT',form='FORMATTED') write(50,'(I8,G18.10)') itimes,times(itimes) close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/readtimes.f900000644000000000000000000000013214061636517015221 xustar0030 mtime=1623670095.795101675 30 atime=1623670094.638102749 30 ctime=1623670095.795101675 elk-7.2.42/src/readtimes.f900000644002504400250440000000220514061636517017255 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readtimes(itimes0) use modmain use modtddft implicit none ! arguments integer, intent(out) :: itimes0 ! local variables integer ios real(8) times_,t1 open(50,file='TIMESTEP.OUT',form='FORMATTED',status='OLD',iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readtimes): error opening TIMESTEP.OUT")') write(*,*) stop end if read(50,*,iostat=ios) itimes0,times_ if (ios.ne.0) then write(*,*) write(*,'("Error(readtimes): error reading time step from TIMESTEP.OUT")') write(*,*) stop end if if ((itimes0.lt.1).or.(itimes0.gt.ntimes)) then write(*,*) write(*,'("Error(readtimes): invalid itimes : ",I8)') itimes0 write(*,*) stop end if t1=abs(times(itimes0)-times_) if (t1.gt.1.d-8) then write(*,*) write(*,'("Error(readtimes): differing time step")') write(*,'(" current : ",G18.10)') times(itimes0) write(*,'(" TIMESTEP.OUT : ",G18.10)') times_ write(*,*) stop end if close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/gentimes.f900000644000000000000000000000013214061636517015057 xustar0030 mtime=1623670095.796101674 30 atime=1623670094.640102747 30 ctime=1623670095.796101674 elk-7.2.42/src/gentimes.f900000644002504400250440000000120014061636517017105 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gentimes use modmain use modtddft implicit none ! local variables integer its if (tstime.lt.dtimes) then write(*,*) write(*,'("Error(gentimes): tstime < dtimes : ",2G18.10)') tstime,dtimes write(*,*) stop end if ! number of time steps ntimes=nint(tstime/dtimes)+1 ! generate the time step array if (allocated(times)) deallocate(times) allocate(times(ntimes)) do its=1,ntimes times(its)=dble(its-1)*dtimes end do end subroutine elk-7.2.42/src/PaxHeaders.21776/readafieldt.f900000644000000000000000000000013214061636517015510 xustar0030 mtime=1623670095.798101672 30 atime=1623670094.641102746 30 ctime=1623670095.798101672 elk-7.2.42/src/readafieldt.f900000644002504400250440000000266614061636517017557 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readafieldt use modmain use modtddft implicit none ! local variables integer ios,ntimes_,its,its_ real(8) times_,t1 ! generate the time step grid call gentimes ! read in the time-dependent vector potential open(50,file='AFIELDT.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readafieldt): error opening AFIELDT.OUT")') write(*,*) stop end if read(50,*) ntimes_ if (ntimes_.le.0) then write(*,*) write(*,'("Error(readafieldt): ntimes <= 0 : ",I8)') ntimes_ write(*,*) stop end if ntimes=min(ntimes,ntimes_) if (allocated(afieldt)) deallocate(afieldt) allocate(afieldt(3,ntimes)) do its=1,ntimes read(50,*) its_,times_,afieldt(:,its) if (its.ne.its_) then write(*,*) write(*,'("Error(readafieldt): time step number mismatch")') write(*,'(" internal : ",I8)') its write(*,'(" AFIELDT.OUT : ",I8)') its_ write(*,*) stop end if t1=abs(times(its)-times_) if (t1.gt.1.d-10) then write(*,*) write(*,'("Error(readafieldt): time step mismatch for step number ",& &I8)') its write(*,'(" internal : ",G18.10)') times(its) write(*,'(" AFIELDT.OUT : ",G18.10)') times_ stop end if end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/genjr.f900000644000000000000000000000013214061636517014351 xustar0030 mtime=1623670095.799101671 30 atime=1623670094.643102744 30 ctime=1623670095.799101671 elk-7.2.42/src/genjr.f900000644002504400250440000000151114061636517016404 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genjr use modmain use modtddft implicit none ! local variables integer is,ias,np,l real(8) ca,t1 ! generate the paramagnetic current call genjpr ! add the diamagnetic term if a time-dependent A-field is present if (tafieldt) then ! coupling constant of the external A-field (-1/c) ca=-1.d0/solsc ! muffin-tin part do l=1,3 t1=ca*afieldt(l,itimes) do ias=1,natmtot is=idxis(ias) np=npmt(is) jrmt(1:np,ias,l)=jrmt(1:np,ias,l)+t1*(rhomt(1:np,ias)-rhosmt(1:np,ias,l)) end do end do ! interstitial part do l=1,3 t1=ca*afieldt(l,itimes) jrir(:,l)=jrir(:,l)+t1*(rhoir(:)-rhosir(:,l)) end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/tddft.f900000644000000000000000000000013014061636517014347 xustar0029 mtime=1623670095.80010167 30 atime=1623670094.645102742 29 ctime=1623670095.80010167 elk-7.2.42/src/tddft.f900000644002504400250440000001142314061636517016407 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tddft use modmain use modtddft use moddftu use modmpi use modomp use modstore use modtest implicit none ! local variables integer ik,itimes0 ! allocatable arrays real(8), allocatable :: evalfv(:,:) complex(8), allocatable :: evecfv(:,:,:),evecsv(:,:) if (tshift) then write(*,*) write(*,'("Error(tddft): use tshift = .false. for the ground-state run")') write(*,*) stop end if ! average force can be non-zero (allow for translation of atomic basis) tfav0_=tfav0 tfav0=.false. tforce_=tforce ! determine the static density and charge call rhostatic ! Ehrenfest dynamics if (any(task.eq.[462,463])) then ! forces should not be calculated tforce=.false. ! enable small amplitude displacements tdatpos=.true. ! zero the displacements and velocities datposc(:,:,:,:)=0.d0 ! generate the gradient of the nucleus and static density Coulomb potential call gengvclns end if ! currents should be calculated with forces if (tforce) tjr=.true. ! deallocate the static density if not required if (.not.tjr) deallocate(rhosmt,rhosir) ! initialise global variables call init0 call init1 ! read the charge density and potentials from file call readstate ! generate the first- and second-variational eigenvectors and eigenvalues for ! the k-point set reduced with the symmetries which leave A(t) invariant for all ! time steps call genvsig call gencore call energykncr call readfermi call linengy call genapwlofr call gensocfr call genevfsv call occupy ! DFT+U if (dftu.ne.0) then call gendmatmt call genvmatmt end if ! generate the kinetic matrix elements in the second-variational basis call genkmat(.false.,.false.) ! write the momentum matrix elements in the second-variational basis call genpmat ! write the power density to file if (mp_mpi) call writeafpdt ! copy EVALFV.OUT, EVECFV.OUT, OCCSV.OUT and EVECSV.OUT to _TD.OUT extension if ((task.eq.460).or.(task.eq.462)) then allocate(evalfv(nstfv,nspnfv),evecfv(nmatmax,nstfv,nspnfv)) allocate(evecsv(nstsv,nstsv)) do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle call getevalfv('.OUT',ik,vkl(:,ik),evalfv) call putevalfv('_TD.OUT',ik,evalfv) call getevecfv('.OUT',ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call putevecfv('_TD.OUT',ik,evecfv) call putoccsv('_TD.OUT',ik,occsv(:,ik)) call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! randomise eigenvectors at t=0 if required call rndevsv(rndevt0,evecsv) call putevecsv('_TD.OUT',ik,evecsv) end do deallocate(evalfv,evecfv,evecsv) end if ! set global file extension filext='_TD.OUT' ! output the new k-point set to file if (mp_mpi) call writekpts ! synchronise MPI processes call mpi_barrier(mpicom,ierror) if (any(task.eq.[461,463])) then ! restart if required call tdrestart(itimes0) else ! start from t=0 itimes0=1 end if ! read the forces calculated during the previous TDDFT run if (tdatpos) call readforcet ! read the atomic displacements and velocities if (trddatpos) call readdatposc ! set the stop signal to .false. tstop=.false. !---------------------------------! ! main loop over time steps ! !---------------------------------! if (mp_mpi) write(*,*) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) do itimes=itimes0,ntimes-1 if (mp_mpi) then write(*,'("Info(tddft): time step ",I8," of ",I8,", t = ",G18.10)') & itimes,ntimes-1,times(itimes) end if ! reset the OpenMP thread variables call omp_reset ! evolve the wavefunctions across a single time step call timestep ! generate the density and magnetisation at current time step call rhomag ! compute the gauge-invariant current j(r) if required if (tjr) call genjr ! time step the induced A-field if (tafindt) call afindtstep ! calculate the electric field call genefieldt ! compute the time-dependent Kohn-Sham potentials and magnetic fields call potkst ! DFT+U if (dftu.ne.0) then call gendmatmt call genvmatmt end if ! compute the total energy call energytd ! write muffin-tin L, S and J if required if (tdlsj) call writetdlsj ! calculate the atomic forces if required if (tforce) then if ((itimes.eq.itimes0).or.(mod(itimes-1,ntsforce).eq.0)) then call force end if end if ! time step the atomic positions for Ehrenfest dynamics using forces calculated ! during the previous TDDFT run if (tdatpos) call atptstep ! write TDDFT output if (mp_mpi) call writetddft ! check for STOP file call checkstop if (tstop) exit end do filext='.OUT' tfav0=tfav0_ tforce=tforce_ tdatpos=.false. ! write the total current of the last step to test file call writetest(460,'total current of last time step',nv=3,tol=1.d-4,rva=jtot) end subroutine elk-7.2.42/src/PaxHeaders.21776/tddftlr.f900000644000000000000000000000013214061636517014707 xustar0030 mtime=1623670095.802101669 30 atime=1623670094.646102742 30 ctime=1623670095.802101669 elk-7.2.42/src/tddftlr.f900000644002504400250440000002022414061636517016744 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2010 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tddftlr use modmain use modtddft use modtest use modmpi use modomp implicit none ! local variables logical tq0 integer, parameter :: maxit=500 integer iq,ik,isym integer nm,i,j,l,n integer iw,it,nthd real(8) v(3),t1,t2 complex(8) vfxcp,z1 character(256) fname ! allocatable arrays integer(8), allocatable :: lock(:) real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqr(:,:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: vchi0(:,:,:),vfxc(:,:,:) complex(8), allocatable :: eps0(:,:,:),epsi(:,:,:),epsm(:,:,:) complex(8), allocatable :: zw(:),a(:,:) ! initialise global variables call init0 call init1 call init2 call init3 ! check q-vector is commensurate with k-point grid v(:)=dble(ngridk(:))*vecql(:) v(:)=abs(v(:)-nint(v(:))) if ((v(1).gt.epslat).or.(v(2).gt.epslat).or.(v(3).gt.epslat)) then write(*,*) write(*,'("Error(tddftlr): q-vector incommensurate with k-point grid")') write(*,'(" ngridk : ",3I6)') ngridk write(*,'(" vecql : ",3G18.10)') vecql write(*,*) stop end if ! find the equivalent reduced q-point call findqpt(vecql,isym,iq) ! check if q=0 tq0=.false. if (sum(abs(vecql(:))).lt.epslat) tq0=.true. ! read density and potentials from file call readstate ! read Fermi energy from a file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the G+q-vectors and related functions allocate(vgqc(3,ngrf),gqc(ngrf),jlgqr(njcmax,nspecies,ngrf)) allocate(ylmgq(lmmaxo,ngrf),sfacgq(ngrf,natmtot)) call gengqf(ngrf,vecqc,vgqc,gqc,jlgqr,ylmgq,sfacgq) deallocate(vgqc) ! generate the regularised Coulomb Green's function in G+q-space allocate(gclgq(ngrf)) call gengclgq(.true.,iq,ngrf,gqc,gclgq) gclgq(:)=sqrt(gclgq(:)) ! matrix sizes if (tq0) then nm=ngrf+2 else nm=ngrf end if ! allocate local arrays allocate(vchi0(nm,nm,nwrf),vfxc(nm,nm,nwrf)) allocate(eps0(nm,nm,nwrf),epsi(nm,nm,nwrf)) ! initialise the OpenMP locks allocate(lock(nwrf)) do iw=1,nwrf call omp_init_lock(lock(iw)) end do ! compute v^1/2 chi0 v^1/2 (the symmetric version of v chi0) vchi0(:,:,:)=0.d0 call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(tddftlr_) write(*,'("Info(tddftlr): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(tddftlr_) ! compute v^1/2 chi0 v^1/2 call genvchi0(.true.,ik,lock,scissor,vecql,gclgq,jlgqr,ylmgq,sfacgq,nm,vchi0) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! destroy the OpenMP locks do iw=1,nwrf call omp_destroy_lock(lock(iw)) end do deallocate(lock) ! add vchi0 from each process and redistribute if (np_mpi.gt.1) then n=nm*nm*nwrf call mpi_allreduce(mpi_in_place,vchi0,n,mpi_double_complex,mpi_sum,mpicom, & ierror) end if ! calculate symmetric epsilon = 1 - v^1/2 chi0 v^1/2 do i=1,nm do j=1,nm eps0(i,j,:)=-vchi0(i,j,:) epsi(i,j,:)=vchi0(i,j,:) end do eps0(i,i,:)=eps0(i,i,:)+1.d0 epsi(i,i,:)=epsi(i,i,:)+1.d0 end do allocate(a(nm,nm)) vfxcp=0.d0 it=0 10 continue ! compute vchi0 v^(-1/2) f_xc v^(-1/2) vchi0 call genvfxc(tq0,.true.,gclgq,nm,vchi0,eps0,epsi,vfxc) ! begin loop over frequencies do iw=1,nwrf ! compute 1 - v^1/2 chi0 v^1/2 - v^(-1/2) f_xc v^(-1/2) vchi0 a(:,:)=eps0(:,:,iw)-vfxc(:,:,iw) ! invert this matrix call zminv(nm,a) ! left multiply by v^1/2 chi0 v^1/2 call zgemm('N','N',nm,nm,nm,zone,vchi0(:,:,iw),nm,a,nm,zzero,epsi(:,:,iw),nm) ! compute epsilon^(-1) = 1 + v^1/2 chi v^1/2 do i=1,nm epsi(i,i,iw)=1.d0+epsi(i,i,iw) end do end do if (fxctype(1).eq.210) then ! self-consistent bootstrap f_xc it=it+1 if (it.gt.maxit) then write(*,*) write(*,'("Error(tddftlr): bootstrap kernel failed to converge")') write(*,*) stop end if if (mod(it,10).eq.0) then write(*,'("Info(tddftlr): done ",I4," bootstrap iterations")') it write(*,'(" head of matrix v.f_xc : ",2G18.10)') vfxc(1,1,1) end if ! check for convergence t1=abs(vfxcp)-abs(vfxc(1,1,1)) vfxcp=vfxc(1,1,1) if (abs(t1).gt.1.d-8) goto 10 else if (fxctype(1).eq.211) then ! single iteration bootstrap it=it+1 if (it.le.1) goto 10 end if deallocate(gclgq,jlgqr) deallocate(ylmgq,sfacgq) deallocate(vchi0,vfxc) ! invert epsilon^(-1) to find epsilon and store in array eps0 do iw=1,nwrf eps0(:,:,iw)=epsi(:,:,iw) call zminv(nm,eps0(:,:,iw)) end do ! write G = G' = 0 components to file if (mp_mpi) then do l=1,noptcomp i=optcomp(1,l) j=optcomp(2,l) write(fname,'("EPSILON_TDDFT_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') write(fname,'("EPSINV_TDDFT_",2I1,".OUT")') i,j open(51,file=trim(fname),form='FORMATTED') do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(eps0(i,j,iw)) write(51,'(2G18.10)') dble(wrf(iw)),dble(epsi(i,j,iw)) end do write(50,*) write(51,*) do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(eps0(i,j,iw)) write(51,'(2G18.10)') dble(wrf(iw)),aimag(epsi(i,j,iw)) end do close(50) close(51) end do end if ! find the macroscopic part of epsilon by inverting the 3x3 head only if (mp_mpi.and.tq0) then allocate(epsm(3,3,nwrf)) do iw=1,nwrf epsm(1:3,1:3,iw)=epsi(1:3,1:3,iw) call zminv(3,epsm(:,:,iw)) end do ! write out the macroscopic components do l=1,noptcomp i=optcomp(1,l) j=optcomp(2,l) write(fname,'("EPSM_TDDFT_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(epsm(i,j,iw)) end do write(50,*) do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(epsm(i,j,iw)) end do close(50) end do allocate(zw(nwrf)) ! output the Faraday angle components Delta delta and Delta beta do iw=2,nwrf zw(iw)=0.5d0*zi*epsm(1,2,iw)/sqrt(epsm(1,1,iw)) end do open(50,file='FARADAY.OUT',form='FORMATTED') do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(zw(iw)) end do write(50,*) do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(zw(iw)) end do close(50) ! output the Kerr angle do iw=2,nwrf zw(iw)=-epsm(1,2,iw)/(sqrt(epsm(1,1,iw))*(epsm(1,1,iw)-1.d0)) end do open(50,file='KERR_TDDFT.OUT',form='FORMATTED') do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(zw(iw))*180.d0/pi end do write(50,*) do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(zw(iw))*180.d0/pi end do close(50) ! output magnetic linear dichroism (MLD) spectrum t1=sin(thetamld)**2 t2=sin(2.d0*thetamld) do iw=2,nwrf z1=epsm(1,1,iw) zw(iw)=t2*epsm(1,2,iw)/((z1-1.d0)*(z1-(t1*(z1+1.d0)))) end do open(50,file='MLD.OUT',form='FORMATTED') do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(zw(iw)) end do write(50,*) do iw=2,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(zw(iw)) end do close(50) deallocate(epsm,zw) end if ! write inverse epsilon to test file call writetest(320,'inverse epsilon',nv=nm*nm*nwrf,tol=1.d-2,zva=epsi) deallocate(eps0,epsi,a) if (mp_mpi) then write(*,*) write(*,'("Info(tddftlr):")') write(*,'(" Dielectric tensor written to EPSILON_TDDFT_ij.OUT")') write(*,'(" Inverse written to EPSINV_TDDFT_ij.OUT")') if (tq0) then write(*,'(" Macroscopic part written to EPSM_TDDFT_ij.OUT")') end if write(*,'(" for components")') do l=1,noptcomp write(*,'(" i = ",I1,", j = ",I1)') optcomp(1:2,l) end do write(*,'(" q-vector (lattice coordinates) : ")') write(*,'(3G18.10)') vecql write(*,'(" q-vector length : ",G18.10)') gqc(1) if (tq0) then write(*,*) write(*,'(" Faraday angle parameters Δδ and Δβ written to FARADAY.OUT")') write(*,'(" MOKE Kerr angle written to KERR_TDDFT.OUT")') write(*,'(" Magnetic linear dichroism (MLD) spectrum written to MLD.OUT")') end if end if deallocate(gqc) end subroutine elk-7.2.42/src/PaxHeaders.21776/genhmlt.f900000644000000000000000000000013114061636517014701 xustar0030 mtime=1623670095.803101668 29 atime=1623670094.64810274 30 ctime=1623670095.803101668 elk-7.2.42/src/genhmlt.f900000644002504400250440000000420114061636517016734 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genhmlt(ik,vmt,vir,bmt,bir,kmat,pmat,h) use modmain use modtddft use modmpi implicit none ! arguments integer, intent(in) :: ik real(8), intent(in) :: vmt(npcmtmax,natmtot),vir(ngtot) real(8), intent(in) :: bmt(npcmtmax,natmtot,ndmag),bir(ngtot,ndmag) complex(8), intent(in) :: kmat(nstsv,nstsv),pmat(nstsv,nstsv,3) complex(8), intent(out) :: h(nstsv,nstsv) ! local variables integer ist,i real(8) ca,t1 ! automatic arrays integer idx(nstsv) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgk(:,:,:) allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) ! get the ground-state eigenvectors from file for input k-point call getevecfv('.OUT',ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! find the matching coefficients allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! index to all states do ist=1,nstsv idx(ist)=ist end do ! calculate the wavefunctions for all states of the input k-point allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfgk(ngkmax,nspinor,nstsv)) call genwfsv(.false.,.true.,nstsv,idx,ngridg,igfft,ngk(:,ik),igkig(:,:,ik), & apwalm,evecfv,evecsv,wfmt,ngkmax,wfgk) deallocate(apwalm,evecfv,evecsv) ! Kohn-Sham potential and magnetic field matrix elements if (spinpol) then call genvbmatk(vmt,vir,bmt,bir,ngk(:,ik),igkig(:,:,ik),wfmt,ngkmax,wfgk,h) else call genvmatk(vmt,vir,ngk(:,ik),igkig(:,:,ik),wfmt,ngkmax,wfgk,h) end if ! add the DFT+U matrix elements if required call genvmmtsv(wfmt,h) deallocate(wfmt,wfgk) ! add the kinetic matrix elements in the second-variational basis h(:,:)=h(:,:)+kmat(:,:) ! coupling constant of the external A-field (-1/c) ca=-1.d0/solsc ! add the A-field matrix elements in the second-variational basis do i=1,3 t1=ca*afieldt(i,itimes) if (abs(t1).gt.1.d-10) h(:,:)=h(:,:)+t1*pmat(:,:,i) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/timestep.f900000644000000000000000000000013214061636517015076 xustar0030 mtime=1623670095.805101666 30 atime=1623670094.650102738 30 ctime=1623670095.805101666 elk-7.2.42/src/timestep.f900000644002504400250440000001116114061636517017133 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine timestep use modmain use modtddft use modmpi use modomp implicit none ! local variables integer ik,i,j,nthd real(8) ca,dt,t1 complex(8) z1,z2 ! automatic arrays real(8) w(nstsv) ! allocatable arrays real(8), allocatable :: vmt(:,:),vir(:),bmt(:,:,:) complex(8), allocatable :: evecsv(:,:),evectv(:,:),evecsvt(:,:) complex(8), allocatable :: kmat(:,:),pmat(:,:,:) complex(8), allocatable :: a(:,:),b(:,:),c(:,:) if (itimes.ge.ntimes) then write(*,*) write(*,'("Error(timestep): itimes >= ntimes : ",2I8)') itimes,ntimes write(*,*) stop end if allocate(vmt(npcmtmax,natmtot),vir(ngtot)) if (spinpol) allocate(bmt(npcmtmax,natmtot,ndmag)) ! generate the Kohn-Sham potential and magnetic field in spherical coordinates ! and multiply by the radial integration weights; also multiply the interstitial ! potential with the characteristic function call vblocal(vmt,vir,bmt) ! backup existing time-dependent Kohn-Sham eigenvectors if required call tdbackup ! time step length dt=times(itimes+1)-times(itimes) ! zero the kinetic energy engykn=0.d0 ! zero the total current jtot(:)=0.d0 ! loop over k-points call holdthd(nkpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecsv,evectv,evecsvt) & !$OMP PRIVATE(kmat,pmat,w,a,b,c) & !$OMP PRIVATE(i,j,t1,z1,z2) & !$OMP NUM_THREADS(nthd) allocate(evecsv(nstsv,nstsv),evectv(nstsv,nstsv),evecsvt(nstsv,nstsv)) allocate(kmat(nstsv,nstsv),pmat(nstsv,nstsv,3)) allocate(a(nstsv,nstsv),b(nstsv,nstsv),c(nstsv,nstsv)) !$OMP DO do ik=1,nkpt ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle ! get the kinetic matrix elements from file call getkmat(ik,kmat) ! get the momentum matrix elements from file call getpmat(vkl(:,ik),pmat) ! generate the Hamiltonian matrix in the ground-state second-variational basis call genhmlt(ik,vmt,vir,bmt,bsir,kmat,pmat,evectv) ! diagonalise the Hamiltonian to get third-variational eigenvectors if (spinpol.and.(.not.ncmag)) then ! collinear case requires block diagonalisation call eveqnzh(nstfv,nstsv,evectv,w) i=nstfv+1 call eveqnzh(nstfv,nstsv,evectv(i,i),w(i)) do i=1,nstfv do j=1,nstfv evectv(i,j+nstfv)=0.d0 evectv(i+nstfv,j)=0.d0 end do end do else ! non-collinear or spin-unpolarised: full diagonalisation call eveqnzh(nstsv,nstsv,evectv,w) end if ! read in ground-state eigenvectors call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! convert third-variational eigenvectors to first-variational basis call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,evectv,nstsv,zzero,a, & nstsv) ! time propagate instantaneous eigenvectors across one time step if (tdphi.eq.0.d0) then ! real time evolution do i=1,nstsv t1=-w(i)*dt z1=cmplx(cos(t1),sin(t1),8) b(:,i)=z1*a(:,i) end do else ! complex time evolution z2=cmplx(sin(tdphi),cos(tdphi),8) do i=1,nstsv t1=-w(i)*dt z1=exp(t1*z2) b(:,i)=z1*a(:,i) end do end if ! read in time-dependent Kohn-Sham eigenvectors (first-variational basis) call getevecsv(filext,ik,vkl(:,ik),evecsvt) ! apply time evolution operator call zgemm('C','N',nstsv,nstsv,nstsv,zone,a,nstsv,evecsvt,nstsv,zzero,c,nstsv) call zgemm('N','N',nstsv,nstsv,nstsv,zone,b,nstsv,c,nstsv,zzero,evecsvt,nstsv) ! orthonormalise the eigenvectors if required if (tdphi.ne.0.d0) call unitary(nstsv,evecsvt) ! add to the kinetic energy call engyknk(ik,kmat,evecsv,evecsvt) ! add to the total current call jtotk(ik,pmat,evecsv,evecsvt) ! write the new eigenvectors to file call putevecsv(filext,ik,evecsvt) end do !$OMP END DO deallocate(evecsv,evectv,evecsvt) deallocate(kmat,pmat,a,b,c) !$OMP END PARALLEL call freethd(nthd) deallocate(vmt,vir) if (spinpol) deallocate(bmt) ! add the kinetic energy and total current from each process and redistribute if (np_mpi.gt.1) then call mpi_allreduce(mpi_in_place,engykn,1,mpi_double_precision,mpi_sum,mpicom,& ierror) call mpi_allreduce(mpi_in_place,jtot,3,mpi_double_precision,mpi_sum,mpicom, & ierror) end if ! add the core kinetic energy engykn=engykn+engykncr ! coupling constant of the external A-field (-1/c) ca=-1.d0/solsc ! add the diamagnetic current to total do i=1,3 jtot(i)=jtot(i)+ca*afieldt(i,itimes)*(chgtot-chgstot(i)) end do ! symmetrise the vector call symvec(jtot) ! total current magnitude jtotm=sqrt(jtot(1)**2+jtot(2)**2+jtot(3)**2) ! write the time step to file if (mp_mpi) call writetimes ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/writetddos.f900000644000000000000000000000013214061636517015434 xustar0030 mtime=1623670095.806101665 30 atime=1623670094.652102736 30 ctime=1623670095.806101665 elk-7.2.42/src/writetddos.f900000644002504400250440000000254614061636517017500 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writetddos(fext) use modmain use modtddft implicit none ! arguments character(*), intent(in) :: fext ! local variables integer ik,ist,jst real(8) sm,t1 complex(8) z1 ! allocatable arrays real(8), allocatable :: occsvp(:,:) complex(8), allocatable :: evecsv(:,:),evecsvt(:,:) ! external functions complex(8), external :: zdotc allocate(occsvp(nstsv,nkpt)) do ik=1,nkpt allocate(evecsv(nstsv,nstsv),evecsvt(nstsv,nstsv)) ! read in ground-state eigenvectors call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! read in the time evolving eigenvectors call getevecsv('_TD.OUT',ik,vkl(:,ik),evecsvt) ! determine the time-dependent projected occupancies do ist=1,nstsv sm=0.d0 do jst=1,nstsv t1=occsv(jst,ik) if (abs(t1).lt.epsocc) cycle z1=zdotc(nstsv,evecsv(:,ist),1,evecsvt(:,jst),1) sm=sm+t1*(dble(z1)**2+aimag(z1)**2) end do occsvp(ist,ik)=sm end do ! write projected occupancies to file call putoccsv('P'//trim(fext),ik,occsvp(:,ik)) deallocate(evecsv,evecsvt) end do ! compute the effective electronic temperature call tdtemp(occsvp) ! write the DOS to file call dos(fext,.true.,occsvp) deallocate(occsvp) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeafpdt.f900000644000000000000000000000013214061636517015415 xustar0030 mtime=1623670095.808101663 30 atime=1623670094.653102735 30 ctime=1623670095.808101663 elk-7.2.42/src/writeafpdt.f900000644002504400250440000000255614061636517017462 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeafpdt use modmain use modtddft implicit none ! local variables integer its,i real(8) ed,t1 ! conversion factor of energy density to J/cm^2 real(8), parameter :: ced=ha_si/(100.d0*br_si)**2 ! allocatable arrays real(8), allocatable :: f(:),g(:),pd(:) ! external functions real(8), external :: splint ! allocate local arrays allocate(f(ntimes),g(ntimes),pd(ntimes)) ! compute the power density at each time step pd(:)=0.d0 do i=1,3 f(:)=afieldt(i,:) call fderiv(1,ntimes,times,f,g) pd(:)=pd(:)+g(:)**2 end do t1=1.d0/(8.d0*pi*solsc) pd(:)=t1*pd(:) ! write the power density to file open(50,file='AFPDT.OUT',form='FORMATTED') do its=1,ntimes write(50,'(2G18.10)') times(its),pd(its) end do close(50) ! integrate power density to find the total energy density ed=splint(ntimes,times,pd) open(50,file='AFTED.OUT',form='FORMATTED') write(50,*) write(50,'("Total energy density : ",G18.10)') ed write(50,'(" in J/cm² : ",G18.10)') ed*ced close(50) write(*,*) write(*,'("Info(writeafpdt):")') write(*,'(" Power density of A-field written to AFPDT.OUT")') write(*,'(" Total energy density of A-field written to AFTED.OUT")') deallocate(f,g,pd) end subroutine elk-7.2.42/src/PaxHeaders.21776/readafindt.f900000644000000000000000000000013214061636517015345 xustar0030 mtime=1623670095.809101662 30 atime=1623670094.655102733 30 ctime=1623670095.809101662 elk-7.2.42/src/readafindt.f900000644002504400250440000000101414061636517017376 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Peter Elliott, J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readafindt use modtddft implicit none ! local variables integer ios open(50,file='AFINDT.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readafindt): error opening AFINDT.OUT")') write(*,*) stop end if read(50,*) afindt(:,:) close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/genvfxc.f900000644000000000000000000000013014061636517014702 xustar0029 mtime=1623670095.81110166 30 atime=1623670094.657102731 29 ctime=1623670095.81110166 elk-7.2.42/src/genvfxc.f900000644002504400250440000000330114061636517016736 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2011 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvfxc(tq0,t3hw,gclgq,nm,vchi0,eps0,epsi,vfxc) use modmain use modtddft implicit none ! arguments logical, intent(in) :: tq0,t3hw real(8), intent(in) :: gclgq(ngrf) integer, intent(in) :: nm complex(8), intent(in) :: vchi0(nm,nm,nwrf) complex(8), intent(in) :: eps0(nm,nm,nwrf) complex(8), intent(in) :: epsi(nm,nm,nwrf) complex(8), intent(out) :: vfxc(nm,nm,nwrf) ! local variables integer iw,i,j complex(8) z1 ! allocatable arrays complex(8), allocatable :: a(:,:) ! compute v^(-1/2) f_xc v^(-1/2) select case(fxctype(1)) case(0,1) ! RPA vfxc(:,:,:)=0.d0 return case(3) ! ALDA if (tq0.and.t3hw) then call genvfxcg(gclgq,nm,vfxc(3,3,1)) ! the head and wings are zero vfxc(1:3,:,:)=0.d0 vfxc(4:,1:3,:)=0.d0 else call genvfxcg(gclgq,nm,vfxc) end if case(200) ! long-range contribution with dynamic correlations vfxc(:,:,:)=0.d0 do i=1,nm vfxc(i,i,:)=-(fxclrc(1)+fxclrc(2)*dble(wrf(:))**2)/fourpi end do case(210,211) ! bootstrap vfxc(:,:,:)=0.d0 if (tq0.and.t3hw) then z1=(eps0(1,1,1)+eps0(2,2,1)+eps0(3,3,1))/3.d0 else z1=eps0(1,1,1) end if z1=-1.d0/(z1-1.d0) do i=1,nm do j=1,nm vfxc(i,j,:)=z1*epsi(i,j,1) end do end do case default write(*,*) write(*,'("Error(genvfxc): fxctype not defined : ",3I8)') fxctype write(*,*) stop end select ! right multiply by v^1/2 chi0 v^1/2 allocate(a(nm,nm)) do iw=1,nwrf a(:,:)=vfxc(:,:,iw) call zgemm('N','N',nm,nm,nm,zone,a,nm,vchi0(:,:,iw),nm,zzero,vfxc(:,:,iw),nm) end do deallocate(a) end subroutine elk-7.2.42/src/PaxHeaders.21776/genfxcr.f900000644000000000000000000000013114061636517014677 xustar0030 mtime=1623670095.812101659 29 atime=1623670094.65810273 30 ctime=1623670095.812101659 elk-7.2.42/src/genfxcr.f900000644002504400250440000000625414061636517016744 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genfxcr(tsh,fxcmt,fxcir) use modmain use modtddft use modfxcifc implicit none ! arguments logical, intent(in) :: tsh real(8), intent(out) :: fxcmt(npmtmax,natmtot),fxcir(ngtot) ! local variables integer idm,is,ias integer nr,nri,ir,np,i,n real(8) t1 real(8), allocatable :: rho(:),rhoup(:),rhodn(:),mag(:,:) real(8), allocatable :: fxc(:),fxcuu(:),fxcud(:),fxcdd(:) ! number of independent spin components n=npmtmax allocate(rho(n),fxc(n)) if (spinpol) then allocate(mag(n,3)) n=max(n,ngtot) allocate(rhoup(n),rhodn(n)) allocate(fxcuu(n),fxcud(n),fxcdd(n)) end if !---------------------------! ! muffin-tin kernel ! !---------------------------! do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) ! compute the density in spherical coordinates call rbsht(nr,nri,rhomt(:,ias),rho) if (spinpol) then !------------------------! ! spin-polarised ! !------------------------! ! magnetisation in spherical coordinates do idm=1,ndmag call rbsht(nr,nri,magmt(:,ias,idm),mag(:,idm)) end do if (ncmag) then ! non-collinear (use Kubler's trick) do i=1,np ! compute rhoup=(rho+|m|)/2 and rhodn=(rho-|m|)/2 t1=sqrt(mag(i,1)**2+mag(i,2)**2+mag(i,3)**2) rhoup(i)=0.5d0*(rho(i)+t1) rhodn(i)=0.5d0*(rho(i)-t1) end do else ! collinear do i=1,np ! compute rhoup=(rho+m_z)/2 and rhodn=(rho-m_z)/2 rhoup(i)=0.5d0*(rho(i)+mag(i,1)) rhodn(i)=0.5d0*(rho(i)-mag(i,1)) end do end if ! compute fxc call fxcifc(fxctype,n=np,rhoup=rhoup,rhodn=rhodn,fxcuu=fxcuu,fxcud=fxcud, & fxcdd=fxcdd) ! form the scalar quantity dv/drho do i=1,np fxc(i)=0.25d0*(fxcuu(i)+2.d0*fxcud(i)+fxcdd(i)) end do else !--------------------------! ! spin-unpolarised ! !--------------------------! call fxcifc(fxctype,n=np,rho=rho,fxc=fxc) end if if (tsh) then ! convert fxc to spherical harmonics if required call rfsht(nr,nri,fxc,fxcmt(:,ias)) else fxcmt(1:np,ias)=fxc(1:np) end if end do !-----------------------------! ! interstitial kernel ! !-----------------------------! if (spinpol) then !------------------------! ! spin-polarised ! !------------------------! if (ncmag) then ! non-collinear do ir=1,ngtot t1=sqrt(magir(ir,1)**2+magir(ir,2)**2+magir(ir,3)**2) rhoup(ir)=0.5d0*(rhoir(ir)+t1) rhodn(ir)=0.5d0*(rhoir(ir)-t1) end do else ! collinear do ir=1,ngtot rhoup(ir)=0.5d0*(rhoir(ir)+magir(ir,1)) rhodn(ir)=0.5d0*(rhoir(ir)-magir(ir,1)) end do end if ! compute fxc call fxcifc(fxctype,n=ngtot,rhoup=rhoup,rhodn=rhodn,fxcuu=fxcuu,fxcud=fxcud, & fxcdd=fxcdd) do ir=1,ngtot fxcir(ir)=0.25d0*(fxcuu(ir)+2.d0*fxcud(ir)+fxcdd(ir)) end do else !--------------------------! ! spin-unpolarised ! !--------------------------! call fxcifc(fxctype,n=ngtot,rho=rhoir,fxc=fxcir) end if deallocate(rho,fxc) if (spinpol) then deallocate(mag,rhoup,rhodn) deallocate(fxcuu,fxcud,fxcdd) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/tdtemp.f900000644000000000000000000000013214061636517014541 xustar0030 mtime=1623670095.814101657 30 atime=1623670094.660102729 30 ctime=1623670095.814101657 elk-7.2.42/src/tdtemp.f900000644002504400250440000000241414061636517016577 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tdtemp(occsvp) use modmain use modtddft implicit none ! arguments real(8), intent(in) :: occsvp(nstsv,nkpt) ! local variables integer, parameter :: maxit=1000 integer ik,ist,it real(8), parameter :: eps=1.d-6 real(8) sw,dsw,sm,sp real(8) x,t1,t2,t3 ! external functions real(8), external :: sdelta_fd,stheta_fd ! initial smearing width sw=1.d-6 ! initial smearing width step size dsw=1.d-6 sp=0.d0 do it=1,maxit t1=1.d0/sw sm=0.d0 do ik=1,nkpt do ist=1,nstsv x=(efermi-evalsv(ist,ik))*t1 t2=occmax*stheta_fd(x) t3=sdelta_fd(x)*x*t1 sm=sm+(occsvp(ist,ik)-t2)*t3 end do end do if ((sm*sp).lt.0.d0) then dsw=-0.5d0*dsw if (abs(dsw).lt.eps) goto 10 else dsw=1.5d0*dsw end if sp=sm sw=sw+dsw if ((sw.lt.0.d0).or.(sw.gt.1.d6)) exit end do write(*,*) write(*,'("Warning(tdtemp): could not estimate effective temperature")') return 10 continue ! write effective temperature to file t1=sw/kboltz open(50,file='TDTEMP.OUT',form='FORMATTED',position='APPEND') write(50,'(2G18.10)') times(itimes),t1 close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/writetdlsj.f900000644000000000000000000000013214061636517015437 xustar0030 mtime=1623670095.815101657 30 atime=1623670094.662102727 30 ctime=1623670095.815101657 elk-7.2.42/src/writetdlsj.f900000644002504400250440000000234614061636517017501 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writetdlsj use modmain use modtddft use modmpi implicit none ! local variables integer is,ia,ias real(8) xl(3),xs(3) character(256) fext ! allocatable arrays complex(8), allocatable :: dmat(:,:,:,:,:) if (ntswrite(1).le.0) return if (mod(itimes-1,ntswrite(1)).ne.0) return if ((itimes.gt.1).and.(itimes.lt.ntswrite(2))) return allocate(dmat(lmmaxo,nspinor,lmmaxo,nspinor,natmtot)) ! generate the density matrix in each muffin-tin call gendmat(.false.,.false.,0,lmaxo,lmmaxo,dmat) if (mp_mpi) then write(fext,'("_TS",I8.8,".OUT")') itimes open(50,file='LSJ'//trim(fext),form='FORMATTED') do is=1,nspecies write(50,*) write(50,'("Species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) ! calculate the expectation value of L and S call dmatls(dmat(:,:,:,:,ias),xl,xs) write(50,'(" atom : ",I4)') ia write(50,'(" L : ",3G18.10)') xl(:) write(50,'(" S : ",3G18.10)') xs(:) write(50,'(" J : ",3G18.10)') xl(:)+xs(:) end do end do close(50) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genspfxcr.f900000644000000000000000000000013214061636517015243 xustar0030 mtime=1623670095.817101655 30 atime=1623670094.663102726 30 ctime=1623670095.817101655 elk-7.2.42/src/genspfxcr.f900000644002504400250440000001205614061636517017304 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genspfxcr(tsh,fxcmt,fxcir) use modmain use modtddft use modfxcifc implicit none ! arguments logical, intent(in) :: tsh real(8), intent(out) :: fxcmt(npmtmax,natmtot,4,4),fxcir(ngtot,4,4) ! local variables integer idm,is,ias integer nr,nri,ir,np,i,j,n real(8) t1 ! allocatable arrays real(8), allocatable :: rho(:),rhoup(:),rhodn(:) real(8), allocatable :: mag(:,:),magu(:,:),magm(:) real(8), allocatable :: bxc(:,:),bxcp(:) real(8), allocatable :: fxcuu(:),fxcud(:),fxcdd(:) real(8), allocatable :: fxc(:,:,:) if (.not.spinpol) then write(*,*) write(*,'("Error(genspfxcr): spin-unpolarised calculation")') write(*,*) stop end if ! allocate local arrays n=npmtmax allocate(rho(n),mag(n,ndmag)) allocate(bxc(n,ndmag),fxc(n,4,4)) n=max(n,ngtot) allocate(rhoup(n),rhodn(n)) allocate(magu(3,n),magm(n),bxcp(n)) allocate(fxcuu(n),fxcud(n),fxcdd(n)) !---------------------------! ! muffin-tin kernel ! !---------------------------! do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) np=npmt(is) ! compute the density in spherical coordinates call rbsht(nr,nri,rhomt(:,ias),rho) do idm=1,ndmag ! magnetisation in spherical coordinates call rbsht(nr,nri,magmt(:,ias,idm),mag(:,idm)) ! B_xc in spherical coordinates call rbsht(nr,nri,bxcmt(:,ias,idm),bxc(:,idm)) end do if (ncmag) then ! non-collinear (use Kubler's trick) do i=1,np ! compute |m| magm(i)=sqrt(mag(i,1)**2+mag(i,2)**2+mag(i,3)**2) ! compute rhoup=(rho+|m|)/2 and rhodn=(rho-|m|)/2 rhoup(i)=0.5d0*(rho(i)+magm(i)) rhodn(i)=0.5d0*(rho(i)-magm(i)) ! unit vector m/|m| t1=1.d0/(magm(i)+1.d-8) magu(1,i)=t1*mag(i,1) magu(2,i)=t1*mag(i,2) magu(3,i)=t1*mag(i,3) ! compute B_xc.(m/|m|) bxcp(i)=bxc(i,1)*magu(1,i)+bxc(i,2)*magu(2,i)+bxc(i,3)*magu(3,i) end do else ! collinear do i=1,np ! compute |m| = |m_z| magm(i)=abs(mag(i,1)) ! compute rhoup=(rho+|m|)/2 and rhodn=(rho-|m|)/2 rhoup(i)=0.5d0*(rho(i)+magm(i)) rhodn(i)=0.5d0*(rho(i)-magm(i)) ! unit vector m/|m| magu(1,i)=0.d0 magu(2,i)=0.d0 if (mag(i,1).gt.0.d0) then magu(3,i)=1.d0 else magu(3,i)=-1.d0 end if ! compute B_xc.(m/|m|) bxcp(i)=bxc(i,1)*magu(3,i) end do end if ! compute f_xc in U(2) x U(2) basis call fxcifc(fxctype,n=np,rhoup=rhoup,rhodn=rhodn,fxcuu=fxcuu,fxcud=fxcud, & fxcdd=fxcdd) ! transform f_xc to O(1) x O(3) basis (upper triangular part) call tfm2213(np,fxcuu,fxcud,fxcdd,magu,magm,bxcp,npmtmax,fxc) do i=1,4 do j=i,4 if (tsh) then ! convert to spherical harmonics if required call rfsht(nr,nri,fxc(:,i,j),fxcmt(:,ias,i,j)) else call dcopy(np,fxc(:,i,j),fxcmt(:,ias,i,j),1) end if end do end do end do !-----------------------------! ! interstitial kernel ! !-----------------------------! if (ncmag) then ! non-collinear do ir=1,ngtot magm(ir)=sqrt(magir(ir,1)**2+magir(ir,2)**2+magir(ir,3)**2) rhoup(ir)=0.5d0*(rhoir(ir)+magm(ir)) rhodn(ir)=0.5d0*(rhoir(ir)-magm(ir)) t1=1.d0/(magm(ir)+1.d-8) magu(1,ir)=t1*magir(ir,1) magu(2,ir)=t1*magir(ir,2) magu(3,ir)=t1*magir(ir,3) ! compute B_xc.(m/|m|) bxcp(ir)=bxcir(ir,1)*magu(1,ir) & +bxcir(ir,2)*magu(2,ir) & +bxcir(ir,3)*magu(3,ir) end do else ! collinear do ir=1,ngtot magm(ir)=abs(magir(ir,1)) rhoup(ir)=0.5d0*(rhoir(ir)+magm(ir)) rhodn(ir)=0.5d0*(rhoir(ir)-magm(ir)) magu(1,ir)=0.d0 magu(2,ir)=0.d0 if (magir(ir,1).gt.0.d0) then magu(3,ir)=1.d0 else magu(3,ir)=-1.d0 end if ! compute B_xc.(m/|m|) bxcp(ir)=bxcir(ir,1)*magu(3,ir) end do end if ! compute f_xc in U(2) x U(2) basis call fxcifc(fxctype,n=ngtot,rhoup=rhoup,rhodn=rhodn,fxcuu=fxcuu,fxcud=fxcud, & fxcdd=fxcdd) ! transform f_xc to O(1) x O(3) basis call tfm2213(ngtot,fxcuu,fxcud,fxcdd,magu,magm,bxcp,ngtot,fxcir) deallocate(rho,mag,bxc,fxc) deallocate(rhoup,rhodn) deallocate(magu,magm,bxcp) deallocate(fxcuu,fxcud,fxcdd) return contains pure subroutine tfm2213(n,fxcuu,fxcud,fxcdd,magu,magm,bxcp,ld,fxc) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: fxcuu(n),fxcud(n),fxcdd(n) real(8), intent(in) :: magu(3,n),magm(n),bxcp(n) integer, intent(in) :: ld real(8), intent(out) :: fxc(ld,4,4) ! local variables integer i real(8) t1,t2 do i=1,n ! charge-charge fxc(i,1,1)=0.25d0*(fxcuu(i)+2.d0*fxcud(i)+fxcdd(i)) ! charge-spin t1=0.25d0*(fxcuu(i)-fxcdd(i)) fxc(i,1,2)=t1*magu(1,i) fxc(i,1,3)=t1*magu(2,i) fxc(i,1,4)=t1*magu(3,i) ! spin-spin if (magm(i).gt.1.d-14) then t1=bxcp(i)/magm(i) else t1=0.d0 end if t2=0.25d0*(fxcuu(i)-2.d0*fxcud(i)+fxcdd(i))-t1 fxc(i,2,2)=t2*magu(1,i)*magu(1,i)+t1 fxc(i,2,3)=t2*magu(1,i)*magu(2,i) fxc(i,2,4)=t2*magu(1,i)*magu(3,i) fxc(i,3,3)=t2*magu(2,i)*magu(2,i)+t1 fxc(i,3,4)=t2*magu(2,i)*magu(3,i) fxc(i,4,4)=t2*magu(3,i)*magu(3,i)+t1 end do end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/genvfxcg.f900000644000000000000000000000013214061636517015053 xustar0030 mtime=1623670095.818101654 30 atime=1623670094.665102724 30 ctime=1623670095.818101654 elk-7.2.42/src/genvfxcg.f900000644002504400250440000000216414061636517017113 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2012 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genvfxcg(gclgq,nm,vfxc) use modmain implicit none ! arguments real(8), intent(in) :: gclgq(ngrf) integer, intent(in) :: nm complex(8), intent(out) :: vfxc(nm,nm,nwrf) ! local variables integer ig,jg,kg,iv(3) ! allocatable arrays real(8), allocatable :: fxcmt(:,:),fxcir(:) complex(8), allocatable :: fxcg(:) allocate(fxcmt(npmtmax,natmtot),fxcir(ngtot)) allocate(fxcg(ngtot)) ! generate the kernel f_xc in real-space call genfxcr(.true.,fxcmt,fxcir) ! Fourier transform the kernel to G-space call zftrf(ngtot,ivg,vgc,fxcmt,fxcir,fxcg) do ig=1,ngrf do jg=1,ngrf iv(:)=ivg(:,ig)-ivg(:,jg) if ((iv(1).ge.intgv(1,1)).and.(iv(1).le.intgv(2,1)).and. & (iv(2).ge.intgv(1,2)).and.(iv(2).le.intgv(2,2)).and. & (iv(3).ge.intgv(1,3)).and.(iv(3).le.intgv(2,3))) then kg=ivgig(iv(1),iv(2),iv(3)) vfxc(ig,jg,:)=fxcg(kg)/(gclgq(ig)*gclgq(jg)) end if end do end do deallocate(fxcmt,fxcir,fxcg) end subroutine elk-7.2.42/src/PaxHeaders.21776/tddftsplr.f900000644000000000000000000000013214061636517015252 xustar0030 mtime=1623670095.820101652 30 atime=1623670094.666102723 30 ctime=1623670095.820101652 elk-7.2.42/src/tddftsplr.f900000644002504400250440000002072114061636517017311 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tddftsplr use modmain use modtest use modmpi use modomp implicit none ! local variables integer ik,isym,iq,iw integer ig,jg,i,j,n integer nthd real(8) v(3) complex(8) a(4,4),b(4,4),z1 character(256) fname ! allocatable arrays integer(8), allocatable :: lock(:) real(8), allocatable :: vgqc(:,:),gqc(:),gclgq(:),jlgqr(:,:,:) complex(8), allocatable :: ylmgq(:,:),sfacgq(:,:) complex(8), allocatable :: chi(:,:,:,:,:),chit(:),fxc(:,:,:,:) complex(8), allocatable :: c(:,:),d(:,:,:,:) if (.not.spinpol) then write(*,*) write(*,'("Error(tddftsplr): spin-unpolarised calculation")') write(*,*) stop end if ! initialise global variables call init0 call init1 call init2 call init3 ! check q-vector is commensurate with k-point grid v(:)=dble(ngridk(:))*vecql(:) v(:)=abs(v(:)-nint(v(:))) if ((v(1).gt.epslat).or.(v(2).gt.epslat).or.(v(3).gt.epslat)) then write(*,*) write(*,'("Error(tddftsplr): q-vector incommensurate with k-point grid")') write(*,'(" ngridk : ",3I6)') ngridk write(*,'(" vecql : ",3G18.10)') vecql write(*,*) stop end if ! find the equivalent reduced q-point call findqpt(vecql,isym,iq) ! read density and potentials from file call readstate ! read Fermi energy from a file call readfermi ! find the new linearisation energies call linengy ! generate the APW radial functions call genapwfr ! generate the local-orbital radial functions call genlofr ! get the eigenvalues and occupancies from file do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) call getoccsv(filext,ik,vkl(:,ik),occsv(:,ik)) end do ! generate the G+q-vectors and related functions allocate(vgqc(3,ngrf),gqc(ngrf),jlgqr(njcmax,nspecies,ngrf)) allocate(ylmgq(lmmaxo,ngrf),sfacgq(ngrf,natmtot)) call gengqf(ngrf,vecqc,vgqc,gqc,jlgqr,ylmgq,sfacgq) deallocate(vgqc) ! initialise the OpenMP locks allocate(lock(nwrf)) do iw=1,nwrf call omp_init_lock(lock(iw)) end do ! compute chi0 allocate(chi(ngrf,4,ngrf,4,nwrf)) chi(:,:,:,:,:)=0.d0 call holdthd(nkptnr/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) !$OMP DO do ik=1,nkptnr ! distribute among MPI processes if (mod(ik-1,np_mpi).ne.lp_mpi) cycle !$OMP CRITICAL(tddftsplr_) write(*,'("Info(tddftsplr): ",I6," of ",I6," k-points")') ik,nkptnr !$OMP END CRITICAL(tddftsplr_) call genspchi0(ik,lock,scissor,vecql,jlgqr,ylmgq,sfacgq,chi) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! destroy the OpenMP locks do iw=1,nwrf call omp_destroy_lock(lock(iw)) end do deallocate(lock) ! add chi0 from each process and redistribute if (np_mpi.gt.1) then n=ngrf*4*ngrf*4*nwrf call mpi_allreduce(mpi_in_place,chi,n,mpi_double_complex,mpi_sum,mpicom, & ierror) end if ! transform chi0 from 2x2 to 1x3 basis do iw=1,nwrf do ig=1,ngrf do jg=1,ngrf a(:,:)=chi(ig,:,jg,:,iw) call tfm2213(a,b) chi(ig,:,jg,:,iw)=b(:,:) end do end do end do ! generate transverse chi0 for the collinear case if (.not.ncmag) then allocate(chit(nwrf)) do iw=1,nwrf a(:,:)=chi(1,:,1,:,iw) call tfm13t(a,b) chit(iw)=b(2,2) end do end if ! write chi0 to file if (mp_mpi) then ! write chi0 to file in 1x3 basis do i=1,4 do j=1,4 write(fname,'("CHI0_",2I1,".OUT")') i-1,j-1 open(50,file=trim(fname),form='FORMATTED',action='WRITE') do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(chi(1,i,1,j,iw)) end do write(50,*) do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(chi(1,i,1,j,iw)) end do close(50) end do end do ! write transverse chi0 for collinear case if (.not.ncmag) then open(50,file='CHI0_T.OUT',form='FORMATTED',action='WRITE') do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(chit(iw)) end do write(50,*) do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(chit(iw)) end do close(50) end if end if ! compute f_xc in G-space allocate(fxc(ngrf,4,ngrf,4)) call genspfxcg(fxc) ! generate the Coulomb Green's function in G+q-space regularised for q=0 allocate(gclgq(ngrf)) call gengclgq(.true.,iq,ngrf,gqc,gclgq) ! add the regularised Coulomb interaction to f_xc to give f_Hxc do ig=1,ngrf fxc(ig,1,ig,1)=fxc(ig,1,ig,1)+gclgq(ig) end do deallocate(gclgq) ! matrix size n=4*ngrf allocate(c(n,n),d(ngrf,4,ngrf,4)) ! loop over frequencies do iw=1,nwrf ! multiply f_Hxc by -chi0 from the left z1=-1.d0 call zgemm('N','N',n,n,n,z1,chi(:,:,:,:,iw),n,fxc,n,zzero,c,n) ! add the identity do i=1,n c(i,i)=c(i,i)+1.d0 end do ! invert the matrix call zminv(n,c) ! multiply by chi0 on the right and store in chi call zgemm('N','N',n,n,n,zone,c,n,chi(:,:,:,:,iw),n,zzero,d,n) chi(:,:,:,:,iw)=d(:,:,:,:) end do deallocate(c,d) ! generate transverse chi for the collinear case if (.not.ncmag) then do iw=1,nwrf a(:,:)=chi(1,:,1,:,iw) call tfm13t(a,b) chit(iw)=b(2,2) end do end if if (mp_mpi) then ! write the complete chi matrix if required if (task.eq.331) then open(120,file='CHI.OUT',form='UNFORMATTED',action='WRITE') write(120) chi close(120) end if ! write chi for G = G' = 0 in the 1x3 basis do i=1,4 do j=1,4 write(fname,'("CHI_",2I1,".OUT")') i-1,j-1 open(50,file=trim(fname),form='FORMATTED',action='WRITE') do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(chi(1,i,1,j,iw)) end do write(50,*) do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(chi(1,i,1,j,iw)) end do close(50) end do end do ! write transverse chi for collinear case if (.not.ncmag) then open(50,file='CHI_T.OUT',form='FORMATTED',action='WRITE') do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),dble(chit(iw)) end do write(50,*) do iw=1,nwrf write(50,'(2G18.10)') dble(wrf(iw)),aimag(chit(iw)) end do close(50) end if write(*,*) write(*,'("Info(tddftsplr):")') write(*,'(" Spin-dependent response function chi_ij(G,G'',q,w) written to & &CHI_ij.OUT")') write(*,'(" for i,j = 0-3; G = G'' = 0; and all wplot frequencies")') write(*,'(" q-vector (lattice coordinates) : ")') write(*,'(3G18.10)') vecql write(*,'(" q-vector length : ",G18.10)') gqc(1) write(*,*) write(*,'(" The elements of chi labeled by (i,j) form the 4x4 matrix :")') write(*,*) write(*,'(" (_|_ _ _)")') write(*,'(" chi(G,G'',q,w) = ( | )")') write(*,'(" ( | )")') write(*,'(" ( | )")') write(*,*) write(*,'(" (0,0) is the charge-charge response drho/dv")') write(*,'(" (0,1-3) is the charge-magnetisation response drho/dB")') write(*,'(" (1-3,0) is the magnetisation-charge response dm/v")') write(*,'(" (1-3,1-3) is the magnetisation-magnetisation response dm/dB")') write(*,*) write(*,'(" Non-interacting Kohn-Sham reponse function written to & &CHI0_ij.OUT")') if (.not.ncmag) then write(*,*) write(*,'(" Transverse components corresponding to m_+- = m_x +- im_y")') write(*,'(" written to CHI_T.OUT and CHI0_T.OUT")') end if if (task.eq.331) then write(*,*) write(*,'(" Complete response function for all G, G'' written to binary & &file CHI.OUT")') write(*,'(" (array index ordering changed from version 4.5.16 onwards)")') end if end if ! write transverse response to test file call writetest(330,'transverse response function',nv=nwrf,tol=1.d-2,zva=chit) deallocate(gqc,ylmgq,sfacgq,chi,fxc) if (.not.ncmag) deallocate(chit) return contains pure subroutine tfm2213(a,b) implicit none ! arguments complex(8), intent(in) :: a(4,4) complex(8), intent(out) :: b(4,4) ! local variables integer i,j complex(8) c(4,4),z1 do i=1,4 c(i,1)=a(i,1)+a(i,4) c(i,2)=a(i,2)+a(i,3) z1=a(i,2)-a(i,3) c(i,3)=cmplx(aimag(z1),-dble(z1),8) c(i,4)=a(i,1)-a(i,4) end do do j=1,4 b(1,j)=c(1,j)+c(4,j) b(2,j)=c(2,j)+c(3,j) z1=c(2,j)-c(3,j) b(3,j)=cmplx(-aimag(z1),dble(z1),8) b(4,j)=c(1,j)-c(4,j) end do end subroutine pure subroutine tfm13t(a,b) implicit none ! arguments complex(8), intent(in) :: a(4,4) complex(8), intent(out) :: b(4,4) ! local variables integer i,j complex(8) c(4,4),z1 do i=1,4 c(i,1)=a(i,1) z1=a(i,3) c(i,2)=a(i,2)+cmplx(aimag(z1),-dble(z1),8) c(i,3)=a(i,2)+cmplx(-aimag(z1),dble(z1),8) c(i,4)=a(i,4) end do do j=1,4 b(1,j)=c(1,j) z1=c(3,j) b(2,j)=c(2,j)+cmplx(-aimag(z1),dble(z1),8) b(3,j)=c(2,j)+cmplx(aimag(z1),-dble(z1),8) b(4,j)=c(4,j) end do end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/genspfxcg.f900000644000000000000000000000013014061636517015226 xustar0029 mtime=1623670095.82210165 30 atime=1623670094.668102721 29 ctime=1623670095.82210165 elk-7.2.42/src/genspfxcg.f900000644002504400250440000000233614061636517017271 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2013 S. Sharma, J. K. Dewhurst and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genspfxcg(fxc) use modmain implicit none ! arguments complex(8), intent(out) :: fxc(ngrf,4,ngrf,4) ! local variables integer ig,jg,kg integer iv(3),i,j complex(8) z1 ! allocatable arrays real(8), allocatable :: fxcmt(:,:,:,:),fxcir(:,:,:) complex(8), allocatable :: fxcg(:) allocate(fxcmt(npmtmax,natmtot,4,4),fxcir(ngtot,4,4)) allocate(fxcg(ngtot)) ! generate the kernel f_xc in real-space call genspfxcr(.true.,fxcmt,fxcir) ! Fourier transform the kernel to G-space do i=1,4 do j=i,4 call zftrf(ngtot,ivg,vgc,fxcmt(:,:,i,j),fxcir(:,i,j),fxcg) do ig=1,ngrf do jg=1,ngrf iv(:)=ivg(:,ig)-ivg(:,jg) if ((iv(1).ge.intgv(1,1)).and.(iv(1).le.intgv(2,1)).and. & (iv(2).ge.intgv(1,2)).and.(iv(2).le.intgv(2,2)).and. & (iv(3).ge.intgv(1,3)).and.(iv(3).le.intgv(2,3))) then kg=ivgig(iv(1),iv(2),iv(3)) z1=fxcg(kg) fxc(ig,i,jg,j)=z1 fxc(jg,j,ig,i)=conjg(z1) end if end do end do end do end do deallocate(fxcmt,fxcir,fxcg) end subroutine elk-7.2.42/src/PaxHeaders.21776/genafieldt.f900000644000000000000000000000013214061636517015346 xustar0030 mtime=1623670095.823101649 30 atime=1623670094.670102719 30 ctime=1623670095.823101649 elk-7.2.42/src/genafieldt.f900000644002504400250440000001114114061636517017401 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: genafieldt ! !INTERFACE: subroutine genafieldt ! !USES: use modmain use modtddft ! !DESCRIPTION: ! Generates a time-dependent vector potential, ${\bf A}(t)$, representing a ! laser pulse and stores it in {\tt AFIELDT.OUT}. The vector potential is ! constructed from a sum of sinusoidal waves, each modulated with a Gaussian ! envelope function: ! $$ {\bf A}(t)={\bf A}_0 ! \frac{e^{-(t-t_0)^2/2\sigma^2}}{\sigma\sqrt{2\pi}} ! \sin(\omega(t-t_0)+\phi). $$ ! Seven real numbers have to be specified for each pulse, namely the vector ! amplitude ${\bf A}_0$, peak time $t_0$, full-width at half-maximum ! $d=2\sqrt{2\ln 2}\sigma$, frequency $\omega$ and phase $\phi$. ! ! !REVISION HISTORY: ! Created May 2012 (K. Krieger) ! Modified, January 2014 (S. Sharma) ! Modified, February 2014 (JKD) !EOP !BOC implicit none ! local variables integer its,i real(8) a0(3),t0,d,w,phi,rc real(8) ft,ppd,s,t,t1,t2,t3,t4 ! conversion factor of power density to W/cm^2 real(8), parameter :: cpd=ha_si/(t_si*(100.d0*br_si)**2) ! generate the time step grid call gentimes open(50,file='TD_INFO.OUT',form='FORMATTED') write(50,*) write(50,'("(All units are atomic unless otherwise specified)")') write(50,*) write(50,'("1 atomic unit of time is ",G18.10," attoseconds")') t_si*1.d18 write(50,*) write(50,'("Total simulation time : ",G18.10)') tstime write(50,'(" in attoseconds : ",G18.10)') tstime*t_si*1.d18 write(50,*) write(50,'("Time step length : ",G18.10)') dtimes write(50,'(" in attoseconds : ",G18.10)') dtimes*t_si*1.d18 write(50,*) write(50,'("Number of time steps : ",I8)') ntimes write(50,*) write(50,'("Number of laser pulses : ",I6)') npulse write(50,'("Number of ramps : ",I6)') nramp ! allocate and zero time-dependent A-field array if (allocated(afieldt)) deallocate(afieldt) allocate(afieldt(3,ntimes)) afieldt(:,:)=0.d0 ! loop over laser pulses do i=1,npulse ! vector amplitude a0(1:3)=pulse(1:3,i) ! frequency w=pulse(4,i) ! phase phi=pulse(5,i) ! chirp rate rc=pulse(6,i) ! peak time t0=pulse(7,i) ! full-width at half-maximum d=pulse(8,i) ! sigma s=d/(2.d0*sqrt(2.d0*log(2.d0))) ! write information to TD_INFO.OUT write(50,*) write(50,'("Pulse : ",I6)') i write(50,'(" vector amplitude : ",3G18.10)') a0(:) write(50,'(" laser frequency : ",G18.10)') w write(50,'(" in eV : ",G18.10)') w*ha_ev write(50,'(" laser wavelength (Angstroms) : ",G18.10)') 1.d10/(w*ha_im) write(50,'(" phase (degrees) : ",G18.10)') phi write(50,'(" chirp rate : ",G18.10)') rc write(50,'(" peak time : ",G18.10)') t0 write(50,'(" full-width at half-maximum : ",G18.10)') d write(50,'(" Gaussian sigma = FWHM/2*sqrt(2*ln 2) : ",G18.10)') s t1=a0(1)**2+a0(2)**2+a0(3)**2 ppd=t1*(w**2)/(8.d0*pi*solsc) write(50,'(" peak laser power density : ",G18.10)') ppd write(50,'(" in W/cm² : ",G18.10)') ppd*cpd ! loop over time steps do its=1,ntimes t=times(its) t1=t-t0 t2=-0.5d0*(t1/s)**2 t3=w*t1+phi*pi/180.d0+0.5d0*rc*t**2 ft=exp(t2)*sin(t3) if (abs(ft).lt.1.d-20) ft=0.d0 afieldt(:,its)=afieldt(:,its)+a0(:)*ft end do end do ! loop over ramps do i=1,nramp ! vector amplitude a0(1:3)=ramp(1:3,i) ! ramp start time t0=ramp(4,i) ! linear coefficient t1=ramp(5,i) ! quadratic coefficient t2=ramp(6,i) ! cubic coefficient t3=ramp(7,i) ! quartic coefficient t4=ramp(8,i) ! write information to TD_INFO.OUT write(50,*) write(50,'("Ramp : ",I6)') i write(50,'(" vector amplitude : ",3G18.10)') a0(:) write(50,'(" ramp start time : ",G18.10)') t0 write(50,'(" coefficients : ",4G18.10)') t1,t2,t3,t4 ! loop over time steps do its=1,ntimes t=times(its)-t0 if (t.gt.0.d0) then ft=t*(t1+t*(t2+t*(t3+t*t4))) afieldt(:,its)=afieldt(:,its)+a0(:)*ft end if end do end do close(50) ! write the vector potential to AFIELDT.OUT open(50,file='AFIELDT.OUT',form='FORMATTED') write(50,'(I8," : number of time steps")') ntimes do its=1,ntimes write(50,'(I8,4G18.10)') its,times(its),afieldt(:,its) end do close(50) write(*,*) write(*,'("Info(genafieldt):")') write(*,'(" Time-dependent A-field written to AFIELDT.OUT")') write(*,'(" Laser pulse and ramp parameters written to TD_INFO.OUT")') write(*,*) write(*,'(" 1 atomic unit of time is ",G18.10," attoseconds")') t_si*1.d18 write(*,'(" Total simulation time : ",G18.10)') tstime write(*,'(" in attoseconds : ",G18.10)') tstime*t_si*1.d18 deallocate(times,afieldt) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writetddft.f900000644000000000000000000000013214061636517015424 xustar0030 mtime=1623670095.825101647 30 atime=1623670094.672102717 30 ctime=1623670095.825101647 elk-7.2.42/src/writetddft.f900000644002504400250440000001502114061636517017460 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2014 K. Krieger, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writetddft use modmain use modtddft use moddftu implicit none ! local variables integer is,ia,ias real(8) vc(3),vl(3) character(256) fext ! allocatable arrays real(8), allocatable :: rvfmt(:,:,:),rvfir(:,:) ! file extension write(fext,'("_TS",I8.8,".OUT")') itimes ! delete all files at first time step if (itimes.le.1) then open(50,file='CHARGEMT_TD.OUT') close(50,status='DELETE') open(50,file='CHARGEIR_TD.OUT') close(50,status='DELETE') open(50,file='MOMENT_TD.OUT') close(50,status='DELETE') open(50,file='MOMENTM_TD.OUT') close(50,status='DELETE') open(50,file='MOMENTMT_TD.OUT') close(50,status='DELETE') open(50,file='MOMENTIR_TD.OUT') close(50,status='DELETE') open(50,file='JTOT_TD.OUT') close(50,status='DELETE') open(50,file='JTOTM_TD.OUT') close(50,status='DELETE') open(50,file='TOTENERGY_TD.OUT') close(50,status='DELETE') if (tddos) then open(50,file='TDTEMP.OUT') close(50,status='DELETE') end if if (tdlsj) then open(50,file='TDLSJ.OUT') close(50,status='DELETE') end if if (tforce) then open(50,file='FORCETOT_TD.OUT') close(50,status='DELETE') end if if (tdatpos) then open(50,file='ATPOSL_TD.OUT') close(50,status='DELETE') end if if (tafindt) then open(50,file='AFIND_TD.OUT') close(50,status='DELETE') end if end if ! muffin-tin charges open(50,file='CHARGEMT_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(G18.10)') times(itimes) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(50,'(2I4,G18.10)') is,ia,chgmt(ias) end do end do write(50,*) close(50) ! interstitial charge open(50,file='CHARGEIR_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(2G18.10)') times(itimes),chgir close(50) ! spin moment open(50,file='MOMENT_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(4G18.10)') times(itimes),momtot(1:ndmag) close(50) open(50,file='MOMENTM_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(2G18.10)') times(itimes),momtotm close(50) ! muffin-tin moments open(50,file='MOMENTMT_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(G18.10)') times(itimes) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(50,'(2I4,3G18.10)') is,ia,mommt(1:ndmag,ias) end do end do write(50,*) close(50) ! interstitial moment open(50,file='MOMENTIR_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(4G18.10)') times(itimes),momir(1:ndmag) close(50) ! total current open(50,file='JTOT_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(4G18.10)') times(itimes),jtot(:) close(50) ! total current magnitude open(50,file='JTOTM_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(4G18.10)') times(itimes),jtotm close(50) ! total energy open(50,file='TOTENERGY_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(2G18.10)') times(itimes),engytot close(50) ! total force if (tforce) then open(50,file='FORCETOT_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(I8,G18.10)') itimes,times(itimes) do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) write(50,'(2I4,3G18.10)') is,ia,forcetot(:,ias) end do end do close(50) end if ! write the time-dependent atomic positions in lattice coordinates if (tdatpos) then open(50,file='ATPOSL_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(I8,G18.10)') itimes,times(itimes) do is=1,nspecies do ia=1,natoms(is) vc(:)=atposc(:,ia,is)+datposc(:,0,ia,is) call r3mv(ainv,vc,vl) write(50,'(2I4,3G18.10)') is,ia,vl(:) end do end do close(50) end if if (tafindt) then open(50,file='AFIND_TD.OUT',form='FORMATTED',position='APPEND') write(50,'(4G18.10)') times(itimes),afindt(:,0) close(50) end if ! write optional quantities if (ntswrite(1).le.0) return if (mod(itimes-1,ntswrite(1)).ne.0) return if ((itimes.gt.1).and.(itimes.lt.ntswrite(2))) return ! charge density in 1D if (tdrho1d) then open(50,file='RHO1D'//trim(fext),form='FORMATTED',action='WRITE') open(51,file='RHOLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,1,rhomt,rhoir) close(50) close(51) end if ! charge density in 2D if (tdrho2d) then open(50,file='RHO2D'//trim(fext),form='FORMATTED',action='WRITE') call plot2d(.false.,50,1,rhomt,rhoir) close(50) end if ! charge density in 3D if (tdrho3d) then open(50,file='RHO3D'//trim(fext),form='FORMATTED',action='WRITE') call plot3d(50,1,rhomt,rhoir) close(50) end if ! magnetisation in 1D, 2D or 3D if ((tdmag1d.or.tdmag2d.or.tdmag3d).and.(spinpol)) then allocate(rvfmt(npmtmax,natmtot,3),rvfir(ngtot,3)) if (ncmag) then ! non-collinear rvfmt(:,:,:)=magmt(:,:,:) rvfir(:,:)=magir(:,:) else ! collinear rvfmt(:,:,1:2)=0.d0 rvfir(:,1:2)=0.d0 rvfmt(:,:,3)=magmt(:,:,1) rvfir(:,3)=magir(:,1) end if if (tdmag1d) then open(50,file='MAG1D'//trim(fext),form='FORMATTED',action='WRITE') open(51,file='MAGLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,3,rvfmt,rvfir) close(50) close(51) end if if (tdmag2d) then open(50,file='MAG2D'//trim(fext),form='FORMATTED',action='WRITE') call plot2d(.true.,50,3,rvfmt,rvfir) close(50) end if if (tdmag3d) then open(50,file='MAG3D'//trim(fext),form='FORMATTED',action='WRITE') call plot3d(50,3,rvfmt,rvfir) close(50) end if deallocate(rvfmt,rvfir) end if ! gauge-invariant current density in 1D if (tdjr1d) then open(50,file='JR1D'//trim(fext),form='FORMATTED',action='WRITE') open(51,file='JRLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,3,jrmt,jrir) close(50) close(51) end if ! gauge-invariant current density in 2D if (tdjr2d) then open(50,file='JR2D'//trim(fext),form='FORMATTED',action='WRITE') call plot2d(.true.,50,3,jrmt,jrir) close(50) end if ! gauge-invariant current density in 3D if (tdjr3d) then open(50,file='JR3D'//trim(fext),form='FORMATTED',action='WRITE') call plot3d(50,3,jrmt,jrir) close(50) end if ! calculate and write tensor moments if (dftu.ne.0) then if (tmwrite) then open(50,file='TMDFTU'//trim(fext),form='FORMATTED',action='WRITE') if (spinorb) then call writetm3du(50) else call writetm2du(50) end if close(50) end if end if ! write time-dependent DOS if (tddos) then call writetddos(fext) end if ! write the atomic forces if (tforce) then open(50,file='FORCES'//trim(fext),form='FORMATTED',action='WRITE') call writeforces(50) close(50) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/dielectric_tdrt.f900000644000000000000000000000013214061636517016410 xustar0030 mtime=1623670095.826101646 30 atime=1623670094.673102717 30 ctime=1623670095.826101646 elk-7.2.42/src/dielectric_tdrt.f900000644002504400250440000000717214061636517020454 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine dielectric_tdrt use modmain use modtddft implicit none ! local variables integer nts,its0,its integer iw,i,j real(8) w1,w2,a0,t0,t1,t2 complex(8) eta,z1,z2 character(256) fname ! allocatable arrays real(8), allocatable :: w(:),wt(:),jt(:,:) real(8), allocatable :: f1(:),f2(:),g(:) complex(8), allocatable :: ew(:,:),jw(:,:),eps(:) ! initialise global variables call init0 call init1 ! generate energy grid (always non-negative) allocate(w(nwplot)) w1=max(wplot(1),0.d0) w2=max(wplot(2),w1) t1=(w2-w1)/dble(nwplot) do iw=1,nwplot w(iw)=w1+t1*dble(iw-1) end do ! i divided by the complex relaxation time eta=cmplx(0.d0,swidth,8) ! find the starting time step for the Fourier transform its0=1 do its=2,ntimes if (times(its).gt.t0tdlr) then its0=its-1 exit end if end do nts=ntimes-its0+1 ! determine the weights for the spline integration allocate(wt(ntimes)) call wsplint(nts,times(its0),wt(its0)) ! compute the electric field from E = -1/c dA/dt and Fourier transform allocate(f1(ntimes),f2(ntimes),g(ntimes)) allocate(ew(nwplot,3)) t0=-1.d0/solsc do i=1,3 f1(:)=afieldt(i,:) call fderiv(1,ntimes,times,f1,g) ! constant term corresponding to instantaneous A-field at t=0 a0=f1(1) if (task.eq.480) then ! Fourier transform E(t) numerically do iw=1,nwplot do its=its0,ntimes t1=g(its) t2=w(iw)*times(its) f1(its)=t1*cos(t2) f2(its)=t1*sin(t2) end do t1=dot_product(wt(its0:ntimes),f1(its0:ntimes)) t2=dot_product(wt(its0:ntimes),f2(its0:ntimes)) ew(iw,i)=t0*cmplx(t1+a0,t2,8) end do else ! analytic Fourier transform of E(t) assumed to be a delta function at t=0 t1=t0*a0 ew(1:nwplot,i)=t1 end if end do ! read in the total current from file allocate(jt(3,ntimes)) call readjtot(jt) ! divide by the unit cell volume jt(:,:)=jt(:,:)/omega ! filter the high-frequency components from the current using an exponentially ! decaying function do its=its0,ntimes t1=times(its)-t0tdlr t1=exp(-swidth*t1) jt(:,its)=t1*jt(:,its) end do ! Fourier transform the current allocate(jw(nwplot,3)) do i=1,3 do iw=1,nwplot do its=its0,ntimes t1=jt(i,its) t2=w(iw)*times(its) f1(its)=t1*cos(t2) f2(its)=t1*sin(t2) end do t1=dot_product(wt(its0:ntimes),f1(its0:ntimes)) t2=dot_product(wt(its0:ntimes),f2(its0:ntimes)) jw(iw,i)=cmplx(t1,t2,8) end do end do deallocate(wt,f1,f2,g,jt) ! compute the dielectric function and write to file allocate(eps(nwplot)) do i=1,3 do j=1,3 do iw=1,nwplot z1=jw(iw,i) z2=ew(iw,j) t1=abs(dble(z2))+abs(aimag(z2)) if (t1.gt.1.d-8) then z1=z1/z2 else z1=0.d0 end if z1=fourpi*cmplx(-aimag(z1),dble(z1),8) z1=z1/(w(iw)+eta) if (i.eq.j) z1=z1+1.d0 eps(iw)=z1 end do write(fname,'("EPSILON_TDRT_",2I1,".OUT")') i,j open(50,file=trim(fname),form='FORMATTED') do iw=1,nwplot write(50,'(2G18.10)') w(iw),dble(eps(iw)) end do write(50,*) do iw=1,nwplot write(50,'(2G18.10)') w(iw),aimag(eps(iw)) end do close(50) end do end do write(*,*) write(*,'("Info(dielectric_tdrt):")') write(*,'(" dielectric tensor determined from real-time evolution")') write(*,'(" written to EPSILON_TDRT_ij.OUT for components i,j = 1,2,3")') write(*,*) write(*,'("(Note that only those components which are not orthogonal to the")') write(*,'(" applied A-field will be calculated correctly)")') deallocate(w,ew,jw,eps) end subroutine elk-7.2.42/src/PaxHeaders.21776/readjtot.f900000644000000000000000000000013214061636517015060 xustar0030 mtime=1623670095.828101644 30 atime=1623670094.675102715 30 ctime=1623670095.828101644 elk-7.2.42/src/readjtot.f900000644002504400250440000000173014061636517017116 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readjtot(jt) use modmain use modtddft implicit none ! arguments real(8), intent(out) :: jt(3,ntimes) ! local variables integer its,ios real(8) times_,t1 open(50,file='JTOT_TD.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readjtot): error opening JTOT_TD.OUT")') write(*,*) stop end if do its=1,ntimes-1 read(50,*) times_,jt(:,its) t1=abs(times(its)-times_) if (t1.gt.1.d-10) then write(*,*) write(*,'("Error(readjtot): time step mismatch for step number ",I8)') its write(*,'(" internal : ",G18.10)') times(its) write(*,'(" JTOT_TD.OUT : ",G18.10)') times_ write(*,*) stop end if end do close(50) ! set current at last time step jt(:,ntimes)=jt(:,ntimes-1) end subroutine elk-7.2.42/src/PaxHeaders.21776/afindtstep.f900000644000000000000000000000013214061636517015405 xustar0030 mtime=1623670095.829101643 30 atime=1623670094.677102713 30 ctime=1623670095.829101643 elk-7.2.42/src/afindtstep.f900000644002504400250440000000145014061636517017442 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Peter Elliott, J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine afindtstep use modmain use modtddft use modmpi implicit none ! local variables real(8) dt,t1 ! time step length dt=times(itimes+1)-times(itimes) ! add to the time derivative of the induced A-field t1=fourpi*solsc*afindscf*dt/omega afindt(:,1)=afindt(:,1)+t1*jtot(:) ! add to the induced A-field afindt(:,0)=afindt(:,0)+afindt(:,1)*dt ! add to the total A-field afieldt(:,itimes+1)=afieldt(:,itimes+1)+afindt(:,0) ! write the induced A-field and its time derivative to file if (mp_mpi) then open(50,file='AFINDT.OUT',form='FORMATTED') write(50,'(6G18.10)') afindt(:,:) close(50) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genefieldt.f900000644000000000000000000000013214061636517015352 xustar0030 mtime=1623670095.831101642 30 atime=1623670094.679102711 30 ctime=1623670095.831101642 elk-7.2.42/src/genefieldt.f900000644002504400250440000000115414061636517017410 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Peter Elliott, J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genefieldt use modmain use modtddft implicit none ! local variables integer np,it,i,j real(8) t1 ! automatic arrays real(8) ya(4) ! external functions real(8), external :: polynm ! determine the electric field at the current time step t1=-1.d0/solsc np=min(4,itimes) it=itimes-np+1 do i=1,3 do j=1,np ya(j)=afieldt(i,it+j-1) end do efieldt(i)=t1*polynm(1,np,times(it),ya,times(itimes)) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/energytd.f900000644000000000000000000000013214061636517015065 xustar0030 mtime=1623670095.832101641 30 atime=1623670094.681102709 30 ctime=1623670095.832101641 elk-7.2.42/src/energytd.f900000644002504400250440000000147614061636517017132 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine energytd use modmain use modtddft implicit none ! local variables integer is,ias real(8) ca,engya ! external functions real(8), external :: rfinp ! Coulomb potential energy engyvcl=rfinp(rhomt,rhoir,vclmt,vclir) ! Madelung term engymad=0.d0 do ias=1,natmtot is=idxis(ias) engymad=engymad+0.5d0*spzn(is)*(vclmt(1,ias)-vcln(1,is))*y00 end do ! exchange and correlation energy engyx=rfinp(rhomt,rhoir,exmt,exir) engyc=rfinp(rhomt,rhoir,ecmt,ecir) ! external vector potential interaction energy ca=-1.d0/solsc engya=ca*dot_product(afieldt(:,itimes),jtot(:)) ! total energy engytot=engykn+0.5d0*engyvcl+engymad+engyx+engyc+engya end subroutine elk-7.2.42/src/PaxHeaders.21776/engyknk.f900000644000000000000000000000013214061636517014712 xustar0030 mtime=1623670095.834101639 30 atime=1623670094.682102708 30 ctime=1623670095.834101639 elk-7.2.42/src/engyknk.f900000644002504400250440000000221314061636517016745 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine engyknk(ik,kmat,evecsv,evecsvt) use modmain use modtddft implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: kmat(nstsv,nstsv) complex(8), intent(in) :: evecsv(nstsv,nstsv),evecsvt(nstsv,nstsv) ! local variables integer ist real(8) wo complex(8) z1 ! allocatable arrays complex(8), allocatable :: a(:,:),b(:,:) ! external functions complex(8), external :: zdotc allocate(a(nstsv,nstsv),b(nstsv,nstsv)) ! form the kinetic operator matrix elements in the first-variational basis call zgemm('N','C',nstsv,nstsv,nstsv,zone,kmat,nstsv,evecsv,nstsv,zzero,a,nstsv) call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,a,nstsv,zzero,b,nstsv) ! add to the kinetic energy call zgemm('N','N',nstsv,nstsv,nstsv,zone,b,nstsv,evecsvt,nstsv,zzero,a,nstsv) do ist=1,nstsv wo=occsv(ist,ik) if (abs(wo).lt.epsocc) cycle wo=wo*wkpt(ik) z1=zdotc(nstsv,evecsvt(:,ist),1,a(:,ist),1) !$OMP ATOMIC engykn=engykn+wo*dble(z1) end do deallocate(a,b) end subroutine elk-7.2.42/src/PaxHeaders.21776/readforcet.f900000644000000000000000000000013214061636517015362 xustar0030 mtime=1623670095.835101638 30 atime=1623670094.684102706 30 ctime=1623670095.835101638 elk-7.2.42/src/readforcet.f900000644002504400250440000000335314061636517017423 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readforcet use modmain use modtddft implicit none ! local variables integer ios,its,its_ integer is,ia,ias,is_,ia_ real(8) times_,t1 if (allocated(forcet)) deallocate(forcet) allocate(forcet(3,natmtot,ntimes)) ! read in the time-dependent total atomic forces open(50,file='FORCETOT_TD.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readforcet): error opening FORCETOT_TD.OUT")') write(*,*) stop end if do its=1,ntimes-1 read(50,*) its_,times_ if (its.ne.its_) then write(*,*) write(*,'("Error(readforcet): time step number mismatch")') write(*,'(" internal : ",I8)') its write(*,'(" FORCETOT_TD.OUT : ",I8)') its_ write(*,*) stop end if t1=abs(times(its)-times_) if (t1.gt.1.d-10) then write(*,*) write(*,'("Error(readforcet): time step mismatch for step number ",I8)') its write(*,'(" internal : ",G18.10)') times(its) write(*,'(" FORCETOT_TD.OUT : ",G18.10)') times_ stop end if do is=1,nspecies do ia=1,natoms(is) ias=idxas(ia,is) read(50,*) is_,ia_,forcet(:,ias,its) if ((is.ne.is_).or.(ia.ne.ia_)) then write(*,*) write(*,'("Error(readforcet): species or atom number mismatch for time & &step number ",I8)') its write(*,'(" internal : ",2I4)') is,ia write(*,'(" FORCETOT_TD.OUT : ",2I4)') is_,ia_ write(*,*) stop end if end do end do end do close(50) ! set force at last time step forcet(:,:,ntimes)=forcet(:,:,ntimes-1) end subroutine elk-7.2.42/src/PaxHeaders.21776/tdrestart.f900000644000000000000000000000013214061636517015260 xustar0030 mtime=1623670095.837101636 30 atime=1623670094.686102705 30 ctime=1623670095.837101636 elk-7.2.42/src/tdrestart.f900000644002504400250440000000151414061636517017316 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Peter Elliott, J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine tdrestart(itimes0) use modmain use modtddft use moddftu implicit none ! arguments integer, intent(out) :: itimes0 ! last time step for which the eigenvectors were written to file call readtimes(itimes0) ! generate the density and magnetisation call rhomag ! compute the time-dependent Kohn-Sham potentials and magnetic fields call potkst ! DFT+U if (dftu.ne.0) then call gendmatmt call genvmatmt end if ! read in the induced A-field and its time derivative if (tafindt) call readafindt ! read in the atomic displacements and velocities if (tdatpos) trddatpos=.true. ! begin TDDFT loop with next time step itimes0=itimes0+1 end subroutine elk-7.2.42/src/PaxHeaders.21776/readdatposc.f900000644000000000000000000000013214061636517015535 xustar0030 mtime=1623670095.838101635 30 atime=1623670094.687102703 30 ctime=1623670095.838101635 elk-7.2.42/src/readdatposc.f900000644002504400250440000000154114061636517017573 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readdatposc use modmain implicit none ! local variables integer is,ia,is_,ia_,ios open(50,file='DATPOSC.OUT',form='FORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readdatposc): error opening DATPOSC.OUT")') write(*,*) stop end if do is=1,nspecies do ia=1,natoms(is) read(50,*) is_,ia_,datposc(:,:,ia,is) if ((is.ne.is_).or.(ia.ne.ia_)) then write(*,*) write(*,'("Error(readdatposc): species or atom number mismatch")') write(*,'(" internal : ",2I4)') is,ia write(*,'(" DATPOSC.OUT : ",2I4)') is_,ia_ write(*,*) stop end if end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/writedatposc.f900000644000000000000000000000013214061636517015754 xustar0030 mtime=1623670095.839101634 30 atime=1623670094.689102702 30 ctime=1623670095.839101634 elk-7.2.42/src/writedatposc.f900000644002504400250440000000077414061636517020021 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writedatposc use modmain implicit none ! local variables integer is,ia ! write the atomic displacements and velocities to file open(50,file='DATPOSC.OUT',form='FORMATTED',action='WRITE') do is=1,nspecies do ia=1,natoms(is) write(50,'(2I4,6G18.10)') is,ia,datposc(:,:,ia,is) end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhostatic.f900000644000000000000000000000013014061636517015242 xustar0030 mtime=1623670095.841101632 28 atime=1623670094.6911027 30 ctime=1623670095.841101632 elk-7.2.42/src/rhostatic.f900000644002504400250440000000410414061636517017300 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhostatic use modmain use modtddft use modmpi use modstore implicit none ! local variables integer is,ias,np,i ! allocatable arrays real(8), allocatable :: jrmt0(:,:,:),jrir0(:,:) ! external functions real(8), external :: rfmtint,rfint ! store original parameters maxscl_=maxscl afieldc_(:)=afieldc(:) tjr_=tjr tforce_=tforce ! initialise global variables call init0 ! only one self-consistent loop required maxscl=1 ! read potential from STATE.OUT trdstate=.true. ! calculate current density with zero A-field tjr=.true. afieldc(:)=0.d0 ! switch off forces tforce=.false. ! run the ground-state calculation call gndstate ! store the current density allocate(jrmt0(npmtmax,natmtot,3),jrir0(ngtot,3)) do i=1,3 call rfcopy(jrmt(:,:,i),jrir(:,i),jrmt0(:,:,i),jrir0(:,i)) end do ! allocate static density global arrays if (allocated(rhosmt)) deallocate(rhosmt) allocate(rhosmt(npmtmax,natmtot,3)) if (allocated(rhosir)) deallocate(rhosir) allocate(rhosir(ngtot,3)) if (allocated(chgsmt)) deallocate(chgsmt) allocate(chgsmt(natmtot,3)) ! loop over three directions do i=1,3 afieldc(:)=0.d0 afieldc(i)=1.d0 ! run the ground-state calculation call gndstate ! muffin-tin static density do ias=1,natmtot is=idxis(ias) np=npmt(is) rhosmt(1:np,ias,i)=rhomt(1:np,ias) & -solsc*(jrmt(1:np,ias,i)-jrmt0(1:np,ias,i)) ! compute the muffin-tin static charge chgsmt(ias,i)=rfmtint(nrmt(is),nrmti(is),wrmt(:,is),rhosmt(:,ias,i)) end do ! interstitial static density rhosir(:,i)=rhoir(:)-solsc*(jrir(:,i)-jrir0(:,i)) ! compute the static charge chgstot(i)=rfint(rhosmt(:,:,i),rhosir(:,i)) end do ! write static charge to file if (mp_mpi) then open(50,file='CHGSTAT.OUT',form='FORMATTED',action='WRITE') write(50,'(3G18.10)') chgstot(:) close(50) end if deallocate(jrmt0,jrir0) ! restore original input parameters maxscl=maxscl_ afieldc(:)=afieldc_(:) tafield=.false. tjr=tjr_ tforce=tforce_ end subroutine elk-7.2.42/src/PaxHeaders.21776/jtotk.f900000644000000000000000000000013014061636517014375 xustar0029 mtime=1623670095.84310163 30 atime=1623670094.692102699 29 ctime=1623670095.84310163 elk-7.2.42/src/jtotk.f900000644002504400250440000000226314061636517016437 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine jtotk(ik,pmat,evecsv,evecsvt) use modmain implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: pmat(nstsv,nstsv,3) complex(8), intent(in) :: evecsv(nstsv,nstsv),evecsvt(nstsv,nstsv) ! local variables integer ist,l real(8) wo complex(8) z1 ! allocatable arrays complex(8), allocatable :: a(:,:),b(:,:) ! external functions complex(8), external :: zdotc allocate(a(nstsv,nstsv),b(nstsv,nstsv)) do l=1,3 ! form the momentum operator matrix elements in the first-variational basis call zgemm('N','C',nstsv,nstsv,nstsv,zone,pmat(:,:,l),nstsv,evecsv,nstsv, & zzero,a,nstsv) call zgemm('N','N',nstsv,nstsv,nstsv,zone,evecsv,nstsv,a,nstsv,zzero,b,nstsv) ! add to the total current call zgemm('N','N',nstsv,nstsv,nstsv,zone,b,nstsv,evecsvt,nstsv,zzero,a,nstsv) do ist=1,nstsv wo=occsv(ist,ik) if (abs(wo).lt.epsocc) cycle wo=wo*wkpt(ik) z1=zdotc(nstsv,evecsvt(:,ist),1,a(:,ist),1) !$OMP ATOMIC jtot(l)=jtot(l)+wo*dble(z1) end do end do deallocate(a,b) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhosplot.f900000644000000000000000000000013014061636517015114 xustar0029 mtime=1623670095.84410163 30 atime=1623670094.694102697 29 ctime=1623670095.84410163 elk-7.2.42/src/rhosplot.f900000644002504400250440000000223114061636517017151 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhosplot use modmain use modtddft implicit none ! local variables integer is,ias,ispn integer nr,nri,iro,ir,i ! determine the static density and charge call rhostatic ! remove the core charge density do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) iro=nri+1 do ispn=1,nspncr i=1 do ir=1,nri rhosmt(i,ias,:)=rhosmt(i,ias,:)-rhocr(ir,ias,ispn) i=i+lmmaxi end do do ir=iro,nr rhosmt(i,ias,:)=rhosmt(i,ias,:)-rhocr(ir,ias,ispn) i=i+lmmaxo end do end do end do ! produce 1D plot of the static density open(50,file='RHOS1D.OUT',form='FORMATTED',action='WRITE') open(51,file='RHOSLINES.OUT',form='FORMATTED',action='WRITE') call plot1d(50,51,3,rhosmt,rhosir) close(50) close(51) write(*,*) write(*,'("Info(rhosplot):")') write(*,'(" 1D static density plot written to RHOS1D.OUT")') write(*,'(" vertex location lines written to RHOSLINES.OUT")') write(*,*) write(*,'(" The core density is not included in the plot")') end subroutine elk-7.2.42/src/PaxHeaders.21776/bornectd.f900000644000000000000000000000013214061636517015044 xustar0030 mtime=1623670095.846101628 30 atime=1623670094.696102695 30 ctime=1623670095.846101628 elk-7.2.42/src/bornectd.f900000644002504400250440000000442714061636517017110 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine bornectd use modmain use modphonon use modtddft use modstore use modmpi implicit none ! local variables integer ip real(8) vc(3),bec(3),t1 character(256) fext ! allocatable arrays real(8), allocatable :: jt(:,:),f(:) ! external functions real(8), external :: splint ! store original parameters atposl_(:,:,:)=atposl(:,:,:) ! no shifting of atomic basis allowed tshift=.false. ! initialise universal variables call init0 atposc_(:,:,:)=atposc(:,:,:) ! generate a zero A-field npulse=0 nramp=0 if (mp_mpi) call genafieldt ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! initial ground-state run should start from atomic densities trdstate=.false. ! begin new Born effective charge task 10 continue call bectask(80,fext) ! if nothing more to do then restore original input parameters and return if (isph.eq.0) then filext='.OUT' atposl(:,:,:)=atposl_(:,:,:) tshift=tshift_ return end if if (mp_mpi) then write(*,'("Info(bornectd): working on ",A)') 'BEC'//trim(fext) end if ! dry run: just generate empty BEC files if (task.eq.209) goto 10 ! break the crystal symmetry for the displaced atom atposl(:,:,:)=atposl_(:,:,:) atposc(:,:,:)=atposc_(:,:,:) vc(:)=atposc(:,iaph,isph) vc(ipph)=vc(ipph)-0.5d0*deltaph call r3mv(ainv,vc,atposl(:,iaph,isph)) ! run the ground-state calculation call gndstate ! subsequent calculations will read in the previous potential trdstate=.true. ! write the atomic forces to file call becforce ! run the time evolution calculation with Ehrenfest dynamics task=462 call tddft task=478 ! read in the total current from file allocate(jt(3,ntimes),f(ntimes)) call readjtot(jt) ! calculate the Born effective charge from the integrated current do ip=1,3 f(:)=jt(ip,:) t1=splint(ntimes,times,f) bec(ip)=t1/(deltaph*cos(tdphi)) end do deallocate(jt,f) ! add the static and nuclear charge t1=sum(chgsmt(iasph,1:3))/3.d0 bec(ipph)=bec(ipph)+t1+spzn(isph) ! write Born effective charge matrix row to file if (mp_mpi) then do ip=1,3 write(80,'(G18.10," : ip = ",I4)') bec(ip),ip end do close(80) end if ! synchronise MPI processes call mpi_barrier(mpicom,ierror) goto 10 end subroutine elk-7.2.42/src/PaxHeaders.21776/becforce.f900000644000000000000000000000013214061636517015014 xustar0030 mtime=1623670095.847101627 30 atime=1623670094.697102694 30 ctime=1623670095.847101627 elk-7.2.42/src/becforce.f900000644002504400250440000000156514061636517017060 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine becforce use modmain use modphonon use modtddft implicit none integer its,is,ia real(8) ft(3) ! generate the time step grid call gentimes ! determine the force which gives the correct final displacement of the atom ft(:)=0.d0 ft(ipph)=12.d0*spmass(isph)*deltaph/tstime**4 ! write force to file for all time steps open(50,file='FORCETOT_TD.OUT',form='FORMATTED') do its=1,ntimes write(50,'(I8,G18.10)') its,times(its) do is=1,nspecies do ia=1,natoms(is) if ((is.eq.isph).and.(ia.eq.iaph)) then write(50,'(2I4,3G18.10)') is,ia,ft(:)*times(its)**2 else write(50,'(2I4,3G18.10)') is,ia,0.d0,0.d0,0.d0 end if end do end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/zfirctof.f900000644000000000000000000000013214061636517015072 xustar0030 mtime=1623670095.849101625 30 atime=1623670094.699102692 30 ctime=1623670095.849101625 elk-7.2.42/src/zfirctof.f900000644002504400250440000000121614061636517017127 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zfirctof(zfirc,zfir) use modmain implicit none ! arguments complex(8), intent(in) :: zfirc(ngtc) complex(8), intent(out) :: zfir(ngtot) ! local variables integer ig ! automatic arrays complex(8) zfftc(ngtc) ! Fourier transform function on coarse grid to G-space zfftc(:)=zfirc(:) call zfftifc(3,ngdgc,-1,zfftc) ! Fourier transform to fine real-space grid zfir(:)=0.d0 do ig=1,ngvc zfir(igfft(ig))=zfftc(igfc(ig)) end do call zfftifc(3,ngridg,1,zfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeevalu.f900000644000000000000000000000013114061636517015432 xustar0030 mtime=1623670095.850101624 29 atime=1623670094.70110269 30 ctime=1623670095.850101624 elk-7.2.42/src/writeevalu.f900000644002504400250440000000136714061636517017477 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeevalu use modmain use modulr implicit none ! local variables integer ik0,ik,ist ! write out the valence eigenvalues open(50,file='EIGVALU.OUT',form='FORMATTED') write(50,'(I6," : nkpt0")') nkpt0 write(50,'(I6," : nstulr")') nstulr do ik0=1,nkpt0 ! central k-point ik=(ik0-1)*nkpa+1 write(50,*) write(50,'(I6,3G18.10," : k-point, vkl")') ik0,vkl(:,ik) write(50,'(" (state, eigenvalue and occupancy below)")') do ist=1,nstulr write(50,'(I6,2G18.10)') ist,evalu(ist,ik0),occulr(ist,ik0) end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhocoreu.f900000644000000000000000000000013114061636517015071 xustar0030 mtime=1623670095.852101622 29 atime=1623670094.70210269 30 ctime=1623670095.852101622 elk-7.2.42/src/rhocoreu.f900000644002504400250440000000225014061636517017126 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhocoreu use modmain use modulr use modomp implicit none ! local variables integer is,ias,ir,i integer nrc,nrci,irc integer npc,n,nthd real(8) t1 ! allocatable arrays real(8), allocatable :: rfmt(:,:) ! generate the core density in spherical coordinates allocate(rfmt(npcmtmax,natmtot)) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) n=lmmaxi-1 ir=1 i=1 do irc=1,nrci t1=rhocr(ir,ias,1)*y00 rfmt(i:i+n,ias)=t1 ir=ir+lradstp i=i+lmmaxi end do n=lmmaxo-1 do irc=nrci+1,nrc t1=rhocr(ir,ias,1)*y00 rfmt(i:i+n,ias)=t1 ir=ir+lradstp i=i+lmmaxo end do end do ! add to the ultra long-range density call holdthd(nqpt,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ias,is,npc) & !$OMP NUM_THREADS(nthd) do ir=1,nqpt do ias=1,natmtot is=idxis(ias) npc=npcmt(is) rhormt(1:npc,ias,ir)=rhormt(1:npc,ias,ir)+rfmt(1:npc,ias) end do end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(rfmt) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnulr.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.853101621 30 atime=1623670094.704102688 30 ctime=1623670095.853101621 elk-7.2.42/src/eveqnulr.f900000644002504400250440000000100014061636517017131 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2016 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine eveqnulr(ik0,evecu) use modmain use modulr implicit none ! arguments integer, intent(in) :: ik0 complex(8), intent(out) :: evecu(nstulr,nstulr) ! generate the ultra long-range Hamiltonian call genhmlu(ik0,evecu) ! find the eigenvalues and vectors call eveqnzh(nstulr,nstulr,evecu,evalu(:,ik0)) end subroutine elk-7.2.42/src/PaxHeaders.21776/rfzfftq.f900000644000000000000000000000013214061636517014726 xustar0030 mtime=1623670095.855101619 30 atime=1623670094.706102686 30 ctime=1623670095.855101619 elk-7.2.42/src/rfzfftq.f900000644002504400250440000000647714061636517017001 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rfzfftq(sgn,nf,ngt,rfmt,rfir,zfmt,zfir) use modmain use modmpi use modomp implicit none ! arguments integer, intent(in) :: sgn,nf,ngt real(8), intent(inout) :: rfmt(npcmtmax,natmtot,nf,nqpt) real(8), intent(inout) :: rfir(ngt,nf,nqpt) complex(8), intent(inout) :: zfmt(npcmtmax,natmtot,nf,nfqrz) complex(8), intent(inout) :: zfir(ngt,nf,nfqrz) ! local variables integer jf,is,ias,ir integer npc,i,n,nthd ! automatic arrays real(8) r(nqpt) complex(8) z(nfqrz) if (sgn.eq.-1) then ! loop over the number of functions do jf=1,nf ! Fourier transform the muffin-tin function do ias=1,natmtot is=idxis(ias) npc=npcmt(is) if (np_mpi.gt.1) zfmt(1:npc,ias,jf,:)=0.d0 call holdthd(npc/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(r,z) & !$OMP NUM_THREADS(nthd) do i=1,npc ! distribute among MPI processes if (mod(i-1,np_mpi).ne.lp_mpi) cycle r(1:nqpt)=rfmt(i,ias,jf,1:nqpt) call rzfftifc(3,ngridq,-1,r,z) zfmt(i,ias,jf,1:nfqrz)=z(1:nfqrz) end do !$OMP END PARALLEL DO call freethd(nthd) end do ! Fourier transform the interstitial function if (np_mpi.gt.1) zfir(:,jf,:)=0.d0 call holdthd(ngt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(r,z) & !$OMP NUM_THREADS(nthd) do ir=1,ngt ! distribute among MPI processes if (mod(ir-1,np_mpi).ne.lp_mpi) cycle r(1:nqpt)=rfir(ir,jf,1:nqpt) call rzfftifc(3,ngridq,-1,r,z) zfir(ir,jf,1:nfqrz)=z(1:nfqrz) end do !$OMP END PARALLEL DO call freethd(nthd) ! end loop over number of functions end do if (np_mpi.gt.1) then n=npcmtmax*natmtot*nf*nfqrz call mpi_allreduce(mpi_in_place,zfmt,n,mpi_double_complex,mpi_sum,mpicom, & ierror) n=ngt*nf*nfqrz call mpi_allreduce(mpi_in_place,zfir,n,mpi_double_complex,mpi_sum,mpicom, & ierror) end if else ! loop over the number of functions do jf=1,nf do ias=1,natmtot is=idxis(ias) npc=npcmt(is) if (np_mpi.gt.1) rfmt(1:npc,ias,jf,:)=0.d0 call holdthd(npc/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(z,r) & !$OMP NUM_THREADS(nthd) do i=1,npc ! distribute among MPI processes if (mod(i-1,np_mpi).ne.lp_mpi) cycle z(1:nfqrz)=zfmt(i,ias,jf,1:nfqrz) call rzfftifc(3,ngridq,1,r,z) rfmt(i,ias,jf,1:nqpt)=r(1:nqpt) end do !$OMP END PARALLEL DO call freethd(nthd) end do if (np_mpi.gt.1) rfir(:,jf,:)=0.d0 call holdthd(ngt/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(z,r) & !$OMP NUM_THREADS(nthd) do ir=1,ngt ! distribute among MPI processes if (mod(ir-1,np_mpi).ne.lp_mpi) cycle z(1:nfqrz)=zfir(ir,jf,1:nfqrz) call rzfftifc(3,ngridq,1,r,z) rfir(ir,jf,1:nqpt)=r(1:nqpt) end do !$OMP END PARALLEL DO call freethd(nthd) ! end loop over number of functions end do if (np_mpi.gt.1) then n=npcmtmax*natmtot*nf*nqpt call mpi_allreduce(mpi_in_place,rfmt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) n=ngt*nf*nqpt call mpi_allreduce(mpi_in_place,rfir,n,mpi_double_precision,mpi_sum, & mpicom,ierror) end if end if end subroutine elk-7.2.42/src/PaxHeaders.21776/writekpa.f900000644000000000000000000000013214061636517015072 xustar0030 mtime=1623670095.856101618 30 atime=1623670094.707102685 30 ctime=1623670095.856101618 elk-7.2.42/src/writekpa.f900000644002504400250440000000077114061636517017134 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writekpa use modmain use modulr implicit none ! local variables integer ikpa open(50,file='KAPPA.OUT',form='FORMATTED') write(50,'(I6," : nkpa; kappa-point, vector in unit cell reciprocal lattice & &coordinates below")') nkpa do ikpa=1,nkpa write(50,'(I6,3G18.10)') ikpa,vql(:,ikpa) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/rhomaguk.f900000644000000000000000000000013214061636517015061 xustar0030 mtime=1623670095.858101617 30 atime=1623670094.709102683 30 ctime=1623670095.858101617 elk-7.2.42/src/rhomaguk.f900000644002504400250440000001464614061636517017131 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhomaguk(ik0,lock,evecu) use modmain use modulr use modomp implicit none ! arguments integer, intent(in) :: ik0 integer(8), intent(in) :: lock(nqpt) complex(8), intent(in) :: evecu(nstulr,nstulr) ! local variables integer ik,ikpa,ist,i,j integer ngk0,ispn,is,ias integer npc,ir,nthd real(8) wm,wi ! automatic arrays integer idx(nstsv) complex(8) zfft(nqpt),wfir(ngtc,nspinor) ! allocatable arrays integer(8), allocatable :: lockl(:) complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfgk(:,:,:) complex(8), allocatable :: wfrmt(:,:,:,:),wfrgk(:,:,:) ! central k-point ik=(ik0-1)*nkpa+1 ! number of G+k-vectors for central k-point ngk0=ngk(1,ik) ! initialise the local OpenMP locks allocate(lockl(nqpt)) do ir=1,nqpt call omp_init_lock(lockl(ir)) end do ! get the eigenvectors from file allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) call getevecfv(filext,ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv(filext,ik,vkl(:,ik),evecsv) ! find the matching coefficients allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) call match(ngk0,vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! index to all states do ist=1,nstsv idx(ist)=ist end do allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfgk(ngk0,nspinor,nstsv)) call genwfsv(.false.,.true.,nstsv,idx,ngdgc,igfc,ngk0,igkig(:,1,ik),apwalm, & evecfv,evecsv,wfmt,ngk0,wfgk) deallocate(apwalm,evecfv,evecsv) allocate(wfrmt(npcmtmax,natmtot,nspinor,nqpt),wfrgk(ngk0,nspinor,nqpt)) ! loop over ultra long-range states do j=1,nstulr wm=occulr(j,ik0) if (abs(wm).lt.epsocc) cycle wm=wm*wkpt(ik) wi=wm/omega ! zero the ultra long-range wavefunctions call holdthd(2,nthd) !$OMP PARALLEL SECTIONS DEFAULT(SHARED) & !$OMP PRIVATE(ir,ispn) & !$OMP NUM_THREADS(nthd) !$OMP SECTION do ir=1,nqpt do ispn=1,nspinor call wfmt0(wfrmt(:,:,ispn,ir)) end do end do !$OMP SECTION wfrgk(:,:,:)=0.d0 !$OMP END PARALLEL SECTIONS call freethd(nthd) ! parallel loop over second-variational states call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfft,ikpa,i,ir) & !$OMP NUM_THREADS(nthd) do ist=1,nstsv zfft(:)=0.d0 ! loop over kappa-points do ikpa=1,nkpa i=(ikpa-1)*nstsv+ist ! store the wavefunction in Q-space zfft(iqfft(ikpa))=evecu(i,j) end do ! Fourier transform to R-space call zfftifc(3,ngridq,1,zfft) ! loop over R-points do ir=1,nqpt call omp_set_lock(lockl(ir)) call wfadd(zfft(ir),wfmt(:,:,:,ist),wfgk(:,:,ist),wfrmt(:,:,:,ir), & wfrgk(:,:,ir)) call omp_unset_lock(lockl(ir)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! parallel loop over R-points call holdthd(nqpt,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfir,ispn,ias,is,npc) & !$OMP NUM_THREADS(nthd) do ir=1,nqpt do ispn=1,nspinor ! Fourier transform the interstitial part to real-space wfir(:,ispn)=0.d0 wfir(igfc(igkig(1:ngk0,1,ik)),ispn)=wfrgk(1:ngk0,ispn,ir) call zfftifc(3,ngdgc,1,wfir(:,ispn)) end do ! add to the density and magnetisation call omp_set_lock(lock(ir)) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) if (spinpol) then if (ncmag) then call rmk1(npc,wm,wfrmt(:,ias,1,ir),wfrmt(:,ias,2,ir), & rhormt(:,ias,ir),magrmt(:,ias,1,ir),magrmt(:,ias,2,ir), & magrmt(:,ias,3,ir)) else call rmk2(npc,wm,wfrmt(:,ias,1,ir),wfrmt(:,ias,2,ir), & rhormt(:,ias,ir),magrmt(:,ias,1,ir)) end if else call rmk3(npc,wm,wfrmt(:,ias,1,ir),rhormt(:,ias,ir)) end if end do if (spinpol) then if (ncmag) then call rmk1(ngtc,wi,wfir,wfir(:,2),rhorir(:,ir),magrir(:,1,ir), & magrir(:,2,ir),magrir(:,3,ir)) else call rmk2(ngtc,wi,wfir,wfir(:,2),rhorir(:,ir),magrir(:,1,ir)) end if else call rmk3(ngtc,wi,wfir,rhorir(:,ir)) end if call omp_unset_lock(lock(ir)) ! end loop over R-points end do !$OMP END PARALLEL DO call freethd(nthd) ! end loop over long-range states end do ! destroy the local OpenMP locks do ir=1,nqpt call omp_destroy_lock(lockl(ir)) end do deallocate(lockl) deallocate(wfmt,wfgk,wfrmt,wfrgk) return contains pure subroutine wfmt0(wfmt) implicit none ! arguments complex(8), intent(out) :: wfmt(npcmtmax,natmtot) ! local variables integer is,ias do ias=1,natmtot is=idxis(ias) wfmt(1:npcmt(is),ias)=0.d0 end do end subroutine subroutine wfadd(za,wfmt1,wfgk1,wfmt2,wfgk2) implicit none ! arguments complex(8), intent(in) :: za complex(8), intent(in) :: wfmt1(npcmtmax,natmtot,nspinor) complex(8), intent(in) :: wfgk1(ngk0,nspinor) complex(8), intent(inout) :: wfmt2(npcmtmax,natmtot,nspinor) complex(8), intent(inout) :: wfgk2(ngk0,nspinor) ! local variables integer ispn,is,ias do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) call zaxpy(npcmt(is),za,wfmt1(:,ias,ispn),1,wfmt2(:,ias,ispn),1) end do end do call zaxpy(ngk0*nspinor,za,wfgk1,1,wfgk2,1) end subroutine pure subroutine rmk1(n,wo,wf1,wf2,rho,mag1,mag2,mag3) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) real(8), intent(inout) :: rho(n),mag1(n),mag2(n),mag3(n) ! local variables integer i real(8) wo2,t1,t2 real(8) a1,b1,a2,b2 wo2=2.d0*wo !$OMP SIMD PRIVATE(a1,b1,a2,b2,t1,t2) SIMDLEN(8) do i=1,n a1=dble(wf1(i)); b1=aimag(wf1(i)) a2=dble(wf2(i)); b2=aimag(wf2(i)) t1=a1**2+b1**2; t2=a2**2+b2**2 mag1(i)=mag1(i)+wo2*(a1*a2+b1*b2) mag2(i)=mag2(i)+wo2*(a1*b2-b1*a2) mag3(i)=mag3(i)+wo*(t1-t2) rho(i)=rho(i)+wo*(t1+t2) end do end subroutine pure subroutine rmk2(n,wo,wf1,wf2,rho,mag) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf1(n),wf2(n) real(8), intent(inout) :: rho(n),mag(n) ! local variables integer i real(8) t1,t2 !$OMP SIMD PRIVATE(t1,t2) SIMDLEN(8) do i=1,n t1=dble(wf1(i))**2+aimag(wf1(i))**2 t2=dble(wf2(i))**2+aimag(wf2(i))**2 mag(i)=mag(i)+wo*(t1-t2) rho(i)=rho(i)+wo*(t1+t2) end do end subroutine pure subroutine rmk3(n,wo,wf,rho) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: wo complex(8), intent(in) :: wf(n) real(8), intent(inout) :: rho(n) rho(:)=rho(:)+wo*(dble(wf(:))**2+aimag(wf(:))**2) end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/rhomagq.f900000644000000000000000000000013214061636517014702 xustar0030 mtime=1623670095.859101616 30 atime=1623670094.711102681 30 ctime=1623670095.859101616 elk-7.2.42/src/rhomagq.f900000644002504400250440000000262014061636517016737 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhomagq use modmain use modulr use modomp implicit none ! local variables integer ifq,idm,is,ias,nthd ! automatic arrays complex(8) zfmt(npcmtmax) ! partial Fourier transform of density to Q-space call rfzfftq(-1,1,ngtc,rhormt,rhorir,rhoqmt,rhoqir) ! convert density to spherical harmonics call holdthd(nfqrz,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,ias,is) & !$OMP NUM_THREADS(nthd) do ifq=1,nfqrz do ias=1,natmtot is=idxis(ias) call zcopy(npcmt(is),rhoqmt(:,ias,ifq),1,zfmt,1) call zfsht(nrcmt(is),nrcmti(is),zfmt,rhoqmt(:,ias,ifq)) end do end do !$OMP END PARALLEL DO call freethd(nthd) if (.not.spinpol) return ! partial Fourier transform of magnetisation to Q-space call rfzfftq(-1,ndmag,ngtc,magrmt,magrir,magqmt,magqir) ! convert magnetisation to spherical harmonics call holdthd(nfqrz,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(zfmt,idm,ias,is) & !$OMP NUM_THREADS(nthd) do ifq=1,nfqrz do idm=1,ndmag do ias=1,natmtot is=idxis(ias) call zcopy(npcmt(is),magqmt(:,ias,idm,ifq),1,zfmt,1) call zfsht(nrcmt(is),nrcmti(is),zfmt,magqmt(:,ias,idm,ifq)) end do end do end do !$OMP END PARALLEL DO call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/genhmlu.f900000644000000000000000000000013114061636517014702 xustar0030 mtime=1623670095.861101614 29 atime=1623670094.71210268 30 ctime=1623670095.861101614 elk-7.2.42/src/genhmlu.f900000644002504400250440000000727614061636517016754 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genhmlu(ik0,h) use modmain use modulr use modomp implicit none ! arguments integer, intent(in) :: ik0 complex(8), intent(out) :: h(nstulr,nstulr) ! local variables integer ik,ist,jst,ispn,nthd integer ikpa,jkpa,iq,ifq,ngk0,igk integer i1,i2,i3,j1,j2,j3,i,j ! automatic arrays integer idx(nstsv) complex(8) vmat(nstsv,nstsv) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:),wfgk(:,:,:) complex(8), allocatable :: hdb(:,:,:) ! central k-point ik=(ik0-1)*nkpa+1 ! number of G+k-vectors for central k-point ngk0=ngk(1,ik) ! get the ground-state eigenvectors from file for central k-point allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) call getevecfv('.OUT',ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! find the matching coefficients allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) call match(ngk0,vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! index to all states do ist=1,nstsv idx(ist)=ist end do ! calculate the wavefunctions for all states of the central k-point allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfgk(ngk0,nspinor,nstsv)) call genwfsv(.false.,.true.,nstsv,idx,ngridg,igfft,ngk0,igkig(:,1,ik),apwalm, & evecfv,evecsv,wfmt,ngk0,wfgk) deallocate(apwalm,evecfv,evecsv) ! determine the interstitial wavefunctions in real-space (without 1/sqrt(omega)) allocate(wfir(ngtot,nspinor,nstsv)) call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(ispn,igk) & !$OMP NUM_THREADS(nthd) do ist=1,nstsv do ispn=1,nspinor wfir(:,ispn,ist)=0.d0 do igk=1,ngk0 wfir(igfft(igkig(igk,1,ik)),ispn,ist)=wfgk(igk,ispn,ist) end do call zfftifc(3,ngridg,1,wfir(:,ispn,ist)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! generate the matrix elements for all Q-vectors call holdthd(nfqrz,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(vmat,iq,i,j,ikpa,jkpa) & !$OMP PRIVATE(j1,j2,j3,ist,jst,i1,i2,i3) & !$OMP NUM_THREADS(nthd) do ifq=1,nfqrz iq=iqrzf(ifq) if (spinpol) then call genzvbmatk(vsqmt(:,:,ifq),vsqir(:,ifq),bsqmt(:,:,:,ifq), & bsqir(:,:,ifq),ngk0,igkig(:,1,ik),wfmt,wfir,wfgk,vmat) else call genzvmatk(vsqmt(:,:,ifq),vsqir(:,ifq),ngk0,igkig(:,1,ik),wfmt,wfir, & wfgk,vmat) end if j=0 do jkpa=1,nkpa j1=ivq(1,jkpa); j2=ivq(2,jkpa); j3=ivq(3,jkpa) do jst=1,nstsv j=j+1 do ikpa=1,jkpa-1 i=(ikpa-1)*nstsv+1 i1=ivq(1,ikpa)-j1; i2=ivq(2,ikpa)-j2; i3=ivq(3,ikpa)-j3 if (ivqiq(i1,i2,i3).eq.iq) then ! copy matrix elements for kappa_i - kappa_j in Q-point set call zcopy(nstsv,vmat(:,jst),1,h(i,j),1) else if (ivqiq(-i1,-i2,-i3).eq.iq) then ! otherwise use conjugate transpose do ist=1,nstsv h(i,j)=conjg(vmat(jst,ist)) i=i+1 end do end if end do ! copy only the upper triangular part for Q=0 if (ifq.eq.1) then i=(jkpa-1)*nstsv+1 call zcopy(jst,vmat(:,jst),1,h(i,j),1) end if end do end do end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(wfmt,wfir,wfgk) ! add the second-variational eigenvalues of k+kappa to the diagonal but in the ! basis of the states at k do ist=1,nstsv h(ist,ist)=h(ist,ist)+evalsv(ist,ik) end do allocate(hdb(nstsv,nstsv,2:nkpa)) call gethdbulr(ik0,hdb) do ikpa=2,nkpa i=(ikpa-1)*nstsv do jst=1,nstsv j=i+jst do ist=1,jst h(i+ist,j)=h(i+ist,j)+hdb(ist,jst,ikpa) end do end do end do deallocate(hdb) end subroutine elk-7.2.42/src/PaxHeaders.21776/chargeu.f900000644000000000000000000000013214061636517014662 xustar0030 mtime=1623670095.862101613 30 atime=1623670094.714102678 30 ctime=1623670095.862101613 elk-7.2.42/src/chargeu.f900000644002504400250440000000166614061636517016730 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine chargeu use modmain use modulr implicit none ! local variables integer ifq,is,ias integer nrc,nrci real(8) t1 ! automatic arrays real(8) rfft(nqpt) complex(8) zfft(nfqrz) ! external functions real(8), external :: ddot complex(8), external :: zfmtint ! calculate muffin-tin charges chgmttot=0.d0 do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) do ifq=1,nfqrz zfft(ifq)=zfmtint(nrc,nrci,wrcmt(:,is),rhoqmt(:,ias,ifq)) end do chgmt(ias)=dble(zfft(1)) chgmttot=chgmttot+chgmt(ias) call rzfftifc(3,ngridq,1,rfft,zfft) chgmtru(ias,:)=rfft(:) end do ! calculate interstitial charge t1=ddot(ngtc,rhoqir(:,1),2,cfrc,1) chgir=t1*omega/dble(ngtc) ! total calculated charge chgcalc=chgmttot+chgir end subroutine elk-7.2.42/src/PaxHeaders.21776/momentu.f900000644000000000000000000000013214061636517014730 xustar0030 mtime=1623670095.864101611 30 atime=1623670094.716102677 30 ctime=1623670095.864101611 elk-7.2.42/src/momentu.f900000644002504400250440000000226414061636517016771 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine momentu use modmain use modulr implicit none ! local variables integer ifq,idm,is,ias integer nrc,nrci real(8) t1 ! automatic arrays real(8) rfft(nqpt) complex(8) zfft(nfqrz) ! external functions real(8), external :: ddot complex(8), external :: zfmtint if (.not.spinpol) return ! calculate muffin-tin moments mommttot(:)=0.d0 do idm=1,ndmag do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) do ifq=1,nfqrz zfft(ifq)=zfmtint(nrc,nrci,wrcmt(:,is),magqmt(:,ias,idm,ifq)) end do mommt(idm,ias)=dble(zfft(1)) mommttot(idm)=mommttot(idm)+mommt(idm,ias) call rzfftifc(3,ngridq,1,rfft,zfft) mommtru(idm,ias,:)=rfft(:) end do end do ! calculate interstitial moment do idm=1,ndmag t1=ddot(ngtc,magqir(:,idm,1),2,cfrc,1) momir(idm)=t1*omega/dble(ngtc) end do momtot(:)=mommttot(:)+momir(:) ! total moment magnitude if (ncmag) then momtotm=sqrt(momtot(1)**2+momtot(2)**2+momtot(3)**2) else momtotm=abs(momtot(1)) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/potxcu.f900000644000000000000000000000013014061636517014564 xustar0029 mtime=1623670095.86510161 30 atime=1623670094.717102676 29 ctime=1623670095.86510161 elk-7.2.42/src/potxcu.f900000644002504400250440000001143714061636517016631 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potxcu use modmain use modulr use modmpi use modomp implicit none ! local variables integer ifq,idm,is,ias integer ir,npc,n,lp,nthd complex(8) z1,z2 ! allocatable arrays real(8), allocatable :: vxcrmt(:,:,:),vxcrir(:,:) real(8), allocatable :: bxcrmt(:,:,:,:),bxcrir(:,:,:) real(8), allocatable :: rhomt_(:,:),rhoir_(:) real(8), allocatable :: magmt_(:,:,:),magir_(:,:) real(8), allocatable :: vxcmt_(:,:),bxcmt_(:,:,:) complex(8), allocatable :: vxcqmt(:,:,:),vxcqir(:,:) allocate(vxcrmt(npcmtmax,natmtot,nqpt),vxcrir(ngtot,nqpt)) if (spinpol) then allocate(bxcrmt(npcmtmax,natmtot,ndmag,nqpt)) allocate(bxcrir(ngtot,ndmag,nqpt)) end if call holdthd(nqpt/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(rhomt_,rhoir_,vxcmt_) & !$OMP PRIVATE(magmt_,magir_,bxcmt_) & !$OMP PRIVATE(ias,is,idm) & !$OMP NUM_THREADS(nthd) allocate(rhomt_(npmtmax,natmtot),rhoir_(ngtot)) allocate(vxcmt_(npmtmax,natmtot)) if (spinpol) then allocate(magmt_(npmtmax,natmtot,ndmag),magir_(ngtot,ndmag)) allocate(bxcmt_(npmtmax,natmtot,ndmag)) end if !$OMP DO do ir=1,nqpt ! distribute among MPI processes if (mod(ir-1,np_mpi).ne.lp_mpi) cycle ! convert muffin-tin density and magnetisation from coarse to fine radial mesh do ias=1,natmtot is=idxis(ias) call dcopy(npcmt(is),rhormt(:,ias,ir),1,rhomt_(:,ias),1) end do call rfmtctof(rhomt_) do idm=1,ndmag do ias=1,natmtot is=idxis(ias) call dcopy(npcmt(is),magrmt(:,ias,idm,ir),1,magmt_(:,ias,idm),1) end do call rfmtctof(magmt_(:,:,idm)) end do ! convert interstitial density and magnetisation from coarse to fine grid call rfirctof(rhorir(:,ir),rhoir_) do idm=1,ndmag call rfirctof(magrir(:,idm,ir),magir_(:,idm)) end do ! calculate the exchange-correlation potential and magnetic field call potxc(.false.,xctype,rhomt_,rhoir_,magmt_,magir_,taumt,tauir,exmt,exir, & ecmt,ecir,vxcmt_,vxcrir(:,ir),bxcmt_,bxcrir(:,:,ir),wxcmt,wxcir) ! convert muffin-tin potential and field from fine to coarse radial mesh do ias=1,natmtot is=idxis(ias) call rfmtftoc(nrcmt(is),nrcmti(is),vxcmt_(:,ias),vxcrmt(:,ias,ir)) end do do idm=1,ndmag do ias=1,natmtot is=idxis(ias) call rfmtftoc(nrcmt(is),nrcmti(is),bxcmt_(:,ias,idm),bxcrmt(:,ias,idm,ir)) end do end do end do !$OMP END DO deallocate(rhomt_,rhoir_,vxcmt_) if (spinpol) deallocate(magmt_,magir_,bxcmt_) !$OMP END PARALLEL call freethd(nthd) ! broadcast potentials and fields to every MPI process if (np_mpi.gt.1) then n=npcmtmax*natmtot do ir=1,nqpt lp=mod(ir-1,np_mpi) call mpi_bcast(vxcrmt(:,:,ir),n,mpi_double_precision,lp,mpicom,ierror) end do do ir=1,nqpt lp=mod(ir-1,np_mpi) call mpi_bcast(vxcrir(:,ir),ngtot,mpi_double_precision,lp,mpicom,ierror) end do if (spinpol) then n=npcmtmax*natmtot*ndmag do ir=1,nqpt lp=mod(ir-1,np_mpi) call mpi_bcast(bxcrmt(:,:,:,ir),n,mpi_double_precision,lp,mpicom,ierror) end do n=ngtot*ndmag do ir=1,nqpt lp=mod(ir-1,np_mpi) call mpi_bcast(bxcrir(:,:,ir),n,mpi_double_precision,lp,mpicom,ierror) end do end if end if allocate(vxcqmt(npcmtmax,natmtot,nfqrz),vxcqir(ngtot,nfqrz)) ! Fourier transform exchange-correlation potential to Q-space call rfzfftq(-1,1,ngtot,vxcrmt,vxcrir,vxcqmt,vxcqir) deallocate(vxcrmt,vxcrir) ! add V_xc and external Coulomb potential to Kohn-Sham potential call holdthd(nfqrz,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(z1,ias,is,npc) & !$OMP NUM_THREADS(nthd) !$OMP DO do ifq=1,nfqrz z1=vclq(ifq) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) vsqmt(1:npc,ias,ifq)=vsqmt(1:npc,ias,ifq)+vxcqmt(1:npc,ias,ifq)+z1 end do end do !$OMP END DO NOWAIT !$OMP DO do ifq=1,nfqrz z1=vclq(ifq) vsqir(:,ifq)=vsqir(:,ifq)+vxcqir(:,ifq)+z1 end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) deallocate(vxcqmt,vxcqir) if (spinpol) then ! Fourier transform the exchange-correlation magnetic field to Q-space call rfzfftq(-1,ndmag,ngtot,bxcrmt,bxcrir,bsqmt,bsqir) deallocate(bxcrmt,bxcrir) ! add external magnetic fields call holdthd(nfqrz,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(idm,z1,z2,ias,is,npc) & !$OMP NUM_THREADS(nthd) !$OMP DO do ifq=1,nfqrz do idm=1,ndmag z1=bfcq(idm,ifq) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) z2=z1+bfcmtq(ias,idm,ifq) bsqmt(1:npc,ias,idm,ifq)=bsqmt(1:npc,ias,idm,ifq)+z2 end do end do end do !$OMP END DO NOWAIT !$OMP DO do ifq=1,nfqrz do idm=1,ndmag z1=bfcq(idm,ifq) bsqir(:,idm,ifq)=bsqir(:,idm,ifq)+z1 end do end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/occupyulr.f900000644000000000000000000000013214061636517015271 xustar0030 mtime=1623670095.867101608 30 atime=1623670094.719102674 30 ctime=1623670095.867101608 elk-7.2.42/src/occupyulr.f900000644002504400250440000000261714061636517017334 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine occupyulr use modmain use modulr implicit none ! local variables integer, parameter :: maxit=1000 integer ik0,ik,ist,it real(8) e0,e1,e real(8) chg,x,t1 ! external functions real(8), external :: stheta ! find minimum and maximum eigenvalues e0=evalu(1,1) e1=e0 do ik0=1,nkpt0 do ist=1,nstulr e=evalu(ist,ik0) if (e.lt.e0) e0=e if (e.gt.e1) e1=e end do end do if (e0.lt.e0min) then write(*,*) write(*,'("Warning(occupyulr): minimum eigenvalue less than minimum & &linearisation energy : ",2G18.10)') e0,e0min write(*,'(" for s.c. loop ",I5)') iscl end if t1=1.d0/swidth ! determine the Fermi energy using the bisection method do it=1,maxit efermi=0.5d0*(e0+e1) chg=0.d0 do ik0=1,nkpt0 ! central k-point ik=(ik0-1)*nkpa+1 do ist=1,nstulr e=evalu(ist,ik0) if (e.lt.e0min) then occulr(ist,ik0)=0.d0 else x=(efermi-e)*t1 occulr(ist,ik0)=occmax*stheta(stype,x) chg=chg+wkpt(ik)*occulr(ist,ik0) end if end do end do if (chg.lt.chgval) then e0=efermi else e1=efermi end if if ((e1-e0).lt.1.d-12) return end do write(*,*) write(*,'("Warning(occupyulr): could not find Fermi energy")') end subroutine elk-7.2.42/src/PaxHeaders.21776/writeinfou.f900000644000000000000000000000013214061636517015437 xustar0030 mtime=1623670095.868101607 30 atime=1623670094.721102672 30 ctime=1623670095.868101607 elk-7.2.42/src/writeinfou.f900000644002504400250440000000336014061636517017476 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeinfou(fnum) use modmain use modulr implicit none ! arguments integer fnum ! local variables real(8) t1 write(fnum,'("+------------------------------+")') write(fnum,'("| Ultra long-range calculation |")') write(fnum,'("+------------------------------+")') write(fnum,*) write(fnum,'("Ultracell lattice vectors :")') write(fnum,'(3G18.10)') avecu(1,1),avecu(2,1),avecu(3,1) write(fnum,'(3G18.10)') avecu(1,2),avecu(2,2),avecu(3,2) write(fnum,'(3G18.10)') avecu(1,3),avecu(2,3),avecu(3,3) write(fnum,*) write(fnum,'("Ultracell reciprocal lattice vectors :")') write(fnum,'(3G18.10)') bvecu(1,1),bvecu(2,1),bvecu(3,1) write(fnum,'(3G18.10)') bvecu(1,2),bvecu(2,2),bvecu(3,2) write(fnum,'(3G18.10)') bvecu(1,3),bvecu(2,3),bvecu(3,3) write(fnum,*) write(fnum,'("Ultracell volume : ",G18.10)') omegau write(fnum,'("Ultracell Brillouin zone volume : ",G18.10)') omegabzu write(fnum,*) t1=omegau/omega write(fnum,'("Ratio of ultracell to unit cell volume : ",G18.10)') t1 t1=t1*dble(natmtot) write(fnum,'("Number of atoms in ultracell : ",I16)') nint(t1,8) write(fnum,*) write(fnum,'("kappa-point grid : ",3I6)') ngridkpa write(fnum,'("Q-point grid : ",3I6)') ngridq write(fnum,*) write(fnum,'("Small Q-vector cut-off : ",G18.10)') q0cut if (fsmtype.ne.0) then write(fnum,*) write(fnum,'("Fixed spin moment (FSM) calculation, type : ",I4)') fsmtype if (fsmtype.lt.0) then write(fnum,'(" only moment direction is fixed")') end if end if write(fnum,*) write(fnum,'("Hamiltonian matrix size : ",I8)') nstulr flush(fnum) end subroutine elk-7.2.42/src/PaxHeaders.21776/zfplot.f900000644000000000000000000000013214061636517014562 xustar0030 mtime=1623670095.870101605 30 atime=1623670094.722102671 30 ctime=1623670095.870101605 elk-7.2.42/src/zfplot.f900000644002504400250440000001000514061636517016613 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zfplot(np,vpl,zfmt,zfir,fp) use modmain use modomp implicit none ! arguments integer, intent(in) :: np real(8), intent(in) :: vpl(3,np) complex(8), intent(in) :: zfmt(npcmtmax,natmtot),zfir(ngtot) complex(8), intent(out) :: fp(np) ! local variables integer ias,is,ip,nthd ! allocatable arrays complex(8), allocatable :: zfmt1(:,:,:),zfft(:) ! unpack the muffin-tin function allocate(zfmt1(lmmaxo,nrcmtmax,natmtot)) call holdthd(natmtot,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(is) & !$OMP NUM_THREADS(nthd) do ias=1,natmtot is=idxis(ias) call zfmtpack(.false.,nrcmt(is),nrcmti(is),zfmt(:,ias),zfmt1(:,:,ias)) end do !$OMP END PARALLEL DO call freethd(nthd) ! Fourier transform rfir to G-space allocate(zfft(ngtot)) zfft(:)=zfir(:) call zfftifc(3,ngridg,-1,zfft) ! begin loop over all points call holdthd(np,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ip=1,np call zfip(ip) end do !$OMP END PARALLEL DO call freethd(nthd) deallocate(zfmt1,zfft) return contains subroutine zfip(ip) implicit none ! arguments integer, intent(in) :: ip ! local variables integer is,ia,ias,nrc,nrci integer irc0,irc,lmax,l,m,lm integer ig,ifg,i1,i2,i3,i,j real(8) rmt2,r,ya1(4),ya2(4),t1,t2 real(8) v1(3),v2(3),v3(3),v4(3),v5(3) complex(8) z1 ! automatic arrays complex(8) ylm(lmmaxo) v2(:)=vpl(:,ip) call r3frac(epslat,v2) ! convert point to Cartesian coordinates call r3mv(avec,v2,v1) ! check if point is in a muffin-tin do is=1,nspecies nrc=nrcmt(is) nrci=nrcmti(is) rmt2=rmt(is)**2 do ia=1,natoms(is) ias=idxas(ia,is) v2(:)=v1(:)-atposc(:,ia,is) do i1=-1,1 v3(:)=v2(:)+dble(i1)*avec(:,1) do i2=-1,1 v4(:)=v3(:)+dble(i2)*avec(:,2) do i3=-1,1 v5(:)=v4(:)+dble(i3)*avec(:,3) t1=v5(1)**2+v5(2)**2+v5(3)**2 if (t1.lt.rmt2) then r=sqrt(t1) call genylmv(lmaxo,v5,ylm) do irc=1,nrc if (rcmt(irc,is).ge.r) then if (irc.le.3) then irc0=1 else if (irc.gt.nrc-2) then irc0=nrc-3 else irc0=irc-2 end if r=max(r,rcmt(1,is)) if (irc0.le.nrci) then lmax=lmaxi else lmax=lmaxo end if z1=0.d0 lm=0 do l=0,lmax do m=-l,l lm=lm+1 do j=1,4 i=irc0+j-1 ya1(j)=dble(zfmt1(lm,i,ias)) ya2(j)=aimag(zfmt1(lm,i,ias)) end do t1=poly4(rcmt(irc0,is),ya1,r) t2=poly4(rcmt(irc0,is),ya2,r) z1=z1+cmplx(t1,t2,8)*ylm(lm) end do end do goto 10 end if end do end if end do end do end do end do end do ! otherwise use direct Fourier transform of interstitial function z1=0.d0 do ig=1,ngvec ifg=igfft(ig) t1=vgc(1,ig)*v1(1)+vgc(2,ig)*v1(2)+vgc(3,ig)*v1(3) z1=z1+zfft(ifg)*cmplx(cos(t1),sin(t1),8) end do 10 continue fp(ip)=z1 end subroutine pure real(8) function poly4(xa,ya,x) implicit none ! arguments real(8), intent(in) :: xa(4),ya(4),x ! local variables real(8) x0,x1,x2,x3,y0,y1,y2,y3 real(8) c1,c2,c3,t0,t1,t2,t3,t4,t5,t6 ! evaluate the polynomial coefficients x0=xa(1) x1=xa(2)-x0; x2=xa(3)-x0; x3=xa(4)-x0 t4=x1-x2; t5=x1-x3; t6=x2-x3 y0=ya(1) y1=ya(2)-y0; y2=ya(3)-y0; y3=ya(4)-y0 t1=x1*x2*y3; t2=x2*x3*y1; t3=x1*x3 t0=1.d0/(x2*t3*t4*t5*t6) t3=t3*y2 c3=t1*t4+t2*t6-t3*t5 t4=x1**2; t5=x2**2; t6=x3**2 c2=t1*(t5-t4)+t2*(t6-t5)+t3*(t4-t6) c1=t1*(x2*t4-x1*t5)+t2*(x3*t5-x2*t6)+t3*(x1*t6-x3*t4) t1=x-x0 ! evaluate the polynomial poly4=y0+t0*t1*(c1+t1*(c2+c3*t1)) end function end subroutine elk-7.2.42/src/PaxHeaders.21776/writeengyu.f900000644000000000000000000000013214061636517015446 xustar0030 mtime=1623670095.871101605 30 atime=1623670094.724102669 30 ctime=1623670095.871101605 elk-7.2.42/src/writeengyu.f900000644002504400250440000000063714061636517017511 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeengyu(fnum) use modmain use modulr implicit none ! arguments integer, intent(in) :: fnum write(fnum,*) write(fnum,'("Energies :")') write(fnum,'(" Fermi",T30,": ",G22.12)') efermi end subroutine elk-7.2.42/src/PaxHeaders.21776/writevclr.f900000644000000000000000000000013214061636517015265 xustar0030 mtime=1623670095.873101603 30 atime=1623670094.726102667 30 ctime=1623670095.873101603 elk-7.2.42/src/writevclr.f900000644002504400250440000000144414061636517017325 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writevclr use modmain use modulr implicit none ! local variables integer i1,i2,i3,ir ! allocatable arrays real(8), allocatable :: vclr(:) allocate(vclr(nqpt)) ! Fourier transform external Coulomb potential from Q-space to real-space call rzfftifc(3,ngridq,1,vclr,vclq) ! write the real-space potential to file open(50,file='VCLR.OUT',form='FORMATTED') write(50,'(3I6," : grid size")') ngridq ir=0 do i3=1,ngridq(3) do i2=1,ngridq(2) do i1=1,ngridq(1) ir=ir+1 write(50,'(3I6,G18.10)') i1,i2,i3,vclr(ir) end do end do end do close(50) deallocate(vclr) end subroutine elk-7.2.42/src/PaxHeaders.21776/vclqinit.f900000644000000000000000000000013214061636517015075 xustar0030 mtime=1623670095.874101602 30 atime=1623670094.727102666 30 ctime=1623670095.874101602 elk-7.2.42/src/vclqinit.f900000644002504400250440000000113214061636517017127 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine vclqinit use modmain use modulr implicit none ! zero the external Coulomb potential in Q-space vclq(:)=0.d0 if (trdvclr) then ! read the external Coulomb potential from file if required call readvclr else ! determine the external Coulomb potential from the constant electric field call potefieldu ! write the external Coulomb potential to file call writevclr end if end subroutine elk-7.2.42/src/PaxHeaders.21776/genhdbulr.f900000644000000000000000000000012614061636517015221 xustar0028 mtime=1623670095.8761016 30 atime=1623670094.729102665 28 ctime=1623670095.8761016 elk-7.2.42/src/genhdbulr.f900000644002504400250440000000133614061636517017256 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genhdbulr use modmain use modulr use modmpi use modomp implicit none ! local variables integer ik0,nthd ! loop over original k-points call holdthd(nkpt0/np_mpi,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ik0=1,nkpt0 ! distribute among MPI processes if (mod(ik0-1,np_mpi).ne.lp_mpi) cycle ! write the long-range Hamiltonian diagonal blocks to file call puthdbulr(ik0) end do !$OMP END PARALLEL DO call freethd(nthd) ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/addbfsmu.f900000644000000000000000000000013214061636517015031 xustar0030 mtime=1623670095.877101599 30 atime=1623670094.731102663 30 ctime=1623670095.877101599 elk-7.2.42/src/addbfsmu.f900000644002504400250440000000167514061636517017077 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine addbfsmu use modmain use modulr implicit none ! local variables integer idm,is,ias,npc real(8) t1 ! add the global fixed spin moment B-field to the Kohn-Sham field if ((abs(fsmtype).eq.1).or.(abs(fsmtype).eq.3)) then do idm=1,ndmag t1=bfsmc(idm) do ias=1,natmtot is=idxis(ias) npc=npcmt(is) bsqmt(1:npc,ias,idm,1)=bsqmt(1:npc,ias,idm,1)+t1 end do bsqir(1:ngtot,idm,1)=bsqir(1:ngtot,idm,1)+t1*cfunir(1:ngtot) end do end if ! add the muffin-tin fields if ((abs(fsmtype).eq.2).or.(abs(fsmtype).eq.3)) then do idm=1,ndmag do ias=1,natmtot is=idxis(ias) npc=npcmt(is) t1=bfsmcmt(idm,ias) bsqmt(1:npc,ias,idm,1)=bsqmt(1:npc,ias,idm,1)+t1 end do end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/writechgrmt.f900000644000000000000000000000013214061636517015603 xustar0030 mtime=1623670095.879101597 30 atime=1623670094.732102662 30 ctime=1623670095.879101597 elk-7.2.42/src/writechgrmt.f900000644002504400250440000000131314061636517017636 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writechgrmt use modmain use modulr implicit none ! local variables integer is,ia,ias,ir open(50,file='CHGMTRU.OUT',form='FORMATTED') do ir=1,nqpt write(50,*) write(50,'("R-point (Cartesian coordinates) :")') write(50,'(3G18.10)') vrcu(:,ir) do is=1,nspecies write(50,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(50,'(" atom ",I4,T30,": ",G18.10)') ia,chgmtru(ias,ir) end do end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/initulr.f900000644000000000000000000000013114061636517014731 xustar0030 mtime=1623670095.880101596 29 atime=1623670094.73410266 30 ctime=1623670095.880101596 elk-7.2.42/src/initulr.f900000644002504400250440000001166614061636517017001 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine initulr use modmain use modulr use modomp implicit none ! local variables integer ik0,ik,ist,jst integer iq,jq,ifq,ig integer n,i,i1,i2,i3,nthd real(8) t1 ! allocatable arrays integer, allocatable :: idx(:) real(8), allocatable :: jlgqr(:,:) ! allocate long-range density and magnetisation arrays if (allocated(rhormt)) deallocate(rhormt) allocate(rhormt(npcmtmax,natmtot,nqpt)) if (allocated(rhorir)) deallocate(rhorir) allocate(rhorir(ngtc,nqpt)) if (allocated(magrmt)) deallocate(magrmt) if (allocated(magrir)) deallocate(magrir) if (spinpol) then allocate(magrmt(npcmtmax,natmtot,ndmag,nqpt)) allocate(magrir(ngtc,ndmag,nqpt)) end if if (allocated(rhoqmt)) deallocate(rhoqmt) allocate(rhoqmt(npcmtmax,natmtot,nfqrz)) if (allocated(rhoqir)) deallocate(rhoqir) allocate(rhoqir(ngtc,nfqrz)) if (allocated(chgmtru)) deallocate(chgmtru) allocate(chgmtru(natmtot,nqpt)) if (allocated(magqmt)) deallocate(magqmt) if (allocated(magqir)) deallocate(magqir) if (allocated(mommtru)) deallocate(mommtru) if (spinpol) then allocate(magqmt(npcmtmax,natmtot,ndmag,nfqrz)) allocate(magqir(ngtc,ndmag,nfqrz)) allocate(mommtru(ndmag,natmtot,nqpt)) end if ! allocate potential and magnetic field arrays if (allocated(vclq)) deallocate(vclq) allocate(vclq(nfqrz)) if (allocated(bfcq)) deallocate(bfcq) if (allocated(bfcmtq)) deallocate(bfcmtq) if (spinpol) then allocate(bfcq(ndmag,nfqrz)) allocate(bfcmtq(natmtot,ndmag,nfqrz)) end if ! combined target array for Kohn-Sham potential and magnetic field if (allocated(vsbsq)) deallocate(vsbsq) n=(npcmtmax*natmtot+ngtot)*nfqrz if (spinpol) n=n*(1+ndmag) allocate(vsbsq(n)) ! zero the array vsbsq(:)=0.d0 ! associate pointer arrays with target vsqmt(1:npcmtmax,1:natmtot,1:nfqrz)=>vsbsq(1:) i=npcmtmax*natmtot*nfqrz+1 vsqir(1:ngtot,1:nfqrz)=>vsbsq(i:) if (spinpol) then i=i+ngtot*nfqrz bsqmt(1:npcmtmax,1:natmtot,1:ndmag,1:nfqrz)=>vsbsq(i:) i=i+npcmtmax*natmtot*ndmag*nfqrz bsqir(1:ngtot,1:ndmag,1:nfqrz)=>vsbsq(i:) end if ! G+Q-vector arrays if (allocated(vgqc)) deallocate(vgqc) allocate(vgqc(3,ngvec,nfqrz)) if (allocated(gqc)) deallocate(gqc) allocate(gqc(ngvec,nfqrz)) if (allocated(ylmgq)) deallocate(ylmgq) allocate(ylmgq(lmmaxo,ngvec,nfqrz)) if (allocated(sfacgq)) deallocate(sfacgq) allocate(sfacgq(ngvec,natmtot,nfqrz)) if (allocated(gclq)) deallocate(gclq) allocate(gclq(nqpt)) if (allocated(gclgq)) deallocate(gclgq) allocate(gclgq(ngvec,nfqrz)) if (allocated(jlgqrmt)) deallocate(jlgqrmt) allocate(jlgqrmt(0:lnpsd,ngvec,nspecies,nfqrz)) if (allocated(expqmt)) deallocate(expqmt) allocate(expqmt(npcmtmax,natmtot,nqpt)) call holdthd(nfqrz,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(jlgqr,iq,ig,t1) & !$OMP PRIVATE(i1,i2,i3,jq) & !$OMP NUM_THREADS(nthd) allocate(jlgqr(njcmax,nspecies)) !$OMP DO do ifq=1,nfqrz iq=iqrzf(ifq) do ig=1,ngvec ! determine the G+Q-vectors vgqc(:,ig,ifq)=vgc(:,ig)+vqc(:,iq) ! G+Q-vector length gqc(ig,ifq)=sqrt(vgqc(1,ig,ifq)**2+vgqc(2,ig,ifq)**2+vgqc(3,ig,ifq)**2) ! spherical harmonics for G+Q-vectors call genylmv(lmaxo,vgqc(:,ig,ifq),ylmgq(:,ig,ifq)) end do ! generate the spherical Bessel functions j_l(|G+Q|r) call genjlgpr(1,gqc(1,ifq),jlgqr) ! structure factors for G+Q-vectors call gensfacgp(ngvec,vgqc(:,:,ifq),ngvec,sfacgq(:,:,ifq)) ! generate the Coulomb Green's function in Q-space with small Q cut-off t1=sqrt(vqc(1,iq)**2+vqc(2,iq)**2+vqc(3,iq)**2) if (t1.gt.q0cut+epslat) then gclq(iq)=fourpi/t1**2 else gclq(iq)=0.d0 end if ! generate the Coulomb Green's function in G+Q-space call gengclgq(.true.,iq,ngvec,gqc(:,ifq),gclgq(:,ifq)) ! compute the spherical Bessel functions j_l(|G+Q|R_mt) call genjlgprmt(lnpsd,ngvec,gqc(:,ifq),ngvec,jlgqrmt(:,:,:,ifq)) ! generate phase factor functions exp(iQ.r) in each muffin-tin call genexpmt(1,jlgqr,ylmgq(:,:,ifq),ngvec,sfacgq(:,:,ifq),expqmt(:,:,iq)) ! store the phase factor function for -Q i1=-ivq(1,iq); i2=-ivq(2,iq); i3=-ivq(3,iq) if ((i1.ge.intq(1,1)).and.(i1.le.intq(2,1)).and. & (i2.ge.intq(1,2)).and.(i2.le.intq(2,2)).and. & (i3.ge.intq(1,3)).and.(i3.le.intq(2,3)).and.(ifq.gt.1)) then jq=ivqiq(i1,i2,i3) expqmt(:,:,jq)=conjg(expqmt(:,:,iq)) end if end do !$OMP END DO deallocate(jlgqr) !$OMP END PARALLEL call freethd(nthd) ! number of long-range states nstulr=nstsv*nkpa ! allocate eigenvalue array if (allocated(evalu)) deallocate(evalu) allocate(evalu(nstulr,nkpt0)) ! allocate the occupation number array if (allocated(occulr)) deallocate(occulr) allocate(occulr(nstulr,nkpt0)) ! initialise the occupation numbers allocate(idx(nstulr)) do ik0=1,nkpt0 ik=(ik0-1)*nkpa+1 call sortidx(nstulr,occsv(1,ik),idx) do ist=1,nstulr i=idx(nstulr-ist+1)-1 ik=(ik0-1)*nkpa+i/nstsv+1 jst=mod(i,nstsv)+1 occulr(ist,ik0)=occsv(jst,ik) end do end do deallocate(idx) end subroutine elk-7.2.42/src/PaxHeaders.21776/writemomrmt.f900000644000000000000000000000013214061636517015632 xustar0030 mtime=1623670095.882101594 30 atime=1623670094.736102658 30 ctime=1623670095.882101594 elk-7.2.42/src/writemomrmt.f900000644002504400250440000000132414061636517017667 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writemomrmt use modmain use modulr implicit none ! local variables integer is,ia,ias,ir open(50,file='MOMMTRU.OUT',form='FORMATTED') do ir=1,nqpt write(50,*) write(50,'("R-point (Cartesian coordinates) :")') write(50,'(3G18.10)') vrcu(:,ir) do is=1,nspecies write(50,'(" species : ",I4," (",A,")")') is,trim(spsymb(is)) do ia=1,natoms(is) ias=idxas(ia,is) write(50,'(" atom ",I4,T30,": ",3G18.10)') ia,mommtru(1:ndmag,ias,ir) end do end do end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/writestulr.f900000644000000000000000000000013214061636517015470 xustar0030 mtime=1623670095.883101593 30 atime=1623670094.737102657 30 ctime=1623670095.883101593 elk-7.2.42/src/writestulr.f900000644002504400250440000000307214061636517017527 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writestulr use modmain use modulr implicit none ! local variables integer ifq,idm open(100,file='STATE_ULR.OUT',form='UNFORMATTED',action='WRITE') write(100) version write(100) natmtot write(100) npcmtmax write(100) ngtc write(100) ngtot write(100) ndmag write(100) fsmtype write(100) nqpt write(100) nfqrz write(100) ivq write(100) iqrzf ! write the ultra long-range density in Q-space do ifq=1,nfqrz write(100) rhoqmt(:,:,ifq) write(100) rhoqir(:,ifq) end do ! write the Kohn-Sham effective potential in Q-space do ifq=1,nfqrz write(100) vsqmt(:,:,ifq) write(100) vsqir(:,ifq) end do ! write the external Coulomb potential in Q-space do ifq=1,nfqrz write(100) vclq(ifq) end do if (spinpol) then ! write the magnetisation in Q-space do ifq=1,nfqrz do idm=1,ndmag write(100) magqmt(:,:,idm,ifq) write(100) magqir(:,idm,ifq) end do end do ! write the Kohn-Sham effective magnetic field in Q-space do ifq=1,nfqrz do idm=1,ndmag write(100) bsqmt(:,:,idm,ifq) write(100) bsqir(:,idm,ifq) end do end do ! write the external magnetic fields in Q-space do ifq=1,nfqrz do idm=1,ndmag write(100) bfcq(idm,ifq) write(100) bfcmtq(:,idm,ifq) end do end do ! write fixed spin moment magnetic fields if (fsmtype.ne.0) then write(100) bfsmc write(100) bfsmcmt end if end if close(100) end subroutine elk-7.2.42/src/PaxHeaders.21776/readstulr.f900000644000000000000000000000013214061636517015251 xustar0030 mtime=1623670095.885101591 30 atime=1623670094.739102655 30 ctime=1623670095.885101591 elk-7.2.42/src/readstulr.f900000644002504400250440000001212114061636517017303 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readstulr use modmain use modulr implicit none ! local variables integer iq,jq,ifq,jfq integer idm,i1,i2,i3 integer version_(3),ios integer natmtot_,npcmtmax_,ngtc_,ngtot_ integer ndmag_,fsmtype_,nqpt_,nfqrz_ complex(8) z1 ! automatic arrays complex(8) zv(natmtot) ! allocatable arrays integer, allocatable :: ivq_(:,:),iqrzf_(:),map(:) complex(8), allocatable :: zfmt(:,:),zfir(:) open(100,file='STATE_ULR.OUT',form='UNFORMATTED',action='READ',status='OLD', & iostat=ios) if (ios.ne.0) then write(*,*) write(*,'("Error(readstulr): error opening STATE_ULR.OUT")') write(*,*) stop end if read(100) version_ if ((version(1).ne.version_(1)).or.(version(2).ne.version_(2)).or. & (version(3).ne.version_(3))) then write(*,*) write(*,'("Warning(readstulr): different versions")') write(*,'(" current : ",I3.3,".",I3.3,".",I3.3)') version write(*,'(" STATE_ULR.OUT : ",I3.3,".",I3.3,".",I3.3)') version_ end if read(100) natmtot_ if (natmtot.ne.natmtot_) then write(*,*) write(*,'("Error(readstulr): differing natmtot")') write(*,'(" current : ",I6)') natmtot write(*,'(" STATE_ULR.OUT : ",I6)') natmtot_ write(*,*) stop end if read(100) npcmtmax_ if (npcmtmax.ne.npcmtmax_) then write(*,*) write(*,'("Error(readstulr): differing npcmtmax")') write(*,'(" current : ",I6)') npcmtmax write(*,'(" STATE_ULR.OUT : ",I6)') npcmtmax_ write(*,*) stop end if read(100) ngtc_ if (ngtc.ne.ngtc_) then write(*,*) write(*,'("Error(readstulr): differing ngtc")') write(*,'(" current : ",I8)') ngtc write(*,'(" STATE_ULR.OUT : ",I8)') ngtc_ write(*,*) stop end if read(100) ngtot_ if (ngtot.ne.ngtot_) then write(*,*) write(*,'("Error(readstulr): differing ngtot")') write(*,'(" current : ",I8)') ngtot write(*,'(" STATE_ULR.OUT : ",I8)') ngtot_ write(*,*) stop end if read(100) ndmag_ if (ndmag.ne.ndmag_) then write(*,*) write(*,'("Error(readstulr): differing ndmag")') write(*,'(" current : ",I1)') ndmag write(*,'(" STATE_ULR.OUT : ",I1)') ndmag_ write(*,*) stop end if read(100) fsmtype_ if (fsmtype.ne.fsmtype_) then write(*,*) write(*,'("Error(readstulr): differing fsmtype")') write(*,'(" current : ",I4)') fsmtype write(*,'(" STATE_ULR.OUT : ",I4)') fsmtype_ write(*,*) stop end if read(100) nqpt_ if (nqpt_.le.0) then write(*,*) write(*,'("Error(readstulr): nqpt_ <= 0 : ",I8)') nqpt_ write(*,*) stop end if read(100) nfqrz_ if (nfqrz_.le.0) then write(*,*) write(*,'("Error(readstulr): nfqrz_ <= 0 : ",I8)') nfqrz_ write(*,*) stop end if allocate(ivq_(3,nqpt_),iqrzf_(nfqrz_),map(nfqrz_)) read(100) ivq_ read(100) iqrzf_ ! generate map from old Q-vector grid to new map(:)=0 do ifq=1,nfqrz_ iq=iqrzf_(ifq) i1=ivq_(1,iq); i2=ivq_(2,iq); i3=ivq_(3,iq) if ((i1.ge.intq(1,1)).and.(i1.le.intq(2,1)).and. & (i2.ge.intq(1,2)).and.(i2.le.intq(2,2)).and. & (i3.ge.intq(1,3)).and.(i3.le.intq(2,3))) then jq=ivqiq(i1,i2,i3) jfq=ifqrz(jq) map(ifq)=jfq end if end do deallocate(ivq_,iqrzf_) allocate(zfmt(npcmtmax,natmtot),zfir(ngtot)) ! read the Q-space density rhoqmt(:,:,:)=0.d0 rhoqir(:,:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then read(100) rhoqmt(:,:,jfq) read(100) rhoqir(:,jfq) else read(100) zfmt read(100) zfir(1:ngtc) end if end do ! read the Q-space Kohn-Sham potential vsqmt(:,:,:)=0.d0 vsqir(:,:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then read(100) vsqmt(:,:,jfq) read(100) vsqir(:,jfq) else read(100) zfmt read(100) zfir end if end do ! read the external Coulomb potential in Q-space vclq(:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then read(100) vclq(jfq) else read(100) z1 end if end do if (spinpol) then ! read the Q-space magnetisation density magqmt(:,:,:,:)=0.d0 magqir(:,:,:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then do idm=1,ndmag read(100) magqmt(:,:,idm,jfq) read(100) magqir(:,idm,jfq) end do else do idm=1,ndmag read(100) zfmt read(100) zfir(1:ngtc) end do end if end do bsqmt(:,:,:,:)=0.d0 bsqir(:,:,:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then do idm=1,ndmag read(100) bsqmt(:,:,idm,jfq) read(100) bsqir(:,idm,jfq) end do else do idm=1,ndmag read(100) zfmt read(100) zfir end do end if end do ! read the external magnetic fields in Q-space bfcq(:,:)=0.d0 bfcmtq(:,:,:)=0.d0 do ifq=1,nfqrz_ jfq=map(ifq) if (jfq.gt.0) then do idm=1,ndmag read(100) bfcq(idm,jfq) read(100) bfcmtq(:,idm,jfq) end do else do idm=1,ndmag read(100) z1 read(100) zv end do end if end do ! read fixed spin moment effective fields if (fsmtype.ne.0) then read(100) bfsmc read(100) bfsmcmt end if end if close(100) deallocate(map,zfmt,zfir) end subroutine elk-7.2.42/src/PaxHeaders.21776/potefieldu.f900000644000000000000000000000013214061636517015404 xustar0030 mtime=1623670095.886101591 30 atime=1623670094.741102653 30 ctime=1623670095.886101591 elk-7.2.42/src/potefieldu.f900000644002504400250440000000142414061636517017442 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potefieldu use modmain use modulr implicit none ! local variables integer ir real(8) v0,v(3) ! allocatable arrays real(8), allocatable :: rfft(:) if (sum(abs(efielduc(:))).lt.epslat) return allocate(rfft(nqpt)) ! constant added to potential so that it is zero at the ultracell center v(:)=0.5d0*(avecu(:,1)+avecu(:,2)+avecu(:,3)) v0=dot_product(efielduc(:),v(:)) ! calculate the potential in real-space do ir=1,nqpt rfft(ir)=v0-dot_product(efielduc(:),vrcu(:,ir)) end do ! Fourier transform to Q-space call rzfftifc(3,ngridq,-1,rfft,vclq) deallocate(rfft) end subroutine elk-7.2.42/src/PaxHeaders.21776/puthdbulr.f900000644000000000000000000000013214061636517015255 xustar0030 mtime=1623670095.888101589 30 atime=1623670094.742102653 30 ctime=1623670095.888101589 elk-7.2.42/src/puthdbulr.f900000644002504400250440000000613114061636517017313 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine puthdbulr(ik0) use modmain use modulr use modramdisk implicit none ! arguments integer, intent(in) :: ik0 ! local variables integer ik,ikk,ikpa integer ist,recl real(8) t1 ! automatic arrays integer idx(nstsv) ! allocatable arrays complex(8), allocatable :: apwalm(:,:,:,:),evecfv(:,:),evecsv(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: wfmtk(:,:,:,:),wfgkk(:,:,:) complex(8), allocatable :: hdb(:,:,:),ok(:,:),b(:,:) ! central k-point ik=(ik0-1)*nkpa+1 ! get the ground-state eigenvectors from file for central k-point allocate(evecfv(nmatmax,nstfv),evecsv(nstsv,nstsv)) call getevecfv('.OUT',ik,vkl(:,ik),vgkl(:,:,:,ik),evecfv) call getevecsv('.OUT',ik,vkl(:,ik),evecsv) ! find the matching coefficients allocate(apwalm(ngkmax,apwordmax,lmmaxapw,natmtot)) call match(ngk(1,ik),vgkc(:,:,1,ik),gkc(:,1,ik),sfacgk(:,:,1,ik),apwalm) ! index to all states do ist=1,nstsv idx(ist)=ist end do ! calculate the wavefunctions for all states of the central k-point allocate(wfmt(npcmtmax,natmtot,nspinor,nstsv),wfir(ngtot,nspinor,nstsv)) call genwfsv(.false.,.false.,nstsv,idx,ngridg,igfft,ngk(1,ik),igkig(:,1,ik), & apwalm,evecfv,evecsv,wfmt,ngtot,wfir) ! compute the diagonal blocks of the ultra long-range Hamiltonian in the basis ! of the states at the central k-point allocate(wfmtk(npcmtmax,natmtot,nspinor,nstsv),wfgkk(ngkmax,nspinor,nstsv)) allocate(hdb(nstsv,nstsv,2:nkpa),ok(nstsv,nstsv),b(nstsv,nstsv)) do ikpa=2,nkpa ikk=(ik0-1)*nkpa+ikpa call getevecfv('.OUT',ikk,vkl(:,ikk),vgkl(:,:,:,ikk),evecfv) call getevecsv('.OUT',ikk,vkl(:,ikk),evecsv) call match(ngk(1,ikk),vgkc(:,:,1,ikk),gkc(:,1,ikk),sfacgk(:,:,1,ikk),apwalm) call genwfsv(.false.,.true.,nstsv,idx,ngridg,igfft,ngk(:,ikk),igkig(:,:,ikk),& apwalm,evecfv,evecsv,wfmtk,ngkmax,wfgkk) ! compute the overlap matrix between the states at k and k+kappa call genolpq(nstsv,expqmt(:,:,ikpa),ngk(:,ikk),igkig(:,:,ikk),wfmt,wfir, & wfmtk,wfgkk,ok) ! use singular value decompostion to make the matrix strictly unitary call unitary(nstsv,ok) ! apply the overlap matrix from the right to the eigenvalues at k+kappa do ist=1,nstsv t1=evalsv(ist,ikk) b(ist,:)=t1*ok(ist,:) end do ! apply the conjugate transpose of the overlap matrix from the left to form the ! Hamiltonian matrix in the basis of states at k call zgemm('C','N',nstsv,nstsv,nstsv,zone,ok,nstsv,b,nstsv,zzero, & hdb(:,:,ikpa),nstsv) end do ! determine the record length inquire(iolength=recl) vkl(:,1),nstsv,nkpa,hdb !$OMP CRITICAL(u300) open(300,file='HDBULR.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(300,rec=ik0) vkl(:,ik),nstsv,nkpa,hdb close(300) ! write to RAM disk if required if (ramdisk) then call putrd('HDBULR.OUT',ik0,v1=vkl(:,ik),n1=nstsv,n2=nkpa, & nzv=nstsv*nstsv*(nkpa-1),zva=hdb) end if !$OMP END CRITICAL(u300) deallocate(apwalm,evecfv,evecsv) deallocate(wfmt,wfir,wfmtk,wfgkk) deallocate(hdb,ok,b) end subroutine elk-7.2.42/src/PaxHeaders.21776/gethdbulr.f900000644000000000000000000000013214061636517015224 xustar0030 mtime=1623670095.889101588 30 atime=1623670094.744102651 30 ctime=1623670095.889101588 elk-7.2.42/src/gethdbulr.f900000644002504400250440000000320614061636517017262 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gethdbulr(ik0,hdb) use modmain use modulr use modramdisk implicit none ! arguments integer, intent(in) :: ik0 complex(8), intent(out) :: hdb(nstsv,nstsv,2:nkpa) ! local variables logical tgs integer nstsv_,nkpa_ integer ik,recl real(8) vkl_(3),t1 ! find the record length inquire(iolength=recl) vkl_,nstsv_,nkpa_,hdb !$OMP CRITICAL(u300) ! read from RAM disk if required if (ramdisk) then call getrd('HDBULR.OUT',ik0,tgs,v1=vkl_,n1=nstsv_,n2=nkpa_, & nzv=nstsv*nstsv*(nkpa-1),zva=hdb) if (tgs) goto 10 end if open(300,file='HDBULR.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(300,rec=ik0) vkl_,nstsv_,nkpa_,hdb 10 continue !$OMP END CRITICAL(u300) ! central k-point ik=(ik0-1)*nkpa+1 t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(gethdbulr): differing vectors for k-point ",I8)') ik0 write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" HDBULR.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(gethdbulr): differing nstsv for k-point ",I8)') ik0 write(*,'(" current : ",I8)') nstsv write(*,'(" HDBULR.OUT : ",I8)') nstsv_ write(*,*) stop end if if (nkpa.ne.nkpa_) then write(*,*) write(*,'("Error(gethdbulr): differing nkpa for k-point ",I8)') ik0 write(*,'(" current : ",I8)') nkpa write(*,'(" HDBULR.OUT : ",I8)') nkpa_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/potuinit.f900000644000000000000000000000013214061636517015117 xustar0030 mtime=1623670095.891101586 30 atime=1623670094.746102649 30 ctime=1623670095.891101586 elk-7.2.42/src/potuinit.f900000644002504400250440000000350714061636517017161 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potuinit use modmain use modulr use modrandom use modomp implicit none ! local variables integer ifq,idm,is,ias integer nrc,nrci,npc real(8) cb,t1 ! automatic arrays real(8) rfmt1(npcmtmax),rfmt2(npcmtmax) ! set the Q=0 muffin-tin potential equal to that of the normal ground-state do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) call rfmtftoc(nrc,nrci,vsmt(:,ias),rfmt1) call rbsht(nrc,nrci,rfmt1,rfmt2) vsqmt(1:npc,ias,1)=rfmt2(1:npc) end do ! zero the muffin-tin potential for non-zero Q do ifq=2,nfqrz do ias=1,natmtot is=idxis(ias) vsqmt(1:npcmt(is),ias,ifq)=0.d0 end do end do ! repeat for the interstitial potential vsqir(:,1)=vsir(:) vsqir(:,2:nfqrz)=0.d0 if (.not.spinpol) return ! set the Q=0 muffin-tin magnetic field equal to that of the normal ground-state do idm=1,ndmag do ias=1,natmtot is=idxis(ias) npc=npcmt(is) bsqmt(1:npc,ias,idm,1)=bsmt(1:npc,ias,idm) end do end do ! zero the magnetic field for non-zero Q do ifq=2,nfqrz do idm=1,ndmag do ias=1,natmtot is=idxis(ias) bsqmt(1:npcmt(is),ias,idm,ifq)=0.d0 end do end do end do ! repeat for the interstitial magnetic field bsqir(:,:,1)=bsir(:,:) bsqir(:,:,2:nfqrz)=0.d0 ! coupling constant of the external field (g_e/4c) cb=gfacte/(4.d0*solsc) ! initialise the external magnetic fields t1=cb*rndbfcu do ifq=1,nfqrz do idm=1,ndmag bfcq(idm,ifq)=t1*cmplx(randomu()-0.5d0,randomu()-0.5d0,8) do ias=1,natmtot bfcmtq(ias,idm,ifq)=t1*cmplx(randomu()-0.5d0,randomu()-0.5d0,8) end do end do end do bfcq(:,1)=dble(bfcq(:,1)) bfcmtq(:,:,1)=dble(bfcmtq(:,:,1)) end subroutine elk-7.2.42/src/PaxHeaders.21776/readvclr.f900000644000000000000000000000013214061636517015046 xustar0030 mtime=1623670095.892101585 30 atime=1623670094.747102648 30 ctime=1623670095.892101585 elk-7.2.42/src/readvclr.f900000644002504400250440000000245314061636517017107 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine readvclr use modmain use modulr implicit none ! local variables integer i1,i2,i3,ir integer ngridq_(3),i1_,i2_,i3_ ! allocatable arrays real(8), allocatable :: vclr(:) allocate(vclr(nqpt)) ! read the real-space external Coulomb potential from file open(50,file='VCLR.OUT',form='FORMATTED') read(50,*) ngridq_(:) if (any(ngridq(:).ne.ngridq_(:))) then write(*,*) write(*,'("Error(readvclr): differing ngridq")') write(*,'(" current : ",3I6)') ngridq write(*,'(" VCLR.OUT : ",3I6)') ngridq_ write(*,*) stop end if ir=0 do i3=1,ngridq(3) do i2=1,ngridq(2) do i1=1,ngridq(1) ir=ir+1 read(50,*) i1_,i2_,i3_,vclr(ir) if ((i1.ne.i1_).or.(i2.ne.i2_).or.(i3.ne.i3_)) then write(*,*) write(*,'("Error(readvclr): differing i1, i2 or i3")') write(*,'(" current : ",3I6)') i1,i2,i3 write(*,'(" VCLR.OUT : ",3I6)') i1_,i2_,i3_ write(*,*) stop end if end do end do end do close(50) ! Fourier transform external Coulomb potential from real-space to Q-space call rzfftifc(3,ngridq,-1,vclr,vclq) deallocate(vclr) end subroutine elk-7.2.42/src/PaxHeaders.21776/genkpakq.f900000644000000000000000000000013214061636517015045 xustar0030 mtime=1623670095.894101583 30 atime=1623670094.749102646 30 ctime=1623670095.894101583 elk-7.2.42/src/genkpakq.f900000644002504400250440000001041114061636517017077 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genkpakq use modmain use modulr implicit none ! local variables integer i1,i2,i3,j1,j2,j3 integer ikpa,ik0,ik integer n1,iq,ifq,ir real(8) v(3) ! allocatable arrays real(8), allocatable :: vkl0(:,:),vkc0(:,:),wkpt0(:) ! find next largest FFT-compatible Q-point grid size (radices 2, 3, 5 and 7) call nfftifc(4,ngridq(1)) call nfftifc(4,ngridq(2)) call nfftifc(4,ngridq(3)) ! total number of Q-points nqpt=ngridq(1)*ngridq(2)*ngridq(3) ! number of complex FFT elements for real-complex transforms n1=ngridq(1)/2+1 nfqrz=n1*ngridq(2)*ngridq(3) ! integer grid intervals for the Q-points intq(1,:)=ngridq(:)/2-ngridq(:)+1 intq(2,:)=ngridq(:)/2 ! kappa-point grid should be half the Q-point grid ngridkpa(:)=(ngridq(:)+1)/2 ! number of kappa-points nkpa=ngridkpa(1)*ngridkpa(2)*ngridkpa(3) ! integer grid intervals for the kappa-points intkpa(1,:)=ngridkpa(:)/2-ngridkpa(:)+1 intkpa(2,:)=ngridkpa(:)/2 ! allocate global Q-point arrays if (allocated(ivq)) deallocate(ivq) allocate(ivq(3,nqpt)) if (allocated(ivqiq)) deallocate(ivqiq) allocate(ivqiq(intq(1,1):intq(2,1),intq(1,2):intq(2,2),intq(1,3):intq(2,3))) if (allocated(iqfft)) deallocate(iqfft) allocate(iqfft(nqpt)) if (allocated(ifqrz)) deallocate(ifqrz) allocate(ifqrz(nqpt)) if (allocated(iqrzf)) deallocate(iqrzf) allocate(iqrzf(nfqrz)) if (allocated(vql)) deallocate(vql) allocate(vql(3,nqpt)) if (allocated(vqc)) deallocate(vqc) allocate(vqc(3,nqpt)) ! store the kappa-points as the first nkpa entries in the Q-point arrays iq=0 do i1=intkpa(1,1),intkpa(2,1) do i2=intkpa(1,2),intkpa(2,2) do i3=intkpa(1,3),intkpa(2,3) iq=iq+1 ivq(1,iq)=i1 ivq(2,iq)=i2 ivq(3,iq)=i3 end do end do end do ! store the remaining Q-points do i1=intq(1,1),intq(2,1) do i2=intq(1,2),intq(2,2) do i3=intq(1,3),intq(2,3) if ((i1.lt.intkpa(1,1)).or.(i1.gt.intkpa(2,1)).or. & (i2.lt.intkpa(1,2)).or.(i2.gt.intkpa(2,2)).or. & (i3.lt.intkpa(1,3)).or.(i3.gt.intkpa(2,3))) then iq=iq+1 ivq(1,iq)=i1 ivq(2,iq)=i2 ivq(3,iq)=i3 end if end do end do end do ! ensure the first point is the zero vector do iq=1,nkpa if ((ivq(1,iq).eq.0).and.(ivq(2,iq).eq.0).and.(ivq(3,iq).eq.0)) then ivq(:,iq)=ivq(:,1) ivq(:,1)=0 exit end if end do do iq=1,nqpt i1=ivq(1,iq); i2=ivq(2,iq); i3=ivq(3,iq) ! map from (i1,i2,i3) to Q-vector index ivqiq(i1,i2,i3)=iq ! Q-vector in Cartesian coordinates vqc(:,iq)=dble(i1)*bvecu(:,1) & +dble(i2)*bvecu(:,2) & +dble(i3)*bvecu(:,3) ! Q-vector in (unit cell) lattice coordinates call r3mv(binv,vqc(:,iq),vql(:,iq)) where(abs(vql(:,iq)).lt.epslat) vql(:,iq)=0.d0 end do ! set up Fourier transform index do iq=1,nqpt i1=ivq(1,iq); i2=ivq(2,iq); i3=ivq(3,iq) if (i1.ge.0) then j1=i1 else j1=ngridq(1)+i1 end if if (i2.ge.0) then j2=i2 else j2=ngridq(2)+i2 end if if (i3.ge.0) then j3=i3 else j3=ngridq(3)+i3 end if iqfft(iq)=j3*ngridq(2)*ngridq(1)+j2*ngridq(1)+j1+1 ! map from q-point index to real-complex FFT index and vice versa if (i1.ge.0) then ifq=j3*ngridq(2)*n1+j2*n1+j1+1 ifqrz(iq)=ifq iqrzf(ifq)=iq end if end do ! store the R-vectors in Cartesian coordinates spanning the ultracell if (allocated(vrcu)) deallocate(vrcu) allocate(vrcu(3,nqpt)) ir=0 do i3=0,ngridq(3)-1 v(3)=dble(i3)/dble(ngridq(3)) do i2=0,ngridq(2)-1 v(2)=dble(i2)/dble(ngridq(2)) do i1=0,ngridq(1)-1 v(1)=dble(i1)/dble(ngridq(1)) ir=ir+1 call r3mv(avecu,v,vrcu(:,ir)) end do end do end do ! store the existing k-point and weight arrays allocate(vkl0(3,nkpt),vkc0(3,nkpt),wkpt0(nkpt)) vkl0(:,1:nkpt)=vkl(:,1:nkpt) vkc0(:,1:nkpt)=vkc(:,1:nkpt) wkpt0(1:nkpt)=wkpt(1:nkpt) ! number of k+kappa-points nkpt0=nkpt nkpt=nkpt0*nkpa ! deallocate and reallocate k-point and weight arrays deallocate(vkl,vkc,wkpt) allocate(vkl(3,nkpt),vkc(3,nkpt),wkpt(nkpt)) ik=0 do ik0=1,nkpt0 do ikpa=1,nkpa ik=ik+1 vkl(:,ik)=vkl0(:,ik0)+vql(:,ikpa) vkc(:,ik)=vkc0(:,ik0)+vqc(:,ikpa) wkpt(ik)=wkpt0(ik0)/dble(nkpa) end do end do deallocate(vkl0,vkc0,wkpt0) end subroutine elk-7.2.42/src/PaxHeaders.21776/genzvmatk.f900000644000000000000000000000013214061636517015252 xustar0030 mtime=1623670095.895101582 30 atime=1623670094.751102644 30 ctime=1623670095.895101582 elk-7.2.42/src/genzvmatk.f900000644002504400250440000000456714061636517017323 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genzvmatk(zvmt,zvir,ngp,igpig,wfmt,wfir,wfgp,vmat) use modmain use modomp implicit none ! arguments ! the potential is multiplied by the radial integration weights in the ! muffin-tin and by the characteristic function in the interstitial region complex(8), intent(in) :: zvmt(npcmtmax,natmtot),zvir(ngtot) integer, intent(in) :: ngp,igpig(ngp) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) ! note that wfir does not have a 1/sqrt(omega) prefactor complex(8), intent(in) :: wfir(ngtot,nspinor,nstsv) complex(8), intent(in) :: wfgp(ngp,nspinor,nstsv) complex(8), intent(out) :: vmat(nstsv,nstsv) ! local variables integer ist,jst,ispn integer is,ias,npc,nthd ! automatic arrays complex(8) wfmt1(npcmtmax),z(ngp) ! allocatable arrays complex(8), allocatable :: wfir1(:) ! external functions complex(8), external :: zdotc ! zero the matrix elements vmat(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfmt1,ispn,ias) & !$OMP PRIVATE(is,npc,ist) & !$OMP NUM_THREADS(nthd) do jst=1,nstsv do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! apply complex potential to wavefunction wfmt1(1:npc)=zvmt(1:npc,ias)*wfmt(1:npc,ias,ispn,jst) ! compute the inner products do ist=1,nstsv vmat(ist,jst)=vmat(ist,jst)+zdotc(npc,wfmt(:,ias,ispn,ist),1,wfmt1,1) end do end do end do end do !$OMP END PARALLEL DO call freethd(nthd) !---------------------------! ! interstitial part ! !---------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir1,z,ispn,ist) & !$OMP NUM_THREADS(nthd) allocate(wfir1(ngtot)) !$OMP DO do jst=1,nstsv do ispn=1,nspinor ! apply potential to wavefunction wfir1(1:ngtot)=zvir(1:ngtot)*wfir(1:ngtot,ispn,jst) ! Fourier transform to G+p-space call zfftifc(3,ngridg,-1,wfir1) z(1:ngp)=wfir1(igfft(igpig(1:ngp))) do ist=1,nstsv ! compute inner product vmat(ist,jst)=vmat(ist,jst)+zdotc(ngp,wfgp(:,ispn,ist),1,z,1) end do end do end do !$OMP END DO deallocate(wfir1) !$OMP END PARALLEL call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/genzvbmatk.f900000644000000000000000000000013014061636517015412 xustar0029 mtime=1623670095.89710158 30 atime=1623670094.752102643 29 ctime=1623670095.89710158 elk-7.2.42/src/genzvbmatk.f900000644002504400250440000000746614061636517017466 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genzvbmatk(zvmt,zvir,zbmt,zbir,ngp,igpig,wfmt,wfir,wfgp,vbmat) use modmain use modomp implicit none ! arguments ! the potential and field are multiplied by the radial integration weights in ! the muffin-tin and by the characteristic function in the interstitial region complex(8), intent(in) :: zvmt(npcmtmax,natmtot),zvir(ngtot) complex(8), intent(in) :: zbmt(npcmtmax,natmtot,ndmag),zbir(ngtot,ndmag) integer, intent(in) :: ngp,igpig(ngp) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) ! note that wfir does not have a 1/sqrt(omega) prefactor complex(8), intent(in) :: wfir(ngtot,nspinor,nstsv) complex(8), intent(in) :: wfgp(ngp,nspinor,nstsv) complex(8), intent(out) :: vbmat(nstsv,nstsv) ! local variables integer ist,jst,ispn integer is,ias,npc,nthd ! automatic arrays complex(8) wfmt2(npcmtmax,nspinor),z(ngp) ! allocatable arrays complex(8), allocatable :: wfir2(:,:) ! external functions complex(8), external :: zdotc ! zero the matrix elements vbmat(:,:)=0.d0 !-------------------------! ! muffin-tin part ! !-------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(wfmt2,ias,is,npc,ist) & !$OMP NUM_THREADS(nthd) do jst=1,nstsv do ias=1,natmtot is=idxis(ias) npc=npcmt(is) ! apply local potential and magnetic field to spinor wavefunction if (ncmag) then ! non-collinear case call zvbmk1(npc,zvmt(:,ias),zbmt(:,ias,1),zbmt(:,ias,2),zbmt(:,ias,3), & wfmt(:,ias,1,jst),wfmt(:,ias,2,jst),wfmt2,wfmt2(:,2)) else ! collinear case call zvbmk2(npc,zvmt(:,ias),zbmt(:,ias,1),wfmt(:,ias,1,jst), & wfmt(:,ias,2,jst),wfmt2,wfmt2(:,2)) end if ! compute the inner products do ist=1,nstsv vbmat(ist,jst)=vbmat(ist,jst) & +zdotc(npc,wfmt(:,ias,1,ist),1,wfmt2,1) & +zdotc(npc,wfmt(:,ias,2,ist),1,wfmt2(:,2),1) end do end do end do !$OMP END PARALLEL DO call freethd(nthd) !---------------------------! ! interstitial part ! !---------------------------! call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(wfir2,z,ispn,ist) & !$OMP NUM_THREADS(nthd) allocate(wfir2(ngtot,nspinor)) !$OMP DO do jst=1,nstsv ! apply local potential and magnetic field to spinor wavefunction if (ncmag) then ! non-collinear case call zvbmk1(ngtot,zvir,zbir,zbir(:,2),zbir(:,3),wfir(:,1,jst), & wfir(:,2,jst),wfir2,wfir2(:,2)) else ! collinear case call zvbmk2(ngtot,zvir,zbir,wfir(:,1,jst),wfir(:,2,jst),wfir2,wfir2(:,2)) end if do ispn=1,nspinor ! Fourier transform to G+p-space call zfftifc(3,ngridg,-1,wfir2(:,ispn)) z(1:ngp)=wfir2(igfft(igpig(1:ngp)),ispn) do ist=1,nstsv vbmat(ist,jst)=vbmat(ist,jst)+zdotc(ngp,wfgp(:,ispn,ist),1,z,1) end do end do end do !$OMP END DO deallocate(wfir2) !$OMP END PARALLEL call freethd(nthd) return contains pure subroutine zvbmk1(n,zv,zb1,zb2,zb3,wf11,wf12,wf21,wf22) implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: zv(n),zb1(n),zb2(n),zb3(n) complex(8), intent(in) :: wf11(n),wf12(n) complex(8), intent(out) :: wf21(n),wf22(n) ! local variables integer i complex(8) z1 do i=1,n z1=cmplx(-aimag(zb2(i)),dble(zb2(i)),8) wf21(i)=(zv(i)+zb3(i))*wf11(i)+(zb1(i)-z1)*wf12(i) wf22(i)=(zv(i)-zb3(i))*wf12(i)+(zb1(i)+z1)*wf11(i) end do end subroutine pure subroutine zvbmk2(n,zv,zb,wf11,wf12,wf21,wf22) implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: zv(n),zb(n) complex(8), intent(in) :: wf11(n),wf12(n) complex(8), intent(out) :: wf21(n),wf22(n) ! local variables integer i do i=1,n wf21(i)=(zv(i)+zb(i))*wf11(i) wf22(i)=(zv(i)-zb(i))*wf12(i) end do end subroutine end subroutine elk-7.2.42/src/PaxHeaders.21776/potksu.f900000644000000000000000000000013214061636517014571 xustar0030 mtime=1623670095.898101579 30 atime=1623670094.754102641 30 ctime=1623670095.898101579 elk-7.2.42/src/potksu.f900000644002504400250440000000107714061636517016633 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potksu use modmain use modulr implicit none ! compute the ultra long-range Coulomb potential call potcoulu ! compute the ultra long-range exchange-correlation potential and fields call potxcu ! reduce the external magnetic field if required if (reducebf.lt.1.d0) then bfcq(:,:)=bfcq(:,:)*reducebf bfcmtq(:,:,:)=bfcmtq(:,:,:)*reducebf end if end subroutine elk-7.2.42/src/PaxHeaders.21776/plotu1d.f900000644000000000000000000000013214061636517014634 xustar0030 mtime=1623670095.900101578 30 atime=1623670094.756102639 30 ctime=1623670095.900101578 elk-7.2.42/src/plotu1d.f900000644002504400250440000000233514061636517016674 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine plotu1d(fnum1,fnum2,nf,zfmt,zfir) use modmain implicit none ! arguments integer, intent(in) :: fnum1,fnum2,nf complex(8), intent(in) :: zfmt(npcmtmax,natmtot,nf,nfqrz) complex(8), intent(in) :: zfir(ngtot,nf,nfqrz) ! local variables integer jf,ip,iv real(8) fmin,fmax,t1 ! allocatable arrays real(8), allocatable :: fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plotu1d): invalid number of functions : ",I8)') nf write(*,*) stop end if allocate(fp(npp1d,nf)) ! connect the 1D plotting vertices call plotpt1d(avec,nvp1d,npp1d,vvlp1d,vplp1d,dvp1d,dpp1d) ! evaluate function at each point call plotulr(npp1d,vplp1d,nf,zfmt,zfir,fp) do ip=1,npp1d ! write the point distances and function to file write(fnum1,'(5G18.10)') dpp1d(ip),(fp(ip,jf),jf=1,nf) end do ! write the vertex location lines fmin=minval(fp(:,:)) fmax=maxval(fp(:,:)) t1=0.5d0*(fmax-fmin) do iv=1,nvp1d write(fnum2,'(2G18.10)') dvp1d(iv),fmax+t1 write(fnum2,'(2G18.10)') dvp1d(iv),fmin-t1 write(fnum2,*) end do deallocate(fp) end subroutine elk-7.2.42/src/PaxHeaders.21776/plotu2d.f900000644000000000000000000000013214061636517014635 xustar0030 mtime=1623670095.901101577 30 atime=1623670094.758102638 30 ctime=1623670095.901101577 elk-7.2.42/src/plotu2d.f900000644002504400250440000000236414061636517016677 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine plotu2d(tproj,fnum,nf,zfmt,zfir) use modmain implicit none ! arguments logical, intent(in) :: tproj integer, intent(in) :: fnum,nf complex(8), intent(in) :: zfmt(npcmtmax,natmtot,nf,nfqrz) complex(8), intent(in) :: zfir(ngtot,nf,nfqrz) ! local variables integer np,jf,ip real(8) vpnl(3) ! allocatable arrays real(8), allocatable :: vpl(:,:),vppc(:,:),fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plotu2d): invalid number of functions : ",I8)') nf write(*,*) stop end if ! allocate local arrays np=np2d(1)*np2d(2) allocate(vpl(3,np),vppc(2,np),fp(np,nf)) ! generate the 2D plotting points call plotpt2d(avec,ainv,vpnl,vpl,vppc) ! evaluate the functions at the grid points call plotulr(np,vpl,nf,zfmt,zfir,fp) ! project the vector function onto the 2D plotting plane if required if (tproj.and.(nf.eq.3)) then call proj2d(np,fp) end if ! write the functions to file write(fnum,'(2I6," : grid size")') np2d(:) do ip=1,np write(fnum,'(6G18.10)') vppc(1,ip),vppc(2,ip),(fp(ip,jf),jf=1,nf) end do deallocate(vpl,vppc,fp) end subroutine elk-7.2.42/src/PaxHeaders.21776/plotu3d.f900000644000000000000000000000013214061636517014636 xustar0030 mtime=1623670095.903101575 30 atime=1623670094.759102637 30 ctime=1623670095.903101575 elk-7.2.42/src/plotu3d.f900000644002504400250440000000212314061636517016671 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine plotu3d(fnum,nf,zfmt,zfir) use modmain implicit none ! arguments integer, intent(in) :: fnum,nf complex(8), intent(in) :: zfmt(npcmtmax,natmtot,nf,nfqrz) complex(8), intent(in) :: zfir(ngtot,nf,nfqrz) ! local variables integer np,jf,ip real(8) v1(3) ! allocatable arrays real(8), allocatable :: vpl(:,:),fp(:,:) if ((nf.lt.1).or.(nf.gt.4)) then write(*,*) write(*,'("Error(plotu3d): invalid number of functions : ",I8)') nf write(*,*) stop end if ! total number of plot points np=np3d(1)*np3d(2)*np3d(3) ! allocate local arrays allocate(vpl(3,np),fp(np,nf)) ! generate the 3D plotting points call plotpt3d(vpl) ! evaluate the functions at the grid points call plotulr(np,vpl,nf,zfmt,zfir,fp) ! write functions to file write(fnum,'(3I6," : grid size")') np3d(:) do ip=1,np call r3mv(avec,vpl(:,ip),v1) write(fnum,'(7G18.10)') v1(:),(fp(ip,jf),jf=1,nf) end do deallocate(vpl,fp) end subroutine elk-7.2.42/src/PaxHeaders.21776/gndstulr.f900000644000000000000000000000013214061636517015106 xustar0030 mtime=1623670095.904101574 30 atime=1623670094.761102635 30 ctime=1623670095.904101574 elk-7.2.42/src/gndstulr.f900000644002504400250440000001623414061636517017151 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine gndstulr use modmain use modulr use moddftu use modmpi use modomp use modstore implicit none ! local variables logical twrite integer ik0,ir,lp,nthd integer nmix,nwork,n real(8) dv ! allocatable arrays integer(8), allocatable :: lock(:) real(8), allocatable :: work(:) complex(8), allocatable :: evecu(:,:) if (xctype(1).lt.0) then write(*,*) write(*,'("Error(gndstulr): ultra long-range does not work with OEP")') write(*,*) stop end if if (spincore) then write(*,*) write(*,'("Error(gndstulr): ultra long-range does not work with & &spin-polarised cores")') write(*,*) stop end if ! no k-point reduction reducek_=reducek reducek=0 ! initialise global variables call init0 call init1 ! write the kappa-points to file call writekpa ! write the k+kappa-points to file call writekpts ! read the regular Kohn-Sham potential from file call readstate ! generate the first- and second-variational eigenvectors and eigenvalues for ! the k+kappa-point set call genvsig call gencore call readfermi call linengy call genapwlofr call gensocfr call genevfsv call occupy ! initialise the ultra long-range variables call initulr if (task.eq.700) then ! initialise the long-range Kohn-Sham potential and magnetic field call potuinit else ! read in the potential and density from STATE_ULR.OUT call readstulr end if ! initialise the external Coulomb potential call vclqinit ! write the long-range Hamiltonian diagonal blocks to file call genhdbulr ! size of mixing vector (complex array) nmix=2*size(vsbsq) ! determine the size of the mixer work array nwork=-1 call mixerifc(mixtype,nmix,vsbsq,dv,nwork,vsbsq) allocate(work(nwork)) ! initialise the mixer iscl=0 call mixerifc(mixtype,nmix,vsbsq,dv,nwork,work) ! initialise the OpenMP locks allocate(lock(nqpt)) do ir=1,nqpt call omp_init_lock(lock(ir)) end do ! set last self-consistent loop flag tlast=.false. ! begin the self-consistent loop if (mp_mpi) then ! open ULR_INFO.OUT file open(60,file='ULR_INFO.OUT',form='FORMATTED') ! open RMSDVS.OUT open(65,file='RMSDVS.OUT',form='FORMATTED') call writeinfou(60) write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop started |")') write(60,'("+------------------------------+")') end if do iscl=1,maxscl if (mp_mpi) then write(60,*) write(60,'("+--------------------+")') write(60,'("| Loop number : ",I4," |")') iscl write(60,'("+--------------------+")') end if if (iscl.ge.maxscl) then if (mp_mpi) then write(60,*) write(60,'("Reached self-consistent loops maximum")') end if write(*,*) write(*,'("Warning(gndstulr): failed to reach self-consistency after ",I4,& &" loops")') iscl tlast=.true. end if ! reset the OpenMP thread variables call omp_reset ! apply required local operations to the potential and magnetic field call vblocalu ! zero the density and magnetisation rhormt(:,:,:)=0.d0 rhorir(:,:)=0.d0 if (spinpol) then magrmt(:,:,:,:)=0.d0 magrir(:,:,:)=0.d0 end if ! loop over original k-points call holdthd(nkpt0/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(evecu) & !$OMP NUM_THREADS(nthd) allocate(evecu(nstulr,nstulr)) !$OMP DO do ik0=1,nkpt0 ! distribute among MPI processes if (mod(ik0-1,np_mpi).ne.lp_mpi) cycle ! solve the ultra long-range eigenvalue equation call eveqnulr(ik0,evecu) ! add to the density, magnetisation and current call rhomaguk(ik0,lock,evecu) end do !$OMP END DO deallocate(evecu) !$OMP END PARALLEL call freethd(nthd) if (np_mpi.gt.1) then ! broadcast eigenvalue array to every process do ik0=1,nkpt0 lp=mod(ik0-1,np_mpi) call mpi_bcast(evalu(:,ik0),nstulr,mpi_double_precision,lp,mpicom,ierror) end do ! add densities from each process and redistribute n=npcmtmax*natmtot*nqpt call mpi_allreduce(mpi_in_place,rhormt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) n=ngtc*nqpt call mpi_allreduce(mpi_in_place,rhorir,n,mpi_double_precision,mpi_sum, & mpicom,ierror) if (spinpol) then n=npcmtmax*natmtot*ndmag*nqpt call mpi_allreduce(mpi_in_place,magrmt,n,mpi_double_precision,mpi_sum, & mpicom,ierror) n=ngtc*ndmag*nqpt call mpi_allreduce(mpi_in_place,magrir,n,mpi_double_precision,mpi_sum, & mpicom,ierror) end if end if ! find the occupation numbers and Fermi energy call occupyulr ! synchronise MPI processes call mpi_barrier(mpicom,ierror) ! add the core density call rhocoreu ! perform partial Fourier transform to Q-space call rhomagq ! determine the muffin-tin and interstitial charges and moments call chargeu call momentu ! compute the ultra long-range Kohn-Sham potential call potksu ! mix the old potential and field with the new call mixerifc(mixtype,nmix,vsbsq,dv,nwork,work) ! multiply the RMS change in potential by the number of Q-points dv=dv*dble(nfqrz) ! calculate and add the fixed spin moment effective field (after mixing) call fsmbfield call addbfsmu if (mp_mpi) then ! write eigenvalues to file call writeevalu ! output energy components call writeengyu(60) ! output charges call writechg(60) ! write muffin-tin charges for each R-vector call writechgrmt if (spinpol) then ! output moments call writemom(60) ! write muffin-tin moments for each R-vector call writemomrmt end if ! output effective fields for fixed spin moment calculations if (fsmtype.ne.0) call writefsm(60) ! check for WRITE file call checkwrite(twrite) ! write STATE_ULR.OUT file if required if (twrite.or.((nwrite.ge.1).and.(mod(iscl,nwrite).eq.0))) then call writestulr write(60,*) write(60,'("Wrote STATE_ULR.OUT")') end if end if ! exit self-consistent loop if required if (tlast) goto 10 ! check for convergence if (iscl.ge.2) then if (mp_mpi) then write(60,*) write(60,'("RMS change in Kohn-Sham potential (target) : ",G18.10," (",& &G18.10,")")') dv,epspot flush(60) write(65,'(G18.10)') dv flush(65) end if if (dv.lt.epspot) then if (mp_mpi) then write(60,*) write(60,'("Convergence targets achieved")') end if tlast=.true. end if end if ! check for STOP file call checkstop if (tstop) tlast=.true. ! broadcast tlast from master process to all other processes call mpi_bcast(tlast,1,mpi_logical,0,mpicom,ierror) ! reset the OpenMP thread variables call omp_reset end do 10 continue if (mp_mpi) then write(60,*) write(60,'("+------------------------------+")') write(60,'("| Self-consistent loop stopped |")') write(60,'("+------------------------------+")') if (maxscl.gt.1) then call writestulr write(60,*) write(60,'("Wrote STATE_ULR.OUT")') end if ! close the ULR_INFO.OUT file close(60) ! close the RMSDVS.OUT file close(65) end if ! destroy the OpenMP locks do ir=1,nqpt call omp_destroy_lock(lock(ir)) end do deallocate(lock,work) ! restore original parameters reducek=reducek_ ! synchronise MPI processes call mpi_barrier(mpicom,ierror) end subroutine elk-7.2.42/src/PaxHeaders.21776/vblocalu.f900000644000000000000000000000013214061636517015053 xustar0030 mtime=1623670095.906101572 30 atime=1623670094.762102634 30 ctime=1623670095.906101572 elk-7.2.42/src/vblocalu.f900000644002504400250440000000456114061636517017116 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine vblocalu use modmain use modulr use modomp implicit none ! local variables integer ifq,idm,is,ias integer nrc,nrci,npc,nthd ! automatic arrays real(8) rfmt1(npcmtmax),rfmt2(npcmtmax) ! subtract the normal Kohn-Sham potential for Q=0 do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) npc=npcmt(is) call rfmtftoc(nrc,nrci,vsmt(:,ias),rfmt1) call rbsht(nrc,nrci,rfmt1,rfmt2) vsqmt(1:npc,ias,1)=vsqmt(1:npc,ias,1)-rfmt2(1:npc) end do vsqir(1:ngtot,1)=vsqir(1:ngtot,1)-vsir(1:ngtot) call holdthd(nfqrz,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(ias,is,nrc,nrci) & !$OMP NUM_THREADS(nthd) !$OMP DO do ifq=1,nfqrz do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! multiply the muffin-tin potential by the radial integration weights call zfcmtwr(nrc,nrci,wrcmt(:,is),vsqmt(:,ias,ifq)) end do end do !$OMP END DO NOWAIT !$OMP DO do ifq=1,nfqrz ! multiply the interstitial potential by the characteristic function vsqir(1:ngtot,ifq)=vsqir(1:ngtot,ifq)*cfunir(1:ngtot) end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) if (.not.spinpol) return ! subtract the normal Kohn-Sham magnetic field for Q=0 in the muffin-tins do idm=1,ndmag do ias=1,natmtot is=idxis(ias) npc=npcmt(is) bsqmt(1:npc,ias,idm,1)=bsqmt(1:npc,ias,idm,1)-bsmt(1:npc,ias,idm) end do end do call holdthd(nfqrz,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(idm,ias,is,nrc,nrci) & !$OMP NUM_THREADS(nthd) !$OMP DO do ifq=1,nfqrz do idm=1,ndmag do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! multiply the muffin-tin field by the radial integration weights call zfcmtwr(nrc,nrci,wrcmt(:,is),bsqmt(:,ias,idm,ifq)) end do end do end do !$OMP END DO NOWAIT !$OMP DO do ifq=1,nfqrz do idm=1,ndmag ! multiply interstitial field by the characteristic function bsqir(1:ngtot,idm,ifq)=bsqir(1:ngtot,idm,ifq)*cfunir(1:ngtot) end do end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) ! subtract the normal Kohn-Sham magnetic field for Q=0 in the interstitial ! (this is already multiplied by the characteristic function) do idm=1,ndmag bsqir(1:ngtot,idm,1)=bsqir(1:ngtot,idm,1)-bsir(1:ngtot,idm) end do end subroutine elk-7.2.42/src/PaxHeaders.21776/plotulr.f900000644000000000000000000000013214061636517014745 xustar0030 mtime=1623670095.907101571 30 atime=1623670094.764102632 30 ctime=1623670095.907101571 elk-7.2.42/src/plotulr.f900000644002504400250440000000254314061636517017006 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine plotulr(np,vpl,nf,zfmt,zfir,fp) use modmain use modulr use modomp implicit none ! arguments integer, intent(in) :: np real(8), intent(in) :: vpl(3,np) integer, intent(in) :: nf complex(8), intent(in) :: zfmt(npcmtmax,natmtot,nf,nfqrz) complex(8), intent(in) :: zfir(ngtot,nf,nfqrz) real(8), intent(out) :: fp(np,nf) ! local variables integer iq,ifq0,ifq integer jf,ip real(8) sm,t1 complex(8) z1 ! allocatable arrays complex(8), allocatable :: fpq(:,:) allocate(fpq(np,nfqrz)) ! include or exclude the Q=0 component as required if (tplotq0) then ifq0=1 else ifq0=2 end if ! loop over the number of functions do jf=1,nf ! loop over real-complex FFT points do ifq=ifq0,nfqrz ! evaluate the complex function at all the plot points call zfplot(np,vpl,zfmt(:,:,jf,ifq),zfir(:,jf,ifq),fpq(:,ifq)) end do do ip=1,np sm=0.d0 do ifq=ifq0,nfqrz iq=iqrzf(ifq) ! multiply complex function by phase factor exp(iQ.r) t1=twopi*dot_product(vql(:,iq),vpl(:,ip)) z1=cmplx(cos(t1),sin(t1),8) t1=dble(fpq(ip,ifq)*z1) if (ifq.gt.1) t1=t1*2.d0 sm=sm+t1 end do fp(ip,jf)=sm end do end do deallocate(fpq) end subroutine elk-7.2.42/src/PaxHeaders.21776/potuplot.f900000644000000000000000000000013114061636517015131 xustar0030 mtime=1623670095.909101569 29 atime=1623670094.76610263 30 ctime=1623670095.909101569 elk-7.2.42/src/potuplot.f900000644002504400250440000000326014061636517017170 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potuplot use modmain use modulr implicit none ! local variables integer ifq,ias,is,npc ! allocatable arrays complex(8), allocatable :: zfmt(:) ! initialise universal variables call init0 call init1 ! initialise the ultra long-range variables call initulr ! read in the Kohn-Sham potential from STATE_ULR.OUT call readstulr ! convert potential to spherical harmonics allocate(zfmt(npcmtmax)) do ifq=1,nfqrz do ias=1,natmtot is=idxis(ias) npc=npcmt(is) zfmt(1:npc)=vsqmt(1:npc,ias,ifq) call zfsht(nrcmt(is),nrcmti(is),zfmt,vsqmt(:,ias,ifq)) end do end do deallocate(zfmt) ! write the density plot to file select case(task) case(741) open(50,file='VSU1D.OUT',form='FORMATTED') open(51,file='VSULINES.OUT',form='FORMATTED') call plotu1d(50,51,1,vsqmt,vsqir) close(50) close(51) write(*,*) write(*,'("Info(potuplot):")') write(*,'(" 1D ultra long-range Kohn-Sham potential plot written to & &VSU1D.OUT")') write(*,'(" vertex location lines written to VSULINES.OUT")') case(742) open(50,file='VSU2D.OUT',form='FORMATTED') call plotu2d(.false.,50,1,vsqmt,vsqir) open(50) write(*,*) write(*,'("Info(potuplot):")') write(*,'(" 2D ultra long-range Kohn-Sham potential plot written to & &VSU2D.OUT")') case(743) open(50,file='VSU3D.OUT',form='FORMATTED') call plotu3d(50,1,vsqmt,vsqir) close(50) write(*,*) write(*,'("Info(potuplot):")') write(*,'(" 3D ultra long-range Kohn-Sham potential plot written to & &VSU3D.OUT")') end select end subroutine elk-7.2.42/src/PaxHeaders.21776/potcoulu.f900000644000000000000000000000013214061636517015116 xustar0030 mtime=1623670095.910101568 30 atime=1623670094.767102629 30 ctime=1623670095.910101568 elk-7.2.42/src/potcoulu.f900000644002504400250440000000512614061636517017157 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2018 T. Mueller, J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine potcoulu use modmain use modulr use modmpi use modomp implicit none ! local variables integer ifq,is,ias integer nr,nri,ir integer nrc,nrci,i integer n,lp,nthd ! allocatable arrays complex(8), allocatable :: zrhomt(:,:),zrhoir(:) complex(8), allocatable :: zvclmt(:,:),zfmt(:) call holdthd(nfqrz/np_mpi,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(zrhomt,zrhoir,zvclmt,zfmt) & !$OMP PRIVATE(ias,is,nr,nri) & !$OMP PRIVATE(i,ir,nrc,nrci) & !$OMP NUM_THREADS(nthd) allocate(zrhomt(npmtmax,natmtot),zrhoir(ngtot)) allocate(zvclmt(npmtmax,natmtot),zfmt(npcmtmax)) !$OMP DO do ifq=1,nfqrz ! distribute among MPI processes if (mod(ifq-1,np_mpi).ne.lp_mpi) cycle ! convert the complex muffin-tin density from coarse to fine radial mesh do ias=1,natmtot is=idxis(ias) call zcopy(npcmt(is),rhoqmt(:,ias,ifq),1,zrhomt(:,ias),1) end do call zfmtctof(zrhomt) ! solve the complex Poisson's equation in the muffin-tins call genzvclmt(nrmt,nrmti,nrmtmax,rlmt,wprmt,npmtmax,zrhomt,zvclmt) ! add the nuclear monopole potentials for Q=0 if (ifq.eq.1) then do ias=1,natmtot is=idxis(ias) nr=nrmt(is) nri=nrmti(is) i=1 do ir=1,nri zvclmt(i,ias)=zvclmt(i,ias)+vcln(ir,is) i=i+lmmaxi end do do ir=nri+1,nr zvclmt(i,ias)=zvclmt(i,ias)+vcln(ir,is) i=i+lmmaxo end do end do end if ! convert the interstitial density from coarse to fine grid call zfirctof(rhoqir(:,ifq),zrhoir) ! solve Poisson's equation in the entire unit cell call zpotcoul(nrmt,nrmti,npmt,npmti,nrmtmax,rlmt,ngridg,igfft,ngvec, & gqc(:,ifq),gclgq(:,ifq),ngvec,jlgqrmt(:,:,:,ifq),ylmgq(:,:,ifq), & sfacgq(:,:,ifq),zrhoir,npmtmax,zvclmt,vsqir(:,ifq)) do ias=1,natmtot is=idxis(ias) nrc=nrcmt(is) nrci=nrcmti(is) ! convert from fine to coarse radial mesh call zfmtftoc(nrc,nrci,zvclmt(:,ias),zfmt) ! convert to spherical coordinates call zbsht(nrc,nrci,zfmt,vsqmt(:,ias,ifq)) end do end do !$OMP END DO deallocate(zrhomt,zrhoir,zvclmt,zfmt) !$OMP END PARALLEL call freethd(nthd) ! broadcast potentials to every MPI process if (np_mpi.gt.1) then n=npcmtmax*natmtot do ifq=1,nfqrz lp=mod(ifq-1,np_mpi) call mpi_bcast(vsqmt(:,:,ifq),n,mpi_double_complex,lp,mpicom,ierror) end do do ifq=1,nfqrz lp=mod(ifq-1,np_mpi) call mpi_bcast(vsqir(:,ifq),ngtot,mpi_double_complex,lp,mpicom,ierror) end do end if end subroutine elk-7.2.42/src/PaxHeaders.21776/rhouplot.f900000644000000000000000000000013214061636517015120 xustar0030 mtime=1623670095.912101566 30 atime=1623670094.769102627 30 ctime=1623670095.912101566 elk-7.2.42/src/rhouplot.f900000644002504400250440000000322414061636517017156 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine rhouplot use modmain use modulr use modomp implicit none ! local variables integer ifq,nthd ! allocatable arrays complex(8), allocatable :: rhoqir_(:,:) ! initialise universal variables call init0 call init1 ! initialise the ultra long-range variables call initulr ! read in the density from STATE_ULR.OUT call readstulr ! convert interstitial density from coarse to fine grid allocate(rhoqir_(ngtot,nfqrz)) call holdthd(nfqrz,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP NUM_THREADS(nthd) do ifq=1,nfqrz call zfirctof(rhoqir(:,ifq),rhoqir_(:,ifq)) end do !$OMP END PARALLEL DO call freethd(nthd) ! write the density plot to file select case(task) case(731) open(50,file='RHOU1D.OUT',form='FORMATTED') open(51,file='RHOULINES.OUT',form='FORMATTED') call plotu1d(50,51,1,rhoqmt,rhoqir_) close(50) close(51) write(*,*) write(*,'("Info(rhouplot):")') write(*,'(" 1D ultra long-range density plot written to RHOU1D.OUT")') write(*,'(" vertex location lines written to RHOULINES.OUT")') case(732) open(50,file='RHOU2D.OUT',form='FORMATTED') call plotu2d(.false.,50,1,rhoqmt,rhoqir_) close(50) write(*,*) write(*,'("Info(rhouplot): 2D ultra long-range density plot written to & &RHOU2D.OUT")') case(733) open(50,file='RHOU3D.OUT',form='FORMATTED') call plotu3d(50,1,rhoqmt,rhoqir_) close(50) write(*,*) write(*,'("Info(rhouplot): 3D ultra long-range density plot written to & &RHOU3D.OUT")') end select deallocate(rhoqir_) end subroutine elk-7.2.42/src/PaxHeaders.21776/maguplot.f900000644000000000000000000000013214061636517015074 xustar0030 mtime=1623670095.913101566 30 atime=1623670094.771102626 30 ctime=1623670095.913101566 elk-7.2.42/src/maguplot.f900000644002504400250440000000404714061636517017136 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine maguplot use modmain use modulr use modomp implicit none ! local variables integer ifq,idm,nthd ! allocatable arrays complex(8), allocatable :: magqir_(:,:,:) ! initialise universal variables call init0 call init1 if (.not.spinpol) then write(*,*) write(*,'("Error(maguplot): spin-unpolarised calculation")') write(*,*) stop end if ! initialise the ultra long-range variables call initulr ! read in the magnetisation from STATE_ULR.OUT call readstulr ! convert interstitial magnetisation from coarse to fine grid allocate(magqir_(ngtot,ndmag,nfqrz)) call holdthd(nfqrz,nthd) !$OMP PARALLEL DO DEFAULT(SHARED) & !$OMP PRIVATE(idm) & !$OMP NUM_THREADS(nthd) do ifq=1,nfqrz do idm=1,ndmag call zfirctof(magqir(:,idm,ifq),magqir_(:,idm,ifq)) end do end do !$OMP END PARALLEL DO call freethd(nthd) ! write the magnetisation plot to file select case(task) case(771) open(50,file='MAGU1D.OUT',form='FORMATTED') open(51,file='MAGULINES.OUT',form='FORMATTED') call plotu1d(50,51,ndmag,magqmt,magqir_) close(50) close(51) write(*,*) write(*,'("Info(maguplot):")') write(*,'(" 1D ultra long-range magnetisation plot written to MAGU1D.OUT")') write(*,'(" vertex location lines written to MAGULINES.OUT")') case(772) open(50,file='MAGU2D.OUT',form='FORMATTED') call plotu2d(.true.,50,ndmag,magqmt,magqir_) close(50) write(*,*) write(*,'("Info(maguplot): 2D ultra long-range magnetisation plot written to & &MAGU2D.OUT")') if (ndmag.eq.3) then write(*,'(" Note that the 3D vector field has been locally projected")') write(*,'(" onto the 2D plotting plane axes")') end if case(773) open(50,file='MAGU3D.OUT',form='FORMATTED') call plotu3d(50,ndmag,magqmt,magqir_) close(50) write(*,*) write(*,'("Info(maguplot): 3D ultra long-range magnetisation plot written to & &MAGU3D.OUT")') end select deallocate(magqir_) end subroutine elk-7.2.42/src/PaxHeaders.21776/initw90.f900000644000000000000000000000013214061636517014547 xustar0030 mtime=1623670095.915101564 30 atime=1623670094.772102625 30 ctime=1623670095.915101564 elk-7.2.42/src/initw90.f900000644002504400250440000000317314061636517016610 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin and Lars Nordstrom. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. !BOP ! !ROUTINE: initw90 ! !INTERFACE: subroutine initw90 ! !USES: use modmain use modw90 ! !DESCRIPTION: ! Initialises global variables for the Wannier90 interface. ! ! !REVISION HISTORY: ! Created November 2018 (Arsenii Gerasimov) !EOP !BOC implicit none ! local variables integer ik,ist,i ! initialise universal variables call init0 call init1 if (num_bands.gt.nstsv) then write(*,*) write(*,'("Error(initw90): num_bands > nstsv : ",2I8)') num_bands,nstsv write(*,*) stop end if ! if num_bands is not positive then assume all states are used if (num_bands.le.0) then if (allocated(idxw90)) deallocate(idxw90) allocate(idxw90(nstsv)) do ist=1,nstsv idxw90(ist)=ist end do num_bands=nstsv end if ! check that each state index is in range do i=1,num_bands ist=idxw90(i) if ((ist.lt.1).or.(ist.gt.nstsv)) then write(*,*) write(*,'("Error(initw90): state index out of range : ",I8)') ist write(*,*) stop end if end do ! set the number of Wannier functions equal to the number of states if required if (num_wann.le.0) num_wann=num_bands ! read density and potentials from file call readstate ! read Fermi energy from file call readfermi ! find the new linearisation energies call linengy ! generate the APW and local-orbital radial functions and integrals call genapwlofr ! read in the second-variational eigenvalues do ik=1,nkpt call getevalsv(filext,ik,vkl(:,ik),evalsv(:,ik)) end do end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writew90.f900000644000000000000000000000013214061636517014736 xustar0030 mtime=1623670095.916101563 30 atime=1623670094.774102623 30 ctime=1623670095.916101563 elk-7.2.42/src/writew90.f900000644002504400250440000000106114061636517016771 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. subroutine writew90 use modmain use modw90 implicit none ! initialise universal and Wannier90 variables call initw90 ! write the .win file call writew90win ! write the .eig file call writew90eig ! call the Wannier90 setup routine call setupw90 ! write the .mmn file call writew90mmn ! write the .spn file call writew90spn end subroutine elk-7.2.42/src/PaxHeaders.21776/writew90win.f900000644000000000000000000000013214061636517015454 xustar0030 mtime=1623670095.918101561 30 atime=1623670094.776102621 30 ctime=1623670095.918101561 elk-7.2.42/src/writew90win.f900000644002504400250440000000405214061636517017512 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. !BOP ! !ROUTINE: writew90win ! !INTERFACE: subroutine writew90win ! !USES: use modmain use modw90 ! !DESCRIPTION: ! Writes out a template {\tt seedname.win} file with the Wannier90 input ! parameters. Uses {\tt wannier} and {\tt wannierExtra} blocks. ! ! !REVISION HISTORY: ! Created January 2015 (Manh Duc Le) ! Modified, August 2018 (Arsenii Gerasimov) ! Modified, February 2019 (JKD) !EOP !BOC implicit none ! local variables integer ik,is,ia,i character(256) fname fname=trim(seedname)//'.win' open(50,file=trim(fname),action='WRITE',form='FORMATTED') ! write the number of Wannier functions and bands write(50,'("length_unit = bohr")') write(50,'("num_wann = ",I8)') num_wann write(50,'("num_bands = ",I8)') num_bands write(50,'("num_iter = ",I8)') num_iter write(50,*) write(50,'("trial_step = ",G18.10)') trial_step write(50,*) write(50,'("use_bloch_phases = true")') ! write spinors if required if (spinpol) then write(50,*) write(50,'("spinors = true")') write(50,'("spn_formatted = true")') end if ! write lattice vectors write(50,*) write(50,'("begin unit_cell_cart")') write(50,'("bohr")') write(50,'(3G18.10)') avec(:,1) write(50,'(3G18.10)') avec(:,2) write(50,'(3G18.10)') avec(:,3) write(50,'("end unit_cell_cart")') ! writes atomic positions write(50,*) write(50,'("begin atoms_frac")') do is=1,nspecies do ia=1,natoms(is) write(50,'(A5,3G18.10)') trim(spsymb(is)),atposl(:,ia,is) end do end do write(50,'("end atoms_frac")') ! write the list of k-points write(50,*) write(50,'("mp_grid = ",3I6)') ngridk write(50,*) write(50,'("begin kpoints")') do ik=1,nkptnr write(50,'(3G18.10)') vkl(:,ik) end do write(50,'("end kpoints")') write(50,*) ! write the extra lines do i=1,nxlwin write(50,'(A)') trim(xlwin(i)) end do close(50) write(*,*) write(*,'("Info(writew90win): created file ",A)') trim(fname) end subroutine !EOC elk-7.2.42/src/PaxHeaders.21776/writew90eig.f900000644000000000000000000000012714061636517015427 xustar0029 mtime=1623670095.91910156 29 atime=1623670094.77710262 29 ctime=1623670095.91910156 elk-7.2.42/src/writew90eig.f900000644002504400250440000000141714061636517017463 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. subroutine writew90eig use modmain use modw90 implicit none ! local variables integer ik,jk,ist,i real(8) t1 character(256) fname fname=trim(seedname)//'.eig' open(50,file=trim(fname),action='WRITE',form='FORMATTED') ! loop over non-reduced k-points do ik=1,nkptnr ! equivalent reduced k-point jk=ivkik(ivk(1,ik),ivk(2,ik),ivk(3,ik)) do i=1,num_bands ist=idxw90(i) t1=evalsv(ist,jk)-efermi write(50,'(2I6,G18.10)') i,ik,t1*ha_ev end do end do close(50) write(*,*) write(*,'("Info(writew90eig): created file ",A)') trim(fname) end subroutine elk-7.2.42/src/PaxHeaders.21776/setupw90.f900000644000000000000000000000013214061636517014744 xustar0030 mtime=1623670095.921101558 30 atime=1623670094.779102618 30 ctime=1623670095.921101558 elk-7.2.42/src/setupw90.f900000644002504400250440000000355714061636517017013 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. subroutine setupw90 use modmain use modw90 implicit none ! local variables integer is,ia,ias real(8) real_lattice(3,3),recip_lattice(3,3) ! allocatable arrays integer, allocatable :: proj_l(:),proj_m(:),proj_radial(:),proj_s(:) integer, allocatable :: exclude_bands(:) real(8), allocatable :: atoms_cart(:,:),proj_site(:,:) real(8), allocatable :: proj_z(:,:),proj_x(:,:) real(8), allocatable :: proj_zona(:),proj_s_qaxis(:,:) character(256), allocatable :: atom_symbols(:) ! allocate global arrays if (allocated(nnlist)) deallocate(nnlist) allocate(nnlist(nkptnr,num_nnmax)) if (allocated(nncell)) deallocate(nncell) allocate(nncell(3,nkptnr,num_nnmax)) ! allocate local arrays allocate(proj_l(num_bands),proj_m(num_bands)) allocate(proj_radial(num_bands),proj_s(num_bands)) allocate(exclude_bands(num_bands)) allocate(atoms_cart(3,natmtot),proj_site(3,num_bands)) allocate(proj_z(3,num_bands),proj_x(3,num_bands)) allocate(proj_zona(num_bands),proj_s_qaxis(3,num_bands)) allocate(atom_symbols(natmtot)) real_lattice=br_ang*transpose(avec) recip_lattice=(1.d0/br_ang)*transpose(bvec) do ias=1,natmtot is=idxis(ias) ia=idxia(ias) atom_symbols(ias)=trim(spsymb(is)) atoms_cart(:,ias)=br_ang*atposc(:,ia,is) end do call wannier_setup(seedname,ngridk,nkptnr,real_lattice,recip_lattice,vkl, & num_bands,natmtot,atom_symbols,atoms_cart,.false.,spinpol,nntot,nnlist, & nncell,num_bands,num_wann,proj_site,proj_l,proj_m,proj_radial,proj_z,proj_x, & proj_zona,exclude_bands,proj_s,proj_s_qaxis) deallocate(proj_l,proj_m) deallocate(proj_radial,proj_s,exclude_bands) deallocate(atoms_cart,proj_site,proj_z,proj_x) deallocate(proj_zona,proj_s_qaxis,atom_symbols) end subroutine elk-7.2.42/src/PaxHeaders.21776/writew90mmn.f900000644000000000000000000000013214061636517015446 xustar0030 mtime=1623670095.922101557 30 atime=1623670094.781102616 30 ctime=1623670095.922101557 elk-7.2.42/src/writew90mmn.f900000644002504400250440000000501614061636517017505 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. subroutine writew90mmn use modmain use modw90 implicit none ! local variables integer ik,jk,ist,jst,i integer ngp(nspnfv),ngpq(nspnfv) real(8) vl(3),vc(3),q,vkql(3) character(256) fname ! automatic arrays complex(8) ylmq(lmmaxo),sfacq(natmtot) ! allocatable arrays integer, allocatable :: igpig(:,:),igpqig(:,:) real(8), allocatable :: jlqr(:,:) complex(8), allocatable :: wfmt(:,:,:,:),wfir(:,:,:) complex(8), allocatable :: wfmtq(:,:,:,:),wfgpq(:,:,:) complex(8), allocatable :: expqmt(:,:),oq(:,:) ! allocate local arrays allocate(igpig(ngkmax,nspnfv),igpqig(ngkmax,nspnfv)) allocate(jlqr(njcmax,nspecies)) allocate(wfmt(npcmtmax,natmtot,nspinor,num_bands)) allocate(wfir(ngtot,nspinor,num_bands)) allocate(wfmtq(npcmtmax,natmtot,nspinor,num_bands)) allocate(wfgpq(ngkmax,nspinor,num_bands)) allocate(expqmt(npcmtmax,natmtot)) allocate(oq(num_bands,num_bands)) fname=trim(seedname)//'.mmn' open(50,file=trim(fname),action='WRITE',form='FORMATTED') write(50,'("Generated by Elk version ",I1.1,".",I1.1,".",I2.2)') version write(50,'(3I8)') num_bands,nkptnr,nntot do ik=1,nkptnr call genwfsvp(.false.,.false.,num_bands,idxw90,ngridg,igfft,vkl(:,ik),ngp, & igpig,wfmt,ngtot,wfir) do i=1,nntot jk=nnlist(ik,i) ! q-vector in lattice coordinates vl(:)=dble(nncell(:,ik,i))+vkl(:,jk)-vkl(:,ik) ! q-vector in Cartesian coordinates call r3mv(bvec,vl,vc) ! q-vector length q=sqrt(vc(1)**2+vc(2)**2+vc(3)**2) ! generate phase factor function exp(iq.r) in the muffin-tins call genjlgpr(1,q,jlqr) call genylmv(lmaxo,vc,ylmq) call gensfacgp(1,vc,1,sfacq) call genexpmt(1,jlqr,ylmq,1,sfacq,expqmt) ! k+q-vector in lattice coordinates vkql(:)=vkl(:,ik)+vl(:) ! generate the wavefunctions at k+q call genwfsvp(.false.,.true.,num_bands,idxw90,ngridg,igfft,vkql,ngpq, & igpqig,wfmtq,ngkmax,wfgpq) ! determine the overlap matrix call genolpq(num_bands,expqmt,ngpq,igpqig,wfmt,wfir,wfmtq,wfgpq,oq) ! write overlap matrix to file write(50,'(5I8)') ik,jk,nncell(:,ik,i) do jst=1,num_bands do ist=1,num_bands write(50,'(2G18.10)') dble(oq(jst,ist)),-aimag(oq(jst,ist)) end do end do end do end do close(50) write(*,*) write(*,'("Info(writew90mmn): created file ",A)') trim(fname) deallocate(igpig,igpqig,jlqr) deallocate(wfmt,wfir,wfmtq,wfgpq) deallocate(expqmt,oq) end subroutine elk-7.2.42/src/PaxHeaders.21776/writew90spn.f900000644000000000000000000000013214061636517015457 xustar0030 mtime=1623670095.924101555 30 atime=1623670094.782102615 30 ctime=1623670095.924101555 elk-7.2.42/src/writew90spn.f900000644002504400250440000000233414061636517017516 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 Manh Duc Le, 2017-18 Arsenii Gerasimov, Yaroslav Kvashnin ! and Lars Nordstrom. This file is distributed under the terms of the GNU ! General Public License. See the file COPYING for license details. subroutine writew90spn use modmain use modw90 implicit none ! local variables integer ik,ist,jst,i,j complex(8) z1 character(256) fname ! allocatable arrays complex(8), allocatable :: smat(:,:,:,:) if (.not.spinpol) return fname=trim(seedname)//'.spn' open(50,file=trim(fname),action='WRITE',form='FORMATTED') write(50,'("Generated by Elk version ",I1.1,".",I1.1,".",I2.2)') version write(50,'(3I8)') num_bands,nkptnr allocate(smat(2,2,nstsv,nstsv)) do ik=1,nkptnr ! generate the spin operator matrix elements call gensmatk(vkl(:,ik),smat) do j=1,num_bands jst=idxw90(j) do i=1,j ist=idxw90(i) z1=smat(1,2,ist,jst)+smat(2,1,ist,jst) write(50,'(2G18.10)') z1 z1=smat(2,1,ist,jst)-smat(1,2,ist,jst) z1=cmplx(-aimag(z1),dble(z1),8) write(50,'(2G18.10)') z1 z1=smat(1,1,ist,jst)-smat(2,2,ist,jst) write(50,'(2G18.10)') z1 end do end do end do deallocate(smat) close(50) write(*,*) write(*,'("Info(writew90spn): created file ",A)') trim(fname) end subroutine elk-7.2.42/src/PaxHeaders.21776/dmatuv.f900000644000000000000000000000013214061636517014544 xustar0030 mtime=1623670095.925101554 30 atime=1623670094.784102614 30 ctime=1623670095.925101554 elk-7.2.42/src/dmatuv.f900000644002504400250440000000136014061636517016601 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine dmatuv(n,ef,e,u,v,dvv,duv) implicit none ! arguments integer, intent(in) :: n real(8), intent(in) :: ef,e(n) complex(8), intent(in) :: u(n,n),v(n,n) complex(8), intent(out) :: dvv(n,n),duv(n,n) ! local variables integer i ! normal electronic density matrix VV† call zgemm('N','C',n,n,n,(1.d0,0.d0),v,n,v,n,(0.d0,0.d0),dvv,n) ! subtract unperturbed density matrix do i=1,n if (e(i).le.ef) dvv(i,i)=dvv(i,i)-1.d0 end do ! anomalous density matrix UV† call zgemm('N','C',n,n,n,(1.d0,0.d0),u,n,v,n,(0.d0,0.d0),duv,n) end subroutine elk-7.2.42/src/PaxHeaders.21776/dmatwx.f900000644000000000000000000000013214061636517014550 xustar0030 mtime=1623670095.926101554 30 atime=1623670094.786102612 30 ctime=1623670095.926101554 elk-7.2.42/src/dmatwx.f900000644002504400250440000000112014061636517016577 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine dmatwx(n,w,x,dxx,dwx) implicit none ! arguments integer, intent(in) :: n complex(8), intent(in) :: w(n,n),x(n,n) complex(8), intent(out) :: dxx(n,n),dwx(n,n) ! normal bosonic density matrix XX† call zgemm('N','C',n,n,n,(1.d0,0.d0),x,n,x,n,(0.d0,0.d0),dxx,n) ! anomalous density matrix -WX† call zgemm('N','C',n,n,n,(-1.d0,0.d0),w,n,x,n,(0.d0,0.d0),dwx,n) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnuv.f900000644000000000000000000000013214061636517014735 xustar0030 mtime=1623670095.928101552 30 atime=1623670094.787102611 30 ctime=1623670095.928101552 elk-7.2.42/src/eveqnuv.f900000644002504400250440000000177714061636517017006 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine eveqnuv(n,au,bv,w,vn) implicit none ! arguments integer, intent(in) :: n complex(8), intent(inout) :: au(n,n),bv(n,n) real(8), intent(out) :: w(n),vn(n) ! local variables integer n2,i,j ! allocatable arrays real(8), allocatable :: w2(:) complex(8), allocatable :: h(:,:) n2=2*n ! setup the fermionic Bogoliubov Hamiltonian allocate(w2(n2),h(n2,n2)) do j=1,n do i=1,j h(i,j)=au(i,j) h(n+i,n+j)=-au(i,j) end do end do do j=1,n do i=1,n h(i,n+j)=bv(i,j) end do end do ! find the eigenvalues and eigenvectors call eveqnzh(n2,n2,h,w2) ! copy to output arrays do i=1,n ! choose the positive eigenvalues j=n+i w(i)=w2(j) call zcopy(n,h(1,j),1,au(1,i),1) call zcopy(n,h(n+1,j),1,bv(1,i),1) ! store the V-norm vn(i)=dot_product(bv(:,i),bv(:,i)) end do deallocate(w2,h) end subroutine elk-7.2.42/src/PaxHeaders.21776/eveqnwxy.f900000644000000000000000000000013014061636517015130 xustar0029 mtime=1623670095.93010155 30 atime=1623670094.789102609 29 ctime=1623670095.93010155 elk-7.2.42/src/eveqnwxy.f900000644002504400250440000000316514061636517017174 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine eveqnwxy(n,dw,ex,fy,w,xn) implicit none ! arguments integer, intent(in) :: n complex(8), intent(inout) :: dw(n,n),ex(n,n),fy(n) real(8), intent(out) :: w(n),xn(n) ! local variables integer n2,i,j real(8) t1,t2 ! allocatable arrays integer, allocatable :: idx(:) real(8), allocatable :: r(:) complex(8), allocatable :: w2(:),h(:,:) complex(8), allocatable :: x(:),a(:,:) ! external functions real(8), external :: dznrm2 n2=2*n ! setup the bosonic Bogoliubov Hamiltonian allocate(w2(n2),h(n2,n2)) do j=1,n do i=1,n h(i,j)=dw(i,j) h(n+i,n+j)=-dw(i,j) h(i,n+j)=-ex(i,j) h(n+i,j)=ex(i,j) end do end do ! find the eigenvalues and right eigenvectors call eveqnzg(n2,n2,h,w2) ! select the eigenpairs corresponding to W†W - X†X = I allocate(idx(n2),r(n2)) do j=1,n2 t1=dznrm2(n,h(1,j),1)**2 t2=dznrm2(n,h(n+1,j),1)**2 r(j)=t1-t2 end do call sortidx(n2,r,idx) ! pseudo-normalise the eigenvectors and store in output arrays do i=1,n j=idx(n+i) t1=abs(r(j))+1.d-8 t1=(1.d0-(1.d0-t1)**4)/sqrt(t1) w(i)=dble(w2(j)) dw(1:n,i)=t1*h(1:n,j) ex(1:n,i)=t1*h(n+1:n2,j) ! compute the X-norm xn(i)=dznrm2(n,ex(:,i),1)**2 end do deallocate(idx,r,w2,h) ! solve for the vector y allocate(x(n),a(n,n)) a(:,:)=dw(:,:)-ex(:,:) x(:)=fy(:) call zgemv('T',n,n,(1.d0,0.d0),a,n,x,1,(0.d0,0.d0),fy,1) do i=1,n if (w(i).gt.1.d-6) then fy(i)=fy(i)/w(i) else fy(i)=0.d0 end if end do deallocate(x,a) end subroutine elk-7.2.42/src/PaxHeaders.21776/writeevaluv.f900000644000000000000000000000013214061636517015621 xustar0030 mtime=1623670095.931101549 30 atime=1623670094.791102607 30 ctime=1623670095.931101549 elk-7.2.42/src/writeevaluv.f900000644002504400250440000000130014061636517017650 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine writeevaluv use modmain use modbog implicit none ! local variables integer ik,ist ! write out the valence eigenvalues open(50,file='EIGVALUV.OUT',form='FORMATTED',action='WRITE') write(50,'(I6," : nkpt")') nkpt write(50,'(I6," : nstsv")') nstsv do ik=1,nkpt write(50,*) write(50,'(I6,3G18.10," : k-point, vkl")') ik,vkl(:,ik) write(50,'(" (state, eigenvalue, V-norm below)")') do ist=1,nstsv write(50,'(I6,3G18.10)') ist,evaluv(ist,ik),vnorm(ist,ik) end do write(50,*) end do close(50) end subroutine elk-7.2.42/src/PaxHeaders.21776/occupyuv.f900000644000000000000000000000013214061636517015121 xustar0030 mtime=1623670095.933101547 30 atime=1623670094.792102606 30 ctime=1623670095.933101547 elk-7.2.42/src/occupyuv.f900000644002504400250440000000226114061636517017157 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine occupyuv use modmain use modbog use modmpi implicit none integer ik,ist real(8) chg,w,vn real(8) e0,e1,e ! determine the total charge and fermionic anomalous correlation entropy chg=0.d0 face=0.d0 do ik=1,nkpt w=wkpt(ik) do ist=1,nstsv vn=vnorm(ist,ik) chg=chg+w*vn if ((vn.gt.0.d0).and.(vn.lt.1.d0)) then face=face+w*(vn*log(vn)+(1.d0-vn)*log(1.d0-vn)) end if end do end do chg=occmax*chg face=-occmax*face ! adjust the Fermi energy efermi=efermi+tauefm*(chgval-chg) if (mp_mpi) then if (abs(chg-chgval).gt.epschg) then write(*,*) write(*,'("Warning(occupyuv): incorrect charge : ",2G18.10)') chg,chgval end if end if ! estimate the indirect band gap e0=-1.d8 e1=1.d8 ikgap(1)=1 ikgap(2)=1 do ist=1,nstsv do ik=1,nkpt e=evaluv(ist,ik) if (e.lt.0.d0) then if (e.gt.e0) then e0=e ikgap(1)=ik end if else if (e.lt.e1) then e1=e ikgap(2)=ik end if end if end do end do bandgap(1)=e1-e0 end subroutine elk-7.2.42/src/PaxHeaders.21776/inithfb.f900000644000000000000000000000013214061636517014667 xustar0030 mtime=1623670095.934101546 30 atime=1623670094.794102604 30 ctime=1623670095.934101546 elk-7.2.42/src/inithfb.f900000644002504400250440000000200614061636517016722 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine inithfb use modmain use modbog use modrandom implicit none ! local variables integer ik,ist,jst real(8), parameter :: rndevv=0.01d0 ! allocatable arrays complex(8), allocatable :: evecu(:,:),evecv(:,:) ! initialise the Bogoliubov eigenvectors and write to file if (task.eq.800) then allocate(evecu(nstsv,nstsv),evecv(nstsv,nstsv)) evecu(:,:)=0.d0 do ist=1,nstsv evecu(ist,ist)=1.d0 end do do jst=1,nstsv do ist=1,nstsv evecv(ist,jst)=rndevv*cmplx(randomu()-0.5d0,randomu()-0.5d0,8) end do end do do ik=1,nkpt call putevecuv(ik,evecu,evecv) end do deallocate(evecu,evecv) end if ! allocate the Bogoliubov eigenvalue array if (allocated(evaluv)) deallocate(evaluv) allocate(evaluv(nstsv,nkpt)) ! allocate the V-norm array if (allocated(vnorm)) deallocate(vnorm) allocate(vnorm(nstsv,nkpt)) end subroutine elk-7.2.42/src/PaxHeaders.21776/genwfuv.f900000644000000000000000000000013214061636517014725 xustar0030 mtime=1623670095.936101544 30 atime=1623670094.796102602 30 ctime=1623670095.936101544 elk-7.2.42/src/genwfuv.f900000644002504400250440000000360114061636517016762 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine genwfuv(evecu,evecv,wfmt,wfir,wfumt,wfuir,wfvmt,wfvir) use modmain use modomp implicit none ! arguments complex(8), intent(in) :: evecu(nstsv,nstsv),evecv(nstsv,nstsv) complex(8), intent(in) :: wfmt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(in) :: wfir(ngtc,nspinor,nstsv) complex(8), intent(out) :: wfumt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(out) :: wfuir(ngtc,nspinor,nstsv) complex(8), intent(out) :: wfvmt(npcmtmax,natmtot,nspinor,nstsv) complex(8), intent(out) :: wfvir(ngtc,nspinor,nstsv) ! local variables integer ist,jst,ispn integer is,ias,npc,nthd complex(8) z1 call holdthd(nstsv,nthd) !$OMP PARALLEL DEFAULT(SHARED) & !$OMP PRIVATE(ist,z1,ispn) & !$OMP PRIVATE(ias,is,npc) & !$OMP NUM_THREADS(nthd) !$OMP DO do jst=1,nstsv wfumt(:,:,:,jst)=0.d0 wfuir(:,:,jst)=0.d0 do ist=1,nstsv z1=evecu(ist,jst) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) npc=npcmt(is) call zaxpy(npc,z1,wfmt(:,ias,ispn,ist),1,wfumt(:,ias,ispn,jst),1) end do call zaxpy(ngtc,z1,wfir(:,ispn,ist),1,wfuir(:,ispn,jst),1) end do end if end do end do !$OMP END DO NOWAIT !$OMP DO do jst=1,nstsv wfvmt(:,:,:,jst)=0.d0 wfvir(:,:,jst)=0.d0 do ist=1,nstsv z1=evecv(ist,jst) if (abs(dble(z1))+abs(aimag(z1)).gt.epsocc) then do ispn=1,nspinor do ias=1,natmtot is=idxis(ias) npc=npcmt(is) call zaxpy(npc,z1,wfmt(:,ias,ispn,ist),1,wfvmt(:,ias,ispn,jst),1) end do call zaxpy(ngtc,z1,wfir(:,ispn,ist),1,wfvir(:,ispn,jst),1) end do end if end do end do !$OMP END DO !$OMP END PARALLEL call freethd(nthd) end subroutine elk-7.2.42/src/PaxHeaders.21776/putevaluv.f900000644000000000000000000000013214061636517015277 xustar0030 mtime=1623670095.937101543 30 atime=1623670094.797102601 30 ctime=1623670095.937101543 elk-7.2.42/src/putevaluv.f900000644002504400250440000000113114061636517017330 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putevaluv(ik,evaluvp) use modmain implicit none ! arguments integer, intent(in) :: ik real(8), intent(in) :: evaluvp(nstsv) ! local variables integer recl ! find the record length inquire(iolength=recl) vkl(:,ik),nstsv,evaluvp !$OMP CRITICAL(u320) open(320,file='EVALUV.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(320,rec=ik) vkl(:,ik),nstsv,evaluvp close(320) !$OMP END CRITICAL(u320) end subroutine elk-7.2.42/src/PaxHeaders.21776/getevaluv.f900000644000000000000000000000013014061636517015244 xustar0030 mtime=1623670095.938101542 28 atime=1623670094.7991026 30 ctime=1623670095.938101542 elk-7.2.42/src/getevaluv.f900000644002504400250440000000215114061636517017302 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getevaluv(ik,evaluvp) use modmain implicit none ! arguments integer, intent(in) :: ik real(8), intent(out) :: evaluvp(nstsv) ! local variables integer recl,nstsv_ real(8) vkl_(3),t1 ! find the record length inquire(iolength=recl) vkl_,nstsv_,evaluvp !$OMP CRITICAL(u320) open(320,file='EVALUV.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(320,rec=ik) vkl_,nstsv_,evaluvp !$OMP END CRITICAL(u320) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getevaluv): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" EVALUV.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getevaluv): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" EVALUV.OUT : ",I8)') nstsv_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/putevecuv.f900000644000000000000000000000013214061636517015272 xustar0030 mtime=1623670095.940101541 30 atime=1623670094.801102598 30 ctime=1623670095.940101541 elk-7.2.42/src/putevecuv.f900000644002504400250440000000117714061636517017335 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putevecuv(ik,evecu,evecv) use modmain implicit none ! arguments integer, intent(in) :: ik complex(8), intent(in) :: evecu(nstsv,nstsv),evecv(nstsv,nstsv) ! local variables integer recl ! find the record length inquire(iolength=recl) vkl(:,ik),nstsv,evecu,evecv !$OMP CRITICAL(u322) open(322,file='EVECUV.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(322,rec=ik) vkl(:,ik),nstsv,evecu,evecv close(322) !$OMP END CRITICAL(u322) end subroutine elk-7.2.42/src/PaxHeaders.21776/getevecuv.f900000644000000000000000000000013014061636517015237 xustar0029 mtime=1623670095.94110154 30 atime=1623670094.802102597 29 ctime=1623670095.94110154 elk-7.2.42/src/getevecuv.f900000644002504400250440000000246214061636517017302 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2019 J. K. Dewhurst and S. Sharma. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getevecuv(ikp,vpl,u,v) use modmain implicit none ! arguments integer, intent(in) :: ikp real(8), intent(in) :: vpl(3) complex(8), intent(out) :: u(nstsv,nstsv),v(nstsv,nstsv) ! local variables integer isym,ik integer recl,nstsv_ real(8) vkl_(3),t1 if (ikp.gt.0) then ik=ikp else ! find the equivalent k-point number and symmetry which rotates vkl to vpl call findkpt(vpl,isym,ik) end if ! find the record length inquire(iolength=recl) vkl_,nstsv_,u,v !$OMP CRITICAL(u322) open(322,file='EVECUV.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(322,rec=ik) vkl_,nstsv_,u,v !$OMP END CRITICAL(u322) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getevecuv): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" EVECUV.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getevecuv): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" EVECUV.OUT : ",I8)') nstsv_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/putevecwxy.f900000644000000000000000000000013214061636517015467 xustar0030 mtime=1623670095.943101538 30 atime=1623670094.804102595 30 ctime=1623670095.943101538 elk-7.2.42/src/putevecwxy.f900000644002504400250440000000122614061636517017525 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine putevecwxy(iq,w,x,y) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq complex(8), intent(in) :: w(nbph,nbph),x(nbph,nbph),y(nbph) ! local variables integer recl ! find the record length inquire(iolength=recl) vql(:,iq),nbph,w,x,y !$OMP CRITICAL(u332) open(332,file='EVECWXY.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(332,rec=iq) vql(:,iq),nbph,w,x,y close(332) !$OMP END CRITICAL(u332) end subroutine elk-7.2.42/src/PaxHeaders.21776/getevecwxy.f900000644000000000000000000000013214061636517015436 xustar0030 mtime=1623670095.944101537 30 atime=1623670094.806102593 30 ctime=1623670095.944101537 elk-7.2.42/src/getevecwxy.f900000644002504400250440000000224614061636517017477 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine getevecwxy(iq,w,x,y) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq complex(8), intent(out) :: w(nbph,nbph),x(nbph,nbph),y(nbph) ! local variables integer recl,nbph_ real(8) vql_(3),t1 ! find the record length inquire(iolength=recl) vql_,nbph_,w,x,y !$OMP CRITICAL(u332) open(332,file='EVECWXY.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(332,rec=iq) vql_,nbph_,w,x,y !$OMP END CRITICAL(u332) t1=abs(vql(1,iq)-vql_(1))+abs(vql(2,iq)-vql_(2))+abs(vql(3,iq)-vql_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getevecwxy): differing vectors for q-point ",I8)') iq write(*,'(" current : ",3G18.10)') vql(:,iq) write(*,'(" EVECWXY.OUT : ",3G18.10)') vql_ write(*,*) stop end if if (nbph.ne.nbph_) then write(*,*) write(*,'("Error(getevecwxy): differing nbph for q-point ",I8)') iq write(*,'(" current : ",I8)') nbph write(*,'(" EVECWXY.OUT : ",I8)') nbph_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/putevalwx.f900000644000000000000000000000013214061636517015303 xustar0030 mtime=1623670095.946101535 30 atime=1623670094.807102592 30 ctime=1623670095.946101535 elk-7.2.42/src/putevalwx.f900000644002504400250440000000120314061636517017334 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine putevalwx(iq,evalwxp) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq real(8), intent(in) :: evalwxp(nbph) ! local variables integer recl ! find the record length inquire(iolength=recl) vql(:,iq),nbph,evalwxp !$OMP CRITICAL(u330) open(330,file='EVALWX.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(330,rec=iq) vql(:,iq),nbph,evalwxp close(330) !$OMP END CRITICAL(u330) end subroutine elk-7.2.42/src/PaxHeaders.21776/getevalwx.f900000644000000000000000000000013114061636517015251 xustar0030 mtime=1623670095.947101534 29 atime=1623670094.80910259 30 ctime=1623670095.947101534 elk-7.2.42/src/getevalwx.f900000644002504400250440000000221514061636517017307 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and ! E. K. U. Gross. This file is distributed under the terms of the GNU General ! Public License. See the file COPYING for license details. subroutine getevalwx(iq,evalwxp) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq real(8), intent(out) :: evalwxp(nbph) ! local variables integer recl,nbph_ real(8) vql_(3),t1 ! find the record length inquire(iolength=recl) vql_,nbph_,evalwxp !$OMP CRITICAL(u330) open(330,file='EVALWX.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(330,rec=iq) vql_,nbph_,evalwxp !$OMP END CRITICAL(u330) t1=abs(vql(1,iq)-vql_(1))+abs(vql(2,iq)-vql_(2))+abs(vql(3,iq)-vql_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getevalwx): differing vectors for q-point ",I8)') iq write(*,'(" current : ",3G18.10)') vql(:,iq) write(*,'(" EVALWX.OUT : ",3G18.10)') vql_ write(*,*) stop end if if (nbph.ne.nbph_) then write(*,*) write(*,'("Error(getevalwx): differing nbph for q-point ",I8)') iq write(*,'(" current : ",I8)') nbph write(*,'(" EVALWX.OUT : ",I8)') nbph_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/aceplot.f900000644000000000000000000000013214061636517014673 xustar0030 mtime=1623670095.949101532 30 atime=1623670094.811102589 30 ctime=1623670095.949101532 elk-7.2.42/src/aceplot.f900000644002504400250440000000426214061636517016734 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine aceplot use modmain use modphonon implicit none ! local variables integer ik,jk,iq,jq integer i1,i2,i3,ist,i real(8) ace,vn,xn ! allocatable arrays real(8), allocatable :: vnorm(:),xnorm(:) ! initialise universal variables call init0 call init1 call init2 call initeph !----------------------------------------------------------! ! plot the fermionic anomalous correlation entropy ! !----------------------------------------------------------! allocate(vnorm(nstsv)) open(50,file='FACE3D.OUT',form='FORMATTED',action='WRITE') write(50,'(3I6," : grid size")') ngridk(:) do i3=0,ngridk(3)-1 do i2=0,ngridk(2)-1 do i1=0,ngridk(1)-1 ik=ivkiknr(i1,i2,i3) jk=ivkik(i1,i2,i3) ! get the V-norm from file call getvnorm(jk,vnorm) ace=0.d0 do ist=1,nstsv vn=vnorm(ist) if ((vn.gt.0.d0).and.(vn.lt.1.d0)) then ace=ace+vn*log(vn)+(1.d0-vn)*log(1.d0-vn) end if end do ace=-occmax*ace write(50,'(4G18.10)') vkc(:,ik),ace end do end do end do close(50) deallocate(vnorm) !--------------------------------------------------------! ! plot the bosonic anomalous correlation entropy ! !--------------------------------------------------------! allocate(xnorm(nbph)) open(50,file='BACE3D.OUT',form='FORMATTED',action='WRITE') write(50,'(3I6," : grid size")') ngridq(:) do i3=0,ngridq(3)-1 do i2=0,ngridq(2)-1 do i1=0,ngridq(1)-1 iq=ivqiqnr(i1,i2,i3) jq=ivqiq(i1,i2,i3) ! get the X-norm from file call getxnorm(jq,xnorm) ace=0.d0 do i=1,nbph xn=xnorm(i) if (xn.gt.0.d0) then ace=ace+xn*log(xn)-(1.d0+xn)*log(1.d0+xn) end if end do ace=-ace write(50,'(4G18.10)') vqc(:,iq),ace end do end do end do close(50) deallocate(xnorm) write(*,*) write(*,'("Info(aceplot):")') write(*,'(" 3D fermionic anomalous correlation entropy written to FACE3D.OUT")') write(*,'(" 3D bosonic anomalous correlation entropy written to BACE3D.OUT")') end subroutine elk-7.2.42/src/PaxHeaders.21776/putxnorm.f900000644000000000000000000000013214061636517015140 xustar0030 mtime=1623670095.950101531 30 atime=1623670094.812102587 30 ctime=1623670095.950101531 elk-7.2.42/src/putxnorm.f900000644002504400250440000000115214061636517017174 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putxnorm(iq,xnorm) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq real(8), intent(in) :: xnorm(nbph) ! local variables integer recl ! find the record length inquire(iolength=recl) vql(:,iq),nbph,xnorm !$OMP CRITICAL(u334) open(334,file='XNORM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(334,rec=iq) vql(:,iq),nbph,xnorm close(334) !$OMP END CRITICAL(u334) end subroutine elk-7.2.42/src/PaxHeaders.21776/putvnorm.f900000644000000000000000000000013214061636517015136 xustar0030 mtime=1623670095.952101529 30 atime=1623670094.814102586 30 ctime=1623670095.952101529 elk-7.2.42/src/putvnorm.f900000644002504400250440000000115514061636517017175 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine putvnorm(ik,vnorm) use modmain use modphonon implicit none ! arguments integer, intent(in) :: ik real(8), intent(in) :: vnorm(nstsv) ! local variables integer recl ! find the record length inquire(iolength=recl) vkl(:,ik),nstsv,vnorm !$OMP CRITICAL(u324) open(324,file='VNORM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) write(324,rec=ik) vkl(:,ik),nstsv,vnorm close(324) !$OMP END CRITICAL(u324) end subroutine elk-7.2.42/src/PaxHeaders.21776/getxnorm.f900000644000000000000000000000013214061636517015107 xustar0030 mtime=1623670095.953101528 30 atime=1623670094.816102584 30 ctime=1623670095.953101528 elk-7.2.42/src/getxnorm.f900000644002504400250440000000215614061636517017150 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getxnorm(iq,xnorm) use modmain use modphonon implicit none ! arguments integer, intent(in) :: iq real(8), intent(out) :: xnorm(nbph) ! local variables integer recl,nbph_ real(8) vql_(3),t1 ! find the record length inquire(iolength=recl) vql_,nbph_,xnorm !$OMP CRITICAL(u334) open(334,file='XNORM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(334,rec=iq) vql_,nbph_,xnorm !$OMP END CRITICAL(u334) t1=abs(vql(1,iq)-vql_(1))+abs(vql(2,iq)-vql_(2))+abs(vql(3,iq)-vql_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getxnorm): differing vectors for q-point ",I8)') iq write(*,'(" current : ",3G18.10)') vql(:,iq) write(*,'(" XNORM.OUT : ",3G18.10)') vql_ write(*,*) stop end if if (nbph.ne.nbph_) then write(*,*) write(*,'("Error(getxnorm): differing nbph for q-point ",I8)') iq write(*,'(" current : ",I8)') nbph write(*,'(" XNORM.OUT : ",I8)') nbph_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/getvnorm.f900000644000000000000000000000013214061636517015105 xustar0030 mtime=1623670095.955101527 30 atime=1623670094.817102583 30 ctime=1623670095.955101527 elk-7.2.42/src/getvnorm.f900000644002504400250440000000215114061636517017141 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2021 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine getvnorm(ik,vnorm) use modmain implicit none ! arguments integer, intent(in) :: ik real(8), intent(out) :: vnorm(nstsv) ! local variables integer recl,nstsv_ real(8) vkl_(3),t1 ! find the record length inquire(iolength=recl) vkl_,nstsv_,vnorm !$OMP CRITICAL(u324) open(324,file='VNORM.OUT',form='UNFORMATTED',access='DIRECT',recl=recl) read(324,rec=ik) vkl_,nstsv_,vnorm !$OMP END CRITICAL(u324) t1=abs(vkl(1,ik)-vkl_(1))+abs(vkl(2,ik)-vkl_(2))+abs(vkl(3,ik)-vkl_(3)) if (t1.gt.epslat) then write(*,*) write(*,'("Error(getvnorm): differing vectors for k-point ",I8)') ik write(*,'(" current : ",3G18.10)') vkl(:,ik) write(*,'(" VNORM.OUT : ",3G18.10)') vkl_ write(*,*) stop end if if (nstsv.ne.nstsv_) then write(*,*) write(*,'("Error(getvnorm): differing nstsv for k-point ",I8)') ik write(*,'(" current : ",I8)') nstsv write(*,'(" VNORM.OUT : ",I8)') nstsv_ write(*,*) stop end if end subroutine elk-7.2.42/src/PaxHeaders.21776/Makefile0000644000000000000000000000013014061636516014361 xustar0029 mtime=1623670094.82010258 30 atime=1623670094.819102581 29 ctime=1623670094.82010258 elk-7.2.42/src/Makefile0000644002504400250440000003300314061636516016417 0ustar00dewhurstdewhurst00000000000000 include ../make.inc # modules SRC_modules = modmain.f90 $(SRC_MPI) modmpi.f90 modramdisk.f90 $(SRC_libxc) \ modxcifc.f90 modfxcifc.f90 moddftu.f90 modrdm.f90 modphonon.f90 \ modtest.f90 modrandom.f90 modstore.f90 modpw.f90 modvars.f90 modtddft.f90 \ modgw.f90 modulr.f90 modbog.f90 moddelf.f90 $(SRC_OMP) \ modomp.f90 $(SRC_MKL) mkl_init.f90 $(SRC_OBLAS) oblas_init.f90 $(SRC_BLIS) \ blis_init.f90 $(SRC_W90S) modw90.f90 # Elk program SRC_elk = elk.f90 # main subroutines and functions SRC_main0 = \ olpistl.f90 hmlistl.f90 olpalo.f90 hmlalo.f90 olplolo.f90 hmllolo.f90 \ olpaa.f90 hmlaa.f90 gengclg.f90 rhomagsh.f90 charge.f90 moment.f90 rfint0.f90 \ potnucl.f90 r3mm.f90 r3mtm.f90 r3mmt.f90 r3vo.f90 gengvc.f90 gengvec.f90 \ r3mdet.f90 gencfrc.f90 checkstop.f90 genbs.f90 rfirsm.f90 rfmtsm.f90 \ rfint.f90 gradwf2.f90 closefiles.f90 writelinen.f90 rfmtlm.f90 putpmat.f90 \ getpmat.f90 rfmtpack.f90 zfmtpack.f90 rfmtint.f90 putevalfv.f90 getevalfv.f90 \ wavefmt.f90 putkmat.f90 getkmat.f90 putepsinv.f90 getcfgq.f90 putevalsv.f90 \ getevalsv.f90 getevecsv.f90 putevecsv.f90 genshtmat.f90 allatoms.f90 \ putevecfv.f90 getevecfv.f90 writesym.f90 putoccsv.f90 getoccsv.f90 torque.f90 \ findqpt.f90 findkpt.f90 genevfsv.f90 genwfsv.f90 SRC_main1 = \ sdelta.f90 stheta.f90 sortidx.f90 symmat.f90 radnucl.f90 hrmdmat.f90 \ wigner3j.f90 symrvf.f90 writeqpts.f90 rndevsv.f90 gengkvec.f90 \ mixlinear.f90 writesf.f90 gengqf.f90 genkmat.f90 genolpq.f90 genjlgprmt.f90 \ rfinterp.f90 fsmooth.f90 axangrot.f90 rotaxang.f90 wspline.f90 splined.f90 \ findswidth.f90 findsymlat.f90 writepmat.f90 genstrain.f90 symmetry.f90 \ linengy.f90 writestress.f90 eulerrot.f90 zftwfir.f90 rschrodint.f90 \ writegclq.f90 writegeom.f90 writemom.f90 gendmat.f90 curlrvf.f90 \ genzvclmt.f90 genjtot.f90 symvec.f90 checkwrite.f90 genjprk.f90 proj2d.f90 \ genidxbse.f90 symrvfir.f90 genjpr.f90 eveqnfvr.f90 gentau.f90 genjlgpr.f90 \ writestrain.f90 writefermi.f90 rfmtctof.f90 findsym.f90 zfsht.f90 rhonorm.f90 \ genvchi0.f90 zfmtconj.f90 stheta_sq.f90 sdelta_lr.f90 \ stheta_lr.f90 findsymsite.f90 genlmirep.f90 writespecies.f90 rhomagk.f90 \ symrvfmt.f90 wigner3jf.f90 wigner6j.f90 genhvec.f90 ylmrot.f90 wxcplot.f90 \ massnucl.f90 gendmatk.f90 rfplot.f90 straingkq.f90 \ eveqnit.f90 oepmain.f90 rdirac.f90 unitary.f90 bandstr.f90 sfacinit.f90 \ findscq.f90 plot1d.f90 plot2d.f90 plot3d.f90 init0.f90 readstate.f90 \ eveqnhf.f90 zbsht.f90 i3mtv.f90 spline.f90 gauntyry.f90 findnjcmax.f90 \ gndstate.f90 sstask.f90 fermisurf.f90 spiralsc.f90 atom.f90 maginit.f90 \ exxengyk.f90 xc_c_tb09.f90 moke.f90 hmlrad.f90 dos.f90 findprimcell.f90 \ plotpt2d.f90 sfacrho.f90 bdipole.f90 dielectric.f90 elfplot.f90 vclcore.f90 \ zfmtwr.f90 zvcldisp.f90 vecfbz.f90 gcd.f90 lopzflmn.f90 zpotclmt.f90 \ readfermi.f90 gensdmat.f90 symrfmt.f90 sphcrd.f90 potcoul.f90 genzrm.f90 \ rfmtftoc.f90 rminv.f90 zminv.f90 rtozfmt.f90 genwfsvp.f90 rdiracint.f90 \ findngkmax.f90 rotzflm.f90 zfinp.f90 latvstep.f90 gradzfmt.f90 eveqnfv.f90 \ symdmat.f90 z2mm.f90 z2mctm.f90 z2mmct.f90 axangsu2.f90 gradzvcln.f90 \ gentpmae.f90 zfcmtwr.f90 projsbf.f90 splinew.f90 gradzf.f90 mixerifc.f90 \ genvsig.f90 timesec.f90 zfmtftoc.f90 ztorfmt.f90 zfmtctof.f90 eveqnfvz.f90 \ energynn.f90 gaunt.f90 potxcmt.f90 sdelta_mp.f90 stheta_mp.f90 sdelta_fd.f90 \ stheta_fd.f90 writelsj.f90 eveqnzh.f90 gensmatk.f90 gensfacgp.f90 rhomag.f90 \ wsplintp.f90 checkmt.f90 rhomagv.f90 reciplat.f90 gradrf.f90 genzfrm.f90 \ mixadapt.f90 zftrf.f90 sbessel.f90 gengclgq.f90 gencfun.f90 writeeval.f90 \ factr.f90 genstress.f90 rfcopy.f90 force.f90 genvbmatk.f90 eveqn.f90 \ forcek.f90 writeepsinv.f90 olprad.f90 polark.f90 zfmtinp.f90 \ hflocal.f90 mixbroyden.f90 zmdet.f90 grad2rfmt.f90 clebgor.f90 rfirctof.f90 \ effmass.f90 genffacgp.f90 zpotcoul.f90 sfacmag.f90 polynm.f90 epsinv.f90 \ rfinpc.f90 zmctmu.f90 zmctm.f90 writeiad.f90 genapwfr.f90 genws.f90 \ gengclq.f90 addbfsm.f90 genylmv.f90 olpfv.f90 hmlfv.f90 \ genexpmt.f90 rfinp.f90 factnm.f90 sphcover.f90 sctovec.f90 \ genvmat.f90 genppts.f90 mtdmin.f90 eveqnzg.f90 fderiv.f90 genpmat.f90 \ genexpmat.f90 writeforces.f90 r3cross.f90 match.f90 genspchi0.f90 genzrho.f90 \ potefield.f90 rhoinit.f90 eveqnsv.f90 roteuler.f90 genrmesh.f90 \ splint.f90 nfftifc.f90 wavefcr.f90 lopzflm.f90 potks.f90 brzint.f90 \ rotdmat.f90 genylmg.f90 gentaucr.f90 readinput.f90 numlist.f90 hermite.f90 \ genfspecies.f90 atpstep.f90 dmatls.f90 writeengy.f90 writechg.f90 \ rbsht.f90 rfsht.f90 genlofr.f90 rotrfmt.f90 zfmtint.f90 zftzf.f90 \ genpmatk.f90 rvfcross.f90 writeinfo.f90 mossbauer.f90 initoep.f90 i3minv.f90 \ r3mv.f90 genidxlo.f90 nuclei.f90 writeefg.f90 writeevsp.f90 \ gencore.f90 r3mtv.f90 r3minv.f90 r3frac.f90 genapwlofr.f90 gridsize.f90 \ symrfir.f90 erf.f90 geomplot.f90 ylmroty.f90 gengvclns.f90 ssfext.f90 \ writestate.f90 sdelta_sq.f90 potxcir.f90 potxc.f90 rzfmtinp.f90 rhoplot.f90 \ occupy.f90 symveca.f90 jprplot.f90 genvmatk.f90 geomopt.f90 \ eveqnss.f90 hartfock.f90 potplot.f90 genwfpw.f90 hmlxbse.f90 hmlxbsek.f90 \ hmldbse.f90 hmldbsek.f90 gradwfcr2.f90 oepresk.f90 addlorbcnd.f90 energy.f90 \ wfplot.f90 oepvcl.f90 oepvclk.f90 polar.f90 dbxcplot.f90 sbesseldm.f90 \ writehmlbse.f90 dielectric_bse.f90 vecplot.f90 nesting.f90 writeevbse.f90 \ emdplot3d.f90 emdplot2d.f90 emdplot1d.f90 rfhkintp.f90 writewfpw.f90 \ vblocal.f90 writefsm.f90 getwfpw.f90 plotpt1d.f90 init1.f90 init2.f90 \ findsymcrys.f90 plotpt3d.f90 elnes.f90 fermisurfbxsf.f90 genspecies.f90 \ writeexpmat.f90 writekpts.f90 wfcrplot.f90 writedos.f90 energykncr.f90 \ ggamt_1.f90 ggair_1.f90 ggamt_sp_1.f90 ggair_sp_1.f90 ggamt_2a.f90 \ ggair_2a.f90 ggamt_2b.f90 ggair_2b.f90 ggamt_sp_2a.f90 ggair_sp_2a.f90 \ ggamt_sp_2b.f90 ggair_sp_2b.f90 writeemd.f90 reademd.f90 emdplot.f90 \ init3.f90 init4.f90 fsmbfield.f90 genvmmtsv.f90 testcheck.f90 pade.f90 \ wsplint.f90 gensocfr.f90 pades.f90 genscss.f90 rfcmtwr.f90 nonlinopt.f90 \ writelat.f90 rhocore.f90 rzfinp.f90 readspecies.f90 findband.f90 exxengy.f90 \ gentauk.f90 gradrfmt.f90 symrf.f90 rfmtinp.f90 checkfsm.f90 \ genrlmv.f90 mae.f90 writegvecrf.f90 zcfmtwr.f90 SRC_main = $(SRC_main0) $(SRC_main1) SRC_BOG0 = \ dmatuv.f90 dmatwx.f90 eveqnuv.f90 eveqnwxy.f90 SRC_BOG1 = \ writeevaluv.f90 occupyuv.f90 inithfb.f90 genwfuv.f90 putevaluv.f90 \ getevaluv.f90 putevecuv.f90 getevecuv.f90 putevecwxy.f90 \ getevecwxy.f90 putevalwx.f90 getevalwx.f90 aceplot.f90 putxnorm.f90 \ putvnorm.f90 getxnorm.f90 getvnorm.f90 SRC_BOG = $(SRC_BOG0) $(SRC_BOG1) SRC_phonon0 = \ dolpistl.f90 dhmlistl.f90 olpaloq.f90 hmlaloq.f90 dolpalo.f90 dhmlalo.f90 \ dhmllolo.f90 olpaaq.f90 dolpaa.f90 dhmlaa.f90 hmlaaq.f90 initeph.f90 \ dengyeph.f90 gndsteph.f90 eveqneph.f90 hmlepha.f90 hmlephb.f90 hmlephde.f90 \ getephmkq.f90 ephdos.f90 SRC_phonon1 = \ gradrhomt.f90 gendcfun.f90 gendvsig.f90 drhomagsh.f90 doccupy.f90 \ dhmlrad.f90 gendwfsv.f90 dwavefmt.f90 gengqvec.f90 dmatch.f90 \ writedvs.f90 readdyn.f90 dyntask.f90 dpotks.f90 dpotxc.f90 deveqnfv.f90 \ dpotcoul.f90 drhomagk.f90 gengvsmt.f90 dforce.f90 dforcek.f90 dynqtor.f90 \ dynevs.f90 phonon.f90 dynrtoq.f90 mcmillan.f90 genephmat.f90 gengkqvec.f90 \ genmcph.f90 putdevecfv.f90 getdevecfv.f90 putdevecsv.f90 getdevecsv.f90 \ phononsc.f90 genscph.f90 phdisp.f90 dynsymapp.f90 dynsym.f90 dynev.f90 \ phdos.f90 sumrule.f90 writephn.f90 dynfext.f90 writegamma.f90 readgamma.f90 \ phlwidth.f90 alpha2f.f90 writelambda.f90 ephcouple.f90 eliashberg.f90 \ phscdvs.f90 readdvs.f90 readalpha2f.f90 gendsocfr.f90 bornechg.f90 \ bectask.f90 becfext.f90 putephmat.f90 getephmat.f90 SRC_phonon = $(SRC_phonon0) $(SRC_phonon1) SRC_ULR0 = \ zfirctof.f90 SRC_ULR1 = \ writeevalu.f90 rhocoreu.f90 eveqnulr.f90 \ rfzfftq.f90 writekpa.f90 rhomaguk.f90 rhomagq.f90 genhmlu.f90 chargeu.f90 \ momentu.f90 potxcu.f90 occupyulr.f90 writeinfou.f90 zfplot.f90 writeengyu.f90 \ writevclr.f90 vclqinit.f90 genhdbulr.f90 addbfsmu.f90 writechgrmt.f90 \ initulr.f90 writemomrmt.f90 writestulr.f90 readstulr.f90 potefieldu.f90 \ puthdbulr.f90 gethdbulr.f90 potuinit.f90 readvclr.f90 genkpakq.f90 \ genzvmatk.f90 genzvbmatk.f90 potksu.f90 plotu1d.f90 plotu2d.f90 plotu3d.f90 \ gndstulr.f90 vblocalu.f90 plotulr.f90 potuplot.f90 potcoulu.f90 rhouplot.f90 \ maguplot.f90 SRC_ULR = $(SRC_ULR0) $(SRC_ULR1) SRC_DFTU = \ gendmatmt.f90 genveedu.f90 genvmatmt.f90 writedftu.f90 readalphadu.f90 \ fyukawa.f90 fyukawa0.f90 genfdufr.f90 energyfdu.f90 writeefdu.f90 \ zbessela.f90 zbesselb.f90 readdmatmt.f90 genfdu.f90 findlambdadu.f90 \ readfdu.f90 writetmdu.f90 writetm2du.f90 writetm3du.f90 dmtotm2.f90 \ dmtotm3.f90 tm2todm.f90 tm3todm.f90 pottm2.f90 pottm3.f90 tm2pol.f90 \ tm3pol.f90 gendmftm.f90 ftmfield.f90 writeftm.f90 SRC_RDMFT0 = \ genvclijji.f90 SRC_RDMFT1 = \ rdmft.f90 rdmdkdc.f90 rdmminc.f90 rdmvaryc.f90 rdmdedc.f90 rdmenergy.f90 \ rdmengyxc.f90 rdmwritededn.f90 rdmwriteengy.f90 rdmminn.f90 rdmvaryn.f90 \ rdmdedn.f90 rdmdexcdn.f90 genvclijjk.f90 getvclijji.f90 getvclijjk.f90 \ writevclijji.f90 writevclijjk.f90 rdmdexcdc.f90 rdmdtsdn.f90 rdmentropy.f90 \ rdmeval.f90 SRC_RDMFT = $(SRC_RDMFT0) $(SRC_RDMFT1) SRC_GW0 = \ gwdmat.f90 gwlocal.f90 genwgw.f90 ksinvert.f90 gtwsum.f90 minf_nm.f90 \ acpole.f90 SRC_GW1 = \ gwrhomag.f90 gwdmatk.f90 gwefermi.f90 dysonr.f90 gwsefm.f90 putgwsefm.f90 \ getgwsefm.f90 writeigw.f90 polefit.f90 gwchgk.f90 gwsefmk.f90 gwspecf.f90 \ writegwsf.f90 acgwse.f90 fmin_nm.f90 zfpole.f90 gwbandstr.f90 gwscrho.f90 SRC_GW = $(SRC_GW0) $(SRC_GW1) SRC_TDDFT0 = \ atptstep.f90 potkst.f90 tdbackup.f90 writetimes.f90 readtimes.f90 \ gentimes.f90 readafieldt.f90 genjr.f90 tddft.f90 SRC_TDDFT1 = \ tddftlr.f90 genhmlt.f90 timestep.f90 writetddos.f90 writeafpdt.f90 \ readafindt.f90 genvfxc.f90 genfxcr.f90 tdtemp.f90 writetdlsj.f90 \ genspfxcr.f90 genvfxcg.f90 tddftsplr.f90 genspfxcg.f90 genafieldt.f90 \ writetddft.f90 dielectric_tdrt.f90 readjtot.f90 afindtstep.f90 \ genefieldt.f90 energytd.f90 engyknk.f90 readforcet.f90 tdrestart.f90 \ readdatposc.f90 writedatposc.f90 rhostatic.f90 jtotk.f90 rhosplot.f90 \ bornectd.f90 becforce.f90 SRC_TDDFT = $(SRC_TDDFT0) $(SRC_TDDFT1) SRC_XC = \ xc_pzca.f90 xc_pwca.f90 xc_pbe.f90 xc_am05.f90 xc_xalpha.f90 xc_wc06.f90 \ x_wc06.f90 x_pbe.f90 c_pbe.f90 c_pbe_gcor.f90 xc_vbh.f90 fxc_pwca.f90 SRC_W90 = \ initw90.f90 writew90.f90 writew90win.f90 writew90eig.f90 setupw90.f90 \ writew90mmn.f90 writew90spn.f90 SRC = $(SRC_modules) $(SRC_FFT) $(SRC_elk) $(SRC_main) $(SRC_phonon) \ $(SRC_XC) $(SRC_DFTU) $(SRC_RDMFT) $(SRC_GW) $(SRC_TDDFT) \ $(SRC_ULR) $(SRC_W90) $(SRC_BOG) OBJ = $(SRC:.f90=.o) EXE = elk #------------------------------------------------------------------------------- # Suffix rules #------------------------------------------------------------------------------- .SUFFIXES: .o .f90 .f90.o: $(F90) $(F90_OPTS) -c $< #------------------------------------------------------------------------------- # Targets #------------------------------------------------------------------------------- elk: $(OBJ) $(F90) $(F90_OPTS) -o $(EXE) $(OBJ) $(LIB_W90) $(LIB_LPK) $(LIB_FFT) \ $(LIB_libxc) $(LIB_SYS) blas: cd BLAS; $(MAKE); cp blas.a .. lapack: cd LAPACK; $(MAKE); cp lapack.a .. fft: cd fftlib; $(MAKE); cp fftlib.a .. all: blas lapack fft elk clean: rm -f *.o *.mod *~ ifc* *.gcno gmon.out *.aux *.dvi *.log \ elk.pdf *.tex *.toc *.out $(EXE) cleanall: cd BLAS; $(MAKE) clean cd LAPACK; $(MAKE) clean cd fftlib; $(MAKE) clean $(MAKE) clean doc: rm -f elk.aux elk.bbl elk.blg elk.log elk.pdf elk.tex elk.toc elk.lst ls $(SRC_modules) $(SRC_main) $(SRC_XC) $(SRC_phonon) $(SRC_DFTU) \ $(SRC_RDMFT) $(SRC_TDDFT) > elk.lst ./protex -F -s $(SRC_elk) $$(cat elk.lst) > elk.tex pdflatex elk;pdflatex elk;pdflatex elk backup: tar -czf elk.tgz *.f90 fftlib eos spacegroup junk BLAS LAPACK \ Makefile notes.txt ../docs ../examples ../tests ../tests-libxc \ protex ../COPYING ../README elk_silhouette.pdf depend gentest \ genalltests checklist.txt rmspaces grepelk vimelk VERSION = $$(grep "version(3)" modmain.f90 | sed 's/.*\[\([^]]*\)\].*/\1/g' | sed 's/,/./g') NAME = elk-$(VERSION) RELEASE = ../release/$(NAME) version: echo $(VERSION) release: rm -rf $(RELEASE) mkdir $(RELEASE) cd BLAS; $(MAKE) clean cd LAPACK; $(MAKE) clean cd fftlib; $(MAKE) clean cd eos; $(MAKE) clean cd spacegroup; $(MAKE) clean cd ..; find . -type f -name *~ -exec rm -f {} \; cd ..; find . -type f -name gmon.out -exec rm -f {} \; cd ..; find . -type f -name RUNNING -exec rm -f {} \; mkdir $(RELEASE)/src cp -r BLAS $(RELEASE)/src cp -r LAPACK $(RELEASE)/src cp -r fftlib $(RELEASE)/src cp -r eos $(RELEASE)/src cp -r spacegroup $(RELEASE)/src cp $(SRC) Makefile protex elk_silhouette.pdf $(RELEASE)/src cp $(SRC) rmspaces grepelk vimelk $(RELEASE)/src cp mpi_stub.f90 omp_stub.f90 mkl_stub.f90 oblas_stub.f90 blis_stub.f90 w90_stub.f90 $(RELEASE)/src cp libxcf90.f90 libxcifc.f90 libxcifc_stub.f90 $(RELEASE)/src cp zfftifc.f90 zfftifc_fftw.f90 zfftifc_mkl.f90 $(RELEASE)/src cp -r ../examples $(RELEASE) cp -r ../tests $(RELEASE) cp -r ../tests-libxc $(RELEASE) mkdir $(RELEASE)/species cp ../species/*.in $(RELEASE)/species cp -r ../utilities $(RELEASE) cp ../COPYING $(RELEASE) cp ../README $(RELEASE) cp ../release_notes.txt $(RELEASE) cp ../Makefile $(RELEASE) cp ../setup $(RELEASE) cp ../make.def $(RELEASE) $(MAKE) doc cp elk.pdf ../docs cd spacegroup;$(MAKE) doc;cp spacegroup.pdf ../../docs;$(MAKE) clean cp -r ../docs $(RELEASE) mkdir $(RELEASE)/release tar -C ../release -czf ../release/$(NAME).tgz $(NAME) cp ../docs/elk.pdf ../release cp ../docs/spacegroup.pdf ../release echo $(NAME) lines: cat $(SRC) | wc -l spaces: ./rmspaces $(SRC) vim: ./vimelk elk-7.2.42/src/PaxHeaders.21776/protex0000644000000000000000000000013214061636516014167 xustar0030 mtime=1623670094.822102578 30 atime=1623670094.821102579 30 ctime=1623670094.822102578 elk-7.2.42/src/protex0000755002504400250440000011077514061636516016242 0ustar00dewhurstdewhurst00000000000000#!/usr/bin/perl # # $Id: protex,v 1.15 2004/06/03 23:49:46 eschwab Exp $ # #BOP # # !ROUTINE: ProTeX v. 2.00 - Translates DAO Prologues to LaTeX # # !INTERFACE: # protex [-hbACFS] ] [+-nlsxf] [src_file(s)] # # !DESCRIPTION: # Perl filter to produce a \LaTeX compatible document # from a DAO Fortran source code with standard Pro\TeX # prologues. If source files are not specified it # reads from stdin; output is always to stdout. # # \noindent # {\bf Command Line Switches:} \vspace{0.2cm} # # \begin{center} # \begin{tabular}{|c|l|} \hline \hline # -h & Help mode: list command line options \\ \hline # -b & Bare mode, meaning no preamble, etc. \\ \hline # -i & internal mode: omit prologues marked !BOPI \\ \hline # +/-n & New Page for each subsection (wastes paper) \\ \hline # +/-l & Listing mode, default is prologues only \\ \hline # +/-s & Shut-up mode, i.e., ignore any code from BOC to EOC \\ \hline # +/-x & No LaTeX mode, i.e., put !DESCRIPTION: in verbatim mode \\ \hline # +/-f & No source file info \\ \hline # -A & Ada code \\ \hline # -C & C++ code \\ \hline # -F & F90 code (default) \\ \hline # -S & Shell script \\ \hline \hline # \end{tabular} # \end{center} # # The options can appear in any order. The options, -h and -b, affect # the input from all files listed on command-line input. Each of the # remaining options effects only the input from the files listed after # the option and prior to any overriding option. The plus sign # turns off the option. For example, the command-line input, # \bv # protex -bnS File1 -F File2.f +n File3.f # \ev # will cause the option, {\tt -n} to affect the input from the files, # {\tt File} and {\tt File2.f}, but not from {\tt File3.f}. The # {\tt -S} option is implemented for {\tt File1} but is overridden by # the {\tt -F} for files {\tt File2.f} and {\tt File3.f}. # # # !SEE ALSO: # For a more detailed description of ProTeX functionality, # DAO Prologue and other conventions, consult: # # Sawyer, W., and A. da Silva, 1997: ProTeX: A Sample # Fortran 90 Source Code Documentation System. # DAO Office Note 97-11 # # # !REVISION HISTORY: # # 20Dec1995 da Silva First experimental version # 10Nov1996 da Silva First internal release (v1.01) # 28Jun1997 da Silva Modified so that !DESCRIPTION can appear after # !INTERFACE, and !INPUT PARAMETERS etc. changed to italics. # 02Jul1997 Sawyer Added shut-up mode # 20Oct1997 Sawyer Added support for shell scripts # 11Mar1998 Sawyer Added: file name, date in header, C, script support # 05Aug1998 Sawyer Fixed LPChang-bug-support-for-files-with-underscores # 10Oct1998 da Silva Introduced -f option for removing source file info # from subsection, etc. Added help (WS). # 06Dec1999 C. Redder Added LaTeX command "\label{sec:prologues}" just # after the beginning of the proglogue section. # 13Dec1999 C. Redder Increased flexbility in command-line # interface. The options can appear in any # order which will allow the user to implement # options for select files. # 01Feb1999 C. Redder Added \usepackage commands to preamble of latex # document to include the packages amsmath, epsfig # and hangcaption. # 10May2000 C. Redder Revised LaTeX command "\label{sec:prologues}" # to "\label{app:ProLogues}" # 10/10/2002 da Silva Introduced ARGUMENTS keyword, touch ups. # # 15Jan2003 R. Staufer Modified table of contents to print only section headers - no descriptions # # 25Feb2003 R. Staufer Added BOPI/EOPI and -i (internal) switch to provide the option of omitting prologue information from output files. # #EOP #---------------------------------------------------------------------------- # Keep this if you don't know what it does... # ------------------------------------------- ### $[ = 1; # set array base to 1 (removed to maintain Perl 5.30 compatibility) $, = ' '; # set output field separator $\ = "\n"; # set output record separator # Set valid options lists # ----------------------- $GlobOptions = 'hb'; # Global options (i.e for all files) $LangOptions = 'ACFS'; # Options for setting programming languages $SwOptions = 'flinsx'; # Options that can change for each input # file $RegOptions = "$GlobOptions$LangOptions"; # Scan for global options until first first # file is processed. # Scan for global options # ----------------------- $NFiles = 0; Arg: foreach $arg (@ARGV) { $option = &CheckOpts ( $arg, $RegOptions, $SwOptions ) + 1; if ( $option ) { $rc = &GetOpts ( $arg, $GlobOptions ); next Arg; } else { $NFiles++; }# end if }# end foreach # If all input arguments are options, then assume the # filename, "-", for the standard input # -------------------------------------------------- if ( $NFiles == 0 ) { push (@ARGV, "-"); } # Implement help option # --------------------- if ( $opt_h ) { &print_help(); exit(); }#end if # Optional Prologue Keywords # -------------------------- @keys = ( "!INTERFACE:", "!USES:", "!PUBLIC TYPES:", "!PRIVATE TYPES:", "!PUBLIC MEMBER FUNCTIONS:", "!PRIVATE MEMBER FUNCTIONS:", "!PUBLIC DATA MEMBERS:", "!PARAMETERS:", "!ARGUMENTS:", "!DEFINED PARAMETERS:", "!INPUT PARAMETERS:", "!INPUT/OUTPUT PARAMETERS:", "!OUTPUT PARAMETERS:", "!RETURN VALUE:", "!REVISION HISTORY:", "!BUGS:", "!SEE ALSO:", "!SYSTEM ROUTINES:", "!FILES USED:", "!REMARKS:", "!TO DO:", "!CALLING SEQUENCE:", "!AUTHOR:", "!CALLED FROM:", "!LOCAL VARIABLES:" ); # Initialize these for clarity # ---------------------------- $intro = 0; # doing introduction? $prologue = 0; # doing prologue? $first = 1; # first prologue? $source = 0; # source code mode? $verb = 0; # verbatim mode? $tpage = 0; # title page? $begdoc = 0; # has \begin{document} been written? # Initial LaTeX stuff # ------------------- &print_notice(); &print_preamble(); # \documentclass, text dimensions, etc. &print_macros(); # short-hand LaTeX macros # Main loop -- for each command-line argument # ------------------------------------------- ARG: foreach $arg (@ARGV) { # Scan for non-global command-line options # ---------------------------------------- $option = &CheckOpts ( $arg, $RegOptions, $SwOptions, "quiet" ) + 1; if ( $option ) { &GetOpts ( $arg, $SwOptions ); &SetOpt ( $arg, $LangOptions ); next ARG; }# end if # Determine the type of code, set corresponding search strings # ------------------------------------------------------------ # if ( $opt_F ) { # FORTRAN $comment_string = '!'; # ------- $boi_string = '!BOI'; $eoi_string = '!EOI'; $bop_string = '!BOP'; $eop_string = '!EOP'; $bopi_string = '!BOPI'; $eopi_string = '!EOPI'; $boc_string = '!BOC'; $eoc_string = '!EOC'; $boe_string = '!BOE'; $eoe_string = '!EOE'; #}# end if if ( $opt_A ) { # ADA $comment_string = '--'; # --- $boi_string = '--BOI'; $eoi_string = '--EOI'; $bop_string = '--BOP'; $eop_string = '--EOP'; $bopi_string = '--BOPI'; $eopi_string = '--EOPI'; $boc_string = '--BOC'; $eoc_string = '--EOC'; $boe_string = '--BOE'; $eoe_string = '--EOE'; }# end if if ( $opt_C ) { $comment_string = '//'; # C $boi_string = '//BOI'; # - $eoi_string = '//EOI'; $bop_string = '//BOP'; $eop_string = '//EOP'; $bopi_string = '//BOPI'; $eopi_string = '//EOPI'; $boc_string = '//BOC'; $eoc_string = '//EOC'; $boe_string = '//BOE'; $eoe_string = '//EOE'; }# end if if ( $opt_S ) { # Script $comment_string = '#'; # ------ $boi_string = '#BOI'; $eoi_string = '#EOI'; $bop_string = '#BOP'; $eop_string = '#EOP'; $bopi_string = '#BOPI'; $eopi_string = '#EOPI'; $boc_string = '#BOC'; $eoc_string = '#EOC'; $boe_string = '#BOE'; $eoe_string = '#EOE'; }# end if # Set file name parameters # ------------------------ $InputFile = $arg; @all_path_components = split( /\//, $InputFile ); $FileBaseName = pop ( @all_path_components ); $FileBaseName =~ s/_/\\_/g; if ( $InputFile eq "-" ) {$FileBaseName = "Standard Input";} # Set date # -------- $Date = `date`; # Open current file # ----------------- open ( InputFile, "$InputFile" ) or print STDERR "Unable to open $InputFile: $!"; # Print page header # ----------------- # printf "\n\\markboth{Left}{Source File: %s, Date: %s}\n\n", # $FileBaseName, $Date; LINE: # Inner loop --- for processing each line of the input file # --------------------------------------------------------- while ( ) { chop; # strip record separator # !PARAMETERS: really mean !ARGUMENTS: # ------------------------------------ # s/!PARAMETERS:/!ARGUMENTS:/g; @Fld = split(' ', $_, 9999); # Straight quote # -------------- if ($Fld[0] eq '!QUOTE:') { for ($i = 1; $i <= $#Fld - 1; $i++) { printf '%s ', $Fld[$i]; }# end for print " "; next LINE; }# end if # Handle optional Title Page and Introduction # ------------------------------------------- if ($Fld[0] eq $boi_string) { print ' '; $intro = 1; next LINE; }# end if if ($Fld[1] eq '!TITLE:') { if ( $intro ) { shift @Fld; shift @Fld; @title = @Fld; $tpage = 1; next LINE; }# end if }# end if if ($Fld[1] eq '!AUTHORS:') { if ( $intro ) { shift @Fld; shift @Fld; @author = @Fld; $tpage = 1; next LINE; }# end if }# end if if ($Fld[1] eq '!AFFILIATION:') { if ( $intro ) { shift @Fld; shift @Fld; @affiliation = @Fld; $tpage = 1; next LINE; }# end if }# end if if ($Fld[1] eq '!DATE:') { if ( $intro ) { shift @Fld; shift @Fld; @date = @Fld; $tpage = 1; next LINE; }# end if }# end if if ($Fld[1] eq '!INTRODUCTION:') { if ( $intro ) { &do_beg(); print ' '; print '%..............................................'; shift @Fld; shift @Fld; print "\\section{@Fld}"; next LINE; }# end if }# end if # End of introduction # ------------------- if ($Fld[0] eq $eoi_string) { print ' '; print '%/////////////////////////////////////////////////////////////'; print "\\newpage"; $intro = 0; next LINE; }# end if # Beginning of prologue # --------------------- if ($Fld[0] eq $bop_string) { if ( $source ) { &do_eoc(); } print ' '; print '%/////////////////////////////////////////////////////////////'; &do_beg(); if ($first == 0) { ### print "\\newpage"; print " "; print "\\mbox{}\\hrulefill\\ "; print " ";} else { unless($opt_b){print "\\section{Routine/Function Prologues} \\label{app:ProLogues}";} }# end if $first = 0; $prologue = 1; $verb = 0; $source = 0; &set_missing(); # no required keyword yet next LINE; }# end if # Beginning of internal prologue # ------------------------------ if ($Fld[0] eq $bopi_string) { if ($opt_i) {$prologue = 0;} else { if ($source) { &do_eoc(); } print ' '; print '%/////////////////////////////////////////////////////////////'; &do_beg(); if ($first ==0) { ### print "\\newpage"; print " "; print "\\mbox{}\\hrulefill\\"; print " ";} else { unless($opt_b){print "\\section{Routine/Function Prologues} \\label{app:ProLogues}";} }# endif $first = 0; $prologue = 1; $verb = 0; $source = 0; &set_missing(); # no required keyword yet next LINE; }# endelse }# endif # A new subroutine/function # ------------------------- if ($Fld[1] eq '!ROUTINE:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless ($opt_f) {printf "\\subsection{%s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{%s }\n\n", $_;} $have_name = 1; $not_first = 1; next LINE; }# end if }# end if # A new Module # ------------ if ($Fld[1] eq '!MODULE:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless($opt_f) {printf "\\subsection{Fortran: Module Interface %s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{Fortran: Module Interface %s }\n\n", $_;} $have_name = 1; $have_intf = 1; # fake it, it does not need one. $not_first = 1; next LINE; }# end if }# end if # A new include file # ------------------ if ($Fld[1] eq '!INCLUDE:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless($opt_f) {printf "\\subsection{Include File %s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{Include File %s }\n\n", $_;} $have_name = 1; $have_intf = 1; # fake it, it does not need one. $not_first = 1; next LINE; }# end if }# end if # A new INTERNAL subroutine/function # ---------------------------------- if ($Fld[1] eq '!IROUTINE:') { # Internal routine if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" @words = split " ", $_; printf "\\subsection [$words[1]] {$_}\n\n"; $have_name = 1; next LINE; }# end if }# end if # A new CLASS # ------------ if ($Fld[1] eq '!CLASS:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless($opt_f) {printf "\\subsection{C++: Class Interface %s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{C++: Class Interface %s }\n\n", $_;} $have_name = 1; $have_intf = 1; # fake it, it does not need one. $not_first = 1; next LINE; }# end if }# end if # A new Method # ------------------------- if ($Fld[1] eq '!METHOD:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless ($opt_f) {printf "\\subsection{%s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{%s }\n\n", $_;} $have_name = 1; $not_first = 1; next LINE; }# end if }# end if # A new function # ------------------------- if ($Fld[1] eq '!FUNCTION:' ) { if ($prologue) { shift @Fld; shift @Fld; $_ = join(' ', @Fld); $name_is = $_; s/_/\\_/g; # Replace "_" with "\_" if ( $opt_n && $not_first ) { printf "\\newpage\n"; } unless ($opt_f) {printf "\\subsection{%s (Source File: %s)}\n\n", $_, $FileBaseName;} else {printf "\\subsection{%s }\n\n", $_;} $have_name = 1; $not_first = 1; next LINE; }# end if }# end if # Description: what follows will be regular LaTeX (no verbatim) # ------------------------------------------------------------- if (/!DESCRIPTION:/) { if ($prologue) { if ($verb) { printf "\\end{verbatim}"; printf "\n{\\sf DESCRIPTION:\\\\ }\n\n"; $verb = 0; } else { # probably never occurs }# end if if ($opt_x) { printf "\\begin{verbatim} "; $verb = 1; $first_verb = 1; } else { for ($i = 2; $i <= $#Fld - 1; $i++) { printf '%s ', $Fld[$i]; }# end for }# end if ### print " "; $have_desc = 1; next LINE; }# end if }# end if # Handle optional keywords (these will appear as verbatim) # -------------------------------------------------------- if ($prologue) { KEY: foreach $key ( @keys ) { if ( /$key/ ) { if ($verb) { printf "\\end{verbatim}"; $verb = 0; } else { printf "\n\\bigskip"; }# end if $k = sprintf('%s', $key); $ln = length($k); ###printf "\\subsection*{%s}\n", substr($k, 2, $ln - 1); ###printf "{\\Large \\em %s}\n", ucfirst lc substr($k, 2, $ln - 1); $_ = $key; if( /USES/ || /INPUT/ || /OUTPUT/ || /PARAMETERS/ || /VALUE/ || /ARGUMENTS/ ) { printf "{\\em %s}\n", substr($k, 1, $ln - 1); } # italics else { printf "{\\sf %s}\n", substr($k, 1, $ln - 1); # san serif }# end if printf "\\begin{verbatim} "; $verb = 1; $first_verb = 1; if ( $key eq "!INTERFACE:" ) { $have_intf = 1; } if ( $key eq "!CALLING SEQUENCE:" ) { $have_intf = 1; } if ( $key eq "!REVISION HISTORY:" ) { $have_hist = 1; } next LINE; }# end if }# end foreach }# end if # End of prologue # --------------- if ($Fld[0] eq $eop_string) { if ($verb) { print "\\end{verbatim}"; $verb = 0; }# end if $prologue = 0; # &check_if_all_there(); # check if all required keywords are there. if ( $opt_l ) { $Fld[0] = $boc_string;} else { next LINE; } }# end if unless ( $opt_s ) { # End of Internal Prologue # ------------------------ if ($Fld[0] eq $eopi_string) { if ($verb) { print "\\end{verbatim}"; $verb = 0; }# endif $prologue = 0; # &check_if_all_there(); # check if all required keywords are there. if ($opt_l) { $Fld[0] = $boc_string;} else { next LINE; } }# endif # # Beginning of source code section # -------------------------------- if ($Fld[0] eq $boc_string) { print ' '; print '%/////////////////////////////////////////////////////////////'; $first = 0; $prologue = 0; $source = 1; ### printf "\\subsection*{CONTENTS:}\n\n", $Fld[3]; ###printf "{\\sf CONTENTS:}"; printf "\n \\begin{verbatim}\n"; $verb = 1; next LINE; }# end if # End of source code # ------------------ if ($Fld[0] eq $eoc_string) { &do_eoc(); $prologue = 0; next LINE; }# end if # Beginning of example prologue # ----------------------------- if ($Fld[0] eq $boe_string) { if ( $source ) { &do_eoc(); } print ' '; print '%/////////////////////////////////////////////////////////////'; $first = 0; $prologue = 1; $verb = 0; $source = 0; next LINE; }# end if # End of example prologue # ----------------------- if ($Fld[0] eq $eoe_string) { if ($verb) { print "\\end{verbatim}"; $verb = 0; }# end if $prologue = 0; if ( $opt_l ) { $Fld[0] = $boc_string;} else { next LINE; } }# end if }# end unless # Prologue or Introduction, print regular line (except for !) # ----------------------------------------------------------- if ($prologue||$intro) { if ( $verb && $#Fld == 0 && ( $Fld[0] eq $comment_string ) ) { next LINE; # to eliminate excessive blanks }# end if if ( $Fld[1] eq "\\ev" ) { # special handling $_ = $comment_string . " \\end{verbatim}"; }# end if s/^$comment_string/ /; # replace comment string with blank # $line = sprintf('%s', $_); # not necessary -- comment str is absent # $ln = length($line); # not necessary -- comment str is absent unless ( $first_verb ) { printf "\n "; } printf '%s', $_; # printf '%s', substr($line, 1, $ln - 1); # comment str is absent $first_verb = 0; next LINE; }# end if # Source code: print the full line # -------------------------------- if ($source) { print $_; next LINE; }# end if }# end inner loop for processing each line of the input file # --------------------------------------------------------- }# end main loop for each command-line argument # -------------------------------------------- print $_; if ( $source ) { &do_eoc(); } print '%...............................................................'; # see comment above where these are originally set. #print "\\setlength{\\parskip}{\\oldparskip}"; #print "\\setlength{\\parindent}{\\oldparindent}"; #print "\\setlength{\\baselineskip}{\\oldbaselineskip}"; unless ( $opt_b ) { print "\\end{document}"; }#end unless #---------------------------------------------------------------------- sub CheckOpts # Checks options against a given list. Outputs error message # for any invalid option. # # Usage: # $rc = &CheckOpts ( options, valid_reg_options, # valid_sw_options, # quiet_mode ) # # character: options - options to be checked. (e.g. -df+x) The # list must begin with a positive or # negative sign. If no sign appears at the # beginning or by itself, then the argument # is not recognized as a list of options. # character: valid_reg_options - list of valid regular options. # (i.e. options that are associated only # eith negative sign.) # character: valid_sw_options - list of valid switch options. # (i.e. options that can be associated with # either a positive or negative sign. # logical: quiet mode (optional) If true then print no error # messages. # integer: rc - return code # = -1 if the arguement, options, is # not recognized as a list of options # = 0 if all options are valid. # > 0 for the number of invalid options. # { local($options, $valid_reg_options, $valid_sw_options, $quiet_mode ) = @_; if ( $options eq "+" || $options eq "-" ) {return -1} local(@Options) = split( / */, $options ); if ( $Options[ $[ ] ne "-" && $Options[ $[ ] ne "+" ) {return -1;} local($option, $option_sign, $valid_list, $pos); local($errs) = 0; foreach $option ( @Options ) { if ( $option eq "-" || $option eq "+" ) {$option_sign = $option;} else { if ( $option_sign eq "-" ) { $valid_list = $valid_reg_options . $valid_sw_options; } else { $valid_list = $valid_sw_options; } $pos = index ($valid_list,$option); if ( $pos < $[ && $quiet_mode ) { $errs++; print STDERR "Invalid option: $option_sign$option \n"; }# end if }# end if }# end foreach return $errs; }#end sub GetOpts sub GetOpts # Gets options. If an option is valid, then opt_[option] is # set to 0 or 1 as a side effect if the option is preceeded by # a positive or negative sign. # # Usage: # $rc = &GetOpts ( options, valid_options ) # # character: options - options to be checked. (e.g. -df+x) The # list must begin with a positive or # negative sign. If no sign appears at the # beginning or by itself, then the argument # is not recognized as a list of options. # character: valid_options - list of valid options (e.g. dfhx) # integer: rc - return code # = -1 if the arguement, options, is # not recognized as a list of options. # = 0 otherwise # { local($options,$valid_options) = @_; if ( $options eq "+" || $options eq "-" ) {return -1} local(@Options) = split( / */, $options ); if ( $Options[ $[ ] ne "-" && $Options[ $[ ] ne "+" ) {return -1;} local($option, $option_sign); foreach $option ( @Options ) { if ( $option eq "-" || $option eq "+" ) { $option_sign = $option; } else { if ( index ($valid_options,$option) >= $[ ) { if ( $option_sign eq "-" ) {${"opt_$option"} = 1;} if ( $option_sign eq "+" ) {${"opt_$option"} = 0;}; }# end if }# end if }# end foreach return 0; }#end sub GetOpts sub SetOpt # Sets option flags. For the last input option that is in a # list, the flag opt_[option] is set to 1 as a side effect. # For all other options in the list, opt_[option] is set to 0. # # Usage: # $rc = &SetOpt ( options, valid_options ) # # character: options - options to be checked. (e.g. -df+x) The # list must begin with a positive or # negative sign. If no sign appears at the # beginning or by itself, then the argument # is not recognized as a list of options. # character: valid_options - list of valid options (e.g. def ) # integer: rc - return code # = -1 if the arguement, options, is # not recognized as a list of options. # = 0 otherwise # Note: For the examples provided for the input arguments, # $opt_d = 0, $opt_e = 0, and $opt_f = 1, since the # input option, -f, was the last in the argument, # option. # { local($options,$valid_options) = @_; if ( $options eq "+" || $options eq "-" ) {return -1} local(@Options) = split( / */, $options ); local(@ValidOptions) = split( / */, $valid_options ); if ( $Options[ $[ ] ne "-" && $Options[ $[ ] ne "+" ) {return -1;} local($option, $option_sign); foreach $option ( @Options ) { if ( $option ne "-" && $option ne "+" ) { if ( index ($valid_options,$option) >= $[ ) { foreach $valid_option (@ValidOptions ) { ${"opt_$valid_option"} = 0; }# end foreach ${"opt_$option"} = 1; }# end if }# end if }# end foreach return 0; }#end sub SetOpt sub print_help { print "Usage: protex [-hbACFS] [+-nlsxf] [src_file(s)]"; print " "; print " Options:"; print " -h Help mode: list command line options"; print " -b Bare mode, meaning no preamble, etc."; print " +-n New Page for each subsection (wastes paper)"; print " +-l Listing mode, default is prologues only"; print " +-s Shut-up mode, i.e., ignore any code from BOC to EOC"; print " +-x No LaTeX mode, i.e., put !DESCRIPTION: in verbatim mode"; print " +-f No source file info"; print " -A Ada code"; print " -C C++ code"; print " -F F90 code"; print " -S Shell script"; print " "; print " The options can appear in any order. The options, -h and -b,"; print " affect the input from all files listed on command-line input."; print " Each of the remaining options effects only the input from the"; print " files listed after the option and prior to any overriding"; print " option. The plus sign turns off the option."; }# end sub print_help sub print_notice { print "% **** IMPORTANT NOTICE *****" ; print "% This LaTeX file has been automatically produced by ProTeX v. 1.1"; print "% Any changes made to this file will likely be lost next time"; print "% this file is regenerated from its source. Send questions "; print "% to Arlindo da Silva, dasilva\@gsfc.nasa.gov"; print " "; }# sub print_notice sub print_preamble { unless ( $opt_b ) { print "%------------------------ PREAMBLE --------------------------"; print "\\documentclass[a4paper,11pt]{article}"; print "\\usepackage{amsmath}"; print "\\usepackage{amssymb}"; print "\\usepackage{epsfig}"; print "\\usepackage{tabularx}"; print "\\usepackage{color}"; print "\\usepackage[linkbordercolor={0 0 1}]{hyperref}"; print "\\textheight 9in"; print "\\topmargin 0pt"; print "\\headsep 1cm"; print "\\headheight 0pt"; print "\\textwidth 6in"; print "\\oddsidemargin 0in"; print "\\evensidemargin 0in"; print "\\marginparpush 0pt"; print "\\pagestyle{plain}"; print "\\markboth{}{}"; print "%-------------------------------------------------------------"; }# end unless # in your main document before you include any protex-generated files # for the first time, if you define these three variables as length # settings (like this:) # \newlength{\oldparskip} # \newlength{\oldparindent} # \newlength{\oldbaselineskip} # then 1) comment in all the lines below, and 2) find the 3 reset lines # further down and comment in them as well. # then protex will override the paragraph and skip settings during # the source sections, but will restore the original document settings # at the end. if someone can figure out how to check to see if a # latex variable exists, and do a conditional section, we could make # this fully self-contained. # nsc feb 2003 #print "\\setlength{\\oldparskip}{\\parskip}"; print "\\setlength{\\parskip}{0pt}"; #print "\\setlength{\\oldparindent}{\\parindent}"; print "\\setlength{\\parindent}{0pt}"; #print "\\setlength{\\oldbaselineskip}{\\baselineskip}"; print "\\setlength{\\baselineskip}{11pt}"; }# end sub print_preamble sub print_macros { print " "; print "%--------------------- SHORT-HAND MACROS ----------------------"; print "\\def\\bv{\\begin{verbatim}}"; print "\\def\\ev\{\\end\{verbatim}}"; print "\\def\\be{\\begin{equation}}"; print "\\def\\ee{\\end{equation}}"; print "\\def\\bea{\\begin{eqnarray}}"; print "\\def\\eea{\\end{eqnarray}}"; print "\\def\\bi{\\begin{itemize}}"; print "\\def\\ei{\\end{itemize}}"; print "\\def\\bn{\\begin{enumerate}}"; print "\\def\\en{\\end{enumerate}}"; print "\\def\\bd{\\begin{description}}"; print "\\def\\ed{\\end{description}}"; print "\\def\\({\\left (}"; print "\\def\\){\\right )}"; print "\\def\\[{\\left [}"; print "\\def\\]{\\right ]}"; print "\\def\\<{\\left \\langle}"; print "\\def\\>{\\right \\rangle}"; print "\\def\\cI{{\\cal I}}"; print "\\def\\diag{\\mathop{\\rm diag}}"; print "\\def\\tr{\\mathop{\\rm tr}}"; print "%-------------------------------------------------------------"; print " "; print "%------------------------ Elk commands -----------------------"; print "\\newcommand{\\block}[2]{"; print "\\color{blue}\\subsection{\\tt #1}\\color{black}"; print "\\begin{tabularx}{\\textwidth}[h]{|l|X|c|c|}"; print "\\hline"; print "#2 \\\\"; print "\\hline"; print "\\end{tabularx}\\vskip 0.25cm"; print "}"; print "%-------------------------------------------------------------"; }# end sub print_macros sub do_beg { unless ( $opt_b ) { if ( $begdoc == 0 ) { if ( $tpage ) { print "\\title{@title}"; print "\\author{@author\\\\ {\\em @affiliation}}"; print "\\date{@date}"; } print "\\begin{document}"; if ( $tpage ) { print "\\pagecolor[rgb]{1,0.95,0.85}"; print "\\fcolorbox{black}{white}{\\fbox{"; print "\\begin{minipage}[t]{\\linewidth}"; print "\\maketitle"; print "\\end{minipage}}}"; print "\\thispagestyle{empty}"; print "\\newpage"; print "\\pagecolor{white}"; } print "\\tableofcontents"; print "\\newpage"; $begdoc = 1; } } }# end sub do_beg sub do_eoc { print ' '; if ($verb) { print "\\end{verbatim}"; $verb = 0; } $source = 0; }# end sub do_eoc sub set_missing { $have_name = 0; # have routine name? $have_desc = 0; # have description? $have_intf = 0; # have interface? $have_hist = 0; # have revision history? $name_is = "UNKNOWN"; }# end sub set_missing sub check_if_all_there { $have_name || die "ProTeX: invalid prologue, missing !ROUTINE: or !IROUTINE: in <$name_is>"; $have_desc || die "ProTeX: invalid prologue, missing !DESCRIPTION: in <$name_is>"; $have_intf || die "ProTeX: invalid prologue, missing !INTERFACE: in <$name_is>"; $have_hist || die "ProTeX: invalid prologue, missing !REVISION HISTORY: in <$name_is>"; }# end sub check_if_all_there elk-7.2.42/src/PaxHeaders.21776/elk_silhouette.pdf0000644000000000000000000000013214061636516016436 xustar0030 mtime=1623670094.824102576 30 atime=1623670094.823102577 30 ctime=1623670094.824102576 elk-7.2.42/src/elk_silhouette.pdf0000644002504400250440000001426214061636516020500 0ustar00dewhurstdewhurst00000000000000%PDF-1.4 % 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xm[8rߵZ,ex <~yERӃF?̒(2/Iq\Qy1^i̳׫l%RgkIzY_:7uޯu^Y<ǫ|V^IS*:1_kVPzTt]gZ #s*3EIisjB,SsqT^LCsz֕_*JS ԫCTXx׼^ZS3KΖ<oX9Zgk'<)mι?{z$Eje{7j },Mmi1lX9,QfA#C4KosI9ize ߶KxKyR Y2w ))/9*W?̹e#KªD\3l;jz˓HZJҔ#4W}MyQGk_/$Xx Wsz2JQnEM6UqWWWG+z42ϢHP(02p+MHSkoĎ|3kr9"ٌ֬_9X"}NVɝ=M~yձ5R&|y/u`6cg &?WP(耟7ސ~M b[rj#[DԔ<l4Tܡyj?9uKh}17~!ǫ6R !_mٱIM_$uu/*xdKaao<~_Szl"$[~|nTcIM^QSr@:Vބe!vw4=>婸RܫLxD> cK]!Rf$] P@uHa=|nݱ>єY9#0$lvxC 4ȒA\N&,Rgİ\ `@ yI3ILU'1m}Nv|I+q;`H ~ 8Wd3I`p;A+7ac1^VHZ!L)ĭ 5+87ѼL<#ä IzEA%E"O硰wa(8[,Yk{}غ x43:Ү֬ܔ1c8hdRP0jx+B7z; c7,(48]v4ALCN=Gҝ%nDD2"#{tvV3"Z0w_s  Ylk?rnVHb+>O='r%z[BN+PF~}2JVOldӕZ 6Ӱ: Zwܜ_$I5/>c0:n=łH].T1;dXx @;L{D JƋ?n(+q3< b٫1vN;j4{"(Q3n(?'a3'!aϷdWGJ2~{7e :2U[-zT(xy@.p\?bRT-FZ 3U-=j2wрi ^47ܗ*kh{g6i_~)_`Q0IwhjoXeV2Dܮ])m8ptPBՄ}4hfS7F=j.P=$9(܏ ߱w 4uYn Ո}IN5ZTd䎧!xܮ]cv515f,|}4BٍNTYt^ڌ!5{]L&.E $Q?mG5nB!{oEOT6~Q洒`ޤ" 2L?|BB낫K{~SLE/VsCtwU+›ZGiҮk+,9F۶\fYl=AHA&!mmY`&lEN2_}h'0Yg's4+8!;-&5m \vVSsT>|#q}{46)NfD%ѰvNZIsN2B$EQQ &C\'oT希HZry1L^@_B^;A)$F0VSs^.P.F,/LRH%M/4@$wiOMH]TVt8.XЖZC Cu*~ ɯ@%o:ScRqN:腱ܚ= R40n&ViZm(q#=au勜>ؤ|QqYo)(ݔBHNvN x^8*;SЖ%d;IŐˉLwv!rw$#tFg2s)/0PYNDU[$S8';.tAnz L%9~t{%ĤrEN8wc>q-"H(뮾8R9C8@eyiseo3dP*Ã1G%z G22)n TkQ)Dv"E&sdKR,ɂj[AL{8ōj*+jU ^q$ZP3 .}UL&K&њ& :1`1%~fuƋF?o&r /Z.C|!ʗ?$?]o+A@t9{B4:8;1`qOhm1L@s&1nAMQ)>ǩ]`AYT}e펲3nwa/(uAh*bI:)P$Hϵ bƒs]{ zhS*"p%sRthbÇ.8nagX3tY*9p|om fO(9#=WݥOUiKn'|ܟ:\?2-wnle{1PUuBNQck24ɵf.ֻK6NeHt.fǞ)m%lIW ɩgy[Uh ڳVTxgZc5s8֭ FnmLƚj6i`W:jSIt765YhZظ[ןѴu63=>(ЁG%v"VLQD~py3l g$hkƍ>,~vexU@//,4J ֨Hi+A ;PE¿G׬-7O^74|aaTeƵɛ-"ƼbgnRt?OvM>xӰ[qزGp Ao?1+&`z8"e}qp7'˓Ywk#ngD}"e$QoyV{=~;paFʰS E9Ka{at3%Tcri(dV3oeD/tyd7FC8JCd18+;ǝE)&cM~7B5ƪO 3nW[E-oYh356V#o!2=&f~LJeo y2缻Ṝ*x =L?WS0ע I̶?3#7wXEnyL̨+=>y_^@҈:6[e r~¹88 7ZQOB04ǠQ|CMy-}njIwu0jƾ)(B?t-C0]*Q?]Hd)I6c\t=0}k#:b/Dw1׽_t)z] c>PL9Y5+M+?#iz퉜lQ%H2h,ƮK؁1Gݥ|aO>nײk<U"}/Gq>%RӧpW}As4tz˴$K kطFPBߨw* K[6q|Z}>}%Qs ;b~,h$fՕ[2aueҬt|wquQWʵ.w69Br\ }Qnp^U>qcwbyH)OH:Μ endstream endobj 4 0 obj 5438 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> >> endobj 5 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 818.336792 550.414001 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /CS /DeviceRGB >> /Resources 2 0 R >> endobj 1 0 obj << /Type /Pages /Kids [ 5 0 R ] /Count 1 >> endobj 6 0 obj << /Creator (cairo 1.8.8 (http://cairographics.org)) /Producer (cairo 1.8.8 (http://cairographics.org)) >> endobj 7 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 8 0000000000 65535 f 0000005838 00000 n 0000005552 00000 n 0000000015 00000 n 0000005529 00000 n 0000005624 00000 n 0000005903 00000 n 0000006028 00000 n trailer << /Size 8 /Root 7 0 R /Info 6 0 R >> startxref 6080 %%EOF elk-7.2.42/src/PaxHeaders.21776/rmspaces0000644000000000000000000000013214061636517014464 xustar0030 mtime=1623670095.957101525 30 atime=1623670095.956101526 30 ctime=1623670095.957101525 elk-7.2.42/src/rmspaces0000755002504400250440000000021114061636517016516 0ustar00dewhurstdewhurst00000000000000#!/bin/bash while [ "$*" != "" ] do echo $1 sed -i 's/[ \t]*$//' $1 sed -i ':a;/^[ \n]*$/{$d;N;ba}' $1 echo >> $1 shift done elk-7.2.42/src/PaxHeaders.21776/grepelk0000644000000000000000000000013214061636517014300 xustar0030 mtime=1623670095.958101524 30 atime=1623670095.958101524 30 ctime=1623670095.958101524 elk-7.2.42/src/grepelk0000755002504400250440000000064414061636517016344 0ustar00dewhurstdewhurst00000000000000#!/bin/bash echo echo "main code" grep "$@" *.f90 Makefile echo echo "spacegroup" grep "$@" spacegroup/*.f90 spacegroup/Makefile echo echo "eos" grep "$@" eos/*.f90 eos/Makefile echo echo "examples" grep -r "$@" ../examples/* echo echo "tests" grep -r "$@" ../tests/* echo echo "tests-libxc" grep -r "$@" ../tests-libxc/* echo echo "species" grep -r "$@" ../species/* echo echo "utilities" grep -r "$@" ../utilities/* elk-7.2.42/src/PaxHeaders.21776/vimelk0000644000000000000000000000013214061636517014136 xustar0030 mtime=1623670095.960101522 30 atime=1623670095.960101522 30 ctime=1623670095.960101522 elk-7.2.42/src/vimelk0000755002504400250440000000213614061636517016200 0ustar00dewhurstdewhurst00000000000000#!/bin/bash if [ "$1" == "-d" ]; then rm -f ~/.vim/ftdetect/elk.vim rm -f ~/.vim/syntax/elk.vim echo echo "Syntax highlighting disabled for vim." echo exit fi rm -f elk.vim echo > elk.vim echo 'syn match elkComment "!.*$"' >> elk.vim echo 'syn match elkComment ":.*$"' >> elk.vim grep "case('" readinput.f90 | cut -d "'" -f2 | grep -v '^$' > vimelk.temp grep "case('" readinput.f90 | cut -d "'" -f4 | grep -v '^$' >> vimelk.temp grep "case('" readinput.f90 | cut -d "'" -f6 | grep -v '^$' >> vimelk.temp grep "case('" readinput.f90 | cut -d "'" -f8 | grep -v '^$' >> vimelk.temp awk '{print "syn match elkBlock '\''"$1"'\''";}' vimelk.temp >> elk.vim rm vimelk.temp echo >> elk.vim echo 'colorscheme zellner' >> elk.vim echo >> elk.vim echo 'hi link elkComment Comment' >> elk.vim echo 'hi link elkBlock Identifier' >> elk.vim mkdir -p ~/.vim/ftdetect mkdir -p ~/.vim/syntax echo "au BufRead,BufNewFile elk.in set filetype=elk" > ~/.vim/ftdetect/elk.vim mv elk.vim ~/.vim/syntax echo echo "Syntax highlighting enabled for vim." echo echo "To disable highlighting type:" echo " ./vimelk -d" echo elk-7.2.42/src/PaxHeaders.21776/omp_stub.f900000644000000000000000000000013214061636517015074 xustar0030 mtime=1623670095.969101514 30 atime=1623670095.969101514 30 ctime=1623670095.969101514 elk-7.2.42/src/omp_stub.f900000644002504400250440000000312314061636517017130 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2015 J. K. Dewhurst, S. Sharma and E. K. U. Gross. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. ! Stub routines for OpenMP. integer function omp_get_num_procs() implicit none omp_get_num_procs=1 end function integer function omp_get_max_threads() implicit none omp_get_max_threads=1 end function integer function omp_get_num_threads() implicit none omp_get_num_threads=1 end function integer function omp_get_thread_num() implicit none omp_get_thread_num=0 end function integer function omp_get_max_active_levels() implicit none omp_get_max_active_levels=1 end function logical function omp_get_dynamic() implicit none omp_get_dynamic=.false. end function integer function omp_get_level() implicit none omp_get_level=0 end function subroutine omp_set_num_threads(num_threads) implicit none integer, intent(in) :: num_threads end subroutine subroutine omp_set_nested(nested) implicit none logical, intent(in) :: nested end subroutine subroutine omp_set_max_active_levels(max_levels) implicit none integer, intent(in) :: max_levels end subroutine subroutine omp_set_dynamic(dynamic) implicit none logical, intent(in) :: dynamic end subroutine subroutine omp_init_lock(lock) implicit none integer(8), intent(in) :: lock end subroutine subroutine omp_destroy_lock(lock) implicit none integer(8), intent(in) :: lock end subroutine subroutine omp_set_lock(lock) implicit none integer(8), intent(in) :: lock end subroutine subroutine omp_unset_lock(lock) implicit none integer(8), intent(in) :: lock end subroutine elk-7.2.42/src/PaxHeaders.21776/libxcf90.f900000644000000000000000000000012614061636517014667 xustar0028 mtime=1623670095.9831015 30 atime=1623670095.982101502 28 ctime=1623670095.9831015 elk-7.2.42/src/libxcf90.f900000644002504400250440000036171314061636517016734 0ustar00dewhurstdewhurst00000000000000!! Copyright (C) 2016 Micael Oliveira !! 2020 Susi Lehtola !! All rights reserved. !! !! This Source Code Form is subject to the terms of the Mozilla Public !! License, v. 2.0. If a copy of the MPL was not distributed with this !! file, You can obtain one at mozilla.org/MPL/2.0/. module xc_f90_lib_m use, intrinsic :: iso_c_binding implicit none private public :: & ! version xc_f90_version, & xc_f90_version_string, & ! literature reference xc_f90_reference, & xc_f90_reference_doi, & ! func_info xc_f90_func_info_t, & xc_f90_func_info_get_number, & xc_f90_func_info_get_kind, & xc_f90_func_info_get_name, & xc_f90_func_info_get_family, & xc_f90_func_info_get_references, & xc_f90_func_info_get_flags, & xc_f90_func_info_get_n_ext_params, & xc_f90_func_info_get_ext_params_name, & xc_f90_func_info_get_ext_params_description, & xc_f90_func_info_get_ext_params_default_value, & ! func_reference xc_f90_func_reference_t, & xc_f90_func_reference_get_ref, & xc_f90_func_reference_get_doi, & xc_f90_func_reference_get_bibtex, & ! func xc_f90_func_t, & xc_f90_func_init, & xc_f90_func_end, & xc_f90_func_get_info, & xc_f90_functional_get_name, & xc_f90_functional_get_number, & xc_f90_family_from_id, & xc_f90_number_of_functionals, & xc_f90_maximum_name_length, & xc_f90_available_functional_numbers, & xc_f90_available_functional_names, & xc_f90_func_set_dens_threshold, & xc_f90_func_set_zeta_threshold, & xc_f90_func_set_sigma_threshold, & xc_f90_func_set_tau_threshold, & xc_f90_func_set_ext_params, & xc_f90_func_set_ext_params_name, & ! lda xc_f90_lda, & xc_f90_lda_exc, & xc_f90_lda_exc_vxc, & xc_f90_lda_exc_vxc_fxc, & xc_f90_lda_exc_vxc_fxc_kxc, & xc_f90_lda_vxc, & xc_f90_lda_vxc_fxc, & xc_f90_lda_vxc_fxc_kxc, & xc_f90_lda_fxc, & xc_f90_lda_kxc, & xc_f90_lda_lxc, & ! gga xc_f90_gga, & xc_f90_gga_exc, & xc_f90_gga_exc_vxc, & xc_f90_gga_exc_vxc_fxc, & xc_f90_gga_exc_vxc_fxc_kxc, & xc_f90_gga_vxc, & xc_f90_gga_vxc_fxc, & xc_f90_gga_vxc_fxc_kxc, & xc_f90_gga_fxc, & xc_f90_gga_kxc, & xc_f90_gga_lxc, & xc_f90_gga_ak13_get_asymptotic, & xc_f90_hyb_exx_coef, & xc_f90_hyb_cam_coef, & xc_f90_nlc_coef, & ! mgga xc_f90_mgga, & xc_f90_mgga_exc, & xc_f90_mgga_exc_vxc, & xc_f90_mgga_exc_vxc_fxc, & xc_f90_mgga_exc_vxc_fxc_kxc, & xc_f90_mgga_vxc, & xc_f90_mgga_vxc_fxc, & xc_f90_mgga_vxc_fxc_kxc, & xc_f90_mgga_fxc, & xc_f90_mgga_kxc, & xc_f90_mgga_lxc integer(c_int), parameter, public :: & XC_UNPOLARIZED = 1, & ! Spin unpolarized XC_POLARIZED = 2 ! Spin polarized integer(c_int), parameter, public :: & XC_NON_RELATIVISTIC = 0, & ! Functional includes or not relativistic XC_RELATIVISTIC = 1 ! corrections. Only available in some functionals. ! Kinds integer(c_int), parameter, public :: & XC_EXCHANGE = 0, & XC_CORRELATION = 1, & XC_EXCHANGE_CORRELATION = 2, & XC_KINETIC = 3 ! Families of xc functionals integer(c_int), parameter, public :: & XC_FAMILY_UNKNOWN = -1, & XC_FAMILY_NONE = 0, & XC_FAMILY_LDA = 1, & XC_FAMILY_GGA = 2, & XC_FAMILY_MGGA = 4, & XC_FAMILY_LCA = 8, & XC_FAMILY_OEP = 16, & XC_FAMILY_HYB_GGA = 32, & XC_FAMILY_HYB_MGGA = 64, & XC_FAMILY_HYB_LDA = 128 integer(c_int), parameter, public :: & XC_FLAGS_HAVE_EXC = 1, & XC_FLAGS_HAVE_VXC = 2, & XC_FLAGS_HAVE_FXC = 4, & XC_FLAGS_HAVE_KXC = 8, & XC_FLAGS_HAVE_LXC = 16, & XC_FLAGS_HAVE_ALL = 31, & ! The most common case XC_FLAGS_1D = 32, & XC_FLAGS_2D = 64, & XC_FLAGS_3D = 128, & XC_FLAGS_HYB_CAM = 256, & XC_FLAGS_HYB_CAMY = 512, & XC_FLAGS_VV10 = 1024, & XC_FLAGS_HYB_LC = 2048, & XC_FLAGS_HYB_LCY = 4096, & XC_FLAGS_STABLE = 8192, & XC_FLAGS_DEVELOPMENT = 16384, & XC_FLAGS_NEEDS_LAPLACIAN = 32768 integer(c_int), parameter, public :: & XC_TAU_EXPLICIT = 0, & XC_TAU_EXPANSION = 1 integer(c_int), parameter, public :: & XC_MAX_REFERENCES = 5 ! List of functionals integer(c_int), parameter, public :: XC_HYB_LDA_XC_LDA0 = 177 ! LDA0: hybrid LDA exchange integer(c_int), parameter, public :: XC_HYB_LDA_XC_CAM_LDA0 = 178 ! CAM version of LDA0 integer(c_int), parameter, public :: XC_LDA_X = 1 ! Exchange integer(c_int), parameter, public :: XC_LDA_C_WIGNER = 2 ! Wigner parametrization integer(c_int), parameter, public :: XC_LDA_C_RPA = 3 ! Random Phase Approximation integer(c_int), parameter, public :: XC_LDA_C_HL = 4 ! Hedin & Lundqvist integer(c_int), parameter, public :: XC_LDA_C_GL = 5 ! Gunnarson & Lundqvist integer(c_int), parameter, public :: XC_LDA_C_XALPHA = 6 ! Slater Xalpha integer(c_int), parameter, public :: XC_LDA_C_VWN = 7 ! Vosko, Wilk, & Nusair (5) integer(c_int), parameter, public :: XC_LDA_C_VWN_RPA = 8 ! Vosko, Wilk, & Nusair (RPA) integer(c_int), parameter, public :: XC_LDA_C_PZ = 9 ! Perdew & Zunger integer(c_int), parameter, public :: XC_LDA_C_PZ_MOD = 10 ! Perdew & Zunger (Modified) integer(c_int), parameter, public :: XC_LDA_C_OB_PZ = 11 ! Ortiz & Ballone (PZ) integer(c_int), parameter, public :: XC_LDA_C_PW = 12 ! Perdew & Wang integer(c_int), parameter, public :: XC_LDA_C_PW_MOD = 13 ! Perdew & Wang (Modified) integer(c_int), parameter, public :: XC_LDA_C_OB_PW = 14 ! Ortiz & Ballone (PW) integer(c_int), parameter, public :: XC_LDA_C_2D_AMGB = 15 ! Attaccalite et al integer(c_int), parameter, public :: XC_LDA_C_2D_PRM = 16 ! Pittalis, Rasanen & Marques correlation in 2D integer(c_int), parameter, public :: XC_LDA_C_VBH = 17 ! von Barth & Hedin integer(c_int), parameter, public :: XC_LDA_C_1D_CSC = 18 ! Casula, Sorella, and Senatore 1D correlation integer(c_int), parameter, public :: XC_LDA_X_2D = 19 ! Exchange in 2D integer(c_int), parameter, public :: XC_LDA_XC_TETER93 = 20 ! Teter 93 parametrization integer(c_int), parameter, public :: XC_LDA_X_1D_SOFT = 21 ! Exchange in 1D for a soft-Coulomb interaction integer(c_int), parameter, public :: XC_LDA_C_ML1 = 22 ! Modified LSD (version 1) of Proynov and Salahub integer(c_int), parameter, public :: XC_LDA_C_ML2 = 23 ! Modified LSD (version 2) of Proynov and Salahub integer(c_int), parameter, public :: XC_LDA_C_GOMBAS = 24 ! Gombas parametrization integer(c_int), parameter, public :: XC_LDA_C_PW_RPA = 25 ! Perdew & Wang fit of the RPA integer(c_int), parameter, public :: XC_LDA_C_1D_LOOS = 26 ! P-F Loos correlation LDA integer(c_int), parameter, public :: XC_LDA_C_RC04 = 27 ! Ragot-Cortona integer(c_int), parameter, public :: XC_LDA_C_VWN_1 = 28 ! Vosko, Wilk, & Nusair (1) integer(c_int), parameter, public :: XC_LDA_C_VWN_2 = 29 ! Vosko, Wilk, & Nusair (2) integer(c_int), parameter, public :: XC_LDA_C_VWN_3 = 30 ! Vosko, Wilk, & Nusair (3) integer(c_int), parameter, public :: XC_LDA_C_VWN_4 = 31 ! Vosko, Wilk, & Nusair (4) integer(c_int), parameter, public :: XC_LDA_XC_ZLP = 43 ! Zhao, Levy & Parr, Eq. (20) integer(c_int), parameter, public :: XC_LDA_K_TF = 50 ! Thomas-Fermi kinetic energy functional integer(c_int), parameter, public :: XC_LDA_K_LP = 51 ! Lee and Parr Gaussian ansatz integer(c_int), parameter, public :: XC_LDA_XC_KSDT = 259 ! Karasiev et al. parametrization integer(c_int), parameter, public :: XC_LDA_C_CHACHIYO = 287 ! Chachiyo simple 2 parameter correlation integer(c_int), parameter, public :: XC_LDA_C_LP96 = 289 ! Liu-Parr correlation integer(c_int), parameter, public :: XC_LDA_C_CHACHIYO_MOD = 307 ! Chachiyo simple 2 parameter correlation with modified scaling integer(c_int), parameter, public :: XC_LDA_C_KARASIEV_MOD = 308 ! Karasiev reparameterization of Chachiyo with modified scaling integer(c_int), parameter, public :: XC_LDA_X_REL = 532 ! Relativistic exchange integer(c_int), parameter, public :: XC_LDA_XC_1D_EHWLRG_1 = 536 ! LDA constructed from slab-like systems of 1 electron integer(c_int), parameter, public :: XC_LDA_XC_1D_EHWLRG_2 = 537 ! LDA constructed from slab-like systems of 2 electrons integer(c_int), parameter, public :: XC_LDA_XC_1D_EHWLRG_3 = 538 ! LDA constructed from slab-like systems of 3 electrons integer(c_int), parameter, public :: XC_LDA_X_ERF = 546 ! Attenuated exchange LDA (erf) integer(c_int), parameter, public :: XC_LDA_XC_LP_A = 547 ! Lee-Parr reparametrization A integer(c_int), parameter, public :: XC_LDA_XC_LP_B = 548 ! Lee-Parr reparametrization B integer(c_int), parameter, public :: XC_LDA_X_RAE = 549 ! Rae self-energy corrected exchange integer(c_int), parameter, public :: XC_LDA_K_ZLP = 550 ! kinetic energy version of ZLP integer(c_int), parameter, public :: XC_LDA_C_MCWEENY = 551 ! McWeeny 76 integer(c_int), parameter, public :: XC_LDA_C_BR78 = 552 ! Brual & Rothstein 78 integer(c_int), parameter, public :: XC_LDA_C_PK09 = 554 ! Proynov and Kong 2009 integer(c_int), parameter, public :: XC_LDA_C_OW_LYP = 573 ! Wigner with corresponding LYP parameters integer(c_int), parameter, public :: XC_LDA_C_OW = 574 ! Optimized Wigner integer(c_int), parameter, public :: XC_LDA_XC_GDSMFB = 577 ! Groth et al. parametrization integer(c_int), parameter, public :: XC_LDA_C_GK72 = 578 ! Gordon and Kim 1972 integer(c_int), parameter, public :: XC_LDA_C_KARASIEV = 579 ! Karasiev reparameterization of Chachiyo integer(c_int), parameter, public :: XC_LDA_K_LP96 = 580 ! Liu-Parr kinetic integer(c_int), parameter, public :: XC_LDA_XC_BN05 = 588 ! Baer and Neuhauser, gamma=1 integer(c_int), parameter, public :: XC_LDA_C_PMGB06 = 590 ! Long-range LDA correlation functional integer(c_int), parameter, public :: XC_LDA_XC_TIH = 599 ! Neural network LDA from Tozer et al integer(c_int), parameter, public :: XC_LDA_X_1D_EXPONENTIAL = 600 ! Exchange in 1D for an exponentially screened interaction integer(c_int), parameter, public :: XC_LDA_C_UPW92 = 683 ! Ruggeri, Rios, and Alavi unrestricted fit integer(c_int), parameter, public :: XC_LDA_C_RPW92 = 684 ! Ruggeri, Rios, and Alavi restricted fit integer(c_int), parameter, public :: XC_LDA_X_SLOC = 692 ! simple local model for Slater potential integer(c_int), parameter, public :: XC_HYB_GGA_X_N12_SX = 81 ! N12-SX functional from Minnesota integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97_1P = 266 ! version of B97 by Cohen and Handy integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBE_MOL0 = 273 ! PBEmol0 integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBE_SOL0 = 274 ! PBEsol0 integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBEB0 = 275 ! PBEbeta0 integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBE_MOLB0 = 276 ! PBEmolbeta0 integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBE50 = 290 ! PBE0 with 50% exx integer(c_int), parameter, public :: XC_HYB_GGA_XC_HFLYP = 314 ! Hartree-Fock + LYP correlation integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_O3LYP = 395 ! range separated hybrid based on the optx functional integer(c_int), parameter, public :: XC_HYB_GGA_XC_WB97X_D3 = 399 ! Lin et al integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_BLYP = 400 ! Long-range corrected BLYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3PW91 = 401 ! The original (ACM) hybrid of Becke integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3LYP = 402 ! The (in)famous B3LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3P86 = 403 ! Perdew 86 hybrid similar to B3PW91 integer(c_int), parameter, public :: XC_HYB_GGA_XC_O3LYP = 404 ! hybrid using the optx functional integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW1K = 405 ! mixture of mPW91 and PW91 optimized for kinetics integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBEH = 406 ! aka PBE0 or PBE1PBE integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97 = 407 ! Becke 97 integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97_1 = 408 ! Becke 97-1 integer(c_int), parameter, public :: XC_HYB_GGA_XC_APF = 409 ! APF hybrid density functional integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97_2 = 410 ! Becke 97-2 integer(c_int), parameter, public :: XC_HYB_GGA_XC_X3LYP = 411 ! hybrid by Xu and Goddard integer(c_int), parameter, public :: XC_HYB_GGA_XC_B1WC = 412 ! Becke 1-parameter mixture of WC and PBE integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97_K = 413 ! Boese-Martin for Kinetics integer(c_int), parameter, public :: XC_HYB_GGA_XC_B97_3 = 414 ! Becke 97-3 integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW3PW = 415 ! mixture with the mPW functional integer(c_int), parameter, public :: XC_HYB_GGA_XC_B1LYP = 416 ! Becke 1-parameter mixture of B88 and LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_B1PW91 = 417 ! Becke 1-parameter mixture of B88 and PW91 integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW1PW = 418 ! Becke 1-parameter mixture of mPW91 and PW91 integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW3LYP = 419 ! mixture of mPW and LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_1A = 420 ! Schmider-Becke 98 parameterization 1a integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_1B = 421 ! Schmider-Becke 98 parameterization 1b integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_1C = 422 ! Schmider-Becke 98 parameterization 1c integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_2A = 423 ! Schmider-Becke 98 parameterization 2a integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_2B = 424 ! Schmider-Becke 98 parameterization 2b integer(c_int), parameter, public :: XC_HYB_GGA_XC_SB98_2C = 425 ! Schmider-Becke 98 parameterization 2c integer(c_int), parameter, public :: XC_HYB_GGA_X_SOGGA11_X = 426 ! Hybrid based on SOGGA11 form integer(c_int), parameter, public :: XC_HYB_GGA_XC_HSE03 = 427 ! the 2003 version of the screened hybrid HSE integer(c_int), parameter, public :: XC_HYB_GGA_XC_HSE06 = 428 ! the 2006 version of the screened hybrid HSE integer(c_int), parameter, public :: XC_HYB_GGA_XC_HJS_PBE = 429 ! HJS hybrid screened exchange PBE version integer(c_int), parameter, public :: XC_HYB_GGA_XC_HJS_PBE_SOL = 430 ! HJS hybrid screened exchange PBE_SOL version integer(c_int), parameter, public :: XC_HYB_GGA_XC_HJS_B88 = 431 ! HJS hybrid screened exchange B88 version integer(c_int), parameter, public :: XC_HYB_GGA_XC_HJS_B97X = 432 ! HJS hybrid screened exchange B97x version integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_B3LYP = 433 ! CAM version of B3LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_TUNED_CAM_B3LYP = 434 ! CAM version of B3LYP tuned for excitations integer(c_int), parameter, public :: XC_HYB_GGA_XC_BHANDH = 435 ! Becke half-and-half or BHLYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_BHANDHLYP = 436 ! Becke half-and-half with B88 exchange integer(c_int), parameter, public :: XC_HYB_GGA_XC_MB3LYP_RC04 = 437 ! B3LYP with RC04 LDA integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPWLYP1M = 453 ! MPW with 1 par. for metals/LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_REVB3LYP = 454 ! Revised B3LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAMY_BLYP = 455 ! BLYP with yukawa screening integer(c_int), parameter, public :: XC_HYB_GGA_XC_PBE0_13 = 456 ! PBE0-1/3 integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3LYPS = 459 ! B3LYP* functional integer(c_int), parameter, public :: XC_HYB_GGA_XC_QTP17 = 460 ! global hybrid for vertical ionization potentials integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3LYP_MCM1 = 461 ! B3LYP reoptimized in 6-31+G(2df,p) for enthalpies of formation integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3LYP_MCM2 = 462 ! B3LYP reoptimized in 6-31+G(2df,p) for enthalpies of formation integer(c_int), parameter, public :: XC_HYB_GGA_XC_WB97 = 463 ! Chai and Head-Gordon integer(c_int), parameter, public :: XC_HYB_GGA_XC_WB97X = 464 ! Chai and Head-Gordon integer(c_int), parameter, public :: XC_HYB_GGA_XC_LRC_WPBEH = 465 ! Long-range corrected functional by Rorhdanz et al integer(c_int), parameter, public :: XC_HYB_GGA_XC_WB97X_V = 466 ! Mardirossian and Head-Gordon integer(c_int), parameter, public :: XC_HYB_GGA_XC_LCY_PBE = 467 ! PBE with yukawa screening integer(c_int), parameter, public :: XC_HYB_GGA_XC_LCY_BLYP = 468 ! BLYP with yukawa screening integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_VV10 = 469 ! Vydrov and Van Voorhis integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAMY_B3LYP = 470 ! B3LYP with Yukawa screening integer(c_int), parameter, public :: XC_HYB_GGA_XC_WB97X_D = 471 ! Chai and Head-Gordon integer(c_int), parameter, public :: XC_HYB_GGA_XC_HPBEINT = 472 ! hPBEint integer(c_int), parameter, public :: XC_HYB_GGA_XC_LRC_WPBE = 473 ! Long-range corrected functional by Rorhdanz et al integer(c_int), parameter, public :: XC_HYB_GGA_XC_B3LYP5 = 475 ! B3LYP with VWN functional 5 instead of RPA integer(c_int), parameter, public :: XC_HYB_GGA_XC_EDF2 = 476 ! Empirical functional from Lin, George and Gill integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAP0 = 477 ! Correct Asymptotic Potential hybrid integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_WPBE = 478 ! Long-range corrected functional by Vydrov and Scuseria integer(c_int), parameter, public :: XC_HYB_GGA_XC_HSE12 = 479 ! HSE12 by Moussa, Schultz and Chelikowsky integer(c_int), parameter, public :: XC_HYB_GGA_XC_HSE12S = 480 ! Short-range HSE12 by Moussa, Schultz, and Chelikowsky integer(c_int), parameter, public :: XC_HYB_GGA_XC_HSE_SOL = 481 ! HSEsol functional by Schimka, Harl, and Kresse integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_QTP_01 = 482 ! CAM-QTP-01 integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW1LYP = 483 ! Becke 1-parameter mixture of mPW91 and LYP integer(c_int), parameter, public :: XC_HYB_GGA_XC_MPW1PBE = 484 ! Becke 1-parameter mixture of mPW91 and PBE integer(c_int), parameter, public :: XC_HYB_GGA_XC_KMLYP = 485 ! Kang-Musgrave hybrid integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_WPBE_WHS = 486 ! Long-range corrected functional by Weintraub, Henderson and Scuseria integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_WPBEH_WHS = 487 ! Long-range corrected functional by Weintraub, Henderson and Scuseria integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_WPBE08_WHS = 488 ! Long-range corrected functional by Weintraub, Henderson and Scuseria integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_WPBESOL_WHS = 489 ! Long-range corrected functional by Weintraub, Henderson and Scuseria integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_QTP_00 = 490 ! CAM-QTP-00 integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_QTP_02 = 491 ! CAM-QTP-02 integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_QTP = 492 ! LC-QTP integer(c_int), parameter, public :: XC_HYB_GGA_X_S12H = 496 ! Swart 2012 GGA hybrid exchange integer(c_int), parameter, public :: XC_HYB_GGA_XC_BLYP35 = 499 ! Becke 1-parameter mixture for mixed-valence systems integer(c_int), parameter, public :: XC_HYB_GGA_XC_B5050LYP = 572 ! Like B3LYP but more exact exchange integer(c_int), parameter, public :: XC_HYB_GGA_XC_APBE0 = 607 ! Hybrid based on APBE integer(c_int), parameter, public :: XC_HYB_GGA_XC_HAPBE = 608 ! Hybrid based in APBE and zvPBEloc integer(c_int), parameter, public :: XC_HYB_GGA_XC_RCAM_B3LYP = 610 ! Similar to CAM-B3LYP, but trying to reduce the many-electron self-interaction integer(c_int), parameter, public :: XC_HYB_GGA_XC_WC04 = 611 ! hybrid fitted to carbon NMR shifts integer(c_int), parameter, public :: XC_HYB_GGA_XC_WP04 = 612 ! hybrid fitted to proton NMR shifts integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAMH_B3LYP = 614 ! CAM version of B3LYP tuned for tddft integer(c_int), parameter, public :: XC_HYB_GGA_XC_WHPBE0 = 615 ! Long-range corrected functional by Shao et al integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_BOP = 636 ! Long-range corrected B88 with B88OP correlation integer(c_int), parameter, public :: XC_HYB_GGA_XC_LC_PBEOP = 637 ! Long-range corrected PBE with PBEOP correlation integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAM_PBEH = 681 ! CAM version of PBEH integer(c_int), parameter, public :: XC_HYB_GGA_XC_CAMY_PBEH = 682 ! PBEH with Yukawa screening integer(c_int), parameter, public :: XC_GGA_X_GAM = 32 ! GAM functional from Minnesota integer(c_int), parameter, public :: XC_GGA_C_GAM = 33 ! GAM functional from Minnesota integer(c_int), parameter, public :: XC_GGA_X_HCTH_A = 34 ! HCTH-A integer(c_int), parameter, public :: XC_GGA_X_EV93 = 35 ! Engel and Vosko integer(c_int), parameter, public :: XC_GGA_X_BCGP = 38 ! Burke, Cancio, Gould, and Pittalis integer(c_int), parameter, public :: XC_GGA_C_ACGGA = 39 ! acGGA, asymptotically corrected GGA integer(c_int), parameter, public :: XC_GGA_X_LAMBDA_OC2_N = 40 ! lambda_OC2(N) version of PBE integer(c_int), parameter, public :: XC_GGA_X_B86_R = 41 ! Revised Becke 86 Xalpha,beta,gamma (with mod. grad. correction) integer(c_int), parameter, public :: XC_GGA_X_LAMBDA_CH_N = 44 ! lambda_CH(N) version of PBE integer(c_int), parameter, public :: XC_GGA_X_LAMBDA_LO_N = 45 ! lambda_LO(N) version of PBE integer(c_int), parameter, public :: XC_GGA_X_HJS_B88_V2 = 46 ! HJS screened exchange corrected B88 version integer(c_int), parameter, public :: XC_GGA_C_Q2D = 47 ! Chiodo et al integer(c_int), parameter, public :: XC_GGA_X_Q2D = 48 ! Chiodo et al integer(c_int), parameter, public :: XC_GGA_X_PBE_MOL = 49 ! Del Campo, Gazquez, Trickey and Vela (PBE-like) integer(c_int), parameter, public :: XC_GGA_K_TFVW = 52 ! Thomas-Fermi plus von Weiszaecker correction integer(c_int), parameter, public :: XC_GGA_K_REVAPBEINT = 53 ! interpolated version of REVAPBE integer(c_int), parameter, public :: XC_GGA_K_APBEINT = 54 ! interpolated version of APBE integer(c_int), parameter, public :: XC_GGA_K_REVAPBE = 55 ! revised APBE integer(c_int), parameter, public :: XC_GGA_X_AK13 = 56 ! Armiento & Kuemmel 2013 integer(c_int), parameter, public :: XC_GGA_K_MEYER = 57 ! Meyer, Wang, and Young integer(c_int), parameter, public :: XC_GGA_X_LV_RPW86 = 58 ! Berland and Hyldgaard integer(c_int), parameter, public :: XC_GGA_X_PBE_TCA = 59 ! PBE revised by Tognetti et al integer(c_int), parameter, public :: XC_GGA_X_PBEINT = 60 ! PBE for hybrid interfaces integer(c_int), parameter, public :: XC_GGA_C_ZPBEINT = 61 ! spin-dependent gradient correction to PBEint integer(c_int), parameter, public :: XC_GGA_C_PBEINT = 62 ! PBE for hybrid interfaces integer(c_int), parameter, public :: XC_GGA_C_ZPBESOL = 63 ! spin-dependent gradient correction to PBEsol integer(c_int), parameter, public :: XC_GGA_XC_OPBE_D = 65 ! oPBE_D functional of Goerigk and Grimme integer(c_int), parameter, public :: XC_GGA_XC_OPWLYP_D = 66 ! oPWLYP-D functional of Goerigk and Grimme integer(c_int), parameter, public :: XC_GGA_XC_OBLYP_D = 67 ! oBLYP-D functional of Goerigk and Grimme integer(c_int), parameter, public :: XC_GGA_X_VMT84_GE = 68 ! VMT{8,4} with constraint satisfaction with mu = mu_GE integer(c_int), parameter, public :: XC_GGA_X_VMT84_PBE = 69 ! VMT{8,4} with constraint satisfaction with mu = mu_PBE integer(c_int), parameter, public :: XC_GGA_X_VMT_GE = 70 ! Vela, Medel, and Trickey with mu = mu_GE integer(c_int), parameter, public :: XC_GGA_X_VMT_PBE = 71 ! Vela, Medel, and Trickey with mu = mu_PBE integer(c_int), parameter, public :: XC_GGA_C_N12_SX = 79 ! N12-SX functional from Minnesota integer(c_int), parameter, public :: XC_GGA_C_N12 = 80 ! N12 functional from Minnesota integer(c_int), parameter, public :: XC_GGA_X_N12 = 82 ! N12 functional from Minnesota integer(c_int), parameter, public :: XC_GGA_C_REGTPSS = 83 ! Regularized TPSS correlation (ex-VPBE) integer(c_int), parameter, public :: XC_GGA_C_OP_XALPHA = 84 ! one-parameter progressive functional (XALPHA version) integer(c_int), parameter, public :: XC_GGA_C_OP_G96 = 85 ! one-parameter progressive functional (G96 version) integer(c_int), parameter, public :: XC_GGA_C_OP_PBE = 86 ! one-parameter progressive functional (PBE version) integer(c_int), parameter, public :: XC_GGA_C_OP_B88 = 87 ! one-parameter progressive functional (B88 version) integer(c_int), parameter, public :: XC_GGA_C_FT97 = 88 ! Filatov & Thiel correlation integer(c_int), parameter, public :: XC_GGA_C_SPBE = 89 ! PBE correlation to be used with the SSB exchange integer(c_int), parameter, public :: XC_GGA_X_SSB_SW = 90 ! Swart, Sola and Bickelhaupt correction to PBE integer(c_int), parameter, public :: XC_GGA_X_SSB = 91 ! Swart, Sola and Bickelhaupt integer(c_int), parameter, public :: XC_GGA_X_SSB_D = 92 ! Swart, Sola and Bickelhaupt dispersion integer(c_int), parameter, public :: XC_GGA_XC_HCTH_407P = 93 ! HCTH/407+ integer(c_int), parameter, public :: XC_GGA_XC_HCTH_P76 = 94 ! HCTH p=7/6 integer(c_int), parameter, public :: XC_GGA_XC_HCTH_P14 = 95 ! HCTH p=1/4 integer(c_int), parameter, public :: XC_GGA_XC_B97_GGA1 = 96 ! Becke 97 GGA-1 integer(c_int), parameter, public :: XC_GGA_C_HCTH_A = 97 ! HCTH-A integer(c_int), parameter, public :: XC_GGA_X_BPCCAC = 98 ! BPCCAC (GRAC for the energy) integer(c_int), parameter, public :: XC_GGA_C_REVTCA = 99 ! Tognetti, Cortona, Adamo (revised) integer(c_int), parameter, public :: XC_GGA_C_TCA = 100 ! Tognetti, Cortona, Adamo integer(c_int), parameter, public :: XC_GGA_X_PBE = 101 ! Perdew, Burke & Ernzerhof exchange integer(c_int), parameter, public :: XC_GGA_X_PBE_R = 102 ! Perdew, Burke & Ernzerhof exchange (revised) integer(c_int), parameter, public :: XC_GGA_X_B86 = 103 ! Becke 86 Xalpha,beta,gamma integer(c_int), parameter, public :: XC_GGA_X_HERMAN = 104 ! Herman et al original GGA integer(c_int), parameter, public :: XC_GGA_X_B86_MGC = 105 ! Becke 86 Xalpha,beta,gamma (with mod. grad. correction) integer(c_int), parameter, public :: XC_GGA_X_B88 = 106 ! Becke 88 integer(c_int), parameter, public :: XC_GGA_X_G96 = 107 ! Gill 96 integer(c_int), parameter, public :: XC_GGA_X_PW86 = 108 ! Perdew & Wang 86 integer(c_int), parameter, public :: XC_GGA_X_PW91 = 109 ! Perdew & Wang 91 integer(c_int), parameter, public :: XC_GGA_X_OPTX = 110 ! Handy & Cohen OPTX 01 integer(c_int), parameter, public :: XC_GGA_X_DK87_R1 = 111 ! dePristo & Kress 87 (version R1) integer(c_int), parameter, public :: XC_GGA_X_DK87_R2 = 112 ! dePristo & Kress 87 (version R2) integer(c_int), parameter, public :: XC_GGA_X_LG93 = 113 ! Lacks & Gordon 93 integer(c_int), parameter, public :: XC_GGA_X_FT97_A = 114 ! Filatov & Thiel 97 (version A) integer(c_int), parameter, public :: XC_GGA_X_FT97_B = 115 ! Filatov & Thiel 97 (version B) integer(c_int), parameter, public :: XC_GGA_X_PBE_SOL = 116 ! Perdew, Burke & Ernzerhof exchange (solids) integer(c_int), parameter, public :: XC_GGA_X_RPBE = 117 ! Hammer, Hansen & Norskov (PBE-like) integer(c_int), parameter, public :: XC_GGA_X_WC = 118 ! Wu & Cohen integer(c_int), parameter, public :: XC_GGA_X_MPW91 = 119 ! Modified form of PW91 by Adamo & Barone integer(c_int), parameter, public :: XC_GGA_X_AM05 = 120 ! Armiento & Mattsson 05 exchange integer(c_int), parameter, public :: XC_GGA_X_PBEA = 121 ! Madsen (PBE-like) integer(c_int), parameter, public :: XC_GGA_X_MPBE = 122 ! Adamo & Barone modification to PBE integer(c_int), parameter, public :: XC_GGA_X_XPBE = 123 ! xPBE reparametrization by Xu & Goddard integer(c_int), parameter, public :: XC_GGA_X_2D_B86_MGC = 124 ! Becke 86 MGC for 2D systems integer(c_int), parameter, public :: XC_GGA_X_BAYESIAN = 125 ! Bayesian best fit for the enhancement factor integer(c_int), parameter, public :: XC_GGA_X_PBE_JSJR = 126 ! JSJR reparametrization by Pedroza, Silva & Capelle integer(c_int), parameter, public :: XC_GGA_X_2D_B88 = 127 ! Becke 88 in 2D integer(c_int), parameter, public :: XC_GGA_X_2D_B86 = 128 ! Becke 86 Xalpha, beta, gamma integer(c_int), parameter, public :: XC_GGA_X_2D_PBE = 129 ! Perdew, Burke & Ernzerhof exchange in 2D integer(c_int), parameter, public :: XC_GGA_C_PBE = 130 ! Perdew, Burke & Ernzerhof correlation integer(c_int), parameter, public :: XC_GGA_C_LYP = 131 ! Lee, Yang & Parr integer(c_int), parameter, public :: XC_GGA_C_P86 = 132 ! Perdew 86 integer(c_int), parameter, public :: XC_GGA_C_PBE_SOL = 133 ! Perdew, Burke & Ernzerhof correlation SOL integer(c_int), parameter, public :: XC_GGA_C_PW91 = 134 ! Perdew & Wang 91 integer(c_int), parameter, public :: XC_GGA_C_AM05 = 135 ! Armiento & Mattsson 05 correlation integer(c_int), parameter, public :: XC_GGA_C_XPBE = 136 ! xPBE reparametrization by Xu & Goddard integer(c_int), parameter, public :: XC_GGA_C_LM = 137 ! Langreth and Mehl correlation integer(c_int), parameter, public :: XC_GGA_C_PBE_JRGX = 138 ! JRGX reparametrization by Pedroza, Silva & Capelle integer(c_int), parameter, public :: XC_GGA_X_OPTB88_VDW = 139 ! Becke 88 reoptimized to be used with vdW functional of Dion et al integer(c_int), parameter, public :: XC_GGA_X_PBEK1_VDW = 140 ! PBE reparametrization for vdW integer(c_int), parameter, public :: XC_GGA_X_OPTPBE_VDW = 141 ! PBE reparametrization for vdW integer(c_int), parameter, public :: XC_GGA_X_RGE2 = 142 ! Regularized PBE integer(c_int), parameter, public :: XC_GGA_C_RGE2 = 143 ! Regularized PBE integer(c_int), parameter, public :: XC_GGA_X_RPW86 = 144 ! refitted Perdew & Wang 86 integer(c_int), parameter, public :: XC_GGA_X_KT1 = 145 ! Exchange part of Keal and Tozer version 1 integer(c_int), parameter, public :: XC_GGA_XC_KT2 = 146 ! Keal and Tozer version 2 integer(c_int), parameter, public :: XC_GGA_C_WL = 147 ! Wilson & Levy integer(c_int), parameter, public :: XC_GGA_C_WI = 148 ! Wilson & Ivanov integer(c_int), parameter, public :: XC_GGA_X_MB88 = 149 ! Modified Becke 88 for proton transfer integer(c_int), parameter, public :: XC_GGA_X_SOGGA = 150 ! Second-order generalized gradient approximation integer(c_int), parameter, public :: XC_GGA_X_SOGGA11 = 151 ! Second-order generalized gradient approximation 2011 integer(c_int), parameter, public :: XC_GGA_C_SOGGA11 = 152 ! SOGGA11 correlation integer(c_int), parameter, public :: XC_GGA_C_WI0 = 153 ! Wilson & Ivanov initial version integer(c_int), parameter, public :: XC_GGA_XC_TH1 = 154 ! Tozer and Handy v. 1 integer(c_int), parameter, public :: XC_GGA_XC_TH2 = 155 ! Tozer and Handy v. 2 integer(c_int), parameter, public :: XC_GGA_XC_TH3 = 156 ! Tozer and Handy v. 3 integer(c_int), parameter, public :: XC_GGA_XC_TH4 = 157 ! Tozer and Handy v. 4 integer(c_int), parameter, public :: XC_GGA_X_C09X = 158 ! C09x to be used with the VdW of Rutgers-Chalmers integer(c_int), parameter, public :: XC_GGA_C_SOGGA11_X = 159 ! SOGGA11-X correlation integer(c_int), parameter, public :: XC_GGA_X_LB = 160 ! van Leeuwen & Baerends integer(c_int), parameter, public :: XC_GGA_XC_HCTH_93 = 161 ! HCTH functional fitted to 93 molecules integer(c_int), parameter, public :: XC_GGA_XC_HCTH_120 = 162 ! HCTH functional fitted to 120 molecules integer(c_int), parameter, public :: XC_GGA_XC_HCTH_147 = 163 ! HCTH functional fitted to 147 molecules integer(c_int), parameter, public :: XC_GGA_XC_HCTH_407 = 164 ! HCTH functional fitted to 407 molecules integer(c_int), parameter, public :: XC_GGA_XC_EDF1 = 165 ! Empirical functionals from Adamson, Gill, and Pople integer(c_int), parameter, public :: XC_GGA_XC_XLYP = 166 ! XLYP functional integer(c_int), parameter, public :: XC_GGA_XC_KT1 = 167 ! Keal and Tozer version 1 integer(c_int), parameter, public :: XC_GGA_X_LSPBE = 168 ! PW91-like exchange with simple analytical form integer(c_int), parameter, public :: XC_GGA_X_LSRPBE = 169 ! PW91-like modification of RPBE integer(c_int), parameter, public :: XC_GGA_XC_B97_D = 170 ! Grimme functional to be used with C6 vdW term integer(c_int), parameter, public :: XC_GGA_X_OPTB86B_VDW = 171 ! Becke 86 reoptimized for use with vdW functional of Dion et al integer(c_int), parameter, public :: XC_GGA_XC_PBE1W = 173 ! Functionals fitted for water integer(c_int), parameter, public :: XC_GGA_XC_MPWLYP1W = 174 ! Functionals fitted for water integer(c_int), parameter, public :: XC_GGA_XC_PBELYP1W = 175 ! Functionals fitted for water integer(c_int), parameter, public :: XC_GGA_C_ACGGAP = 176 ! Asymptotically corrected GGA + integer(c_int), parameter, public :: XC_GGA_X_B88_6311G = 179 ! Becke 88 reoptimized with 6-311G** basis set integer(c_int), parameter, public :: XC_GGA_X_NCAP = 180 ! Nearly correct asymptotic potential integer(c_int), parameter, public :: XC_GGA_XC_NCAP = 181 ! Nearly correct asymptotic potential + P86 correlation integer(c_int), parameter, public :: XC_GGA_X_LBM = 182 ! van Leeuwen & Baerends modified integer(c_int), parameter, public :: XC_GGA_X_OL2 = 183 ! Exchange form based on Ou-Yang and Levy v.2 integer(c_int), parameter, public :: XC_GGA_X_APBE = 184 ! mu fixed from the semiclassical neutral atom integer(c_int), parameter, public :: XC_GGA_K_APBE = 185 ! mu fixed from the semiclassical neutral atom integer(c_int), parameter, public :: XC_GGA_C_APBE = 186 ! mu fixed from the semiclassical neutral atom integer(c_int), parameter, public :: XC_GGA_K_TW1 = 187 ! Tran and Wesolowski set 1 (Table II) integer(c_int), parameter, public :: XC_GGA_K_TW2 = 188 ! Tran and Wesolowski set 2 (Table II) integer(c_int), parameter, public :: XC_GGA_K_TW3 = 189 ! Tran and Wesolowski set 3 (Table II) integer(c_int), parameter, public :: XC_GGA_K_TW4 = 190 ! Tran and Wesolowski set 4 (Table II) integer(c_int), parameter, public :: XC_GGA_X_HTBS = 191 ! Haas, Tran, Blaha, and Schwarz integer(c_int), parameter, public :: XC_GGA_X_AIRY = 192 ! Constantin et al based on the Airy gas integer(c_int), parameter, public :: XC_GGA_X_LAG = 193 ! Local Airy Gas integer(c_int), parameter, public :: XC_GGA_XC_MOHLYP = 194 ! Functional for organometallic chemistry integer(c_int), parameter, public :: XC_GGA_XC_MOHLYP2 = 195 ! Functional for barrier heights integer(c_int), parameter, public :: XC_GGA_XC_TH_FL = 196 ! Tozer and Handy v. FL integer(c_int), parameter, public :: XC_GGA_XC_TH_FC = 197 ! Tozer and Handy v. FC integer(c_int), parameter, public :: XC_GGA_XC_TH_FCFO = 198 ! Tozer and Handy v. FCFO integer(c_int), parameter, public :: XC_GGA_XC_TH_FCO = 199 ! Tozer and Handy v. FCO integer(c_int), parameter, public :: XC_GGA_C_OPTC = 200 ! Optimized correlation functional of Cohen and Handy integer(c_int), parameter, public :: XC_GGA_X_ECMV92 = 215 ! Engel, Chevary, Macdonald, and Vosko integer(c_int), parameter, public :: XC_GGA_C_PBE_VWN = 216 ! Perdew, Burke & Ernzerhof correlation based on VWN LDA integer(c_int), parameter, public :: XC_GGA_C_P86_FT = 217 ! Perdew 86 with a more accurate value for ftilde integer(c_int), parameter, public :: XC_GGA_K_RATIONAL_P = 218 ! Lehtomaki and Lopez-Acevedo integer(c_int), parameter, public :: XC_GGA_K_PG1 = 219 ! PG1 functional by Constantin, Fabiano, and Della Sala integer(c_int), parameter, public :: XC_GGA_C_PBELOC = 246 ! Semilocal dynamical correlation integer(c_int), parameter, public :: XC_GGA_C_P86VWN = 252 ! Perdew 86 based on the VWN5 LDA integer(c_int), parameter, public :: XC_GGA_C_P86VWN_FT = 253 ! Perdew 86 based on the VWN5 LDA with a more accurate value for ftilde integer(c_int), parameter, public :: XC_GGA_XC_VV10 = 255 ! Vydrov and Van Voorhis integer(c_int), parameter, public :: XC_GGA_C_PBEFE = 258 ! PBE for formation energies integer(c_int), parameter, public :: XC_GGA_C_OP_PW91 = 262 ! one-parameter progressive functional (PW91 version) integer(c_int), parameter, public :: XC_GGA_X_PBEFE = 265 ! PBE for formation energies integer(c_int), parameter, public :: XC_GGA_X_CAP = 270 ! Correct Asymptotic Potential integer(c_int), parameter, public :: XC_GGA_X_EB88 = 271 ! Non-empirical (excogitated) B88 functional of Becke and Elliott integer(c_int), parameter, public :: XC_GGA_C_PBE_MOL = 272 ! Del Campo, Gazquez, Trickey and Vela (PBE-like) integer(c_int), parameter, public :: XC_GGA_K_ABSP3 = 277 ! gamma-TFvW form by Acharya et al [g = 1 - 1.513/N^0.35] integer(c_int), parameter, public :: XC_GGA_K_ABSP4 = 278 ! gamma-TFvW form by Acharya et al [g = l = 1/(1 + 1.332/N^(1/3))] integer(c_int), parameter, public :: XC_GGA_C_BMK = 280 ! Boese-Martin for kinetics integer(c_int), parameter, public :: XC_GGA_C_TAU_HCTH = 281 ! correlation part of tau-hcth integer(c_int), parameter, public :: XC_GGA_C_HYB_TAU_HCTH = 283 ! correlation part of hyb_tau-hcth integer(c_int), parameter, public :: XC_GGA_X_BEEFVDW = 285 ! BEEF-vdW exchange integer(c_int), parameter, public :: XC_GGA_XC_BEEFVDW = 286 ! BEEF-vdW exchange-correlation integer(c_int), parameter, public :: XC_GGA_X_PBETRANS = 291 ! Gradient-based interpolation between PBE and revPBE integer(c_int), parameter, public :: XC_GGA_X_CHACHIYO = 298 ! Chachiyo exchange integer(c_int), parameter, public :: XC_GGA_C_CHACHIYO = 309 ! Chachiyo simple GGA correlation integer(c_int), parameter, public :: XC_GGA_X_REVSSB_D = 312 ! Revised Swart, Sola and Bickelhaupt dispersion integer(c_int), parameter, public :: XC_GGA_C_CCDF = 313 ! ccDF, coupled-cluster based density functional integer(c_int), parameter, public :: XC_GGA_X_PW91_MOD = 316 ! Perdew & Wang 91, alternate version with more digits integer(c_int), parameter, public :: XC_GGA_X_S12G = 495 ! Swart 2012 GGA exchange integer(c_int), parameter, public :: XC_GGA_K_VW = 500 ! von Weiszaecker functional integer(c_int), parameter, public :: XC_GGA_K_GE2 = 501 ! Second-order gradient expansion (l = 1/9) integer(c_int), parameter, public :: XC_GGA_K_GOLDEN = 502 ! TF-lambda-vW form by Golden (l = 13/45) integer(c_int), parameter, public :: XC_GGA_K_YT65 = 503 ! TF-lambda-vW form by Yonei and Tomishima (l = 1/5) integer(c_int), parameter, public :: XC_GGA_K_BALTIN = 504 ! TF-lambda-vW form by Baltin (l = 5/9) integer(c_int), parameter, public :: XC_GGA_K_LIEB = 505 ! TF-lambda-vW form by Lieb (l = 0.185909191) integer(c_int), parameter, public :: XC_GGA_K_ABSP1 = 506 ! gamma-TFvW form by Acharya et al [g = 1 - 1.412/N^(1/3)] integer(c_int), parameter, public :: XC_GGA_K_ABSP2 = 507 ! gamma-TFvW form by Acharya et al [g = 1 - 1.332/N^(1/3)] integer(c_int), parameter, public :: XC_GGA_K_GR = 508 ! gamma-TFvW form by Gazquez and Robles integer(c_int), parameter, public :: XC_GGA_K_LUDENA = 509 ! gamma-TFvW form by Ludena integer(c_int), parameter, public :: XC_GGA_K_GP85 = 510 ! gamma-TFvW form by Ghosh and Parr integer(c_int), parameter, public :: XC_GGA_K_PEARSON = 511 ! Pearson integer(c_int), parameter, public :: XC_GGA_K_OL1 = 512 ! Ou-Yang and Levy v.1 integer(c_int), parameter, public :: XC_GGA_K_OL2 = 513 ! Ou-Yang and Levy v.2 integer(c_int), parameter, public :: XC_GGA_K_FR_B88 = 514 ! Fuentealba & Reyes (B88 version) integer(c_int), parameter, public :: XC_GGA_K_FR_PW86 = 515 ! Fuentealba & Reyes (PW86 version) integer(c_int), parameter, public :: XC_GGA_K_DK = 516 ! DePristo and Kress integer(c_int), parameter, public :: XC_GGA_K_PERDEW = 517 ! Perdew integer(c_int), parameter, public :: XC_GGA_K_VSK = 518 ! Vitos, Skriver, and Kollar integer(c_int), parameter, public :: XC_GGA_K_VJKS = 519 ! Vitos, Johansson, Kollar, and Skriver integer(c_int), parameter, public :: XC_GGA_K_ERNZERHOF = 520 ! Ernzerhof integer(c_int), parameter, public :: XC_GGA_K_LC94 = 521 ! Lembarki & Chermette integer(c_int), parameter, public :: XC_GGA_K_LLP = 522 ! Lee, Lee & Parr integer(c_int), parameter, public :: XC_GGA_K_THAKKAR = 523 ! Thakkar 1992 integer(c_int), parameter, public :: XC_GGA_X_WPBEH = 524 ! short-range version of the PBE integer(c_int), parameter, public :: XC_GGA_X_HJS_PBE = 525 ! HJS screened exchange PBE version integer(c_int), parameter, public :: XC_GGA_X_HJS_PBE_SOL = 526 ! HJS screened exchange PBE_SOL version integer(c_int), parameter, public :: XC_GGA_X_HJS_B88 = 527 ! HJS screened exchange B88 version integer(c_int), parameter, public :: XC_GGA_X_HJS_B97X = 528 ! HJS screened exchange B97x version integer(c_int), parameter, public :: XC_GGA_X_ITYH = 529 ! short-range recipe B88 functionals - erf integer(c_int), parameter, public :: XC_GGA_X_SFAT = 530 ! short-range recipe for PBE functional integer(c_int), parameter, public :: XC_GGA_X_SG4 = 533 ! Semiclassical GGA at fourth order integer(c_int), parameter, public :: XC_GGA_C_SG4 = 534 ! Semiclassical GGA at fourth order integer(c_int), parameter, public :: XC_GGA_X_GG99 = 535 ! Gilbert and Gill 1999 integer(c_int), parameter, public :: XC_GGA_X_PBEPOW = 539 ! PBE power integer(c_int), parameter, public :: XC_GGA_X_KGG99 = 544 ! Gilbert and Gill 1999 (mixed) integer(c_int), parameter, public :: XC_GGA_XC_HLE16 = 545 ! high local exchange 2016 integer(c_int), parameter, public :: XC_GGA_C_SCAN_E0 = 553 ! GGA component of SCAN integer(c_int), parameter, public :: XC_GGA_C_GAPC = 555 ! GapC integer(c_int), parameter, public :: XC_GGA_C_GAPLOC = 556 ! Gaploc integer(c_int), parameter, public :: XC_GGA_C_ZVPBEINT = 557 ! another spin-dependent correction to PBEint integer(c_int), parameter, public :: XC_GGA_C_ZVPBESOL = 558 ! another spin-dependent correction to PBEsol integer(c_int), parameter, public :: XC_GGA_C_TM_LYP = 559 ! Takkar and McCarthy reparametrization integer(c_int), parameter, public :: XC_GGA_C_TM_PBE = 560 ! Thakkar and McCarthy reparametrization integer(c_int), parameter, public :: XC_GGA_C_W94 = 561 ! Wilson 94 (Eq. 25) integer(c_int), parameter, public :: XC_GGA_C_CS1 = 565 ! A dynamical correlation functional integer(c_int), parameter, public :: XC_GGA_X_B88M = 570 ! Becke 88 reoptimized to be used with mgga_c_tau1 integer(c_int), parameter, public :: XC_GGA_XC_KT3 = 587 ! Keal and Tozer version 3 integer(c_int), parameter, public :: XC_GGA_XC_LB07 = 589 ! Livshits and Baer, empirical functional integer(c_int), parameter, public :: XC_GGA_K_GDS08 = 591 ! Combined analytical theory with Monte Carlo sampling integer(c_int), parameter, public :: XC_GGA_K_GHDS10 = 592 ! As GDS08 but for an electron gas with spin integer(c_int), parameter, public :: XC_GGA_K_GHDS10R = 593 ! Reparametrized GHDS10 integer(c_int), parameter, public :: XC_GGA_K_TKVLN = 594 ! Trickey, Karasiev, and Vela integer(c_int), parameter, public :: XC_GGA_K_PBE3 = 595 ! Three parameter PBE-like expansion integer(c_int), parameter, public :: XC_GGA_K_PBE4 = 596 ! Four parameter PBE-like expansion integer(c_int), parameter, public :: XC_GGA_K_EXP4 = 597 ! Intermediate form between PBE3 and PBE4 integer(c_int), parameter, public :: XC_GGA_X_SFAT_PBE = 601 ! short-range recipe for PBE functional integer(c_int), parameter, public :: XC_GGA_X_FD_LB94 = 604 ! Functional derivative recovered from the stray LB94 potential integer(c_int), parameter, public :: XC_GGA_X_FD_REVLB94 = 605 ! Revised FD_LB94 integer(c_int), parameter, public :: XC_GGA_C_ZVPBELOC = 606 ! PBEloc variation with enhanced compatibility with exact exchange integer(c_int), parameter, public :: XC_GGA_K_LKT = 613 ! Luo-Karasiev-Trickey kinetic GGA integer(c_int), parameter, public :: XC_GGA_K_PBE2 = 616 ! Two parameter PBE-like expansion integer(c_int), parameter, public :: XC_GGA_K_VT84F = 619 ! VT84F by Karasiev et al integer(c_int), parameter, public :: XC_GGA_K_LGAP = 620 ! LGAP by Constantin et al integer(c_int), parameter, public :: XC_GGA_X_ITYH_OPTX = 622 ! short-range OPTX functional integer(c_int), parameter, public :: XC_GGA_X_ITYH_PBE = 623 ! short-range PBE functional integer(c_int), parameter, public :: XC_GGA_K_LGAP_GE = 633 ! LGAP_GE by Constantin et al integer(c_int), parameter, public :: XC_GGA_K_TFVW_OPT = 635 ! empirically optimized gamma-TFvW form integer(c_int), parameter, public :: XC_GGA_C_MGGAC = 712 ! beta fitted to LC20 to be used with MGGAC integer(c_int), parameter, public :: XC_HYB_MGGA_X_DLDF = 36 ! Dispersionless Density Functional integer(c_int), parameter, public :: XC_HYB_MGGA_X_MS2H = 224 ! MS2 hybrid exchange of Sun, et al integer(c_int), parameter, public :: XC_HYB_MGGA_X_MN12_SX = 248 ! MN12-SX hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_SCAN0 = 264 ! SCAN hybrid exchange integer(c_int), parameter, public :: XC_HYB_MGGA_X_MN15 = 268 ! MN15 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_BMK = 279 ! Boese-Martin for kinetics integer(c_int), parameter, public :: XC_HYB_MGGA_X_TAU_HCTH = 282 ! Hybrid version of tau-HCTH integer(c_int), parameter, public :: XC_HYB_MGGA_X_M08_HX = 295 ! M08-HX exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_M08_SO = 296 ! M08-SO exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_M11 = 297 ! M11 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_REVM11 = 304 ! revM11 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_REVM06 = 305 ! revised M06 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_M06_SX = 310 ! M06-SX exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_XC_TPSS0 = 396 ! TPSS hybrid with 25% exact exchange integer(c_int), parameter, public :: XC_HYB_MGGA_XC_B94_HYB = 398 ! Hybrid meta-GGA by Becke integer(c_int), parameter, public :: XC_HYB_MGGA_X_M05 = 438 ! M05 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_M05_2X = 439 ! M05-2X hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_XC_B88B95 = 440 ! Mixture of B88 with BC95 (B1B95) integer(c_int), parameter, public :: XC_HYB_MGGA_XC_B86B95 = 441 ! Mixture of B86 with BC95 integer(c_int), parameter, public :: XC_HYB_MGGA_XC_PW86B95 = 442 ! Mixture of PW86 with BC95 integer(c_int), parameter, public :: XC_HYB_MGGA_XC_BB1K = 443 ! Mixture of B88 with BC95 from Zhao and Truhlar integer(c_int), parameter, public :: XC_HYB_MGGA_X_M06_HF = 444 ! M06-HF hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_XC_MPW1B95 = 445 ! Mixture of mPW91 with BC95 from Zhao and Truhlar integer(c_int), parameter, public :: XC_HYB_MGGA_XC_MPWB1K = 446 ! Mixture of mPW91 with BC95 for kinetics integer(c_int), parameter, public :: XC_HYB_MGGA_XC_X1B95 = 447 ! Mixture of X with BC95 integer(c_int), parameter, public :: XC_HYB_MGGA_XC_XB1K = 448 ! Mixture of X with BC95 for kinetics integer(c_int), parameter, public :: XC_HYB_MGGA_X_M06 = 449 ! M06 hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_X_M06_2X = 450 ! M06-2X hybrid exchange functional from Minnesota integer(c_int), parameter, public :: XC_HYB_MGGA_XC_PW6B95 = 451 ! Mixture of PW91 with BC95 from Zhao and Truhlar integer(c_int), parameter, public :: XC_HYB_MGGA_XC_PWB6K = 452 ! Mixture of PW91 with BC95 from Zhao and Truhlar for kinetics integer(c_int), parameter, public :: XC_HYB_MGGA_XC_TPSSH = 457 ! TPSS hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_XC_REVTPSSH = 458 ! revTPSS hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_X_MVSH = 474 ! MVSh hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_XC_WB97M_V = 531 ! Mardirossian and Head-Gordon integer(c_int), parameter, public :: XC_HYB_MGGA_XC_B0KCIS = 563 ! Hybrid based on KCIS integer(c_int), parameter, public :: XC_HYB_MGGA_XC_MPW1KCIS = 566 ! Modified Perdew-Wang + KCIS hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_XC_MPWKCIS1K = 567 ! Modified Perdew-Wang + KCIS hybrid with more exact exchange integer(c_int), parameter, public :: XC_HYB_MGGA_XC_PBE1KCIS = 568 ! Perdew-Burke-Ernzerhof + KCIS hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_XC_TPSS1KCIS = 569 ! TPSS hybrid with KCIS correlation integer(c_int), parameter, public :: XC_HYB_MGGA_X_REVSCAN0 = 583 ! revised SCAN hybrid exchange integer(c_int), parameter, public :: XC_HYB_MGGA_XC_B98 = 598 ! Becke 98 integer(c_int), parameter, public :: XC_HYB_MGGA_XC_EDMGGAH = 695 ! Tao 2001 hybrid integer(c_int), parameter, public :: XC_HYB_MGGA_X_JS18 = 705 ! a screened version of TM integer(c_int), parameter, public :: XC_HYB_MGGA_X_PJS18 = 706 ! a screened version of TM integer(c_int), parameter, public :: XC_MGGA_C_DLDF = 37 ! Dispersionless Density Functional integer(c_int), parameter, public :: XC_MGGA_XC_ZLP = 42 ! Zhao, Levy & Parr, Eq. (21) integer(c_int), parameter, public :: XC_MGGA_XC_OTPSS_D = 64 ! oTPSS_D functional of Goerigk and Grimme integer(c_int), parameter, public :: XC_MGGA_C_CS = 72 ! Colle and Salvetti integer(c_int), parameter, public :: XC_MGGA_C_MN12_SX = 73 ! MN12-SX correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_MN12_L = 74 ! MN12-L correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M11_L = 75 ! M11-L correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M11 = 76 ! M11 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M08_SO = 77 ! M08-SO correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M08_HX = 78 ! M08-HX correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_REVM11 = 172 ! Revised M11 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_LTA = 201 ! Local tau approximation of Ernzerhof & Scuseria integer(c_int), parameter, public :: XC_MGGA_X_TPSS = 202 ! Tao, Perdew, Staroverov & Scuseria exchange integer(c_int), parameter, public :: XC_MGGA_X_M06_L = 203 ! M06-L exchange functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_GVT4 = 204 ! GVT4 from Van Voorhis and Scuseria integer(c_int), parameter, public :: XC_MGGA_X_TAU_HCTH = 205 ! tau-HCTH from Boese and Handy integer(c_int), parameter, public :: XC_MGGA_X_BR89 = 206 ! Becke-Roussel 89, gamma = 0.8 integer(c_int), parameter, public :: XC_MGGA_X_BJ06 = 207 ! Becke & Johnson correction to Becke-Roussel 89 integer(c_int), parameter, public :: XC_MGGA_X_TB09 = 208 ! Tran & Blaha correction to Becke & Johnson integer(c_int), parameter, public :: XC_MGGA_X_RPP09 = 209 ! Rasanen, Pittalis, and Proetto correction to Becke & Johnson integer(c_int), parameter, public :: XC_MGGA_X_2D_PRHG07 = 210 ! Pittalis, Rasanen, Helbig, Gross Exchange Functional integer(c_int), parameter, public :: XC_MGGA_X_2D_PRHG07_PRP10 = 211 ! PRGH07 with PRP10 correction integer(c_int), parameter, public :: XC_MGGA_X_REVTPSS = 212 ! revised Tao, Perdew, Staroverov & Scuseria exchange integer(c_int), parameter, public :: XC_MGGA_X_PKZB = 213 ! Perdew, Kurth, Zupan, and Blaha integer(c_int), parameter, public :: XC_MGGA_X_BR89_1 = 214 ! Becke-Roussel 89, gamma = 1.0 integer(c_int), parameter, public :: XC_MGGA_K_PGSL025 = 220 ! PGSL0.25 functional by Constantin, Fabiano, and Della Sala integer(c_int), parameter, public :: XC_MGGA_X_MS0 = 221 ! MS exchange of Sun, Xiao, and Ruzsinszky integer(c_int), parameter, public :: XC_MGGA_X_MS1 = 222 ! MS1 exchange of Sun, et al integer(c_int), parameter, public :: XC_MGGA_X_MS2 = 223 ! MS2 exchange of Sun, et al integer(c_int), parameter, public :: XC_MGGA_X_TH = 225 ! Tsuneda and Hirao integer(c_int), parameter, public :: XC_MGGA_X_M11_L = 226 ! M11-L exchange functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_MN12_L = 227 ! MN12-L exchange functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_MS2_REV = 228 ! MS2 exchange of Sun, et al with a revised value for c integer(c_int), parameter, public :: XC_MGGA_XC_CC06 = 229 ! Cancio and Chou 2006 integer(c_int), parameter, public :: XC_MGGA_X_MK00 = 230 ! Exchange for accurate virtual orbital energies integer(c_int), parameter, public :: XC_MGGA_C_TPSS = 231 ! Tao, Perdew, Staroverov & Scuseria correlation integer(c_int), parameter, public :: XC_MGGA_C_VSXC = 232 ! VSxc from Van Voorhis and Scuseria (correlation part) integer(c_int), parameter, public :: XC_MGGA_C_M06_L = 233 ! M06-L correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M06_HF = 234 ! M06-HF correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M06 = 235 ! M06 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M06_2X = 236 ! M06-2X correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M05 = 237 ! M05 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M05_2X = 238 ! M05-2X correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_PKZB = 239 ! Perdew, Kurth, Zupan, and Blaha integer(c_int), parameter, public :: XC_MGGA_C_BC95 = 240 ! Becke correlation 95 integer(c_int), parameter, public :: XC_MGGA_C_REVTPSS = 241 ! revised TPSS correlation integer(c_int), parameter, public :: XC_MGGA_XC_TPSSLYP1W = 242 ! Functionals fitted for water integer(c_int), parameter, public :: XC_MGGA_X_MK00B = 243 ! Exchange for accurate virtual orbital energies (v. B) integer(c_int), parameter, public :: XC_MGGA_X_BLOC = 244 ! functional with balanced localization integer(c_int), parameter, public :: XC_MGGA_X_MODTPSS = 245 ! Modified Tao, Perdew, Staroverov & Scuseria exchange integer(c_int), parameter, public :: XC_MGGA_C_TPSSLOC = 247 ! Semilocal dynamical correlation integer(c_int), parameter, public :: XC_MGGA_X_MBEEF = 249 ! mBEEF exchange integer(c_int), parameter, public :: XC_MGGA_X_MBEEFVDW = 250 ! mBEEF-vdW exchange integer(c_int), parameter, public :: XC_MGGA_C_TM = 251 ! Tao and Mo 2016 correlation integer(c_int), parameter, public :: XC_MGGA_XC_B97M_V = 254 ! Mardirossian and Head-Gordon integer(c_int), parameter, public :: XC_MGGA_X_JK = 256 ! Jemmer-Knowles meta-GGA exchange integer(c_int), parameter, public :: XC_MGGA_X_MVS = 257 ! MVS exchange of Sun, Perdew, and Ruzsinszky integer(c_int), parameter, public :: XC_MGGA_X_MN15_L = 260 ! MN15-L exhange functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_MN15_L = 261 ! MN15-L correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_SCAN = 263 ! SCAN exchange of Sun, Ruzsinszky, and Perdew integer(c_int), parameter, public :: XC_MGGA_C_SCAN = 267 ! SCAN correlation integer(c_int), parameter, public :: XC_MGGA_C_MN15 = 269 ! MN15 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_B00 = 284 ! Becke 2000 integer(c_int), parameter, public :: XC_MGGA_XC_HLE17 = 288 ! high local exchange 2017 integer(c_int), parameter, public :: XC_MGGA_C_SCAN_RVV10 = 292 ! SCAN correlation + rVV10 correlation integer(c_int), parameter, public :: XC_MGGA_X_REVM06_L = 293 ! revised M06-L exchange functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_REVM06_L = 294 ! Revised M06-L correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_X_RTPSS = 299 ! Revised TPSS exchange by Garza, Bell and Head-Gordon integer(c_int), parameter, public :: XC_MGGA_X_MS2B = 300 ! MS2beta exchange by Furness and Sun integer(c_int), parameter, public :: XC_MGGA_X_MS2BS = 301 ! MS2beta* exchange by Furness and Sun integer(c_int), parameter, public :: XC_MGGA_X_MVSB = 302 ! MVSBeta exchange of Furness and Sun integer(c_int), parameter, public :: XC_MGGA_X_MVSBS = 303 ! MVSBeta* exchange of Furness and Sun integer(c_int), parameter, public :: XC_MGGA_C_REVM06 = 306 ! Revised M06 correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_M06_SX = 311 ! M06-SX correlation functional from Minnesota integer(c_int), parameter, public :: XC_MGGA_C_B94 = 397 ! Meta-GGA correlation by Becke integer(c_int), parameter, public :: XC_MGGA_X_RSCAN = 493 ! Regularized SCAN exchange integer(c_int), parameter, public :: XC_MGGA_C_RSCAN = 494 ! Regularized SCAN correlation integer(c_int), parameter, public :: XC_MGGA_X_R2SCAN = 497 ! Re-regularized SCAN exchange integer(c_int), parameter, public :: XC_MGGA_C_R2SCAN = 498 ! Re-regularized SCAN correlation integer(c_int), parameter, public :: XC_MGGA_X_TM = 540 ! Tao and Mo 2016 exchange integer(c_int), parameter, public :: XC_MGGA_X_VT84 = 541 ! meta-GGA version of VT{8,4} GGA integer(c_int), parameter, public :: XC_MGGA_X_SA_TPSS = 542 ! TPSS with correct surface asymptotics integer(c_int), parameter, public :: XC_MGGA_K_PC07 = 543 ! Perdew and Constantin 2007 integer(c_int), parameter, public :: XC_MGGA_C_KCIS = 562 ! Krieger, Chen, Iafrate, and Savin integer(c_int), parameter, public :: XC_MGGA_XC_LP90 = 564 ! Lee & Parr, Eq. (56) integer(c_int), parameter, public :: XC_MGGA_C_B88 = 571 ! Meta-GGA correlation by Becke integer(c_int), parameter, public :: XC_MGGA_X_GX = 575 ! GX functional of Loos integer(c_int), parameter, public :: XC_MGGA_X_PBE_GX = 576 ! PBE-GX functional of Loos integer(c_int), parameter, public :: XC_MGGA_X_REVSCAN = 581 ! revised SCAN integer(c_int), parameter, public :: XC_MGGA_C_REVSCAN = 582 ! revised SCAN correlation integer(c_int), parameter, public :: XC_MGGA_C_SCAN_VV10 = 584 ! SCAN correlation + VV10 correlation integer(c_int), parameter, public :: XC_MGGA_C_REVSCAN_VV10 = 585 ! revised SCAN correlation integer(c_int), parameter, public :: XC_MGGA_X_BR89_EXPLICIT = 586 ! Becke-Roussel 89 with an explicit inversion of x(y), gamma = 0.8 integer(c_int), parameter, public :: XC_MGGA_X_BR89_EXPLICIT_1 = 602 ! Becke-Roussel 89 with an explicit inversion of x(y), gamma = 1.0 integer(c_int), parameter, public :: XC_MGGA_X_REGTPSS = 603 ! Regularized TPSS integer(c_int), parameter, public :: XC_MGGA_X_2D_JS17 = 609 ! JS17 meta-GGA for 2D integer(c_int), parameter, public :: XC_MGGA_K_L04 = 617 ! L0.4 by Laricchia et al integer(c_int), parameter, public :: XC_MGGA_K_L06 = 618 ! L0.6 by Laricchia et al integer(c_int), parameter, public :: XC_MGGA_K_RDA = 621 ! RDA by Karasiev et al integer(c_int), parameter, public :: XC_MGGA_K_GEA2 = 627 ! Second-order gradient expansion integer(c_int), parameter, public :: XC_MGGA_K_GEA4 = 628 ! Fourth-order gradient expansion integer(c_int), parameter, public :: XC_MGGA_K_CSK1 = 629 ! mGGA-rev functional by Cancio, Stewart, and Kuna (a=1) integer(c_int), parameter, public :: XC_MGGA_K_CSK4 = 630 ! mGGA-rev functional by Cancio, Stewart, and Kuna (a=4) integer(c_int), parameter, public :: XC_MGGA_K_CSK_LOC1 = 631 ! mGGAloc-rev functional by Cancio, Stewart, and Kuna (a=1) integer(c_int), parameter, public :: XC_MGGA_K_CSK_LOC4 = 632 ! mGGAloc-rev functional by Cancio, Stewart, and Kuna (a=4) integer(c_int), parameter, public :: XC_MGGA_K_PC07_OPT = 634 ! Reoptimized version by Mejia-Rodriguez and Trickey integer(c_int), parameter, public :: XC_MGGA_C_KCISK = 638 ! Krieger, Chen, and Kurth integer(c_int), parameter, public :: XC_MGGA_X_TLDA = 685 ! LDA-type exchange with tau-dependent potential integer(c_int), parameter, public :: XC_MGGA_X_EDMGGA = 686 ! Tao 2001 integer(c_int), parameter, public :: XC_MGGA_X_GDME_NV = 687 ! Generalized density-matrix with a=1/2 integer(c_int), parameter, public :: XC_MGGA_X_RLDA = 688 ! Reparametrized local-density approximation integer(c_int), parameter, public :: XC_MGGA_X_GDME_0 = 689 ! Generalized density-matrix with a=0 integer(c_int), parameter, public :: XC_MGGA_X_GDME_KOS = 690 ! Generalized density-matrix with a=0.00638 integer(c_int), parameter, public :: XC_MGGA_X_GDME_VT = 691 ! Varied-terms (VT) mGGA of Koehl, Odom, and Scuseria integer(c_int), parameter, public :: XC_MGGA_X_REVTM = 693 ! revised Tao and Mo 2016 exchange integer(c_int), parameter, public :: XC_MGGA_C_REVTM = 694 ! revised Tao and Mo 2016 correlation integer(c_int), parameter, public :: XC_MGGA_X_MBRXC_BG = 696 ! Modified Becke-Roussel for band gaps - cuspless hole integer(c_int), parameter, public :: XC_MGGA_X_MBRXH_BG = 697 ! Modified Becke-Roussel for band gaps - hydrogen hole integer(c_int), parameter, public :: XC_MGGA_X_HLTA = 698 ! Half-and-half by Lehtola and Marques integer(c_int), parameter, public :: XC_MGGA_C_HLTAPW = 699 ! Meta-GGAized PW integer(c_int), parameter, public :: XC_MGGA_X_SCANL = 700 ! Deorbitalized SCAN exchange integer(c_int), parameter, public :: XC_MGGA_X_REVSCANL = 701 ! Deorbitalized revSCAN exchange integer(c_int), parameter, public :: XC_MGGA_C_SCANL = 702 ! SCAN correlation integer(c_int), parameter, public :: XC_MGGA_C_SCANL_RVV10 = 703 ! SCAN correlation + rVV10 correlation integer(c_int), parameter, public :: XC_MGGA_C_SCANL_VV10 = 704 ! SCAN correlation + VV10 correlation integer(c_int), parameter, public :: XC_MGGA_X_TASK = 707 ! TASK exchange of Aschebrock and Kuemmel integer(c_int), parameter, public :: XC_MGGA_X_MGGAC = 711 ! MGGAC of Patras et al integer(c_int), parameter, public :: XC_MGGA_X_MBR = 716 ! modified Becke-Roussel by Patra et al integer(c_int), parameter, public :: XC_MGGA_X_R2SCANL = 718 ! Deorbitalized r^2SCAN exchange integer(c_int), parameter, public :: XC_MGGA_C_R2SCANL = 719 ! Deorbitalized r^2SCAN correlation ! These are old names kept for compatibility integer(c_int), parameter, public :: & XC_LDA_X_1D = 21, & XC_GGA_X_BGCP = 38, & XC_GGA_C_BGCP = 39, & XC_GGA_C_BCGP = 39, & XC_GGA_C_VPBE = 83, & XC_GGA_XC_LB = 160, & XC_MGGA_C_CC06 = 229, & XC_GGA_K_ABSR1 = 506, & XC_GGA_K_ABSR2 = 507, & XC_LDA_C_LP_A = 547, & XC_LDA_C_LP_B = 548, & XC_MGGA_C_LP90 = 564 !---------------------------------------------------------------- interface subroutine xc_version(major, minor, micro) bind(c) import integer(c_int), intent(out) :: major, minor, micro end subroutine xc_version type(c_ptr) function xc_version_string() bind(c) import end function xc_version_string type(c_ptr) function xc_reference() bind(c) import end function xc_reference type(c_ptr) function xc_reference_doi() bind(c) import end function xc_reference_doi end interface !---------------------------------------------------------------- type :: xc_f90_func_info_t private type(c_ptr) :: ptr = C_NULL_PTR end type xc_f90_func_info_t interface integer(c_int) function xc_func_info_get_number(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_number integer(c_int) function xc_func_info_get_kind(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_kind type(c_ptr) function xc_func_info_get_name(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_name integer(c_int) function xc_func_info_get_family(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_family integer(c_int) function xc_func_info_get_flags(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_flags type(c_ptr) function xc_func_info_get_references(info, number) bind(c) import type(c_ptr), value :: info integer(c_int), value :: number end function xc_func_info_get_references integer(c_int) function xc_func_info_get_n_ext_params(info) bind(c) import type(c_ptr), value :: info end function xc_func_info_get_n_ext_params type(c_ptr) function xc_func_info_get_ext_params_name(info, number) bind(c) import type(c_ptr), value :: info integer(c_int), value :: number end function xc_func_info_get_ext_params_name type(c_ptr) function xc_func_info_get_ext_params_description(info, number) bind(c) import type(c_ptr), value :: info integer(c_int), value :: number end function xc_func_info_get_ext_params_description real(c_double) function xc_func_info_get_ext_params_default_value(info, number) bind(c) import type(c_ptr), value :: info integer(c_int), value :: number end function xc_func_info_get_ext_params_default_value end interface !---------------------------------------------------------------- type :: xc_f90_func_reference_t private type(c_ptr) :: ptr = C_NULL_PTR end type xc_f90_func_reference_t interface type(c_ptr) function xc_func_reference_get_ref(reference) bind(c) import type(c_ptr), value :: reference end function xc_func_reference_get_ref type(c_ptr) function xc_func_reference_get_doi(reference) bind(c) import type(c_ptr), value :: reference end function xc_func_reference_get_doi type(c_ptr) function xc_func_reference_get_bibtex(reference) bind(c) import type(c_ptr), value :: reference end function xc_func_reference_get_bibtex end interface !---------------------------------------------------------------- type :: xc_f90_func_t private type(c_ptr) :: ptr = C_NULL_PTR end type xc_f90_func_t interface type(c_ptr) function xc_func_alloc() bind(c) import end function xc_func_alloc integer(c_int) function xc_func_init(p, functional, nspin) bind(c) import type(c_ptr), value :: p integer(c_int), value :: functional, nspin end function xc_func_init subroutine xc_func_end(p) bind(c) import type(c_ptr), value :: p end subroutine xc_func_end subroutine xc_func_free(p) bind(c) import type(c_ptr), value :: p end subroutine xc_func_free type(c_ptr) function xc_func_get_info(p) bind(c) import type(c_ptr), value :: p end function xc_func_get_info type(c_ptr) function xc_functional_get_name(number) bind(c) import integer(c_int), value :: number end function xc_functional_get_name integer(c_int) function xc_functional_get_number(func_string) bind(c) import character(kind=c_char), intent(in) :: func_string(*) end function xc_functional_get_number integer(c_int) function xc_family_from_id(id, family, number) bind(c) import integer(c_int), value :: id type(c_ptr), value :: family, number end function xc_family_from_id integer(c_int) function xc_f90_number_of_functionals() bind(c, name="xc_number_of_functionals") import end function xc_f90_number_of_functionals integer(c_int) function xc_f90_maximum_name_length() bind(c, name="xc_maximum_name_length") import end function xc_f90_maximum_name_length subroutine xc_f90_available_functional_numbers(list) bind(c, name="xc_available_functional_numbers") import integer(c_int), intent(out) :: list(*) end subroutine xc_f90_available_functional_numbers subroutine xc_available_functional_names(list) bind(c) import type(c_ptr) :: list(*) end subroutine xc_available_functional_names subroutine xc_func_set_dens_threshold(p, dens_threshold) bind(c) import type(c_ptr), value :: p real(c_double), value :: dens_threshold end subroutine xc_func_set_dens_threshold subroutine xc_func_set_zeta_threshold(p, zeta_threshold) bind(c) import type(c_ptr), value :: p real(c_double), value :: zeta_threshold end subroutine xc_func_set_zeta_threshold subroutine xc_func_set_sigma_threshold(p, sigma_threshold) bind(c) import type(c_ptr), value :: p real(c_double), value :: sigma_threshold end subroutine xc_func_set_sigma_threshold subroutine xc_func_set_tau_threshold(p, tau_threshold) bind(c) import type(c_ptr), value :: p real(c_double), value :: tau_threshold end subroutine xc_func_set_tau_threshold subroutine xc_func_set_ext_params(p, ext_params) bind(c) import type(c_ptr), value :: p real(c_double), intent(in) :: ext_params(*) end subroutine xc_func_set_ext_params subroutine xc_func_set_ext_params_name(p, name, par) bind(c) import type(c_ptr), value :: p character(kind=c_char), intent(in) :: name(*) real(c_double), value :: par end subroutine xc_func_set_ext_params_name end interface ! LDAs !---------------------------------------------------------------- interface subroutine xc_lda(p, np, rho, zk, vrho, v2rho2, v3rho3, v4rho4) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*), v3rho3(*), v4rho4(*) end subroutine xc_lda subroutine xc_lda_exc(p, np, rho, zk) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*) end subroutine xc_lda_exc subroutine xc_lda_exc_vxc(p, np, rho, zk, vrho) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*) end subroutine xc_lda_exc_vxc subroutine xc_lda_exc_vxc_fxc(p, np, rho, zk, vrho, v2rho2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*) end subroutine xc_lda_exc_vxc_fxc subroutine xc_lda_exc_vxc_fxc_kxc(p, np, rho, zk, vrho, v2rho2, v3rho3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*), v3rho3(*) end subroutine xc_lda_exc_vxc_fxc_kxc subroutine xc_lda_vxc(p, np, rho, vrho) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*) end subroutine xc_lda_vxc subroutine xc_lda_vxc_fxc(p, np, rho, vrho, v2rho2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*), v2rho2(*) end subroutine xc_lda_vxc_fxc subroutine xc_lda_vxc_fxc_kxc(p, np, rho, vrho, v2rho2, v3rho3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*), v2rho2(*), v3rho3(*) end subroutine xc_lda_vxc_fxc_kxc subroutine xc_lda_fxc(p, np, rho, v2rho2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v2rho2(*) end subroutine xc_lda_fxc subroutine xc_lda_kxc(p, np, rho, v3rho3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v3rho3(*) end subroutine xc_lda_kxc subroutine xc_lda_lxc(p, np, rho, v4rho4) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v4rho4(*) end subroutine xc_lda_lxc end interface ! GGAs !---------------------------------------------------------------- interface subroutine xc_gga(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3, & v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4 & ) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) real(c_double), intent(out) :: v4rho4(*), v4rho3sigma(*), v4rho2sigma2(*), v4rhosigma3(*), v4sigma4(*) end subroutine xc_gga subroutine xc_gga_exc(p, np, rho, sigma, zk) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*) end subroutine xc_gga_exc subroutine xc_gga_exc_vxc(p, np, rho, sigma, zk, vrho, vsigma) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) end subroutine xc_gga_exc_vxc subroutine xc_gga_exc_vxc_fxc(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) end subroutine xc_gga_exc_vxc_fxc subroutine xc_gga_exc_vxc_fxc_kxc(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) end subroutine xc_gga_exc_vxc_fxc_kxc subroutine xc_gga_vxc(p, np, rho, sigma, vrho, vsigma) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) end subroutine xc_gga_vxc subroutine xc_gga_vxc_fxc(p, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) end subroutine xc_gga_vxc_fxc subroutine xc_gga_vxc_fxc_kxc(p, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) end subroutine xc_gga_vxc_fxc_kxc subroutine xc_gga_fxc(p, np, rho, sigma, v2rho2, v2rhosigma, v2sigma2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) end subroutine xc_gga_fxc subroutine xc_gga_kxc(p, np, rho, sigma, v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) end subroutine xc_gga_kxc subroutine xc_gga_lxc(p, np, rho, sigma, v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v4rho4(*), v4rho3sigma(*), v4rho2sigma2(*), v4rhosigma3(*), v4sigma4(*) end subroutine xc_gga_lxc end interface interface real(c_double) function xc_gga_ak13_get_asymptotic(homo) bind(c) import real(c_double), value :: homo end function xc_gga_ak13_get_asymptotic end interface interface real(c_double) function xc_hyb_exx_coef(p) bind(c) import type(c_ptr), value :: p end function xc_hyb_exx_coef subroutine xc_hyb_cam_coef(p, omega, alpha, beta) bind(c) import type(c_ptr), value :: p real(c_double), intent(out) :: omega, alpha, beta end subroutine xc_hyb_cam_coef subroutine xc_nlc_coef(p, nlc_b, nlc_c) bind(c) import type(c_ptr), value :: p real(c_double), intent(out) :: nlc_b, nlc_c end subroutine xc_nlc_coef end interface ! the meta-GGAs !---------------------------------------------------------------- interface subroutine xc_mgga(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) real(c_double), intent(out) :: & v4rho4(*), v4rho3sigma(*), v4rho3lapl(*), v4rho3tau(*), v4rho2sigma2(*), v4rho2sigmalapl(*), & v4rho2sigmatau(*), v4rho2lapl2(*), v4rho2lapltau(*), v4rho2tau2(*), v4rhosigma3(*), & v4rhosigma2lapl(*), v4rhosigma2tau(*), v4rhosigmalapl2(*), v4rhosigmalapltau(*), & v4rhosigmatau2(*), v4rholapl3(*), v4rholapl2tau(*), v4rholapltau2(*), v4rhotau3(*), v4sigma4(*), & v4sigma3lapl(*), v4sigma3tau(*), v4sigma2lapl2(*), v4sigma2lapltau(*), v4sigma2tau2(*), & v4sigmalapl3(*), v4sigmalapl2tau(*), v4sigmalapltau2(*), v4sigmatau3(*), v4lapl4(*), & v4lapl3tau(*), v4lapl2tau2(*), v4lapltau3(*), v4tau4(*) end subroutine xc_mgga subroutine xc_mgga_exc(p, np, rho, sigma, lapl, tau, zk) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*) end subroutine xc_mgga_exc subroutine xc_mgga_exc_vxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) end subroutine xc_mgga_exc_vxc subroutine xc_mgga_exc_vxc_fxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) end subroutine xc_mgga_exc_vxc_fxc subroutine xc_mgga_exc_vxc_fxc_kxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) end subroutine xc_mgga_exc_vxc_fxc_kxc subroutine xc_mgga_vxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) end subroutine xc_mgga_vxc subroutine xc_mgga_vxc_fxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) end subroutine xc_mgga_vxc_fxc subroutine xc_mgga_vxc_fxc_kxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) end subroutine xc_mgga_vxc_fxc_kxc subroutine xc_mgga_fxc(p, np, rho, sigma, lapl, tau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) end subroutine xc_mgga_fxc subroutine xc_mgga_kxc(p, np, rho, sigma, lapl, tau, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) end subroutine xc_mgga_kxc subroutine xc_mgga_lxc(p, np, rho, sigma, lapl, tau, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) bind(c) import type(c_ptr), value :: p integer(c_size_t), value :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: & v4rho4(*), v4rho3sigma(*), v4rho3lapl(*), v4rho3tau(*), v4rho2sigma2(*), v4rho2sigmalapl(*), & v4rho2sigmatau(*), v4rho2lapl2(*), v4rho2lapltau(*), v4rho2tau2(*), v4rhosigma3(*), & v4rhosigma2lapl(*), v4rhosigma2tau(*), v4rhosigmalapl2(*), v4rhosigmalapltau(*), & v4rhosigmatau2(*), v4rholapl3(*), v4rholapl2tau(*), v4rholapltau2(*), v4rhotau3(*), v4sigma4(*), & v4sigma3lapl(*), v4sigma3tau(*), v4sigma2lapl2(*), v4sigma2lapltau(*), v4sigma2tau2(*), & v4sigmalapl3(*), v4sigmalapl2tau(*), v4sigmalapltau2(*), v4sigmatau3(*), v4lapl4(*), & v4lapl3tau(*), v4lapl2tau2(*), v4lapltau3(*), v4tau4(*) end subroutine xc_mgga_lxc end interface contains !---------------------------------------------------------------- subroutine xc_f90_version(major, minor, micro) integer(c_int), intent(out) :: major, minor, micro call xc_version(major, minor, micro) end subroutine xc_f90_version subroutine xc_f90_version_string(version) character(len=*), intent(out) :: version type(c_ptr) :: c_version c_version = xc_version_string() call c_to_f_string_ptr(c_version, version) end subroutine xc_f90_version_string subroutine xc_f90_reference(ref) character(len=*), intent(out) :: ref type(c_ptr) :: c_ref c_ref = xc_reference() call c_to_f_string_ptr(c_ref, ref) end subroutine xc_f90_reference subroutine xc_f90_reference_doi(doi) character(len=*), intent(out) :: doi type(c_ptr) :: c_doi c_doi = xc_reference_doi() call c_to_f_string_ptr(c_doi, doi) end subroutine xc_f90_reference_doi !---------------------------------------------------------------- integer(c_int) function xc_f90_func_info_get_number(info) result(number) type(xc_f90_func_info_t), intent(in) :: info number = xc_func_info_get_number(info%ptr) end function xc_f90_func_info_get_number integer(c_int) function xc_f90_func_info_get_kind(info) result(kind) type(xc_f90_func_info_t), intent(in) :: info kind = xc_func_info_get_kind(info%ptr) end function xc_f90_func_info_get_kind character(len=128) function xc_f90_func_info_get_name(info) result(name) type(xc_f90_func_info_t), intent(in) :: info call c_to_f_string_ptr(xc_func_info_get_name(info%ptr), name) end function xc_f90_func_info_get_name integer(c_int) function xc_f90_func_info_get_family(info) result(family) type(xc_f90_func_info_t), intent(in) :: info family = xc_func_info_get_family(info%ptr) end function xc_f90_func_info_get_family integer(c_int) function xc_f90_func_info_get_flags(info) result(flags) type(xc_f90_func_info_t), intent(in) :: info flags = xc_func_info_get_flags(info%ptr) end function xc_f90_func_info_get_flags type(xc_f90_func_reference_t) function xc_f90_func_info_get_references(info, number) result(reference) type(xc_f90_func_info_t), intent(in) :: info integer(c_int), intent(inout) :: number ! number of the reference. Must be 0 in the first call type(c_ptr) :: next_ref reference%ptr = xc_func_info_get_references(info%ptr, number) next_ref = xc_func_info_get_references(info%ptr, INT(number + 1, c_int)) if (c_associated(next_ref)) then number = number + 1 else number = -1 end if end function xc_f90_func_info_get_references integer(c_int) function xc_f90_func_info_get_n_ext_params(info) result(n_ext_params) type(xc_f90_func_info_t), intent(in) :: info n_ext_params = xc_func_info_get_n_ext_params(info%ptr) end function xc_f90_func_info_get_n_ext_params character(len=128) function xc_f90_func_info_get_ext_params_name(info, number) result(name) type(xc_f90_func_info_t), intent(in) :: info integer(c_int), intent(in) :: number call c_to_f_string_ptr(xc_func_info_get_ext_params_name(info%ptr, number), name) end function xc_f90_func_info_get_ext_params_name character(len=128) function xc_f90_func_info_get_ext_params_description(info, number) result(description) type(xc_f90_func_info_t), intent(in) :: info integer(c_int), intent(in) :: number call c_to_f_string_ptr(xc_func_info_get_ext_params_description(info%ptr, number), description) end function xc_f90_func_info_get_ext_params_description real(c_double) function xc_f90_func_info_get_ext_params_default_value(info, number) result(val) type(xc_f90_func_info_t), intent(in) :: info integer(c_int), intent(in) :: number val = xc_func_info_get_ext_params_default_value(info%ptr, number) end function xc_f90_func_info_get_ext_params_default_value !---------------------------------------------------------------- character(len=1024) function xc_f90_func_reference_get_ref(reference) result(ref) type(xc_f90_func_reference_t), intent(in) :: reference call c_to_f_string_ptr(xc_func_reference_get_ref(reference%ptr), ref) end function xc_f90_func_reference_get_ref character(len=1024) function xc_f90_func_reference_get_doi(reference) result(doi) type(xc_f90_func_reference_t), intent(in) :: reference call c_to_f_string_ptr(xc_func_reference_get_doi(reference%ptr), doi) end function xc_f90_func_reference_get_doi character(len=1024) function xc_f90_func_reference_get_bibtex(reference) result(bibtex) type(xc_f90_func_reference_t), intent(in) :: reference call c_to_f_string_ptr(xc_func_reference_get_bibtex(reference%ptr), bibtex) end function xc_f90_func_reference_get_bibtex !---------------------------------------------------------------- subroutine xc_f90_func_init(p, functional, nspin, err) type(xc_f90_func_t), intent(inout) :: p integer(c_int), intent(in) :: functional integer(c_int), intent(in) :: nspin integer(c_int), optional, intent(out) :: err integer(c_int) :: ierr p%ptr = xc_func_alloc() ierr = xc_func_init(p%ptr, functional, nspin) if(present(err)) err = ierr end subroutine xc_f90_func_init subroutine xc_f90_func_end(p) type(xc_f90_func_t), intent(inout) :: p call xc_func_end(p%ptr) call xc_func_free(p%ptr) end subroutine xc_f90_func_end type(xc_f90_func_info_t) function xc_f90_func_get_info(p) result(info) type(xc_f90_func_t), intent(in) :: p info%ptr = xc_func_get_info(p%ptr) end function xc_f90_func_get_info character(len=128) function xc_f90_functional_get_name(number) result(name) integer(c_int), intent(in) :: number call c_to_f_string_ptr(xc_functional_get_name(number), name) end function xc_f90_functional_get_name integer(c_int) function xc_f90_functional_get_number(func_string) result(number) character(len=*), intent(in) :: func_string number = xc_functional_get_number(f_to_c_string(func_string)) end function xc_f90_functional_get_number integer(c_int) function xc_f90_family_from_id(id, family, number) integer(c_int), intent(in) :: id integer(c_int), intent(out), optional, target :: family, number type(c_ptr) c_family, c_number integer(c_int), pointer :: f_family, f_number if (present(family)) then f_family => family call c_f_pointer(c_family, f_family) else c_family = C_NULL_PTR end if if (present(number)) then f_number => number call c_f_pointer(c_number, f_number) else c_number = C_NULL_PTR end if xc_f90_family_from_id = xc_family_from_id(id, c_family, c_number) end function xc_f90_family_from_id subroutine xc_f90_available_functional_names(list) character(len=*), intent(out) :: list(*) integer(c_int) :: n, i, maxlen character(kind=c_char), allocatable, target :: names(:,:) type(c_ptr), allocatable :: c_list(:) n = xc_f90_number_of_functionals() maxlen = xc_f90_maximum_name_length() allocate(names(maxlen, n)) allocate(c_list(n)) do i = 1, n c_list(i) = c_loc(names(1,i)) end do call xc_available_functional_names(c_list) do i = 1, n call c_to_f_string_ptr(c_list(i), list(i)) end do deallocate(c_list) deallocate(names) end subroutine xc_f90_available_functional_names subroutine xc_f90_func_set_dens_threshold(p, dens_threshold) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(in) :: dens_threshold call xc_func_set_dens_threshold(p%ptr, dens_threshold) end subroutine xc_f90_func_set_dens_threshold subroutine xc_f90_func_set_zeta_threshold(p, zeta_threshold) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(in) :: zeta_threshold call xc_func_set_zeta_threshold(p%ptr, zeta_threshold) end subroutine xc_f90_func_set_zeta_threshold subroutine xc_f90_func_set_sigma_threshold(p, sigma_threshold) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(in) :: sigma_threshold call xc_func_set_sigma_threshold(p%ptr, sigma_threshold) end subroutine xc_f90_func_set_sigma_threshold subroutine xc_f90_func_set_tau_threshold(p, tau_threshold) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(in) :: tau_threshold call xc_func_set_tau_threshold(p%ptr, tau_threshold) end subroutine xc_f90_func_set_tau_threshold subroutine xc_f90_func_set_ext_params(p, ext_params) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(in) :: ext_params(*) call xc_func_set_ext_params(p%ptr, ext_params) end subroutine xc_f90_func_set_ext_params subroutine xc_f90_func_set_ext_params_name(p, name, par) type(xc_f90_func_t), intent(in) :: p character(len=*), intent(in) :: name real(c_double), intent(in) :: par call xc_func_set_ext_params_name(p%ptr, f_to_c_string(name), par) end subroutine xc_f90_func_set_ext_params_name ! LDAs !---------------------------------------------------------------- subroutine xc_f90_lda(p, np, rho, zk, vrho, v2rho2, v3rho3, v4rho4) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*), v3rho3(*), v4rho4(*) call xc_lda(p%ptr, np, rho, zk, vrho, v2rho2, v3rho3, v4rho4) end subroutine xc_f90_lda subroutine xc_f90_lda_exc(p, np, rho, zk) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*) call xc_lda_exc(p%ptr, np, rho, zk) end subroutine xc_f90_lda_exc subroutine xc_f90_lda_exc_vxc(p, np, rho, zk, vrho) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*) call xc_lda_exc_vxc(p%ptr, np, rho, zk, vrho) end subroutine xc_f90_lda_exc_vxc subroutine xc_f90_lda_exc_vxc_fxc(p, np, rho, zk, vrho, v2rho2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*) call xc_lda_exc_vxc_fxc(p%ptr, np, rho, zk, vrho, v2rho2) end subroutine xc_f90_lda_exc_vxc_fxc subroutine xc_f90_lda_exc_vxc_fxc_kxc(p, np, rho, zk, vrho, v2rho2, v3rho3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: zk(*), vrho(*), v2rho2(*), v3rho3(*) call xc_lda_exc_vxc_fxc_kxc(p%ptr, np, rho, zk, vrho, v2rho2, v3rho3) end subroutine xc_f90_lda_exc_vxc_fxc_kxc subroutine xc_f90_lda_vxc(p, np, rho, vrho) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*) call xc_lda_vxc(p%ptr, np, rho, vrho) end subroutine xc_f90_lda_vxc subroutine xc_f90_lda_vxc_fxc(p, np, rho, vrho, v2rho2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*), v2rho2(*) call xc_lda_vxc_fxc(p%ptr, np, rho, vrho, v2rho2) end subroutine xc_f90_lda_vxc_fxc subroutine xc_f90_lda_vxc_fxc_kxc(p, np, rho, vrho, v2rho2, v3rho3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: vrho(*), v2rho2(*), v3rho3(*) call xc_lda_vxc_fxc_kxc(p%ptr, np, rho, vrho, v2rho2, v3rho3) end subroutine xc_f90_lda_vxc_fxc_kxc subroutine xc_f90_lda_fxc(p, np, rho, v2rho2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v2rho2(*) call xc_lda_fxc(p%ptr, np, rho, v2rho2) end subroutine xc_f90_lda_fxc subroutine xc_f90_lda_kxc(p, np, rho, v3rho3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v3rho3(*) call xc_lda_kxc(p%ptr, np, rho, v3rho3) end subroutine xc_f90_lda_kxc subroutine xc_f90_lda_lxc(p, np, rho, v4rho4) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*) real(c_double), intent(out) :: v4rho4(*) call xc_lda_lxc(p%ptr, np, rho, v4rho4) end subroutine xc_f90_lda_lxc ! GGAs !---------------------------------------------------------------- subroutine xc_f90_gga(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3, & v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4 & ) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) real(c_double), intent(out) :: v4rho4(*), v4rho3sigma(*), v4rho2sigma2(*), v4rhosigma3(*), v4sigma4(*) call xc_gga(p%ptr, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3, & v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4 & ) end subroutine xc_f90_gga subroutine xc_f90_gga_exc(p, np, rho, sigma, zk) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*) call xc_gga_exc(p%ptr, np, rho, sigma, zk) end subroutine xc_f90_gga_exc subroutine xc_f90_gga_exc_vxc(p, np, rho, sigma, zk, vrho, vsigma) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) call xc_gga_exc_vxc(p%ptr, np, rho, sigma, zk, vrho, vsigma) end subroutine xc_f90_gga_exc_vxc subroutine xc_f90_gga_exc_vxc_fxc(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) call xc_gga_exc_vxc_fxc(p%ptr, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) end subroutine xc_f90_gga_exc_vxc_fxc subroutine xc_f90_gga_exc_vxc_fxc_kxc(p, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) call xc_gga_exc_vxc_fxc_kxc(p%ptr, np, rho, sigma, zk, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) end subroutine xc_f90_gga_exc_vxc_fxc_kxc subroutine xc_f90_gga_vxc(p, np, rho, sigma, vrho, vsigma) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) call xc_gga_vxc(p%ptr, np, rho, sigma, vrho, vsigma) end subroutine xc_f90_gga_vxc subroutine xc_f90_gga_vxc_fxc(p, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) call xc_gga_vxc_fxc(p%ptr, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2) end subroutine xc_f90_gga_vxc_fxc subroutine xc_f90_gga_vxc_fxc_kxc(p, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: vrho(*), vsigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) call xc_gga_vxc_fxc_kxc(p%ptr, np, rho, sigma, vrho, vsigma, & v2rho2, v2rhosigma, v2sigma2, & v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) end subroutine xc_f90_gga_vxc_fxc_kxc subroutine xc_f90_gga_fxc(p, np, rho, sigma, v2rho2, v2rhosigma, v2sigma2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2sigma2(*) call xc_gga_fxc(p%ptr, np, rho, sigma, v2rho2, v2rhosigma, v2sigma2) end subroutine xc_f90_gga_fxc subroutine xc_f90_gga_kxc(p, np, rho, sigma, v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rhosigma2(*), v3sigma3(*) call xc_gga_kxc(p%ptr, np, rho, sigma, v3rho3, v3rho2sigma, v3rhosigma2, v3sigma3) end subroutine xc_f90_gga_kxc subroutine xc_f90_gga_lxc(p, np, rho, sigma, v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*) real(c_double), intent(out) :: v4rho4(*), v4rho3sigma(*), v4rho2sigma2(*), v4rhosigma3(*), v4sigma4(*) call xc_gga_lxc(p%ptr, np, rho, sigma, v4rho4, v4rho3sigma, v4rho2sigma2, v4rhosigma3, v4sigma4) end subroutine xc_f90_gga_lxc real(c_double) function xc_f90_gga_ak13_get_asymptotic(homo) result(asymptotic) real(c_double), intent(in) :: homo asymptotic = xc_gga_ak13_get_asymptotic(homo) end function xc_f90_gga_ak13_get_asymptotic real(c_double) function xc_f90_hyb_exx_coef(p) result(coef) type(xc_f90_func_t), intent(in) :: p coef = xc_hyb_exx_coef(p%ptr) end function xc_f90_hyb_exx_coef subroutine xc_f90_hyb_cam_coef(p, omega, alpha, beta) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(out) :: omega, alpha, beta call xc_hyb_cam_coef(p%ptr, omega, alpha, beta) end subroutine xc_f90_hyb_cam_coef subroutine xc_f90_nlc_coef(p, nlc_b, nlc_c) type(xc_f90_func_t), intent(in) :: p real(c_double), intent(out) :: nlc_b, nlc_c call xc_nlc_coef(p%ptr, nlc_b, nlc_c) end subroutine xc_f90_nlc_coef ! the meta-GGAs !---------------------------------------------------------------- subroutine xc_f90_mgga(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) real(c_double), intent(out) :: & v4rho4(*), v4rho3sigma(*), v4rho3lapl(*), v4rho3tau(*), v4rho2sigma2(*), v4rho2sigmalapl(*), & v4rho2sigmatau(*), v4rho2lapl2(*), v4rho2lapltau(*), v4rho2tau2(*), v4rhosigma3(*), & v4rhosigma2lapl(*), v4rhosigma2tau(*), v4rhosigmalapl2(*), v4rhosigmalapltau(*), & v4rhosigmatau2(*), v4rholapl3(*), v4rholapl2tau(*), v4rholapltau2(*), v4rhotau3(*), v4sigma4(*), & v4sigma3lapl(*), v4sigma3tau(*), v4sigma2lapl2(*), v4sigma2lapltau(*), v4sigma2tau2(*), & v4sigmalapl3(*), v4sigmalapl2tau(*), v4sigmalapltau2(*), v4sigmatau3(*), v4lapl4(*), & v4lapl3tau(*), v4lapl2tau2(*), v4lapltau3(*), v4tau4(*) call xc_mgga(p%ptr, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) end subroutine xc_f90_mgga subroutine xc_f90_mgga_exc(p, np, rho, sigma, lapl, tau, zk) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*) call xc_mgga_exc(p%ptr, np, rho, sigma, lapl, tau, zk) end subroutine xc_f90_mgga_exc subroutine xc_f90_mgga_exc_vxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) call xc_mgga_exc_vxc(p%ptr, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau) end subroutine xc_f90_mgga_exc_vxc subroutine xc_f90_mgga_exc_vxc_fxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) call xc_mgga_exc_vxc_fxc(p%ptr, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) end subroutine xc_f90_mgga_exc_vxc_fxc subroutine xc_f90_mgga_exc_vxc_fxc_kxc(p, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: zk(*), vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) call xc_mgga_exc_vxc_fxc_kxc(p%ptr, np, rho, sigma, lapl, tau, zk, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) end subroutine xc_f90_mgga_exc_vxc_fxc_kxc subroutine xc_f90_mgga_vxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) call xc_mgga_vxc(p%ptr, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau) end subroutine xc_f90_mgga_vxc subroutine xc_f90_mgga_vxc_fxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) call xc_mgga_vxc_fxc(p%ptr, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) end subroutine xc_f90_mgga_vxc_fxc subroutine xc_f90_mgga_vxc_fxc_kxc(p, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: vrho(*), vsigma(*), vlapl(*), vtau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) call xc_mgga_vxc_fxc_kxc(p%ptr, np, rho, sigma, lapl, tau, vrho, vsigma, vlapl, vtau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) end subroutine xc_f90_mgga_vxc_fxc_kxc subroutine xc_f90_mgga_fxc(p, np, rho, sigma, lapl, tau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, v2sigma2, v2sigmalapl, v2sigmatau, & v2lapl2, v2lapltau, v2tau2) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: v2rho2(*), v2rhosigma(*), v2rholapl(*), v2rhotau(*), & v2sigma2(*), v2sigmalapl(*), v2sigmatau(*), v2lapl2(*), v2lapltau(*), v2tau2(*) call xc_mgga_fxc(p%ptr, np, rho, sigma, lapl, tau, & v2rho2, v2rhosigma, v2rholapl, v2rhotau, & v2sigma2, v2sigmalapl, v2sigmatau, v2lapl2, v2lapltau, v2tau2) end subroutine xc_f90_mgga_fxc subroutine xc_f90_mgga_kxc(p, np, rho, sigma, lapl, tau, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: v3rho3(*), v3rho2sigma(*), v3rho2lapl(*), v3rho2tau(*), & v3rhosigma2(*), v3rhosigmalapl(*), v3rhosigmatau(*), v3rholapl2(*), & v3rholapltau(*), v3rhotau2(*), v3sigma3(*), v3sigma2lapl(*), v3sigma2tau(*), & v3sigmalapl2(*), v3sigmalapltau(*), v3sigmatau2(*), v3lapl3(*), v3lapl2tau(*), & v3lapltau2(*), v3tau3(*) call xc_mgga_kxc(p%ptr, np, rho, sigma, lapl, tau, & v3rho3, v3rho2sigma, v3rho2lapl, v3rho2tau, v3rhosigma2, v3rhosigmalapl, & v3rhosigmatau, v3rholapl2, v3rholapltau, v3rhotau2, v3sigma3, v3sigma2lapl, & v3sigma2tau, v3sigmalapl2, v3sigmalapltau, v3sigmatau2, v3lapl3, v3lapl2tau, & v3lapltau2, v3tau3) end subroutine xc_f90_mgga_kxc subroutine xc_f90_mgga_lxc(p, np, rho, sigma, lapl, tau, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) type(xc_f90_func_t), intent(in) :: p integer(c_size_t), intent(in) :: np real(c_double), intent(in) :: rho(*), sigma(*), lapl(*), tau(*) real(c_double), intent(out) :: & v4rho4(*), v4rho3sigma(*), v4rho3lapl(*), v4rho3tau(*), v4rho2sigma2(*), v4rho2sigmalapl(*), & v4rho2sigmatau(*), v4rho2lapl2(*), v4rho2lapltau(*), v4rho2tau2(*), v4rhosigma3(*), & v4rhosigma2lapl(*), v4rhosigma2tau(*), v4rhosigmalapl2(*), v4rhosigmalapltau(*), & v4rhosigmatau2(*), v4rholapl3(*), v4rholapl2tau(*), v4rholapltau2(*), v4rhotau3(*), v4sigma4(*), & v4sigma3lapl(*), v4sigma3tau(*), v4sigma2lapl2(*), v4sigma2lapltau(*), v4sigma2tau2(*), & v4sigmalapl3(*), v4sigmalapl2tau(*), v4sigmalapltau2(*), v4sigmatau3(*), v4lapl4(*), & v4lapl3tau(*), v4lapl2tau2(*), v4lapltau3(*), v4tau4(*) call xc_mgga_lxc(p%ptr, np, rho, sigma, lapl, tau, & v4rho4, v4rho3sigma, v4rho3lapl, v4rho3tau, v4rho2sigma2, v4rho2sigmalapl, & v4rho2sigmatau, v4rho2lapl2, v4rho2lapltau, v4rho2tau2, v4rhosigma3, & v4rhosigma2lapl, v4rhosigma2tau, v4rhosigmalapl2, v4rhosigmalapltau, & v4rhosigmatau2, v4rholapl3, v4rholapl2tau, v4rholapltau2, v4rhotau3, v4sigma4, & v4sigma3lapl, v4sigma3tau, v4sigma2lapl2, v4sigma2lapltau, v4sigma2tau2, & v4sigmalapl3, v4sigmalapl2tau, v4sigmalapltau2, v4sigmatau3, v4lapl4, & v4lapl3tau, v4lapl2tau2, v4lapltau3, v4tau4 & ) end subroutine xc_f90_mgga_lxc ! Helper functions to convert between C and Fortran strings ! Based on the routines by Joseph M. Krahn function f_to_c_string(f_string) result(c_string) character(len=*), intent(in) :: f_string character(kind=c_char,len=1) :: c_string(len_trim(f_string)+1) integer :: i, strlen strlen = len_trim(f_string) forall (i=1:strlen) c_string(i) = f_string(i:i) end forall c_string(strlen+1) = C_NULL_CHAR end function f_to_c_string subroutine c_to_f_string(c_string, f_string) character(kind=c_char,len=1), intent(in) :: c_string(*) character(len=*), intent(out) :: f_string integer :: i i = 1 do while(c_string(i) /= C_NULL_CHAR .and. i <= len(f_string)) f_string(i:i) = c_string(i) i = i + 1 end do if (i < len(f_string)) f_string(i:) = ' ' end subroutine c_to_f_string subroutine c_to_f_string_ptr(c_string, f_string) type(c_ptr), intent(in) :: c_string character(len=*), intent(out) :: f_string character(len=1, kind=c_char), pointer :: p_chars(:) integer :: i if (.not. c_associated(c_string)) then f_string = ' ' else call c_f_pointer(c_string, p_chars, [huge(0)]) i = 1 do while(p_chars(i) /= C_NULL_CHAR .and. i <= len(f_string)) f_string(i:i) = p_chars(i) i = i + 1 end do if (i < len(f_string)) f_string(i:) = ' ' end if end subroutine c_to_f_string_ptr end module xc_f90_lib_m !! Local Variables: !! mode: f90 !! coding: utf-8 !! End: elk-7.2.42/src/PaxHeaders.21776/libxcifc.f900000644000000000000000000000013214061636517015027 xustar0030 mtime=1623670095.985101499 30 atime=1623670095.985101499 30 ctime=1623670095.985101499 elk-7.2.42/src/libxcifc.f900000644002504400250440000004132514061636517017071 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2009 T. McQueen and J. K. Dewhurst. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. module libxcifc use xc_f90_lib_m ! libxc version number integer libxcv(3) contains !BOP ! !ROUTINE: xcifc_libxc ! !INTERFACE: subroutine xcifc_libxc(xctype,n,c_tb09,tempa,rho,rhoup,rhodn,g2rho,g2up,g2dn, & grho2,gup2,gdn2,gupdn,tau,tauup,taudn,ex,ec,vx,vc,vxup,vxdn,vcup,vcdn,dxdgr2, & dxdgu2,dxdgd2,dxdgud,dcdgr2,dcdgu2,dcdgd2,dcdgud,dxdg2r,dxdg2u,dxdg2d,dcdg2r, & dcdg2u,dcdg2d,wx,wxup,wxdn,wc,wcup,wcdn) ! !USES: use, intrinsic :: iso_c_binding ! !INPUT/OUTPUT PARAMETERS: ! xctype : type of exchange-correlation functional (in,integer(3)) ! n : number of density points (in,integer) ! c_tb09 : Tran-Blaha '09 constant c (in,real,optional) ! tempa : temperature in atomic units (in,real,optional) ! rho : spin-unpolarised charge density (in,real(n),optional) ! rhoup : spin-up charge density (in,real(n),optional) ! rhodn : spin-down charge density (in,real(n),optional) ! g2rho : grad^2 rho (in,real(n),optional) ! g2up : grad^2 rhoup (in,real(n),optional) ! g2dn : grad^2 rhodn (in,real(n),optional) ! grho2 : |grad rho|^2 (in,real(n),optional) ! gup2 : |grad rhoup|^2 (in,real(n),optional) ! gdn2 : |grad rhodn|^2 (in,real(n),optional) ! gupdn : (grad rhoup).(grad rhodn) (in,real(n),optional) ! tau : kinetic energy density (in,real(n),optional) ! tauup : spin-up kinetic energy density (in,real(n),optional) ! taudn : spin-down kinetic energy density (in,real(n),optional) ! ex : exchange energy density (out,real(n),optional) ! ec : correlation energy density (out,real(n),optional) ! vx : spin-unpolarised exchange potential (out,real(n),optional) ! vc : spin-unpolarised correlation potential (out,real(n),optional) ! vxup : spin-up exchange potential (out,real(n),optional) ! vxdn : spin-down exchange potential (out,real(n),optional) ! vcup : spin-up correlation potential (out,real(n),optional) ! vcdn : spin-down correlation potential (out,real(n),optional) ! dxdgr2 : de_x/d(|grad rho|^2) (out,real(n),optional) ! dxdgu2 : de_x/d(|grad rhoup|^2) (out,real(n),optional) ! dxdgd2 : de_x/d(|grad rhodn|^2) (out,real(n),optional) ! dxdgud : de_x/d((grad rhoup).(grad rhodn)) (out,real(n),optional) ! dcdgr2 : de_c/d(|grad rho|^2) (out,real(n),optional) ! dcdgu2 : de_c/d(|grad rhoup|^2) (out,real(n),optional) ! dcdgd2 : de_c/d(|grad rhodn|^2) (out,real(n),optional) ! dcdgud : de_c/d((grad rhoup).(grad rhodn)) (out,real(n),optional) ! dxdg2r : de_x/d(grad^2 rho) (out,real(n),optional) ! dxdg2u : de_x/d(grad^2 rhoup) (out,real(n),optional) ! dxdg2d : de_x/d(grad^2 rhodn) (out,real(n),optional) ! dcdg2r : de_c/d(grad^2 rho) (out,real(n),optional) ! dcdg2u : de_c/d(grad^2 rhoup) (out,real(n),optional) ! dcdg2d : de_c/d(grad^2 rhodn) (out,real(n),optional) ! wx : de_x/dtau (out,real(n),optional) ! wxup : de_x/dtauup (out,real(n),optional) ! wxdn : de_x/dtaudn (out,real(n),optional) ! wc : de_c/dtau (out,real(n),optional) ! wcup : de_c/dtauup (out,real(n),optional) ! wcdn : de_c/dtaudn (out,real(n),optional) ! !DESCRIPTION: ! Interface to the ETSF {\tt libxc} exchange-correlation functional library: ! \newline{\tt http://www.tddft.org/programs/octopus/wiki/index.php/Libxc}. ! The second and third integers in {\tt xctype} define the exchange and ! correlation functionals in {\tt libxc}, respectively. ! ! !REVISION HISTORY: ! Created April 2009 (Tyrel McQueen) ! Modified September 2009 (JKD and TMQ) ! Updated for Libxc 1, July 2010 (JKD) ! Updated for Libxc 4, March 2018 (JKD) ! Updated for Libxc 5, May 2020 (JKD) !EOP !BOC implicit none ! mandatory arguments integer, intent(in) :: xctype(3),n ! optional arguments real(8), optional, intent(in) :: c_tb09,tempa real(8), optional, intent(in) :: rho(n),rhoup(n),rhodn(n) real(8), optional, intent(in) :: g2rho(n),g2up(n),g2dn(n) real(8), optional, intent(in) :: grho2(n),gup2(n),gdn2(n),gupdn(n) real(8), optional, intent(in) :: tau(n),tauup(n),taudn(n) real(8), optional, intent(out) :: ex(n),ec(n),vx(n),vc(n) real(8), optional, intent(out) :: vxup(n),vxdn(n),vcup(n),vcdn(n) real(8), optional, intent(out) :: dxdgr2(n),dxdgu2(n),dxdgd2(n),dxdgud(n) real(8), optional, intent(out) :: dxdg2r(n),dxdg2u(n),dxdg2d(n) real(8), optional, intent(out) :: wx(n),wxup(n),wxdn(n) real(8), optional, intent(out) :: dcdgr2(n),dcdgu2(n),dcdgd2(n),dcdgud(n) real(8), optional, intent(out) :: dcdg2r(n),dcdg2u(n),dcdg2d(n) real(8), optional, intent(out) :: wc(n),wcup(n),wcdn(n) ! local variables integer nspin,fmly,id,k integer(c_size_t) np type(xc_f90_func_t) p real(8) ta ! allocatable arrays real(8), allocatable :: r(:,:),sigma(:,:),vrho(:,:),vsigma(:,:) real(8), allocatable :: lapl(:,:),t(:,:),vlapl(:,:),vtau(:,:) if (present(rho)) then nspin=XC_UNPOLARIZED else if (present(rhoup).and.present(rhodn)) then nspin=XC_POLARIZED else write(*,*) write(*,'("Error(xcifc_libxc): missing arguments")') write(*,*) stop end if if (xctype(2).ne.0) then if (xctype(2).eq.xctype(3)) then write(*,*) write(*,'("Error(xcifc_libxc): Libxc exchange and correlation & &functionals")') write(*,'(" are the same : ",2I8)') xctype(2:3) write(*,*) stop end if end if ! convert number of points to long integer np=n ! loop over functional kinds (exchange or correlation) do k=2,3 id=xctype(k) if (id.gt.0) then fmly=xc_f90_family_from_id(id) ! initialise functional call xc_f90_func_init(p,id,nspin) select case(fmly) case(XC_FAMILY_LDA) !-------------------------! ! LDA functionals ! !-------------------------! ! set temperature for free energy functional if ((id.eq.XC_LDA_XC_KSDT).or.(id.eq.XC_LDA_XC_GDSMFB)) then call xc_f90_func_set_ext_params(p,[tempa]) end if if (k.eq.2) then ! exchange if (present(rho)) then call xc_f90_lda_exc_vxc(p,np,rho(1),ex(1),vx(1)) else allocate(r(2,n),vrho(2,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) call xc_f90_lda_exc_vxc(p,np,r(1,1),ex(1),vrho(1,1)) vxup(:)=vrho(1,:); vxdn(:)=vrho(2,:) deallocate(r,vrho) end if else ! correlation if (present(rho)) then call xc_f90_lda_exc_vxc(p,np,rho(1),ec(1),vc(1)) else allocate(r(2,n),vrho(2,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) call xc_f90_lda_exc_vxc(p,np,r(1,1),ec(1),vrho(1,1)) vcup(:)=vrho(1,:); vcdn=vrho(2,:) deallocate(r,vrho) end if end if case(XC_FAMILY_GGA,XC_FAMILY_HYB_GGA) !-------------------------! ! GGA functionals ! !-------------------------! if (k.eq.2) then ! exchange if (present(rho)) then call xc_f90_gga_exc_vxc(p,np,rho(1),grho2(1),ex(1),vx(1),dxdgr2(1)) else allocate(r(2,n),sigma(3,n),vrho(2,n),vsigma(3,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) sigma(1,:)=gup2(:); sigma(2,:)=gupdn(:); sigma(3,:)=gdn2(:) call xc_f90_gga_exc_vxc(p,np,r(1,1),sigma(1,1),ex(1),vrho(1,1), & vsigma(1,1)) vxup(:)=vrho(1,:); vxdn(:)=vrho(2,:) dxdgu2(:)=vsigma(1,:); dxdgud(:)=vsigma(2,:); dxdgd2(:)=vsigma(3,:) deallocate(r,sigma,vrho,vsigma) end if else ! correlation if (present(rho)) then call xc_f90_gga_exc_vxc(p,np,rho(1),grho2(1),ec(1),vc(1),dcdgr2(1)) else allocate(r(2,n),sigma(3,n),vrho(2,n),vsigma(3,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) sigma(1,:)=gup2(:); sigma(2,:)=gupdn(:); sigma(3,:)=gdn2(:) call xc_f90_gga_exc_vxc(p,np,r(1,1),sigma(1,1),ec(1),vrho(1,1), & vsigma(1,1)) vcup(:)=vrho(1,:); vcdn(:)=vrho(2,:) dcdgu2(:)=vsigma(1,:); dcdgud(:)=vsigma(2,:); dcdgd2(:)=vsigma(3,:) deallocate(r,sigma,vrho,vsigma) end if end if case(XC_FAMILY_MGGA) !------------------------------! ! meta-GGA functionals ! !------------------------------! ! set Tran-Blaha '09 constant if required if (id.eq.XC_MGGA_X_TB09) then if (present(c_tb09)) call xc_f90_func_set_ext_params(p,[c_tb09]) end if if (k.eq.2) then ! exchange if (present(rho)) then if (present(ex)) then ! spin-unpolarised energy functional call xc_f90_mgga_exc_vxc(p,np,rho(1),grho2(1),g2rho(1),tau(1), & ex(1),vx(1),dxdgr2(1),dxdg2r(1),wx(1)) else ! spin-unpolarised potential-only functional allocate(vsigma(1,n),vlapl(1,n),vtau(1,n)) call xc_f90_mgga_vxc(p,np,rho(1),grho2(1),g2rho(1),tau(1),vx(1), & vsigma(1,1),vlapl(1,1),vtau(1,1)) deallocate(vsigma,vlapl,vtau) end if else allocate(r(2,n),sigma(3,n),lapl(2,n),t(2,n)) allocate(vrho(2,n),vsigma(3,n),vlapl(2,n),vtau(2,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) sigma(1,:)=gup2(:); sigma(2,:)=gupdn(:); sigma(3,:)=gdn2(:) lapl(1,:)=g2up(:); lapl(2,:)=g2dn(:) t(1,:)=tauup(:); t(2,:)=taudn(:) if (present(ex)) then ! spin-polarised energy functional call xc_f90_mgga_exc_vxc(p,np,r(1,1),sigma(1,1),lapl(1,1),t(1,1), & ex(1),vrho(1,1),vsigma(1,1),vlapl(1,1),vtau(1,1)) dxdgu2(:)=vsigma(1,:); dxdgud(:)=vsigma(2,:); dxdgd2(:)=vsigma(3,:) dxdg2u(:)=vlapl(1,:); dxdg2d(:)=vlapl(2,:) wxup(:)=vtau(1,:); wxdn(:)=vtau(2,:) else ! spin-polarised potential-only functional call xc_f90_mgga_vxc(p,np,r(1,1),sigma(1,1),lapl(1,1),t(1,1), & vrho(1,1),vsigma(1,1),vlapl(1,1),vtau(1,1)) end if vxup(:)=vrho(1,:); vxdn(:)=vrho(2,:) deallocate(r,sigma,lapl,t) deallocate(vrho,vsigma,vlapl,vtau) end if else ! correlation if (present(rho)) then if (present(ec)) then call xc_f90_mgga_exc_vxc(p,np,rho(1),grho2(1),g2rho(1),tau(1), & ec(1),vc(1),dcdgr2(1),dcdg2r(1),wc(1)) else allocate(vsigma(1,n),vlapl(1,n),vtau(1,n)) call xc_f90_mgga_vxc(p,np,rho(1),grho2(1),g2rho(1),tau(1),vc(1), & vsigma(1,1),vlapl(1,1),vtau(1,1)) deallocate(vsigma,vlapl,vtau) end if else allocate(r(2,n),sigma(3,n),lapl(2,n),t(2,n)) allocate(vrho(2,n),vsigma(3,n),vlapl(2,n),vtau(2,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) sigma(1,:)=gup2(:); sigma(2,:)=gupdn(:); sigma(3,:)=gdn2(:) lapl(1,:)=g2up(:); lapl(2,:)=g2dn(:) t(1,:)=tauup(:); t(2,:)=taudn(:) if (present(ec)) then call xc_f90_mgga_exc_vxc(p,np,r(1,1),sigma(1,1),lapl(1,1),t(1,1), & ec(1),vrho(1,1),vsigma(1,1),vlapl(1,1),vtau(1,1)) dcdgu2(:)=vsigma(1,:); dcdgud(:)=vsigma(2,:); dcdgd2(:)=vsigma(3,:) dcdg2u(:)=vlapl(1,:); dcdg2d(:)=vlapl(2,:) wcup(:)=vtau(1,:); wcdn(:)=vtau(2,:) else call xc_f90_mgga_vxc(p,np,r(1,1),sigma(1,1),lapl(1,1),t(1,1), & vrho(1,1),vsigma(1,1),vlapl(1,1),vtau(1,1)) end if vcup(:)=vrho(1,:); vcdn(:)=vrho(2,:) deallocate(r,sigma,lapl,t) deallocate(vrho,vsigma,vlapl,vtau) end if end if case default write(*,*) write(*,'("Error(xcifc_libxc): unsupported Libxc functional family : ",& &I8)') fmly write(*,*) stop end select ! destroy functional call xc_f90_func_end(p) else ! case when id=0 if (k.eq.2) then if (present(ex)) ex(:)=0.d0 if (present(vx)) vx(:)=0.d0 if (present(vxup)) vxup(:)=0.d0 if (present(vxdn)) vxdn(:)=0.d0 if (present(dxdgr2)) dxdgr2(:)=0.d0 if (present(dxdgu2)) dxdgu2(:)=0.d0 if (present(dxdgd2)) dxdgd2(:)=0.d0 if (present(dxdgud)) dxdgud(:)=0.d0 else if (present(ec)) ec(:)=0.d0 if (present(vc)) vc(:)=0.d0 if (present(vcup)) vcup(:)=0.d0 if (present(vcdn)) vcdn(:)=0.d0 if (present(dcdgr2)) dcdgr2(:)=0.d0 if (present(dcdgu2)) dcdgu2(:)=0.d0 if (present(dcdgd2)) dcdgd2(:)=0.d0 if (present(dcdgud)) dcdgud(:)=0.d0 end if end if end do end subroutine subroutine fxcifc_libxc(fxctype,n,rho,rhoup,rhodn,fxc,fxcuu,fxcud,fxcdd) use, intrinsic :: iso_c_binding implicit none ! mandatory arguments integer, intent(in) :: fxctype(3),n ! optional arguments real(8), optional, intent(in) :: rho(n),rhoup(n),rhodn(n) real(8), optional, intent(out) :: fxc(n),fxcuu(n),fxcud(n),fxcdd(n) ! local variables integer nspin,fmly,id,k integer(c_size_t) np type(xc_f90_func_t) p ! allocatable arrays real(8), allocatable :: r(:,:),f(:,:) np=n if (present(rho)) then nspin=XC_UNPOLARIZED else if (present(rhoup).and.present(rhodn)) then nspin=XC_POLARIZED else write(*,*) write(*,'("Error(fxcifc_libxc): missing arguments")') write(*,*) stop end if ! zero the kernel if (present(fxc)) fxc(:)=0.d0 if (present(fxcuu)) fxcuu(:)=0.d0 if (present(fxcud)) fxcud(:)=0.d0 if (present(fxcdd)) fxcdd(:)=0.d0 ! loop over functional kinds (exchange or correlation) do k=2,3 id=fxctype(k) if (id.le.0) cycle fmly=xc_f90_family_from_id(id) ! initialise functional call xc_f90_func_init(p,id,nspin) select case(fmly) case(XC_FAMILY_LDA) !-------------------------! ! LDA functionals ! !-------------------------! if (present(rho)) then allocate(f(1,n)) call xc_f90_lda_fxc(p,np,rho(1),f(1,1)) fxc(:)=fxc(:)+f(1,:) deallocate(f) else allocate(r(2,n),f(3,n)) r(1,:)=rhoup(:); r(2,:)=rhodn(:) call xc_f90_lda_fxc(p,np,r(1,1),f(1,1)) fxcuu(:)=fxcuu(:)+f(1,:) fxcud(:)=fxcud(:)+f(2,:) fxcdd(:)=fxcdd(:)+f(3,:) deallocate(r,f) end if case default write(*,*) write(*,'("Error(fxcifc_libxc): unsupported Libxc functional family : ",& &I8)') fmly write(*,*) stop end select ! destroy functional call xc_f90_func_end(p) end do end subroutine subroutine xcdata_libxc(xctype,xcdescr,xcspin,xcgrad,hybrid,hybridc) implicit none ! arguments integer, intent(in) :: xctype(3) character(512), intent(out) :: xcdescr integer, intent(out) :: xcspin integer, intent(out) :: xcgrad logical, intent(inout) :: hybrid real(8), intent(inout) :: hybridc ! local variables integer j,k,id integer fmly,flg character(128) name type(xc_f90_func_t) p type(xc_f90_func_info_t) info ! check version is compatible call xc_f90_version(libxcv(1),libxcv(2),libxcv(3)) if (libxcv(1).ne.5) then write(*,*) write(*,'("Error(xcdata_libxc): incompatible Libxc version : ",I2.2,".",& &I3.3,".",I3.3)') libxcv(:) write(*,*) stop end if ! unknown spin polarisation xcspin=-1 ! no gradients by default xcgrad=0 ! not hybrid by default hybrid=.false. do k=2,3 id=xctype(k) if (id.gt.0) then call xc_f90_func_init(p,id,XC_UNPOLARIZED) name=xc_f90_functional_get_name(id) fmly=xc_f90_family_from_id(id) info=xc_f90_func_get_info(p) if (fmly.eq.XC_FAMILY_HYB_GGA) then hybridc=xc_f90_hyb_exx_coef(p) hybrid=.true. end if ! hybrids should have only correlation part to avoid double-scaling with hybridc if ((fmly.eq.XC_FAMILY_HYB_GGA).and.(k.eq.2)) then write(*,*) write(*,'("Error(xcdata_libxc): set only correlation part of xctype for & &Libxc hybrids")') write(*,*) stop end if ! functional family if ((fmly.ne.XC_FAMILY_LDA).and.(fmly.ne.XC_FAMILY_GGA).and. & (fmly.ne.XC_FAMILY_HYB_GGA).and.(fmly.ne.XC_FAMILY_MGGA)) then write(*,*) write(*,'("Error(xcdata_libxc): unsupported Libxc family : ",I8)') fmly write(*,*) stop end if ! post-processed gradients required for GGA functionals if (fmly.eq.XC_FAMILY_GGA.or.fmly.eq.XC_FAMILY_HYB_GGA) xcgrad=2 ! kinetic energy density required for meta-GGA functionals if (fmly.eq.XC_FAMILY_MGGA) then flg=xc_f90_func_info_get_flags(info) if ((iand(flg,XC_FLAGS_HAVE_VXC).ne.0).and. & (iand(flg,XC_FLAGS_HAVE_EXC).eq.0)) then ! potential-only functional xcgrad=3 else if (iand(flg,XC_FLAGS_HAVE_EXC).ne.0) then ! energy functional xcgrad=4 else write(*,*) write(*,'("Error(xcdata_libxc): unsupported Libxc meta-GGA type")') write(*,*) stop end if ! check if the density laplacian is required if ((xcgrad.eq.4).and.(iand(flg,XC_FLAGS_NEEDS_LAPLACIAN).ne.0)) then write(*,*) write(*,'("Error(xcdata_libxc): energy meta-GGAs requiring the density & &laplacian are not supported")') write(*,*) stop end if end if ! destroy functional call xc_f90_func_end(p) else name='none' end if if (k.eq.2) then xcdescr='exchange: '//trim(name) else xcdescr=trim(xcdescr)//'; correlation: '//trim(name) end if end do end subroutine !EOC end module elk-7.2.42/src/PaxHeaders.21776/zfftifc_fftw.f900000644000000000000000000000013214061636517015725 xustar0030 mtime=1623670095.996101488 30 atime=1623670095.996101488 30 ctime=1623670095.996101488 elk-7.2.42/src/zfftifc_fftw.f900000644002504400250440000000266714061636517017775 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zfftifc(nd,n,sgn,z) implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn complex(8), intent(inout) :: z(*) ! local variables integer, parameter :: FFTW_ESTIMATE=64 integer p integer(8) plan real(8) t1 ! interface to FFTW version 3 !$OMP CRITICAL(zfftifc_) call dfftw_plan_dft(plan,nd,n,z,z,sgn,FFTW_ESTIMATE) !$OMP END CRITICAL(zfftifc_) call dfftw_execute(plan) !$OMP CRITICAL(zfftifc_) call dfftw_destroy_plan(plan) !$OMP END CRITICAL(zfftifc_) if (sgn.eq.-1) then p=product(n(:)) t1=1.d0/dble(p) call zdscal(p,t1,z,1) end if end subroutine subroutine rzfftifc(nd,n,sgn,r,z) implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn real(8), intent(inout) :: r(*) complex(8), intent(inout) :: z(*) ! local variables integer, parameter :: FFTW_ESTIMATE=64 integer p integer(8) plan real(8) t1 !$OMP CRITICAL(rzfftifc_) if (sgn.eq.-1) then call dfftw_plan_dft_r2c(plan,nd,n,r,z,FFTW_ESTIMATE) else call dfftw_plan_dft_c2r(plan,nd,n,z,r,FFTW_ESTIMATE) end if !$OMP END CRITICAL(rzfftifc_) call dfftw_execute(plan) !$OMP CRITICAL(rzfftifc_) call dfftw_destroy_plan(plan) !$OMP END CRITICAL(rzfftifc_) if (sgn.eq.-1) then p=product(n(:)) t1=1.d0/dble(p) p=p/n(1) p=p*(n(1)/2+1) call zdscal(p,t1,z,1) end if end subroutine elk-7.2.42/src/PaxHeaders.21776/zfftifc_mkl.f900000644000000000000000000000013214061636517015542 xustar0030 mtime=1623670095.998101487 30 atime=1623670095.997101488 30 ctime=1623670095.998101487 elk-7.2.42/src/zfftifc_mkl.f900000644002504400250440000000364314061636517017605 0ustar00dewhurstdewhurst00000000000000 ! Copyright (C) 2002-2005 J. K. Dewhurst, S. Sharma and C. Ambrosch-Draxl. ! This file is distributed under the terms of the GNU General Public License. ! See the file COPYING for license details. subroutine zfftifc(nd,n,sgn,z) use mkl_dfti implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn complex(8), intent(inout) :: z(*) ! local variables integer status,p real(8) t1 type(DFTI_DESCRIPTOR), pointer :: handle ! interface to the Intel MKL advanced Discreet Fourier Transform (DFT) routines ! (with thanks to Torbjorn Bjorkman) p=product(n(:)) t1=1.d0/dble(p) status=DftiCreateDescriptor(handle,DFTI_DOUBLE,DFTI_COMPLEX,nd,n) status=DftiSetValue(handle,DFTI_FORWARD_SCALE,t1) status=DftiCommitDescriptor(handle) if (sgn.eq.-1) then status=DftiComputeForward(handle,z) else status=DftiComputeBackward(handle,z) end if status=DftiFreeDescriptor(handle) end subroutine subroutine rzfftifc(nd,n,sgn,r,z) use mkl_dfti implicit none ! arguments integer, intent(in) :: nd,n(nd),sgn real(8), intent(inout) :: r(*) complex(8), intent(inout) :: z(*) ! local variables integer status,p,i real(8) t1 type(DFTI_DESCRIPTOR), pointer :: handle ! automatic arrays integer strides(0:nd) p=product(n(:)) t1=1.d0/dble(p) status=DftiCreateDescriptor(handle,DFTI_DOUBLE,DFTI_REAL,nd,n) status=DftiSetValue(handle,DFTI_CONJUGATE_EVEN_STORAGE,DFTI_COMPLEX_COMPLEX) status=DftiSetValue(handle,DFTI_PLACEMENT,DFTI_NOT_INPLACE) status=DftiSetValue(handle,DFTI_FORWARD_SCALE,t1) strides(0)=0 strides(1)=1 if (nd.gt.1) then strides(2)=n(1)/2+1 do i=2,nd-1 strides(i+1)=strides(i)*n(i) end do end if if (sgn.eq.-1) then status=DftiSetValue(handle,DFTI_OUTPUT_STRIDES,strides) status=DftiCommitDescriptor(handle) status=DftiComputeForward(handle,r,z) else status=DftiSetValue(handle,DFTI_INPUT_STRIDES,strides) status=DftiCommitDescriptor(handle) status=DftiComputeBackward(handle,z,r) end if status=DftiFreeDescriptor(handle) end subroutine elk-7.2.42/PaxHeaders.21776/examples0000644000000000000000000000013214061636520013670 xustar0030 mtime=1623670096.496101024 30 atime=1623670096.003101482 30 ctime=1623670096.496101024 elk-7.2.42/examples/0000755002504400250440000000000014061636520016002 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/PaxHeaders.21776/BSE0000644000000000000000000000013114061636520014300 xustar0030 mtime=1623670096.019101467 29 atime=1623670096.00510148 30 ctime=1623670096.019101467 elk-7.2.42/examples/BSE/0000755002504400250440000000000014061636520016413 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/BSE/PaxHeaders.21776/Si0000644000000000000000000000013214061636520014654 xustar0030 mtime=1623670096.012101474 30 atime=1623670096.006101479 30 ctime=1623670096.012101474 elk-7.2.42/examples/BSE/Si/0000755002504400250440000000000014061636520016766 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/BSE/Si/PaxHeaders.21776/EPSILON_11.OUT0000644000000000000000000000013214061636520016734 xustar0030 mtime=1623670096.008101477 30 atime=1623670096.007101478 30 ctime=1623670096.008101477 elk-7.2.42/examples/BSE/Si/EPSILON_11.OUT0000644002504400250440000016350614061636520021004 0ustar00dewhurstdewhurst00000000000000 0.000000000 11.66588532 0.1250000000E-02 11.65430648 0.2500000000E-02 11.61124981 0.3750000000E-02 11.51356928 0.5000000000E-02 11.33618510 0.6250000000E-02 11.08496950 0.7500000000E-02 10.81533017 0.8750000000E-02 10.58797550 0.1000000000E-01 10.42531540 0.1125000000E-01 10.32538260 0.1250000000E-01 10.27976752 0.1375000000E-01 10.27373754 0.1500000000E-01 10.28929980 0.1625000000E-01 10.31195281 0.1750000000E-01 10.33401056 0.1875000000E-01 10.35352667 0.2000000000E-01 10.37034339 0.2125000000E-01 10.38534219 0.2250000000E-01 10.40206854 0.2375000000E-01 10.42376516 0.2500000000E-01 10.45035451 0.2625000000E-01 10.48026076 0.2750000000E-01 10.51241792 0.2875000000E-01 10.54606657 0.3000000000E-01 10.58034798 0.3125000000E-01 10.61452198 0.3250000000E-01 10.64829180 0.3375000000E-01 10.68195032 0.3500000000E-01 10.71615309 0.3625000000E-01 10.75142730 0.3750000000E-01 10.78797059 0.3875000000E-01 10.82576250 0.4000000000E-01 10.86470568 0.4125000000E-01 10.90465691 0.4250000000E-01 10.94532003 0.4375000000E-01 10.98615689 0.4500000000E-01 11.02646878 0.4625000000E-01 11.06589616 0.4750000000E-01 11.10512901 0.4875000000E-01 11.14544997 0.5000000000E-01 11.18726601 0.5125000000E-01 11.23021645 0.5250000000E-01 11.27459524 0.5375000000E-01 11.32151176 0.5500000000E-01 11.37173449 0.5625000000E-01 11.42511348 0.5750000000E-01 11.48098154 0.5875000000E-01 11.53876936 0.6000000000E-01 11.59836383 0.6125000000E-01 11.66002470 0.6250000000E-01 11.72397672 0.6375000000E-01 11.79023497 0.6500000000E-01 11.85873416 0.6625000000E-01 11.92944054 0.6750000000E-01 12.00236633 0.6875000000E-01 12.07754405 0.7000000000E-01 12.15499526 0.7125000000E-01 12.23471210 0.7250000000E-01 12.31669111 0.7375000000E-01 12.40106751 0.7500000000E-01 12.48822782 0.7625000000E-01 12.57862618 0.7750000000E-01 12.67250732 0.7875000000E-01 12.76992981 0.8000000000E-01 12.87092234 0.8125000000E-01 12.97555135 0.8250000000E-01 13.08391475 0.8375000000E-01 13.19611514 0.8500000000E-01 13.31223858 0.8625000000E-01 13.43237337 0.8750000000E-01 13.55672765 0.8875000000E-01 13.68577681 0.9000000000E-01 13.82014461 0.9125000000E-01 13.96029233 0.9250000000E-01 14.10647790 0.9375000000E-01 14.25892054 0.9500000000E-01 14.41790102 0.9625000000E-01 14.58377697 0.9750000000E-01 14.75697281 0.9875000000E-01 14.93797229 0.1000000000 15.12731937 0.1012500000 15.32562492 0.1025000000 15.53357150 0.1037500000 15.75191509 0.1050000000 15.98149371 0.1062500000 16.22324573 0.1075000000 16.47823250 0.1087500000 16.74765820 0.1100000000 17.03288436 0.1112500000 17.33544886 0.1125000000 17.65709364 0.1137500000 17.99979326 0.1150000000 18.36577460 0.1162500000 18.75751579 0.1175000000 19.17769827 0.1187500000 19.62905547 0.1200000000 20.11400104 0.1212500000 20.63379473 0.1225000000 21.18675427 0.1237500000 21.76456884 0.1250000000 22.34517818 0.1262500000 22.88095862 0.1275000000 23.28651801 0.1287500000 23.44969343 0.1300000000 23.30623288 0.1312500000 22.94598268 0.1325000000 22.60991062 0.1337500000 22.55880956 0.1350000000 22.91764885 0.1362500000 23.62914353 0.1375000000 24.54219570 0.1387500000 25.48729144 0.1400000000 26.29425940 0.1412500000 26.81782719 0.1425000000 26.99746089 0.1437500000 26.88689145 0.1450000000 26.61995937 0.1462500000 26.29193583 0.1475000000 25.84624877 0.1487500000 25.23837557 0.1500000000 24.63027612 0.1512500000 24.25348519 0.1525000000 24.17246299 0.1537500000 24.25674511 0.1550000000 24.27821973 0.1562500000 24.00545031 0.1575000000 23.36816322 0.1587500000 22.49749292 0.1600000000 21.48572012 0.1612500000 20.28305745 0.1625000000 18.85350783 0.1637500000 17.21839501 0.1650000000 15.37906101 0.1662500000 13.27847992 0.1675000000 10.84726159 0.1687500000 8.143736706 0.1700000000 5.452482046 0.1712500000 3.078634736 0.1725000000 1.083328444 0.1737500000 -0.6798127544 0.1750000000 -2.398544048 0.1762500000 -4.093826040 0.1775000000 -5.504856629 0.1787500000 -6.321029385 0.1800000000 -6.442488533 0.1812500000 -5.957280231 0.1825000000 -5.059098583 0.1837500000 -4.042200943 0.1850000000 -3.232313967 0.1862500000 -2.844639338 0.1875000000 -2.920050747 0.1887500000 -3.389136243 0.1900000000 -4.139978322 0.1912500000 -4.993079474 0.1925000000 -5.680476155 0.1937500000 -5.958466854 0.1950000000 -5.798532232 0.1962500000 -5.365532098 0.1975000000 -4.819008635 0.1987500000 -4.284064922 0.2000000000 -3.921634767 0.2012500000 -3.873955684 0.2025000000 -4.162290855 0.2037500000 -4.683145724 0.2050000000 -5.286239240 0.2062500000 -5.888783582 0.2075000000 -6.500589633 0.2087500000 -7.169462720 0.2100000000 -7.958038022 0.2112500000 -8.874168848 0.2125000000 -9.824656310 0.2137500000 -10.63217438 0.2150000000 -11.11342243 0.2162500000 -11.21482368 0.2175000000 -11.01839659 0.2187500000 -10.66430360 0.2200000000 -10.28947644 0.2212500000 -9.973347702 0.2225000000 -9.735670359 0.2237500000 -9.589092818 0.2250000000 -9.545543858 0.2262500000 -9.574854580 0.2275000000 -9.621513927 0.2287500000 -9.642493979 0.2300000000 -9.612183258 0.2312500000 -9.527090907 0.2325000000 -9.406374905 0.2337500000 -9.261464441 0.2350000000 -9.064871943 0.2362500000 -8.791664938 0.2375000000 -8.478553021 0.2387500000 -8.197018422 0.2400000000 -8.001941193 0.2412500000 -7.916186632 0.2425000000 -7.925996481 0.2437500000 -7.996574932 0.2450000000 -8.094422474 0.2462500000 -8.174047464 0.2475000000 -8.200019114 0.2487500000 -8.200048515 0.2500000000 -8.237830320 0.2512500000 -8.329109249 0.2525000000 -8.414889572 0.2537500000 -8.435251310 0.2550000000 -8.402010028 0.2562500000 -8.362861480 0.2575000000 -8.333448953 0.2587500000 -8.287874491 0.2600000000 -8.198767669 0.2612500000 -8.070583978 0.2625000000 -7.917737162 0.2637500000 -7.732721975 0.2650000000 -7.508774259 0.2662500000 -7.261596185 0.2675000000 -7.008429674 0.2687500000 -6.757795714 0.2700000000 -6.524118406 0.2712500000 -6.331715744 0.2725000000 -6.202164742 0.2737500000 -6.140982086 0.2750000000 -6.132027987 0.2762500000 -6.140570097 0.2775000000 -6.134437462 0.2787500000 -6.111013304 0.2800000000 -6.084979060 0.2812500000 -6.052434203 0.2825000000 -5.991885783 0.2837500000 -5.887709990 0.2850000000 -5.738695068 0.2862500000 -5.560384940 0.2875000000 -5.379941004 0.2887500000 -5.218994201 0.2900000000 -5.081630146 0.2912500000 -4.964121423 0.2925000000 -4.868101406 0.2937500000 -4.792050413 0.2950000000 -4.724151301 0.2962500000 -4.659490024 0.2975000000 -4.603612330 0.2987500000 -4.559699686 0.3000000000 -4.537103914 0.3012500000 -4.553927583 0.3025000000 -4.608110162 0.3037500000 -4.665372049 0.3050000000 -4.691811867 0.3062500000 -4.680893920 0.3075000000 -4.645279156 0.3087500000 -4.597033682 0.3100000000 -4.541341689 0.3112500000 -4.483021935 0.3125000000 -4.426647674 0.3137500000 -4.368723764 0.3150000000 -4.302164024 0.3162500000 -4.224915734 0.3175000000 -4.137679465 0.3187500000 -4.043116812 0.3200000000 -3.948665696 0.3212500000 -3.860010684 0.3225000000 -3.774947099 0.3237500000 -3.688177003 0.3250000000 -3.597922073 0.3262500000 -3.508310180 0.3275000000 -3.428555205 0.3287500000 -3.364198508 0.3300000000 -3.308886162 0.3312500000 -3.249778415 0.3325000000 -3.178980212 0.3337500000 -3.096860517 0.3350000000 -3.008242899 0.3362500000 -2.919250132 0.3375000000 -2.833526850 0.3387500000 -2.749032456 0.3400000000 -2.663348102 0.3412500000 -2.580152814 0.3425000000 -2.506918564 0.3437500000 -2.452624420 0.3450000000 -2.423938182 0.3462500000 -2.418800989 0.3475000000 -2.434232531 0.3487500000 -2.478663395 0.3500000000 -2.562642787 0.3512500000 -2.682432280 0.3525000000 -2.817524837 0.3537500000 -2.935571292 0.3550000000 -3.004170163 0.3562500000 -3.012174418 0.3575000000 -2.975992936 0.3587500000 -2.920329830 0.3600000000 -2.859402353 0.3612500000 -2.798588158 0.3625000000 -2.742679753 0.3637500000 -2.697244109 0.3650000000 -2.666924475 0.3662500000 -2.649306588 0.3675000000 -2.633356971 0.3687500000 -2.610752157 0.3700000000 -2.581665078 0.3712500000 -2.547293397 0.3725000000 -2.505701179 0.3737500000 -2.457624553 0.3750000000 -2.410832292 0.3762500000 -2.374832930 0.3775000000 -2.352556076 0.3787500000 -2.341148494 0.3800000000 -2.339769224 0.3812500000 -2.348170927 0.3825000000 -2.359406428 0.3837500000 -2.362866457 0.3850000000 -2.351297718 0.3862500000 -2.324480464 0.3875000000 -2.289981450 0.3887500000 -2.257239655 0.3900000000 -2.228610977 0.3912500000 -2.198651864 0.3925000000 -2.162711610 0.3937500000 -2.121706156 0.3950000000 -2.079041167 0.3962500000 -2.036012752 0.3975000000 -1.991711166 0.3987500000 -1.946978717 0.4000000000 -1.905611853 0.4012500000 -1.871443196 0.4025000000 -1.847385004 0.4037500000 -1.834857863 0.4050000000 -1.829657747 0.4062500000 -1.822969987 0.4075000000 -1.809839274 0.4087500000 -1.791717774 0.4100000000 -1.773061118 0.4112500000 -1.759225704 0.4125000000 -1.752995945 0.4137500000 -1.752580671 0.4150000000 -1.753344548 0.4162500000 -1.748997942 0.4175000000 -1.734249043 0.4187500000 -1.708954428 0.4200000000 -1.677326282 0.4212500000 -1.643905707 0.4225000000 -1.613267238 0.4237500000 -1.590569185 0.4250000000 -1.579799331 0.4262500000 -1.582592088 0.4275000000 -1.598667852 0.4287500000 -1.624818758 0.4300000000 -1.652753855 0.4312500000 -1.672289400 0.4325000000 -1.678318704 0.4337500000 -1.671758655 0.4350000000 -1.655064480 0.4362500000 -1.630837315 0.4375000000 -1.602290599 0.4387500000 -1.571798821 0.4400000000 -1.539180569 0.4412500000 -1.502601231 0.4425000000 -1.461819730 0.4437500000 -1.419191272 0.4450000000 -1.378344094 0.4462500000 -1.343121722 0.4475000000 -1.316243164 0.4487500000 -1.297665387 0.4500000000 -1.284970756 0.4512500000 -1.275859624 0.4525000000 -1.269429052 0.4537500000 -1.265471200 0.4550000000 -1.263254541 0.4562500000 -1.261447950 0.4575000000 -1.258475121 0.4587500000 -1.253095720 0.4600000000 -1.244979511 0.4612500000 -1.233100960 0.4625000000 -1.215224445 0.4637500000 -1.190183446 0.4650000000 -1.159257842 0.4662500000 -1.126235073 0.4675000000 -1.096507447 0.4687500000 -1.074024188 0.4700000000 -1.058051451 0.4712500000 -1.043873924 0.4725000000 -1.027503892 0.4737500000 -1.008900116 0.4750000000 -0.9907326928 0.4762500000 -0.9752809848 0.4775000000 -0.9627725018 0.4787500000 -0.9521199904 0.4800000000 -0.9428379714 0.4812500000 -0.9359933340 0.4825000000 -0.9330509120 0.4837500000 -0.9337720692 0.4850000000 -0.9352468824 0.4862500000 -0.9331709950 0.4875000000 -0.9247145455 0.4887500000 -0.9107175575 0.4900000000 -0.8944702991 0.4912500000 -0.8785137292 0.4925000000 -0.8635046082 0.4937500000 -0.8498004839 0.4950000000 -0.8382791318 0.4962500000 -0.8292399690 0.4975000000 -0.8224139924 0.4987500000 -0.8174824909 0.5000000000 -0.8142533421 0.5012500000 -0.8133343439 0.5025000000 -0.8146931317 0.5037500000 -0.8158575729 0.5050000000 -0.8142723457 0.5062500000 -0.8094665113 0.5075000000 -0.8017441448 0.5087500000 -0.7909309190 0.5100000000 -0.7766267934 0.5112500000 -0.7598022156 0.5125000000 -0.7429406319 0.5137500000 -0.7277376805 0.5150000000 -0.7139857800 0.5162500000 -0.7009228677 0.5175000000 -0.6885285954 0.5187500000 -0.6775224700 0.5200000000 -0.6696579225 0.5212500000 -0.6672800548 0.5225000000 -0.6702610116 0.5237500000 -0.6744072267 0.5250000000 -0.6752425562 0.5262500000 -0.6724232563 0.5275000000 -0.6688321800 0.5287500000 -0.6671197923 0.5300000000 -0.6677175695 0.5312500000 -0.6687328482 0.5325000000 -0.6680209973 0.5337500000 -0.6644706049 0.5350000000 -0.6574054085 0.5362500000 -0.6463563300 0.5375000000 -0.6314593062 0.5387500000 -0.6137489553 0.5400000000 -0.5950536275 0.5412500000 -0.5773277868 0.5425000000 -0.5614904049 0.5437500000 -0.5469856388 0.5450000000 -0.5330414399 0.5462500000 -0.5199444997 0.5475000000 -0.5086441448 0.5487500000 -0.5000611035 0.5500000000 -0.4944998296 0.5512500000 -0.4907893726 0.5525000000 -0.4865660040 0.5537500000 -0.4804388777 0.5550000000 -0.4733681583 0.5562500000 -0.4675038641 0.5575000000 -0.4647029890 0.5587500000 -0.4654924924 0.5600000000 -0.4683190875 0.5612500000 -0.4706949093 0.5625000000 -0.4708275463 0.5637500000 -0.4678109555 0.5650000000 -0.4613233126 0.5662500000 -0.4516370878 0.5675000000 -0.4397638701 0.5687500000 -0.4272282785 0.5700000000 -0.4151517203 0.5712500000 -0.4039355612 0.5725000000 -0.3937606140 0.5737500000 -0.3849908354 0.5750000000 -0.3782037341 0.5762500000 -0.3736426795 0.5775000000 -0.3704009953 0.5787500000 -0.3667913668 0.5800000000 -0.3620191429 0.5812500000 -0.3568622383 0.5825000000 -0.3523916158 0.5837500000 -0.3486003778 0.5850000000 -0.3448862760 0.5862500000 -0.3414081564 0.5875000000 -0.3390422620 0.5887500000 -0.3380820536 0.5900000000 -0.3373545515 0.5912500000 -0.3348838078 0.5925000000 -0.3292754245 0.5937500000 -0.3203392147 0.5950000000 -0.3090125301 0.5962500000 -0.2967833188 0.5975000000 -0.2849587297 0.5987500000 -0.2744529520 0.6000000000 -0.2659128907 0.6012500000 -0.2594242775 0.6025000000 -0.2540889359 0.6037500000 -0.2485631459 0.6050000000 -0.2421406798 0.6062500000 -0.2351890749 0.6075000000 -0.2286354907 0.6087500000 -0.2230110001 0.6100000000 -0.2181701783 0.6112500000 -0.2137432695 0.6125000000 -0.2094826845 0.6137500000 -0.2055018676 0.6150000000 -0.2022862021 0.6162500000 -0.1999819511 0.6175000000 -0.1978953021 0.6187500000 -0.1951055813 0.6200000000 -0.1910803903 0.6212500000 -0.1856189271 0.6225000000 -0.1786936314 0.6237500000 -0.1706404993 0.6250000000 -0.1621807955 0.6262500000 -0.1539711738 0.6275000000 -0.1461522219 0.6287500000 -0.1382743735 0.6300000000 -0.1297289723 0.6312500000 -0.1203504250 0.6325000000 -0.1105621129 0.6337500000 -0.1010321852 0.6350000000 -0.9236878597E-01 0.6362500000 -0.8485358101E-01 0.6375000000 -0.7840343407E-01 0.6387500000 -0.7277517738E-01 0.6400000000 -0.6769645678E-01 0.6412500000 -0.6296898715E-01 0.6425000000 -0.5851633847E-01 0.6437500000 -0.5445330075E-01 0.6450000000 -0.5109982492E-01 0.6462500000 -0.4885026403E-01 0.6475000000 -0.4802120929E-01 0.6487500000 -0.4876692633E-01 0.6500000000 -0.5075753584E-01 0.6512500000 -0.5300450334E-01 0.6525000000 -0.5439122628E-01 0.6537500000 -0.5428555963E-01 0.6550000000 -0.5241194570E-01 0.6562500000 -0.4850531394E-01 0.6575000000 -0.4255724166E-01 0.6587500000 -0.3506384330E-01 0.6600000000 -0.2670947909E-01 0.6612500000 -0.1813546232E-01 0.6625000000 -0.9973611733E-02 0.6637500000 -0.2718510833E-02 0.6650000000 0.3386128725E-02 0.6662500000 0.8207574825E-02 0.6675000000 0.1175705001E-01 0.6687500000 0.1446181965E-01 0.6700000000 0.1690939744E-01 0.6712500000 0.1911830025E-01 0.6725000000 0.2054960143E-01 0.6737500000 0.2086807997E-01 0.6750000000 0.2038617003E-01 0.6762500000 0.1991446843E-01 0.6775000000 0.2028080582E-01 0.6787500000 0.2174453410E-01 0.6800000000 0.2394233818E-01 0.6812500000 0.2665580352E-01 0.6825000000 0.3021000292E-01 0.6837500000 0.3477452383E-01 0.6850000000 0.3998831962E-01 0.6862500000 0.4547461340E-01 0.6875000000 0.5108222377E-01 0.6887500000 0.5675271763E-01 0.6900000000 0.6255126666E-01 0.6912500000 0.6859973170E-01 0.6925000000 0.7472502117E-01 0.6937500000 0.8038712009E-01 0.6950000000 0.8514782833E-01 0.6962500000 0.8908265361E-01 0.6975000000 0.9272484977E-01 0.6987500000 0.9664964232E-01 0.7000000000 0.1010248792 0.7012500000 0.1056370554 0.7025000000 0.1101589436 0.7037500000 0.1142741223 0.7050000000 0.1178690694 0.7062500000 0.1210346309 0.7075000000 0.1239090175 0.7087500000 0.1265944966 0.7100000000 0.1289723473 0.7112500000 0.1307598718 0.7125000000 0.1319236176 0.7137500000 0.1328611497 0.7150000000 0.1341419016 0.7162500000 0.1361376733 0.7175000000 0.1389357972 0.7187500000 0.1426587465 0.7200000000 0.1474543279 0.7212500000 0.1531039447 0.7225000000 0.1590333624 0.7237500000 0.1647002663 0.7250000000 0.1698738738 0.7262500000 0.1745826272 0.7275000000 0.1789123362 0.7287500000 0.1829172938 0.7300000000 0.1865522012 0.7312500000 0.1897618312 0.7325000000 0.1926997459 0.7337500000 0.1955583640 0.7350000000 0.1982558884 0.7362500000 0.2005500939 0.7375000000 0.2022977875 0.7387500000 0.2034767124 0.7400000000 0.2041362513 0.7412500000 0.2045182881 0.7425000000 0.2051087300 0.7437500000 0.2063326561 0.7450000000 0.2082686757 0.7462500000 0.2108039234 0.7475000000 0.2138439735 0.7487500000 0.2172264903 0.7500000000 0.2207518789 0.7512500000 0.2243849316 0.7525000000 0.2281075657 0.7537500000 0.2317212422 0.7550000000 0.2351143122 0.7562500000 0.2384660526 0.7575000000 0.2419648625 0.7587500000 0.2456284689 0.7600000000 0.2494250504 0.7612500000 0.2532454157 0.7625000000 0.2568479009 0.7637500000 0.2600833537 0.7650000000 0.2630360912 0.7662500000 0.2657935724 0.7675000000 0.2682843217 0.7687500000 0.2703854846 0.7700000000 0.2721046192 0.7712500000 0.2736647888 0.7725000000 0.2753658399 0.7737500000 0.2774413792 0.7750000000 0.2800098542 0.7762500000 0.2830617838 0.7775000000 0.2864490387 0.7787500000 0.2898893469 0.7800000000 0.2930462797 0.7812500000 0.2957401355 0.7825000000 0.2981533905 0.7837500000 0.3006708133 0.7850000000 0.3034775995 0.7862500000 0.3064802448 0.7875000000 0.3094985835 0.7887500000 0.3124249898 0.7900000000 0.3152266190 0.7912500000 0.3178588008 0.7925000000 0.3202725902 0.7937500000 0.3225223412 0.7950000000 0.3247430599 0.7962500000 0.3270049092 0.7975000000 0.3293745810 0.7987500000 0.3320164205 0.8000000000 0.3349899259 0.8012500000 0.3380230004 0.8025000000 0.3406032859 0.8037500000 0.3422764913 0.8050000000 0.3429648802 0.8062500000 0.3430922303 0.8075000000 0.3432719800 0.8087500000 0.3438522901 0.8100000000 0.3449296995 0.8112500000 0.3465820680 0.8125000000 0.3487977018 0.8137500000 0.3513832935 0.8150000000 0.3540808277 0.8162500000 0.3567355836 0.8175000000 0.3593662652 0.8187500000 0.3621102349 0.8200000000 0.3650701273 0.8212500000 0.3681803466 0.8225000000 0.3712246033 0.8237500000 0.3739383061 0.8250000000 0.3761269060 0.8262500000 0.3777390440 0.8275000000 0.3788357558 0.8287500000 0.3796008826 0.8300000000 0.3803445517 0.8312500000 0.3813412963 0.8325000000 0.3826933886 0.8337500000 0.3843618557 0.8350000000 0.3862616212 0.8362500000 0.3882538317 0.8375000000 0.3901551147 0.8387500000 0.3919014540 0.8400000000 0.3936015377 0.8412500000 0.3953661363 0.8425000000 0.3972356694 0.8437500000 0.3992421803 0.8450000000 0.4014191629 0.8462500000 0.4037509655 0.8475000000 0.4061833948 0.8487500000 0.4086799006 0.8500000000 0.4112419337 0.8512500000 0.4138565806 0.8525000000 0.4164635401 0.8537500000 0.4189899646 0.8550000000 0.4213919696 0.8562500000 0.4236640247 0.8575000000 0.4258159703 0.8587500000 0.4278588058 0.8600000000 0.4298077011 0.8612500000 0.4316809976 0.8625000000 0.4335005027 0.8637500000 0.4352853534 0.8650000000 0.4370676591 0.8662500000 0.4389197636 0.8675000000 0.4409056201 0.8687500000 0.4430240852 0.8700000000 0.4452315782 0.8712500000 0.4474786638 0.8725000000 0.4497177413 0.8737500000 0.4519113481 0.8750000000 0.4540478922 0.8762500000 0.4561255448 0.8775000000 0.4581136055 0.8787500000 0.4599644504 0.8800000000 0.4616618374 0.8812500000 0.4632306503 0.8825000000 0.4647203467 0.8837500000 0.4661859494 0.8850000000 0.4676687762 0.8862500000 0.4692038910 0.8875000000 0.4708034389 0.8887500000 0.4724426620 0.8900000000 0.4741070685 0.8912500000 0.4758307727 0.8925000000 0.4776603257 0.8937500000 0.4795847244 0.8950000000 0.4815297791 0.8962500000 0.4834068478 0.8975000000 0.4851419573 0.8987500000 0.4866912040 0.9000000000 0.4880551988 0.9012500000 0.4892619475 0.9025000000 0.4903559008 0.9037500000 0.4914062462 0.9050000000 0.4925050674 0.9062500000 0.4937590948 0.9075000000 0.4952294086 0.9087500000 0.4968856722 0.9100000000 0.4986508107 0.9112500000 0.5004685513 0.9125000000 0.5023174774 0.9137500000 0.5041783990 0.9150000000 0.5060126128 0.9162500000 0.5077721202 0.9175000000 0.5094327017 0.9187500000 0.5110219757 0.9200000000 0.5125972152 0.9212500000 0.5141827889 0.9225000000 0.5157568188 0.9237500000 0.5172998379 0.9250000000 0.5188199244 0.9262500000 0.5203359128 0.9275000000 0.5218574946 0.9287500000 0.5233690532 0.9300000000 0.5248304156 0.9312500000 0.5261842997 0.9325000000 0.5273714301 0.9337500000 0.5284003339 0.9350000000 0.5293790156 0.9362500000 0.5303964820 0.9375000000 0.5314445971 0.9387500000 0.5325132683 0.9400000000 0.5336693858 0.9412500000 0.5349884103 0.9425000000 0.5364630488 0.9437500000 0.5380181244 0.9450000000 0.5395615548 0.9462500000 0.5410068878 0.9475000000 0.5422894670 0.9487500000 0.5434008799 0.9500000000 0.5444311615 0.9512500000 0.5455284325 0.9525000000 0.5467740407 0.9537500000 0.5481483567 0.9550000000 0.5495937660 0.9562500000 0.5510613148 0.9575000000 0.5525177681 0.9587500000 0.5539422869 0.9600000000 0.5553255016 0.9612500000 0.5566746441 0.9625000000 0.5580151012 0.9637500000 0.5593652170 0.9650000000 0.5607146134 0.9662500000 0.5620386606 0.9675000000 0.5633279522 0.9687500000 0.5645989992 0.9700000000 0.5658684007 0.9712500000 0.5671294520 0.9725000000 0.5683640331 0.9737500000 0.5695621750 0.9750000000 0.5707239505 0.9762500000 0.5718654871 0.9775000000 0.5730258582 0.9787500000 0.5742347609 0.9800000000 0.5754861805 0.9812500000 0.5767539529 0.9825000000 0.5780125817 0.9837500000 0.5792469325 0.9850000000 0.5804565660 0.9862500000 0.5816526780 0.9875000000 0.5828464421 0.9887500000 0.5840422446 0.9900000000 0.5852412615 0.9912500000 0.5864414629 0.9925000000 0.5876367280 0.9937500000 0.5888227486 0.9950000000 0.5900019178 0.9962500000 0.5911788045 0.9975000000 0.5923531765 0.9987500000 0.5935202445 0.000000000 0.000000000 0.1250000000E-02 0.2106769079 0.2500000000E-02 0.4326592792 0.3750000000E-02 0.6647871022 0.5000000000E-02 0.8782870378 0.6250000000E-02 1.018177003 0.7500000000E-02 1.047770042 0.8750000000E-02 0.9858522044 0.1000000000E-01 0.8750672595 0.1125000000E-01 0.7469865512 0.1250000000E-01 0.6238754306 0.1375000000E-01 0.5217200270 0.1500000000E-01 0.4462655561 0.1625000000E-01 0.3940527254 0.1750000000E-01 0.3574764102 0.1875000000E-01 0.3299381195 0.2000000000E-01 0.3072004621 0.2125000000E-01 0.2852620381 0.2250000000E-01 0.2617835875 0.2375000000E-01 0.2384279787 0.2500000000E-01 0.2179413757 0.2625000000E-01 0.2012923693 0.2750000000E-01 0.1883982739 0.2875000000E-01 0.1791588013 0.3000000000E-01 0.1732992488 0.3125000000E-01 0.1701321181 0.3250000000E-01 0.1686794256 0.3375000000E-01 0.1680420608 0.3500000000E-01 0.1678132433 0.3625000000E-01 0.1681003293 0.3750000000E-01 0.1691817166 0.3875000000E-01 0.1712845944 0.4000000000E-01 0.1745573193 0.4125000000E-01 0.1791503401 0.4250000000E-01 0.1852235886 0.4375000000E-01 0.1927899439 0.4500000000E-01 0.2014217539 0.4625000000E-01 0.2100278738 0.4750000000E-01 0.2174173367 0.4875000000E-01 0.2234903581 0.5000000000E-01 0.2289651439 0.5125000000E-01 0.2338739964 0.5250000000E-01 0.2375416176 0.5375000000E-01 0.2399065169 0.5500000000E-01 0.2418776830 0.5625000000E-01 0.2444907070 0.5750000000E-01 0.2482102436 0.5875000000E-01 0.2528827974 0.6000000000E-01 0.2581013502 0.6125000000E-01 0.2636720333 0.6250000000E-01 0.2697207542 0.6375000000E-01 0.2764243920 0.6500000000E-01 0.2838505931 0.6625000000E-01 0.2919903097 0.6750000000E-01 0.3008191860 0.6875000000E-01 0.3103251097 0.7000000000E-01 0.3205029231 0.7125000000E-01 0.3313160496 0.7250000000E-01 0.3426298956 0.7375000000E-01 0.3541981432 0.7500000000E-01 0.3658488156 0.7625000000E-01 0.3777061595 0.7750000000E-01 0.3900721041 0.7875000000E-01 0.4031796094 0.8000000000E-01 0.4171434868 0.8125000000E-01 0.4320222495 0.8250000000E-01 0.4478650816 0.8375000000E-01 0.4647213732 0.8500000000E-01 0.4826149048 0.8625000000E-01 0.5014830732 0.8750000000E-01 0.5211401037 0.8875000000E-01 0.5414243489 0.9000000000E-01 0.5624601036 0.9125000000E-01 0.5846141174 0.9250000000E-01 0.6082275927 0.9375000000E-01 0.6335200950 0.9500000000E-01 0.6606447061 0.9625000000E-01 0.6897478746 0.9750000000E-01 0.7209982229 0.9875000000E-01 0.7545968201 0.1000000000 0.7907821545 0.1012500000 0.8298385841 0.1025000000 0.8721098966 0.1037500000 0.9180098874 0.1050000000 0.9680294225 0.1062500000 1.022750070 0.1075000000 1.082870672 0.1087500000 1.149247729 0.1100000000 1.222943587 0.1112500000 1.305282256 0.1125000000 1.397928143 0.1137500000 1.503003021 0.1150000000 1.623254205 0.1162500000 1.762295554 0.1175000000 1.924957035 0.1187500000 2.117795025 0.1200000000 2.349833173 0.1212500000 2.633608065 0.1225000000 2.986524119 0.1237500000 3.432182377 0.1250000000 4.000192209 0.1262500000 4.719856862 0.1275000000 5.597654591 0.1287500000 6.570480493 0.1300000000 7.468773347 0.1312500000 8.081105540 0.1325000000 8.305890525 0.1337500000 8.239061288 0.1350000000 8.125865615 0.1362500000 8.205967193 0.1375000000 8.618643845 0.1387500000 9.414314746 0.1400000000 10.57158551 0.1412500000 11.98566826 0.1425000000 13.48627218 0.1437500000 14.91245173 0.1450000000 16.19441789 0.1462500000 17.39527153 0.1475000000 18.56687910 0.1487500000 19.58908087 0.1500000000 20.33770968 0.1512500000 20.90939007 0.1525000000 21.55782197 0.1537500000 22.49526285 0.1550000000 23.80021250 0.1562500000 25.37669972 0.1575000000 26.99144190 0.1587500000 28.50707880 0.1600000000 29.97619133 0.1612500000 31.43516702 0.1625000000 32.82679904 0.1637500000 34.10883187 0.1650000000 35.28030230 0.1662500000 36.31831536 0.1675000000 37.09825586 0.1687500000 37.38837290 0.1700000000 37.04425492 0.1712500000 36.21006327 0.1725000000 35.16918393 0.1737500000 34.09035419 0.1750000000 32.93117427 0.1762500000 31.46728154 0.1775000000 29.55311441 0.1787500000 27.34622771 0.1800000000 25.17254502 0.1812500000 23.32215777 0.1825000000 22.01412490 0.1837500000 21.36408199 0.1850000000 21.30458207 0.1862500000 21.60227384 0.1875000000 21.98800062 0.1887500000 22.25585807 0.1900000000 22.24997281 0.1912500000 21.84569431 0.1925000000 21.02855437 0.1937500000 19.98912837 0.1950000000 19.03557277 0.1962500000 18.35869214 0.1975000000 18.00186989 0.1987500000 17.98329971 0.2000000000 18.28124684 0.2012500000 18.76175265 0.2025000000 19.22795876 0.2037500000 19.53172380 0.2050000000 19.64574945 0.2062500000 19.64300625 0.2075000000 19.58977479 0.2087500000 19.50682993 0.2100000000 19.35298055 0.2112500000 19.01579519 0.2125000000 18.38436352 0.2137500000 17.42378419 0.2150000000 16.24554982 0.2162500000 15.05969549 0.2175000000 14.03758425 0.2187500000 13.26000303 0.2200000000 12.71566557 0.2212500000 12.33511018 0.2225000000 12.05625401 0.2237500000 11.84159788 0.2250000000 11.63714768 0.2262500000 11.38386036 0.2275000000 11.06232436 0.2287500000 10.68554417 0.2300000000 10.28061309 0.2312500000 9.880874913 0.2325000000 9.504512479 0.2337500000 9.139413714 0.2350000000 8.779616300 0.2362500000 8.471992048 0.2375000000 8.276009724 0.2387500000 8.201091368 0.2400000000 8.210907033 0.2412500000 8.248989783 0.2425000000 8.260366408 0.2437500000 8.215601388 0.2450000000 8.101731128 0.2462500000 7.920121667 0.2475000000 7.716619262 0.2487500000 7.547312963 0.2500000000 7.405377145 0.2512500000 7.225019523 0.2525000000 6.965008016 0.2537500000 6.663821850 0.2550000000 6.382303443 0.2562500000 6.127725374 0.2575000000 5.865881323 0.2587500000 5.575470743 0.2600000000 5.273167735 0.2612500000 4.985220647 0.2625000000 4.712548687 0.2637500000 4.451589349 0.2650000000 4.221170262 0.2662500000 4.039169907 0.2675000000 3.906167817 0.2687500000 3.822444817 0.2700000000 3.793056766 0.2712500000 3.813516768 0.2725000000 3.861734245 0.2737500000 3.903821410 0.2750000000 3.906952522 0.2762500000 3.855779759 0.2775000000 3.765067921 0.2787500000 3.661096286 0.2800000000 3.546745366 0.2812500000 3.407570175 0.2825000000 3.243546082 0.2837500000 3.073058169 0.2850000000 2.921571840 0.2862500000 2.811844532 0.2875000000 2.750873003 0.2887500000 2.726023363 0.2900000000 2.719780817 0.2912500000 2.724806918 0.2925000000 2.737061306 0.2937500000 2.746148746 0.2950000000 2.748525812 0.2962500000 2.753167042 0.2975000000 2.764328871 0.2987500000 2.782429759 0.3000000000 2.810582017 0.3012500000 2.835825771 0.3025000000 2.824692192 0.3037500000 2.757991336 0.3050000000 2.652144082 0.3062500000 2.537053658 0.3075000000 2.429966051 0.3087500000 2.332933929 0.3100000000 2.244642156 0.3112500000 2.164698671 0.3125000000 2.087888913 0.3137500000 2.007446381 0.3150000000 1.924506958 0.3162500000 1.844433459 0.3175000000 1.771446926 0.3187500000 1.710468080 0.3200000000 1.663435048 0.3212500000 1.624772678 0.3225000000 1.588196590 0.3237500000 1.553732146 0.3250000000 1.526228488 0.3262500000 1.510848967 0.3275000000 1.506875970 0.3287500000 1.503928266 0.3300000000 1.490592650 0.3312500000 1.465598102 0.3325000000 1.437233721 0.3337500000 1.414738886 0.3350000000 1.403723119 0.3362500000 1.405336460 0.3375000000 1.416378838 0.3387500000 1.434361340 0.3400000000 1.463150510 0.3412500000 1.508472320 0.3425000000 1.572552711 0.3437500000 1.653285936 0.3450000000 1.742150437 0.3462500000 1.830235456 0.3475000000 1.917981257 0.3487500000 2.005818467 0.3500000000 2.079307270 0.3512500000 2.114487609 0.3525000000 2.091829290 0.3537500000 2.006325124 0.3550000000 1.876515726 0.3562500000 1.739270627 0.3575000000 1.624717153 0.3587500000 1.540224062 0.3600000000 1.479646951 0.3612500000 1.438066342 0.3625000000 1.412870006 0.3637500000 1.400148207 0.3650000000 1.391981796 0.3662500000 1.377006857 0.3675000000 1.350220449 0.3687500000 1.317207527 0.3700000000 1.284122375 0.3712500000 1.252196065 0.3725000000 1.223601838 0.3737500000 1.204872625 0.3750000000 1.200790732 0.3762500000 1.207870470 0.3775000000 1.217444985 0.3787500000 1.224302640 0.3800000000 1.226567818 0.3812500000 1.218620398 0.3825000000 1.194222686 0.3837500000 1.154315625 0.3850000000 1.106711209 0.3862500000 1.062110088 0.3875000000 1.027781024 0.3887500000 1.001968516 0.3900000000 0.9768261411 0.3912500000 0.9483545360 0.3925000000 0.9198410456 0.3937500000 0.8959863580 0.3950000000 0.8779110211 0.3962500000 0.8642086686 0.3975000000 0.8550979538 0.3987500000 0.8531471987 0.4000000000 0.8595349431 0.4012500000 0.8725655268 0.4025000000 0.8889592319 0.4037500000 0.9028587705 0.4050000000 0.9074069459 0.4062500000 0.9019307130 0.4075000000 0.8926995908 0.4087500000 0.8858906895 0.4100000000 0.8844338662 0.4112500000 0.8872884923 0.4125000000 0.8893985945 0.4137500000 0.8854267699 0.4150000000 0.8722998079 0.4162500000 0.8502266054 0.4175000000 0.8242151433 0.4187500000 0.8017407626 0.4200000000 0.7875964405 0.4212500000 0.7834685736 0.4225000000 0.7898510113 0.4237500000 0.8051780192 0.4250000000 0.8252076529 0.4262500000 0.8444462812 0.4275000000 0.8569249939 0.4287500000 0.8558194659 0.4300000000 0.8363760483 0.4312500000 0.8008905040 0.4325000000 0.7572874757 0.4337500000 0.7124022991 0.4350000000 0.6698947839 0.4362500000 0.6321392082 0.4375000000 0.5999875589 0.4387500000 0.5721499220 0.4400000000 0.5467932200 0.4412500000 0.5243639893 0.4425000000 0.5076915485 0.4437500000 0.4992902303 0.4450000000 0.4999227208 0.4462500000 0.5083081420 0.4475000000 0.5209700264 0.4487500000 0.5335413742 0.4500000000 0.5433333458 0.4512500000 0.5500129515 0.4525000000 0.5539485766 0.4537500000 0.5548368797 0.4550000000 0.5518308311 0.4562500000 0.5444326877 0.4575000000 0.5327382199 0.4587500000 0.5176740621 0.4600000000 0.4999405033 0.4612500000 0.4794450543 0.4625000000 0.4574289863 0.4637500000 0.4372631772 0.4650000000 0.4228711193 0.4662500000 0.4170736298 0.4675000000 0.4196221157 0.4687500000 0.4262134886 0.4700000000 0.4310543504 0.4712500000 0.4315865582 0.4725000000 0.4300627683 0.4737500000 0.4302554894 0.4750000000 0.4337641797 0.4762500000 0.4394324492 0.4775000000 0.4452892041 0.4787500000 0.4505550280 0.4800000000 0.4558620830 0.4812500000 0.4616184048 0.4825000000 0.4664121313 0.4837500000 0.4673059934 0.4850000000 0.4619563845 0.4862500000 0.4508510461 0.4875000000 0.4376919971 0.4887500000 0.4269256161 0.4900000000 0.4204806589 0.4912500000 0.4175458987 0.4925000000 0.4169715856 0.4937500000 0.4185129738 0.4950000000 0.4216457550 0.4962500000 0.4252570695 0.4975000000 0.4285916538 0.4987500000 0.4311918240 0.5000000000 0.4329773503 0.5012500000 0.4335370425 0.5025000000 0.4308901548 0.5037500000 0.4235889359 0.5050000000 0.4129139206 0.5062500000 0.4008432262 0.5075000000 0.3883288006 0.5087500000 0.3759178249 0.5100000000 0.3649429577 0.5112500000 0.3574222509 0.5125000000 0.3539463662 0.5137500000 0.3530728913 0.5150000000 0.3533207573 0.5162500000 0.3545702807 0.5175000000 0.3574352326 0.5187500000 0.3625260041 0.5200000000 0.3700249893 0.5212500000 0.3780071827 0.5225000000 0.3822184006 0.5237500000 0.3799885158 0.5250000000 0.3734661366 0.5262500000 0.3669787456 0.5275000000 0.3625049481 0.5287500000 0.3588711234 0.5300000000 0.3534098732 0.5312500000 0.3443603339 0.5325000000 0.3320263708 0.5337500000 0.3174705471 0.5350000000 0.3017249487 0.5362500000 0.2861073701 0.5375000000 0.2722663133 0.5387500000 0.2617419409 0.5400000000 0.2553272303 0.5412500000 0.2525172470 0.5425000000 0.2517484010 0.5437500000 0.2518058339 0.5450000000 0.2528470388 0.5462500000 0.2555218805 0.5475000000 0.2598299753 0.5487500000 0.2649811722 0.5500000000 0.2693918279 0.5512500000 0.2713777682 0.5525000000 0.2708412295 0.5537500000 0.2698046221 0.5550000000 0.2704112708 0.5562500000 0.2731289724 0.5575000000 0.2767285898 0.5587500000 0.2787646166 0.5600000000 0.2770297336 0.5612500000 0.2711308097 0.5625000000 0.2620811451 0.5637500000 0.2512595317 0.5650000000 0.2401300816 0.5662500000 0.2301836169 0.5675000000 0.2226693464 0.5687500000 0.2179712945 0.5700000000 0.2155560558 0.5712500000 0.2147941751 0.5725000000 0.2153726177 0.5737500000 0.2170955498 0.5750000000 0.2194436339 0.5762500000 0.2212385324 0.5775000000 0.2212221352 0.5787500000 0.2194049573 0.5800000000 0.2171686678 0.5812500000 0.2156364502 0.5825000000 0.2145294815 0.5837500000 0.2130001566 0.5850000000 0.2110322329 0.5862500000 0.2091766544 0.5875000000 0.2072197133 0.5887500000 0.2038422540 0.5900000000 0.1977395444 0.5912500000 0.1889627761 0.5925000000 0.1789309193 0.5937500000 0.1695468739 0.5950000000 0.1623565681 0.5962500000 0.1579756251 0.5975000000 0.1561783382 0.5987500000 0.1563539257 0.6000000000 0.1576054621 0.6012500000 0.1586533952 0.6025000000 0.1584361112 0.6037500000 0.1569685675 0.6050000000 0.1552286033 0.6062500000 0.1542190549 0.6075000000 0.1541249293 0.6087500000 0.1543571585 0.6100000000 0.1543378169 0.6112500000 0.1538967147 0.6125000000 0.1531835029 0.6137500000 0.1524703097 0.6150000000 0.1516380124 0.6162500000 0.1499176931 0.6175000000 0.1466528193 0.6187500000 0.1419468078 0.6200000000 0.1363448231 0.6212500000 0.1304201229 0.6225000000 0.1247851362 0.6237500000 0.1200874823 0.6250000000 0.1166038799 0.6262500000 0.1140212921 0.6275000000 0.1116971125 0.6287500000 0.1092089645 0.6300000000 0.1067602887 0.6312500000 0.1050297915 0.6325000000 0.1045904313 0.6337500000 0.1055913907 0.6350000000 0.1077613870 0.6362500000 0.1105566613 0.6375000000 0.1134957683 0.6387500000 0.1163035256 0.6400000000 0.1189043358 0.6412500000 0.1213812960 0.6425000000 0.1239160322 0.6437500000 0.1267231527 0.6450000000 0.1298920781 0.6462500000 0.1332549717 0.6475000000 0.1364012935 0.6487500000 0.1386552082 0.6500000000 0.1391205750 0.6512500000 0.1372232441 0.6525000000 0.1331713606 0.6537500000 0.1276287909 0.6550000000 0.1211778290 0.6562500000 0.1144258354 0.6575000000 0.1082338814 0.6587500000 0.1033520982 0.6600000000 0.1001252185 0.6612500000 0.9864215636E-01 0.6625000000 0.9878506789E-01 0.6637500000 0.1001799253 0.6650000000 0.1023786218 0.6662500000 0.1049556893 0.6675000000 0.1073702570 0.6687500000 0.1091539388 0.6700000000 0.1104189994 0.6712500000 0.1116687337 0.6725000000 0.1129674247 0.6737500000 0.1137159966 0.6750000000 0.1131727251 0.6762500000 0.1110064012 0.6775000000 0.1075566579 0.6787500000 0.1035907131 0.6800000000 0.9955637138E-01 0.6812500000 0.9529400849E-01 0.6825000000 0.9077061122E-01 0.6837500000 0.8648919839E-01 0.6850000000 0.8284853094E-01 0.6862500000 0.7982071731E-01 0.6875000000 0.7727845515E-01 0.6887500000 0.7511576893E-01 0.6900000000 0.7325608210E-01 0.6912500000 0.7184783846E-01 0.6925000000 0.7122506083E-01 0.6937500000 0.7144588320E-01 0.6950000000 0.7204824165E-01 0.6962500000 0.7237810661E-01 0.6975000000 0.7207548184E-01 0.6987500000 0.7132396088E-01 0.7000000000 0.7061941339E-01 0.7012500000 0.7031932780E-01 0.7025000000 0.7053813096E-01 0.7037500000 0.7115543626E-01 0.7050000000 0.7188494871E-01 0.7062500000 0.7252108375E-01 0.7075000000 0.7299157243E-01 0.7087500000 0.7336774780E-01 0.7100000000 0.7377254425E-01 0.7112500000 0.7405192193E-01 0.7125000000 0.7373434264E-01 0.7137500000 0.7242818790E-01 0.7150000000 0.7013142554E-01 0.7162500000 0.6717521736E-01 0.7175000000 0.6386886433E-01 0.7187500000 0.6041200906E-01 0.7200000000 0.5722401372E-01 0.7212500000 0.5487021257E-01 0.7225000000 0.5362409235E-01 0.7237500000 0.5332077669E-01 0.7250000000 0.5359005043E-01 0.7262500000 0.5415382690E-01 0.7275000000 0.5488877537E-01 0.7287500000 0.5576760203E-01 0.7300000000 0.5678057070E-01 0.7312500000 0.5777948790E-01 0.7325000000 0.5860894869E-01 0.7337500000 0.5937930141E-01 0.7350000000 0.6029835320E-01 0.7362500000 0.6135643853E-01 0.7375000000 0.6235800868E-01 0.7387500000 0.6307743379E-01 0.7400000000 0.6325176499E-01 0.7412500000 0.6257864972E-01 0.7425000000 0.6096625087E-01 0.7437500000 0.5870703438E-01 0.7450000000 0.5622178860E-01 0.7462500000 0.5375801310E-01 0.7475000000 0.5147273473E-01 0.7487500000 0.4950908105E-01 0.7500000000 0.4784982315E-01 0.7512500000 0.4641430451E-01 0.7525000000 0.4527176889E-01 0.7537500000 0.4443574246E-01 0.7550000000 0.4367286057E-01 0.7562500000 0.4280497622E-01 0.7575000000 0.4192044932E-01 0.7587500000 0.4116485431E-01 0.7600000000 0.4064614944E-01 0.7612500000 0.4049636618E-01 0.7625000000 0.4072415693E-01 0.7637500000 0.4112164641E-01 0.7650000000 0.4151314943E-01 0.7662500000 0.4191940113E-01 0.7675000000 0.4237545578E-01 0.7687500000 0.4276737177E-01 0.7700000000 0.4284387285E-01 0.7712500000 0.4240416648E-01 0.7725000000 0.4144475049E-01 0.7737500000 0.4012104706E-01 0.7750000000 0.3867231157E-01 0.7762500000 0.3736403212E-01 0.7775000000 0.3643474918E-01 0.7787500000 0.3601196078E-01 0.7800000000 0.3600302611E-01 0.7812500000 0.3606407833E-01 0.7825000000 0.3583170580E-01 0.7837500000 0.3527781614E-01 0.7850000000 0.3467208505E-01 0.7862500000 0.3425186846E-01 0.7875000000 0.3407277216E-01 0.7887500000 0.3407380382E-01 0.7900000000 0.3420247151E-01 0.7912500000 0.3442566617E-01 0.7925000000 0.3465018051E-01 0.7937500000 0.3474445701E-01 0.7950000000 0.3467944578E-01 0.7962500000 0.3450159551E-01 0.7975000000 0.3421320276E-01 0.7987500000 0.3390441936E-01 0.8000000000 0.3388889686E-01 0.8012500000 0.3449837581E-01 0.8025000000 0.3577054838E-01 0.8037500000 0.3733205669E-01 0.8050000000 0.3853459736E-01 0.8062500000 0.3885168391E-01 0.8075000000 0.3823856798E-01 0.8087500000 0.3699147217E-01 0.8100000000 0.3536177075E-01 0.8112500000 0.3355759910E-01 0.8125000000 0.3185866080E-01 0.8137500000 0.3048513881E-01 0.8150000000 0.2946327153E-01 0.8162500000 0.2865778159E-01 0.8175000000 0.2791318285E-01 0.8187500000 0.2719399109E-01 0.8200000000 0.2663736326E-01 0.8212500000 0.2644627608E-01 0.8225000000 0.2673606712E-01 0.8237500000 0.2746064285E-01 0.8250000000 0.2841873484E-01 0.8262500000 0.2934852258E-01 0.8275000000 0.3000172682E-01 0.8287500000 0.3015735943E-01 0.8300000000 0.2973847827E-01 0.8312500000 0.2888391057E-01 0.8325000000 0.2783141222E-01 0.8337500000 0.2677081794E-01 0.8350000000 0.2582622492E-01 0.8362500000 0.2508066776E-01 0.8375000000 0.2449042628E-01 0.8387500000 0.2387468902E-01 0.8400000000 0.2311207995E-01 0.8412500000 0.2221989843E-01 0.8425000000 0.2124255146E-01 0.8437500000 0.2020837807E-01 0.8450000000 0.1917475040E-01 0.8462500000 0.1821710294E-01 0.8475000000 0.1737198113E-01 0.8487500000 0.1663232551E-01 0.8500000000 0.1600081690E-01 0.8512500000 0.1551848743E-01 0.8525000000 0.1521615726E-01 0.8537500000 0.1507607310E-01 0.8550000000 0.1504399304E-01 0.8562500000 0.1506533422E-01 0.8575000000 0.1510383117E-01 0.8587500000 0.1513158168E-01 0.8600000000 0.1512452219E-01 0.8612500000 0.1506307299E-01 0.8625000000 0.1493261233E-01 0.8637500000 0.1472042506E-01 0.8650000000 0.1440141326E-01 0.8662500000 0.1397297837E-01 0.8675000000 0.1349933046E-01 0.8687500000 0.1306723988E-01 0.8700000000 0.1273134327E-01 0.8712500000 0.1251426841E-01 0.8725000000 0.1241787396E-01 0.8737500000 0.1242256613E-01 0.8750000000 0.1250327638E-01 0.8762500000 0.1265837348E-01 0.8775000000 0.1289474601E-01 0.8787500000 0.1318177552E-01 0.8800000000 0.1345452682E-01 0.8812500000 0.1365274604E-01 0.8825000000 0.1373984594E-01 0.8837500000 0.1371135998E-01 0.8850000000 0.1358231940E-01 0.8862500000 0.1337923468E-01 0.8875000000 0.1314815145E-01 0.8887500000 0.1291649777E-01 0.8900000000 0.1266903118E-01 0.8912500000 0.1239330849E-01 0.8925000000 0.1213540160E-01 0.8937500000 0.1198130637E-01 0.8950000000 0.1198698680E-01 0.8962500000 0.1215209019E-01 0.8975000000 0.1243391963E-01 0.8987500000 0.1275792577E-01 0.9000000000 0.1304257805E-01 0.9012500000 0.1322306358E-01 0.9025000000 0.1324342990E-01 0.9037500000 0.1306245075E-01 0.9050000000 0.1266694505E-01 0.9062500000 0.1209957499E-01 0.9075000000 0.1147324582E-01 0.9087500000 0.1090329731E-01 0.9100000000 0.1044014143E-01 0.9112500000 0.1007917191E-01 0.9125000000 0.9811986908E-02 0.9137500000 0.9647602813E-02 0.9150000000 0.9592295781E-02 0.9162500000 0.9623517132E-02 0.9175000000 0.9684576404E-02 0.9187500000 0.9718178243E-02 0.9200000000 0.9716849107E-02 0.9212500000 0.9719422237E-02 0.9225000000 0.9750444055E-02 0.9237500000 0.9797371146E-02 0.9250000000 0.9843770958E-02 0.9262500000 0.9892838413E-02 0.9275000000 0.9968090541E-02 0.9287500000 0.1010051723E-01 0.9300000000 0.1030724592E-01 0.9312500000 0.1057942376E-01 0.9325000000 0.1085563787E-01 0.9337500000 0.1102135791E-01 0.9350000000 0.1101358898E-01 0.9362500000 0.1088330136E-01 0.9375000000 0.1068396922E-01 0.9387500000 0.1039217339E-01 0.9400000000 0.9988607707E-02 0.9412500000 0.9543257074E-02 0.9425000000 0.9167891247E-02 0.9437500000 0.8933866698E-02 0.9450000000 0.8856619658E-02 0.9462500000 0.8905239144E-02 0.9475000000 0.9002469518E-02 0.9487500000 0.9029476961E-02 0.9500000000 0.8878841233E-02 0.9512500000 0.8551786634E-02 0.9525000000 0.8154158808E-02 0.9537500000 0.7787729770E-02 0.9550000000 0.7496693395E-02 0.9562500000 0.7285067529E-02 0.9575000000 0.7140487898E-02 0.9587500000 0.7043165889E-02 0.9600000000 0.6968542430E-02 0.9612500000 0.6890592551E-02 0.9625000000 0.6799344562E-02 0.9637500000 0.6712820755E-02 0.9650000000 0.6653234344E-02 0.9662500000 0.6619495325E-02 0.9675000000 0.6588705374E-02 0.9687500000 0.6544927997E-02 0.9700000000 0.6498442312E-02 0.9712500000 0.6465582790E-02 0.9725000000 0.6445132659E-02 0.9737500000 0.6421629455E-02 0.9750000000 0.6375017282E-02 0.9762500000 0.6281416799E-02 0.9775000000 0.6135794576E-02 0.9787500000 0.5969727275E-02 0.9800000000 0.5822089399E-02 0.9812500000 0.5711193140E-02 0.9825000000 0.5634473694E-02 0.9837500000 0.5576580735E-02 0.9850000000 0.5518949458E-02 0.9862500000 0.5451097511E-02 0.9875000000 0.5374546283E-02 0.9887500000 0.5294897232E-02 0.9900000000 0.5217188207E-02 0.9912500000 0.5146890284E-02 0.9925000000 0.5085865647E-02 0.9937500000 0.5029761716E-02 0.9950000000 0.4973788315E-02 0.9962500000 0.4919268069E-02 0.9975000000 0.4870994494E-02 0.9987500000 0.4831110925E-02 elk-7.2.42/examples/BSE/Si/PaxHeaders.21776/EPSILON_BSE_11.OUT0000644000000000000000000000013214061636520017425 xustar0030 mtime=1623670096.011101475 30 atime=1623670096.010101475 30 ctime=1623670096.011101475 elk-7.2.42/examples/BSE/Si/EPSILON_BSE_11.OUT0000644002504400250440000016350614061636520021475 0ustar00dewhurstdewhurst00000000000000 0.000000000 11.17590407 0.1250000000E-02 11.17652447 0.2500000000E-02 11.17838616 0.3750000000E-02 11.18149065 0.5000000000E-02 11.18584046 0.6250000000E-02 11.19143913 0.7500000000E-02 11.19829121 0.8750000000E-02 11.20640230 0.1000000000E-01 11.21577901 0.1125000000E-01 11.22642905 0.1250000000E-01 11.23836119 0.1375000000E-01 11.25158529 0.1500000000E-01 11.26611233 0.1625000000E-01 11.28195444 0.1750000000E-01 11.29912491 0.1875000000E-01 11.31763825 0.2000000000E-01 11.33751017 0.2125000000E-01 11.35875768 0.2250000000E-01 11.38139909 0.2375000000E-01 11.40545406 0.2500000000E-01 11.43094364 0.2625000000E-01 11.45789037 0.2750000000E-01 11.48631825 0.2875000000E-01 11.51625288 0.3000000000E-01 11.54772148 0.3125000000E-01 11.58075296 0.3250000000E-01 11.61537804 0.3375000000E-01 11.65162926 0.3500000000E-01 11.68954114 0.3625000000E-01 11.72915022 0.3750000000E-01 11.77049518 0.3875000000E-01 11.81361696 0.4000000000E-01 11.85855889 0.4125000000E-01 11.90536676 0.4250000000E-01 11.95408903 0.4375000000E-01 12.00477693 0.4500000000E-01 12.05748466 0.4625000000E-01 12.11226950 0.4750000000E-01 12.16919210 0.4875000000E-01 12.22831657 0.5000000000E-01 12.28971080 0.5125000000E-01 12.35344664 0.5250000000E-01 12.41960019 0.5375000000E-01 12.48825206 0.5500000000E-01 12.55948771 0.5625000000E-01 12.63339777 0.5750000000E-01 12.71007840 0.5875000000E-01 12.78963172 0.6000000000E-01 12.87216622 0.6125000000E-01 12.95779726 0.6250000000E-01 13.04664759 0.6375000000E-01 13.13884793 0.6500000000E-01 13.23453763 0.6625000000E-01 13.33386535 0.6750000000E-01 13.43698985 0.6875000000E-01 13.54408085 0.7000000000E-01 13.65531999 0.7125000000E-01 13.77090187 0.7250000000E-01 13.89103528 0.7375000000E-01 14.01594445 0.7500000000E-01 14.14587058 0.7625000000E-01 14.28107344 0.7750000000E-01 14.42183328 0.7875000000E-01 14.56845285 0.8000000000E-01 14.72125980 0.8125000000E-01 14.88060933 0.8250000000E-01 15.04688721 0.8375000000E-01 15.22051322 0.8500000000E-01 15.40194511 0.8625000000E-01 15.59168303 0.8750000000E-01 15.79027479 0.8875000000E-01 15.99832177 0.9000000000E-01 16.21648584 0.9125000000E-01 16.44549732 0.9250000000E-01 16.68616440 0.9375000000E-01 16.93938392 0.9500000000E-01 17.20615425 0.9625000000E-01 17.48759020 0.9750000000E-01 17.78494081 0.9875000000E-01 18.09961016 0.1000000000 18.43318204 0.1012500000 18.78744903 0.1025000000 19.16444660 0.1037500000 19.56649272 0.1050000000 19.99623304 0.1062500000 20.45669055 0.1075000000 20.95131637 0.1087500000 21.48403332 0.1100000000 22.05925374 0.1112500000 22.68183218 0.1125000000 23.35686991 0.1137500000 24.08919921 0.1150000000 24.88218923 0.1162500000 25.73513972 0.1175000000 26.63780929 0.1187500000 27.55948390 0.1200000000 28.42929980 0.1212500000 29.10957539 0.1225000000 29.39065155 0.1237500000 29.08916662 0.1250000000 28.27984121 0.1262500000 27.38214824 0.1275000000 26.88353439 0.1287500000 27.03681360 0.1300000000 27.75472801 0.1312500000 28.69446464 0.1325000000 29.42090741 0.1337500000 29.59053621 0.1350000000 29.18239111 0.1362500000 28.51745051 0.1375000000 27.88542356 0.1387500000 27.25621194 0.1400000000 26.40179147 0.1412500000 25.08320894 0.1425000000 23.27149814 0.1437500000 21.35098084 0.1450000000 19.77026932 0.1462500000 18.55299807 0.1475000000 17.31391573 0.1487500000 15.53640976 0.1500000000 12.85392738 0.1512500000 9.445410935 0.1525000000 6.022950455 0.1537500000 3.049998238 0.1550000000 0.4696160537 0.1562500000 -1.774958968 0.1575000000 -3.498895006 0.1587500000 -4.577308110 0.1600000000 -5.190242437 0.1612500000 -5.667387323 0.1625000000 -6.214927921 0.1637500000 -6.854047992 0.1650000000 -7.563624420 0.1662500000 -8.359310639 0.1675000000 -9.182186673 0.1687500000 -9.806089765 0.1700000000 -10.03530563 0.1712500000 -9.868272348 0.1725000000 -9.359736575 0.1737500000 -8.556939958 0.1750000000 -7.591457491 0.1762500000 -6.695472974 0.1775000000 -6.138515191 0.1787500000 -6.108690719 0.1800000000 -6.532684610 0.1812500000 -7.094893852 0.1825000000 -7.545768909 0.1837500000 -7.862878890 0.1850000000 -8.093952153 0.1862500000 -8.194888447 0.1875000000 -8.066006125 0.1887500000 -7.700821340 0.1900000000 -7.266109592 0.1912500000 -6.992055243 0.1925000000 -7.004889818 0.1937500000 -7.284195352 0.1950000000 -7.740617642 0.1962500000 -8.309063125 0.1975000000 -8.958623214 0.1987500000 -9.623623989 0.2000000000 -10.18497708 0.2012500000 -10.54934870 0.2025000000 -10.70514260 0.2037500000 -10.70866209 0.2050000000 -10.64523215 0.2062500000 -10.58101553 0.2075000000 -10.51815053 0.2087500000 -10.39643949 0.2100000000 -10.17387879 0.2112500000 -9.876207829 0.2125000000 -9.567282525 0.2137500000 -9.308774798 0.2150000000 -9.124928903 0.2162500000 -8.999806953 0.2175000000 -8.914767459 0.2187500000 -8.868971056 0.2200000000 -8.854016538 0.2212500000 -8.840211971 0.2225000000 -8.795676193 0.2237500000 -8.685565252 0.2250000000 -8.484712521 0.2262500000 -8.212857333 0.2275000000 -7.918321263 0.2287500000 -7.633708895 0.2300000000 -7.370316479 0.2312500000 -7.143713676 0.2325000000 -6.975295223 0.2337500000 -6.867684786 0.2350000000 -6.810013624 0.2362500000 -6.792411287 0.2375000000 -6.806937800 0.2387500000 -6.859109932 0.2400000000 -6.953517800 0.2412500000 -7.067307148 0.2425000000 -7.171557547 0.2437500000 -7.249639797 0.2450000000 -7.277518876 0.2462500000 -7.233363022 0.2475000000 -7.132537147 0.2487500000 -7.027217377 0.2500000000 -6.970514654 0.2512500000 -6.972542358 0.2525000000 -6.988178694 0.2537500000 -6.962612069 0.2550000000 -6.883582463 0.2562500000 -6.769171972 0.2575000000 -6.626594131 0.2587500000 -6.455098752 0.2600000000 -6.271642761 0.2612500000 -6.102644044 0.2625000000 -5.959148709 0.2637500000 -5.837141491 0.2650000000 -5.731905183 0.2662500000 -5.640704314 0.2675000000 -5.560320779 0.2687500000 -5.491598937 0.2700000000 -5.439725081 0.2712500000 -5.401115942 0.2725000000 -5.362958920 0.2737500000 -5.318487072 0.2750000000 -5.262877683 0.2762500000 -5.186934950 0.2775000000 -5.087668375 0.2787500000 -4.969193393 0.2800000000 -4.835643616 0.2812500000 -4.692720981 0.2825000000 -4.550457666 0.2837500000 -4.418353408 0.2850000000 -4.300965557 0.2862500000 -4.202902322 0.2875000000 -4.128264076 0.2887500000 -4.069159419 0.2900000000 -4.009038090 0.2912500000 -3.941652227 0.2925000000 -3.875363858 0.2937500000 -3.827513633 0.2950000000 -3.816772684 0.2962500000 -3.841886316 0.2975000000 -3.874117300 0.2987500000 -3.886524191 0.3000000000 -3.878455483 0.3012500000 -3.867122590 0.3025000000 -3.868519241 0.3037500000 -3.884536842 0.3050000000 -3.902951340 0.3062500000 -3.908665037 0.3075000000 -3.891911673 0.3087500000 -3.848322890 0.3100000000 -3.779782041 0.3112500000 -3.693956914 0.3125000000 -3.600127692 0.3137500000 -3.507415334 0.3150000000 -3.423692861 0.3162500000 -3.351590116 0.3175000000 -3.287618323 0.3187500000 -3.225752706 0.3200000000 -3.161265314 0.3212500000 -3.095037310 0.3225000000 -3.034515660 0.3237500000 -2.985833441 0.3250000000 -2.945852487 0.3262500000 -2.905143839 0.3275000000 -2.857558627 0.3287500000 -2.803243161 0.3300000000 -2.746228032 0.3312500000 -2.691349810 0.3325000000 -2.639266220 0.3337500000 -2.584327178 0.3350000000 -2.521410273 0.3362500000 -2.453012686 0.3375000000 -2.388323935 0.3387500000 -2.337525813 0.3400000000 -2.304948192 0.3412500000 -2.285830231 0.3425000000 -2.272962107 0.3437500000 -2.267263022 0.3450000000 -2.276950423 0.3462500000 -2.307372724 0.3475000000 -2.355501467 0.3487500000 -2.409057096 0.3500000000 -2.448415233 0.3512500000 -2.458904568 0.3525000000 -2.441414307 0.3537500000 -2.406152923 0.3550000000 -2.363818679 0.3562500000 -2.323720702 0.3575000000 -2.290626812 0.3587500000 -2.262847472 0.3600000000 -2.237016129 0.3612500000 -2.211355129 0.3625000000 -2.185824399 0.3637500000 -2.162429192 0.3650000000 -2.142329482 0.3662500000 -2.121953849 0.3675000000 -2.095591820 0.3687500000 -2.063918870 0.3700000000 -2.035908949 0.3712500000 -2.019854750 0.3725000000 -2.016612979 0.3737500000 -2.024069763 0.3750000000 -2.042112689 0.3762500000 -2.068243352 0.3775000000 -2.094035838 0.3787500000 -2.110683829 0.3800000000 -2.113302901 0.3812500000 -2.101604263 0.3825000000 -2.081008059 0.3837500000 -2.058646228 0.3850000000 -2.036145425 0.3862500000 -2.009831280 0.3875000000 -1.978008798 0.3887500000 -1.943740344 0.3900000000 -1.911338266 0.3912500000 -1.882411821 0.3925000000 -1.855074398 0.3937500000 -1.828137046 0.3950000000 -1.803371293 0.3962500000 -1.782714027 0.3975000000 -1.768170381 0.3987500000 -1.761417423 0.4000000000 -1.759256153 0.4012500000 -1.754869577 0.4025000000 -1.744218495 0.4037500000 -1.726372361 0.4050000000 -1.700722133 0.4062500000 -1.667065339 0.4075000000 -1.626469009 0.4087500000 -1.581259823 0.4100000000 -1.534202070 0.4112500000 -1.487139441 0.4125000000 -1.440883919 0.4137500000 -1.396438662 0.4150000000 -1.355658529 0.4162500000 -1.320698596 0.4175000000 -1.293107017 0.4187500000 -1.273784364 0.4200000000 -1.263839190 0.4212500000 -1.265028352 0.4225000000 -1.277125353 0.4237500000 -1.295412262 0.4250000000 -1.313666809 0.4262500000 -1.328222348 0.4275000000 -1.337771695 0.4287500000 -1.340908171 0.4300000000 -1.336242066 0.4312500000 -1.324977507 0.4325000000 -1.310632480 0.4337500000 -1.295359603 0.4350000000 -1.277875709 0.4362500000 -1.255619563 0.4375000000 -1.228135953 0.4387500000 -1.197962837 0.4400000000 -1.169134642 0.4412500000 -1.145070599 0.4425000000 -1.127020333 0.4437500000 -1.113266590 0.4450000000 -1.099993717 0.4462500000 -1.084873012 0.4475000000 -1.069863604 0.4487500000 -1.059471548 0.4500000000 -1.056984181 0.4512500000 -1.061568758 0.4525000000 -1.067709227 0.4537500000 -1.069444068 0.4550000000 -1.065297491 0.4562500000 -1.056917047 0.4575000000 -1.044825966 0.4587500000 -1.028043631 0.4600000000 -1.006861680 0.4612500000 -0.9839078004 0.4625000000 -0.9624674396 0.4637500000 -0.9443807922 0.4650000000 -0.9290866411 0.4662500000 -0.9142293245 0.4675000000 -0.8977140929 0.4687500000 -0.8795000262 0.4700000000 -0.8607306317 0.4712500000 -0.8420981256 0.4725000000 -0.8241516852 0.4737500000 -0.8082189239 0.4750000000 -0.7959282021 0.4762500000 -0.7875394407 0.4775000000 -0.7810797821 0.4787500000 -0.7739839831 0.4800000000 -0.7650762981 0.4812500000 -0.7546670272 0.4825000000 -0.7438193373 0.4837500000 -0.7335545011 0.4850000000 -0.7242037419 0.4862500000 -0.7151592917 0.4875000000 -0.7050355623 0.4887500000 -0.6926781635 0.4900000000 -0.6780896705 0.4912500000 -0.6619572176 0.4925000000 -0.6451178240 0.4937500000 -0.6287082566 0.4950000000 -0.6140275027 0.4962500000 -0.6021071751 0.4975000000 -0.5930877377 0.4987500000 -0.5858991798 0.5000000000 -0.5797736006 0.5012500000 -0.5758585647 0.5025000000 -0.5757403704 0.5037500000 -0.5784890027 0.5050000000 -0.5803036524 0.5062500000 -0.5779867934 0.5075000000 -0.5714703432 0.5087500000 -0.5622156512 0.5100000000 -0.5514930039 0.5112500000 -0.5404889790 0.5125000000 -0.5299329782 0.5137500000 -0.5193345384 0.5150000000 -0.5079363480 0.5162500000 -0.4961438166 0.5175000000 -0.4851789720 0.5187500000 -0.4757839099 0.5200000000 -0.4679263788 0.5212500000 -0.4617313951 0.5225000000 -0.4575096276 0.5237500000 -0.4547277822 0.5250000000 -0.4519446169 0.5262500000 -0.4479409584 0.5275000000 -0.4425246462 0.5287500000 -0.4360164896 0.5300000000 -0.4284215178 0.5312500000 -0.4194874024 0.5325000000 -0.4092551364 0.5337500000 -0.3981688923 0.5350000000 -0.3867315469 0.5362500000 -0.3752386239 0.5375000000 -0.3637668618 0.5387500000 -0.3523356607 0.5400000000 -0.3410306162 0.5412500000 -0.3300185747 0.5425000000 -0.3195621888 0.5437500000 -0.3100694168 0.5450000000 -0.3020596464 0.5462500000 -0.2958866796 0.5475000000 -0.2913335048 0.5487500000 -0.2875370512 0.5500000000 -0.2834020153 0.5512500000 -0.2781126612 0.5525000000 -0.2713919585 0.5537500000 -0.2635058177 0.5550000000 -0.2549614238 0.5562500000 -0.2461965884 0.5575000000 -0.2374797011 0.5587500000 -0.2289183528 0.5600000000 -0.2205123882 0.5612500000 -0.2122482337 0.5625000000 -0.2041670934 0.5637500000 -0.1964027954 0.5650000000 -0.1892232461 0.5662500000 -0.1829957732 0.5675000000 -0.1779224964 0.5687500000 -0.1736209116 0.5700000000 -0.1692381726 0.5712500000 -0.1641958029 0.5725000000 -0.1584464031 0.5737500000 -0.1521866367 0.5750000000 -0.1456530561 0.5762500000 -0.1390227767 0.5775000000 -0.1323710498 0.5787500000 -0.1257175704 0.5800000000 -0.1190847771 0.5812500000 -0.1125041039 0.5825000000 -0.1060009287 0.5837500000 -0.9958887737E-01 0.5850000000 -0.9327233023E-01 0.5862500000 -0.8705042948E-01 0.5875000000 -0.8091998516E-01 0.5887500000 -0.7487719443E-01 0.5900000000 -0.6891870218E-01 0.5912500000 -0.6304246408E-01 0.5925000000 -0.5724857442E-01 0.5937500000 -0.5153942809E-01 0.5950000000 -0.4591696368E-01 0.5962500000 -0.4037518399E-01 0.5975000000 -0.3489628145E-01 0.5987500000 -0.2946247762E-01 0.6000000000 -0.2406831650E-01 0.6012500000 -0.1871703916E-01 0.6025000000 -0.1341282106E-01 0.6037500000 -0.8157988848E-02 0.6050000000 -0.2953395836E-02 0.6062500000 0.2200479261E-02 0.6075000000 0.7302283714E-02 0.6087500000 0.1234811881E-01 0.6100000000 0.1732910850E-01 0.6112500000 0.2222905971E-01 0.6125000000 0.2702748051E-01 0.6137500000 0.3171824690E-01 0.6150000000 0.3633557707E-01 0.6162500000 0.4093865299E-01 0.6175000000 0.4555864739E-01 0.6187500000 0.5018750173E-01 0.6200000000 0.5480555426E-01 0.6212500000 0.5939896981E-01 0.6225000000 0.6396104726E-01 0.6237500000 0.6848866853E-01 0.6250000000 0.7297984620E-01 0.6262500000 0.7743332917E-01 0.6275000000 0.8184866743E-01 0.6287500000 0.8622601351E-01 0.6300000000 0.9056585183E-01 0.6312500000 0.9486880343E-01 0.6325000000 0.9913550636E-01 0.6337500000 0.1033665355 0.6350000000 0.1075623451 0.6362500000 0.1117232818 0.6375000000 0.1158498076 0.6387500000 0.1199428901 0.6400000000 0.1240039015 0.6412500000 0.1280338149 0.6425000000 0.1320327996 0.6437500000 0.1360003972 0.6450000000 0.1399355332 0.6462500000 0.1438363078 0.6475000000 0.1477004171 0.6487500000 0.1515275874 0.6500000000 0.1553227526 0.6512500000 0.1590937752 0.6525000000 0.1628447827 0.6537500000 0.1665749970 0.6550000000 0.1702821491 0.6562500000 0.1739645995 0.6575000000 0.1776215945 0.6587500000 0.1812529539 0.6600000000 0.1848587885 0.6612500000 0.1884393406 0.6625000000 0.1919948329 0.6637500000 0.1955251628 0.6650000000 0.1990294868 0.6662500000 0.2025057868 0.6675000000 0.2059501040 0.6687500000 0.2093548762 0.6700000000 0.2127079141 0.6712500000 0.2159985031 0.6725000000 0.2192344480 0.6737500000 0.2224491185 0.6750000000 0.2256742041 0.6762500000 0.2289151152 0.6775000000 0.2321603227 0.6787500000 0.2353974285 0.6800000000 0.2386185558 0.6812500000 0.2418196865 0.6825000000 0.2449990612 0.6837500000 0.2481560728 0.6850000000 0.2512906626 0.6862500000 0.2544030199 0.6875000000 0.2574934363 0.6887500000 0.2605622380 0.6900000000 0.2636097540 0.6912500000 0.2666363035 0.6925000000 0.2696421907 0.6937500000 0.2726277036 0.6950000000 0.2755931150 0.6962500000 0.2785386836 0.6975000000 0.2814646557 0.6987500000 0.2843712667 0.7000000000 0.2872587420 0.7012500000 0.2901272988 0.7025000000 0.2929771464 0.7037500000 0.2958084876 0.7050000000 0.2986215190 0.7062500000 0.3014164320 0.7075000000 0.3041934127 0.7087500000 0.3069526430 0.7100000000 0.3096943005 0.7112500000 0.3124185590 0.7125000000 0.3151255888 0.7137500000 0.3178155567 0.7150000000 0.3204886265 0.7162500000 0.3231449591 0.7175000000 0.3257847123 0.7187500000 0.3284080416 0.7200000000 0.3310150997 0.7212500000 0.3336060370 0.7225000000 0.3361810016 0.7237500000 0.3387401391 0.7250000000 0.3412835933 0.7262500000 0.3438115056 0.7275000000 0.3463240156 0.7287500000 0.3488212608 0.7300000000 0.3513033768 0.7312500000 0.3537704974 0.7325000000 0.3562227547 0.7337500000 0.3586602787 0.7350000000 0.3610831982 0.7362500000 0.3634916398 0.7375000000 0.3658857290 0.7387500000 0.3682655892 0.7400000000 0.3706313426 0.7412500000 0.3729831097 0.7425000000 0.3753210097 0.7437500000 0.3776451601 0.7450000000 0.3799556770 0.7462500000 0.3822526754 0.7475000000 0.3845362686 0.7487500000 0.3868065686 0.7500000000 0.3890636861 0.7512500000 0.3913077307 0.7525000000 0.3935388104 0.7537500000 0.3957570321 0.7550000000 0.3979625016 0.7562500000 0.4001553232 0.7575000000 0.4023356002 0.7587500000 0.4045034347 0.7600000000 0.4066589277 0.7612500000 0.4088021789 0.7625000000 0.4109332870 0.7637500000 0.4130523497 0.7650000000 0.4151594634 0.7662500000 0.4172547237 0.7675000000 0.4193382248 0.7687500000 0.4214100602 0.7700000000 0.4234703223 0.7712500000 0.4255191024 0.7725000000 0.4275564908 0.7737500000 0.4295825771 0.7750000000 0.4315974496 0.7762500000 0.4336011959 0.7775000000 0.4355939026 0.7787500000 0.4375756553 0.7800000000 0.4395465388 0.7812500000 0.4415066370 0.7825000000 0.4434560330 0.7837500000 0.4453948088 0.7850000000 0.4473230458 0.7862500000 0.4492408244 0.7875000000 0.4511482243 0.7887500000 0.4530453243 0.7900000000 0.4549322025 0.7912500000 0.4568089359 0.7925000000 0.4586756011 0.7937500000 0.4605322738 0.7950000000 0.4623790288 0.7962500000 0.4642159403 0.7975000000 0.4660430818 0.7987500000 0.4678605259 0.8000000000 0.4696683445 0.8012500000 0.4714666090 0.8025000000 0.4732553898 0.8037500000 0.4750347568 0.8050000000 0.4768047792 0.8062500000 0.4785655256 0.8075000000 0.4803170636 0.8087500000 0.4820594604 0.8100000000 0.4837927827 0.8112500000 0.4855170962 0.8125000000 0.4872324662 0.8137500000 0.4889389573 0.8150000000 0.4906366335 0.8162500000 0.4923255581 0.8175000000 0.4940057941 0.8187500000 0.4956774034 0.8200000000 0.4973404478 0.8212500000 0.4989949883 0.8225000000 0.5006410852 0.8237500000 0.5022787985 0.8250000000 0.5039081874 0.8262500000 0.5055293108 0.8275000000 0.5071422268 0.8287500000 0.5087469932 0.8300000000 0.5103436670 0.8312500000 0.5119323048 0.8325000000 0.5135129628 0.8337500000 0.5150856965 0.8350000000 0.5166505611 0.8362500000 0.5182076109 0.8375000000 0.5197569002 0.8387500000 0.5212984825 0.8400000000 0.5228324109 0.8412500000 0.5243587380 0.8425000000 0.5258775159 0.8437500000 0.5273887962 0.8450000000 0.5288926303 0.8462500000 0.5303890689 0.8475000000 0.5318781621 0.8487500000 0.5333599600 0.8500000000 0.5348345118 0.8512500000 0.5363018665 0.8525000000 0.5377620728 0.8537500000 0.5392151786 0.8550000000 0.5406612316 0.8562500000 0.5421002792 0.8575000000 0.5435323682 0.8587500000 0.5449575449 0.8600000000 0.5463758555 0.8612500000 0.5477873456 0.8625000000 0.5491920604 0.8637500000 0.5505900448 0.8650000000 0.5519813431 0.8662500000 0.5533659996 0.8675000000 0.5547440579 0.8687500000 0.5561155613 0.8700000000 0.5574805528 0.8712500000 0.5588390749 0.8725000000 0.5601911699 0.8737500000 0.5615368797 0.8750000000 0.5628762458 0.8762500000 0.5642093093 0.8775000000 0.5655361110 0.8787500000 0.5668566915 0.8800000000 0.5681710908 0.8812500000 0.5694793488 0.8825000000 0.5707815048 0.8837500000 0.5720775981 0.8850000000 0.5733676674 0.8862500000 0.5746517513 0.8875000000 0.5759298879 0.8887500000 0.5772021150 0.8900000000 0.5784684701 0.8912500000 0.5797289906 0.8925000000 0.5809837133 0.8937500000 0.5822326749 0.8950000000 0.5834759117 0.8962500000 0.5847134596 0.8975000000 0.5859453545 0.8987500000 0.5871716317 0.9000000000 0.5883923264 0.9012500000 0.5896074735 0.9025000000 0.5908171076 0.9037500000 0.5920212630 0.9050000000 0.5932199737 0.9062500000 0.5944132734 0.9075000000 0.5956011957 0.9087500000 0.5967837737 0.9100000000 0.5979610405 0.9112500000 0.5991330287 0.9125000000 0.6002997707 0.9137500000 0.6014612987 0.9150000000 0.6026176447 0.9162500000 0.6037688403 0.9175000000 0.6049149168 0.9187500000 0.6060559056 0.9200000000 0.6071918375 0.9212500000 0.6083227432 0.9225000000 0.6094486531 0.9237500000 0.6105695975 0.9250000000 0.6116856062 0.9262500000 0.6127967091 0.9275000000 0.6139029357 0.9287500000 0.6150043152 0.9300000000 0.6161008766 0.9312500000 0.6171926489 0.9325000000 0.6182796605 0.9337500000 0.6193619400 0.9350000000 0.6204395154 0.9362500000 0.6215124146 0.9375000000 0.6225806656 0.9387500000 0.6236442957 0.9400000000 0.6247033322 0.9412500000 0.6257578024 0.9425000000 0.6268077330 0.9437500000 0.6278531508 0.9450000000 0.6288940822 0.9462500000 0.6299305537 0.9475000000 0.6309625912 0.9487500000 0.6319902206 0.9500000000 0.6330134678 0.9512500000 0.6340323581 0.9525000000 0.6350469169 0.9537500000 0.6360571694 0.9550000000 0.6370631404 0.9562500000 0.6380648548 0.9575000000 0.6390623371 0.9587500000 0.6400556117 0.9600000000 0.6410447029 0.9612500000 0.6420296346 0.9625000000 0.6430104307 0.9637500000 0.6439871150 0.9650000000 0.6449597108 0.9662500000 0.6459282416 0.9675000000 0.6468927305 0.9687500000 0.6478532006 0.9700000000 0.6488096745 0.9712500000 0.6497621751 0.9725000000 0.6507107247 0.9737500000 0.6516553458 0.9750000000 0.6525960605 0.9762500000 0.6535328907 0.9775000000 0.6544658585 0.9787500000 0.6553949854 0.9800000000 0.6563202930 0.9812500000 0.6572418027 0.9825000000 0.6581595356 0.9837500000 0.6590735130 0.9850000000 0.6599837557 0.9862500000 0.6608902844 0.9875000000 0.6617931199 0.9887500000 0.6626922826 0.9900000000 0.6635877929 0.9912500000 0.6644796709 0.9925000000 0.6653679366 0.9937500000 0.6662526101 0.9950000000 0.6671337111 0.9962500000 0.6680112591 0.9975000000 0.6688852737 0.9987500000 0.6697557743 0.000000000 0.000000000 0.1250000000E-02 0.4985250980E-02 0.2500000000E-02 0.9974571219E-02 0.3750000000E-02 0.1497203888E-01 0.5000000000E-02 0.1998174996E-01 0.6250000000E-02 0.2500782733E-01 0.7500000000E-02 0.3005442985E-01 0.8750000000E-02 0.3512576167E-01 0.1000000000E-01 0.4022608169E-01 0.1125000000E-01 0.4535971332E-01 0.1250000000E-01 0.5053105450E-01 0.1375000000E-01 0.5574458797E-01 0.1500000000E-01 0.6100489207E-01 0.1625000000E-01 0.6631665185E-01 0.1750000000E-01 0.7168467070E-01 0.1875000000E-01 0.7711388256E-01 0.2000000000E-01 0.8260936466E-01 0.2125000000E-01 0.8817635106E-01 0.2250000000E-01 0.9382024677E-01 0.2375000000E-01 0.9954664287E-01 0.2500000000E-01 0.1053613324 0.2625000000E-01 0.1112703275 0.2750000000E-01 0.1172798771 0.2875000000E-01 0.1233964866 0.3000000000E-01 0.1296269385 0.3125000000E-01 0.1359783142 0.3250000000E-01 0.1424580181 0.3375000000E-01 0.1490738033 0.3500000000E-01 0.1558337984 0.3625000000E-01 0.1627465382 0.3750000000E-01 0.1698209954 0.3875000000E-01 0.1770666151 0.4000000000E-01 0.1844933533 0.4125000000E-01 0.1921117173 0.4250000000E-01 0.1999328107 0.4375000000E-01 0.2079683820 0.4500000000E-01 0.2162308774 0.4625000000E-01 0.2247334992 0.4750000000E-01 0.2334902693 0.4875000000E-01 0.2425160985 0.5000000000E-01 0.2518268635 0.5125000000E-01 0.2614394910 0.5250000000E-01 0.2713720500 0.5375000000E-01 0.2816438550 0.5500000000E-01 0.2922755788 0.5625000000E-01 0.3032893780 0.5750000000E-01 0.3147090323 0.5875000000E-01 0.3265600998 0.6000000000E-01 0.3388700889 0.6125000000E-01 0.3516686518 0.6250000000E-01 0.3649877995 0.6375000000E-01 0.3788621439 0.6500000000E-01 0.3933291696 0.6625000000E-01 0.4084295399 0.6750000000E-01 0.4242074427 0.6875000000E-01 0.4407109821 0.7000000000E-01 0.4579926225 0.7125000000E-01 0.4761096948 0.7250000000E-01 0.4951249740 0.7375000000E-01 0.5151073407 0.7500000000E-01 0.5361325409 0.7625000000E-01 0.5582840625 0.7750000000E-01 0.5816541478 0.7875000000E-01 0.6063449706 0.8000000000E-01 0.6324700069 0.8125000000E-01 0.6601556391 0.8250000000E-01 0.6895430422 0.8375000000E-01 0.7207904093 0.8500000000E-01 0.7540755926 0.8625000000E-01 0.7895992517 0.8750000000E-01 0.8275886278 0.8875000000E-01 0.8683020933 0.9000000000E-01 0.9120346693 0.9125000000E-01 0.9591247615 0.9250000000E-01 1.009962437 0.9375000000E-01 1.064999670 0.9500000000E-01 1.124763129 0.9625000000E-01 1.189870255 0.9750000000E-01 1.261049665 0.9875000000E-01 1.339167299 0.1000000000 1.425260244 0.1012500000 1.520580968 0.1025000000 1.626655838 0.1037500000 1.745363467 0.1050000000 1.879040937 0.1062500000 2.030629774 0.1075000000 2.203879283 0.1087500000 2.403633726 0.1100000000 2.636243310 0.1112500000 2.910159171 0.1125000000 3.236801414 0.1137500000 3.631825194 0.1150000000 4.116935872 0.1162500000 4.722349172 0.1175000000 5.489611626 0.1187500000 6.473054857 0.1200000000 7.733828136 0.1212500000 9.310743362 0.1225000000 11.14409577 0.1237500000 12.97359694 0.1250000000 14.38298837 0.1262500000 15.11645214 0.1275000000 15.31046052 0.1287500000 15.38928903 0.1300000000 15.81805848 0.1312500000 16.88477212 0.1325000000 18.60527728 0.1337500000 20.70187810 0.1350000000 22.73608054 0.1362500000 24.47221035 0.1375000000 26.06272407 0.1387500000 27.77102077 0.1400000000 29.68174092 0.1412500000 31.64624107 0.1425000000 33.29036243 0.1437500000 34.34998302 0.1450000000 35.06011823 0.1462500000 35.92329216 0.1475000000 37.25073328 0.1487500000 38.96896726 0.1500000000 40.58557227 0.1512500000 41.39110949 0.1525000000 41.13917589 0.1537500000 40.21925875 0.1550000000 38.96276682 0.1562500000 37.36463503 0.1575000000 35.46232246 0.1587500000 33.55738303 0.1600000000 31.97238651 0.1612500000 30.77145842 0.1625000000 29.79835271 0.1637500000 28.89172384 0.1650000000 27.98248696 0.1662500000 26.99307595 0.1675000000 25.77280990 0.1687500000 24.25723348 0.1700000000 22.61021344 0.1712500000 21.03698651 0.1725000000 19.65265708 0.1737500000 18.57941134 0.1750000000 17.95781166 0.1762500000 17.84895835 0.1775000000 18.16360336 0.1787500000 18.62258040 0.1800000000 18.86045219 0.1812500000 18.71313737 0.1825000000 18.30579994 0.1837500000 17.80579096 0.1850000000 17.24379866 0.1862500000 16.59929121 0.1875000000 15.94746114 0.1887500000 15.47403012 0.1900000000 15.32859697 0.1912500000 15.48282441 0.1925000000 15.76639169 0.1937500000 16.00706080 0.1950000000 16.11963296 0.1962500000 16.08694297 0.1975000000 15.88273876 0.1987500000 15.45708248 0.2000000000 14.81206285 0.2012500000 14.03728880 0.2025000000 13.25165527 0.2037500000 12.54277409 0.2050000000 11.93697427 0.2062500000 11.39719512 0.2075000000 10.85739476 0.2087500000 10.29626094 0.2100000000 9.767798315 0.2112500000 9.337482679 0.2125000000 9.030181991 0.2137500000 8.821713296 0.2150000000 8.658044792 0.2162500000 8.498729047 0.2175000000 8.333815681 0.2187500000 8.155023092 0.2200000000 7.938077974 0.2212500000 7.667527845 0.2225000000 7.345747263 0.2237500000 6.988387520 0.2250000000 6.641702125 0.2262500000 6.361230188 0.2275000000 6.166082792 0.2287500000 6.042706814 0.2300000000 5.979543486 0.2312500000 5.973496759 0.2325000000 6.006927217 0.2337500000 6.051157319 0.2350000000 6.089590607 0.2362500000 6.114204762 0.2375000000 6.124312016 0.2387500000 6.119278877 0.2400000000 6.077479723 0.2412500000 5.976157635 0.2425000000 5.817742510 0.2437500000 5.610051880 0.2450000000 5.362330515 0.2462500000 5.110481257 0.2475000000 4.904398265 0.2487500000 4.766635490 0.2500000000 4.669890670 0.2512500000 4.553148291 0.2525000000 4.374266059 0.2537500000 4.148320784 0.2550000000 3.918774024 0.2562500000 3.706198570 0.2575000000 3.511423418 0.2587500000 3.346400133 0.2600000000 3.227548454 0.2612500000 3.150639550 0.2625000000 3.096141354 0.2637500000 3.050424783 0.2650000000 3.008732477 0.2662500000 2.967970670 0.2675000000 2.927032281 0.2687500000 2.887365453 0.2700000000 2.843938058 0.2712500000 2.784732702 0.2725000000 2.706436816 0.2737500000 2.613530073 0.2750000000 2.506795896 0.2762500000 2.391359865 0.2775000000 2.279207507 0.2787500000 2.179064000 0.2800000000 2.096369087 0.2812500000 2.037136678 0.2825000000 2.004368965 0.2837500000 1.994323078 0.2850000000 2.001445261 0.2862500000 2.021178473 0.2875000000 2.042998069 0.2887500000 2.053712965 0.2900000000 2.054130427 0.2912500000 2.058751487 0.2925000000 2.080322834 0.2937500000 2.121975597 0.2950000000 2.169134776 0.2962500000 2.191702232 0.2975000000 2.173324314 0.2987500000 2.129299853 0.3000000000 2.085286142 0.3012500000 2.052493662 0.3025000000 2.023260160 0.3037500000 1.980751788 0.3050000000 1.913815851 0.3062500000 1.823739255 0.3075000000 1.719138925 0.3087500000 1.611345420 0.3100000000 1.512500806 0.3112500000 1.431174686 0.3125000000 1.370667666 0.3137500000 1.330415537 0.3150000000 1.305185483 0.3162500000 1.286292236 0.3175000000 1.266849262 0.3187500000 1.244981095 0.3200000000 1.223999293 0.3212500000 1.210194464 0.3225000000 1.205630723 0.3237500000 1.203496329 0.3250000000 1.194317597 0.3262500000 1.175873642 0.3275000000 1.153688748 0.3287500000 1.134310529 0.3300000000 1.121384081 0.3312500000 1.113836804 0.3325000000 1.106703277 0.3337500000 1.097889143 0.3350000000 1.093185598 0.3362500000 1.101456810 0.3375000000 1.127097137 0.3387500000 1.166486126 0.3400000000 1.209705461 0.3412500000 1.248373915 0.3425000000 1.283322230 0.3437500000 1.320489971 0.3450000000 1.359393011 0.3462500000 1.390385172 0.3475000000 1.400602378 0.3487500000 1.379604197 0.3500000000 1.327469162 0.3512500000 1.259452597 0.3525000000 1.194657696 0.3537500000 1.143708517 0.3550000000 1.109445217 0.3562500000 1.089362286 0.3575000000 1.076400994 0.3587500000 1.064503005 0.3600000000 1.052237384 0.3612500000 1.040445241 0.3625000000 1.030674669 0.3637500000 1.023251927 0.3650000000 1.015294637 0.3662500000 1.003857047 0.3675000000 0.9921820869 0.3687500000 0.9887996691 0.3700000000 0.9978583677 0.3712500000 1.014185382 0.3725000000 1.030070446 0.3737500000 1.041820404 0.3750000000 1.046212995 0.3762500000 1.036892742 0.3775000000 1.010071763 0.3787500000 0.9688336533 0.3800000000 0.9200720681 0.3812500000 0.8721032483 0.3825000000 0.8311645298 0.3837500000 0.7966473312 0.3850000000 0.7635428513 0.3862500000 0.7304083632 0.3875000000 0.7009894607 0.3887500000 0.6785615603 0.3900000000 0.6624384021 0.3912500000 0.6491727817 0.3925000000 0.6367580082 0.3937500000 0.6266416292 0.3950000000 0.6199402225 0.3962500000 0.6158410342 0.3975000000 0.6128502376 0.3987500000 0.6066761889 0.4000000000 0.5916097066 0.4012500000 0.5667872978 0.4025000000 0.5357943781 0.4037500000 0.5017624889 0.4050000000 0.4670015618 0.4062500000 0.4342996155 0.4075000000 0.4065640239 0.4087500000 0.3858868454 0.4100000000 0.3727904446 0.4112500000 0.3666031731 0.4125000000 0.3669318995 0.4137500000 0.3740935117 0.4150000000 0.3882348807 0.4162500000 0.4084718665 0.4175000000 0.4331148791 0.4187500000 0.4604530952 0.4200000000 0.4889468401 0.4212500000 0.5156998021 0.4225000000 0.5352657077 0.4237500000 0.5430111197 0.4250000000 0.5388519381 0.4262500000 0.5256454517 0.4275000000 0.5058038150 0.4287500000 0.4809982230 0.4300000000 0.4542762184 0.4312500000 0.4294974930 0.4325000000 0.4080022677 0.4337500000 0.3878398685 0.4350000000 0.3670314019 0.4362500000 0.3466325037 0.4375000000 0.3300773511 0.4387500000 0.3203378728 0.4400000000 0.3179339264 0.4412500000 0.3207205394 0.4425000000 0.3249354137 0.4437500000 0.3270411307 0.4450000000 0.3263282180 0.4462500000 0.3258594376 0.4475000000 0.3291723842 0.4487500000 0.3363538621 0.4500000000 0.3434362964 0.4512500000 0.3445274312 0.4525000000 0.3360882582 0.4537500000 0.3202148185 0.4550000000 0.3016439793 0.4562500000 0.2826654032 0.4575000000 0.2632814352 0.4587500000 0.2445191794 0.4600000000 0.2290607064 0.4612500000 0.2188379104 0.4625000000 0.2133217161 0.4637500000 0.2099526029 0.4650000000 0.2058846403 0.4662500000 0.1998771983 0.4675000000 0.1930933395 0.4687500000 0.1875240210 0.4700000000 0.1839706387 0.4712500000 0.1824231823 0.4725000000 0.1831829834 0.4737500000 0.1863832395 0.4750000000 0.1908057996 0.4762500000 0.1938856790 0.4775000000 0.1936386073 0.4787500000 0.1903506024 0.4800000000 0.1857335796 0.4812500000 0.1813438567 0.4825000000 0.1778570844 0.4837500000 0.1749328104 0.4850000000 0.1715957202 0.4862500000 0.1668654324 0.4875000000 0.1605468621 0.4887500000 0.1537076430 0.4900000000 0.1478290290 0.4912500000 0.1438742061 0.4925000000 0.1424598868 0.4937500000 0.1439110481 0.4950000000 0.1479291106 0.4962500000 0.1534875866 0.4975000000 0.1590411499 0.4987500000 0.1636745044 0.5000000000 0.1680726750 0.5012500000 0.1728658457 0.5025000000 0.1763583105 0.5037500000 0.1753411513 0.5050000000 0.1685630260 0.5062500000 0.1583991315 0.5075000000 0.1480806081 0.5087500000 0.1391761579 0.5100000000 0.1321459014 0.5112500000 0.1269266832 0.5125000000 0.1226498335 0.5137500000 0.1185203294 0.5150000000 0.1150212898 0.5162500000 0.1131803239 0.5175000000 0.1131333805 0.5187500000 0.1140648803 0.5200000000 0.1153016047 0.5212500000 0.1165610326 0.5225000000 0.1170436781 0.5237500000 0.1155294169 0.5250000000 0.1115418580 0.5262500000 0.1057956809 0.5275000000 0.9932360113E-01 0.5287500000 0.9254694534E-01 0.5300000000 0.8549522263E-01 0.5312500000 0.7846971339E-01 0.5325000000 0.7206823565E-01 0.5337500000 0.6671508770E-01 0.5350000000 0.6245382558E-01 0.5362500000 0.5910921734E-01 0.5375000000 0.5653332103E-01 0.5387500000 0.5471639141E-01 0.5400000000 0.5372730185E-01 0.5412500000 0.5364273451E-01 0.5425000000 0.5452080425E-01 0.5437500000 0.5632469944E-01 0.5450000000 0.5873689833E-01 0.5462500000 0.6100539290E-01 0.5475000000 0.6214098865E-01 0.5487500000 0.6145415241E-01 0.5500000000 0.5894463224E-01 0.5512500000 0.5521908896E-01 0.5525000000 0.5115543857E-01 0.5537500000 0.4749616467E-01 0.5550000000 0.4458266719E-01 0.5562500000 0.4242618658E-01 0.5575000000 0.4088690814E-01 0.5587500000 0.3980034825E-01 0.5600000000 0.3906786739E-01 0.5612500000 0.3868716129E-01 0.5625000000 0.3871570767E-01 0.5637500000 0.3922673426E-01 0.5650000000 0.4022823864E-01 0.5662500000 0.4149716288E-01 0.5675000000 0.4243686142E-01 0.5687500000 0.4233329593E-01 0.5700000000 0.4102621957E-01 0.5712500000 0.3900328492E-01 0.5725000000 0.3681673391E-01 0.5737500000 0.3478984387E-01 0.5750000000 0.3304210836E-01 0.5762500000 0.3155216090E-01 0.5775000000 0.3025584236E-01 0.5787500000 0.2912163302E-01 0.5800000000 0.2814419603E-01 0.5812500000 0.2731317039E-01 0.5825000000 0.2660714997E-01 0.5837500000 0.2600155426E-01 0.5850000000 0.2547471188E-01 0.5862500000 0.2500976365E-01 0.5875000000 0.2459438559E-01 0.5887500000 0.2421990997E-01 0.5900000000 0.2388044435E-01 0.5912500000 0.2357197876E-01 0.5925000000 0.2329104792E-01 0.5937500000 0.2303224054E-01 0.5950000000 0.2278484617E-01 0.5962500000 0.2253352513E-01 0.5975000000 0.2226931334E-01 0.5987500000 0.2199878762E-01 0.6000000000 0.2173516179E-01 0.6012500000 0.2148674979E-01 0.6025000000 0.2125604206E-01 0.6037500000 0.2104311202E-01 0.6050000000 0.2084799414E-01 0.6062500000 0.2067171066E-01 0.6075000000 0.2051662919E-01 0.6087500000 0.2038628596E-01 0.6100000000 0.2028388582E-01 0.6112500000 0.2020737477E-01 0.6125000000 0.2013917632E-01 0.6137500000 0.2003869777E-01 0.6150000000 0.1986386976E-01 0.6162500000 0.1961586465E-01 0.6175000000 0.1933675638E-01 0.6187500000 0.1906393705E-01 0.6200000000 0.1881141776E-01 0.6212500000 0.1857934478E-01 0.6225000000 0.1836448488E-01 0.6237500000 0.1816425863E-01 0.6250000000 0.1797668660E-01 0.6262500000 0.1779977729E-01 0.6275000000 0.1763162614E-01 0.6287500000 0.1747065161E-01 0.6300000000 0.1731565789E-01 0.6312500000 0.1716578746E-01 0.6325000000 0.1702044596E-01 0.6337500000 0.1687922290E-01 0.6350000000 0.1674178685E-01 0.6362500000 0.1660772043E-01 0.6375000000 0.1647637060E-01 0.6387500000 0.1634707014E-01 0.6400000000 0.1621980553E-01 0.6412500000 0.1609536996E-01 0.6425000000 0.1597474881E-01 0.6437500000 0.1585871777E-01 0.6450000000 0.1574773064E-01 0.6462500000 0.1564143103E-01 0.6475000000 0.1553741945E-01 0.6487500000 0.1543042698E-01 0.6500000000 0.1531527195E-01 0.6512500000 0.1519245781E-01 0.6525000000 0.1506754288E-01 0.6537500000 0.1494542893E-01 0.6550000000 0.1482814225E-01 0.6562500000 0.1471594362E-01 0.6575000000 0.1460857182E-01 0.6587500000 0.1450581414E-01 0.6600000000 0.1440768336E-01 0.6612500000 0.1431449261E-01 0.6625000000 0.1422698397E-01 0.6637500000 0.1414644732E-01 0.6650000000 0.1407466453E-01 0.6662500000 0.1401374309E-01 0.6675000000 0.1396589043E-01 0.6687500000 0.1393218539E-01 0.6700000000 0.1390786649E-01 0.6712500000 0.1387479931E-01 0.6725000000 0.1380385563E-01 0.6737500000 0.1368019234E-01 0.6750000000 0.1352131606E-01 0.6762500000 0.1335621258E-01 0.6775000000 0.1320192484E-01 0.6787500000 0.1306264806E-01 0.6800000000 0.1293678917E-01 0.6812500000 0.1282145135E-01 0.6825000000 0.1271404114E-01 0.6837500000 0.1261259152E-01 0.6850000000 0.1251569117E-01 0.6862500000 0.1242234275E-01 0.6875000000 0.1233183966E-01 0.6887500000 0.1224367595E-01 0.6900000000 0.1215748399E-01 0.6912500000 0.1207299230E-01 0.6925000000 0.1198999697E-01 0.6937500000 0.1190834221E-01 0.6950000000 0.1182790703E-01 0.6962500000 0.1174859589E-01 0.6975000000 0.1167033213E-01 0.6987500000 0.1159305333E-01 0.7000000000 0.1151670788E-01 0.7012500000 0.1144125252E-01 0.7025000000 0.1136665047E-01 0.7037500000 0.1129287008E-01 0.7050000000 0.1121988378E-01 0.7062500000 0.1114766728E-01 0.7075000000 0.1107619895E-01 0.7087500000 0.1100545933E-01 0.7100000000 0.1093543078E-01 0.7112500000 0.1086609716E-01 0.7125000000 0.1079744359E-01 0.7137500000 0.1072945628E-01 0.7150000000 0.1066212234E-01 0.7162500000 0.1059542968E-01 0.7175000000 0.1052936690E-01 0.7187500000 0.1046392318E-01 0.7200000000 0.1039908826E-01 0.7212500000 0.1033485232E-01 0.7225000000 0.1027120598E-01 0.7237500000 0.1020814021E-01 0.7250000000 0.1014564633E-01 0.7262500000 0.1008371597E-01 0.7275000000 0.1002234105E-01 0.7287500000 0.9961513717E-02 0.7300000000 0.9901226380E-02 0.7312500000 0.9841471658E-02 0.7325000000 0.9782242375E-02 0.7337500000 0.9723531543E-02 0.7350000000 0.9665332354E-02 0.7362500000 0.9607638166E-02 0.7375000000 0.9550442496E-02 0.7387500000 0.9493739009E-02 0.7400000000 0.9437521511E-02 0.7412500000 0.9381783944E-02 0.7425000000 0.9326520377E-02 0.7437500000 0.9271725000E-02 0.7450000000 0.9217392122E-02 0.7462500000 0.9163516163E-02 0.7475000000 0.9110091652E-02 0.7487500000 0.9057113219E-02 0.7500000000 0.9004575596E-02 0.7512500000 0.8952473612E-02 0.7525000000 0.8900802185E-02 0.7537500000 0.8849556328E-02 0.7550000000 0.8798731136E-02 0.7562500000 0.8748321792E-02 0.7575000000 0.8698323559E-02 0.7587500000 0.8648731779E-02 0.7600000000 0.8599541873E-02 0.7612500000 0.8550749336E-02 0.7625000000 0.8502349734E-02 0.7637500000 0.8454338706E-02 0.7650000000 0.8406711960E-02 0.7662500000 0.8359465270E-02 0.7675000000 0.8312594479E-02 0.7687500000 0.8266095489E-02 0.7700000000 0.8219964269E-02 0.7712500000 0.8174196847E-02 0.7725000000 0.8128789311E-02 0.7737500000 0.8083737807E-02 0.7750000000 0.8039038538E-02 0.7762500000 0.7994687764E-02 0.7775000000 0.7950681799E-02 0.7787500000 0.7907017009E-02 0.7800000000 0.7863689814E-02 0.7812500000 0.7820696684E-02 0.7825000000 0.7778034140E-02 0.7837500000 0.7735698751E-02 0.7850000000 0.7693687135E-02 0.7862500000 0.7651995957E-02 0.7875000000 0.7610621928E-02 0.7887500000 0.7569561805E-02 0.7900000000 0.7528812389E-02 0.7912500000 0.7488370523E-02 0.7925000000 0.7448233096E-02 0.7937500000 0.7408397036E-02 0.7950000000 0.7368859314E-02 0.7962500000 0.7329616942E-02 0.7975000000 0.7290666969E-02 0.7987500000 0.7252006485E-02 0.8000000000 0.7213632619E-02 0.8012500000 0.7175542535E-02 0.8025000000 0.7137733437E-02 0.8037500000 0.7100202563E-02 0.8050000000 0.7062947188E-02 0.8062500000 0.7025964621E-02 0.8075000000 0.6989252206E-02 0.8087500000 0.6952807321E-02 0.8100000000 0.6916627377E-02 0.8112500000 0.6880709819E-02 0.8125000000 0.6845052121E-02 0.8137500000 0.6809651793E-02 0.8150000000 0.6774506373E-02 0.8162500000 0.6739613430E-02 0.8175000000 0.6704970565E-02 0.8187500000 0.6670575405E-02 0.8200000000 0.6636425611E-02 0.8212500000 0.6602518869E-02 0.8225000000 0.6568852894E-02 0.8237500000 0.6535425429E-02 0.8250000000 0.6502234246E-02 0.8262500000 0.6469277141E-02 0.8275000000 0.6436551938E-02 0.8287500000 0.6404056488E-02 0.8300000000 0.6371788666E-02 0.8312500000 0.6339746373E-02 0.8325000000 0.6307927535E-02 0.8337500000 0.6276330103E-02 0.8350000000 0.6244952051E-02 0.8362500000 0.6213791377E-02 0.8375000000 0.6182846103E-02 0.8387500000 0.6152114275E-02 0.8400000000 0.6121593959E-02 0.8412500000 0.6091283246E-02 0.8425000000 0.6061180248E-02 0.8437500000 0.6031283098E-02 0.8450000000 0.6001589952E-02 0.8462500000 0.5972098987E-02 0.8475000000 0.5942808399E-02 0.8487500000 0.5913716407E-02 0.8500000000 0.5884821247E-02 0.8512500000 0.5856121178E-02 0.8525000000 0.5827614478E-02 0.8537500000 0.5799299443E-02 0.8550000000 0.5771174388E-02 0.8562500000 0.5743237650E-02 0.8575000000 0.5715487581E-02 0.8587500000 0.5687922552E-02 0.8600000000 0.5660540953E-02 0.8612500000 0.5633341192E-02 0.8625000000 0.5606321694E-02 0.8637500000 0.5579480900E-02 0.8650000000 0.5552817270E-02 0.8662500000 0.5526329280E-02 0.8675000000 0.5500015423E-02 0.8687500000 0.5473874208E-02 0.8700000000 0.5447904159E-02 0.8712500000 0.5422103819E-02 0.8725000000 0.5396471743E-02 0.8737500000 0.5371006505E-02 0.8750000000 0.5345706692E-02 0.8762500000 0.5320570906E-02 0.8775000000 0.5295597765E-02 0.8787500000 0.5270785902E-02 0.8800000000 0.5246133964E-02 0.8812500000 0.5221640610E-02 0.8825000000 0.5197304517E-02 0.8837500000 0.5173124374E-02 0.8850000000 0.5149098884E-02 0.8862500000 0.5125226762E-02 0.8875000000 0.5101506740E-02 0.8887500000 0.5077937560E-02 0.8900000000 0.5054517978E-02 0.8912500000 0.5031246764E-02 0.8925000000 0.5008122698E-02 0.8937500000 0.4985144576E-02 0.8950000000 0.4962311204E-02 0.8962500000 0.4939621401E-02 0.8975000000 0.4917073999E-02 0.8987500000 0.4894667839E-02 0.9000000000 0.4872401778E-02 0.9012500000 0.4850274680E-02 0.9025000000 0.4828285425E-02 0.9037500000 0.4806432901E-02 0.9050000000 0.4784716009E-02 0.9062500000 0.4763133660E-02 0.9075000000 0.4741684778E-02 0.9087500000 0.4720368294E-02 0.9100000000 0.4699183153E-02 0.9112500000 0.4678128309E-02 0.9125000000 0.4657202728E-02 0.9137500000 0.4636405384E-02 0.9150000000 0.4615735263E-02 0.9162500000 0.4595191359E-02 0.9175000000 0.4574772678E-02 0.9187500000 0.4554478235E-02 0.9200000000 0.4534307055E-02 0.9212500000 0.4514258172E-02 0.9225000000 0.4494330629E-02 0.9237500000 0.4474523479E-02 0.9250000000 0.4454835785E-02 0.9262500000 0.4435266618E-02 0.9275000000 0.4415815058E-02 0.9287500000 0.4396480194E-02 0.9300000000 0.4377261124E-02 0.9312500000 0.4358156955E-02 0.9325000000 0.4339166802E-02 0.9337500000 0.4320289788E-02 0.9350000000 0.4301525046E-02 0.9362500000 0.4282871717E-02 0.9375000000 0.4264328947E-02 0.9387500000 0.4245895895E-02 0.9400000000 0.4227571725E-02 0.9412500000 0.4209355608E-02 0.9425000000 0.4191246727E-02 0.9437500000 0.4173244268E-02 0.9450000000 0.4155347427E-02 0.9462500000 0.4137555408E-02 0.9475000000 0.4119867421E-02 0.9487500000 0.4102282684E-02 0.9500000000 0.4084800423E-02 0.9512500000 0.4067419870E-02 0.9525000000 0.4050140265E-02 0.9537500000 0.4032960855E-02 0.9550000000 0.4015880893E-02 0.9562500000 0.3998899640E-02 0.9575000000 0.3982016364E-02 0.9587500000 0.3965230338E-02 0.9600000000 0.3948540843E-02 0.9612500000 0.3931947167E-02 0.9625000000 0.3915448604E-02 0.9637500000 0.3899044454E-02 0.9650000000 0.3882734023E-02 0.9662500000 0.3866516626E-02 0.9675000000 0.3850391580E-02 0.9687500000 0.3834358212E-02 0.9700000000 0.3818415853E-02 0.9712500000 0.3802563841E-02 0.9725000000 0.3786801519E-02 0.9737500000 0.3771128236E-02 0.9750000000 0.3755543348E-02 0.9762500000 0.3740046216E-02 0.9775000000 0.3724636207E-02 0.9787500000 0.3709312692E-02 0.9800000000 0.3694075050E-02 0.9812500000 0.3678922665E-02 0.9825000000 0.3663854925E-02 0.9837500000 0.3648871225E-02 0.9850000000 0.3633970964E-02 0.9862500000 0.3619153547E-02 0.9875000000 0.3604418385E-02 0.9887500000 0.3589764894E-02 0.9900000000 0.3575192493E-02 0.9912500000 0.3560700608E-02 0.9925000000 0.3546288670E-02 0.9937500000 0.3531956115E-02 0.9950000000 0.3517702383E-02 0.9962500000 0.3503526919E-02 0.9975000000 0.3489429174E-02 0.9987500000 0.3475408602E-02 elk-7.2.42/examples/BSE/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016034 xustar0030 mtime=1623670096.013101473 30 atime=1623670096.012101474 30 ctime=1623670096.013101473 elk-7.2.42/examples/BSE/Si/elk.in0000644002504400250440000000330114061636520020066 0ustar00dewhurstdewhurst00000000000000 ! BSE optical spectrum of silicon. Note that the non-zero vkloff is needed to ! make the system non-metallic, i.e. all occupancies in EIGVAL.OUT should be ! either 0 or 1. If this is not the case, then the response function will be ! too large. This is quite a time-consuming calculation and should be run on ! a multi-processor system. ! Silicon is surprisingly difficult for a BSE calculation: it requires quite a ! large k-point set for good convergence, unlike the excitonic peak in LiF. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function with no local field contributions 180 ! generate RPA dielectric function with local field contributions 185 ! write the BSE Hamiltonian matrix to file 186 ! diagonalise the BSE matrix 187 ! compute BSE dielectric function ! this should be small (but not so small that it affects the results!) for a ! fast calculation because the wavefunctions used in the construction of the BSE ! matrix elements are expanded to this angular momentum cut-off lmaxo 4 ! number of valence states to use in BSE Hamiltonian nvbse 3 ! number of conduction states ncbse 4 ! a scissor correction is required to match the gap to experiment scissor 0.0331 swidth 0.005 wplot 800 100 0 : nwplot, ngrkf, nswplot 0.0 1.0 : wplot avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 5 5 5 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/BSE/PaxHeaders.21776/CaO-core0000644000000000000000000000013214061636520015671 xustar0030 mtime=1623670096.018101468 30 atime=1623670096.014101472 30 ctime=1623670096.018101468 elk-7.2.42/examples/BSE/CaO-core/0000755002504400250440000000000014061636520020003 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/BSE/CaO-core/PaxHeaders.21776/Ca_lo.in0000644000000000000000000000013014061636520017311 xustar0029 mtime=1623670096.01610147 30 atime=1623670096.015101471 29 ctime=1623670096.01610147 elk-7.2.42/examples/BSE/CaO-core/Ca_lo.in0000644002504400250440000000357314061636520021360 0ustar00dewhurstdewhurst00000000000000 'Ca_lo' : spsymb 'calcium' : spname -20.0000 : spzn 73057.72467 : spmass 0.447214E-06 2.2000 40.2509 500 : sprmin, rmt, sprmax, nrmt 8 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 T 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -12.300 0 T 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -1.9708 0 T 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -1.2735 0 T 2 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0.5000 0 T elk-7.2.42/examples/BSE/CaO-core/PaxHeaders.21776/O.in0000644000000000000000000000013214061636520016474 xustar0030 mtime=1623670096.017101469 30 atime=1623670096.017101469 30 ctime=1623670096.017101469 elk-7.2.42/examples/BSE/CaO-core/O.in0000644002504400250440000000222014061636520020525 0ustar00dewhurstdewhurst00000000000000 'O' : spsymb 'oxygen' : spname -8.00000 : spzn 29165.12202 : spmass 0.707107E-06 1.6000 22.7954 300 : sprmin, rmt, sprmax, nrmt 4 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -1.1227 0 T elk-7.2.42/examples/BSE/CaO-core/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017051 xustar0030 mtime=1623670096.019101467 30 atime=1623670096.018101468 30 ctime=1623670096.019101467 elk-7.2.42/examples/BSE/CaO-core/elk.in0000644002504400250440000000506214061636520021111 0ustar00dewhurstdewhurst00000000000000 ! This example demonstrates the calculation of the Ca 2p 1/2 - 2p 3/2 (L2 / L3) ! x-ray absorption spectra in CaO. The Ca 2p states are treated as local ! orbitals in Ca_lo.in; additional local orbitals are added to allow an accurate ! description of the unoccupied 3d states (compare with the default version of Ca.in). ! Look at the imaginary part of the spectrum (EPSILON_BSE_11.OUT) in the range 11.8 to ! 12.5 Ha. Compare to the independent-particle calculation (EPSILON_11.OUT). ! Try switching off the exchange and the direct term in the BSE Hamiltonian ! individually (set hxbse/hdbse to .false.). ! For a converged spectrum a lot more k-points (6 x 6 x 6 or more) are needed. ! The numerical cut-offs are well converged, so the computation is quite time ! and memory consuming. Run with hybrid parallelization (MPI across nodes, OpenMP ! across cores) on a cluster for smaller memory footprint. Compare with calculations ! and experimental data in J. Phys. Condens. Matter 23, 145501 (2011). ! Example by Markus Meinert. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function without local field contributions 180 ! generate RPA dielectric function with local field contributions 185 ! write the BSE Hamiltonian matrix to file 186 ! diagonalise BSE matrix 187 ! compute BSE dielectric function ! do not include valence bands right below E_F nvbse 0 ! additional valence bands for the BSE calculation - these are the six 2p states ! of Ca (check EIGVAL.OUT) istxbse 1 2 3 4 5 6 ! number of conduction band states for the BSE calculation ncbse 20 ! large number of empty states required nempty 20 ! enhanced G-vector cut-off of local contribution to RPA gmaxrf 5.0 ! the spectrum is very sensitive to the k-point mesh ngridk 2 2 2 ! use a symmetry breaking shift for more efficient use of the k-points vkloff 0.05 0.15 0.25 ! Broyden mixing for fast convergence mixtype 3 ! the energy window for the plot starts at zero by default; ! sufficient energy points needed wplot 5000 100 0 0.0 14.0 ! include spin-orbit coupling for the 2p 1/2 - 2p 3/2 splitting spinorb .true. ! about 0.27 eV Lorentzian broadening to simulate lifetime effects swidth 0.01 sppath './' avec 4.545 4.545 0.0 4.545 -4.545 0.0 4.545 0.0 4.545 atoms 2 : nspecies 'Ca_lo.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'O.in' 1 0.5 0.5 0.0 elk-7.2.42/examples/BSE/PaxHeaders.21776/LiF0000644000000000000000000000013214061636520014753 xustar0030 mtime=1623670096.020101466 30 atime=1623670096.019101467 30 ctime=1623670096.020101466 elk-7.2.42/examples/BSE/LiF/0000755002504400250440000000000014061636520017065 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/BSE/LiF/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016133 xustar0030 mtime=1623670096.021101465 30 atime=1623670096.021101465 30 ctime=1623670096.021101465 elk-7.2.42/examples/BSE/LiF/elk.in0000644002504400250440000000217614061636520020176 0ustar00dewhurstdewhurst00000000000000 ! BSE optical spectrum of lithium fluoride. This material has a prominent ! excitonic peak, which is absent in the usual RPA dielectric function. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function with no local field contributions 180 ! generate RPA dielectric function with local field contributions 185 ! write BSE Hamiltonian matrix 186 ! diagonalise BSE matrix 187 ! generate BSE dielectric function scissor 0.21 ! number of BSE valence states nvbse 3 ! number of BSE conduction states ncbse 4 ! G-vector cut-off of local contribution to RPA gmaxrf 3.0 swidth 0.005 nempty 8 wplot 800 100 0 : nwplot, ngrkf, nswplot 0.0 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 4 4 4 elk-7.2.42/examples/PaxHeaders.21776/ELF0000644000000000000000000000013214061636520014276 xustar0030 mtime=1623670096.026101461 30 atime=1623670096.022101464 30 ctime=1623670096.026101461 elk-7.2.42/examples/ELF/0000755002504400250440000000000014061636520016410 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELF/PaxHeaders.21776/BN0000644000000000000000000000013214061636520014575 xustar0030 mtime=1623670096.024101463 30 atime=1623670096.023101463 30 ctime=1623670096.024101463 elk-7.2.42/examples/ELF/BN/0000755002504400250440000000000014061636520016707 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELF/BN/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015755 xustar0030 mtime=1623670096.024101463 30 atime=1623670096.024101463 30 ctime=1623670096.024101463 elk-7.2.42/examples/ELF/BN/elk.in0000644002504400250440000000105514061636520020013 0ustar00dewhurstdewhurst00000000000000 ! Electron localisation function (ELF) of cubic boron nitride. Note that the ELF ! is not continuous at the muffin-tin boundaries. To make it smooth increase ! several parameters such as rgkmax, gmaxvr, lmaxo and lmaxapw. Alternatively, ! run with highq=.true. tasks 0 51 plot1d 2 400 0.0 0.0 0.0 1.0 1.0 1.0 avec 3.4204 3.4204 0.0000 3.4204 0.0000 3.4204 0.0000 3.4204 3.4204 sppath '../../../species/' atoms 2 'B.in' 1 0.0 0.0 0.0 'N.in' 1 0.25 0.25 0.25 ngridk 2 2 2 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/ELF/PaxHeaders.21776/Ru0000644000000000000000000000013214061636520014664 xustar0030 mtime=1623670096.028101459 30 atime=1623670096.026101461 30 ctime=1623670096.028101459 elk-7.2.42/examples/ELF/Ru/0000755002504400250440000000000014061636520016776 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELF/Ru/PaxHeaders.21776/Ru.in0000644000000000000000000000012714061636520015663 xustar0029 mtime=1623670096.02710146 29 atime=1623670096.02710146 29 ctime=1623670096.02710146 elk-7.2.42/examples/ELF/Ru/Ru.in0000644002504400250440000000404114061636520017713 0ustar00dewhurstdewhurst00000000000000 'Ru' : spsymb 'ruthenium' : spname -44.0000 : spzn 184239.3392 : spmass 0.301511E-06 2.0000 43.5262 600 : sprmin, rmt, sprmax, nrmt 15 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 3.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 1 : nlx 2 2 : lx, io 0.1500 0 F : apwe0, apwdm, apwve 0.1500 1 F 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0.1500 2 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -2.6548 0 T 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -1.6432 0 T elk-7.2.42/examples/ELF/Ru/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016044 xustar0030 mtime=1623670096.029101458 30 atime=1623670096.029101458 30 ctime=1623670096.029101458 elk-7.2.42/examples/ELF/Ru/elk.in0000644002504400250440000000150414061636520020101 0ustar00dewhurstdewhurst00000000000000 ! Example due to A. Baranov on how to obtain a very smooth electron localisation ! function (ELF). Since the ELF depends on derivatives of the density it can ! sometimes be mismatched at the muffin-tin boundaries. This can be corrected ! by using high cut-offs for angular momenta and APW functions. Note also that a ! modified species file Ru.in is used. tasks 0 31 51 avec 4.42816109463 -2.5566 0.0 0.0 5.1132 0.0 0.0 0.0 8.0901 atoms 1 'Ru.in' 2 0.3333333333 0.6666666667 0.25 0.6666666667 0.3333333333 0.75 ! this ensures that no radial points will be skipped when computing the density lradstp 1 rgkmax 11.0 gmaxvr 22.0 msmooth 4 lmaxapw 12 lmaxo 12 ngridk 2 2 1 vkloff 0.5 0.5 0.5 plot1d 2 1000 0.0 0.0 0.0 0.0 1.0 0.0 elk-7.2.42/examples/PaxHeaders.21776/Hartree-Fock0000644000000000000000000000013214061636520016142 xustar0030 mtime=1623670096.033101454 30 atime=1623670096.030101457 30 ctime=1623670096.033101454 elk-7.2.42/examples/Hartree-Fock/0000755002504400250440000000000014061636520020254 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Hartree-Fock/PaxHeaders.21776/HEG0000644000000000000000000000013214061636520016545 xustar0030 mtime=1623670096.032101455 30 atime=1623670096.031101456 30 ctime=1623670096.032101455 elk-7.2.42/examples/Hartree-Fock/HEG/0000755002504400250440000000000014061636520020657 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Hartree-Fock/HEG/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017725 xustar0030 mtime=1623670096.032101455 30 atime=1623670096.032101455 30 ctime=1623670096.032101455 elk-7.2.42/examples/Hartree-Fock/HEG/elk.in0000644002504400250440000000065214061636520021765 0ustar00dewhurstdewhurst00000000000000 ! Hartree-Fock ground state of the homogenous electron gas. The Wigner radius ! (r_s) is written to INFO.OUT. Note that the exact exchange energy is only ! computed during the last iteration. tasks 0 5 chgexs 10.0 ! use the unit cell of aluminium avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.75 ! note that low density gases require denser k-point grids! ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/Hartree-Fock/PaxHeaders.21776/Si0000644000000000000000000000013214061636520016515 xustar0030 mtime=1623670096.034101453 30 atime=1623670096.033101454 30 ctime=1623670096.034101453 elk-7.2.42/examples/Hartree-Fock/Si/0000755002504400250440000000000014061636520020627 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Hartree-Fock/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017675 xustar0030 mtime=1623670096.035101452 30 atime=1623670096.034101453 30 ctime=1623670096.035101452 elk-7.2.42/examples/Hartree-Fock/Si/elk.in0000644002504400250440000000151214061636520021731 0ustar00dewhurstdewhurst00000000000000 ! Hartree-Fock calculation of silicon. Note that this is still an experimental ! feature in Elk. It is also quite slow and is best run using OpenMP on a ! multi-processor machine. ! Important: the exact exchange energy is only calculated on the last iteration. ! All previously calculated exchange energies are approximate. tasks 0 5 ! Hartree-Fock is treated as a second-variational correction to the Kohn-Sham ! problem. Thus a large number of empty states are required for convergence. nempty 8 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 2 2 2 vkloff 0.25 0.25 0.25 elk-7.2.42/examples/PaxHeaders.21776/TDDFT-magnetic-response0000644000000000000000000000013214061636520020156 xustar0030 mtime=1623670096.043101445 30 atime=1623670096.036101451 30 ctime=1623670096.043101445 elk-7.2.42/examples/TDDFT-magnetic-response/0000755002504400250440000000000014061636520022270 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-magnetic-response/PaxHeaders.21776/Ni-magnetic-response0000644000000000000000000000013114061636520024144 xustar0030 mtime=1623670096.041101447 29 atime=1623670096.03710145 30 ctime=1623670096.041101447 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/0000755002504400250440000000000014061636520026257 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/PaxHeaders.21776/CHI0_T.OUT0000644000000000000000000000013114061636520025560 xustar0030 mtime=1623670096.039101449 29 atime=1623670096.03810145 30 ctime=1623670096.039101449 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/CHI0_T.OUT0000644002504400250440000001053214061636520027617 0ustar00dewhurstdewhurst00000000000000 0.000000000 -1.169399737 0.3333333333E-03 -1.180064743 0.6666666667E-03 -1.190839903 0.1000000000E-02 -1.201497740 0.1333333333E-02 -1.211893033 0.1666666667E-02 -1.222342874 0.2000000000E-02 -1.233315994 0.2333333333E-02 -1.245298205 0.2666666667E-02 -1.258562475 0.3000000000E-02 -1.273000392 0.3333333333E-02 -1.288383516 0.3666666667E-02 -1.304637755 0.4000000000E-02 -1.321833172 0.4333333333E-02 -1.340027347 0.4666666667E-02 -1.359238627 0.5000000000E-02 -1.379484422 0.5333333333E-02 -1.400824318 0.5666666667E-02 -1.423370803 0.6000000000E-02 -1.447251187 0.6333333333E-02 -1.472530935 0.6666666667E-02 -1.499122868 0.7000000000E-02 -1.526654516 0.7333333333E-02 -1.554437359 0.7666666667E-02 -1.581407646 0.8000000000E-02 -1.605589842 0.8333333333E-02 -1.625760598 0.8666666667E-02 -1.643850604 0.9000000000E-02 -1.659660401 0.9333333333E-02 -1.671708350 0.9666666667E-02 -1.682008779 0.1000000000E-01 -1.689039540 0.1033333333E-01 -1.691769564 0.1066666667E-01 -1.694575575 0.1100000000E-01 -1.705930589 0.1133333333E-01 -1.733473412 0.1166666667E-01 -1.776791141 0.1200000000E-01 -1.828935719 0.1233333333E-01 -1.882639876 0.1266666667E-01 -1.933642392 0.1300000000E-01 -1.983673294 0.1333333333E-01 -2.035056792 0.1366666667E-01 -2.079482726 0.1400000000E-01 -2.102617650 0.1433333333E-01 -2.106032706 0.1466666667E-01 -2.117766575 0.1500000000E-01 -2.155158865 0.1533333333E-01 -2.206430136 0.1566666667E-01 -2.259152859 0.1600000000E-01 -2.319359916 0.1633333333E-01 -2.397988369 0.1666666667E-01 -2.494952820 0.1700000000E-01 -2.604613005 0.1733333333E-01 -2.719111589 0.1766666667E-01 -2.827094434 0.1800000000E-01 -2.920306356 0.1833333333E-01 -3.001406405 0.1866666667E-01 -3.084291489 0.1900000000E-01 -3.183535833 0.1933333333E-01 -3.284242511 0.1966666667E-01 -3.342322159 0.000000000 -0.3022315633E-01 0.3333333333E-03 -0.3347470196E-01 0.6666666667E-03 -0.3694264790E-01 0.1000000000E-02 -0.4054120530E-01 0.1333333333E-02 -0.4385516884E-01 0.1666666667E-02 -0.4644968320E-01 0.2000000000E-02 -0.4822915850E-01 0.2333333333E-02 -0.4933399848E-01 0.2666666667E-02 -0.5022648079E-01 0.3000000000E-02 -0.5131150679E-01 0.3333333333E-02 -0.5271726473E-01 0.3666666667E-02 -0.5438696123E-01 0.4000000000E-02 -0.5633169082E-01 0.4333333333E-02 -0.5864414169E-01 0.4666666667E-02 -0.6142708760E-01 0.5000000000E-02 -0.6475920875E-01 0.5333333333E-02 -0.6871921014E-01 0.5666666667E-02 -0.7344019241E-01 0.6000000000E-02 -0.7917251729E-01 0.6333333333E-02 -0.8630978875E-01 0.6666666667E-02 -0.9539027545E-01 0.7000000000E-02 -0.1070291645 0.7333333333E-02 -0.1217502007 0.7666666667E-02 -0.1400093291 0.8000000000E-02 -0.1615460765 0.8333333333E-02 -0.1838532507 0.8666666667E-02 -0.2054415729 0.9000000000E-02 -0.2277103553 0.9333333333E-02 -0.2485751570 0.9666666667E-02 -0.2670959518 0.1000000000E-01 -0.2838540861 0.1033333333E-01 -0.2943655775 0.1066666667E-01 -0.2937976104 0.1100000000E-01 -0.2815054704 0.1133333333E-01 -0.2645243724 0.1166666667E-01 -0.2535438630 0.1200000000E-01 -0.2545997152 0.1233333333E-01 -0.2677295870 0.1266666667E-01 -0.2889050781 0.1300000000E-01 -0.3143707938 0.1333333333E-01 -0.3481122778 0.1366666667E-01 -0.3955258521 0.1400000000E-01 -0.4479752645 0.1433333333E-01 -0.4811172622 0.1466666667E-01 -0.4853855451 0.1500000000E-01 -0.4829100648 0.1533333333E-01 -0.4910656543 0.1566666667E-01 -0.5040959354 0.1600000000E-01 -0.5126483863 0.1633333333E-01 -0.5226747535 0.1666666667E-01 -0.5459798699 0.1700000000E-01 -0.5899690415 0.1733333333E-01 -0.6597397675 0.1766666667E-01 -0.7552227926 0.1800000000E-01 -0.8673797682 0.1833333333E-01 -0.9844396909 0.1866666667E-01 -1.102311376 0.1900000000E-01 -1.238407654 0.1933333333E-01 -1.423779339 0.1966666667E-01 -1.660370932 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/PaxHeaders.21776/CHI_T.OUT0000644000000000000000000000013214061636520025501 xustar0030 mtime=1623670096.040101448 30 atime=1623670096.040101448 30 ctime=1623670096.040101448 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/CHI_T.OUT0000644002504400250440000001053214061636520027537 0ustar00dewhurstdewhurst00000000000000 0.000000000 -7.947625401 0.3333333333E-03 -8.437765313 0.6666666667E-03 -8.964537558 0.1000000000E-02 -9.512772499 0.1333333333E-02 -10.07748384 0.1666666667E-02 -10.69051052 0.2000000000E-02 -11.39609507 0.2333333333E-02 -12.23183126 0.2666666667E-02 -13.15147742 0.3000000000E-02 -13.95607301 0.3333333333E-02 -14.26787677 0.3666666667E-02 -13.36053649 0.4000000000E-02 -9.771320013 0.4333333333E-02 -2.424589324 0.4666666667E-02 6.093511471 0.5000000000E-02 11.43418701 0.5333333333E-02 13.05307386 0.5666666667E-02 12.67045067 0.6000000000E-02 11.57071734 0.6333333333E-02 10.32941695 0.6666666667E-02 9.158722357 0.7000000000E-02 8.128141390 0.7333333333E-02 7.252062436 0.7666666667E-02 6.516791089 0.8000000000E-02 5.917830063 0.8333333333E-02 5.463322839 0.8666666667E-02 5.114826421 0.9000000000E-02 4.833042646 0.9333333333E-02 4.631614923 0.9666666667E-02 4.493575097 0.1000000000E-01 4.411970992 0.1033333333E-01 4.403105999 0.1066666667E-01 4.447642841 0.1100000000E-01 4.485349736 0.1133333333E-01 4.435113452 0.1166666667E-01 4.271194411 0.1200000000E-01 4.042496785 0.1233333333E-01 3.806813331 0.1266666667E-01 3.595745727 0.1300000000E-01 3.407989749 0.1333333333E-01 3.228114181 0.1366666667E-01 3.062801866 0.1400000000E-01 2.938586661 0.1433333333E-01 2.872491455 0.1466666667E-01 2.837604389 0.1500000000E-01 2.787366568 0.1533333333E-01 2.719670235 0.1566666667E-01 2.657991234 0.1600000000E-01 2.602456618 0.1633333333E-01 2.534386517 0.1666666667E-01 2.447813997 0.1700000000E-01 2.350605028 0.1733333333E-01 2.253322405 0.1766666667E-01 2.165368402 0.1800000000E-01 2.090486430 0.1833333333E-01 2.023927027 0.1866666667E-01 1.957906575 0.1900000000E-01 1.888382522 0.1933333333E-01 1.818930266 0.1966666667E-01 1.757425101 0.000000000 -1.580545278 0.3333333333E-03 -1.950668145 0.6666666667E-03 -2.415558754 0.1000000000E-02 -2.989251270 0.1333333333E-02 -3.666678700 0.1666666667E-02 -4.456243558 0.2000000000E-02 -5.412859379 0.2333333333E-02 -6.661497976 0.2666666667E-02 -8.417568557 0.3000000000E-02 -10.92675946 0.3333333333E-02 -14.41576173 0.3666666667E-02 -19.07814087 0.4000000000E-02 -24.45213244 0.4333333333E-02 -27.94948860 0.4666666667E-02 -26.36873493 0.5000000000E-02 -20.97036535 0.5333333333E-02 -15.38297753 0.5666666667E-02 -11.16759873 0.6000000000E-02 -8.290034133 0.6333333333E-02 -6.370392998 0.6666666667E-02 -5.092453311 0.7000000000E-02 -4.244113480 0.7333333333E-02 -3.682622714 0.7666666667E-02 -3.317876023 0.8000000000E-02 -3.100910340 0.8333333333E-02 -2.971031250 0.8666666667E-02 -2.867009256 0.9000000000E-02 -2.793713099 0.9333333333E-02 -2.744699557 0.9666666667E-02 -2.691555862 0.1000000000E-01 -2.640594933 0.1033333333E-01 -2.565924960 0.1066666667E-01 -2.419947718 0.1100000000E-01 -2.171690692 0.1133333333E-01 -1.849959957 0.1166666667E-01 -1.542994748 0.1200000000E-01 -1.312573298 0.1233333333E-01 -1.161818538 0.1266666667E-01 -1.063608651 0.1300000000E-01 -0.9891054435 0.1333333333E-01 -0.9365564833 0.1366666667E-01 -0.9202209036 0.1400000000E-01 -0.9363459151 0.1433333333E-01 -0.9501975250 0.1466666667E-01 -0.9218537854 0.1500000000E-01 -0.8612213124 0.1533333333E-01 -0.8045842577 0.1566666667E-01 -0.7554398023 0.1600000000E-01 -0.6953404972 0.1633333333E-01 -0.6238407621 0.1666666667E-01 -0.5572012273 0.1700000000E-01 -0.5066171962 0.1733333333E-01 -0.4748287160 0.1766666667E-01 -0.4578680894 0.1800000000E-01 -0.4463923863 0.1833333333E-01 -0.4325528159 0.1866666667E-01 -0.4159591229 0.1900000000E-01 -0.4025242244 0.1933333333E-01 -0.3987401259 0.1966666667E-01 -0.4042694944 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520025325 xustar0030 mtime=1623670096.042101446 30 atime=1623670096.041101447 30 ctime=1623670096.042101446 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnetic-response/elk.in0000644002504400250440000000161014061636520027360 0ustar00dewhurstdewhurst00000000000000 ! Magnetic response of fcc nickel. Try plotting the transverse component as a ! function of frequency. Compare to B. Rousseau, A. Eiguren and A. Bergara, ! Phys. Rev. B 85, 054305 (2012) and references therein. tasks 0 330 ! energy cut-off for Kohn-Sham response function emaxrf 1.5 ! G-vector cut-off for response function gmaxrf 5.0 ! frequency plot range wplot 60 100 1 0 0.020 ! q-vector of response function vecql 0.1 0.1 0.0 spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ! dense k-point grid is required for response functions ngridk 10 10 10 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/TDDFT-magnetic-response/PaxHeaders.21776/Ni-magnon-spiral0000644000000000000000000000013214061636520023271 xustar0030 mtime=1623670096.044101444 30 atime=1623670096.043101445 30 ctime=1623670096.044101444 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnon-spiral/0000755002504400250440000000000014061636520025403 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnon-spiral/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024451 xustar0030 mtime=1623670096.044101444 30 atime=1623670096.044101444 30 ctime=1623670096.044101444 elk-7.2.42/examples/TDDFT-magnetic-response/Ni-magnon-spiral/elk.in0000644002504400250440000000334614061636520026514 0ustar00dewhurstdewhurst00000000000000 ! In this example, the frequency of a magnon at a particular q-vector in fcc Ni ! is determined. Computing a magnon frequency requires the energy difference, ! dE, between the ferromagnetic and a conical spin-spiral state with small polar ! angle theta. The following formula can then be used to compute the frequency: ! ! w(q) = (4/M) dE / sin^2(theta) ! ! where M is the total moment in the unit cell. See Q. Niu and L. Kleinman, ! Phys. Rev. Lett. 80, 2205 (1998). It is good practice to fix a q and then run ! two fixed spin direction calculations: one at theta=0, and the other at a ! finite theta (in this case 15 degrees). ! Note that the energy difference is very small (order of meV), and the ! calculation has to be very well converged in all parameters. As a result this ! example is best run on a multi-processor, and is still quite time-consuming. tasks 0 stype 1 taufsm 0.01 swidth 0.005 rgkmax 8.0 gmaxvr 14.0 lmaxapw 8 lmaxo 8 ! tight convergence required epspot 1.d-9 epsengy 1.d-6 ! use a fixed spin direction calculation fsmtype -1 ! use a polar angle of 15 degrees momfix 0.0 0.258819045 0.965925826 ! large global field in same direction as momfix bfieldc 0.0 0.258819045 0.965925826 spinsprl .true. ! spin-spiral q-vector in lattice coordinates vqlss 0.1 0.1 0.0 nempty 10 ! very fine k-point grid required for good convergence ngridk 20 20 20 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 ! experimental lattice parameter scale 3.325 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/PaxHeaders.21776/basic0000644000000000000000000000013214061636520014751 xustar0030 mtime=1623670096.085101406 30 atime=1623670096.045101443 30 ctime=1623670096.085101406 elk-7.2.42/examples/basic/0000755002504400250440000000000014061636520017063 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/PaxHeaders.21776/Au0000644000000000000000000000013014061636520015314 xustar0029 mtime=1623670096.04810144 30 atime=1623670096.047101441 29 ctime=1623670096.04810144 elk-7.2.42/examples/basic/Au/0000755002504400250440000000000014061636520017430 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Au/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520016502 xustar0029 mtime=1623670096.04810144 29 atime=1623670096.04810144 29 ctime=1623670096.04810144 elk-7.2.42/examples/basic/Au/elk.in0000644002504400250440000000125214061636520020533 0ustar00dewhurstdewhurst00000000000000 ! Example of spin-orbit coupling for Au. Try comparing the band structure ! without spin-orbit coupling. tasks 0 20 spinorb .true. avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.85 sppath '../../../species/' atoms 1 : nspecies 'Au.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 plot1d 7 100 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/basic/PaxHeaders.21776/HfSiO40000644000000000000000000000013214061636520016005 xustar0030 mtime=1623670096.051101438 30 atime=1623670096.049101439 30 ctime=1623670096.051101438 elk-7.2.42/examples/basic/HfSiO4/0000755002504400250440000000000014061636520020117 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/HfSiO4/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017165 xustar0030 mtime=1623670096.050101438 30 atime=1623670096.050101438 30 ctime=1623670096.050101438 elk-7.2.42/examples/basic/HfSiO4/elk.in0000644002504400250440000000454514061636520021232 0ustar00dewhurstdewhurst00000000000000 ! HfSiO4 generated with spacegroup data from Am. Mineral. 67, 804 (1982). tasks 0 ngridk 2 2 2 ! Atomic positions generated by spacegroup version 1.2.00 ! Hermann-Mauguin symbol : I41/amd:2 ! Hall symbol : -I 4bd 2 ! Schoenflies symbol : D4h^19 ! space group number : 141:2 ! lattice constants (a,b,c) : 12.42022400 12.42022400 11.26881400 ! angles in degrees (bc,ac,ab) : 90.00000000 90.00000000 90.00000000 ! number of conventional unit cells : 1 1 1 ! reduction to primitive cell : T ! Wyckoff positions : ! species : 1, Hf.in ! 0.000000000 0.7500000000 0.1250000000 ! species : 2, Si.in ! 0.000000000 0.7500000000 0.6250000000 ! species : 3, O.in ! 0.000000000 0.6550000000E-01 0.1948000000 avec 6.210112000 6.210112000 5.634407000 6.210112000 6.210112000 -5.634407000 6.210112000 -6.210112000 5.634407000 sppath '../../../species/' atoms 3 : nspecies 'Hf.in' : spfname 2 : natoms; atposl, bfcmt below 0.87500000 0.87500000 0.25000000 0.00000000 0.00000000 0.00000000 0.12500000 0.12500000 0.75000000 0.00000000 0.00000000 0.00000000 'Si.in' : spfname 2 : natoms; atposl, bfcmt below 0.37500000 0.37500000 0.25000000 0.00000000 0.00000000 0.00000000 0.62500000 0.62500000 0.75000000 0.00000000 0.00000000 0.00000000 'O.in' : spfname 8 : natoms; atposl, bfcmt below 0.26030000 0.80520000 0.93450000 0.00000000 0.00000000 0.00000000 0.73970000 0.19480000 0.06550000 0.00000000 0.00000000 0.00000000 0.19480000 0.73970000 0.43450000 0.00000000 0.00000000 0.00000000 0.80520000 0.26030000 0.56550000 0.00000000 0.00000000 0.00000000 0.62930000 0.80520000 0.56550000 0.00000000 0.00000000 0.00000000 0.37070000 0.19480000 0.43450000 0.00000000 0.00000000 0.00000000 0.19480000 0.37070000 0.06550000 0.00000000 0.00000000 0.00000000 0.80520000 0.62930000 0.93450000 0.00000000 0.00000000 0.00000000 elk-7.2.42/examples/basic/HfSiO4/PaxHeaders.21776/spacegroup.in0000644000000000000000000000013214061636520020562 xustar0030 mtime=1623670096.052101436 30 atime=1623670096.052101436 30 ctime=1623670096.052101436 elk-7.2.42/examples/basic/HfSiO4/spacegroup.in0000644002504400250440000000101414061636520022613 0ustar00dewhurstdewhurst00000000000000 'I41/amd:2' : hrmg 12.420224 12.420224 11.268814 : a, b, c 90.0 90.0 90.0 : ab, ac, bc 1 1 1 : ncell .true. : primcell 3 : nspecies 'Hf' 'Hf.in' : spsymb, spfname 1 : nwpos 0.0000 0.7500 0.1250 : wpos 'Si' 'Si.in' 1 0.0000 0.7500 0.6250 'O' 'O.in' 1 0.0000 0.0655 0.1948 elk-7.2.42/examples/basic/PaxHeaders.21776/Si0000644000000000000000000000013214061636520015324 xustar0030 mtime=1623670096.054101435 30 atime=1623670096.053101436 30 ctime=1623670096.054101435 elk-7.2.42/examples/basic/Si/0000755002504400250440000000000014061636520017436 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016504 xustar0030 mtime=1623670096.055101434 30 atime=1623670096.054101435 30 ctime=1623670096.055101434 elk-7.2.42/examples/basic/Si/elk.in0000644002504400250440000000141714061636520020544 0ustar00dewhurstdewhurst00000000000000 ! Band structure of silicon. The points listed after plot1d below are the ! vertices joined in the band structure. tasks 0 20 ! use Broyden mixing mixtype 3 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 2 2 2 vkloff 0.25 0.5 0.625 ! These are the vertices to be joined for the band structure plot plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/basic/PaxHeaders.21776/graphene0000644000000000000000000000013214061636520016542 xustar0030 mtime=1623670096.056101433 30 atime=1623670096.055101434 30 ctime=1623670096.056101433 elk-7.2.42/examples/basic/graphene/0000755002504400250440000000000014061636520020654 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/graphene/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017722 xustar0030 mtime=1623670096.057101432 30 atime=1623670096.056101433 30 ctime=1623670096.057101432 elk-7.2.42/examples/basic/graphene/elk.in0000644002504400250440000000141514061636520021760 0ustar00dewhurstdewhurst00000000000000 ! Band structure of graphene. Observe the massless Dirac-like dispersion in the ! density of states. tasks 0 10 nempty 8 wplot 200 150 1 -0.5 0.5 plot1d 4 100 0.333333333 0.333333333 0.0 0.0 0.0 0.0 0.0 0.5 0.0 0.333333333 0.333333333 0.0 ! very high number of k-points required to resolve the linear dispersion ngridk 30 30 1 avec -0.5 0.866025403784 0.0 -1.0 0.0 0.0 0.0 0.0 3.2265697 scale 4.64890 sppath '../../../species/' atoms 1 : nspecies 'C.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.333333333333 0.333333333333 0.0 elk-7.2.42/examples/basic/PaxHeaders.21776/B120000644000000000000000000000013014061636520015273 xustar0029 mtime=1623670096.05910143 30 atime=1623670096.058101431 29 ctime=1623670096.05910143 elk-7.2.42/examples/basic/B12/0000755002504400250440000000000014061636520017407 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/B12/PaxHeaders.21776/elk.in0000644000000000000000000000013114061636520016454 xustar0030 mtime=1623670096.060101429 29 atime=1623670096.05910143 30 ctime=1623670096.060101429 elk-7.2.42/examples/basic/B12/elk.in0000644002504400250440000000137014061636520020513 0ustar00dewhurstdewhurst00000000000000 ! B12 ground state (Andrew Chizmeshya) tasks 0 10 rgkmax 6.0 scale 9.6376071 avec 0.55522 0.00000 0.82027 -0.27761 0.48083 0.82027 -0.27761 -0.48083 0.82027 sppath '../../../species/' atoms 1 : nspecies 'B.in' : spfname 12 : natoms; atposl below 0.77917 0.77917 0.36899 0.36899 0.77917 0.77914 0.77917 0.36899 0.77918 0.22082 0.22082 0.63108 0.22082 0.63100 0.22082 0.63100 0.22082 0.22086 0.98989 0.98989 0.34576 0.34579 0.98989 0.98986 0.98989 0.34579 0.98981 0.01010 0.01010 0.65424 0.01010 0.65420 0.01019 0.65420 0.01010 0.01014 ngridk 2 2 2 elk-7.2.42/examples/basic/PaxHeaders.21776/Nb-autoswidth0000644000000000000000000000013214061636520017501 xustar0030 mtime=1623670096.062101427 30 atime=1623670096.061101428 30 ctime=1623670096.062101427 elk-7.2.42/examples/basic/Nb-autoswidth/0000755002504400250440000000000014061636520021613 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Nb-autoswidth/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020661 xustar0030 mtime=1623670096.062101427 30 atime=1623670096.062101427 30 ctime=1623670096.062101427 elk-7.2.42/examples/basic/Nb-autoswidth/elk.in0000644002504400250440000000100514061636520022712 0ustar00dewhurstdewhurst00000000000000 ! Example demonstrating the automatic determination of the smearing width. See ! 'autoswidth' in the manual for details. ! Example by T. Bjorkman and O. Granas. tasks 0 autoswidth .true. avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 3.118 sppath '../../../species/' atoms 1 : nspecies 'Nb.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 elk-7.2.42/examples/basic/PaxHeaders.21776/TiC-eg-t2g0000644000000000000000000000013214061636520016513 xustar0030 mtime=1623670096.064101425 30 atime=1623670096.063101426 30 ctime=1623670096.064101425 elk-7.2.42/examples/basic/TiC-eg-t2g/0000755002504400250440000000000014061636520020625 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/TiC-eg-t2g/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017673 xustar0030 mtime=1623670096.065101424 30 atime=1623670096.065101424 30 ctime=1623670096.065101424 elk-7.2.42/examples/basic/TiC-eg-t2g/elk.in0000644002504400250440000000213214061636520021726 0ustar00dewhurstdewhurst00000000000000 ! Density of states of TiC resolved into irreducible representations. When ! lmirep is set to .true., the Y_lm basis is transformed into one in which the ! site symmetries are block diagonal. The band characters determined from the ! density matrix expressed in this basis correspond therefore to irreducible ! representations (IR). ! In this example, we want the e_g and t_2g resolved DOS for the Ti atom. The ! ELMIREP.OUT file contains a set of eigenvalues, the degeneracies of which ! allow for easy identification of the IR. For l = 2, the 3-fold degeneracy is ! the t_2g IR, while the 2-fold is the e_g IR. Adding together curves 5, 6 and 7 ! in the file PDOS_S01_A0001.OUT will give the t_2g plot, and adding curves 8 ! and 9 will give the e_g plot. tasks 0 10 lmirep .true. avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 8.1787 sppath '../../../species/' atoms 2 : nspecies 'Ti.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'C.in' 1 0.5 0.5 0.5 ngridk 8 8 8 elk-7.2.42/examples/basic/PaxHeaders.21776/Al0000644000000000000000000000013214061636520015305 xustar0030 mtime=1623670096.066101424 30 atime=1623670096.065101424 30 ctime=1623670096.066101424 elk-7.2.42/examples/basic/Al/0000755002504400250440000000000014061636520017417 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Al/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016465 xustar0030 mtime=1623670096.067101423 30 atime=1623670096.067101423 30 ctime=1623670096.067101423 elk-7.2.42/examples/basic/Al/elk.in0000644002504400250440000000127514061636520020527 0ustar00dewhurstdewhurst00000000000000 ! Ground state of aluminium. Try calculating the density of states by using ! tasks=10 tasks 0 ! You can add notes to the INFO.OUT file using the "notes" block notes Simple calculation of the ground state of aluminium. Must check convergence with respect to k-point set later. Run by H. Golightly avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.8267 ! this is the relative path to the species files sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/basic/PaxHeaders.21776/Cu0000644000000000000000000000013214061636520015320 xustar0030 mtime=1623670096.069101421 30 atime=1623670096.068101422 30 ctime=1623670096.069101421 elk-7.2.42/examples/basic/Cu/0000755002504400250440000000000014061636520017432 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Cu/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520016504 xustar0029 mtime=1623670096.07010142 29 atime=1623670096.07010142 29 ctime=1623670096.07010142 elk-7.2.42/examples/basic/Cu/elk.in0000644002504400250440000000144414061636520020540 0ustar00dewhurstdewhurst00000000000000 ! Try and find the equilibrium volume of fcc copper by adjusting the scale ! parameter. The individual lattice vectors can also be scaled separately using ! scale1, scale2 or scale3. Remember that a previously converged charge density ! can be used to begin a new calculation, even at a different volume. This is ! done by setting task=1. tasks 0 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale1 6.83117 scale2 6.83117 scale3 6.83117 scale 0.96 ! large cut-off is required for Cu rgkmax 8.5 lmaxapw 10 gmaxvr 14.0 sppath '../../../species/' atoms 1 : nspecies 'Cu.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 8 8 8 elk-7.2.42/examples/basic/PaxHeaders.21776/Pb0000644000000000000000000000013214061636520015312 xustar0030 mtime=1623670096.072101418 30 atime=1623670096.071101419 30 ctime=1623670096.072101418 elk-7.2.42/examples/basic/Pb/0000755002504400250440000000000014061636520017424 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Pb/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016472 xustar0030 mtime=1623670096.072101418 30 atime=1623670096.072101418 30 ctime=1623670096.072101418 elk-7.2.42/examples/basic/Pb/elk.in0000644002504400250440000000123614061636520020531 0ustar00dewhurstdewhurst00000000000000 ! Band structure of lead with spin-orbit coupling. tasks 0 20 spinpol .true. spinorb .true. nempty 8 rgkmax 8.0 avec 0.0 0.5 0.5 0.5 0.0 0.5 0.5 0.5 0.0 scale 9.3541 sppath '../../../species/' atoms 1 : nspecies 'Pb.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 8 8 8 plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/basic/PaxHeaders.21776/YBCO0000644000000000000000000000013214061636520015505 xustar0030 mtime=1623670096.074101416 30 atime=1623670096.073101417 30 ctime=1623670096.074101416 elk-7.2.42/examples/basic/YBCO/0000755002504400250440000000000014061636520017617 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/YBCO/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016665 xustar0030 mtime=1623670096.075101415 30 atime=1623670096.075101415 30 ctime=1623670096.075101415 elk-7.2.42/examples/basic/YBCO/elk.in0000644002504400250440000000147014061636520020724 0ustar00dewhurstdewhurst00000000000000 ! High T_c superconductor YBa2Cu3O7. Note that the code determines which atoms ! are equivalent, and lists them in EQATOMS.OUT. tasks 0 ! small cut-off for testing purposes rgkmax 6.0 ! use Broyden mixing mixtype 3 avec 7.2246 0.0 0.0 0.0 7.3442 0.0 0.0 0.0 22.0733 sppath '../../../species/' atoms 4 : nspecies 'Y.in' : spfname 1 : natoms; atposl below 0.5 0.5 0.5 'Ba.in' 2 0.5 0.5 0.1843 0.5 0.5 0.8157 'Cu.in' 3 0.0 0.0 0.0 0.0 0.0 0.3556 0.0 0.0 0.6444 'O.in' 7 0.0 0.5 0.0 0.5 0.0 0.3773 0.5 0.0 0.6227 0.0 0.5 0.3789 0.0 0.5 0.6211 0.0 0.0 0.1584 0.0 0.0 0.8416 ngridk 2 2 1 vkloff 0.25 0.5 0.5 elk-7.2.42/examples/basic/PaxHeaders.21776/AlAs-fatbands0000644000000000000000000000013214061636520017351 xustar0030 mtime=1623670096.078101412 30 atime=1623670096.075101415 30 ctime=1623670096.078101412 elk-7.2.42/examples/basic/AlAs-fatbands/0000755002504400250440000000000014061636520021463 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/AlAs-fatbands/PaxHeaders.21776/AlAs.par0000644000000000000000000000013214061636520020752 xustar0030 mtime=1623670096.077101413 30 atime=1623670096.077101413 30 ctime=1623670096.077101413 elk-7.2.42/examples/basic/AlAs-fatbands/AlAs.par0000644002504400250440000000551114061636520023011 0ustar00dewhurstdewhurst00000000000000 world 0.0, -0.25, 1.113445717, 0.5 title "AlAs band structure" subtitle "(atomic character of As)" xaxis tick off xaxis ticklabel off yaxis tick major 0.1 yaxis tick minor ticks 2 yaxis label "Energy (Hartree)" s0.y1=0.05*s0.y1 s1.y1=0.05*s1.y1 s2.y1=0.05*s2.y1 s3.y1=0.05*s3.y1 s4.y1=0.05*s4.y1 s5.y1=0.05*s5.y1 s6.y1=0.05*s6.y1 s7.y1=0.05*s7.y1 s8.y1=0.05*s8.y1 s9.y1=0.05*s9.y1 s10.y1=0.05*s10.y1 s11.y1=0.05*s11.y1 s12.y1=0.05*s12.y1 s13.y1=0.05*s13.y1 s14.y1=0.05*s14.y1 s15.y1=0.05*s15.y1 s16.y1=0.05*s16.y1 s17.y1=0.05*s17.y1 s18.y1=0.05*s18.y1 s19.y1=0.05*s19.y1 s20.y1=0.05*s20.y1 s21.y1=0.05*s21.y1 s22.y1=0.05*s22.y1 s0 line type 0 s1 line type 0 s2 line type 0 s3 line type 0 s4 line type 0 s5 line type 0 s6 line type 0 s7 line type 0 s8 line type 0 s9 line type 0 s10 line type 0 s11 line type 0 s12 line type 0 s13 line type 0 s14 line type 0 s15 line type 0 s16 line type 0 s17 line type 0 s18 line type 0 s19 line type 0 s20 line type 0 s21 line type 0 s22 line type 0 s0 errorbar linestyle 0 s1 errorbar linestyle 0 s2 errorbar linestyle 0 s3 errorbar linestyle 0 s4 errorbar linestyle 0 s5 errorbar linestyle 0 s6 errorbar linestyle 0 s7 errorbar linestyle 0 s8 errorbar linestyle 0 s9 errorbar linestyle 0 s10 errorbar linestyle 0 s11 errorbar linestyle 0 s12 errorbar linestyle 0 s13 errorbar linestyle 0 s14 errorbar linestyle 0 s15 errorbar linestyle 0 s16 errorbar linestyle 0 s17 errorbar linestyle 0 s18 errorbar linestyle 0 s19 errorbar linestyle 0 s20 errorbar linestyle 0 s21 errorbar linestyle 0 s22 errorbar linestyle 0 s0 errorbar riser linewidth 3.5 s1 errorbar riser linewidth 3.5 s2 errorbar riser linewidth 3.5 s3 errorbar riser linewidth 3.5 s4 errorbar riser linewidth 3.5 s5 errorbar riser linewidth 3.5 s6 errorbar riser linewidth 3.5 s7 errorbar riser linewidth 3.5 s8 errorbar riser linewidth 3.5 s9 errorbar riser linewidth 3.5 s10 errorbar riser linewidth 3.5 s11 errorbar riser linewidth 3.5 s12 errorbar riser linewidth 3.5 s13 errorbar riser linewidth 3.5 s14 errorbar riser linewidth 3.5 s15 errorbar riser linewidth 3.5 s16 errorbar riser linewidth 3.5 s17 errorbar riser linewidth 3.5 s18 errorbar riser linewidth 3.5 s19 errorbar riser linewidth 3.5 s20 errorbar riser linewidth 3.5 s21 errorbar riser linewidth 3.5 s22 errorbar riser linewidth 3.5 s0 errorbar color 1 s1 errorbar color 1 s2 errorbar color 1 s3 errorbar color 1 s4 errorbar color 1 s5 errorbar color 1 s6 errorbar color 1 s7 errorbar color 1 s8 errorbar color 1 s9 errorbar color 1 s10 errorbar color 1 s11 errorbar color 1 s12 errorbar color 1 s13 errorbar color 1 s14 errorbar color 1 s15 errorbar color 1 s16 errorbar color 1 s17 errorbar color 1 s18 errorbar color 1 s19 errorbar color 1 s20 errorbar color 1 s21 errorbar color 1 s22 errorbar color 1 s23 line color 1 s24 line color 1 s25 line color 1 s23 linewidth 2.0 s24 linewidth 2.0 s25 linewidth 2.0 elk-7.2.42/examples/basic/AlAs-fatbands/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020531 xustar0030 mtime=1623670096.078101412 30 atime=1623670096.078101412 30 ctime=1623670096.078101412 elk-7.2.42/examples/basic/AlAs-fatbands/elk.in0000644002504400250440000000146514061636520022574 0ustar00dewhurstdewhurst00000000000000 ! Band structure of AlAs which produces a band-structure with line thickness ! proportional to the atomic character. You can produce the plot by running ! ! xmgrace -settype xydy BAND_S02_A0001.OUT -settype xy BANDLINES.OUT -param AlAs.par ! ! You can change the graph appearance either in xmgrace or by editing AlAs.par tasks 0 21 nempty 8 plot1d 3 200 : nvp1d, npp1d 0.5 0.0 0.0 : vlvp1d 0.0 0.0 0.0 0.5 0.5 0.0 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 10.53 sppath '../../../species/' atoms 2 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 ngridk 4 4 4 elk-7.2.42/examples/basic/PaxHeaders.21776/CuFeS20000644000000000000000000000013014061636520015776 xustar0029 mtime=1623670096.08110141 30 atime=1623670096.080101411 29 ctime=1623670096.08110141 elk-7.2.42/examples/basic/CuFeS2/0000755002504400250440000000000014061636520020112 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/CuFeS2/PaxHeaders.21776/elk.in0000644000000000000000000000013114061636520017157 xustar0030 mtime=1623670096.082101409 29 atime=1623670096.08110141 30 ctime=1623670096.082101409 elk-7.2.42/examples/basic/CuFeS2/elk.in0000644002504400250440000000324714061636520021223 0ustar00dewhurstdewhurst00000000000000 ! An example of how Elk can automatically determine the primitive unit cell ! from the conventional one. The input chalcopyrite unit cell contains 16 atoms ! which is reduced to 8 by the code. tasks 0 ! large smearing width for better convergence swidth 0.01 ! automatic determination of the primitive unit cell primcell .true. avec 9.99476 0.00000 0.00000 0.00000 9.99476 0.00000 0.00000 0.00000 19.6966 sppath '../../../species/' atoms 3 : nspecies 'Cu.in' : spfname 4 : natoms; atposl, bfcmt below 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 0.2500 0.0000 0.0000 0.0000 0.5000 0.0000 0.7500 0.0000 0.0000 0.0000 0.5000 0.5000 0.5000 0.0000 0.0000 0.0000 'Fe.in' : spfname 4 : natoms; atposl, bfcmt below 0.0000 0.0000 0.5000 0.0000 0.0000 0.0000 0.0000 0.5000 0.7500 0.0000 0.0000 0.0000 0.5000 0.0000 0.2500 0.0000 0.0000 0.0000 0.5000 0.5000 0.0000 0.0000 0.0000 0.0000 'S.in' : spfname 8 : natoms; atposl, bfcmt below 0.2574 0.2500 0.1250 0.0000 0.0000 0.0000 0.7426 0.7500 0.1250 0.0000 0.0000 0.0000 0.2500 0.7426 0.8750 0.0000 0.0000 0.0000 0.7500 0.2574 0.8750 0.0000 0.0000 0.0000 0.7574 0.7500 0.6250 0.0000 0.0000 0.0000 0.2426 0.2500 0.6250 0.0000 0.0000 0.0000 0.7500 0.2426 0.3750 0.0000 0.0000 0.0000 0.2500 0.7574 0.3750 0.0000 0.0000 0.0000 ngridk 2 2 2 elk-7.2.42/examples/basic/PaxHeaders.21776/Si-PBEsol0000644000000000000000000000013214061636520016446 xustar0030 mtime=1623670096.083101408 30 atime=1623670096.082101409 30 ctime=1623670096.083101408 elk-7.2.42/examples/basic/Si-PBEsol/0000755002504400250440000000000014061636520020560 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/Si-PBEsol/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017626 xustar0030 mtime=1623670096.084101407 30 atime=1623670096.084101407 30 ctime=1623670096.084101407 elk-7.2.42/examples/basic/Si-PBEsol/elk.in0000644002504400250440000000136514061636520021670 0ustar00dewhurstdewhurst00000000000000 ! Band structure of silicon using the new PBEsol functional (xctype = 22) ! (http://arxiv.org/pdf/0711.0156). tasks 0 20 xctype 22 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 2 2 2 vkloff 0.25 0.5 0.625 ! These are the vertices to be joined for the band structure plot plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/basic/PaxHeaders.21776/diamond-rho3D0000644000000000000000000000013214061636520017341 xustar0030 mtime=1623670096.089101402 30 atime=1623670096.085101406 30 ctime=1623670096.089101402 elk-7.2.42/examples/basic/diamond-rho3D/0000755002504400250440000000000014061636520021453 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/basic/diamond-rho3D/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020521 xustar0030 mtime=1623670096.086101405 30 atime=1623670096.086101405 30 ctime=1623670096.086101405 elk-7.2.42/examples/basic/diamond-rho3D/elk.in0000644002504400250440000000112314061636520022553 0ustar00dewhurstdewhurst00000000000000 ! 3D plot of the charge density of diamond using OpenDX. tasks 0 33 ! define box corners and grid size for 3D plot, first point is the origin plot3d 0.0 0.0 0.0 : vclp3d 2.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0 2.0 80 80 80 avec 3.3637 3.3637 0.0000 3.3637 0.0000 3.3637 0.0000 3.3637 3.3637 sppath '../../../species/' atoms 1 : nspecies 'C.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 2 2 2 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/basic/diamond-rho3D/PaxHeaders.21776/rho3d.general0000644000000000000000000000013214061636520021774 xustar0030 mtime=1623670096.088101403 30 atime=1623670096.088101403 30 ctime=1623670096.088101403 elk-7.2.42/examples/basic/diamond-rho3D/rho3d.general0000644002504400250440000000027414061636520024034 0ustar00dewhurstdewhurst00000000000000file = RHO3D.OUT grid = 80 x 80 x 80 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 3-vector, scalar type = float, float end elk-7.2.42/examples/basic/diamond-rho3D/PaxHeaders.21776/rho3d.net0000644000000000000000000000013214061636520021145 xustar0030 mtime=1623670096.090101401 30 atime=1623670096.089101402 30 ctime=1623670096.090101401 elk-7.2.42/examples/basic/diamond-rho3D/rho3d.net0000644002504400250440000003450214061636520023206 0ustar00dewhurstdewhurst00000000000000// // time: Fri Sep 26 23:37:42 2008 // // version: 3.2.0 (format), 4.4.0 (DX) // // // MODULE main // workspace: width = 298, height = 472 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 56, y = 47, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "rho3d.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Isosurface[2]: x = 220, y = 121, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.04 // main_Isosurface_2_out_1 = Isosurface( main_Import_1_out_1, main_Isosurface_2_in_2, main_Isosurface_2_in_3, main_Isosurface_2_in_4, main_Isosurface_2_in_5, main_Isosurface_2_in_6 ) [instance: 2, cache: 1]; // // node Color[1]: x = 72, y = 232, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "white" // input[4]: defaulting = 0, visible = 0, type = 32, value = "front colors" // main_Color_1_out_1 = Color( main_Isosurface_2_out_1, main_Color_1_in_2, main_Color_1_in_3, main_Color_1_in_4, main_Color_1_in_5 ) [instance: 1, cache: 1]; // // node Color[2]: x = 69, y = 316, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "orange" // input[4]: defaulting = 0, visible = 0, type = 32, value = "back colors" // main_Color_2_out_1 = Color( main_Color_1_out_1, main_Color_2_in_2, main_Color_2_in_3, main_Color_2_in_4, main_Color_2_in_5 ) [instance: 2, cache: 1]; // // node Image[4]: x = 223, y = 410, inputs = 49, label = Image // input[1]: defaulting = 0, visible = 0, type = 32, value = "Image_4" // input[4]: defaulting = 0, visible = 0, type = 1, value = 1 // input[5]: defaulting = 0, visible = 0, type = 8, value = [7.29024 7.29024 7.29024] // input[6]: defaulting = 0, visible = 0, type = 8, value = [-4.66221 51.8696 -4.66221] // input[7]: defaulting = 0, visible = 0, type = 5, value = 21.0859 // input[8]: defaulting = 0, visible = 0, type = 1, value = 640 // input[9]: defaulting = 0, visible = 0, type = 5, value = 0.75 // input[10]: defaulting = 0, visible = 0, type = 8, value = [0 0 -1] // input[11]: defaulting = 1, visible = 0, type = 5, value = 24.9389 // input[12]: defaulting = 0, visible = 0, type = 1, value = 0 // input[14]: defaulting = 0, visible = 0, type = 1, value = 1 // input[15]: defaulting = 1, visible = 0, type = 32, value = "none" // input[16]: defaulting = 1, visible = 0, type = 32, value = "none" // input[17]: defaulting = 1, visible = 0, type = 1, value = 1 // input[18]: defaulting = 1, visible = 0, type = 1, value = 1 // input[19]: defaulting = 0, visible = 0, type = 1, value = 0 // input[29]: defaulting = 1, visible = 0, type = 3, value = 0 // input[41]: defaulting = 0, visible = 0, type = 32, value = "zoom" // depth: value = 24 // window: position = (0.0104,0.0600), size = 0.4542x0.5800, screen = 0 // internal caching: 1 // main_Image_4_out_1, main_Image_4_out_2, main_Image_4_out_3 = Image( main_Image_4_in_1, main_Color_2_out_1, main_Image_4_in_3, main_Image_4_in_4, main_Image_4_in_5, main_Image_4_in_6, main_Image_4_in_7, main_Image_4_in_8, main_Image_4_in_9, main_Image_4_in_10, main_Image_4_in_11, main_Image_4_in_12, main_Image_4_in_13, main_Image_4_in_14, main_Image_4_in_15, main_Image_4_in_16, main_Image_4_in_17, main_Image_4_in_18, main_Image_4_in_19, main_Image_4_in_20, main_Image_4_in_21, main_Image_4_in_22, main_Image_4_in_23, main_Image_4_in_24, main_Image_4_in_25, main_Image_4_in_26, main_Image_4_in_27, main_Image_4_in_28, main_Image_4_in_29, main_Image_4_in_30, main_Image_4_in_31, main_Image_4_in_32, main_Image_4_in_33, main_Image_4_in_34, main_Image_4_in_35, main_Image_4_in_36, main_Image_4_in_37, main_Image_4_in_38, main_Image_4_in_39, main_Image_4_in_40, main_Image_4_in_41, main_Image_4_in_42, main_Image_4_in_43, main_Image_4_in_44, main_Image_4_in_45, main_Image_4_in_46, main_Image_4_in_47, main_Image_4_in_48, main_Image_4_in_49 ) [instance: 4, cache: 1]; // network: end of macro body CacheScene(main_Image_4_in_1, main_Image_4_out_1, main_Image_4_out_2); } main_Import_1_in_1 = "rho3d.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Isosurface_2_in_2 = 0.04; main_Isosurface_2_in_3 = NULL; main_Isosurface_2_in_4 = NULL; main_Isosurface_2_in_5 = NULL; main_Isosurface_2_in_6 = NULL; main_Isosurface_2_out_1 = NULL; main_Color_1_in_2 = "white"; main_Color_1_in_3 = NULL; main_Color_1_in_4 = "front colors"; main_Color_1_in_5 = NULL; main_Color_1_out_1 = NULL; main_Color_2_in_2 = "orange"; main_Color_2_in_3 = NULL; main_Color_2_in_4 = "back colors"; main_Color_2_in_5 = NULL; main_Color_2_out_1 = NULL; macro Image( id, object, where, useVector, to, from, width, resolution, aspect, up, viewAngle, perspective, options, buttonState = 1, buttonUpApprox = "none", buttonDownApprox = "none", buttonUpDensity = 1, buttonDownDensity = 1, renderMode = 0, defaultCamera, reset, backgroundColor, throttle, RECenable = 0, RECfile, RECformat, RECresolution, RECaspect, AAenable = 0, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, interactionMode, title, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, webOptions) -> ( object, camera, where) { ImageMessage( id, backgroundColor, throttle, RECenable, RECfile, RECformat, RECresolution, RECaspect, AAenable, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, interactionMode, title, renderMode, buttonUpApprox, buttonDownApprox, buttonUpDensity, buttonDownDensity) [instance: 1, cache: 1]; autoCamera = AutoCamera( object, "front", object, resolution, aspect, [0,1,0], perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; realCamera = Camera( to, from, width, resolution, aspect, up, perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; coloredDefaultCamera = UpdateCamera(defaultCamera, background=backgroundColor) [instance: 1, cache: 1]; nullDefaultCamera = Inquire(defaultCamera, "is null + 1") [instance: 1, cache: 1]; resetCamera = Switch( nullDefaultCamera, coloredDefaultCamera, autoCamera) [instance: 1, cache: 1]; resetNull = Inquire( reset, "is null + 1") [instance: 2, cache: 1]; reset = Switch( resetNull, reset, 0) [instance: 2, cache: 1]; whichCamera = Compute( "($0 != 0 || $1 == 0) ? 1 : 2", reset, useVector) [instance: 1, cache: 1]; camera = Switch( whichCamera, resetCamera, realCamera) [instance: 3, cache: 1]; AAobject = AutoAxes( object, camera, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels) [instance: 1, cache: 1]; switchAAenable = Compute("$0+1", AAenable) [instance: 2, cache: 1]; object = Switch( switchAAenable, object, AAobject) [instance:4, cache: 1]; SWapproximation_options = Switch( buttonState, buttonUpApprox, buttonDownApprox) [instance: 5, cache: 1]; SWdensity_options = Switch( buttonState, buttonUpDensity, buttonDownDensity) [instance: 6, cache: 1]; HWapproximation_options = Format( "%s,%s", buttonDownApprox, buttonUpApprox) [instance: 1, cache: 1]; HWdensity_options = Format( "%d,%d", buttonDownDensity, buttonUpDensity) [instance: 2, cache: 1]; switchRenderMode = Compute( "$0+1", renderMode) [instance: 3, cache: 1]; approximation_options = Switch( switchRenderMode, SWapproximation_options, HWapproximation_options) [instance: 7, cache: 1]; density_options = Switch( switchRenderMode, SWdensity_options, HWdensity_options) [instance: 8, cache: 1]; renderModeString = Switch( switchRenderMode, "software", "hardware")[instance: 9, cache: 1]; object_tag = Inquire( object, "object tag")[instance: 3, cache: 1]; annoted_object = Options( object, "send boxes", 0, "cache", 1, "object tag", object_tag, "ddcamera", whichCamera, "rendering approximation", approximation_options, "render every", density_options, "button state", buttonState, "rendering mode", renderModeString) [instance: 1, cache: 1]; RECresNull = Inquire( RECresolution, "is null + 1") [instance: 4, cache: 1]; ImageResolution = Inquire( camera, "camera resolution") [instance: 5, cache: 1]; RECresolution = Switch( RECresNull, RECresolution, ImageResolution) [instance: 10, cache: 1]; RECaspectNull = Inquire( RECaspect, "is null + 1") [instance: 6, cache: 1]; ImageAspect = Inquire( camera, "camera aspect") [instance: 7, cache: 1]; RECaspect = Switch( RECaspectNull, RECaspect, ImageAspect) [instance: 11, cache: 1]; switchRECenable = Compute( "$0 == 0 ? 1 : (($2 == $3) && ($4 == $5)) ? ($1 == 1 ? 2 : 3) : 4", RECenable, switchRenderMode, RECresolution, ImageResolution, RECaspect, ImageAspect) [instance: 4, cache: 1]; NoRECobject, RECNoRerenderObject, RECNoRerHW, RECRerenderObject = Route(switchRECenable, annoted_object); Display( NoRECobject, camera, where, throttle) [instance: 1, cache: 1]; image = Render( RECNoRerenderObject, camera) [instance: 1, cache: 1]; Display( image, NULL, where, throttle) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 1, cache: 1]; rec_where = Display( RECNoRerHW, camera, where, throttle) [instance: 1, cache: 0]; rec_image = ReadImageWindow( rec_where) [instance: 1, cache: 1]; WriteImage( rec_image, RECfile, RECformat) [instance: 1, cache: 1]; RECupdateCamera = UpdateCamera( camera, resolution=RECresolution, aspect=RECaspect) [instance: 2, cache: 1]; Display( RECRerenderObject, camera, where, throttle) [instance: 1, cache: 1]; RECRerenderObject = ScaleScreen( RECRerenderObject, NULL, RECresolution, camera) [instance: 1, cache: 1]; image = Render( RECRerenderObject, RECupdateCamera) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 2, cache: 1]; } main_Image_4_in_1 = "Image_4"; main_Image_4_in_3 = "X24,,"; main_Image_4_in_4 = 1; main_Image_4_in_5 = [7.29024 7.29024 7.29024]; main_Image_4_in_6 = [-4.66221 51.8696 -4.66221]; main_Image_4_in_7 = 21.0859; main_Image_4_in_8 = 640; main_Image_4_in_9 = 0.75; main_Image_4_in_10 = [0 0 -1]; main_Image_4_in_11 = NULL; main_Image_4_in_12 = 0; main_Image_4_in_13 = NULL; main_Image_4_in_14 = 1; main_Image_4_in_15 = NULL; main_Image_4_in_16 = NULL; main_Image_4_in_17 = NULL; main_Image_4_in_18 = NULL; main_Image_4_in_19 = 0; main_Image_4_in_20 = NULL; main_Image_4_in_21 = NULL; main_Image_4_in_22 = NULL; main_Image_4_in_23 = NULL; main_Image_4_in_25 = NULL; main_Image_4_in_26 = NULL; main_Image_4_in_27 = NULL; main_Image_4_in_28 = NULL; main_Image_4_in_29 = NULL; main_Image_4_in_30 = NULL; main_Image_4_in_31 = NULL; main_Image_4_in_32 = NULL; main_Image_4_in_33 = NULL; main_Image_4_in_34 = NULL; main_Image_4_in_35 = NULL; main_Image_4_in_36 = NULL; main_Image_4_in_37 = NULL; main_Image_4_in_38 = NULL; main_Image_4_in_39 = NULL; main_Image_4_in_40 = NULL; main_Image_4_in_41 = "zoom"; main_Image_4_in_42 = NULL; main_Image_4_in_43 = NULL; main_Image_4_in_44 = NULL; main_Image_4_in_45 = NULL; main_Image_4_in_46 = NULL; main_Image_4_in_47 = NULL; main_Image_4_in_48 = NULL; main_Image_4_in_49 = NULL; Executive("product version 4 4 0"); $sync main(); elk-7.2.42/examples/PaxHeaders.21776/magnetism-source-free0000644000000000000000000000013014061636520020067 xustar0030 mtime=1623670096.092101399 28 atime=1623670096.0911014 30 ctime=1623670096.092101399 elk-7.2.42/examples/magnetism-source-free/0000755002504400250440000000000014061636520022203 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism-source-free/PaxHeaders.21776/Ba1220000644000000000000000000000013214061636520020640 xustar0030 mtime=1623670096.098101394 30 atime=1623670096.092101399 30 ctime=1623670096.098101394 elk-7.2.42/examples/magnetism-source-free/Ba122/0000755002504400250440000000000014061636520022752 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism-source-free/Ba122/PaxHeaders.21776/Ba122-Bxc-field-lines.png0000644000000000000000000000013214061636520025075 xustar0030 mtime=1623670096.097101395 30 atime=1623670096.093101399 30 ctime=1623670096.097101395 elk-7.2.42/examples/magnetism-source-free/Ba122/Ba122-Bxc-field-lines.png0000644002504400250440000124625314061636520027147 0ustar00dewhurstdewhurst00000000000000PNG  IHDRyL] pHYs5ؗtIME 9} IDATxyeOU5wfr bS  VXq]Y*ʱ @A r rMIf&sOYzj{fz!$5:>_!ć;vnFTנQ?cƌVRJ۶Çϵ>|V:SUwwUɤ}և!zݰG5M===ޞ={3Çϵ>|v׏;|YYYSO=nnnϰу={L0AJ)(~+˲0x'׾v'N4?>|\hGWWرcmd2,_nݲen9sևA}E訩)ks<Ϻ=cJ ZЇϵ>|8`H$J+,+ ysc=v{P___>P(4`cצeYӧO1u]K.7j*ևbXEEE vm*RUջ4h4:a„mڵ-K'Jh(B**+++kEٰKJ9^0jjj.yY_>B"дa?h=A ujdooowww{{ԩS'MT¡s>>aض]P?TWWw'h,+W\hQgg(dλ+|\Ç ݊2, )e qGBG"cۿouYضgϞP(k}_"` wuud,+|(][nĉgcSUuԩq Cct'~,ˊD"9EGuuu9>|\ÇYfRӴn:.A*HR& և/D</fM!4Ѳ.uwaصx<u|m'?ٴiև#^|_|ѶbxζCYNKpG[sD"(p/^||\hkk #9_JHiN0*++իWϙ3+Wz7dm|Ga! e9>Rʁ,lH|1Kp ޽{ƌ^xW׿^v?(7nPܱx5?>|\[䚶mH cb$2M3-_~~@׶1cxނhtO?ST >|oG=qD߮Ga"0>zaYVWWWηb5T*o~`i9>T*Urd[[7`|! Wه۷o7oZus7eB"0M@#hYO7toځH=lB-ALÇF'N}1 $!/衇4M8V%YʫVz'?xm(*6LPtG(PNoq"N?[lqث'^=_3d2 }1(Ǿٳg;iF|Vnll<蠃cYV:Y(bؐm=2 ,+}WvwwwRk}$7lٳ۪4m9.ܮ!STjirnƍmO<ٿC|]}ȣר?#msiYQQQYaZE:.!L&sBa{[nks/1\R)0Ju}1UWF nIEbfr" )eEEEʉD}|ݨd2+4EۻxW=\[߇'iv4B]wR޽{B!t:H +oƗ_SL1Fs8B!tz^>mŵ>׎ϐڼys{{-Jm^yt?%I'5i -JRQeywUrnT #HYjÇB~nGyy@` yzC-/K섩e esi^B)ڜ?e |#XfMmZ#t?nڿ%5 ,9뺦i\,)e~:I**t'TWQbn|f%GRԵ^;p"M|>!Lc>9/2y8߶X,f5~bXifY!I)s4J3t,ڵkWGGk/عsg,H$}<yO^d&c3Ny[555wy7t/wN ԓZ#3O{\t".ُ+Г&M~GW e6SwX3zM[$쿓zoiEEE|QCUULD_`RUi%7F㯿v?`Ù~>dkG#Nd5ցsp.'ʶ`08(Jwu;PhܹsSSZOt||wF#Auȼwk} 9DO49\[r?VWWi}/buuoۜrnƺCڣ oPT1HR#u}/>xh'1"\! !n>9oooo]H)+V,Z#W_=R3?'kq9J]Ç~H$9Pr}mM9Nmmm_|qEEmjoo8q St:vO1?qBJ9%,sveYRT*N dtpW?W_}u˖-N6Ν;A>Ng79 Z[[Gp$W|}|M9ZZZQZ)SUuҥ'N&===C9*HE> 6_ P2FJbob/ٵO=ԓO>:%\r9,X`䥗^8s|3۶mkhh8S/_vʔ)wyC=yO.lmmu1q>?C㵏Qe h;s֮֜]_y啎ZJVLiW]u՗bhFօkY-ܲiӦSO=Λ7oǝbZA.YO3|=cf<)YOk\p\z??V~Wy睗^za…;wtf3gμێ<ZhO~K./nʊ Nxdr6P0PUzm9"-}rLIUUs"5 c׮]iΞ=rwK,~pUW-X`Qx衇Os';|.y^&O,;v +s=\x%ӦM[g͚=#4Mz,Xp?~Kwr4߳MVJYPQi߷~_01cYh׿^xȽ?C*//3ρ#vuuEUVyϟ?Μ9ŜI&]wu'O~,YRp\s/*Aեށ/6/h \8*/*SZ8Vض]І(H=܏~K/S@8餓Z[[MJ ObiAcTUQWS]]X .|'s9UUUSN9ꨣg;_}G}?zQxA-3e5k֔pfƍ V~B#(1LC.õ׿q544\z]tQKK3(kN8! ;ص^{׎3.KR/(vx>Ͽ}^#iyO/_> sOY@XHS _HE*LL _~<ӧO߾}{ 'ѱ2A 0 ÷kKgξv@v}W[[}9sLROӦM4MJY__]aÆֳ>8餓&Mxv bgsX΅W%$vuX" ɺw88C"!12k׎T"H6dbLjb| ϝ;בr0yMp8{M<^}էr_?ϮZܹs9眝;w[~[H$O?tv>d+l3i&8|'!cEnRI V/غ.RI(Rʆ+V/&JP@$QLS (++s:I_Gp.OٳJU^߮%GƎ/Yd+W<>"7rsҤIم;vXrGsΝ;wzw޹)Ga_Dorſyr)qA/$ i]ruס[l@o-7^bwYp8-?`Ӵ6Na94v( (2dSX)2Zp?eeeF *!վZji}Ļ)>}{_׮]J&M4nܸ;{g͜9^~G:Rw >.vxf1Oouo47nxG< ,p,N_~y w+86Uwwkۿeڵk֭]wݔ)S [nUD;R,G/ >ˏtC5[k`B RM@G 6wic3#albQ3TM3l<*** 4_x@ co !ls'H)<6Ǯ|5!D0,Dׁ\YYZc=vqǝ~91"ED#؁ua=RP(=+\rʝ;wq+V3gkN;mڴiEv~jժ3g~.\xG.~'vaf-kA!< 5`/ XP163UG3Cr,],+$ԌnY>k'8'ifHucj2lvB1Jeeezk~}-gC Drv4D"@xVOOOA{Tb/ b{5Z04믿s|9{˲F(3p#}>;g> ,Ə;wqW_}uSS 7h۶_|7 'd˖-wq֭[;X,~׶mMƎ{x㍳fr]wݵdɒ:??/??k wttbsp_80l{@ lBZle<9Nee<Β HC R fe|٘nä]"*@;<_72I_x/TryOQ:L#gG0JLAQ~(UU2eO?dɒwygܹŸ 2wuu$m߮da@͘?R.\p…<ַ9s8.|̚5WU_ +uuu]wѼϲt«|%ʱt吮&e`)LC`㖾hEJ딍pVA;]PWMk;vӞU$JN{죨CxQGv=Nhֶ#m4C!Hi6I)Kn&ɣ:ʑn=C֭[Nc̲b#h+kY ;%ھK|ц"fv,Rl( l]}lC9kdz|i-_LŭP-A#\dVJ4S] njqlgnx~q;Ϝ*w4$ 1b )e*Gѷz0 0{ɜʺ!bb$ڹ o'2 +?Z㓁;;S{aB c|ca,}P&`z7\MظJd-I -94w݀sl^ՔA"Wx핲C,7_4CTjHMJL&)?}݉'nܸI$dڡ![%WаCF.#HOTeee}ޅN{{~FLF5NO:uԎxjOnGl_fwWX6?G<9a"LBd#ӶUд#'5 -]ǏoY fK1p)e??峦m9LE:sʜo9"G[!eYR ѓۻ6 WUu/>d3;ۀi !L?D36bFJZcjB.mYBP*r~BNu>UP:-2)H@ & z)q6 ~\#>ؿa7~Dt;)-RlqؑCM+5 IDATv,NUgH9aXuGÖC-ƍipmYV%elɜBq R JfdžNEL̙aNOxgOgy&n꒍9)O_ŋ;::,J.1*cyag6v4b?~LocWg WHBTo6CJ#Z`\QZvp_U͎~ _ *f5?E2I:<8Ѷ ίh}?c㕬~h=q*1 TVSY{c87rH]|kZӴ7x㭷zgM4wH͇mC *v6'PjYĪ'N8fh8=}~R>-D"8ݚ9a+p;_G3pa0}IrͼQ86-؎tlv0kTTSo5ĉ47g\DZpo]ىvKؾ)=<ͻo306΃.'m'sDu:ۘ<!PU˲ !Lo#7t5\3f̘^UU{zzQEfH)Guos Jǫ(Nn%]]bdϋKDe5;84HM3KhGk9]7زeK1UU BCr^UUW\q{;:?${󋪪B>'a^;sLw|&[oeۯHu`}0>GbmlId裖6V[%,0*m4>{o<)k~ i*0DeL?af<6 ]i'p@}\Il3LvJQ^Yb?`?ԕkNXQ֯ew1g|jrƜѽ#Q¶Rl+\4o޺!۶P(Eȳg6 3?eY]vom}ӈ?p}(YL~@uzxUP,]"%2q/g#{ôjeӬSl{[R*w}yY&>kZǻZs539_+p_q%Wc~k6cƌ!wcOUUUYCśi(R JE}G|T9iavбIK q&@R趠9dPq(FyȖVTZ&U VeE~. f mòuKΧujmEVѸZu)[ Kp᝿ab7冀+2B6ؔIDXv"{2*`#+%l*cޥͨۄ&s IN{ҽ曗^z}Z (E"oiyg !pGG k'>)Z_BMjhލh1 tS汯Ht8:Lթ=6bnj\x**FE-=NQ6jj<{OW:hnص!BErm,"2(➓Fb &?_ȒHIDefx{ صģ&4Mrŕhp\NgGWvJGXEQJ̺y-:sO<`0U(jNY)YW6Hmv⟅}`!5?>||U۲D]ALڂ019̚KqPÝVHOɲ_M5 +"; zQ@ 2a6֌"cf?~{c‡+7F'gOvh:cX= 37c!2)@O'ʑ#H,Dk[褺k L=aـ!شdRF;G3e:'iq(Jiq:g+UUA+UU|g/ ST/++Ro(LbG(kYwѵG䞕۞&ڲ'@e &lK47NJSHӯPu')=b}K'0ܣn`盹Dqcw[*^iۢFɄ*ض9l_긔6APWTHT:ǵu764n3e&y>8t6oMtXivoCGiz)e+C&,4(z|Ҫ=TߚY-\.pq/!ӼZA2Ϟ=gęU\-e'^tᮯd'ѷۑ''56~ֶT*)xAW F/8v(lx=yf}Zi !@ b-?1pcJP)4)O9~a[ஓ%gFp8/[Av&2 5!נwzfVfb 䪬,pr zî4'ȡUo:1.z.!Rϳ/eӼT:[M8@H'+$,Zzfܟ9%ݖANjt5=-4p;^#+Mv~ ` 2mB?ߠ =IVT4~ -z|:G^SNN4w.o>-eJ}JPWY0\$F !sc !zzz949eY֐Y}GJi^%\cFw@M*H:6l:W .JXLP7)P:VW@a$cvclV}IMmHT n%쬣jH !swg'!`mmRuT mei웝'Zlys%gK,ׄHSXOUAS{.8$) lKEI*+q:53 D b]G=L~#z)@x79@E  1Q߮q;2lz|e&aA q{Rt\#mTdM: D}AvvK![PWP+>0tg^Կ%1% F2kgK(ElU"!ai``j[LsgBcưmYu"d%7Fz:(Whhc!h3#sJȾ*IjQcGiaL&Nc؂xNU1IUxkkks8l6 d>_#Da5?_`BOmõ˩CB C(OY/*DvV:~tde .,,Yf__k/=CݿflRT@<@BH{쥘zU`wJ$ %H&$*ws +*"\.|;|?F]= 8YrN&aef E2 ~WXZ#ޝ\]+9sRGG=Tw;[:a*4ڊLVUKZa2.D*sOjVƛï;d48#mc2C9SbReDx2@)NOs<7wm%do23yt+J2Qc}hI3̝4{)SI{^N_kGqi-ݑ5f8P;^#kl$4&DDŽqcy_ǢW"D 1 3?jWC{&CEB0Bu=mw9֚ 0s>cJԳ&@ߨ;zN;1mЭu[+a ЉPK_BbV؉/hڅ*q=XoRz :7a wwP sKBBQ:^* )ve_I7XPlĔ)6]shi!3K8"MZ6)tT)jǓn꫒=$g3 bݜt^6tgDdz-'}#F/={?#(:IW9Nnd]׋ib?C3^1zܪ/,)lkG,Yr%|tbכh)MT(˦ ~vmtU{]:~So>_pu_dy6FjYG˙ѣY&m|C_nn:f<SB4 |:gaYM,!X8ms#֭֭7Gd;zM}Ms)3vɺM,@vMU2Gn٤v<̆z~%aA سt\I@ok.@0θ歨(MLk~!ȞiZڽ<vax|Dt:]~ /i4C@'@Qi. 2Cc+ﯘ6X|)! ۏ gZY` ,ߪpKf{: " _E0-~ξRD_!.͞rBVؖg,^Z*$UC!M`xʟdD2ȖDD*پP5fw/;/?9dωeK),c2v tǞE:g|YQbת,4?莝&H=43AVH+xK* ˪D @ŅwaʵksJ Vc9olVжdOk ^GNDJ, -xlBȱGi4a^Hd0%6ԌcD.䩧õ3,ݔ+t и-k(w%_7ި'O^im-랩JR;ʭhl:Tʫt~4]wqW5)`} @H;۳z!A.{n_BI' Ed ! Â?W\qżyʬ=>d6644βѵlǦ'2 r%UaZmr5؊) kqv6 KYJby^S3m>}ڐ>W-]dH 5TMҼn YaL C6vB{XDWI8UP eBiN[@P783Z]AiWx$^%m^$jb8P5B9`DhNϢͶzbCw.3s0,7^L+B8U(JF^;gɟ*]?捥lYO<-{lێC>qE>FOZزe˽{i)3tMӓ~xSZ͚%WIqlZY'@nv2&4rPوmMv_M2IXC 2s-Lact`w[̞}lzZѻ mt6QU+ WG9; W4$&*hBe5>8Ԩ B{ n `Vs4PU ALAd1[Ѣ]!:PC$ҙ&3ر{HniT2R3 Tα1]bʩ_faU+M3+Y's3f]U]js!iKs _pq>nnafjD0c)e1s ذvڳ:3/~𪫮:x1 >Gi= ̙s,k…E-QZ^ 3 vғƂrf 03iW89PACO OW'!iiَ3s":.mZuU)usvSuX)Ma iN`{ۢ;h8 <|Ew+fkTmL'3.`Ri]Tl)|)5fA8L#+cmPh ;'y:#Atg+I4( cP! Ҥ w(]dg.  OŤ(q*($!eO+&NBT4Q2 h 3Ib9hs gɔ{.=N80_7Q]̜ozdwgdpBmjj:ǎ{ 7{?OX,vG#ϵ>-6 _PYYygWTT>S 7״IzO&`cZ⿞|MYSEҠr_m;S_'[U]pR7{$%̋ȶv,8* S L[5SX 69 g0niH2FJk*t -Er9gV$8ƶ0LL:zmIs=:1D IDATG~N*e B *hM`ˌb#@dX!P,8dBURƇdi+,;ør6m[]uo IzbTxԲll 5Q7N`B w$H>p[RzSXX}URv?۷Wq,*EjoL=ֽDz' U)!d'|q@AMf!D~E;wttL0(//w3a„o_?F o\8$jkk}1<>'믯\Ҷi_Ūh} 3T!/> Uο7'% *h!תSb^FJOfքThF( CWQX~{/&AR*RXfamHibZם>v*渔%c.{{4Odw,^rzU>$uRҔЙʸ݄m]&e%Bb%b{PKMC(4B5|k=|=d 'T.Î,@AnlGnfr)zu*9\,lI%<ƟEB:Dݳ朮."**Ab-M׋òiO"nͻvZ`2t"x3rY`~dT]tѬYz-EI3`}|T]GydCCCݛXq O! OO>]08UK'45L) ғ/4f`c֪ڲ׷ |"iii"ǖ.Ɣ!Sef i4(S]fk}a"a41K̴f3-@KL8 z VԖY6ǜȸ))΍T἗?˄>\-HHry]Эu\pFm$ Ǯ P` :mlǵN q/^s~K&{)DfoiBt%t@ 3 *ԍ;3_ۨ`ؘfH˯ia=)Ͻ?ʚ} ˉ&84esl5!DfUVV]xQR d\Q{osF5?3glkkF޳RD7yxw¹9J&'Pv ysB/L]۬Ttuym;v!ͼL]( e҈ˆ^YTk4vqeiil799:䒨r:tR`+"mYy3,TMPb2訦jƌYD@@AP\uT0V/ȼ@=F] 3fỲVqw& ͠vٱ{^HD03^@"PU"2A@Rپ&#RKޕpƙi`,GhBf^HL7!UWrtEǢg?0nSjA %>xrDoʀ˷tѨH$q;]q?~37Rt:]SSSi靝]**mYs7gNۦ9DIE:ѽ xUu-j\NǢfƎŽe N&Tk} YHp۴0HzJ[iR6O-(PiTbNJ٦V"iј,eӾ va{T8ێY[G1kkI HB0"d;&lvo4_I8$!57WYt)|7J.A{"Ǫ˵!((t A-$:2mC r1(=ڒ9$[9G[ @2J.tFmE'Q [ätDa;z)=\'AC8`,5c--nIVr,B`IwOZ6fTbŴMR9F-H$lA?|VVV3 vlݯJkkQGpmEEEYyu+'u-$:g;yݮ(UƖc5*!T6Ѝ),~6&sC$T=Ď%)򹶷.aCuLQg,sZw8=9K34ʠ`"  6 `ۀ66` M46BDIь&OtyW^QU;sSO=TW׮]]z}~?Yw#MX㖬^QH),o?HUc4UaիHE]!toX&$NڧT(?0{q҈:^Uk>s\j% "k;@yak6l%m|/rY^G[[H!߻zHkHc_A>{[R7۶lٲe˖~CCC]wV[1 dol'CIhI9ﱚXmZʄry\iWY\$aR!.@ TH*tuŝq$^Jp5ǹv+7>;V-T Z\'/NQƓju6S*O'Φu)ޱg1F VKbv\js/R}KP4$nvAO bB<'Y[l5 mru`|7E)~r 5Tíf¤hfr4Gdd_OƩR[9mjMr|JgqsuVPSsXPЙʟ% ylC@k)*W=9vގ q 6aw~hz#]ԙYT,5!1ǐIl:I~8iPS|*_el;'_IJa)<-}:Σ!yCi},MvY}{?g>tll?DŽ~/vj3UуR(N7S=UT87Ee MJ6Zͬ!<,0[ =+},e8_ezq(VSݺ%`k 䆣 Zrky8G1E^>?fJ -7E)|fNL4cCo sbX94՞&\B"olw꬛}ڲpsퟂe[هWA3S:?xFFI||zbti Ô۩+8k9)y,` bHoxY* H];891s^Jy InBؼQ$2#@1Iń3!̾,A>w=>ϳv{UsS8z4 *i @%OOc~I;ev|\pnʽ7sۇŸ) 񙺇8.e*hAi*+. bG1ؐ5Z B`*-3: Xjenj=i@G?];%*C:B81p-b ~.xA,iWy,O{4'e!ܶmۮ]#=#6Nu I):G @ K&v#Z{z>$xΓ0w瞳I!ᕼ|V t p[<*-m𓹢 0X/ԓ~𛈸ڳoo/k#q`tePwu#| %6 Ҕ _*d+<=^+BJyXn)<e\_b.9^x7+L~!6G<#B[n߾}ڍzdV(Ȭ$;g3RnClZte7J s/M3dAF% l)"j 4Y-".(IR8pV1@FuDQBDAX&P}*["cge+D2%MifeQ[ &.&1 r& X6>KZ|T`ȾBmHWSa!Dt mEoW'@7KpCEls͖#8Ld *2$b/mT.ek~V2b[gF#U7-o8٭ah Ik<94F*L\f%$PC,#}R4\ddϸ㟈FU[ɾ:Gs/Ru7o^_px<Gk}'N\uU%ˣdj3OebÆ |߼.[!έ!6=Al?: #EuzX "A-U. >lNP>Wb|/U#Wf&-Ychϱ ^zp&vȨwAPיzSހjGބ%;^Z[8υ8uxB)&dDSmQZ.FVc5]}=]M[O~FUN`@C``#%[O3u*[)ZY2Edn/i2VrDt4#B:!DZR?u$+7%Y +uNӵ2J%NC)"#2CV^`7( /z5!)!. RS1P ѼgtM=Hdq1j|P6a=ZNQqչL5>7o~_RǰXl6S%I󑂟'Rbz= 6{ݛp QVoGP1ǟIeSrı r*e $ P H1 ǔ-L,a`ag$W;wAl*r`H !a40bj6x^2 ڱ\[˞qP&ht Fb98IayϧSڍI}IM_ʩNvݕBT(6C4(/s%ȶӝ?R,R`P=nGc[#"la(zX[DV}Ptfv>nʐYBkB)ʫfϐ>LVL \6hh? ;^'m7s!/@qB&+&DZyk~N/BX*9wyX]W (&P۱ s?u*rq :!I<_{ݓ)8t3mA|HНeG27[G 5ɳdJEXC%҆F_IJg~d̝H/T&HZWt92W? C`N58)m2ѳ0lX~IoBEYץxNqS$ ^t9gl*Gh!BDbt9ӟ!qMLߊ('VXvH$$6%?rGf(sDJv LM)u[j-бMa))&. `n;q^5R*e t1/!0,.sϾ>> L#D(J"O (DB:s E8\Yu]_l 0=n{|R槱 Z%AqU㳻3=gaVnk`C] h~o{Y (s_ut4eR燬ZjoPYO;F}]5;m=|#Byǹ!B+8>9",41 Cbm'@K0Lʫ>$w.U\5!0ނݾq@&CṠT[&ƆܘS36Fki%OҮ*,p8v?GcZ_?לeZN^"?!2s8Ϟ#HV;%Z;''$9L$ZWeR5w^&$Na`c2^|wq]^2\>ݲťO[Lߋq[Z]-e`HWDn%[A4=lTOP?ޓuRjICc1prb^̎'SZBFqtBM껱<+sg7Wɾvyr8'AǿcZq<0+~faݍ;`4Zos ΂A_ 7$z%cf88%z qo犧ηa+b*Dwa8CCA[5p'/:eȨDv}dC nXKӱph\bo,cXIν|hZ)p6΄u>jJ[#}:Nb!su y4Oў'lRV¦3Se| !3VYҐ4f L̲aLVko}/7.o_|"`BӽO/OT >/߉h:!R#!=y"vq Dd$ b1b5q= AEbD~_%)lEqZ5DB r %3`e(5lmhȈ5 wi}cԏؙՀ7EOiL8킠S2?>\uٷ 7=3"#< n [C'=24!-!K~1QrX8"bbBOr#t1i˜Ê-\^nM7Gw`--'k.z{_e'`Y#0[ юcZ tga6NT!<ɕ_/B_@ IDAT4t&JY8/GPz2eS:`;V1^R1Ty"MmfY( 8ޣX!FY^6^D9"MVm9|1XpXs2 ={}x':̭}ߟGsFB|N)wkp<ў=Cf6 3SZ\Y/0Ke,R6BU$l5T 5GO7U0q Pq2}/aUZS;?Ɏ8# wEi\uMCH[YOٴ6mR.1b;b55$CGaai % l ǕO)q#Jtg{ j0Zab :s*c0њQ[yPҘ!v(tYpQd,$i%IQp3y 01Q[qy^qy̋Ku&=$!na`l)5o֭5@g(}.vB3UDI$*c>y*vق &Mv[ hAjQRR+51iv S{I"qpM} Ba؜љw,D40$6Nu9 ۟fa[d܌]K%NY*2$ WKI饁l;֛=F+ 9,.w)"|QA:4j A<3j:űw2r~k'L,ODH% P6[ !'gQwf %DhJ˅1hMtV_[j)\u#|D7lÒcEXZiv/ӜZ|%TPFjӱ8VN)+e3+yg&s&jI!MK/~6o7l'n1N.˲*3*Ln2c;u[v1.'NC؞qC1ǗK^v%[N Y5 s8&4M %$QT`F@,s4``'Ʒ0x3 m qԭuH4uK5lĻndbk "n >@7'X#w: ۶ŋזѣ%Uf;Q1V#D/{ڨ/Vܷt(z#Њ ~S ɯڄژ0M#85=$Td D~u1 ̗^!S&e b6.|544Ea`pɶ 0hч|5c&[]Ϟ9fmbqs1#?/RNK}r +=q}YN<,#ŭR,mZwa$D'A7 iJC1~qZҞ$ V^}0,BdSpAY/p(UX)#1:(Kɲ"nKEH ood&JPx8 ~3sB /xK(RS CL@ģ|٩f>e (/f51΢W>= 7_'UZsO:c%}CXSi]S8Xa"_ $צQn{cmN,-NDF"axy+=El>En%2CߏH)2~ԑraq,^ ' Q^VS}IȦ+;1vO+c%9NqlLwvB9hf"`1߂'L&NZ;f](otS8u5f Uu>إےE.ƪ?՝ oFa+2:YaӉ2M6F$Xi k1246h[NpsyRJZyzn: 8FadpgvY8&썕ھ:zdMgf?{x+ R鱂ۑ'4 r3ߘ y,BMl9J҆g8YUx! ´ ǚ+u*ht6V"NX+^2 ŠrnEHjA&8GzZيz@Ӕad5g]J}QcByawPGLZ`^u1S@6MڵBF%HBLHZ\6q9<#ف_d|VI &%F/S+T ڇ'S +<܊0bH Iz5y>x?aɬyDiJSTdv4-ZhqRe>^[P d:w$"Q!$LbO371AC7-a"tC"h$>2^V*YY1YZʰ6Nh{^u>Pa)d'`>5GUə^oڹ6K{J}qE]6\& eGqgٷGB)$&a~Um&g_@7 АKKcݞtfQ;Le:nx;kJ4dn$+Tw=XHmX_ū.adOf 3fn9Fiv%zl|)) CD ~*)=*ĸYZ{tXBǧ'߆55e4H0FtS^R'ꩣӳ\z}ԿQI7t{boSD6xcfamȤwN (8h C⦴5Ζin&?g=veRB^IBhxmN$}A3C`ʁφv;?ܤ$yK'i90f{9m!YBh>44MAx1*0#ڠ&͹.R8;KiWō6ǬN{Y*:ĩf ´OZ_U(!:!fV k &+J9!%rbT|Wn\/Mᅫ/cdNg2YuM&{vg}ss:pѳ{BBê~hJv.[7+A(„оO%iucݝIWd8; CS^jU!4ŝ/L|SyT$p\T~u+cSv6F"*lf-XG5YyG !1 8h-jS<츪{6mcz0%F{wQuE1IBǠt@M1^_`(~k&naBZE#>o $Hq\W]ŇPd؋j:.Q󋸜G [?BO&t^NˁTwjYk0bGߍk2!Il JѸ| ISgޔdtLc FR+@6ۅdY 2FM065 Q-Y%,Ž-LOr%|bJ`C *hX4;Ex a:8(>T্^\Vԗ:C\f}sy7'9Pdv==Jv=;7(O-t? ,Poq *EZS9:3'7>ȓ6RUSߦq3^T۠f= . OF?=V$BJlL5V^$Xe*ґ.] dž0HEi lX`")fKA6v}P'ZNoR Zs=vA&F Cq s yswNP*Hu>98=Ŗ_eϧc^Km hO[ (D$ |24E*N@" j H箖lINpvx_Gfh,1"^w(c?aH%qZB!`ZGX3slM^OiXZf_v"XZIGN H4S-K~cC|$a7kB!:udZ%b@v!6 G  ,ǐ,7N_]l31-IT|MxMpzDLY(:bl,kd5-lbb<%{OGς79z={8dOSPiP( 뼋.` f#v&1LU5AU}:MƘ;G KX)&X}9EVQ$rjn"j 8{,wcTeq'A/4j170wytcolBPh@ "J؎fI3FJ>e}BTV(^N ly/xt! Ef=lIb&1Fx^&M; L-S)ܷ_iͬQؠPH>ded3 2c:E'ֱ8eVv`jFDa9D)OA{\z[.wa8Ȭ:7Y=_ ڣ0慄 mфRJm1(=7 k}bAh/8,)6q/y;bۅl0 @-?ir9J_*ņh}ǻ[H /]~6gDcCD^`JHP-rEAEQD5P'%tMfZmM}NyYNJ;A-f9dzO;NץYf@D!!耙Iv6E\\~t *p'' wӪ0]~UD,ΐ^d}rϽXczbV./sQв,uO9,q?}^>}rAIؕ䩗J'm 1.9io$ý`Qyt:˵Q8bN cDEXFu>kCJ6mxiN\†gDcŒ IDAT a㍯a|^އyxI. aNSmX Csp2jNVC$*m~-F[ uK2U k2 <#8J!xӋi.ZaIںyĨ/a qeuCJJT+@jњ0(ֻR#ݗH0;bB8-Q.dy cBU[ >z9:E_fXUd(p "DC#6YG.Ɲ!y8{^O?Ts%&%.dߠ%: d2J89q/J +LUwe+Yq ?zI/Y";mIj {}Kc~*p9LIf@(+ LCʡx>8{T:ҩ?&)!s->˜}{`pNT_齻:sϾ N@o$ ؟8;tEvM-g/Go7;Fi2_ w0֯|4YIı@$UIU*p*xZkk>gWͪ*Q]xd7y#ss _4ejAۀ +3[y?đl p+udf+4C#s`ocڼ \{-іd q3s./o歽hBzR" iش~:TScc\dnSU׊왼Hso39,R+ay4F2p<2UKphƴB6mXOwb5! zmlcd աy;Dl{^VsPq 9iDž7Thnu&>U76zϿ)A\[g4)@_v&;PAm$ F} }GA`*>Nr}~@p^s BQAy(ۜO'O#;@S0T% TG ù0k` @ w:Tus4 vp|.\5y)mH LHA7&3in\ P]g:u9~#~w & H: T@yopa}YLjdO8~ `$pФeV֨ Nzs6+Vb\ͫ_ϳOH)!贴ŦmA3T* MDz4(a*t-Y:n+ %i'ǶRqlD8+ #I>K`(<P85ɛTkT21'q[8Qz'67u i榳h^]IuΪ1 d`Z<(YY\(aZA8Sɦpޯzh+F1u;iK⒗02ǽ1^$0 ߧOJbv_+tM`A^sAELkd,$y57#dnIH>ٰA$Ǥ ߃m[nZ{Y=MCN\rI a8Y} ե0> ϡ|*0fq{xoзYΐf&k8,%;@ew=a/ETt>8f CQY'FOobBh Z 5'] g'O s!}3`$EX0&\rř?9z^`!tpD^p0"3O1]ֽ6*sXǀ&[UQ +0wҝֲStZH9BKPv- ks?=yxBL4ծax:,D?v@;eiwBERwr/o}Saך]ˑ\x>=o~f_+J+`t+-ιyrP`T+sp0F!M C*.|=.弋w)g[Y1ޖpG9 f%!\ObДU|תvֳ̜OOp^f7 `UA.a$!LNpbA#sa!9AF:i=)v$Rc@ s/:ɉɒ#m@$1w7\ٿid9.>ޚ1uu+DQk]vQsZaIOkeu^s{es:`8>kj~uZK7s&E\!҈2~8.pCmdhq 'QɁEʞyh/ [6v|37}.'81Ͼug%SQ.,P+lR&ՁQ#EE<ذE"nUU;c]zՔN@R'V@.fOKɝj)U 29}$7t Є%8z#6C088 Sg.jl[SWB(v@zxwt,'ATb{⳨4]0[½i\^6DT{pQoNIZlE8Kyaà.cT<^?}p]-)7}OA+@ZͦH+4! ||6*'͜AK^q%Eڨ<^],)Zh<}8Ge4G |8M۹ \q5O}Əu;ð>n2w>F"m5dʺc`d 䉃2P&7D$Yt`{Zw±1,-Ff6Dn0 tLmaeī9 C'!]ct';yiފǓ`"FG %R@d``p\k5Oދ#Pbm4KRdSNJ`nWns``'8\[y i+B)# e[kq~hk-Q%G!@BlY.gUGF^ݮ9PID7?V ^`w$(},k2- ;t ہ9=Ҝb%'}C@T512vN~m+TW.MϩÇF#9G99EKh 3Wݛ{32t% 5'&p*eQs$QIƶ=̊JpT܇+3_ʦ3LZc~mn {>½E^d^VxfWY~ D ZmN]FPY#Yb0T*qoޜ4vkRcLƦ8thh.tjfffZP qAh6D nZm:--~|T v[k?X@¥Ob .d"M?2ՍEaz!**@Z2J%% '*C3Xgdޠzm$[{+ f Wa1Js~MzxU|rz _e8iVv1 iE"sgDJJ(TҤb1[x00)2$Zr /s7IDv!Ͽtē7vCHjW"a{%GVK ɓz&4:Gn1F#L_&>5<+(boC ѢgZ|cȣ۶+Z+7yP 57]Y0>$)h6[YwhcLS^}q)j*jT=Nr^z+x浶#VoO818qÁ?Lo+H% #K;={^ߓ80P1u)* \ t{WqŚkzΉ}b)ROwY3~O}Bҙ (L6P :qg*If 0'%WE%/iaMXW'|)@Q%:Dq\:_qTsa?]#'O!a@5+825&xe 7+r3[M92ZM o`c}zoD0v7(ARuhvT!tI@*tz=&&ղmF*Z+9dWqDetksM9;(:402?=p5xa(ڟ,C‘*.`e?Q4X{*j}*kUag]@V jkPZ4$5m,AqW;Mf(8SMG 7@Ǯdϖv#@#1y& IDAT;'O\90D1/e~ͺ\Yd2iF2O~=}odgq"NkN Vfeqt7v OW9MD7R39-!Ӫ$~ݤ{7ptZBeI=xAr<'ٷā᭨$ GfOѠ49p9u,|V CPA _#afiCALCk W?Y0|+ }*q#ÈG%K?$XXդU$(y␫be{Mqb3Jvc6 })Gpmf#@fe`}4D0<`4[hd_y= s&+Cg/6b5կBN|ގ;ϧ/0-+ C4>108f=gUL82JIRc:n7qVFnEwCDdRN8YW7ޙ#Gܐ.dW J7/G6{5+-' gz(pjrF@B+ױuZ>6ОA9S_ӺUD"iiXJ:ͼH_1薁ց,H8׹! DHjO-SN{By `d Eh! Ū($]0{=h y@(:sb~i+̓"ʽ 0u, U[$^ DZuӃ[d+屦\ղIan('xQS@kF9|W~g_ Nr1wb6Έj8A'Zɻ(Ѕ/OKQȳ~Es.1"fgea/4:D8129 n:qh-B!ҁAh.ƀlFK]Ckx 񤬻N#Y o g=8?\f-JUҶQKR"3;D"as%EXIG030Xaj35gM,M%jűjwbJ =[,A+>K@G $s%VP5nZ;+gzQe4}f~"op@+b䓯48{,ڕkثQk]MXP@:k݂#5؉Q!Yt޷d)2Mg0懿 nʅ! o~ aq6T9p0ʾCg J%D]l{n&9:Hi[3UVI-qQ*/l8?C#tBe<-.JzLM_c,)t>Sr^&c ,#505V|콍|'seŌZV*ǰy'9L~1ܔbŚU~-/S=]9%^Y6`[?#<5oD *;˾w0LːM>'ۓ(0C:6J3{ˋԇy_ff"4JKXCC_Srֹ {^XYJ'4A9Du.oc%FKndN f)!싩TC ndhke{NSKۨ|L Zec78Ee$ |:.7T 0"BiIWs/E&"8n&"g}QI~!\oNeN/-aB)h1?2$p -#<(Qe=B`@bd68>`|jna<8JHLNOlclk0&QY%F$Ҳ/)#Y&ܼ6M.nHWO6HUB6eh%KyǡbW褔Bsk:oƶ3=m18SE=Xqܭ{3Ԁ O@ b54KݶY•E+M"o=kcʐg⃋%Ɵ~)ެ6Ajh\ >dtgg#RE8X 7Żetf~ZUD\[5$D~ 4$em tv$ @E#T1|)`40==fTOېpln.VJ*|S|z^ȉ#͇q=NpOqo Zfus2(I};A pmЦJ^] (U]}AAy :~ ~9_D>%šeRM8~#_oV-!)D054Iy5xQ'?1.{9K5Y4 h~gԥƞ$% gS٨S @8 3*A!Kiw%}c9 " qx^ʼEXH"[X˰[!*&NЭm':&;DPmlW;w)+lu#t"iء;CLt/JwWCPuaq*bB}9N,Xm ,ټ֔S8#xe|n0Ɗ תWpL3}z%Ո[ h qE#utAa0n3ޫm \)W|F21!X&;yKޓd\Iۜ` c_WíAwSU+mD"0mdZ%,SvBx@+UTd_g$(20$U\;WHcΫJ$&Iae|9wxެz,[rI"Cmr<+sq qz|J֭AhISZYjXpZM=PN A'/ۿO/xlڲ(|~ aL{NRt BqX q(H68@)aTdel:<o}V˺GVw{D̴DE`a װ5Z0 4& V6kIua.m_Iq8oxSk@n3ai}%MEdзb zpoI=8G_eD0y-e>2FGJźL09)uhp[νY\ɧX* ֞uM¥֫ җf>o7sp[w,ǰv_`+i+q; {OZٟ~*xΡwJݴVRڥ[Tɺs%u eid"Fx yYcgSH3'kX&%^>7lxb<8vTрט'W(^ظcjͰJ9F81u3eG\ĝw>Y$ZEHNa1Skf) 5_bA?r=V~j=ҀhͮH' .JܻN02% OA{3 )VbpDf8~7 jy9Z_K69bw`87<@|*x0B4,Hml 3x#/X[lvn-`m6uboSU|{ z5WY3; hlx 䳁4J(|-~EG)"`=j XQC-xlS24!GH!&V=_#p&N%T]E5B=@e(H\pSaJfGuZH.; M2ɿaJlzOm8$%?!׳N͖ o_(s oП |sylRr< jξ]s9RξuGI#ZYc1vvb 8U81WA(D|udsk[bx{\L J[E \#(N@}Q#pqE\5iD,ېJU1] u*iMIWE4'kQ0Eu uai4l$ZG$-\ +YK3R/斯 NaJ´7!65ý+̄VU f${Gtz mwi?†ut+TUC-C?A 6>Hk2b#!`?w넚 D8 t>kF\'wR=g"/Yɻz@# aX p #6/9+Rv{_67>G'I1*2w|O⸨E &t swϖN9Vp6Zs2BYL&*0TD %3Jxg8}Dzaɂ?$%W<ʇ6[TdL. >:|1L>Yö 314F:r]^]*\;V g7wS`0?`b|5w*yV%`p)Q#'JH(#y>a'7F9XڸgE,YeQX RќNPvԽkEa(˲BdA,~48'V 4uNIjɜπ%~0y4ǘSU)e@6X>ԫa\J ;l} Y,i/nR"L8HPNB~WL?]t?̈yg8'O=Íƭ6t޵ٱ#!(|ԆiAh6#e+?J^SEz!ʹ;9Q<&H,Z+CHbALG&󶐤!* Y|03"#Q%YPәᬏR?޽;9q3}ɧ袩DCtWu:Kt|LSAOGVyR6 O?ɛP^fKveT7H: w5dJt\!ٸSVaF:-t7uyt[ h͈YӪB rB6l!S{9uD1+Zax4''81w7q-׳}?lx|na8m`Aڶ9i[7eG)iq S`-ީh=nw2Od6>A|^ M̷B[2e6z:g'k6nV6"4D~ pɇǼi M6ʶ%EMyGb@kgřY65C^#S`?LΎIC+(5Jr$[Kq*MgVIE$fgfz=VJ@`mc^=pX^PYS&M.L RbB'AUG+_?4Kh$AFoDvӖ_]z1AMSJ*Kw"4M.a'g2; ßhUˍy?bU3 ȮwqWՙ< zu2JsPg!jRQrH}< !YoT58E9C\FؿI☛"z5.i[e4kc5ymء z /(k!CɇȲhAouV7pvdh<?1 5@h[Oퟔ>Z] ^q#Ϳo@RЕ"DktPΏ&Wɕm+//CS3_U/AXnjo[aDXiR)(p1^IKO)WRڜ+<r h  BemdUE1Sv^de!Y}I3.>B820YvJ#fY16O|*h4/ IDATR3ԒX\y/_H`/LWy$QT:uNmX)ʪ3;۹ض:HrM:ݔKHgbgӜ 3Ɏo0,$=:αqjT"N',4yV# *Ӗ$쫆⟴@%a.1J-u cÏ1H.4s@\[2oG>*+wWG[VN(# " L2A؀3l>a @9 uZsu=i=%q:1R^㸅AeFBhhz)XKϞGbp9=XہRyV߈w"%[zdR,cɊkw,%*%6jU,@Q<I0:xіԬI`R = Q6/\*`x$$KPZxO/wK{H#8~+|+(3|6U3'Du{NpⶻWgj7DKK#]|Zϼ/ь*V@c X>Em'0VdzjtMTQah{` 饪S$X( %.>.^} vьzZj堔*X]Hv8/q Өɟ>Qv*mnG W# egѹCAiutjz*` kQ2orb|Wf@%zIt.^ԓ4Ajα#|o९k:]1vWEc42.]ߥt=aEIqLtcZ. ;k{^=&LMs~'}jR0SJ8\V<9U/0ow+"!GD"o UNҀnu'LBloW[Dgy.>ݰ|4NTbSвqLLdGr*(CjJ . sl7@ڗ2V 24 ,淚O|9M(AF66⓴%×,*a{,z7H#m R);mZ)Y?=իdb-9hN3rMl[LZ?,DY8$wf\V #PYʔD^p0}ny/})Ofؘ1DgZbm2=\]`eޖP_-~r(l@f{5Uv I K|-URu&dz ,eSuS3iVNѐd@26//0^F[ ?C]_gzpNJj+N=JE`a8 /GeLj 0i#7U\1ЯF֟EusFNjMo३c!Tq ASDj N#\U+a6`eI/^JVYњo=4矗2Uzp`Y4撞2n$1 JC%֍Ҝp q67s5Y -S9\.~J6㛩<6B ZJᇫp(wMpY갢'F`T­ dz{X v⩌%VүC3SU=tz/M~%$@89Ob]LJT72& ӞƇ v7!1Q@H o3ZDIũc> J+#l {Hh38:\ukEaRS:^K 7 `*1~2[9 И!"S~:-O4J}qn;pú֔^ćw沫0l^V#?m8dqH]VTkmލT .CWgOW':i>9LMiIMLw1f/\UFv,Z)ɃFw̟YQ>,64 DeocthĿb׭a#NO~iP2pC+rI>I YJ״)ݯ(p8Y"i" 4 /CpkOl|ϐHuVHTK}>.yh'Jckϣa2TVO\ww ~Qica4YkblTeeva/zg׹'#S_JUo uҿaa2ȩr8jdLld@7譀+?E@jatAY0;'iG=2Mò}ɟdd /!]]M AH-& Ɩ`gӉ&)Bjvn|5u>FưBeǟf^M'w 51<4ޭHMƱ!Rh 0408 ).-peXc]tRŚA | &荹P \!węcl ABX)cS4#- "}ԘbW ^MNS#6-)nfGۆi/Uz@'p3Z5T@8nu>&m6vF6* p:HC`JZj4Α]~:Q8)<&wgdV^ QiV ̔d';4N+)U"dJKc,K/ K8 g,qu}4*7--{fKt^%o98 717cin@ G+hf6Eh$&(M% Ո[nk7m[˞-t%>5aE]:נ8\M+iGS3mѯrd_wu|Jp)u}4<+eNd yI4OR]WW~T hFŋ6||/A*kMd~~+Y(Z3$ZSѵPl)=|6毊8TC 1@_Ք_c:*9zI8HZ5BEUtDG lL4z Tk&XDF6yfRp0q g]M$6;gr%HC2 dqTJ1cPͷOy|mФsdSvVJ`l.ʸ5:¨>?䀞DqZΔ1 .s56MJH_ h&a=_'^ 2 C/I}˥)dB•DD*"}ā~8Nk jĊV +1?1&ebV+vcl?s|0R\p{M{ pj0s|kEJbɶ':5m vLđG`q='f6vD V^WI=cr3 f@W2@{GY{K. J9#T 3zK,^|C7ƨK|EcHКBI Vhk< $xJyLZh5xhJe0E%0|"<_`K?[i5vH6^Cé۔1f1?X% cmZ+YW)Zb`8|Sh3 &i1Z)'lj협ELOƎi`(5S_)HsaM'*0ڱ\Ψ^?ܯ-(HBgu]u 6hpr+\^?7)TG'97/ oNN}I簚yW61002Xt/Bl<%1_C˝J $ajZ~ W"F,ꢃ<_s!d H{:,P-6z)+SQ –c;\}`]Fw2薄a VK[P %$]<-W07mI!|5+8qW#-; 9rԳ_RLOjdlnXJWT ^$9wTR,q5zM62E0ǵu EDȗúӢTe!:bBݡ 4neXc~~a~AÎ/#H]fGO+~(lhۍxRϑG)9كI>P,៉aOwa[x94`%fv~3cP"#JmcZdJFcT zxlz KG(9IB,\awWp *35==܄O\im|ɉ !d Q6K`b/.JPC fAy(M\P6Yx9K?KQxJ7^/hxN<3l|;Cz"J`Iv\ZSS!)##¨ l(MÇd|n>2~F 5,ddN$(܌wigLF <Nҭehd}vhMI\3ß}C\W'tm<*BΨ27݀AAǣhcK{7 ,Njk=8{SwCMռ=\&ZsL|IڌZ!> zOEkg%J㨎kYRIH(܎,y?rPbj"2V4F?B<'pV˜wg QeHe37/Q M7gXt,{︜9knkâ) &E!n&MK{1l ;*<Ȭa2 XW\Ǔ[pa#\GY|qq啱1enX% ɬɅWmQP 0bSSbj23U?`BTPpeH .SX\H줢 %haEg|4ATm|h{z2$\.K8j߽VfYD^ˑCSk +錜/VJw&~ 0h/lmc/=ǥ)+ݭ}71ʴ\.e,Ri` Z][ohf+æw6v=]veRFwwV]=7)dByCjs,('LM衩HDp9wM{1NP:3:-)НG9s` ]ۘi>#yjd#;D~=W9Wv,Fu/gAsNzB 9S]^}XK|,.:e c7 }}j'rjAXjt'],(=JY= +.hzW'әhT- ` 퀁QQf0 J٦m&O7X@Q#" IDAT[0(Xa.QL]a C.j"o{',o|2:,a[+ď/08 UfDM^ĭ0'`aVC˔Dͳ(W^γV<58yGN#U,t&C( D]lc oqt?_CWL9)Gf&x/gx3pR۬BHnF M&ZA`aTFdM=rASl~-#ETdf2,K p,MGu!; NC'ClHvF-wj>I}JDisrWrOM ?SڵMOCɾyVˏ&y4c3+=Lm#`N~CAAR#F Md[ UN B9O-%dŋ~ \" h-rvz-gQJZ{75An)vޣ[u1m*aݿ*N˳G[ @~3225Tף%CYuӳ7jyZ8~;.&oVǨ*k.grkZ|d q}$mM[GRM 9^8B^Lq`m!2xHhОhUTXНelKd.00xHAzcLB =e?4~MvH)334ԣk0p~TuE9'Fv=]:a9>"L#0z9;hD!*ွW]iu2pko`)]i9a`B/'.}ˊՖpU7rS|#dAM\bnV^Mz])}Edg'u:,_ђ Z8FyK, Տ9խ2kg9IU?: Z!hwe-Sa־wf2{imq♦Cˊ2ʓOgd=(SO*+awsEqJke )E#[W7+X0PQ66_AOo%K`I6l䖷8W"n5)Fk}Wchzʝ|e^tA1R)7qќugRiC K n[馩)ͮoxn@p(TtHx}S鴀eP!Imog.S.衋-5aYi"Q#'Ȫ2q<3!tSN/&9xd&*el+ toINM&DZO8-}aʛ~(fw9|O2Ws]0fJHΝOF¨d(\@w[;+ y5ܩg|Ly([r;Tfhy3=mcw &&0eTJ8cI6v* i T4ԱU&N}~fUj-J6tsb32Xgo^tˈzw yJ TH`(nS 2ѠpJkЬqݍz di"@ZQ:¦sٶ׿U ~TjTd%B}iHZZC(Gd"(h-q_3W)@)F/5A~̜tfhh= K3.E0\Xh<6H uGYf3i' |Qo`X..u6FV_DHT/u0WEݚ8xB"&E."tQF3u } _a^_}}OdRz[VΈt>J7|w(AŞlŐ9#f_*k\]^s*V~r޹bN*b&7OKTs)qoֿSTT};٧ i/y`l6-KiN?޿>nwhB̈\~^DJPxr\> f<IXg)zgI;SfڨD(%|'`Lc&AUҤ fܪkcTPpEk põ|3]Ծm*xFȃѯ_[@0RfVĨh})CЉLhh`[cSQU+(\8A| ݙ)yI(C_aJXt e FG҄1p9*~eOA]U9yܴ(A#`h)?<*UFXgzQ (<EŞUmQZ*D׀ %B}n&KX" *ʥ0LAa@Œ~79~5CNwcg tUƗQu]?d$WMY5Fa(w& 0&ɉхy>Ź/7XnCa(76xt:(oubWxHjt*2{e`XY]TMz2=gE l=^t&"O  ^S BW ~+j9)kakDb&c՜x IV_ĦpX: orNNޏ4vv8gA7SdY 3XW_G?e**V^3߃fX<ё2A#y3i :mg`cQ!.4x?|bDXhmIfNp2uQG.w8 g/-.EE#7%Z 9򼎋B9,<;݌K7=|j<7P㊛/^"TǛP ~ Q0s:̟VT (T[wx)CяQ eє 6t;Z*T|QΤIw\bRTeDQظZ|Tc3|~:zTWohpOpLgKc*g&$0VD‡Gh6id 1tWMA8F:^ҏ]dd:Op[)CQ4vAq  &qgh xi@KeLTou_Ñ%Q%(RX0K#l'¥nG}=Uly0)|6R<46E[z"uzk\kʋ7;?Weж) ]hEJ=wA \𓬻G?2 ~_eyvb(j2@\br(x)oVS9sG%} ݸe=mz߁Sץy<9~4))[yqC2ƹTsYΧc…MAk`MbAFykIɨ=}@%*U ƪ xe{J)4Іe_0PB{XI V/6<ЭӚ>w\p4,|LX2PFJtP u䧃SMIOK| |j06Р^PkEA1_clv= j (p V&HzK9Tfz-R87奮G?iEhA23bob`J,?P-z-H UTءUVh,,S8Oxv v2} /lw@v0dq-f&ikebĝ0| RUgX[~#4֦cii T5+DaMvscPdm 1~0Ž~K[409 Z(:m&Kl`Ӊ+CIZg2vdi0&P>3:=}FZڥ{&ߟ3S,?\Vm'T6V4t%OB4o!G?00Vu(4j^Oh^?Ş)ʧ96 &3y{Iі0$&ؖ^Tk֌#6t蜡X\Jw:K*|_Bv]fd Fk sx8@4z&M}7ξe/.iĖT Jk߆/q : ,-ig2}'H}RPE!530Mh (@w.O`:ν{1\-4"kf vp`x #z +`s8*=|mS (>%娑a!r W26Cwkn@` lA"8 ƶ] n\wrdr/J B=2 4eFi;Љ:>4|:B\a3`_؍<Ҁ;0Z<"(© *C42:teWU [e6 c6l'*2Z@` BXa}%LkYjl\ڑĉ[I# Ek F􃨙jY湇^)ċVyd.dG*U?fhr,sBbUZYe(op.V*c\;\A"ƿ@g~;\L#Q)׮ˬ]tf&D-AÙ2.g)G=XV,L+ Nŏy'3ɓX[6u n??>"S%= Z}xIإ٭8W5n} o\Gà^, jPkSDR`axضόS: (~+E&[Ql^a;>"2(e-MLa!hS;HIa]ChZeDA4nRšQl _ t]J7 @|JnUj'xnu?Z.-1Cǘ<AF}6c.8P2@02̔R=JUٛyk_^ZRӆ=n5DFfRK*5~0CC>֖YH |"E4 pm6ٻ3VxAvjӽۋ"g\YL߆08\z3ޟ$sxs\qn˧@(ĝڂSD1ʺZGDxSN,˅;2@`) UHE>lW;#a!̨ߧ3)_ G" bJ 9ѓlȆHp+` 5Rkni  "Eo O]fe~zadɳ_fZYP(J!<5{!$}4ۀX¢qMX,l.f5߾K[,xL3ht 0t@ZT_qavi>"=;Uh>VA=X2!yw gk2ԏ{jb3SuL̩Vs[I)*ZFAYl嬴 ZXI2Z߇vo6 ?wHYb B [pH\ EiƕĿ_yO%OY80n> 3zluU7:Nol]l1JYBX#:q߲$ ^P$et>f[P6Z6^ͱ^:3g8}& R7AdWYۡԙ%bUW 4gyO2©DTS;yb?cŨ.&~5 VH cYN IDAT T2TC)CUKb] Q]?P?1Ҋ ((E^M?ϱDxlDdE6UD33O~iH.FR^,+Ym23o UՐE zJfyp _S?C)GePLhekLθ"} ե`08ʙyP-Pŀ{B0w.l1\idI(rN#\}TUjڎ.g (43h@@A{`tmWfUZ2Cx )lxx-qY q=X/PVPC Z 4*U t3f>Wrh+9V|gg89'Ϗ ?JGKS۲,,uxa~z1,%eFO7WQV)u_bC?+opڥ"iMv V~@Qf$OS[4=GaK'rs "Q6(1`XfGe=d/՚C&+iģO{ >-C%!yK7(Ē&@XBa-GZ3L@cN,Qm] T_UCH!Nۊfw\p31YbY٢TF%hOP,e oDX[i긾 jhJŠ`SZU],<ϒݷ|R|*&uaq ̹Q1h;T Q&]6..?J<8k# ƸE$.]ZRuo* |k0nVa0U,|3Vb/bQHg{c[(k{\[H qF"ikҊm}A,0'҄mu\8+kOwq;ߤY9%HwJ }DAkv[~>C/b+;2.L[8MW m݂n ;4VjW ?R1cCӣ?W_ԣxTFҩ6Hi1S&Mծy/M/[˞'۽;. ҄u[<+Q1k8GiAeZAk&He[g,ՓÏb*s¹: (Cy+3 c Q+_M>e+ic PN Dkl(7 qbfAx8'`JJkHf~U˩ѕn ijbJ;xL4{,6U\L1= BΤa5x槃0&\081q~^&sߋ~`8|DbW`4C$~{cbd4Z`4{Ͳ:$GOR^*h'(hGz=-"{(WR|w6]}2 ӺAbtHXbAD"hUX25@r6ڥ!^V޸w-=l+ v>^nڏ^Fg)vF [XJkP$0PA] W|3:EOkATx<:_Vڥ/aR;[Umܫ;+Kq=UZr4'F ˒|H՝:nQ>h m#]VEfBp_Fo1󤾴ym| s 5[ \APA69#"N[JWk-a)T(/sEH} }a,5a#O0~z#n$1NZWB?dw`+$,+๔ ͦ> ApU 0mr=Tv=(.n]-HqiyK`{\ Li,Xed$K+3s7=bl’w.x.xD }m|&\ٓ&?\ "&ꉹ,'p] s$H A廊/\c*ɕ1^IU347b;[ʤ @-ܶD{/>! a"=q"Ovͳuzo (&fŊw/X0n1~R Rh?r?7Ai JshL=Ba?0!{mfꆄj6b5x ٿgmn,d/8k¸c hYX -5SX61en&R!cN8%ZPҬX8GԪb{PfÛXP d Mf"2krp&3I+czr(6@fYVul^h ̜֡qG9U D%``#4.Nk1& Cu(%N x(݊oe} þ>.疛4 wW4PV^oƜd5СSm4T*V$hӔ?<~`:[&/);J{?K3PK bzZ =BqLKm݊mYb^K6UgδkPt*Tn S!}7f`Tt5;֝ӝ8D%҈d_FFG DX p%“K=*wkưOoE'۞5k|Ǚ56%~|HwNZIg0FeIqζӿnMmS@{vf%iڏ`ىd8h`p;9V?{"Pg nV .\A/0d ~v/4K9zd ٗMc!VylDp"kUs݈1wE5wcx`X4iUa { Q)*E}\vԝH)gͺ jBSjw|<\a\*;ר(|LW s C8BBB-${fgp͵ (F4h̬\fvs>=Va=B8l,GkGk! Ϡe <%HZVT&5xWmU{(+)՟rd|,oDKVt}l)Xw:ēHzZWdrp)Q#OtԻriP w!+]FY⧹Dwu}W~w?SnbQYdv"| 1`&Vf/}`q6uΥ x1+Ai,vMk>^;i3'0CmWtki~|7˸8Vm`)DXQTλAiI}XY/`ΡBmWު2p(Z\d ~6rǿA"ւE8RΤ9ocwq,B=K18QNLedMqV"՘37pu",YJ~L/#_(qeq8UӓAgS 0g[_ê[[)D|9T7z'U\I{.& [8TDuJ,3-طvid."H@bzi$،튓3d7hz29tu09dsʩcH֞^U:!ZR`=WmĒ/daT9,:Ord t Gh )9`[82=- i#!IԬ~ZJMzrz-M Mv='kލIyt}F=wq}vBDa5df&{yp9yDSu+dEyk^iO*y)t8j=ٖ n-KU!9:<Ҥ^({i2n N{nt#+?zGtwؼT+r ZZ &N}_QQy/gz8Ie.; S3+x?[`t IpFv?(bU2wOk6x0|q4C;-V^N!D5*>~P&,x071n! R*nۆqZCiX9YiPXG\A foQ1ɹoĩx*gKT4s' NȄE~4hysmɡ'(ÈcglmA{_ 㻀~bΡ0&"ku(aQ< ׳d]l ZCP܈tvgu鎡ItmVȃ|ЂNxe1t%G~>ˊ-ލ–D{uλ!/*PgjzXmГn2߽,P1MBXG?n'Z]Ȃr,N#h)E\vPqBu tlFciKjJct\<&%qfljsW? >X%N&l&=Y8BuJ¶0A$2XJ,8cB~2qk0Vx5%(BYUv2roegۍWbj3\$!ԟvTF#0К&2831?mK@\d{8Ӽ'^⍔`l"kfNVSDb(,)LU|(We}Aa8DiJVnq)yĖI+Ra.7P:^&gh1_@9j7˪uX dq--h޼O!_W~C+05f)|&;ﵓ)O!d<鋅 z%:ǧnaz\4 !o_7mbbk8z`3HwPjU|H)\(y0YugEsMm,BT ,ӕ3rZ^ Y,a3@5zZf+.BFGQ/k+p2uB*!iޡ>&'sRwg3QO;ٽ@ ʳb-u+\1DW`:{.~|)JعG!Td8k\v=j"1yjJ px۽Mr3][@Qw\zP 3p1)ܻLc n'ML, Aȕ X҉&'>v&,LR|ͲXpKxǺע(!W|~1*'DJVp|Vc&L$Q2n@!&e0}NETL!c}ll͓Yņjq3@2~(_a]8SX")*(MST(a ].s0붭4혥f޿#NsS_D jǦv/p} Ɨ`J[04},fZ]{4L6=d5"XÚ5̎s ۴d蘛D!U~Sc]:IRO^q~{,9r&o(7}B]OvW(ZJOJƸ Фd% `DkR+&GmI%XK&ΐ\Cef"YgEi|-˔de(E-l;h)à483U\+iMerLﮄC$MQ S8.‡H7 ;_]i`tCwH[R+z48땜r .gJU8M w' X 8O̪lۚ20 I&b5x+,cϯը8,^B>YFa6-*3}*__EK_>{\2WG3,N^u[y]#.OȳH;{~%֮~WY\ BpP؍+t߸U(C*M&35(A.n(w5 A6G6G_'`#];Rh&=؛d6zL%d^d n3SuCGJBp`ըV*1_v'i &v|(Ыb$Evb{8-Mc U+YEP1V,kxn|ʳTb.-S~ Z[h7xr%~Em vhسX wVdaj U'S#f!QpJbj"J&f.OGg% 2i6Qin: cS41}|;g S)dTTO9KX+&bXP Z* L/)ЗjR:9ViȷLgDTt xk|]`)j]h)*50 ''k4=klǸO<2ǿU/\Ą}Osۿ("bPX>0yuEua&nUD~#lY\ ȫ?-Tp~kBFR,`H* 8+B~;!F lqY{ёWڨ1oh'23f.`GZH5oc5KN"7PJ7\ЊOvc$I5#Ac1*PtKhLJWO5=haۼ䇑bFsSanJ|5 -NN[r}?٫j}0ciy Q;Arݥ{KA t Co3vbV岘m4B*t/Mp 'R+3~4UiMy*xՑ} OXE-1VƇ2G9ta֯e6 U@F";WP-j ZƎ&*oA%,-L?`n.<"vtAt:PYvޘH_r05NμP)L'.2௓ _;o4?I̳;SP1;ȼMA [!p˃41$VSz3>ɁoM$\%&o(naXR&R'Qԟ7 z n=AB[^;Mn8ͽ:$q">MO)|I{ \Ída> ᣚ0aN9lgSb( ye74ssc 6-ı1E:|as^ugd"ݦN tU\ۈs(e .:ȜZ&H;P9h&E70aٜZ:d+_F.XN<O3y84{n2gW0Dr1+"\^3xn[" Ľ{']&6L`:R귍Kf\UkYK_@(#~LqB1jL-ſ`Ȗ̱,]1ASAQ(ӉC'22Ɣ|/OB܁ k^ƽw21?G 7a^ZQ> |EEz#{)$Bp|$.[ C6 x źҷa'?v;Ӓ}+1DZ\aczH"i9b4)0xG.J&&sgޗ"3#c |M0|lsq0t$F%Ճq/ccl38}/)B^Ȇ5ZTd Z` 4ME@$Qe2|x&RP7F~Q/HÐ"{1~u=q >s #lbHQjZH, )͘ssb^J]wDka=y\@0cX,2%T8~3♠\UE0OY*U27K_+p_xԇ%HA="spb5HȀab3NX2;֓Sf ƍ7?]ڊ}b%it(fPargBJh}-kx&VR$~mkælʅWQ.Q)qpw{lIaq-zyNDͽHc:f5%b9 MW?gA.X?yڏ}v?”dR ?[t|+6Je}7bwsKmd7)efRUbn4,;Lv܅PoP(ѕFBs ؃T &xe#8ebTSL %1KFSl ;v9E K3N{`Ȑ#[u' .7`ۨYE2R+E2Y-9Aa93WAsVcUMMaWpi42*- tSI.SǴ@ֳH\Jhp+<$%[hV /g.^r56rWh4㲯G 6د CC\|ON5@mh eLvЮ(i  5sfYiumA{zQ~s\fFnHIܯ+@[XMږ.w8t^:( ս {D|>g2ͦ/ZAX6w}aǟ jvah)id#j*-`̃?ado|'o^йz+`׃Kjx~^ >pS'ߦ8 tBi$M#T(A<7,r{kOZ,SRUؽl|!SjfZ5Zm۩^#2(7H&v2ET^ʷڌD0x3Ξ{ d߉ݣ[ѣvn=ti %E^XX j(ܛ#[3BB3/TLy2ĶHu %3d37|!vl&2-fxMj 0?R1g\S(ڗz&fߺifҌg~Z _C/!2W)jݡ'į~6 |}$+Hf->Ϳ}O +H>ӐH$8 y#)0ZXMy= kR@`Ai=,?J{p;(> M%"Uԫ4z:یqZdf' 'W<c##w[j.E U3a{2!mLM0eZ dc&^~v//7зЅQV4b)od#*㇙纝$ ֚b|Y2C8ņ's[hfQ)7IN:[O=RgGU(A6o-\`zc2Jl7sz>r4]LҎ +ë71罟zTv08%][#d&SdSlqv fQFaa42$Pxɓ0xr#ͦLe$w l=oc̎d* C.;CeՊaOFU,僧sA'psS4'3Aǘ=:v-e2q ^$+־MG9ξVXDSlғҫQfʪ nфsM)w(ĪW_^cl=S$cS؊:;HhٻfH#%8WaW`. pN}*= nVSR"l|34HHӦ M/V "AW' M'lOK/8nB#b7间7&1SЭqpn.. ?W ACeI̙.{9> xWoǂ=k6q&x9BQAQHI AհSm08G%m-RHIB }ذ7!OL;3 NCs⶝b%=RmjnU#P3~ Yfu .P://]l:+_mYmwxh1R6 vY)SƫUr񷀞"'000@y54.)L\"VaT%Fl.: O²ڱ|AMhf-b%x zBK3? E Y@3McyRrğdL85$Nj*K".jm"nI.$}IèYd/_C[dˈe*&0 BOl_!% @@ |%*0CQIO<ʡTuV) >ň+b~\ZP%+Wrg9[KaH6v]z7|NI'_s*Ma[1 VG6hT4@KhIYs",ΡsnAԇ#1=:KUIlV=@z=[a}w!Dp%c~O375'RmAڧT,73;kD̈́mCVxa&u5B-lXM|2vքz fm* iN8HZo/-돋Uzh$a#0a<Ɔqu|(:iEbX"mCR:7<\kO>MEV^el9-[q`'nH5E9*r",XŢv,39ڍ}z1X4LWV$L u3Nz r/{p~4K:zig61aOiX4eMk-ܽx^b[GiQâKv!,䀚9+dքL]>>+cn⩻DV ^{N>M/b32=ۢh.UhTYF1"Gh<2ԛ'#hU*6x:Evbkce7Q߅';qUdEŤarUe À^K1Zbʔ, EX|zȚ$=!ťjP11 .{K=k̐% d \6g aav.^,\ndP^[`H|E|bi&qFQ-9|J F L×8 !Cʏx*:r"5m K ӂ:?dfSvDo6pip冩Qw68쾸 m'鶰hŐٵ:d:-Fil·`p֊}ލ͋n?T ؙ{8`1rP,d LgHOmSy8fP˳vFg`;'l0n0 ) чsR؈ BѢP,ḆO6 } yZ0= zz=EV鏣+M%aDQ9ƎbNy k.jzX'Y$JL ,H=W&)f0~f)4:,+G*/W0{uk7Z+bڷRI5]~`nO<僌G_^y;̄Qn ШRg?jm2I% S|oh4yK8=M]|h]LmҨ0+gcY0YNʇge,s6ef"7JҦKSuхmeP[~w(HCԶ펹ɩt<-o9Z;Kw:[eY{ȿkTϊqEN)2v{;;xtԔc}ৌq=~EB$ #NSHOR"|MB(טJ5!t8,1ׄs1m''* **0_Sq;J2 .#vBc">X-SHrF듬{!}}_Bk>5,[h'+ BMXtSZMY6" wEСp:3žY~<79S,Bwr˟ϦM,%M^g}!v(M&C'˖&tDz`z;SrFs2 wjiZЊUբ%&NO)9@҂Bܪo'_.:2ѣ AN6owegONzB E^׶6,_w׶[YWW׵UXQTH'@Hש<<}fN\/erML{"0{8at(цp}}E4(3d%-x*Ճˊv<2fYMrqѷtT3)%xܒ~ Z(˲oRJ.@Iu$$TU$_ѬT;Yw +W+֩h$Z4 3#O,4 ωXwƱe߉r )V̩g%_!kDO*{oc|VLgG!K֫\ܡZ5Q\T%ne|ƛ"sPI߂H1ࢠ%" Z /Ԅ^l ?Zxgi{{1+)o8)Mt\2'^Z!ȤI$8?噯{48eVmbHf!]jbӷDSu:`ۥjuI 2=E΢(ɫI4-cI؈&U=QBMϴ]s)(h$ԇZ+$(޺>\l"껇]by6Ϻl}ߝ>AY*X&T<{˧e"a{D* ApfNY8[} c܇'||wa-:(E+aZN0=<Ҩ: .o.e v!~_\CO ruL؈l =PjPG=ia"7P _v"<?pggu|8'&Hk^u͋5>-{#I.yuͺ W rqbNf}RR{j4tOgJ◿n {=l76ނrz܁w̘Y+Ws=rγy;($,j0q_ѿD0qGYJɇZXGˡA3Hu6I%M: ݗſ#2ONJlfPU4:ȢRstfstK_v VIX (X a <Ȍq:V='M}uk[*ɘ{|B&K:J|yMA<٩>vS\iqR'/b]D5ەڴ /`Kx7ܗޙ'Ok#,J5}i,Z6w36pWU`B ok]2Ylx>>EѷsR-٘(Oؘ)Ĥ֮g?f2(ŏQa Q+[\lۥ^DŽ!F':>N}u`YҥG6ANN }ߞH%8&z7d?)z=|ULhX`aT_mPsN۫:K5A"EM۷K^FV VroENհVAA+:( 7HˢCv&*lN`|"D!Z95tx5s3h,~gxH@ٻ=e8)zjQoְa9P/1{$oڜVuJZ# ҂?>Ϻ!TfNW8?鱕}`&hfIB'܁49̏JGW-]=QF$B^o#Tgfok>4=ZG`Nl?B;UkVZ)D:ٵP ͜t ]HfU+6̖Z0]{ķZb3Gׄ&j9ooq8f x\! >GţSrY$].%o39awN# F}4tDeq|OɫQFl]M pj~KŴpub\@HatM*L?>.z~CՂ[đ-!O+|ϟ%L,s| C:a8v0T~p^]ElSY'g2hN#Y4m7S,;[@B1/ï^͠}0zi858d)8{= JVFJ} R#Wbi:O3m<6Wa1ICtK4C%N5k,neV!R)қtM̲X|w}Ю+bmI; p,μ'6D]y6݁($ĆZȸM m>:[oe.C4AXUj4$Te4&ILN05Ÿ́tJ) MgccyK̆LQN\Bk.ߢ4˩g?WBOg )f"{0'RAXzW&x)YJSl'3I4FwaPⵖlZL1^po Y:ERʶs~k4/ORN|nP駧Uk95ʳlo70>'C7҂TKNq`PfgQ!`ʓlt4*K䃜X+@~Sh;+:Wg-3g&f(/evꤟ[Y%!\%Ĝj]ۮ@dq\_̝V ԉ\85* ^CK9h.E#ԆyʬG%|_>9(cLLQ=2KSU鰢/͆Uw&b+FJDƎT?[B6#+BIgm;}}5Tb;$gO+io+8:SE*~lJ<Л;r8լo5 0*T*avjRO\:ط rzKJ}w{8ܺgv'LïL5??m㪈9$c׈ /J47}rsdX?jNXO:ӆM+gvԫLĩsAiI\x7/ny'A*< njԻ?O~Ms: 2y[ ;IsQ|Ch[.{Tc)Z1u]ēXگ5 |Twww\>ll~ ]gӧƹg iX%~ ŪN`؃Yòeh"V&zY~K[R$vPX\CQ-s`g̤,e g>dFeX @z9P&nn!:gO#f6㺑)X\_ 2PcMѬ7<]CQ<5or?e5 Nv&c;Ǔ_HCX1Sن-ͽo p"Ew]BoH5,L0})cZуMdret0MX ^.l[>q%^/`C|b]nԚ9ڒb&I#Q/lq=(7Jvj@7) ьY`;W-ι~{OG,4jj <ż~FkklCeK0ӆOY<4H)z̄eb@\= l-5m" (13Ek5}y󢙟tHu`oϽrd}^Jo-JdC j+6Ɖ3)v&D Sw4)V%Ϛ[ILl壯"za`٬._ =UT F~px.+q*z J؃8cJsٽ4܄ W' \476h޿XU.+?X(4צV=õϦtO#2Vȡ9y7݂L!Ғ4h֣q0r6Ȕ(17o[ ū@bwa-&?.ȮDik"; !LH +FQ"g`潊)3Ât/H2ɮG^aRiէ5''_;v/`xIC%"A~>/mWZ6Y34$B$㌱s3S|Xãv3uƨc֩W[ .`jI!-]5eR>q^xS@Ol4ޖ/_~w>!n4-2o7o;n|_xۙ^^.N8M k+k-CikI;N 1P4U,Ͽ"^*j@#~)~Τŧ*Rc[`~*-9aH/Yk~"] !c {SX@'(!wr̃h`BB޴.mBKu A5ӼjLKj9j;XJUR î ˰w,Hм\Ḣο&5d1-_SX,iaQނ1*q]zELvE Wf4*¨sKYvoqM{Gj&vmBL'r4q cil3: )xUu}x3]f[/׳~oB)Ϳ%oZ1ҩ(V'O2S28?Zb?S  ;s Y)n0=Պ+ѵhTXEWso; .' o9)k Sq IDAT^rkM-%Z7n=hwxu'֐>ۺu뮼(4*oC_r%o;x{CImdJryFhAY^=$71?݈nEZ>zu =D*LHGOͱ Ǎ8#O)f|m_amptObSbe;Ԅs%R/J3hrI dWѹil,fd0|,uhWnE;TsTs_ >߁܁:nVz/:q+i)5ޝhyB2RFc${:R?v_cβ#n5$NJPF E^QXDKAF)jDy0jHź O*4=vʽnM&{̤8y ܻѷ1]-ɭb/%.tPbl\V#UMPoa5۶v2`zU,Ç`Ƈ̨F-Rn`#K,Zʕ^FHݜ@ AĂwLut=:Stnsmo|,eGœ},霾ObUgd26l#2Rj`i; 2|8c!=¾ _9JWđ=k͂ݐ։*u6v?酸et0_l6Ц,VJ#u |L Gn'㮟0p ~?y3#jZ9P/Cvra!]Hy .TG<ר@ ]Îm$[:sש ;X=<\[oJ +ljSў>DU—^ʞA~_vmpg*%T~}> _}G[}XAXk4"ᮋZmpb ¬a;b6ZR^kÏSʫ0 WfYz J"?; pDVp[ak>H0wf4ӥ)~gQ) E'd嵥*{wS"@*|WaW\v`nҦwpI Q SB.M,g,(AZgƬJ: {W>e+R8^R=>Ƽ($5䎎c#)v/oo|ϼb#n'?3פ茿Lڑ/ɹ@R%D!O:OyW` 7MyOw7z+EA.,Pad'? {W2|}JK+bH΀FoN"kto缵 jJBH(fX6-Qbzlm:V )$%Rdׁ[K okØ~mSrh+oCU"(`e~7:=9d1 QjWqd0庤p8(1UMizU-%<, g%pFA˲R1X*dKtq2Z_+%y: mxX;pe&eSŮ~"z@2gX&YOSZtݻdZkaZl޽)gxb{'98~@'i@)iP/E=UMu).;|`ZQWOcO`zϿ]֞[}mZm4BQKU/:?L궦iEiM2ij|jm9SSBA{û;VFOS3l@>O ܸqX45_SҼc^`agN3`걤t(Oa4|+4yWGc^]?T z; ΖoGA}ؽy֪T&4ij~;Z7 Nܩh]9@(4*%nοtƾ[wWa1 vL2Gƺ?ZX,MP^&H$6+v'xr`?:+cvDK:MeTA  Y^!&쾤^n L(@\2iui{(Gc0ճHe{oطi-FaT2S03L+1> V#cbZ~.bq«V҉%ABt$#33 qA+[DD! :Y1u@}p͐=cNi.&L&H&H/c>:`gxĭ}CiLnnV pYc zوh;S.e/R"2:֮J¨i (%7b;#S@z%eGeOS- DDlF,Z}Zkl˄@f4T+lyEuDvwd4N_M1IJ)i}Zx06,!޷+EsДEB/V +o!+I!E2#b)NKpbP9{WD 4)tO:1JQٓ]r܌Qiӻm]GmШ5ӔJ)=T'jj:{ `Ei~#рrXj 1J-d84%*ذp:V nus}. v۶m;ӎ@ӄǜj5qiXz__."}ooo&y@J,L羈oi+9᪨죠g.F bsDdi逨\ѦO:߅2숦|Hkթh"^*MQ2Qf`0Y|Ư?#n,؏:Z{&)"ȆS;KJT'/<8oN@`P߃A'V&UˮzZE1 &X^Lgt[v̙DB:8.f!J5 =9 O.oNAyLG/ ""= H-%`W8Up$1j V-߁2YWM',bvnj$&ȵ6ۮ[ZjM PM@ :GUX{xئS-ARfYnFV,َCY#RsPd~f-6R& zC`J 4;rȱ[՞LJ Ÿ߈m 9a1Dz;900ZoԒkc/8 Fp߭l0585vSXTJ7OϷ V ;gN9}F(e89]s\7\e'Ė=i$z]T5+\RB (DD> v J:ߵ jsA>t%}$"Kn-Z@QV: RYrdQRD߮Qazd1?rbӨ6~ro+!i4}-fƩ".NYz{ɮ28#eM'Zg褺1JAz0Fj6nl"wj{SqAY {zMk坦+,-( GO(/61@:}ggӔ6Q;LD5JVdd۳N\G&l\P.<"oK)f|0S*G'k:3׾I9 'mMj2Q.DZm57~|ؒJޅѯu@*v>0)YA_S$AoW:VpzobbJ$d3-]Cc*"-GÎ>G Ě/`pHDQjne;u`rJC뛼&dqpIwɅ{n*xjXӋN^3~Ço͏]6RL鄷imA۲?e~b/˭1iOG =^V 9B\{9>|㵧)W0v8  N}Q*1C$0=3.Sxwm0G0A=i6K>>@}:ZO]Vy1r8t?Ef>H{6\B dom,tFY@lGBw6D}X]cผ%6i%6d+׮w(r҃~bP$TbOwf\ʉMOX%39cEj`Q-1&1Jza@<`lI컝Cw񔫹=)F5j<+z::(OS~ReҤ >CITfl [ Voa_ƈH5:[۴ޟjTG45i`Dl60J4I>)Z[Iy Xm$t8 Tw};Gx<'W𜿞v|cֶnhe! !*E׺f׬%\aq4כvB}n뗶EbV5˯{EK ܿm}n=X* z:6M6*#ens/G?n%LLSѣIo k^"65w^7EA ޼V z 3arrNa :/#DXcg>TaFK)-xMS& %H ) MjĂk8Uʄ\=CIkK-%c. 1IؐʔSt=);c},N씯%+;a܄iǸq`ZmRa#FaqDw I_8X+MNg~BۿVdi -mG;0$QWtD'Ŕw$:vǹp5&Q8ůf燰eץa 2|"Kz~ܘj#v23kScj Iw])/Ihzʥa#)hh!L=JA5ROT D*$W#L;~ ! Mh7һ>ǜOӿ NXG6MHnH,%iΙшV%5jqsg;R-!?fp,?Kd9L0җ8qzժն|tu޲گ=.Ao4`DT8 ?WFQbFfK,5mЛQ\ݷʋV%۸l%Cby4E#b1_0-V]'&LQZF'D Y|Ud/o\.Qa幼c9%Qh'+TbjWs*djԧ^G Ŕebw@%O'{AơC!ڍm(2P/11CMQX;=M~ :;|of4-yC"c-,1AN(xv9. ߘ]=d'\\utg!\CtJLÕQr#`뭯 ~3V%ZEc8ZaЛNqͻڻ/dLMgόVbIJE&PBγ;D)t+,mD e=Uuw+v^1ZZKvV 5PnZMcTG(j$Z;b--~m'eb^ڦՀV\NBvlp#ݖs"tܺtͭgk_oK)˒ۊs}MrfbO 9[OV}YzfJfjߊ5X+8n[r7IJT`y{ˎjenl Kj`ÂyߖK@mF7nj=p;/[v-p\2}:3=5,FC*fԗ\nM8Dl`MoHD4B]GO4H+pihiePXMq5fv8h+ ߈ؕhy C+rl6¨qId'ju/ z/?IqTf0kOpiFoy+ 2ȧޅH_~0 "s_= Lr64)Цk[("ΉM @]=˒i'09P 6sa]V#t=Ծ5INA&I+:2u!f .׾1o~69߱u&''˚TV~RTG R6mjm$xTB|LB IDAT.aA""d]&)1 kn>X~wgN/ײxгwry5QS1DR8u]u.ZOb,VGR\0ն՛JN>S8߃1p (a(&ʍJfLIK0*'oEq9\^\>ȩ͵>DIC2!cr׉S) 8Q^* |ИF MzR1-EOBPky9[t1]I ;lS9uHjڴo=丒f9ѹ=hYAK?+ό8LR!Nڥ==RXh4ڎQ4'|m[~iG=ܨ'V嵭1'A}뺏%SSSS7Mӏodm*yp|;yvHY Tg*r5P7$ڱ->%+*zw_zѢz3[\ѽ$2ޕl4S\n~a | A6_ .z7DhԱP2!S\zH|E 2}Yj# U(a8<6 *3 7И  )WZ|!4n yh$cΥ |4 0=*`n꘶Uesp^){0U qqmz,`ֺ$M'R-9B'3 &xU fHYZ6 1&ub(gډWx`]'"]͉2>5E&M=#䵼m<lώlvUh xijxٺCX)<2VЖJ'`v+4M7ocI|^ 9YԪU6mŏJ)VƸ F87X2d˴ Q%=pRN4 -^puFh,աR/Q-q{\32kl%W/Mo8 LNN=jCMQVm}B4%džȚ-[vl _tuݣSp4iZWWWS2J֭[|n[~}[ᶳr!DWg'^ɑ;x!2^ocD"<[SA?/T9p&xkN\3&熍=Y„)&ٰ{=uHLt^yFfrriEk.g",Fk_oҢ1Amrهa eQh 3pEK Ё-e:p,*3ަII&aշ%ۃJǤ%!e2"( RѨQ0"e[Q֋.}7;D3Ylu+7xWsՎ2ӱ&jNmi7b=G 2YX1S[ ֓O9l|坁WpG9*2a z2ҥ۷ooOMM=ƥR{\V|>ԯ]r{'牵Lӯyܙϴڶɷi333p1LҴuO`|ޙIQ_ަgcfXm`ADQbb 15c/՘D5&d7!AYa٧ٚf癇g鮩nih* |p_t ̛?$.L1|XkL t+( i.!; by[ ")CirHj.L)@c E݊xH>˰ir.'{SZY'~=عŨyу]a|13UO fx~i*X].>sqPiU3,ݲ*[?ӳ@JpZ+~g'_fܗcI/oNsx@uvD !V+P;#1Ê\s쓍b‚YhgzY3H16EPZkPBӧOC]2UUx< NY$g(8WkU#4zlhK$~? PDdYwS"C=4`F~R؝#qqPU*}Fobby N/H؈tݦQ)Ӱg\ aZ`4RxGVG!؁^"?8$.0Tz;ӑsҍ2I4-o.Uy+@(D\6TO*fngKj/=N#2n)rK]$MHɹKjU (dѽ7Iv<r*cjRM5n`FW_Khx 5m]͵Oѿ5nġ(4:Hm}.# :ɭBU sD̈́Exq4M|hjc39hD!^]?WE/JGqɓ5M8ΒLN&z a.x<Ov{aIksx^Az{{$:*|򲲲;v#$ݠ$I8p7>2==^pާpާ`&l\vh:;xt,cX*o1PMC>33I @򪗅ʘf ]鲗rP8Ê!눴aΕ= ;G*sP]D8c=U|[00qL ŠQ H/Bݹ]k#aD?d2gܣd:XRq<}x+q-X nVLTT k\Am*6S8O\9= 5ܪnVNulA\δ(֒IAC3,-ǣz>:_+STD$Tg W'e)3]Smmx6 ؚa[ĘS0} ߎ.zǏߵk]d_Q1cપs=WUU=_s'QZ_^^>\2 D4ы֭%`42b%`ơPwTz̾ =m2xBET@W޻0./$5/l3ubq@n,Oh>2.={dծ#];r#_ȏ/Hv()շyč )jMsKF52 ^%(|(2iΔL.rQ8D[O_/q-*4s̭[3D %\dYeyzK.5jUU5Mn0IliŲV>)S|HϾXA+.ѣG!EђG*lLdԓۇo;U"n^8ЊmZlZ=8){y1~ Bwѐ+z*OCүTfG//U_->_JdT4dc=,1"&f@o/d7 ]VʨdI|#R|v",?)6SU +C4\$񈄐hJBcм8ͱ$n F]EfwkYɚGmE;c-@ 瓙Vrvj^ISshiY1c?B\P:0B{gchmʔ)``T_=6NzusYHkyM> I`744 v%|iii9=c wLïtJ0q"DѲ ױ%7j2BNˎ8c_ R]C8_k]!˺g@{[i86V8/ q5w5䀵Oc)=6̬ċe#crWg @rȺ2*D/kUq]!{!8@ԥ]vi@0T:jޢNx:>ickw0tĻ:+"V;U?"Ap gasQ?wj 8*Gp&'j4VU1-s0^^MQ@YM6G?w3k֬X,6P'Šf xBiii 7߅ Z]Ҟ|ɫ}tf'(4+4`.EU-Oy~+X 9B~b`Ԝ?4 -%|Z|Z.y +^Dg+)$pkxMhB_7 z)Д\%cNv5Uɖu$1͗~ك? ?OB.e?x77<|@EJ-_! ߫̇fx":^'l|WZO[GR._,{!w&,̨'ʞpWtS߲\7wBcx<hɣØ3W݄H7ahmFk ùNqXefdPaRʍf@RÀZe23=#8`$-Z 7xt@wo EoIpR ב)&3Bz(1}NN*aYhN _E`4{sӈ9 F s}<.]ZYDX]]h 9hL,:(NOwI@e1SĢLLbWVV.Xq1󾬬L<^UU5Tvtt+eY%/EPe`.xVÛ[~&vRb'#G!Km__{;nYm*f/>`K*<)_5o#!bI|axZfIgh}njG;dlz{+呪qxD( uZlٸ⌹g7J+:r|j:;iD6?ί>_1r1<5Go}k0u'i`4ۋqSuVxf#` N }OkAƾ',B>vgsK/5уwv#0f)7Sn4Ҹlj7{;:H\xtxkm^\Rv`V#sYg\T,De_@uO[trrc5? 73Zro4|hmM4iϴڹneg0nZr‹.hCZ)#-ZP{24`^7#F U5y////1w8LN!ԃW%cRMcJ4NsZқ  zeCF%cH>X^xv4cA#Ι2 m-hyH"_q>$$􆍡|3xLfw( IDAT2+Č|&| Hv*lkg*Qc^mi ]QیͲZ9k!u9Ǹ< VZ߅y] B|ع8?L9|Q,*b̗t>z^ui@'mm:F*%*B"Ƶ.k#UҰne3$ixڄt,T*5$LMMSӴ~[塺IsW__yc*1v(26ϣmX:/ ʻ!2X1'򅶬 g-k9h}Mw|6C Wo ΡI|)jj;?k{On4ԩ K2?R?k*ulT +16)ٯر\*0#ˀ1oIM N!K4  =%ˉIY`ۀjKb|Fi!D^5N9 <E\P8KJJ,<2XRPZDeanSs@Nzm/jm:~G3uΡnJEņ3=P`YY~Xw %YWC8c}5e4l*7bȼIb7 Hr%em;_v 3&Zf"{=!" eYtc?`Pb0GqO_Ʋ-)^u]־φ:^oSf^CAfXGg|OFwPu9;H]6{zz>zhaդǙ.;2KL]]g?i)Jzzz~_|Ǐ?xKK~nw4=θ&x?nnWՈ"D"uiU{1L>y$ $ddvZozjj0 X&ϬRYzj~{ PWCԱ9e 1.5<Ktq:w#mڈ_V5C,2)ؚp>MsVC pN<JNEtB;B{ζb_eD2(uZU l?dJ}kɥ"!@Q $3_)U5C@ ¼1SC AfRdNq7qĉ' F9Lkɤ؀9NwSX\?qm ,].khh0kqv1gΜ!Ey<"el#6beZu-6Г@S,R0d eWToǢ [7|Y"B"tv^ 0=o|P.^߫0`z()Cjz|8[H%77:)`$oϘw5;ݏ$68䌅 MMd`t?J݅0@J"\MAW߈g|0\{4RSSe˖FXXmXıa=FfiL$gv].W4Mkhh0a38cƍC֓.BygEH aj}k^þCqssF9?;>D(+/bN 76. 3ҹN!ŽbTL_୥6}ض̚7F 5Sb˗=tFQ_FfZ`Ω2+U ߅vKsRƽNC(<iD6 };XՂ끦Ӑ@Ag/A$40\Y0%eVyԙ1c͛7 կ K'a=I$i7púubX 6ԩJeѢEuIE _xᅡjɡPۈO~+c[ۿFԢo\H(wⳁ>IB2`O=?mňpXnOHE0ltf8&SF0!: br[, tA" %b dCn-=H+'+pL1>A_Mi t=Dv>q;䣿9 Kh[__/9ު@V,PwHk>;<묳UU+++h4ZzmEEEmmE/_|eٲeFnwmLncep-:cF0]u B003fs싹1AƍsP? ^| (cP I34_ RVZ8,s.FmC=Iimڲ"oS#VΉ Y5بUB'qZXFh+H{jXp!oGiClcB3BkY/8\cz=OaZ[^^~FPyHyW^yeuӳhѢvm?я~>X_tçzjȑ\s͹{#GcXr;/aX6z!32[7 5К41g#=x]pg|9^"ogoz4=8t\p1~ʹ#>r4M]iڹ{՘2oqX <3IBhۍ-gb2.8pW!̽lL:,Ci+*λCrRORdHW:DOAzf-b"ز;dx<(VNz!v/셩T`Gٳg-L:߸qcSSSQ*&. 67pܹs5?3< D^lR,?m߅6ta[a\O.iu_K{: `~3d.l]-9 _瞮 V̟ivtGFc5FVdޯ69ZKÌavV"?*OMv])0*߇>Cpy􋲻͛ѼAbɒS|F.43>Zˋ=fpzՊVUU}Gt9n041R0k֬u??3o馢$|˗/?tВ%KͺɔY2 msvlǛc؊3 e|JqfEs]Pc6鄱ֈ̢c,rCk$"E46"&w֠? 熠 j5iō#-qA}T3?!xjZgdչR x0bHf dP ~pJY3^{W. BefȷߑQ$(Jq0e f^^ij}G竫CC}G'`!iny0Cp[.\X1P. 8$b8blހ4eT 9Ɯ3+`G(+5#k`NUM$+_r<8~;~PSy(Ěs(7 Lq*Hq24͹6dHt0vpC}XzƸ*7cըS f37\}.5jՑHdE3uuuTuk-_קLrOEEży٦&:e X C`v^yD@ P%$?kD"@ҿvnFg-ĢOFwiX #j@AhLdd^OPd\ >Z.iCa3զǜBdƜcOtADy]VMIgod)H5_.\HwvC((rw\F3f̘1gټyy7[lm,K$a!ڹ>k,8 Q]ZLwGͫ*^zo {-סMBFSf3I5cv\Zs\f G pPza=Tn3*\Gׯr7o޼o|&Lx&%:@gaYwkVa!@Jּ߁??5@ZHD#bDҿ1LP/::rR>|$v|"ƌŝkzis|]ǡd$zi T` { ܭk9`T `K6 g][NC(KD|?8͡Pl2MXQ9Ծݦ .^q c",XYkAfl{6X) JʪGix( 4oč "(V ߖCB4.`d&!"Ԍľm92Kfu(h)D flB LnI=;+!xte;gUGYSK Y c:ZvD7&OD ;ԪW;"NȒUTx  3'N; )Yy`L?yqۏ2*8 \~6.<^|Ռf6^=hW4@ȱ[KD[; =~[zDr&6mmwmV]vZlNQ$jQUSperxX)xMBYz5 9c7^xsK_!AbJ2nw@l@:#ؚ~X옚iCR:j:pR]PfBk!#l73ܯb-T%Ck⩍vOXQ: Z86]4VQ+o Ֆޕw^t,/9NySN0ćpx2Oq$x8ЅQ5ư\V3 գ E >pGƚ )66u_ 0F~g Hk F2_ ?Įm?U Yr!% P9"O<fHcvUżSqgؾ n@{7jF%"%ERzh.co[gg[[&[k9eP>r!>~5gTi]KC<%]0~TM?qx(16li-A@<k!m=m58m2B1x2B˙0l: < Hn2Z*P ?_B2fDi%Hh(cq>|0owڬܶ~dLler|KBlMwiDN[_-Ѽ-м Wd* JCx.3R" }x%;oxJ0.=xz(} fgpeCy-܃MØw;x&מW slJ4UUi͘ %c؈#ۈs/Gmh߇-k^?X_eQ w?@5rbfTQ|! ލ00X.Fېh.5M\47^eRJ@'%)`x,"_کҁ=8MJJ(7}12< %U~-kS(_rU:^7w^BG/x@ aÛf 0 D4JHq@fNF b2Zw^yKnT3U>?9f08q9s!roo/ j%Hk X!WY`9e=#!Æ!%!kT@߽s02!c*MA{־#0uqu0-\͹fSE~#.߾C Y̙st{:d !UDv+***rsr(2־o&V=qA<*}2ڬGȰyZwযƞpJ b@H׍K@iBa^SUabyyy(v _ %cQ"ةT11)D,-/{}a+߂ChÛ"4,|J2)ZGi5C<˄\1 xk9E1i (Zc-\k%S IDAT:AGyyyQvhƔd߈oDAl߄iƞK\ef2Hxx`4ꁩPV;ѓF x\YdH. OÅa>R)IhD8i-Ab _y~!2Zv4jGKP+--mO B襐XF7H'ڪ~$t HH"2OW.^2/alaeqc</Vr,+---ʦDQ<,q aLL}/۹/gɅgq ~ 7甕0n\& -ӡPŒzsJAhb=}*L$|>߄ |#NTN 16XA=p.J WP솧ğ-xl]PEMp#gN*4~|@ P0$'෿_I#j&Lkꮸ ]ci-Qk@ l_^%~8<7ߟ͊5|P^ g=ey4 0_ؼ}t*it{ hXĀr4dȪlJA Џ1d:4v3B|j)n J굿jxKkO !S3%eM_:TM|fL֞b:'6K<4M|gK?V2T1flgY´<ӧ6˅p/bJ|ӈKvNQU_UUUDe- ]z %X,V,!)lҪT*5cʑW'}j[5l};`l\u*kCOk%;,f %$uQ *cC2y~ˢz^{ǟ,DpxŊ]wPwre7 ',֊"e(AoE2e\0k֬bd29(XN$>JJJWd(r KmT?Zp~oaYsN)L  !uUŊoXN* =v':܃D4}#A\!atuuUTTidh4Zd&"}>_;/ĉ =?򓁊bim_6xbh8&~i|qbCu o Ȳ\;*=Szپ}$In{C8+nj{8Aq-A5DQRV"HQj<+ct/2fʔ)9]k @ h4J(i-A0<OQ*~Qt:-Y"HD:PYYyw8y@u\ĵź!c: !Z6 9ʿC1樵(.[rrWwZJ@6!Hk xB- C;Xl𡶣 0vX{XGQktC&V[dXնdm$9FUNwiZa(J* Ջi 9pƘ]DQJcn=K >@$Y]XiӦM6N9؁r1Ifuww+DKP  +C=\z@q|E"U#rUU\(J6cpxZAZKǙ&Iʢl*8V3#ه*uDž.]`IRUU5~AZK' <<$؅Dk +Ms"<pG#Ȋ+f̘Qj/ % MӊUѪjRx/e8nxZ'$Ir vGyr-ZqRSAx:TSUU%U[ ǁk޽ӌ %Sb`q1rVڂq(ƻ믿~̘1tqRG +[vCUMEQ=l߾SOKzB zt'eAPE>{<z7ns gۅ6-\p…|El"Z8FQUXsUhQʬO}bD$ {cn&c1$~(%N(L BJd2Pu}qma:!;!c21UUk %?^oQҘh(y80aJCD"!˲}1Q_0s Hk bȲNJTڨƾ6Lik0;{(q\:?E N|eNbsξο3?D">~eq\"7XqAQgy)Rd2yZ{Сd2SƘ}^(GnC +i-A W;455ӖeN@ PHv Hk " ~+\|<8o?KKK˩ s8n̘1E"Z CQE+(ʢEzi1{S?`0qiz@_P(s{t'3TED"8qַ +S='ꪬ^( ůAZKGd2yq4iR?OPU>)AeY+h2TU"j$I4 Hk hje{,WpA(cA-ZD Hk ⨡(pʭ}5(:jm;P( %bGt-1m_NjСCqC 4 Hk F?oV4xgeYnnnu4qoST?Ȓ$QmA!|CP(uTN;qkD9 (R#''Z uET*ekcXiڦMdY>3(̛7Υx`af:p2۷O8> NX6o|[5j!y0Ȳ\VV6yƌAi-Aݻw`4e IknJZKq?aEmekC5Aq"n+%IJ^w//xb2C&Z81yg"Ɣ$UVmذoς :d8YlYSJ4y~S{'x;0a}AZK'&ZX83{_%\BA1~ߜ={v  p8\RRxy?d Hk bV׿>ctbP2AV:;; Gi-AJ7zF1(L';mmmV0a¸qjjj{カ&:2AZKDqp{zz^/K,:u*(Pfqǣh<555F2AAqFAi-AAAAZKAAAZKAi-AAAi-AAAAZKAi-AAAi-AAAAZKAA x<(  Hk H_zϞ=t %#s=Mǁ Z8R0JKK8AZKG Y^/ Hk HF9@i-AA(Li-AA8AqD$Aq BXKi-AAHh % Z  %  bXIRtZ?-NFlٲ|r 8t=hmm*U1\.PDggw9sqt4Z&ct@$;v!Hk b4-Lq8$G4+_JEEŽA!FAK'oH$|ɲ2: i-A 7 DQ˃X,'D" :::"H:NR<<  n|>H|QF=z)ApSVViI]vX,Dx/---//1b .& UU;;;Dooo<gWZZ:nܸꪪr:Ì,/ү?_2 ~ 'N3fȑ#l bP( zzzٳO=O?ѧp$>֧zj7xԩSqtx嗟zꩊ\y啷~(GBӴD"L&cXKKG}Gڵk ,7oC9|?r-]vcBQ`ݺu>(~yC5K_ҰcLUUX0ܸqڵkW^L&??z1'|rܹ_1hoذ;ꪫAPo|GwW\bŊ֙3g.\p… @.(ʺu~RϧcBF?gy7s87eʔ)SvmPh͚5+W\|رcO;O?$N(ھ}~]v]{7{ϰ&;B^*+ذwP(X^Ph(X(Ez%RH}^'*z4(zŹ;;73Y^k}7/% _ ;㴴i8璒R)'''##?Y^^bmll6lVZߏQ(ikk+//`jjj("2zbccn͂~-tĉ)))lۛQ(_|322D̙3%%%kA@ddd( B#  466~zllo֭}uNNܼyf͚%~-ȟHtqq`0h4xkkk~~~^^^GG9sHz]h4ZjjjdddWWܹs,Yb``0ւyP(UV]rEGG>|>g{{{mmm@hOb={իW"""VrssC  Z?*m۶;veͅVVV溺BBBp8|Z9 D"UUUoܸq)ܯ7Y(D  Q[[C'--Øi4ZWWǏ?~bp8$d``[YZZYUU%**4o<1hkA@B ݻw{{{ϟ?@2 <ɄBt:bt:NPLt{zzFFF ~YPii˗/;::tttf͚y2A@@[ Wd2㓓ݻD"D"p>>> h41>>Nр<"p8 Օ~ooogggqqqUUMLLLnD,\^^pB4އ )))tRtt=* 榦Jbfffll4L&D"Y[[;nY,XWWWIIIyyyww-,,>焄@%%ov c@@x?dQUUuIyyyooo P(ߏsww_zDsssPPPƁJdeeeee555,Yd…+Lq < IDAT8Ǐ Q(w(Sۛ᜜/^9rDJJ{Sv??)Z$,,vss"ҥKjjj>>>RRR@`@@ g7o;;;qSth4ZIIIVVVZZ333C @N511p8Y^^5***:96s{{ʕ+ ӋK.^tIAAa*퍊tpp_^|YTTt׮]_g)))P(^UUUTTtG>|߯kdddnn.))),,,((=eee-C"?ٳG[[󋟒W]xVZEMMMPPTS]]}ȑ/~iRRRjjjdeěf̘14rccҌ3եdeeitGGG߽{{allleec777߿e RQQj=MuQVVjmmiӦ8ÇkjjV\`u{''gxx8777''D"YZZΞ=!$B󋋋kiih4=y &4<<2sիWMMM' 6[nժU] ?mkE0 bLLL֬Y=iӧOLfOOǏ=:EA8.'' H$eee --=0 `/VRRB[322***T*LP(蘚 ~sJ߿#uҥK,Y2aPׯ_G"'>|#ztzcccYYYii)766vuu5,p3fHeeeVVVyy9޶mGBBȑ#+++G6 3g~(Oڲe~aaݻWX!))ǝGegg_ܼ֭[,k…Srxyedd.]f''' *uuu6l[b̙3eeeݻ-$$dkk h?~<11QCCcɒ%ñ!!!㦦/-]BwvkkM\\\o߾EDD$//WOO;wayxxfΜijjV]]zMMͩ^B&&&FFF8<<<--mxxXPPB}]SSSMMͪG %>>}›ʩS^:ְ~d v Fr oiiaiZ[[;vBX,;VTT~$}FGGc0vcssΝ;I$B$.]0L20w\6ʋ/ Ofhh%!!a_]]rgϞCxxɓ'ٗ2>>rUkk'NtwwSJRD"MJJ;w… oݺUWWt:=55G28}||N:ႭuuuEPMMM3B٠MMMD$}JJJddd<8yѣǏm?(ڵk4틣ggg4Fsuu}yҥ/Cyy%KrgϚ?~hh7s988wuuq"`5klذ_297PC|Xp!`xx'k׮Rnd05`oV-t:3؀d2T*8,q'Ha||{\|.< $ق$[D"!L&'_y鉉_};w`Ǐ⦻#G0OСCS$z5k֬X?}А'' --իawwǏG __ߌSNuttܹ3..nxx[A"ׯ-9mmmFDD̙3GYY\_߯JOOχ@ ZZZw%:^TTÇxKKKfffrrȈ*_UUUfffFFFwwhKKKbbbrrٳf̘UTTdddgff*++7;rss333߽{WPP ,,~hhh'**500@&>}V\~}]]],{ C߸qQKK+--رc_ck%$$322ۣ$$$V|r[+..(((zjΏrrrrssO<)$$TSSytx:uT"]vB7/+++))yPAAA^^^nnnaa!nӧ‚†~"3I̒%K W>>>mmKjii544{WYY ZZZVTTdffZYYMS[[ ym빮vƍ+"$$bŊd/_)//g\~|X[[{rx}Z[[Ԥ۷oϝ;}}7...==]BB"..b@ W^yyy%%%m߾p2D @hjj ˻b  .]t)###00?j.))AP( ///[[HR?Zs<e[[ +&&&ƒdWW3fHJJJJJ`Ia,[YYBDYYYoo訂BɉD"BTX,}ڵk7l{h={-Z}UVm޼ʕ+_p:}}}=744+2pM]DDDuܹqqq}Ν;kjjڤ8#8kkkcřGPf9;;X,;w߿MbXW^e2 f޽evٯ`2BUUcǎ!]Ǐg0"""mmmMMM .ܷo{t:;&GMMСCk׮zݻw9a0D"8g{TTRCC`0LMM̾復׿NQ(̼u떀ҥKDDD8Q׬Ysv]]]?~WSSB =66VXX4###ww9sX, B?ڪ®]feeekkkee6PC̙cgg5)C`kjjlmNN !&&e˖+V8::EFFܹQ(V Jbll%4372<< @FFFv9[;|`X8``ϣ6WCZZ*}}}x<^SS󫪪޾}{ѢE֭˫[҂b!JII+d2HdDDݻy/ࠡ644}Dooo@@@mmΝ;,Y sy'x|rr˗/mll<@TUU׬Y .ܼys͋-bWV&|}}o߾ldWWoS<{۷FRL&J[[[m-$%%ELLsYLLLRRRx<IHH 555tNxEE:'@ bbbP(499y·( TSS+((`MXZXBB3dDAAAQQQN[K$~*))ეsѶ k/FK.4'gϞ4m||<<<<;;17qaaaGGŋ~䶶={L^J&''߸q*..nrrʭ[R( yyyWWW)\UUU///OOwժU+V`? KKˀwww33wڵKYYy͚5666BBBS;_fee9? 3444| w'P( AAA111===QgxxXOOHB0NT 7F!"cccXlKK˕+W8WCCCx<7777?f͚Tyyy---i4ZxxxKK Cwwwxx34448ĺzn ƕ+W_ii)pI|u}ݻOp$å ?{j.BPWWח/_9shӦMwiiiLvppxinnndd}V^ݻwGFFvww>())?>))IBBݐH$P$ 6hk!N߹s{ݺu?k.aaӧO ɓ@*!(Z[[[ZZ:::Z\\8===L& {l6lؠsΔr`חN:uȾpB{{;@ `dK7 c2[P(8##c۶mϞ=~Յ ˗ *//ZAWL&ڐA>zzz怱`d2?~,..]n0 >Niiijj괽ccc&a{N'//oL&ӧdk9yuttH$WVmll>|x,{ŕWRR[hQTTԁΞ=_ytttvܙ>L&s||NBBJL[_@z{{;::WXq1> y󦬬L@@:66~ ޾lٲ{`0eeȔ> 1B?~O9r0x&&&d28+++222::bݼyk  ˗===H$L& DDDDEEuwwJIIAP!!! ŋYYYnnn@򥎎`IIIVV0>//^GGGKKKo߾]XX>---@efffhhknݺWSS:00PSSVWWwY@@(!!!88Jc0>z˗;v\@2zٮ.111555ׯ_S(d { ǎp%ϝ;wҥX/^СCq3f H\fggwJJJ$Ғӧd2Y__謢RSS`'y"h4r͚5;>>*&&fddĭႦ^FFH[[Clgg7!XKJJȘqr ijj2J#+---,,SUU1c#UQQA$555͛7TF+..!e _innCGGٳ9otzaaaIIАkh䎎F* BY,B`˗uwwɵ h4AAA###vKKKKwwwoo////Nႂ@Kyyy qqqT*5''_@@@\\|ٜ###eeeJ>FC" n:k֬]v}І~A0LPPPGGǂ at,ϟ?|2׵kDEEWZN*)) 500n`&YVVݽe _sFGG7ox̙K]cccssGhz!H kL&D$99;TNR! 1 `}a2d(,8ήG v1ﻹNr7o888>}_PXk .ZhӦM%%%[nL"RRRV\ hG>}u?񊊊ׯā@StرrqqZϟϝ;kTɓ'&bLLL윢C Bpp0nHm۶ݻwB硡!OOO]̙cdd"G"7z "D"k֬|TT ^x ׿xB[[;<>Kjkk2L(:::' bcc3o<<t_`ZJKKmll6lpEIIsMNz}HH$a\kkk;vRRRkQւp:~s.]E6"""::::V,-----qrr244`0 gdd}BP>Zx< ̩ @xxxa07&^UUQPP`ee7aܐwwŋOu\z5F{gnjj#~h4L P' eA8OǧOT 777ˋ68peooo-[ cǾTVVشiSnn.x葯%b0 tK"H$8P酗B"222 (JNNnsFRRR0̋/FGG8Yښ'44dr:K.={Ʀ&i+d2;::0L__27`xTTTV ӗBuuu W>}p7svB4NzUyyQ*جXbʕ---()!!!!!!"""((@ . e|||xxmppphhJ"H)))999SSә3gN󣥥VPPpm۶988XYYY[[K@J+WB: ޞL&q*aTVVN"`X@ _]]PPP"`0===addЮ655䁀db[ZZ-Zݢx< SRRΜ9cnnb6o̮8d2FǏ-^x޼y} $D"1;;ё <]]]$S +tuum߾{UVVNOOԴd8?ŋܹFϞ={o/aaaqqq===vRPP D"֖S>{4 )==۷^BPW^~j khh\rĉׯ_666]`/8pLJFkjjٍdŵ֭[UUUs PTT߿Ae eeeCC;wX[[oݺu+hpymd*>r䈩iXXʆ\~ҥKܝxPP灴Wf`sΩ Yzjҥ}}}d ֭[;vX==='NPUUUWW߷o_aa!PڅNxb޼y7ns? Hyy;vpNu NNNLjjj7nhjj*//sҥOfeeaXnSNmٲQGGg%/_ R0X,ƍvvv q SNCCϟС<࠯ڵk'xyy>|XXX&x```PPPHH%TRRr۷o3L???oogr)~~Gr0 ,G!umڴiBF&D".^8w>H$nܸq޽ /^rP⌮b2555N5kV{{(ɤP(DOxhh3X}iii YYY4mhh-**OӃ޾}Bpxssŋ^~[U*lhhx!WB<<<<|֬Y7nQ  nݺuٲe[l㔕]t)""bZ?@ff{"""? s뷴;wbmݺG533۶m4 ʕ+7oބ5kxxx|MGbݻw@HHhhhܹsZ$~J^fI5vЎb9 @AVΙL0P(J UUU .ZHYYӷo^dŋ{zzccc]ѣ~ a0o޼^5hkA~8==}||Jq146444..NWWPFnʹ W^%%%]p']=QXXٹn:4nݺ 2L/L&3!!˗;v%@xIII̙3]\\SZ"'''88WOONݽ[QhhhhŊwܹvڪU-Z~9صk׽{TUUKJJ6oliiy޽>ܼysǎ aa0(Lv///qrr211t:ŢQ999O<)((PTTq[T@szϞ=bbb>| ! Fo۶+i׮]333khhpuuBϞ=e%N Xv}]~=돂F_ ())%''[XX`juuu||<םڸ8Bx={؆$((HRRrժUDEE9::l޼pdmmmT[[9s888X[[3cǎ͛7@___GGGCCCAAFeff766tOBBBYY#h`pppyy*((`0KKKNW@@@XX8>>~̙\)4fooBRRRjjj_ hoo~DBBb֬Yʩ:::$Iaa ѣ~S>+W>ydl95<>^WWSÇ ;w#G1,L&XYYYYYq=`F%$$hkkrJvvv޽;%%9s&00 @ P ϵe_vCzyym۶ M @x… >} >4@[ )--ݰaX%Kdggsw2W^ݿ?g;wع(ʶ3gTPP$i…۶m#rZP>x`ɒ%/$H6l055USSz޽{&t^xqkk+F`0,H$H\s}mذaJŭ?jjLLL#""ZI{{;gϞ XDW^]رcw\vmvv3A fǎ Q%%%M> >>>YY٭[yɓ999 ,qEPO*--]|SSF#$3gΌ7o^CC:~B1 qϕå:::xxx˧>aaa3ӆGMM޽{,ӳ|tр7}d́.+--mddnLII}IZZ۷oa0f||׎gnn`0߼y233d޽{>7oz*ϊ+nܸ`0vuׯ_wvv5IPTT|򥒒s}}=иk׮ nݚǕ+!!QRR188ӓçZCѣG\GXX… 'N(((<}O/˗8`'͛/+wg̘npBkk+LvrrjhhذabbbV^E;((F;;;WUUeff !H9sTUUĈfeeIKK|;w.¦CCC=222#_ mTTT6m1z ݭ3c ϟ{xx|iӦ?#ٴi?uٳgj.,Y5'Bp7* 466oٲ/^J'u.\ϯ9%,,ye`ooѡqƲ2* @`0 G"P(L&vAPVVV٭ZZZvvv{F+ ;}_SSӖ-[%%%̀'OΟ?޼yBBB\jՃN8hرF:;;z'm-01`D")**bX^^^&N"""P(… ??  ƙ3gΟ?1()L1TTTlڴHرcVVV ,~8FFFd2ݻzzz_ܒ>ã W7a2=rrrRSS`dd|FFÇ!H{{{nnܹseee_KKKezzz}||rrr֯_/++ ŻqndNN```}}}^^Ȉ-Zdhhn:KKKii隚T #,,P^^^ {KKKH&CBB8+s̱`0 溺t:=++ޞ2B&lByxxz{{!yyy43C|ڵk4//{ hkA@&CXXXBB",,Ą3"%;;{ٲe\іaҢMuuu---NNNܹs|⅞UXXXLL̓'OTUU=<<:$""p8\tttxx8sUVpAPKKK779s%$$<{ZRRRQQq1CCC0<obb3'GTTt,x"77W\\\YY@222,--'? %%%UUU FDDfPXX(!!OP*++Դcff˛3ё#G6l`hhWvtuuH+%%N_<  &ڵkA1mmm\hmm>>>GOOtuutii٭[0Etth]]mFGGo޼bƍΝR_+TXX`edd"""\]]wSRRROOF->>>>| S4cƌݻwy󦮮nt:GJJJHHG HO>]v_ZZZAAg϶m P`傂nnn WWWG –%+qppؽ{sss'CF߿֭7nu!Hgg' < \z8I&>~hmmO9Ǐukkk&qD"q_˙v222Q[[+''"### D"-ZdffݻH`"ۛ122:vعs焄6l0zΝ/a'!!!''0"xǏ8ɴ\pattt׮]GRTjii) `X@))Ac@>,0;{mڴҥ b4ԩS={Ky搐䪪ٳg/\000011qƍBUCBBrss###^cǎ!0mڴYdɮ]ܹ/ۈ#Hqff7^}]\\4Mmm-Nwرɓ'GEEV_x@[[ӧY/F+,,LKKxZB¦&COMMZdɶm~{ aaaoC ٸq4[}M>}ѢE)))L& zxx(MRjɱEIDW |2^`0lh$ēm[l uww'_̕JeVVVN~ Gڵ… 3ok-~Ç_zbyEEEOvppprrj!2zIo7[ ¤|fWyL1PBE_n?ndͩgc/_!-[~|X3gΜ|x׮]zӧ~Ǐc֭.\իצMNpN8|2䣏>ZrQrx5X<m۶. F;v؀,YIBB¥KD"N#](~ bL&ߌ flꫛ)s,~w=<<~>aÆ g6L[l!þ)S̝;s6oLz510ݻ%''=l&tڵ .knРA...`۶m]vRZʊtd0EEEC%sG17)++  1cDDD\z_[ASSL&jz >O Nꆆ9s|g۷ov~mDDT6m|{/:łFy^#f |ݷ4=IFW+ P^"_;ZyaB -ȓWBq \'=%kw}u}2%bX&Mh4˖-3fLsߪK^/_TYY6k֬?<==ݻשSܹs{6lXyyF {wl2HFT*fΜ)H9F寙r/++wrrf9.J1bnn:[ ٜӺ:l^P(Rnnn5t*_rQvg&egg>J[v/V9L:f#>UT)vt" *z%i+`y<ܩ7͸lax󃺳gg|~z?sΟ~Kb߄bIIIr*,ĪT>,((,jjj"+555={RO\ۿ!b2^cc-[/^kaXfݻwo޼IRڶm;x`777''%$L&L&JUUU񹹹B0((?00חfh4fX'܌/_|F;wOP( B~tϞ=#lN غXZZZӂZhh4ϷŤEV|}}Iwȱc>|D+NK.uww?tPBBW_}ݡC___n$oH Rw)B NLLLHHZuC !dxzz]}A:j- ɴX,yyyEEEdÆ ˗////'GdSyLMM *ɏ+Vرc֬Yc)oA gϞU*}ٹsgPPo_J:%Ղ͛7j???@wwwgmm:nE9jR[[K\& ;~v-Y$..w555zf{zz —{J^vãG9 Hp--d܃wfY`;nաTY^@i @Z~c"!X@cB:QW;Tn%>\4w ʪD}g Z T&'%I KJ^e+k&-qE<.d24:NP\]]]nn` Ba۶m8xQM}C0`۷ ֯_G=|Ap\.keed2D"WWWWWW'l6[h}II ;}Fikk[QQl:8~U*NVTL 777JEF555õ-))f/_>w'oK]ok׮]xҥ7|#OUׯŋ;l7 xmN|@{K &Œ8))Ąא]qEX6f#r3}^+$pw:EЋ)ׯ4H. 7Ϛ5%'3fL4iȐ!2ϟIOOߺuk=9B_O>\huf69Bt|>_јL&6霜j5I,d$''S(??oFEEEuuJh4f[YYx<2= իW[nZmhh(++"( o r-(ʩS3={;;;;;rLgϞۿ{Zpggg2ST__+W|w}7nܛzyy՝ѣG߾}˿k6b1L &yӳi&t9ڵkPPPmmmbbbl6@Tx-HMr|/GAf10J# `"8$yHUb _JcP7 [1.``!\Vxr0!CdqTzg7!w…! NX m P;/KqNX])Y\5ߎ '=R!">NtΡCZ biӦ֭[}ccsssnj3f̘+={ܴiӞ={~'1sLZ 444''?%%eРA_ŋ zieeVY,BX,|>F b6|>}khhDf՛`\^^nX"""Ξ=K*,,4u2())t:,񐿂bjӪhlmmZjծ];sppXhъ+ngzqΝKLL,//'VVVK#r_ӧOݻwΝ[  BGDDDUUU\\ܔ)S}@p…7zzzFGG8}0`~8a„7:jeee}%w<oȑ'Nxm޼y֭mڴq-)@};w5xx[¤3١<_hU!ėP@:tbvLjHX{`ϸ6O w*(U]Fߌ"4>SN˗/"Go۶-::Œ:g|d2իWt:JFJ5g ,+%%SNd}֭ȑ#-[#~ƞ;w>,,K.}#ekqd B[nرt֍w3K,Yz?vΝ ~~~:u!?3s͛7۷s\S^FI$'N0ڵkG0am~=ۛdo߾}=ڰaӧgϞfd;2 pBRR눤V>1&R<׭[׺u;:: r*0~9rcbb~-QZZZ[[斗m۶iӦq8d4j\.?{_q4՜njj"cA*j5AZc6zT*e/yYa6KJJRRRn޼Y]]M5|]i> 'hۛ578<ɓ'9ҪU)Su6<Ņg4̙d2~y̙˗/]J޽{O<٫WCO_͵w?LAt:r>vCCCIIIyyy}}L&S(ͦT7,Ng0Zv֬YF̙3ׯ߇~fN>>',*;j5x1DAAAnM5͏?X,}IJJsvv]\RD"Qvvvyy)S^,fUx|WBZ:̠C(εLJ|v,%M_V|8 òC`ťl9ѠJj8D?*  Ղ?=B0,@_?x W,`jmhLZ޽l2(ҳ e˄ Yz5>n4ɧXb< !tDQM {N .\bO :l(.. !!! "66v-ZP|>_.\ooZM~AT*T*bihhX,B/)nܸq…{bFEEiZ''cǮX",,l64b>|$]-[ٱX,ңթ//?6:vرc߿ܹs'NlժСCB_-[`y<^Z777SNWo-{M溺:TP([-lllD".|*++/]t]Fӽ{w6]\\>,vӧT*M6NJNN &μ<A :ܻw!r;;;pl61I`0ܹsѣ*jС_~%pxbmmmΝ7m4wl\޶m[2#BRݻuּ}z~տk-˗f{$2224 $%*nnn?>886>>ѣG7ozZJd2u:ݓ'OtMC!r=p`IJӢLp]6 btfx0%2C\8E#`ზ6'\*DT KUn 0fjD!anIMKã4p1NTPaCƊIc_%Dg EU*\Ə ws[j6 U/0Z@h jK`2;&./S#Ci`S/ H`Ci_.zuySZ%vlq%~C?'sRYkΝ=zt݋Dю?,X5f''dVWWv]D) U(i4T*%{r>|9zh,77Bx{{{yy%$$_u8Npppppps+333//\.8::{{{[]v999/-- _I/3<ʊJZ,rcAT9tttbޞC[[[;vԨQ7o޼|ݻw}||HéT͛Nڳg®RΜ94o޼_\rߊ~aΜ9?ߺ?#$IddD"3 "{{>o߾ߏt]vݲeK|||IIСCCCCKKKKJJnܸ1gD#Zj1r'MxbyAUx)s+ZjѻwWs566*>`׮]iiioB. 88? ` +X,0@EF)Jhh&#:! lBxݞGH1;|$Wn 8P[d3B\fLX@`+J ^H-"tܕ~#MeI\EҒ&BؚfjņN8L 4ty6.]`0Ao&fyNm~(:Rc!g2$Wi _+Q|݃pϦNzFjd%''3L@T*>>~~~O>}IMM/Gk ݺuX,۷oP((@ff]Lӛo\߄lNKK ߅o!$$dD,Av˗/_z;vܿZZڵСCSRR-[PPPpeJբE;nfΜ9s nJ$W ڷoWp-Bh4*fٳϵZ\sVBg+=E%d` 4OΦcmTkg>rl.njĩ<Щ{HŝzmGOLOD  '>8B,f5 a'z6Gt!؁/8b0x,n?TPȈРU  ^ h}IJS gAւR,)L8x : GO\E H80 fc:GV$O4д~ nh)޲3))v3}*邎=к3_eOi) $}}Q({cƌ9r֭[^d2;wlmmI.FX,4l6 +++4NKRXa tR;;ӧOo߾͛3%Jkjj&N+**Ǝ:7FYvd8p޽{) [sΡCݻWTT@@AիAH455斖^pfwЁT5o>''… yϞ=Nqù\5k,K^zLL; b!4Ia6 KR(nbtA ͨEg *ⓆxP kj[.92MM:㍞nz *L\p{,C+OYg\k!N + |a„^h;oSZ|j琖mzЎt#=R+ ع ޽ 3j AC ^Pk3;LZeީ垘D8{Ӧ6EqbT6<~?zƐIO "Ӛ(>_UUuRX(y<^ w^XX؋FC`W I746T*l6[&| RSSCnJ\N:USSTv]t߿Dվpb:ub֭666G-//}Qݺu[d yя?8c A65MɊRNMMݼy :v9mڴaÆm߾=::zQC_~=ҥ?h=W(+WJ֭;_C7t 0`ժUoYɓw~w}]//_|޽{Ϝ9aÆvډD3fYLiӦ/rΜ97n$ ))oJeeeGްa+H1444---""Dy=nܸO0vCܲe˽{ȺźuI… w9gΜUVR(&Ij ?󪪪{-ZG!!!,K.x<bSNO&ÿvc>~800o߾/_ ` 05֪`\Gj_Xp)6|_w0aT(xP܄ 'KoBt uI!W0*!UL@7#@0~e fG|XqA1˄ l@FBPt[h-5/e[QfBoB gLN b,HD$>=*R5rp_oR>W<`P! +*b_.&Ia~-%gl/ZH߉tJKBN,aAmN%[$\D_v绻WTTܿVV:ѣGuuuT*ͭo߾4ˋܷY,L&H6mHRR1DcXJ[ѐq_IIIEEELLLsn011.Y[[ݾ}Yojܹ3$$})))۷ot666>}*ɂD"N啕 eeeW^}yZlٲe>,77ӟ~D"y322yYf }|oZ .ڵa~M>f/^{oڴk׮t̙3y<ŋ-ZԹsٙ7n\TTԓ'OΜ9S[[KAAAN #"HӧO}}}.]:p?^Rr0CSXU=[`VtPhhh hϣ3Or2nhM"ݗ1ZӊA^ltףZe,-|'Oܿtj.GGG.k2W׋bTJ*++ϟ?O:07-tۜCnhhhlllٲT*xA.f/JڷoANp8;v [xi4Y b0PWT۷o=zɩ~ؿ@ ر_sOƠt:7\n\\>|M3Fӭ^zuڟW\9{l֭cbbѢo-[7sڵ}]jji~͐N><44s-,,/ >\$m߾熨Æ {֭[;tЮ]={7.??ɓ'uUVVvZ͛7X,www@(IIIݻwOHHU&5!~ƲT.pz3t`g-jIŸڂb?:R05Nt߅tCGyг%lWؗ6/T#GnK uj4j3Sw HN`8*C;6a6b:'L=p@pJ ZКr!܅>pk1yA~.Ƕ?˄ZB{8e% G7a¨%ƹj|[<[ve5=f_`:}DEE5gTjff _SPVUUرCϘ19cƌ1bę3gN:uҞ% E"_#FHJJxҥK\2k̙֬&&Nb֮];k֬ٮ۷o\.?~?N/k8d2٦M\]]Ǐ~o={Y`ŋ_H$K.֭۲e˲֭[Grs>}|+ äIabƌs TJZ!cLFDDDEE&wurr'=<bw 3 S1꟮> c]Ǘ`/>NT}UYHk<d,%@āIr9>#t%P|ȗj6s MtXlak,$q+͙^ڢf@6 |>`0YhNG9.Ŋinnn~>|HRxQQQ-?~ܶmWVVzyy544~!r#IokRիW~G/nܸcLVB"ꡊs%$$kZr9beffד *jcwxT?L̤7R" EDW"(\AE AAAPQHoRCBHN1i\3399y׻^{Ȇ ;w.-- h]nm= \nwoo޼yPBӧO[9rĉfnw:ϟ_6lܲp  ]wѣfj۶ŋ ZdzP,*f@$ RT,{x.=4)ʩ~[so;.IȭPvXQ}Qie*ruFKWܾ5*Z,7XkɜEPSUU%jC<$*îc*GZ=/dkr'f2fjXÇgddy񩩩 Gرc۶m/nӦѣ t~ƍ-Z4bĈ;cܹ%g:'Ξ=[=_|8p޼yC?? &>f3gܹs/B,:u4}E}ᇧN9sfxxxΝ'M^s5L-Z|ᇽ{^TZڽ{M74~w}_}U~~~HH{왔t1u[w,*R0I2Ja5ܚW!E%4*H d@,Bibh.gu/2R A֣L껀*"?U_! Z= ‡|tu]m:>v>C@ƪh:G)p * V$ʂxE~"j hf`EIYr@I#s2;K[XX-"?;:JoQVԠ5t3fuLxt=I,c|PΏk ·6X8FE3sBNOYEP*2Jx)YDՀHDO3*Z- 8d5 ɦ*#o4㩻HnS;(??..\QI(^/Ijfm۶Vbmnnny#G^xަM]777w׮]O>?lZ-?~JJʲe˂>!Y mڴyN:`uMv2??Μ9ϟ;wnO%:dɒUVǁ6LOӦMrAn̔eyܸql-ǏߴiSvt:$IZ|۷oߺu֭[;6IO{ywϞ=ۻw_~UV.]:wȑ#KKK9"IܹsW\dxݺBCC7n/޽{ş~iFFF-j'L0a„;w~ׯ۷ӯ2pnʔ)cƌyNڠA|(K.ӧO3gNEE7/+**曕+W7W QRR2k֬3f.7C̞={ܸq| |dFF?իWy1[n;vl)^  &<3_}_5%߿+j%I[n7`P?dzEGyUIC'.uk֠ *^Gsth) \9-FPJQLp׀' yr_%{OHS9rD+hȪ 108r6L@\@"H7 #ᶻyK[geD-n X \LZMxQ(b\8=̤jV@"ǝ)aý<-DJ .\ V-X@2=`*Cԇ$_hv㲳W/)`AO؏EW-ݡ`֢(Xe;#GѢt6k֬Fjۋ,XpqVx߮n~.^x%I.cEeggQ:5^TJafd&Kb!CNK=T)TJЏVD/ u JfV*4%-'PeSdC?DQs_ܰvYlNqƻv튌 3g&O'8ۏ}pnXpayyNlwΝ.~k۷sΣG޽[5n83&66ԩSNI&ڵ`ҥˁfϞ]~tlKJX^wҥ 7гgvڥ-{.//o˖-}޿~]m}V;eʔN:=<0q:ƍ/X`ѢE/]wU_]?^QQѷoߑ#G^AO?6lp:HW$I~iN"+gΜ9s+/&M7ok6sgyfʔ)/>[ot:۾}CΘ1#hTp&k׮{ ^u:KtvkJ+v_(QPAKMhʊ,. 4h䀚:Ic> jjT9Ch>)>@9ު UװP@ 5X 8\JTjVÑ,ˆdƁS)ɸHnLj$s75_X|xDDĪUfRѣ `2~ &lڴĉi{イNf?ðkpkp&>n`v:AĪA'bW`T%(\_tt7suo]hQnvݩS[M62Q{9mڴK{ォV=z֭[QQQݻw_bSRR?jԨ]v5sίjiiip{wyQFK-bu2>YUlkY5c^Є >8rhlllyyeA{.x7f͚G .߿lڵNZZN)++ &^t:]BB¬YZjեK_}۶m a]MƱcǮ]pdffرciii z7h-tФt3TŐE%!DYzj~bRI xtx J[@hpd(S숎0 =9W@ji f ,ҏ(+գ\ SE Q_C4APyh;zA@l]4Pa#YébkR)}AS\O:KƏTxw[7Ȯ-wtOdΖ)w1<ݹZUU~hŒi&Be`)ԟCLu` ` ɄO)! d| r0@5bŊ'N9rWF>`֬Y+W{$<"##N_FEEM2eȑ~‚g~7˖-4iҰaVZտovWV_]v޽C O%@HHHtt ry7.Yɓ a}>_ZZZPygz_[/O?tdd3`@>^k/}/G`/hLBŀ@ZgN#!!$8LxvКq(2dt m#lƑୡR%D*( e4oD6e Vյ{B%x ˵9 lҀMr_dstM!:"NgY9>hkW;vؚD LM `Z11:FD,ܬ &zXAIkG6,>,ڙ-{,(լ>1lV5*pzTa`%BP *@[u):Ձa$C2?@ R t%et"64(PR4VpLubPk$2eP=Y14ię.:vpAKIEsz,j =x9Ar-j{쉎~g/9sLaa2eU^M6={ѣGYfɒ%7|sRiҤIݺu[rerrr˖-gϞO[?;;t0eʔ~hbʕ[lm6f̘nݺ]4Kx' S'x'صkׁꫲWЖj[Bbסӧ]._DaÆj-[lَ֬;Ү`UVVdɒl͛7}ݢ(G _~e޽_cSR[Z~z?c>-bиݲJh$}{GЃdAX(HӇkUװ3 }!\ >l|x=;HV\V J)҄ %de=Q6"SV9U@RQjRև[U/ uo{z i&b`B PV# 7a;D ~@'@/OW<[qK4uwJʾsK]xlzFDA+ hބ(^CE#>TR)NO 8ue>'FQƆ2$0Uub TZ[T=uo{nEAn``WnkL ޠ&$ qF "Nm"uN;m)JO8X#i4 e%BlfזZj zqgw;a](1gϞ?~>}bcckmQPPPVVp W?P-twuװa6l|CkfK.;v-tGFFfddu]6mZv /=bĈ?~wo>lذnݺgӦMSN}{K]q~f ?kv٥K?% A*++QF8pԉKjکSN8qO>~ueddWT2m;v_< _>Asnـl9@UOѧC,~SlnMV6n;Gd(~!DSOT2+I S'iw܄$ZTnxP\PU@+Qb5`ksl0,$T_J$hH*5xrZ RFKn|%? O\$P(wù)B\V2:x}~Gh aSuFW'D˸h5ZS{PsXǏ2eʺu2Uƍ={vdd ^z+\n'M4Wz>&&&111!!_ W3g*fJɪm~WA'u={\R$%% 6l…NݦMM7.wy4o}ԛ$s?Ƭ5dաϣK{Pٷ(#^'Qf"8|8yJ1H> 0ǹΝ -0clZz*@ HdH 00\wR"J턚0 ):Ji.7MkjWdEP{,XʲYd D~UXV~s[!BĆ QQU& CA)'*ki># ,YGJQUPM;NbferΡdf/1;KP ')HJhrznvȊ ,Cp4Тf$VGxYLT+9B񫈠THסZAACTTD5'!IPCV1ªr8LKnpo1k0Z)vIZYU(=.HGK,nR3bѤhoҥKO._t*$fszz+psO޽nK/ucvVuذa={駟֬Y_L4{7Gs;:qͻS<Tj0M~v`v<}cy!d¼f4L t*ryUUG+$[7?~+RQQ1jԨ͛75!22rȐ!K.0`iӦOnt:]Vy9s9rooV9cƌ;cϞ=&Mo(&|>mp8:v|Z?;mOSbHdץx׮_? _f5k֋K\Vz{#ѯ/01z'4iƳV%4 U-/ćSKD-x<`SW]p gsx~ȁQ^._Q_kUW(TtZ4>nHաĘaXAW1[q}O!%bRS@|M;S$dbz~DmZT!˛|~'Ydn^cHsۣ&,l+#TGdd*_:Ey*e'Uw)%凛'5u7>s2I Hcs\2@-/)/,@ |`ȠX3I/aPN!LMdW7}t `E*DD E ATABh4o~&LxWx51K/ 4(,,G>u<~뮻W^9rdhh/'GYYɓ'l6 r~os=k׮s;wΜ9Wf۽m|sL:<>_G8*bT\Ef>y9Ee՜H3>f3a6{?8+è*y ~7/Ӓ'" ԑdvï\*$pcָ>:A2owѴI81P {t Y%yh?f>8W؝9]bP<'ȁdtkTdWk"1}@S YJ}(ss ŲY/&F:`!gq~l *Ydí 47YTM3f 8b&6@!Hu!DCY~ھøAMΚwut5>sIllIIwZIqN%F442T3d$iݾ ֊+XBE\tP#JV!AkyNsmJTxDJY!Mtbb y)tIYJ*!dQTueO{s~کgEػKxݖ߸I .UUC@ޜ'֭[[lgECCC711sΟ}Y-ZNs/'2?}||'ߟ)I6W9"gDg}\uVDPQIz:sy $!U#ƞtxY"C}Ck[M!]-bi<NGr_eò3 Y)BUr[/@C?WOBR刃ϱ1|ׂME)-E@"/u4$"Kve "vPKlKLz*$vt Is.(!OXG'z҄ Z.jqۗ-#):nvzw^G!8CmS!A^{5[leR3t;^RszQ竾!CAY=Di(%KUb@qRUe5 ^?*r\#X7ЌJHZUiND;$ďAKcB92RՇOܳ%G/:ֽx≥KK999xa˗/?|>zĉ ^ZiӦXx7/\p0nP(1$$>8s̤I֭[w5Zu8tД)SVZURRrCl'7J?^Veߵ˾Mvwn޼vut5fZ?T>ꭽ b-Qyl={tQI<:9x"c.'V3-SxukĄ"am)UQ 3 Ӣ!kvKraTPTԐ궋F1rJ=خ7#+l r*DZ 4\:kwx휭`g{h`KDk~EG _K6o!S^5C՛slS 4=%g懇 mݹhCc$ ̉m%Vgn wl*{rCȡ t5ހ̀GMLB4)>C!ރM>eq1Cwb!p?l:۴i{o?ȑ#o +55uO6m\wum۶ M&Ӌ/ /Ž'|sΖ-[իYfǏڵ0`E.]ԼysFf֟X@ѣӧOyJF1^mݺhɃ9VD>N"BHD,$"#6^Z7F)@]و2Lr'ʺȸ}ےCWo5ˁaٚWq*)B"2"SpkT~(P t kzGc1WDVQkk˿4 FPG*+ZYDj>zk]\QՅnt]V7k4r6:n8L+"+;vsW|.|$"-'|^o_xR^rf{P( q DF1{27Iih2v"Ll*"!m5p\"En #W_o=w1 _: 䗃en1ZUtFӨb?^?.U6'xCQEA炋b D2:*O洍8#[ RFUPvH0a [%/|QF;zQsZаڑҎ)IQZZZK9]%9slذ?qDFF(I&u>q#m۶z+<|͛;ּysAAkСCmb>QFnݺΝ;q*zpN|{1M]Tdl,N r 0'VaB 0-a2PQUGE-%^ C+TTڒ} i]gׯ ;2q3>[[w@O-RjpV׊]xT++#,δQ`VadbklT"ogHRA\^NcxC1)g 6WN0vC#$< IDAT꣬0\^W(𸡸Q ճ> !gR|yfHKΫMw˰ӷWFMq9S6J^rŽmD_s*D[e+U>zd6%bPѧtWHo2ԱDCwtT:gzɔLzN vDz*`.XP/XET *Bz$9$Ǐ{w׬Y&Ssμ~^$-p^JU՛[w1_yMIvv߱8o>;Jb IHA͚RPA%Ai8f7BY&"(">EV87vv \esC=Ib"eYAP #MZ@ӺsGLnE/Grh+y8مiߏNy5W_]\\+vm=П ;p6mZ[^z?~|7nO;w$xFڸNW;_^Y"7+2 vnGGemdz˪BQsңGMB4*w*{a8D? o[KӗZ*QIܻ}# ]%Bݺ겙N9pBvA%\ }>f )\0ᆞv>o8ьPAǝ& 4FA"&A(SuyԠH1(1Hܻ~#x@w1 Mly}¨ @C(nXߤ5Z<7oKpmT=A 4 *IGQNm 4QWƱlYތ-P|-_~=쳟~ɓދ/Tvv)S,X?찥"ڵ5jTyyU^zcǎ{wLOIF>zCP 8~xܞY־}&''/;;h4ƱV庺kN6m"]RLs*M|@N6Kk9<7sV.d;cRN[H6hh:|g\vp50ta r"WD6Y]7 %?0j}Z;/.m㐟xRFD{kь ?ЌAM4GI|ރ\}UF%c42HK8~nKF {/4:clܞNu9s^dU\4oO\T.gYB0N(Xm$6%|ܻ%}j8{$EsJ׭4QKgNjcLjn#=F~pb'5e[,ko[Z4xMϟsDc\K1*E<:#&tjlsTM?Z)ƣG4!# A$&sU#p +­<{@l & b9DHTg!zZ7WDhy8lm1]C} 2: Qh1I:5ԮHBCCs5e;yv۠lLuMHH曻tcO8'p&馛nJLL|x /4(mVRRf͚|}IOOX,q#G%''w޽W^ (/>pܩwܸq=ؤI~O/Ν;.\8wu566N07>ƱwΗ ksh( ̡Me#y ycHS z m$RA"O^58Cl-E - L Z0iF7Ry"6#./ :+ T]n"6܁eۨɫyFvcխɫvֽ kOzd)M~ѝ1*$Y"!I2DSo0^ET&A$S>#ߞb%Jh6ZF 6IƆ'ܘE U:1 '"L&rxVK4J⣰vy#l{D jO&Zr5?}{-70Q2`g?wٳZsDٻعIy VjA9u=$TH2a3^,E|h3zF@,5㟫|ks+3d D=0I_"($Y +j%0֛vnn\wvV- vKQB V-^PU>-MW_xcg+]?QJ4 Q@Ĵ("ZZWrSxRe+~[wZvw@`OUES,!; 3_}sm.jen"6B9#bx&[jl|G螀Va_(Adޞ>,xЩЫ1dR TaNV1To')|񬥏CEVWV oڇziӦ͜9ql7~C ꪫJKKy_{ͻ~hw߿G}RƏ /tiРA'⭏$|נ79*++kkk?^UUr<`$L `4M&d2f9777.7HJJr8 PcVE&vĊcE9"UYEP7$"6JKwWsn>%Ehp9[Y7l7x4PIklދMN &s$6ed~8J46{į.=6#hAWZ 4Fl4",roKh YVV`FTB|S{8#Ht#\`;QDc0G CSH2Q!n(iL e>u2H?{#| >{'oZY0͌1A<^6`M3x'Yj$GZ/Oit)Q4yxpXQ҆cfő_pd:d110U=ˉ`3Qsy+  ٲP6b;#.[5߇)e4=u4D;^ d=-X |_N4{#rmUV~zEJuM^}gj# ے:QH$F9-'G KJ-xC+r`Ѳ F06 j{|ARV zH4&HT0D5pKd@ #aO#F]Яr@즠+$P>XaU=+QWCjW1?Q??:ը6nHFA;[V:m$Gm]HQ2&uL4Z@Hg|*m=iO! )ٴAH҆ZXglEydw#']hvZ}{'>̦ՠ,o C\aSvOBz &e-XiD9||N0,DajtܥSbx}[ ex.sy `l0[(s7g(y^8ZIǴXJUgĊ7qېV[x I֓$ |wru!FdVw,glby4MڝSЊqxij#JM_i*5LcCT]9/2s4U{E% Q &sT<DA5If?EZ[ kojgG=o^\6j`Z}󍷻UܝK5Ԕ4(JZ̉U4ٗnV2CH3oALX ! w88KɄ*es^!YոѰ>R-4 >V30 (`e?Ro SЮT"zNЉ45L*Ϧ)Ž ?rOMI2!Ls2֞5fLJI;mܾCWaW[fJCV_ſr0>fvaS,z]?^WN\D%ة&1_9&JJi,+ԇH!4C$<1쾚lM_qbp|GwG&ya_:nʔ)~?3G5ko1iҤ3 ǎ;k֬W^y߾Ǝ=G9|pQQQ>}ZMz-[TUU=sx#,ǎ ]a騩=Rk׾9997|àVvs\MMM;vرcǼy{X,xƵkצF&!;65W4XKpM `gA'uܓ%IP>d QxZ $: a0M, 0k͢\ޅ/ Y~#wg c%EOU]Y61 ztaz.jGt1ކ#Ämcfdi0SyI&C%MռۋsZ|N*34h95X F[9'"*CG/ i/W>q+tLғQӣxX(b"txVK}1 xg9-|aO7S0(Q7}8P`@O{/-V=`o4}>L NS:-5 1`us[/I_Qr,/Q4 IF%T O+DL jPK^QeAqMǃ$kcMWuN@V'弲' ]O5jr_|Ɛ2"33}Rx|;Hpʕ26VS#bRŒ5zh럚iX%5d&w~zP/3\”DJ>FZ lmBLHBTH1:cX AnU ¸"D 63N&j-F{9bpVqh#[dǖNKQ2QEqܸq6m֬YvEEEwuO?p8Əb%\ye˖֣ߌΝ;Z*/bꪫ|w瞻=2H?/ r! 7o|]w 4ן=$juRRRRRRaa5\S[[{7O0AeQz.L$DYi+ɞ~稳ͥcsi *hpT]9Q*PN;jMmÆh 3,Wbl(ep&^/B s[[?7qvW BЇY A5%#F0ةi]-g@_0q|MS!~..;ۨ{pG=D$tNyh!zJҼpgZQV92 jXd| 4\>9-6IM-5Q> Fܨݡ3-7M'0 Eō:(bB%By7 U'AC[QʮV:ur sn 2dDHMByT6 f#A9b8 *` {d *U #j+@QnVUM&YGJ$;s``ְ91 zn!dL%ӓf#ϻc\+ .+rj$,yj; d&r(%!ָ2Km2cPiSMw"j!K x>`_d65m:LBTQ^N ՇkX*T h RwUkZ{bSsB^^} IDATngͻ4Ir~[uȑ#}YVglQuvw?SyyyC 9}=~s8lܟ ؿKƛt>l˖-%%%O?w}'9ko8D"555q_X_uuu6 nGd㍍N3o۶t͛7s=7oz9J`tͦ3ͥHPH3pn]fF4텥k) bW#ǨKr^%q3Md93Ar08 %]M;:r|.%hZ !t䕟p9a38ăk3$9۸8t>;HE -+"dIͪӥŢ&Y%VʦLfBcO%h: ȉ^ !Q(>D1 #(D4q6i~-?+e&דo5vU#Qm+[-i .-Ӳl,+· vmȧux$4ZUNJo1qpHDg ߾Te5m ݞXT||ÊѬ DHDQ|FD*ιu<'("(hCȶJ76]!B~?_{㧂 @%!C+qi7rmcߌ.['1KBrӷߥY_&Lý|#8v V+:^A$}R5c"hk#6 .c%/2a:(B2:pcL:"" M;S2Sc;Z@TB@DmS=UU~΀"ZeEޗF>`0K/L?S߿_?}9s朁֭[VVֲe{W\Y8/~ɷ~^k4 /7@  W_>?v=.uu=zt„ EEEoZY}>Ν{w>o_pa}}۷occ'O<3fLιsw./}?3_{vwx~5|˸%D,ܙˏ/L)4' XO@' +ޞD! ABǐ, r]PU;9RI0v+0>:܉9{9\ih/^kVk#Volݺ;vmgĉ;vXn]UUU׮]/'x&7ވD" ,89ͫope^).ބ_;!ǢFRu#מ[~tet*TpqkӃJE\ۗ`;#.ʻ4"X(m]=1>9tCuEC6 ectկGIsI-Z_1x$U;gi×7Iaq.ณt-ߒj M˜-mD=sCqX[ÇXall54i1l^VזKA6Ðd*䦀Έ'U^ Gsi8."5%QU%X7Bca3EnS:1طq! OrtڇYmGwZOl2 sƦUTJyV"{&SŤ';DjcefgbER E$#ZB*AnI4 T5iMA"D"(ŔھXI8|}DM_ Ɩ͊EBԠQ$?;j(Lg0[K~\#40FBnqԷݒbo#F-X _TFBKT*dMMlgx:MD,mu%0gND qD׺)FDh¤hA?'o@۶ݖC)#P+,*]KteO=ܶ/$ r7[ZX Nq>Z2t\sy'ٗ^.(עx`=ٳU?a^/_nݺ`0}=nw}dY^~}nvZgt:M&ӯ;v̘1nj7oV#G6l/jIM6=-m?[ں-Z~@Jw'1rMs,<ӖTyQ/]gZޞp8 ua&aNu{L6.9wQj:f=P$ǹ:%N-CQ |R#9M[Q63Q{):`݅_dBJLJ{zܪ.n0'Z]Tf`@v7ىjH nlNjq\N?G`/Gqhaׁi\lcI-`19x=$jZ8u 4/+ԀJGU$,:R5EQY.6\-oa"f՝'Low6'e񰝏.ަi8KB ZC 3;5 A*,.E MU 'EOIQ6TykiZy}b)ˉ-gEqTO \RЪ`˲%ztZHC!y_A(Y=ё,F>yl/'S33m=l'AU(UODfB^T̒CܷOP~xF%r4(b s,s娋4')-XZ]a#{Cz7e"AdP[ǐK1A(RsO5tp4s#/ l[RV~)NF!W$82Pd\O}kٽv j6kE]InGZ6H{c̙7x[o5iҤ?E+={aNZD"G)**{{ݿ={;vlڴiJ.v{(ʾ}RSSaڄ_lJKK+U͛8~~t_?fڵ+W|G q|Enk29sȽ-fi}.ϵ d"Cy~e5|jC]G j;qe1Nb`#xÚ(3W,29Y'(d$-wM!/_ᒼJ@E\ok). =_OFG4Q#{#T^lw~1w/alT2 ;k/wчV2qtNgOQ~CIPA}T];JY`Az. U4z<&L )yG qk5:{jzf?n}j-Q]|g/h"[| HOdO~g͎'0@ds8{GJ_:Xnv/_o\H̰Lr2mxyF}.8|%GMV74;eE)%HɫI{.yihu-uDtZFwmffOɊ(tx!c^QVnNypRom\AunKjN"]dfX'HA 5E-9R#!p¤LBN̈́ F_5(ˡ)ZVizf#3%VAi:^ONL8[8k-6D$zgL%R^O]{tt67jݧ^}ZZ@jjc p W$a'%^Y2*Jܲ#Qj*av j5a Ū!I%ʂԅY]GYt07~I$_{i*uѣ4ջAoϰbM!7]i0ycΝ'Mku_e?n1c[n{W]u՞={fΜ9a„5k<gx,:t袋.:7|yȑ kX744L<b֭[zΝ;sޟf3_5+?#IS*!5}e/p Xw 'u`#ܷҸ3TgY]twy)ԟ۶ c]<؎Cj{F:.˜Sw48OaXBZ+{WĸnnRny\z';wu!ɇ! z \KqXFSd&a ׵~ }=t5@j&to#XTplnf~f"jm{I|+s^De,QUQjt53I?sLqmwPRsx)Za& g)Ĥ #UlJnU0o軙sk魣fON(ME9o.LEԀQ?Ypl'[xK M,%0!6Ǫ8'*rsaM1p Ovy"dwXc]i~7pԸ)yy?W-exVQoڡ)&?ɦ /ZUJJj\¥Y=6efuxp|v*]1}!T4UcMeژbA}@,H $f3P>[eI) Q #zh;Wqv:ѩco%cEt05ml> KX^ie;Fj`a2j~|U0ښKܬQR=3:x7>3"dA2ģȰTϞ#Rb)CHap %sX"bNef~գˆ4:N/| zGq'A$H jOP3VDQngX|sη~{ƌYMMM4hܹsv{&E/A馛&O ǎ ,]433~j|3/p[oX,={9sԩSۺ tȿ!rx@RiB ekp΅B &&]g) /f5}Y=R\VZЕÑ ٞoOVFnf\MԐ9rL3!QK5Eb(4e Fk ti d|UCnu9kf7[Dȑ:'2gavOzS]Bٓ3k@NOzcq,zgDax.w3#+]w\S7d9M~>/~@F橲n0ǯ8"]'~~pi"5/V8*2dܳW_9{8CZhTg|UkH(DfAQ {APr0rkFڬ֬v`Jvd>ُB@VZ_&:i/ׇDL>@Ei]|}# 1~[Pg ԧ;IjR{ʇL&YKF8363mE=9{V?+I7`q?_5J>kd=0#䶡qц؄P?"%A𲬔7yLmNrQwq9ĽʧށV ("6<[9,KgpFN3]}0l[Y-Pv~i#ghq~W&N{JKKwٓO>١fkjj6l3UUU&M [l5kg\TRR"ŋcbb:{UV]okptx\CSNI|n;;;رcǎlii yw$IPE$d2YDDXZ~akPWiP6W m<~12dr.죭4- %IOuS{Wq-+anbF-܎֚R.6*8vyp-`IsccrZd TB|ˍ mW}5Q4WUxݷڤﬔ18"3s9q;JFJ5 XW[e%FNg3y*ɈV5%= :mioRg{{ҏD-?׍xuODBG93+>/>?c$v'VwbQpL__/]4DdȔ*j5Zm.Q 6 IDAT1#h࠱d`RəMicI3.suAQ:4ՠn؛:|2lѠs n}-Zf/^oSưd+\:˱T#+ $WqnCsDM}.d0F_Ž5F|X3#l$?PYLAt|.VVc] Kos'׻rlȁM\;G,<4* ٷräޡiC=-ٽQ*WݐYX EnM6D0M `KChxn?D<~vcM*_j| !Gr9 AS{샭+p fCR@4R>8V;Z)5?>2!~H32Fl&m<%:|5y/?>!%kT|pm.YaPY&=D.S~b#o[u2;-^R,A؞g/oTȑ ^F )je~w}[7o[[ffx nZXkS%ȼJPJ,/p|µ-]gBi 4M/lm|v|*1:VQ=h0-5_M2z@P2ZjvsJOVQUR pZ&/ⱈ[ɰ0{>c.FF (Tԡs#/L eYoؔgm(N2O;:B PKI&}G1h4Gaj*}*P6U\f0(T5[ImC8e0 #d斻(,/D=W/6IIvsw.l{Es 8\nx3Sُ,,ncD0%SV ܓA(HEZcpDjAfn8}Eaj4Cޅ>C3?|(`Ve`M.!?/q4EyRG_S경VvJ(\J9caunNxbq}Rlj/wxj^?Ly;F'M8xxoR`ҡRrwo 4U_k#=K:&f|VHUPZ{8*9H@m9Qwjbx*FcTN^!_&VvwfX1ST+S>FhVOHHA69~$F3F_)|g5#4 Jdס 9)/r*j枵|9%6DO>97lcE7.o/v2[n#!l 2w~i)NM%zD(y()neyDkI5J 5+ _+cz4c89̩Vj$RC-e.VRJ'P D^ Pz ѥ}O5|X>5 ӧOꫯ,X?| dee͜9_=t2eҁ0}ˡG9991?wZRy k׭[7mڴ?6lZ˖-[lY.]^~)St\{OVЖ吽[(9oP:p_$B'+.@A;!p5i$"˧xPhb+3r&+?Ūr "RG1,+G;$ GdYlNvHzH @qHxGv" iC('Ě̳^}(sh44`o&2jT06 5Jb3p|^nN$B%/}=tNU֏5" ?Ҩ<^k1>{k}-d:A*K(-A*1HNu v.dW zHod7hw- 6`n7v۷mքDżn絖m36J7߸?W YZn|ָ{N Sk$H6Qݵ o(/;G*U>ƣ9ܒ>,E@`ӹj2+;/`x7tzlE3kEEQ.êlʤo@D:i>SoDzّW[~P2|7eausH}&%DC;e%ԯ:vpwzzxdz:Q hH"22rw-](UdZZ] TRQ!\+.`F=^ɪ=䦹 gF\7}y{{Z@`K.ឧxwm-WUaff̵q) d9"cOT7mgh!^FQ"Zu]q{H/t=t !mϜWyet7K+ZRt,5G׵jK K@Y a]?D\j\+sϰXWV΢Z}>^r". 6,T\0%.<1ng׎ZҠ]w:H"&nt!@DW,c|ԡ]iQrf Qlt~G?Z-f]VL'=h#JZ$ A`t{a<5,ooߘA1u *E H OAѠa՛s{Cd &D2ٌqBOj/?P xR* uK{+mZRINHxXhX5a&LaלBLԗ{p :<\cVO|򼣥ť276!z&jmRYopQ?iLUqsl*r ]cE juaQy]،$Sf&=f"Zb D3'"] Ǧ# q;#Dؼy#<]s1---~kZZZZZZz\L\>!!!#G5"'ϗh4?<|?0lr?t:A]bŊ &hcӻ] wȺ|ӱu/X3QFʏ0f81"!0Wn: .2Z}o<DhqKjkXY{h1<XƓy~{RrDpG7JL #r%֖k-]~)xk'XSۼ{ ɽt)O 1"@`Ƈq?^T{[AfnK24Jn;={d_q9kT0@Yv[7ǽiom``ԆhW2Ҫӡdt<=Ϥ1)q91,sœkgC¯j*@Vuo1C޶j%^_xu7uڗڰ5 @+(Ooc!}y'O0HHχ6z`K/\B[|w2lOߑQ% ͔:mT6WW;V^ `$G ~{giؕHd #mP~cJxz{Dvk+~ɆLse?g}d a{SFvŭViq]LvΡ|j5[T^kk a^P,w44# }W5%;LFԂJg(6ciw8sȽh^w?Jn Sd~:PQێN˪ύ%AH^04vtV?K|@NA+R=+PP2e~ gV\Tn<Y@)>ߦNJ7Ji_@&`b8C0\*a%k{Wz10'(&]֘"(A fd(fտȚ I!ϕ~ZƋ.a]%e'WK~ ΐ|ÇOOOǎ[zuGȵX,3f/3ڿ{3gή]t:]BB?MMMnl$11VOϯ@ Rju^^n;vֶh"QW^ :ֽú7q9AJ_=OTS _$^+V&]_nQr1,!_5̍g?=k!it|T,D}5`h]ul/jk Q`T` Yv)1Q*Z`68x;͑y MW[ ߙ)t[[nT5yaϹ6.Sۺ@ /)IY4al9 5*[ƫhq  6I}YR@ڼ7#QA:{hKD D+ --2Ÿ9 ABlr(G^~'ƾL RO#%51_dG tpiscޝ/]Jl>h<;B#|X%  th.XuxJʏ; 34d([eTl F3&- #)ecm\WnB6# Q\D35  ,+KP@.(& IDAT$r@Q$~$(“9dN[w߿nΜ9´K.9rdGn[_LJ޸q !!!gΜ1:$I҆ >11fџX4 ZNdDm۶?~|ӦM 9g<ϱg Eyi|֗ {HPKI`v<~Fx;%^Bp-+<+N/ѤVfwUkKj$o?t%43+ߗ[zar :J%2hod}~Q] Oe3;{"ظ[WgqȢT ݦZ{xX gDv |Ό܃T8%~;gDPJ#Z}D! ͧ }wcnәvd~1>[<%C>1t0*bcN!9\\]p.F:Kg:ak <_,N1lښ{ J=cw?cA ZFoVsk L BTc?ޖ5zy>_dc 32#M\tż6d3{*[gIb_~}2 a4LN tb C{B D|c1?OQ2 $䈣r6<}H$dP2$›?Բ Q_Dk ] Dm v׺3 v'4H+4{c2PawQ[a2(K*#AX"xL }2c1ַw0c)o].[.E~Hݺy ZNeQp8<gZ Q[1چ䔴/7!Ww\v]ZCIƤD+k6xs>]AEF6PT^T&G]}Vnd_x0RMeǟ?SփF^4{ ~9dD% H0̨P'S7?fM Qڭ~;,aϻ% 7EpSIdK cLK+y;VǏ.HNkiMҹ8/IDtFFʎMSNر;sFcgώ=A.].K933sɒ%}z}mmmjjX;uJT*O:zuuuoւ  ϯQdw#ȯZF8s[+R^ 6(FNTFI͆E-´>nnzQU74oJUnLՅ3qO(6VfSmf&Yks(zR̒3 `l)~7p5[w; oI8ldzYPpk62L J/;oI|  TP`4$vo$Ǯt<|[}[ThveZ'_y=|4|lLzW\%83Br[!_=>-'^}UEJC`Y5wo9w$'Y/|IǬOo3-ݧ.i=I隞S9܍^SC!pFJ [:h9Exk]mIfZ>bM =ّ+2="Ò"6܃7u4VXdF{-x5<IB-9?aUw8 \wrc؄Z1V c~w6zA$Pi@ADpaWR"\-#rT YxH5c02 O\Jj^+%IIe'IfPYeˉT1p$#t;(d={M8?[o;;;pUU___[f͍7JF^'gxȢ( 2wy뭷̙-.iƋ/Fˉ Zug瓗ɫe<Βԁ}C4-%l."T&睑kH"qnlW#CQ(e5*lG#^j5[e)9M>p޻荫??1Y6RLs%6.|ΗWxuf m_e(d*ho"$-%`&DMLR^ UN ?.#dR)ΥGqq&f7mWwXDk+e&DΞd΍w yŒp.#@[ZOCzPOWo5B뛙JzC{ػ~)\ єZ9oT+z^(8W. ּ{I$gy1A,ްTiCۊݏ]S$3c#$DMt&]:7TBr#C- ִ8M8Y?Wcm,op1YuRaFvQąEI@kUl͇&K$q#Y%\Q]JAp#`4 47\h$ų_u|a״ v4Ԅ)UׯW./'L<,"cͧD Fv`{#0$L]wÚ`>Lfykd>fIZru4x(JCIȮ>"ZfP9vU?#+p2/="X^y2Z oMCUpUIie~U`7~r=RzW_3M)}Cm>oGK Esgp6o Ҳ_\yQ DfI&<"*b5|`. qNh%5b칷'DzjIUs:9j97F1?WF|)&<" Y_>5VzbTSߎHl~P;B އ] %a+bl\ Dfm"!/V+h&1iLwg4 ǫ^4*$& \Q|;!&eTZbƱ|%'F17+aFՔGj(tt0bOw;Ǐ~Ͻwh"DCj(T <}^ A-cmj-i~j2J9ЯDy晒y;,@LTyԄNj~~ݪ峇;oj\5+ä ˏAa<<2(âdUCg.?aHhPusSVO4OA־2=oy2ۙ 8>fڡ}TX!LbI|SeB X0̸T服\V-@$}u~\`711<71$R_uXa fD0L 6eI:r rJõLNT,g[zYlZ%*|ue=eZܾI7Mp$I:}1cZZZ|>_vvbۓcbb1ݻʕ+~|^P(~~{cƌ-bdhGt+lHU@h#SMezj'! ? ;x %6 M6/443 #5ʸwxpOheI}/SPde 5O8tѽb\=8vYOu{g[bT nW LG}K7-߆7 !ÓH(o.X=7>YS؁)ISlm A։.iN X8g /򊋫R7컶U([(|JǺ@)[G+.5ѕo-Wݟc [f<z RTu5./_ bSm;B@*zD>l6'/ףS(HfA.JZmdՁ md"szf.5cKS>^/}rexNA`ۇU/1TDב]r6j_+;^^M^뭥;NU ߢw',w^nndTdB0*99m+kQs_eiM]1=rq8 #BquW%,pcX:^I5sX65=0J:BJ۸elo5[4FnWqL"14g?zatd]uDBr+cz)K&)W과0 C4)H5pycsV6]۴S72M1㚵M5.HӌGik;˱3Ѩ%ur˾;nZ#tzATG+5e$Fc6^)&?\3NKYUϢKܡ=cMWD1iaC3faK;3ILr_H mh윛DMg3M>ų7b3#){/Χ/:+K~tMyO#mFā |a;ȹCFKh46noW4dDdi$|/DJr=-^qu Z7' W\h:_]ŹhEmWǽ'^:_T!oHnaxVfZ"qEuJWEҌiiza?QB -!'3jou}6aD<~̂M&^H4$vcpNǸ8D37 `.0Qi.u=(34yXyYw_-䧒`H$G➸eH{⋍== cGč.|Ĥ$ZܨzTG!.Goá6u9_-_3&^^Lg4!E+,YF@]ue~RydCx%Z]{ƛ\](̆6*<- #syzg@b^xǞ'+>r )aۼ.@{Znm&1U.d \{8rs>ٱeRɯ譿S x*l#:H8d \6@\yV-H2T%0c}vEcYqOs\J6FoQ`Q1 ?쌳qp8p2?eS˘t7ٻۍP^a߸)YjfGI._K/\}yI祏Rs`Di(6r"-oUnBQشysE2;yle951u\ׇgS);gȑ.+hZgZ.GhŊӧOkŇjk֬y'g̘q_~e޽K,3f_}eeeQykk)((8ˮ#[Z:V6:,5Y0@fw7S/K2Idʥ6mϳ^Qh]84$q7b/(sA0#SPQ#TxθuLyljiz_2ap#TD IDATI|Xʄ4!+9fl7a\"VMs(sq8)/0idW>ՙr˵;|Uwj%`U+sCzeᤢqs*z_D}x "a-KE]m:GW0ԅ6P 0Ca)Zf%2j+& [4 R#~Y3?9EjO83(WnG+[i 1-_Ԉʙ%AQ UtjcTwp&rE>LH0Jrg )sv7KՊۦ*u eƔD:P F M"[Jv&flBQMKogi|W4BtZ>@S QYqS߁5D_Qmdc vrE]8Hjٙ'<}{0~%*a!=g;?(vlZ;ճ a"e"DPWL~#7  *"х)YRysF{d8{") NW*_7Aպ6c3C@ju0}6s<Ĥ#ROG+zABZ,j\[9<)1)^+3'Ѕ3exygE@!At )"q:>|}>}5_c=Ys W5P Af =ַp;h9ϡ3}ž7,F2s7/oVq nAE*akc |"oMR SՕ7l} Fͬ$d0|®lP̞W>yZs0j@d_̰gswPl&ԣ;v=|~1<ۡ$qǩ P1Wmuk.HT.x[S3Ek|RRSSv" bIA#(!hPHӦK*I6d{}}]?L/ zͰ<:rLٖ$iL4 x95Uo~ 4Qr;}*P#5 kv}kt^i~il$+xIiiʤ 5`U^0l:I}N :꠳?!EK}oʴ?dm4`/AVTry^{GYצ]n%94geZ,]U?fPˆDPΞ[E3Z[t'۴׏VDU ubLabLȡ"˞zfݖ2u=aw A &x/y]Kgd]?ck^2a.Fjg{tcn!q'f?S/ $0xYlqk%ʙW6aq65{.2M13u3K qM 5y/.83كX4 y=;#p^<6=h̴ _- ۑd}Itpd<S.)hٸҬH6sƍyyyOE?0bĈ 8pܹqaaaEEڵkjA~'x:PO^Rg :*0QG=LX&$#52&40,`3X`D㢡8Y"@L1 膠y-;yE'^I نyY8/2w_2(?V{p#-C;fx.Qot`i*wRDzUke-j k3LFE7Xzz,o[ y-z@uEMRw K{98-<~={6qdz7Ym{1k.X@N8~93[*jD$ҡcĠ#!0=Kbi皔^785^Zq}k zyQrlO4 b3xqϔb+k=z/>Rg,!g#;ڶ#OLf fweM(qhvsᮗn`HU2/`@KU?G$B9\Yiẗ́!$"QY Æo߰%~%f7&qʋGS`Md\23Ȅi7μV6CNM5Wz6Նǥ9 ͑-棷;=ӿXvb^A|lOẂt@Gi҄ȟmɱ_-VESY#9I1nAkO]4z<^`;֌^I6?vxbJhD 7WlfnHe=p #R~LRb܎\&\ɨSP?ƟP7m^+zFPRy$Kv" yy.s]%wɩYwA%3-Kuc|⍧g%WR2y.Ëv%C#:஀Gyf p3 OZѪ:cANq.9C <|VB"ItARDĻGF5{1Gql+OpoFtW'nIQT=qe| q n`lNt?-6_&ON&„ {w4bsM1% }c^*TJ iƤւEy?SéјA1 =%BZJ '"RK#Q}WO D\]eg OMo1_⁹$ohdJfl5EuSAJ;faN>Bi2(8:k2o㱥5\F]qK֎x]hRzZxIVƶ/-aԣ-4֕Gp58*;GrVs]jς"= 6G I-Rt E"Ph>sb  UcdfDV8V2 8q)a+Lf,ۨ SU ` %If71N׍ܖNy}s}crS磿=)@/ZJ[qxwc +;,32oKp= CK_AQ{Ka&N|c&n88~`LDg2Ećr3Cֿ.&5#  W;(*a!ՎĜL^6k Z.^3. $'bIT Ɋ CٿxDKi2s+q8%Kx | w`ryN< [߯fҧxιar&'[);Σ*BGŸ;bu݆vT nzZ2P`*R 䘹Oֽs:pfL*IV=iH_I7žr:!k7yӸ3?4l:)Tn2Z8vmbW3ǜhes iɿ}z_9u$ DTwݸޚ s[f(69VUo3S׉Nވ׽Q8=Bk9%J֓MFY9C۩?|(C?f<Æ ;xॗ^w6NRm=¡[+'sNtXG9Sw W,P== 'j Lĉ#gn3ͱ9&B9LI‚Wң>J~uQeaV:y?k>'39.m+cb;O _*bJV,NG9;rZWQe} 2RDg uG8b Cʊe2램d4o]'Q +u;Ç:7pǼ t q#p*Ċv/Xw̺ E!ovR(g`J; FE N?~ 786?'4$UM*w Sp7~sOGW0$@oɏz6vTqeŬ.=HoAVUtnz")N$zHANƠWN kji @/aƕǞm}:+ãP_ލqW*4Bs2["ΤC2Ѡt07r&LJ:~sCymSoW\=A*FZdb'vSdꡀb]?Ǐ"0)-~v}O-DDRt,}̤3ë%XsN;n{oz! T0AछJW[U,ԫj8,NF{:^ r-F >a,Ç饗c[WWdr:6mV=~kP,͌G!+e&\ z(8Ry8/ġ;?9& cOFZclǧ H H<oHlB+%Wg9'|T/gTɟ[ft{˹ :)L]bZn[l^9* (wBI2C'bTףwpe9"sjXBus8!̆&wNv !~ɦO-VoUH'tGjX8ATYfuMTKSáO˪ط'?8ODBOnW_U$/Oi:5!BHȉbFcKr0 YDVZ-3]O}'%N.2Z ]qD,s }D`@~O@OBR v-j+YCPA#_蝩0ɜp!Iؽ=[78z{n0(i:jLި 4w:W$5s# j@+JZ{]>vP¹ fQ(%XP9խkCE '\⸋ F9d ˍA.p:ճG0Ӊ˵'"% <ЈO MܙWmLspS -MF>bRx'ߝt &KVx>_S>xQ%D@f~.;0/;$o0)]VS!>` zR{+x ] uzFO%@}cSG;@agt5sb K${>CP0444ȲxUVu]ҥK{CJxxr+tW%AAYhǯpi BZ2Ocb젬Hh`%Djr,k3;[@oKo1 tOn 5 9$Zъ hw Zxx3%/mtk91M7py!}<\nmYu(TF]צsy:&e#ȌH"^:.`]]Dݫgf㰋-hUZ Ut_dxw[0EQAQʲ<>Hc5>H[[6TJ- W$ۈR\;3c!Nx=&h9ax\T9YيumLKB-e^BxU" b[$MhABueR3~ܞ²Vw1=dB9/x XH  +M.~8 **8(' 4wՔȺmpbq4Q3|/zq ?CY6OFetŶ2U0騯 Ff*4pXn:׶#u$i d@ M#UNQ$j_Hj_ f`Fk N>DrWv,Ac($AFH4ĀڎMA"J.QQVB#VCUN$+Ds=Zd .*B+LZ IDATAT|乇ooֲe֬Yc8ɪXԍFT-`2 ݤ&0/_Opyw7vܲG&`1Q^RE3|d >&`700hjDQLAj km=&0/'0B- 3^6KQZEh ~-Ԟ`aR;luqAH%Nt AlZCD,[ /^)MeJib55T{΄WHHt?WRǮ!7[kyͣl 2AI Ϣt~پ"r֢A#Ӓb 2gwt?F#gx1<2:8ax<`S00znec'"$07F'EB~cdICRR4lOԪoxC2UCktmm"FGg^?<gs DeBjG'P5(|ߠK:DppJ x;sv :H %BC_ b%1/:ӛMfO+@";Zzu$}kg'J]@˾kkuxMY8H#d #%݇;A@+ *JtlD*ǹD; wzaΔB ̛Ad!y0$CۭF }HC@BS$n2 ~f+{ݛ;'*LcA&Nu􉇬d9yOܘ)SBxs1}^:3pj6Klwe^бd%酗sY¥vIeN#Kcp+E83 S'm{|v6- ٷ-e7?$skf )iʀ]a[|Bm{8]`hmB%U9<}?{) V-Jfk; D1u&փ'lJ2f̶.F$ )T1#tTYsitw?ɪv2a||.zPɀkXrWhU'%^q(Ոj3N/9h$&#a=,%VfNB`f_EqB.hIHPlvOBUj@wOI}c K U=!%@c~/AG%f\vE%n8+El~`OQr%&z:x8/brFMa8?mo "tcN{{_:S%FSu{ZBOdZO&1:x.)у~nIg2fh"  %89WIѡb,(9x퍻8R2\{*:=>(Gs(۹hр w"27gŔ $ h%{Ww;<.?G^ ^8t+FNMЉFVqMycT M;Y+Zqex'%F5pj%ztւDH3Fsg`(3pɉgN2F&gH GRnԫbQ]fZ,N'xMQuмMSTCii  @$:9{ij  DdNaY%KGt3x$=CGqڿ7>ptFY:OLa!Fr+MH`!XRTTܽj[Ñ>#_[/fuvH : Z-`] 6R6[IQmeϼHN7|*X)W tij<);}`AG@׭`j2ƀA׍5ArZNؘD7e$ LwC'}jfqg2J|D(ȯ v&(]+  ntTv !g03xt HOaB~<OCcfûcWsvZ?A״v2ÖdzHD0XF .A# .T XL|ɜcWhC{G>ϙ?X͂ŏXNCb0`2?u\92;.qw!D !EZ(Nmx-@@ F=kYq#3}kٙs܏QurrՄ@Ob'm>rJ~+l,e <@,q =FCzRJ9˝v("W<@OGA䅑#Q*q5AatHq'u\5+K^NK[jQl̾s=,C2b{ATn7ۦLne5P9ŒJ*;Zi&~&.ovڔL:#E&HIg$h2qQ&A1Y<ج;$ab|Rgn %LLC)t'v&0!_T&i|N)#|K{rb  8 0 NoRrb1-楡=ۈ ց5 =`l^ ?M l&TB;&.V&D,{d`QШp Pd0așFH i: PX\0NO'sŇMi:|A Q"9N @tTB]8  ٽ}3u)W &M\ekH)U~"|w4wvN˘A0Lc %Ԕڵ,x[Uk-bd_aFZvagB,:f3ҹE/Eya4dLÞUW QyZsP0K016\Q"'gL{v6!g<}|%hFNÕp 0с_mϺN [FE!$?dHߚB$U,^|*jh۽T[1!Ї # l3^A![҈{=z:cȊ7x^''Һg Yobx?CHYZNm ɓv7wBP1b##qGkop@( 9a:N$r"dXTu<{3妏,saoIyM&$Q9Stۨం"Д. jh2 F1.u6DÇH(iwg’Edʌ ){:zt Wm-{OWh;d|Wzd0>_DY9gNc5nY ׄ)f"2E<Ag +D~SgU(h JK D\&wbwK bD4!u(5d[fƱ՜5btћwӀI$0Ƽ~4؍8k(,p0Ѥ~~+4 dž7g1qpA.հگW{`}kExlp)NtL 4C{Ⓨy] قu{)) $ |2(n=[nS)U1K'}{|E]Lp<Eh|Px'fPu~GnG#-# LTPG95vI T tk r 58Ag_ P!³6߿8qa1`]8.I%UKݼݒ $)%:h[cGozO ㇔1_uCI.i^-jn1SI/H!K: 8JC''uTMWx6<3>Ii|Ÿ0M47s줘Uf8p I6ƙH.oLFپa3=} xf%zcP<ݝ$5#L%_c=F,t|r4Br775sym?F(z A _")QkX077$ IcDIȁf!Ƙ\ }Z*m( YGuSI$.?$1HE%%M/o`(+:{Zb$cc)w~όF_/|͎U3r\?YN?CQ5.hzouX:;Vq Co>3)-lXQU~jޅV nJGr) %twֶs<,0S[Am-!nm`.h>*I?ǞҵoNWoٖ'qM+ xENP|jA/!?ns'Sx̌1&zҽFK,\dbwh,r^VR1u߅D|Ġ;Ndɩ9dQ$5i#03lfcf'.E96G)>z3`z`{-480Jc* Q8gw_=̣ru> _s섾+d 1IOV}8Ks1QXglN:y;1ip("VGY,ٕ) sb7Jw#3W$c0b2a1QbH0Wn~D//'P.6U5 )׏HX԰ȳL&~/$g0P֢. [Wk""MndGc)s 8!" H"_>idI蟷JUF”E2΁uX,D5~fXݒ-gިI]["5JLaY 6)ЭҠЪ1ˊGJDSO_T91@(zK{XՆGGw9c Io[P.A8a;ƳE4+1 Rɩ$n}amG8j UDC~ <1!*J$Fv4!HX,bHO 8;`0 $qR^_fpF! CHRbؠb1r"Qe\)r-4AA7|ȯos+Hٮm* WgzIs^>^Ofo#S6װ'ƒVyGC ^YVλT?81zO:q/d{#xҮP>3~hSxaCsB4H4L2vMsDtd0QQ?YgC";k"BrNt@}ABᘮl0ws/)ATJ K~|т)vtי|iM&Cf Q nB*NQB@#4;8L.`(oְ-3.k`o),K@6`an$4c$sfR bla8ޟWA~fVEgj#+B 1ډ]fwt9$9%cЊl@Ge#1ϗ_,4'Xw>E(FFÆIF rRDeM IDATA:S A> |Eġ(J8t8Й+E9f &LKz9V MXVn23;o8ɸo~xVJ ;!F .2e f϶nj"3psƯO,a(#+Әc3Jr5PE+N2k8lm<30CAf@hԗ\ŸOزi#[CI_çZ?I84[)ETp<oDAu¬>DCєy| Iz29?|aiRGg1#1 6v>96}aŪ&e5h&j .i bWOK01L3[irJ|'KG0<~GO,9|H.7\}}o|c{<N7)v%<tqd-I$ bC^ pt9Q7>6ݕѢh^9i߰VOP1ThNd33LT. B f2bT2Si$3QK[77FY@(. > !DTn::2tCj- Qd?@G֜miwki,ؾojݨH[Y]#B _QĖ̞X!\TAe|?SǞ\zə'f`/r  I2P a"T䋐D  !YUt b8e 2J|O\A-|GҗdBVL| K G.Tdgޤ0X4QD,ZW|]>m-ؗЩ4D17is?yoڈ5S@,vi %ϚzLI&x4w7rk-"wNfX)5d~|;ie2n&Aq~7x)sM= dM8Nur B :h5X)ғCL 4YF9Ւ(g0glEigL!60 .LvzZGgrmA5.*L{J %F0 $4=xD錹+SPHFO^' lmgkpkHr<195|[ַ ` 1vj|Ӻ#`E䔌+Z3F(tQ`/L(VHjD Dt]UT5,<~o63 StU4:D5IZ5 m=ǜЃ9uvrs]ő? e)ƹ)4RdB'*lNv:o>eyNDMK ׹x&JIyPaBS0ٶ~P`Ч8yHz7+)4#xS'x9)5 ;zy&MO^^"\Y=QlGfG?nVh1f@@Q艒/CȖ͐6X#r!DbSm#aR$@DahĔ>nd|]W鳘>- {Yx7LɌCv f];bM=?=SvԊ 7] Mq!^_'=R:hqZwccGD ?b)|A_w68ӵ\r.3g"ERnpI*)⳩o 9v>BATa ^ "@}'?隣dXEtI(AKu sSdOk0\2|3Αvn?Z#xLT1aИ`e".hAt_vU|dQcQV\fРbH-uoziퟟt5gū$E<ߤYɓY˟(4po~_Kl%T(λ>6G9ǍEt쒈 HDdRXr]  AoJ@@W\efw5^$ ӅέjXaGQN ++[yȿ˗ <2?Ý8Md峦wN!_u8W`3xBkdq6gUsI $^iUA!z!GER1o^ ۻ3N'h޺ e`b plm< Hc HVZvLM4" l6TBqڭZ@USC{Y>M#mř$HdlF [b4F|^_(r69ܸ(rߛ-Ɲ_ʹnu˷GFq癴uZ;6PfdAяԓ4GеlC?MN=3VcO/EV{`-voj dTs׽gH"k9[(">5FcQފb IV&[2ghNڲ=[>@Ggo] 3&<HSHxe_}m3fUbn{+TI*ɫv75'2mLf&ثSeew EEy`5cpUҴX(q4EN,!{:#%V. I#W?ťk{ó+o=u3?ea9& L$G&tOA~|>$ _GfD&e˷aX<& )KHC\E9˼R2B;(x?}Q'1-CJ8}f,#m[j[8lc ϶qLjzlZbIŐj]TK&+d9 Soa 4**;et `R FNL?4r$1r-`rS ҰEX(W6l!ߎ2ﺖ^P<*cT HEhQI|>X4> @ʄ Ci. L9wᄌPxo~PuVkƗ]1;Z:TpŃ ebj mJo 4P6E{J/޺OuDr1|uUD~l4)CvXG*{9|[!ނʷmSB_'yDDBSgOLXף/UaTly&l~$1%G\c" `iT5ԭsw++$ni^^!XsJA8?;hco{vL~ _|NXD4̦9ΣDt\FQf~0JW*KYkBՀF(LxL\}D08j7FcoTIu$n(CZٸ)0V<= P:^&+UbgJDڽ]X>&AOu?!MAUj:ecqd]!߼D^zeKH/ i`wzuJ;DP10( , Zҕ<|peYY,ZG(# dTz)v#W-`d&à)T?ji ފ$ES'V42m3¢*NJ+{{|ZBn6~5RigG8fW{y(x+)52JR 3:|?{:f>ɋNSɩ!Yvh:s]㊥9W.~I =ȷoie0LWry_%C$boiL1Iach80<̖qbrtn:`iMPnBS=?[Ra/ :hfj iDT"uX{1 4ĈLtn>mN-⹩[RQp{DkfGշS#@CkJ8 r0XyM!Hkw[`Xƻ=<]IL]QiZ(_UpYCaFIv5˰rh sj_G',.@7\R*!_.)l[&\199sF\x!HqRƥ* ĺwIs_cF[rGsXE3Y6 XJnlN;m1Npesf]^O Ɗ -7xEX͘_`MbƯV(cV4x.t%3?:qËpR~|L='k؎?"` <P1+2+G. N_+ݭXGFhEeC}<*#&Eg=DS2T2^K$Ufn>$| 4tAC=Q4/ŵOIƴ"7??8ypOwoLy\Gk0J\E'7hKdMUN\+4hHO#sعEK*v/XvVK]EUQ$.yGTǓCre]/"S̲R 0\ Xc W'2D*YrgMڶj՗σ<ū- %{~WJ"PбHkTNjiVʍ\ݦYS^[ty~v.|U^򡧅^QGM/#P P(! D\fA06Ԅ Pi#G1 WWcz]elFƋ f3WvnF`H]heh7X aoE Dz[f-ә"]"[eH_  T.8~#zbeEf# f!;1|fJp#`E<ɟv6LehJ[=xsGb)-AB*#;G)sU$d^i1fn7'?daH` EI$.3#g`-WCHܙ^ʵ} 65 nƘ/gݱ zEr8EEu{})"N6n,⛑B;Vy JlT}^~Dqv&iT9NQ/iӗ N?y>z>eo8×!q@mh=Q]A'߄/QnMa3A8|.h TJ[ *q|’]ssj)f-9ۜdt?a22ӔrKgAQn1c&m||iW0$an| [Ʒa$pzwEŅ̹d( r!0 )&䱭KP12t#sMD`AaBݍQ;6$FШYPSWq|R*mN=HȀ@EeSڤ.97gLqxu&eFO (oq9qg]hLf1hTu2|"(:5pjuML:nUŤaֱ 8䏚4% |2WgRlb.&\]9{zNŧ5o.#Wqը}ع3[r8NALz.狟WiflnʣA_]@enP:KCϒ%pmL|6K [,ܳSb*H9_\_x7*BؑytJUk'*2d Jf7ҷ )1q08!-38I%t+Je5! #+yk:-;O(OBC `me> fΦ!#i?VgJe"92<%OQ8  GGXϦX7i#`8wL41&[%v#0a"$ 22NLE>U@Y|MeIѬJ1s\VY zB9YnnzSabZЂ:-ODTQ㨖z,]2nu8 X9dWμb9uW뙽Bx m)5ùOӛw;(o~wDYGF |4T˒V>)APEՙdrJfLRH+s5rAJF/DMaR@<<׋OYlob},C̦ J+ZrɄdqWG-@|6.Cut'02=7^i1|Y #29d0SPƹi^],kA\#FOGp[pqv.dxf#Y!~Nu:`yVRA1K6Ȉ3ۢt(r=qH1sY}hĖw:ɻ9 ;FPvL~zg\P*s{MX IfPu-iYE""\\3WQpYȳj|QGS(cO;,Rq=VuaTΝJuciҽƺ'S_omI!*v<l NT!#F3[P}>[ IDATq4(!3C&xwtYKR0t;m8%r#Glap*N.o`'̩v .FYM8[70p""8J( sN,-޹,h P@c> ̺=\ݵUnY7qVsf y2|ib,.p@56!8eA >fc0v֬nԼi@TF>|m- ?~hf#-fV0l^Z(x-IZ`;p‚EPh&DŽ#eKX%r\b9Aj eNj5FDRIE#N^+lzI xt!zģíքcEֆFsݚs-q8H*C{l]_" ]qF]b DhO[k#N[HUjrXY/yd F hX c3[8/(pqwE>xE1=[aV7c׌17rpp B1XY876b߳y+ʹ3m"#h=%@*uzvٛO借]x>rdӚ:3͈~ ?yS[3ͥF?]>?UvX'.nyQyĕ]Ie,G|ey{nyyZŲ桶C>]$c߇x7͊XC `X|o:^~K0csr8Cݜ1a6J&Oö֡Aw$!asr@4]XsL义uIa[Meҡ"3W>) OgEb\4;(24Im+_ }E389h"$i{ʻsѨK{`l0`0{B'! JHЛi Ľ&7}4}N13}߻{xO93<7~ʸc-`5w_=w1l"2&xw$¹!d rkT75t`oMFNIA q%lsOf{: Hsc y3ĐK]:-2֫'I&s7ٰ!r \:ջ} ]G9ēh4jM9 }I*  Q@. 2`S)&SJ4$^UVMKKƦsnȇ[bS>FY o7זaIUSK.:PRhfwScgB25eh+Eް35ǒiA1QgD}|!+v7@'CC{ Or~hQLF{I*PnvUǓYP.6L#g!]Qt#zteqʨvNv唤HT}}kdX4/kK`L m4F9:iƞ>^BP!mV jL ӑuA CAA"kt0!,5j#W hڰL!E8לy>`G{ oɈ'veЕ"'9ܰ]=n(b}oZԌLIV+c9 :5d vU]T=%>}9 2Ս `.o> Hm>+x Y0]5Ƴhƙc+z;9,v˕W?eMT=2Q7݊e9cx|*<O F)vP9ޱ9<^*W,+x/|,sYdө<6؃nqp/^Ε Sά>z=f ~%ܻ~Sͼm}Cgx`{)$m>L,Fmbk|AW1F,SecmV0VDR ݙ5\XZ*3L'AI X4(%8vJu@ga]R0[Jhn8BWU۱cvn&"SP[=o1b 樳crܞƀL;W0bkZ0.Uf}4I?qpN$Q's-m7ň"$E9iIJѳ9+=I|!?:S'r}w"<9̨J'63>18L(Em`̔r\0t:c4 'E(8c=Yg +:Ihmܜ;|{:j%"Tf!<&@>wm$1Yǂ {f7 oEbIrm@N0,2& Tٳ'GCa3H@L`AȢr,A#ZR1F Di ;~G_xIiBͺVfW2O MF Y }/;BrNggi-Q̪,8v2B}{r3acsVI+#ةf}0Jj2zk+;]y|2ȜNu"זtةv;vM+;&YFǓV(  '|dzH7> 6;Jo'Ǹ9>ABT5w j (G?:ӱm-Y3Oڹi$ô%XPTbSFifG1G8zCɤ9$4qxcY{SA;l25?3оqEf`-Q.&gYdnGΛ eڈU`+}Z)MD{=`Fj3,(A10/\7CV S䲅ZAP,P1b:9fHHC0}#7~M.OmUK0ڒK# xtdK"HxelN D6l n۶HI1K!͡gFfH1n!rv$<-[ǜJ1ҙ>kf̐H/ ̉@2CR=A"C2CDaEp)tN6=O,-3L:xtIl2^;DŽDY>Se҄W"f@kb7q=\3nmQP[vTmĜO/=I6ur{# gB86\4m752-R]|r>NiٟR[:LuPaFK3<`xu ݰh:i  [ Y1tRɀ3ٷGewTWZ)ɓPWw3ŃMdf1|D7E2η=18vl%:T(#.3K,MY\7_nRVq0c1|EiOχw@d7[HJxȭN痕D/@N.?*/nQJ $j$V"\DfxE`kG2ю`G=uӁ{,e]_5?-`Z5i4EDbc"$ϮKǍҳOxÿb1CẦ^$XXp,W}Ɩ%i2:Kzf&u0mwTq 4;}:x,̹O^/v5D NG2 A)}w|G\K$5Q є*"k+ [ģx^,S# 3abs_Ŏo.j}` Թ9b|>{rw>ƣf31gfш|nj ۶.5Ě|.IԂdސ+ퟒ}2)G`4)rp H%QG,\yҺLyW> Uyjr0v>25 R  r? ~nW?7am-цA:D _w8`6|Qs6ImRz(FP"6 DKd"V_RM FA@ 2aOȒ_>E<'3워*6lͲexۻ9@~ZԇյVz5zm~R˅5DYƉES_`jYb(//Ƶ~ hZ {e jh~me}(0vsN1/tq8+X:|l5)b{16n9ĉ^wnic{m}FTK?،G z9U-c=)_G̗u@Mǖ25GC[lkSƄQ`s^+"@^=+7M fR{Li"}*+:7`0K t┰ DNKCM(WA=ykv!uTV),"ܬ`Wj L׃Q؋W"4ZWpi wP%c(c ;"\5Tx@hV˦Vls4A+9=QgcC6wbpJ-gW(VcB2w.Dbwt~yVjdԹ2G26)Ubtqj'j81.njr?4s0Hvi s9AnA`"3}`Pm(,bdRh !a8fB4d 34u_Vi(n+%xؿJЇ4K=u,C]%;1n46[y7O9Ώaя 5 H0ꊦ,"ZH bQ`xJ2NN v?XP=S*f HΈ<ҙNͨFgR`76i>-!eo:##D99FpDdF7Y6 DT:0uw`s=<1w'R.ȱYqDq.^5Fg8\w[Z󹱖c<<'wVlmSsL-0RdƖ8t ^EIA ;HY61!pLMiv9 \9_VR:/w~/?-筣X h t~5Ҳ>dD057TЈgg}a孂.YCjf)\61` T7,ogaФAF>̭8VujqͰ˄J~~u4x Mc&~ڱM*4@kB8ʅc1P^eE'KWD[CuQtz{ N7E~^k^.W jbozb:苑1ãi @!Y-c+viA!)YYv,_0ݣ%ݬX3LjCB?#Y'z>t_ϝS9bC֗7 9Kz q}]n˒3OK% 7|#{ޢ,sZ=swTKuyENӔϯE-LY"F=v[itp .䎣XR$`BSe;CÑ }dGj#2U^b>)O5 *Քc[n/n!#!X/61B0I! Z7Ҽj{S5O.$;\9??ctWA`+L]MJj5 !MMkcl $vH'@EMo pUQq (p+6pVMn9R"C"4HIG!Br! (ngHa} zHlh(/4*.Mǃ}194GPN@ IDAT$1BM|^A{XTU8k%WGg-n<%UVY>͵eLq%NE03@Uǖvى/:`ѥyKCC[n|,xeunkۉgr Gr!&o:.Bvd4Dd@vgf2$ B2RɚQP<ۯ1w\(Sa=ލ]qnqvJ R,n?$b*VuQm:cI9/)33ɏ4nCmQrt0ƛMx8e&XR]~7(Hu<ڣbL+2Vi2*S:D{]|EM uYw{Yv?L W{oga1ypϭ~dD5 K&.@~peL>xz8X$~FZ a\;osbǕ#BݶO?z:} 3{873o=ݡ3j4sWd zU9yQۂB\:Rģ \"G8Nop>ž^||mOM8 qh7GC4xA|qkԌΏZ_~kդ/݌ݑT'2ƀR &wlҕRdϦآ繡7iI/Z/*)%>V2 }l0M4o&;Yxx+ f ؄Mkǝ7.aHY˾ ,O7Մvg]2GUq縉l2 *rc?Q?;2**zg;k6Ɯa N]1QTb}44#y `R0x-,%&Ӧa$@dܯ`Q : 9ï82kđz8:8DO*yR(16ha_+"i՗Pʼ~ 8g3|3ws} lˀOaU%:yM-0BzQKqZnD 3 hp mۖ+?Кd r:/$κ?[^4eDcGוSZwfM銂S9IG8& @T ݻ?؁3-U|Յ+^4dU8aZ2r){HgoekI>@a|eڔՔ1_}-yk=Ofd@OŐTQcyhQ`q\{'_~D/cw89|5}?] ɵ+Ƣ"8rw?j-auO̭{ܺpIӘZ*):iC#JG^$#]sE~;gV!kyQxɴXg@w W뻭%$R:baXW#)0s!LdP0"3Fg] O&eFȝDC?sz328DL,ѩMbM N0(fq)g"HΪ$D7[̓4Sip""2{øTztiSZQJG+g,u''c&&H՘) k#H[[ۘ1cD?L5˲|W9sfAn  S(uG61̒XDb,[h9$8{ mC ]$zo*QcѴP ד~=?)# Gz &v1&d`wPJ[bmh4v[ETZ0 E Ǭ fx $G0RWU:  I9ġ3lrSI{Hte.X|e%t7'GϻF?|ю.DgT_Ѻ5ͱ.M4>,fCYv}کe7w;ᅡn& C~apX)yaf : *SY߅B zC|Sm/Ie'!䃼 ')ce5H#\; [LX-dq!b,y"qLiG\LNjf-T#h 7fBv2<'~Ela`_y啇zr'/[pʕ+z;c_=yPn*(l;+bnͽL|W*Id+[ dct*r݄ՂEds=݁B(#k'·lWKgƕV14@; iL/FB_Tx&sK5ŧ Hr~gctWfS:@KtR :vSv[A^6..>0a??Hxj2yO/G{έ%}+Zq+/UW<._%pK'{K/yq߭5 ۍy.;h81m I&?姧#,G_y}bS,c5 gӧnE+tk d8`MI09)LX,K[$Y({o>Kw_q3~+pjgeec;3 nRpXLe,R$,R'rJiA+Q.zKzdWUX7ϲ\&MB7HjƵYU1 n@t?;+81~5g|T/<$* @/lB_2u"i:I6؞f{7uc2f2A}9}0ZV[X\AK B,gI#Tl @+<W~NdX'Uu vvĕrK&Cd:߇+J|ޥ.rNc_^kyuE˥wLO΋{Sw3-_U7q+>sևx]*M]Q\^еwm },;Æ6ñAupF[b$ ӹ\ :ȳ$zuqbY5㽤P Pvk'+hQk7CCkھ!CgK== PXb"Z>⎀e"j]AU7j U59R p9fs`r˴s{Bkvdϱd2p K.ݼy35+oP[oap-x<_'V ],ɩc]~40678$}qLa~¤{u4F%/3bɤ3QܠsȑT*c y<=4<@pJ928 6Q`Pa6teT7sb׎b4P3ϰ7Lc?coGl:t:9e+E1+d3Xh3 7#H[(ǻ33u+pN25W͚7߰I|)[YOy7˯ٶB {2Zm+2g}w'E`'׿|#޲H2ž$o_s1cmc_7Ite%IlY1(O=NeY Ȣd7 ERvuPBbMωq958[MhJңDB)&ʐ`]GA4ΙRqVid_6L.1ʭYPżOi`=mzR2h"Z~U(T4"s h%N'Iy]6m7:*~>nDA ^3Rz+G1#2<DkDJF2"gwWy3H2\Pʔ"6b 1N M(ŶonkDgtL΂!U{o+\%D~kҨ:+9 #a]oc< &K&cRLEsmώi.ʪ>>M"=ԙS*_Χ-\{OM!aK+*$0٢{A#Kp)yE'͏O.2lq "!Z4(N?uM{J>].bW2 " DN\9u1Xˉ9nn;CP)dGK#}|~RYt@]B=RB̹ nzqefR !B dd*AEA"i>@BK-3(~~!bp], I_`b uuuQkr)}1[ZaY]{ü9|+w^\9 [:<22wǑuֽЫHԙ/oᆴ2I4[Xtf((3:=0ZJaZ DЉ-X^-1-1>&JKn`)'~5J [ɿ9铿ŋ?O{9BR&],߂_ 'X E௳d6 IDATI'өq@U ~bQ9mΝ@[QbdQbTa Ɨ} F9aGg"4wȇD┉|?SExh0gy{6PmrΫꉼ]48Cf0w5gYsh G{Re,bCTdPG0y+=+8B+ -u,a vnQ+޴|?K+^8׳b((@N 5Ms\+Ul"2h$ÚOܖW?'^꡽+ڛidK k/ cx_ϋ&.9H[-"qiU" ')4Ǫ85ag0c5CD, oǢp @;%t1ZHE=d=> e+3J(m# fpIV~lCTr6l$牭@hgӺ__coAV偁]O3|> Ag>,f_RLDw'W4& qd}V/6Pd"cЋSWm*3›RD#Dm4KHvc cDqӳg Rv a JSe8gEl]uzeݭN56?AjVm]7B?YDe9_ LUCT `FM+Ê 4Kq|b=!vY.PT0O>:cu?oܽE)R 6b6'xe?],Ka(F,Ū>J ~:Ņ|>MM3Վ"`QhpZ i`eh{$HF5TQ戮gq<{pdal!%XoYcK2V N=q1Zw$"$bX`5~ZbtH EBIzꭜTLձ0tS̘x?K9>NJҘ<_0LG]vuKr&I"12b$vY;+?N0YcpG+f` Bz^E(l@&odo1:OXkZfsOOn%cNPYҳIl䐥ʹw)$zJK bQNGT9 DJ! !erqHbճ lht;q^qٞ@^*ΞDŽ3?#{sȹ/hH$6ۼYȹ%.7~^ag3W ʵ|E:^kHe ?U~&xlQƯX~B3opw_hf[x;ճxxng\d3R頻׿FρX2_[/률^6w۸YWU?ns?B< jfPVGQ=ͣ%" :Q0 Z:wb"`3b0-,cS6.䘳Xnf lv'u7 eW'[# qA,%urVP0>ǑH`902B$F(JiMݡXVT*1F!q!QAJSu2Ӗ(?p~D"(?4RZţciolG/ei1p#D,yVD:/Rn"PCf_/s$TRGZg~kZ0 1^DLk-=CSͅJr[UHXJcoY0T&Z@4\ d˼vW\ T msKQ ff色6~>b rR+Tqsd4yC©p6B+p3n{X=\y3^.y$Nwrcumk '¡yVo픊#CU҈QEIbj&c$Drv%sKm/CHƬrAB%E0$ Itbو]/0B`U$Sxq3ܙ;8 XN1 Rϻ12iiC#$$,=U_biQTDHa77>xڹ/DEO~o~ >X3x! ( f 9^Z;O>H{ynVcw9ɓM0g';q Fаy(":!a0U[9c<&H`n'!vOi+ ܱ 'pfUNyiȨsv%g;^721)ݸHrF>O[4a숃Zh;0b}aROFL{Nv6hPT\EB^f_=DL":D^pk 4ulWygf}Bs]}Օ߶.vb1ͳGp#Z>~ۇLn0eE5WTQmc0|@tƹy=&:w_~ʭd# k며qGOqMeLD;:#+ Z|60K}4yɬ5? <% #T|NaWXgDx?/z)KX״udz|%8/쉱6eƂ2Y"NP2Ϯ0aVSygsYi2ld9#ۦ0M8ƒAb'f-TXӓ#%D!!}(oVv4Nڃ^R`8BC/g$ Gh5a,%WH@M$DC ?=a)?M4lf;ya2Ź"renlA6 Rqͩ2[߱6???HKxnY}x &Z'lFNسOmpu5Ka.$ VU'wNZd1X;WCZkBDBE 3v"D 1dhhDIj~(n;9`%â9'LRz*͹ni hP el.͟ 7i]W{ $L=D=y"'y8E>Gs<  %}!ĥv_w%-qW~.F6r5>W񚗤[xY~z-5ը(2 ]ڪ=z8j+߬QKPѧfg$Nd"+e=E o'ycɴ:ĩ)}XQ iH`R2AL5^ˆCH 8BTRz a|`_r4&0ѕRAu` DfvLS& 8yy#ДuO7򖹺s+PoO1pO?έ]L62Ƴzo%N0woJjk#eDB(1Qw  B>zAT aU$l?!B J"E})n&ip1AfOt(n1'(!5`6H2f`ȿq^*x[K9Ll7Zώ m:4H2.n1>mt4 $nlZ۱ǙT$?3y9̵S(}j"Ʌ<"G!F_\ءB3D_͘Lqg ֠ )$*rtmcP@1G 9 F, F1}PgbR>s#)!5 4RdenfK W#i Kb{u&+4I! (&0?'b;BK-a.J2[;&X 5=~Q0|k'q-B]QQκ̡@U=ȿe\[xi6JZS_u70?,K>>љsap)PB{u5R]ܴ>;s5pz#Ev/8s}˪>|łܼe|upRUBYWDIȑy,u-->޲kOt bz#8 ;K*dM QIeNl^?_6Sfe%8d8A 9=\SMi?Ea[Ǔ.@p&omh5vaU#OTK3M\S9[6'|ȞOWqߨH$ Юqis-ljxNS :\[$ć~?_2 ^L"yDT:?evsբ, 2y$%q l:Ïc̔-\ 3ʳYݶ~6Xs&ėsڣ122A:ġA/l-9o7UgwXg\r [L<$<W`sϛm<8sL;w#;8s6PJ(K Yq*Xd{ ¶J49gCQR1PT$fSf$c?9f(D1_ M$tA44LD  : &0tGI(X̜>"?BT&I>(!=&]N3@JSMa_ov1cFOQ=ڍGcMHHv4FFo+uA*@G &԰9=W%{0oVyݘ LTŗ՝'w$ `fqQqs]_^T6_]UlIPN{FbxEtXP@#uEoCKO#Q1N ~;Gxkڂ@01 \ٹ<8^ɓmS2o'Opvޯ$UƳiTPKa,uQm̷kw< _su؜qʜcR+>*/@ĕO|\ZZ:xC* ͜ *Ԋ[y2AAc̘P蚍>7hR;Y5<6''EQ\q9:%_] , 3iN5Dѐ yZ1'@u ʤ%15eל7ߥ y`RdU7DZ5EO/b1~ʡ5 IDATS6jOoz}t!N^ ~}/Ma(tgW"%!PUC ~Yg؆ccS7Rgb_? l[=͔փ"iW/7,(ڸiB4=个GGREAm Z=~m=IVp)'zy(B~¯^s b=A 446bo*)<x.4s *.4˯Ll Z:#Qjbi[ rr!+c*z VH1 DGYmd1%IDM}L>Wi@z I<Z2. Pu"%0aɪeF dfqAOL'kɨI5C1cogLHZz:nGTf )K+3O~JIQۨW_Yt' +(v:` mB.)eN)4G6:|7wx|4Ddx"Zy0h*vFpe 3s{'puqԗ|?b㉩A@efsC-SlYDQ{*|1Br4: 坧h>_)zXvˑW]?m=P`gְ ⓷yN4u,@18ptFy R*NIDPPU)E(xt]^ tN~9_nߏMk]FʱX<y 8ehg.[/~<%儤 ~P. U2: Fe {!'|$?EމQu>fq1JAegQahAfw'w^%3c6}e8eNG$ʷ`#!Tר˘euϘ 1)F {9!C8,`ghM^"6$ ]idpkn>0GXs~dW#K-Lw'Rbh5ׯ[LF55> 2GLN;qu5NIDSl8HB#.Ma]-J\vA,HP|n?jqW~sɇlx A/?!σUIUoՕN]r>WegG`W*'B 5 4eJM:.ͦPwۭͮ(xt8-qDaӦI6OxAFvZYĨإN~8IYDT2A m`wm D]`FFz}qL:2>QW0UmT̈^5&x U+g JQEoQ}#*f )sJFFjQ#D'GO-]8n^h7pde$XH(خ\(-ƬMaӬ,}TR/ǧÜa8Js_^ &fc 13+v%CU},X·],<0 ^ uo=/~sR>+EXcxbmxpxJ- \ƓA_'g밈5v0i& 4%Hq\~$fD;܍ NkfZL#ϙ/ pX(EKIw~5rT6&RPx/xѾ oT#s\O2@3^ ȸxC[=G,K(_?k۶oٿ/^}/&ʬ ƉKвOR9%3ZKQyS^9((D* 7$&;Lᴋ/Ă1 sUnfu7i)Ȓ22C=eHS73LTcV6j҈%1lj&y!Bƭs"ܝk"Kj ®Ah"]!19nb;ԟJ%8겙8&Z_c8⁄7͂ˁ?ARtS>˞ыH0N;(PPEAG[!ܧy+̰&Ũ3lJ*ѡ*Dt8NP0smR"b1P24%aI9fo P~UeE]wMF@(N 5JOn䮽S .9PFgtG0T 띇2"eF9K/9M KXZL^Yd ܾ_lvR@dwHLW^mmtǯV]uXHBd&Zu !TY%9f=EJA}|& ڇ6T,.rͭcv"əfv.S&ID)WHL}| Ɗg`9g9Ê w_? 3?U>pGDHIru&4E`Ichێ??U Yf$^k‰(#FoOu:6Hl.wJf/ɬs%a_Z5u"G2:opJJ)kH#R<&z!ES=nQ'Y'm)Iok];Ρ:.1 zWBLTJ)?z035J J` -00&ܐBX̌N?j¤'v$+zCL̟D0m^"UcfYT4Q,|Vwy=3xzp$ndh29ǘSaMߧMW}P-G Za–ͮ$Zhjxr^RtEd2_~^?.˧އwR??}YHSQ꠴vL-3>>|i{ &yޮ6LfPr8:8ͪ.@_~M )ڂ Z \Y;깧XӗuJ2E#"1o~AQ;+Y N)+>cO~9ǑJcQbׯR^Z8S 4l~_?lMOܞ >rq>f4QXӌyBr<;Kژᡵ F"a^fO`BCqػ|!&U d O+i&va>.~&*Qv" ɜ G7[6J6g~w0aokwv;a7Ά;ٛd/쵭j/ɓ'7֮~_ Lp;>gcdġcWMt HFض} " ڧZp:)*B'TEOxыc$+w#.㒫To1Ķ($fd3hF(;^vޔsndR 0T!D1|Ÿn2c JזTQPvh:%3˂NYeKՅx|4mP̷qHE "Q5l=Kѽ򨺏,1)$f~Aeʛ.DoڞT{*FEupG)/1q. d3[?:L~~u6 5X)NK)N[HX@qh HBf]~ǯk\3g9uv64PPfQXPȞTn,rooExaʌU"0.Kas/1zҵ SKg VH18RGT^[/>2SČ7͜v[߲q~}HLw zؐ@&/榥XHNHh[8a&9 Q%,+q$D1ddBSVdt=[j( ]<,H-vډ+ T9pO540r) Gk˩@bIJ&B5/@$IK=?=^<#'ܰ\'6N(jp Ʀ2ŅdV,'2+=Aly52S \Sksq\:s:ňZ6BG?Dxj{2;$K5Se˻,3#u\?d62 qGHmҨQ!ƀp?H{_νKKeHcy၅g7y-]m\$p->0@a~HeOMbUlmO1~q;}t8%&L &Da>qz4`!eG^H2l8zy~siyէۑ =axy {{8QkcC\{%\}"]+X9a&;ߟoNk$Zoo*̵*hhݰC#4A3@+ئq\;۳'ؚ{rߍ]̓m ,G"K{hܐ)4ngVnuIp8]8#<0%jsCX>o;7SZ>m>zGs-LhCê$Nw u+ȊzT6|GOo*·H$d~EN.U% iX#'(6qՈ'&P5MeWW4"$-a5,$ y&5\/ǥUtC4nƔrcM{}*0G熽9sјו问|˗L*!H{nfVOEȍxf<bisP((E!'fqXٖ:~a\XE\?FrCNQ1AD5lAגk$ګVϖUT8-! l!X5:N}PhC[\u(c ;K? sW!.5j嗑k߮Nusn6|\k)rl )--KBcw.rr)oi# ܺkςBąHT;yd;ۆR(eq麦q#Ur?8k=M0lHؗ=A]+3w]??e$@.^'L2W+ƚ6S);ֺILpn6\' $ >`Alb?OOOF@m?t27ID* |=fzE)@?C##SX&fӵhO"-H "[筕4uJ4 '9Bued"o;I.;!gs =#$P߯e)syyY__(%KlsRۖD;zWS>blԕxX3{?޼F bu`wlvmtei#sآe]J_<;$PìpNjR|mMۆU9jgiT H3EH@n9=PLm#UXU_(Nsв#$hŧobJ-#5aE",bSX2s匝JQ9na_gYggG7.%<}E|^ΡԺ~]U!'qMr '_= "8 GSN:]8`yKRevߝ`o,+?k7<q\z< Н9jQ.FNM.;w˻Q:G؆c9.<zz5SCGeMR7gt[o9Spټ-{@0GFTjZD$u@1Eás]}1Z{D"!dh#A([/Y$ ]] IDAT_1DEЭyv,V l zDIK4  d[QcbL!W|(``/Lvn+jZ˾==_sDYXDl"w9uU\؈ VJEGV %GG01t?gNo(k`^D[i l`M'-gw!i0˳3qN,\I &GN+!sDn)tc-,U,m"g؊ShaH]keXSbwξ?FVW } .QĘ 7qҽE+|5:SzM"dNTbջM߈[DU%x`gO8f'dF0-SgΒyl cY!S`W3@810cΞk8gNE$]&w8`eYKpBbkz"#,,Yu\G9ز Pm&_M"I8Y3!yR| ߓfiQэ3Nyp+7|90|jf"d!=;A~djN.΃'$EB&tS]{Sbcvn}xSk82; HX2$.W G:XRIE9?F~hܕ>4 (.*~:0;ŧcw9?t掳ԟsY5V)yL,HQQUj ]QHoiޅ 9j?]O+)7y?vpj91C/>]&ld"KC8;7^ôĩT~ewqEnV }RυWV aYUtjiجP8ƏCf fNX !ӟ=ȔbwZ"}P补QU5;~Б/_~4*L3y&߂EA !Lō-1cNXsP|w=͊ǣуjXɱqU/?)"O;- O % VMr<6b QtlNAx7hAJYevi%qڰ݇a;E4<ɋ,85ːt!X3QǞ] ߄q҅}&Gg0m>!>Z'>j?IQWU$ʁ ~{o6nbg:oʓCo]sj dPyߞ݃ubgXZ>^uSLCPS_OG_0n(N6| ]CF ?r C}a("{Rz X ĔbADEBVA^H#e<$z:ۛgV*W]۾]`tD̴dbbcsl I`+1Җ!ꓩ8QA"xJ]6L:;Zix 5bt%p IIB/1 gWX}T^N~"x{$g !5woܻ a82(.eFrՠu9" `WolcYEJgBTUPt"(|͎nU9ܶ4vsX+c>kCH`m7:h e$|1Vn+1';b?rOeN΀Ax`?P!BO31AՕo>/..9#5I08 |˨1dumKÒ4!Nw|6S8 @K),S8,{sۂ38בiܧEKNoEc3mq2^1s9?~ $X 2$5ƙ3v݀I!ޮ~Ux}%YtF\,VL NUi7/}Ff e -#ZmH4Z 1g~.[*?%x_bE+++kmm7i.X4F`Ϸ:H ;GAtj7ӖK_alϪAiE<=MD+uS_ 5t5(`@d(AM|)1eиT(*g$$աnI&ymO,B˥&Gﱌ_~MHص[$i WaY&l/>y^!'Y_(yon(f|.yGΚGnBC$N@u'.pϺyf[o+uT91'}樲ZhiU/wH-m*N`pLGr[9oc{/S$v_MQ]/­̺1XKQON-ٍ11Ņ9`gWwlk\ zqvӾb=GF,# r9(Xfc* ( a+nghy:2HJHr`1x=hHbOYsvt@ vXhPFqB#'Jd{ 6 -`A'7MHMUy؄mӤrёvX'5Ie-~>N!Oղ=NP;mZ`Plj.  SOtE3Ѵ9ZY^$k;"Ls]QgaSs ktMDTd+X>t2ցUbߜ\V^Di~ih?yc]tqdTJœh'simdk1Ś>c[Yt49%9F l.ᩛTE9> 9"ܰh>}9: ^ ZlXG4n_ ehtrw [ɍ Lڢy~.|.XQ"O`O5}8nᵾy ~ywT mA#c5"Us|[:4jJ;/֋ iAnɤ̝1sYK #nfOR !L?S9[qz_CCj:u??{샚׎~̨:f)s=űSTf{ j-_1Y@܍ $()f".J-Eml6M9b0nޠmPR1є`Pӆ*`IUݬ~X?LX P>>HoGC7M`H?,w2 q[U<~~esG\Гo/pJκxD\=LrSdcς\ Ԯx{ٿ)sN>'xju 5$ڸuyQ2ЧΛnm1 Ǘpԏ7gB+c(C:jГV,&߿1S=#HTyluY%Qd ~m# HIj!– 6IembzCDvڐ Px|`5A& 8HcmJx]Ȕ.SKD@40CqnfE{ wwgd@[0ЗSÑ[N`48(ԕ0 `SpЇFYvvfyy.pc1c\VH(=m}z=a<|4P6raICg,"h5$1Ut^*'7"D#|CN0u6jK-4]Hp§ro |a]0+xzSଏLIh|[y7若mkCLIYK":z;n=}>jqp5\}'Ih|d㝜$N'/>~97b(nYpҒǷn(ʬҰX9_'6e<8 1 &j8']).fW =}M=n϶~0"u5,?c2܎dIMp6 v RAǽ<VCjX5GqH 4: 8NŚ]SqD.bf v bv Fd1AXS` 3у$0cIZ!G|jsf2(!FˮG%eS3QGwC".GF?C a~W;yǶDOkMy~B̢2.q}/MpݵGL(vnh][7w;OXxq$ $+ff6Z@;v7lsRhA8M PB4 0n6Pa.-8$3 >haKm=UD| !*LH7p Lj]mbB^N$)_~#(vUfR m\o#}Qgd[lZ`Ԅ֣R`X2xsu(2" x`LY6Z SӢsEƓ_^C%ќaIOc1,g2z~`Kmk%/3 8)`Gǩ06p,R©zY͛_gػl8 ' ,ppp9'*f$ƚzԵ|74 7fx≝۷o`„ ---X;~C̀":N-}\ bu!IbX6>A,+Hm=M[:0*}`eL zۈd)[AnP\x,rG 8,v;‷kFC9RƔ9:蚦fپP?=$Rz5\ `Rm|.P6 W..==Ē&jxjXtY(kbhjDy 4,*goH`́8Ju*Cj&ܳs{Q.\0|?Vj1 ǘVyl-Gȸ$Ͼ7oyv m maeL{١Coj5cYskf3  v7Z6H`6x qؙJ'Ƅr)L0>ޭybg\,WON <<^$F?9G5[iXKRUK~Tڞc]JuL%>nﮝ}meռL JC|^Or$i UݻU~_S3~x^r[KURKE67эܽQc]%.ش qP5i1߼ c&INju `F k8XTbeu‰]HT^Ε&Um/B/qt>iFZf!̦"/2s,Vl$Ism!qIam0uyA[J䀈@Ly8ӿe֢#N5k7ݔH+GNb2LzW^yex-//k#v\ϵB߮ě3OvAFQ̉(.0 >N5p8=> #;53:xD?83)xP7BCCC*N˅Õf gD}iY]|ݯ~p~:Y"ߓ@Li IF3XƑ$`2v ]ak݄.F\eDV6LlNLWw )/H6ax"p!j,r/C9q&I*Mw9fyu b5fbjf$lvAIoz1b $q}|8e!ԖM936<ᢷYOnĔآۮ<9%^kX{%\cwz\qܔmM/i+x<nצ;4 ( .&z{,RN#ECWy/vsr.'F6@wpfFbk:ې5oPd ;ʋS8ԉ$+ga^)R@F מO-"U8 0agTgh{No`영!L%~\py_7X傩S}=ѪKgҤi'[W#l?qe/ۙXI "Yb%c NO;G48>xˇ8g)XN9 IDATyOn9zՉK Sr޴l 2-*2x{>vJ'؍yy!g8$*'-[IW_O\4Xd *>&&3$ O0X?cBLzf61o`VAU(t ѰiDM |6,jnưe\b;n-`P1Rcx _r(AБf@Di[wޓlL9;j"IHub&6p›c +PA5IBCP`Js E@p0>~s3~iszvMq>m ,:HJ|NýIGga=B,+Z]Uʪ,oDbGFYmv\Fp - LyC"goZAzGu]o ^,>3fL4χ?YԩSw lWZ_o>pYt.39IT#5-pp|*Fm ~$ZjrPc|sVʪPq`/ OA)ad%'$͡BNxsMI⒑SH-ٵd$LbH lKn c8Wd8#iVK&CB#/->.c,ARSr{=M2<%*/Tg$Id%tܖOy'F m‚e"1iD6s~@e9ɲczM7}p(..&Mڹsph[QQqٳ׷r|5/qU_L^ UC,6dbAL3˳wͻ$bH#oIUHYm5MFr{8H|#B6/ؼA} ʏ_WMGN)vk>G9d!5(,+3LWhڃHs&rfLWx ݤ-IAd(I_ s |mcwO;+Gb_wyxWy2:[ó{=v_Xۭ<ƮƀՔ Q˞ xvGٿ1uũ ssL(IwIg(gul )Lp=-.".3U~y)DMJoQ|л'1ˤr5xo-"~!Eќ$ag(FO^mX1UɄӗwao#<4 ~d\Ă4W;צ˷sWp8#?7'g Dw0"EKղ53DXu6ͳ .,]zygUpT N2Of, HOiй p2~91azx/6Enj| ~y>BVX3͟Z#xO%߄0`~ \^;&gp[>޳fJJ{ })Diqс0Ffq2 + #[M%+uQ1v9dA%&86QMt AÁ!9|:˷=oJ+QŻ8Jt f7Q.go#U&ws޴m^hfD-YM EB`XE$p+GM6֒OZBQ1n{;cXxj:p6{9xׅSAO'-5@w,cwH%r,02'U1b1nAT{Y\M||;;%(9w0|6o(8;ݟ҄ !>y-p3M*c'4k`W'h372'}4;<1$`rA.(!S@sq АLwӚdulRR?y@IM8+l4&LZv ɋ;l adzB} lUeLaX;D!N$Qjy[jl)6R1@_?DL [r=ySfRP:\Ie&W,l! ONiGR3ĮfٱkQP@p)-H$hz"l%C Ĥ\v8<8=na;ׂjģ5?|ĻcQ\,K86M|\r]w5w`08.N$s1k֬JŵMMMX;eʔX,껿]UݤI '1$扝\3'JMowFywMwսwl:cLP P! $'! -PC1&q۸u[ۋua-y'y.]{͎FS$}9#0aiMg5 fD3Ac,-{Kٸʔ4&J43y7<| [/j~ъ1}[]}_БДsdn_Y}4m_k+z o*39,lr:̓p\<+GUjUUSk}ÿoÔ+ 2eb# +9{HP‘gxL9ޯH|7 JjKt@G(.8za" r ')l$ !u )mB؏*_mrдė2'rF]{i-Sw"c7h ņ !zJ~+;ЭDJi4`kaO/#<ƕO2y$^MA]G⩡rNZ5Ol'7=J=DGsHNqh{dki==8zw-}Aw8BN!k TFXqpA&f<(0 VEpj; hɔ+Lή Bnzx+%NH[!4s7J a8\_<7~ZZx!# #?QTWn)NێM,)D2 uo޹{;F,%U33#j>=L:.B*l-e]>~HL7otdx(愒Ghqeh )ĈD=NBJBw IkmɪeG />(p (((D"f+KӁ@`ҤIuuuXt:47|3uTY!bǙGHN[w-fUWAAC"6gtsx5AKSvbaVgnbس`4@'mUaCQ"AB~Zv7oe=rI7b WHքQRZe5MGʞ@,MsK 8},μoySkt2^,j2P_5a $ Rht6s0tDs5F\$x|m@ḙT߯vA(XYY),֮şM)?tB!~Dm- )(U8_֮g3QE>n?{QMz٭()Klks2hJCm"ֽhT|:*ayq=ٝLvsxq a2g+M_zB^( 9dC݈t"bÎvja5 _ r1ǧaYS F9@WoG0|/d `{pg;mEӌwGS Ԁ ^DR328x-liEO :i8(tpri\e=]qˎ⟁CAb?^o,3G6SWx4!ѭ#}sߞ[.9]SPʉ32Cޢr4|kۺ_gR-N,KWP7 t5Jv, fSnw5<ʼ|d/" 4omy]Eh`iNMbF3 Sf_y|:mΧܶQ]e{8 S.)Pu҉Z^ɮ8-i GgC(0.FD2Ҁl+ݎ` # r\%KM66n|-_gHv:Ol(Mm).O1H418t|z杲|؁x;~+4kZ[#ɝDQ4ܶ<ifRǠ0+3n}2`BBGT݁R̖}+Ɂk^nc:8Dү6zl77zr ,ƉfHd@7p}558n,ܭ19 ]QbZ j\Mlpq WjP(k.bC~4+0n9<ہ_nљ`D=l&U:(YB]'rVXwөTu-0H Ra#e>>xN7Ⱥ):\cE(6at8݀dwB禵e^wa9whs(cBK/{Jɔ韼;PErnJNf6j@ HR_-198d*'^b"tw?dgfu3 'ـOcE3PM av-#&Ĩ9wHByyQG%IgeYNmv)UXX%IӧOy\. mwX[SSBiӦjOm]=3owxt+<sq-A2e*0! ~=Rh/A1*b*mÍłU$ N!=T9r;-%gJ3 .ѴBSTٓ t2W<8,>COlK(" W=.XD:eD'H";VFdf\[Vea}~q'&0rzlgYPPsX{VtEڃCo6X -~p&<>5yTLzzz|>#Wޘ BU N'C%jnS0)ElTRF֕TTfc3~ K5<eb8~EDyM IDAT\c"MSb}FvxT_KxsX%Kwle~^mA<rO? wXGOw' |,VTƅ 4xz//Ο]K lT72u"W\'_~W}!ߛ Br'Qq9UROG;ʒhO3ڢ/YO%?U 8У癯4l?ɯ=HFGOY,, n1h Etz.!ՂDgo c̱)+^z1n`-&كan pbmrnxBˋęeL1O\;ιpD =])©{{*q yFӎMŠ9XS G {wD0"_M6䄜3>{=)]OMH4sb?ۖm4/@Na:W^qԊ# &[br!έ8I Y5 H*\‰dh4rb_xN8ᩧzGysכJL6mIII(l'MO 6?kÇoii njs?~Xܳ3I?vo {e&96{}wBwz?rh-ۋNYI%W"ڨ5wBa XDC36$ز>0m|ܗSAB0xY;=Yr׃j EpW3}'cg/懕JP"?f\yߺx֓ @q2L )f:)VTVx'ӫ GS1 C`xա"_ӹ[Q'$⁤fc:ѓC_wg}1)[Ý}x5:B}qE?ŦM1 A&cs:A ,T"_dDFT(NN29 `AhsO>㛧V&^GK*H sQ; !tI~5ۋMAR@::\v"ի?T4<ۖ,otW ēKyu%QFs'ܙ6O܌t ?‰N^UG}@7uFlԒi*]4a[[nznXQhƚ%nYqϾqIģs7eݬ E0׋S$1qyTrJ$X|G7DHx@hb)x6vT6~1w*1VAʏĥ>~8^Ix東w,gQw[r@ݵ->=HF-deNISɤL%&;z~BnB- ;2ve8sK4wkP1:Ls ȱ?$ahZv$p<1[l@:IǨ6mK:9 O> i5XO~DizQfَt4}Ww)ES)R Q_{Ȼ"ɧs@A%-ҜWŵk 6g1,D=+|Б<r_.3g;9眓N:iFf\kE.qfOa\ǿoh_ރ$ cGKLy#3O\wL+C ;/!} gͅtD[ױr)%&-0;1ZF"CzfEL X$&v 4@V\AF0A]/ql4,rᬳO,*b\=~W:pY#A]50q>`; ͠:+[8NE9 8Oy({ 9F+NbE<ϰ8Z,ssQ}>RIzqVhtt&!j|B[шf/[ݴxt0w cGRaF-Ht67ba捀 [n oxB}x<7_w9NYs7}+瞹el2?,ZNb{Js%4w>W|$>m%.DGw": uScf2iRY~x[H|OuLFD+"yN282%Q'Tc3=YHHJoZRˍW/x8cw3H+cHs/ѵr_ҼvT]wu(OV܁bsbQ45Ej'":ua^Fed:֤YV[QS`+8 2G\N%uYu6͊lL!CR`$R"dd 7sͻ}?Ï2{<;;:|>ڂ+nO?_{2?riiZ45_={߉,WVVm:^~}uuuYYٿa )flh1/Sً1}w9s R3X~e¤47F|ן?mĪOQ3٤CYqή95)R⡞9fi@gqF1|'DVA'ol G=2_wǣ<~4G Ue撫cgot L+a#KEdv5KvplYt. "r XKNʽ$-wpD2wuǩ| O/JS&Nd Y TٲƄ#'ቼH{N .)JQ_Oq>@ ѭc& /a5@ uP0bb?j冝%ifЖF:.2KI"4vb GUm3+P_@v-fG?2'nﱏWF4ML6{_u2~Oa3/o:{~syH /uD_嬌^W Ú$o6h8tP7+FhP#U5˼_>Jw2zM͊ ˏ8zI I:?=]Ps]DTkw-{aecX&:{3``VCOܲIpa)ܜo+![𾾾h4D J[N;>sg'áVU$QW|oZQCO0?C}G,(nwŗv\Y/pPtXjijyOx'N7iMgN9 ^B]l:{.@2DA+ѧ@beu\#N@c4^h|\|I{2MыdƜǕf)KaIhb4q$fWUzkjGE_FcЇ=Efh";AAbp;w7XOEDR" $DcĿv[E[Hf]ҍPLy 3E{<Da$ & "`yuȴFo&&.iPX,t\:<{HN5i6̢ӹ\胾&VUN45#G{`nWZMkK.ϛ3KoKɔjd:0H<]G` $FPtb!@:IA='8c|3/-}Lx[x1<.=I0:}֞ѓVE%L\/j O=:cNK QascNǣw__|q/Q^U׬F3}Wq}flSQNy!koVP ]^@YB ƍh$%]YT ~Г>;R7_-;$LlyٗבV L&:L;j2X@!2yE*(s%t4!xК\7ӽ锸rzC錥XǀWRK~ImOP1 9w?7UiW6: ԓ1Ù%Xۄ R9m`ۛL&G=H$D(Bee?</xɒ%@<7t:ݏ6- 68$TcǎtIpr_n{6WǛ;Xq.f4A;e3P;cMG☓I%ؾ$iVXp[jE;(W,Aowx/M19hqғ!lД@F70a*c&W\T1EDp/oC佦37E[eËYN*l6ӧ0 Y-KQvB{>AYT>NЅߟB! ,j4iuY' gY_ M!! J0Lv˟AlDYOR=`UӪuŠ#:. 04d;LqCdXT&hS ݒ+w%SVc{t xO’XNQ \>+$+Z>%-o1GMRA{=. .T4~zŒ*AA)&SPSٌ{d D@G*0e^^d͗~qvfc; irŕwWrNh*J/fヌz_NR plEQ\It/\kKKK^UUW\YYYY^^钢ѨŘLfڴi>On%>~Udp 4|1g7\ϯwq<]}HF0CBDPN5;A+Ǚ\xi# ٞ^VV:|llZsbe-MfɬHJi>fڱG;*dpD6*B)LO{So`> $c {xA.]͋1dF߄RܿEOot(+ D$7n!e G{CA( Nf䝻8b<"\.7 TڻIY}tXͯa>Zv4y^nn^bna>E>x7/^<#Xt^~=ituJq$XPflݕ@]|P3lD$&ⳁŊ`!PxHhN jiEKiĦJ޴}e'ci۞- 91R^߯il vg [tsT$2=K 76yƀe"WgL4lZ9vvvzTYe{H*'^?+^bʹ77m㷫zA[Jp/U蠧G#5~8[, p"1Al30LKK.ϙgxHBUz:yffǪzU` g_/U'qg` 6J ,1le_w"# }4_GaZD'?3Y/F mw[rX5VE!ѥfU:zQ=vyQ!zeфA+HCxҭqEiɟX^ܣƌؔN֥mcScC=`WQ'[jŽ<1n)-ts`|>>)TZj^;yo\=#k}"B`k֜Q ˣT)T(0VQ72=mA MqvFp݅O!i[Xx3:dB03^>D|܅[TRxk;л))0rxS *}NYq#[O:틓g6'"ҽvTcfZJ;X[VM5Ň46g%ޛ]::v#B&E,/H°tlGДZX^%ћk1]$#Y0]g/j Mߍk@ `XR^<䣾///7bYkHΏt:kkk5޽{g͚rdl ?mۦ(?7{Q#ۍ?G<8kc#;6w;г"hPVEo;z`l4aVUuԍ<${0έ&`6Xeu%_ȝ"@FiOW'x 9Ba1eU%7Q&t;[j(t_n׹lAV$sC,[//W "B.&ՎEv:n7}thIFIi![vN"z]^3M&/s_r8fkdHuBo6kLvc7^iJSs'l"dVUZw2P- {-o 3 2t cPM_5b ,Ml؏]b@T~h"9"Izf1t*V2G*n:^Q6Әr>}] K[&ңJ&R\I2$5Y_ IDATM=;!o4LX/҇+\Su, /EQ7`D-kZ#m⎊A>E0o7qL;'Ԕ '^zRI 2zucP{Ih.Sq_ӟZ\" 4VJ ~Jؙ:Wx {ɀXc@~Io1Ł ܚڔ|:HF1hS"x]Eÿχ)BI==ϗ Ę~t~6`( \"lA ڷe^Q`ogx, lQDt4/'Q #G,`lQ5f`4mmmj__t\^TT4iҤh4zw_zs|~ZY?25#EoҥǏ?)h d$I{]~}qqq8N&~ٳΝ{'hmѝ^Ur3e{~ɱsz1eBOPs3%Z |Ep:7"<u\!GMJN \x@2C&caP󛶣>uTȁ2E̚6&磦a /F1r~= 5;%/e].GjGH%xBr6?Md 7I֐p"?c@b)Z73tl.'ӎmu-*E`7oߏ}tbГ!Yc4ir R 8<|>".@p@q5e(N1hZ>CyN /hԺ%]'=Aoܵ_!(E~ka#$;0 H&Q=\{oGYn;(LӇ Rﯨ8(xI5n /|ǟ{l _QXQMA/Zr~vŋ3D \o:E?g̘3\r% ^xB ./s)\y;+_[- }0!@h^d=qtHhypVlZI#A:`~= <+~(VP9:oj`Z+f}˵+۩r:.1yTݩI{V>+N:w0JqvINiGSeb4$)LnߖT ro#ahBBr"ީ;e zIf\H8~LJ*fQB7v@ 9A]* ڜPDP*c5)m,FfΆN*qObN c;er$WgoDuZ\L%B*'j2A2EЏf2bVis1kztR;q'+#+P~#J6cӻKuI$IEn?MrxXt:m6!YXW^ٲe˂ *z_wundTWWk׮Z Kqg.Ց{fp<;;\nNZT"ߑxAKC4** dApksE (McE'HX p;/ڼhbR؝=,ՔwlM '!U3vT:f#Y1| L^Ji1(! =AB>uL]o zT* WFu=8ҒC5R1B22X%غ]'KJ'%6TwW"*㼃tI !Ctwf]1WQ t.n 6Bၴ6{2:Ҕ'j1raزL#y Q].iidH4\Z`Oq Y87%OAavsb)Yյ0 }Gh"4z g~λw4.h_e9^J;(3cHG燨3KySNe b[v$(RlBHFuμw̅\S,SL##*Ӿ=gLf!$t*""6PZ׺W\`]u, X"PB $^&393ޟ̜99>ᆴw.NdE`@S&TEijeu 7s kxQK\@ZOz?6bwljikdKRO6#0VT,M̤j75,$ePsL}#0X:9^ёѓ}е4bMNQn:p{ů5- 7wᆱdeeur]9# (fddtΪsGKKF 僋x㍺zDKaȲ&)))MkժU'N]C:_\\\]]/>쳡>F***!// ]\ѦlżZ bE+"H(Ϋ@f i HNW8WlHS:(aF5۵#hDLF8n{ Gnv4έ AcNpU"p1+K. m$$!ڶga.͢<0X!& uЭUcmvg(X'Y-m " ?7tGq&]FBʏWfi%F ckެb[q~Ə{R8W*5+h;}jJ{T4)(H,vK>!?Ah]Nw+MiZJ|7L RZNdhkg<\w|vnʀXĖmy=XLʓsS{SaeSXimo- &*_AVz%4yͭ3i0݋ӎ  DAEMlf>|TkPw)^<@?f3RnzQɑ2:Ȋ3+Є`͑=ջX`$ "5n$D-؁Wn wwlVb4)ʭ?c^_jR;%8 th4vu=G\AIV/oj.MFCy `@F2zt$ġRn+d_0o JvՄYOiD>A׵mSW+.yW_=|/rk֬ eʲ|N1hvlԗ^z`0w}0 (644\YwZ --n|>|>ߺu뮹AD~zٲecǎl6l--uVVVvm.?=@]]1qs76r%6Eu}1xyduХ4%,)Lk}xV7:jtdYA:D=la.|TͣI ֡R2nVeJ2tB~Vk!i|C̴1*.Joi$?_((К29ZO=;ZLi&sC.u,k8Q8hوZc5b?Yu{+b"<$E8a!:'~X92RU;gD@bAŢ(a[/`@|`޾`Hb76뚙q9*^Ufogp<6CW;Uszd/Gs#,z=[{'ϩ> 2bHΜ-n]adpVl-Mr*?U-22Ɉ jLq9FZYAK\"у1A$eNFGՋxI^b2xEV,+K։ BYv9ݡF(2fDu_ h!y"C -<9#hæh@lӤ1SbCK\.Z_]%s37x<_b钚r%y/3gΜxŲhѢ)S\wuO>… |>Vt8Gѣt:;9kVd5kV~~](z^]fku:iݻwh4vጌ={~OHHߴiӅX{͆?CLH{{xs ޗ ZĎ*YyX{"W0:ptVsYu`qɕj2bk2C BtTra6AҚO #-SZk8,ڢnmX3%ćf;4i9ݗ_kU`k&O0⊄Lv )=RpʦsqK|v8O2$NDtDF/ˋIX#$AlkJ(~ :$b@ ilnGؘ 2*Gh N-@awF6āXI(P5gPK4Qy rYvLEVX[. G/9oGB巚x]³ ƢTF(;Q4%{ѹ9<6FRz^u'j *(`bD`oi+uAVm2ARoho9¬=$A6/BNT &*gxȄ4{U6#pk&Ɇ(̖hRcղ{Z UÞS1q\t-4HJF]3:3D}AIE:#iŜ>D S{TY ՇU$WQyu jM:%rqlݻw>~^۷ѣGw1k֬Yf}G[l9qhkkׯل`0صkhVk'N{dž Og#666???'tKdYv8-A˗r-k4s cƌ駟}+|(ٜVQQQ\\| 6L{g̙3g|g;oѵ\q7N >=QjÐDĥh $;% )j͈lϺOک2!m fF[J k J*AdZYR{myRnBxoY|=\mέ>|h2+s7%%a4krLN߃g=t_1K.=U= ]$Ψ{JՋ1}+75&ŅR^$-A̜ ر{;%HgkpMibmZ>ON4zǑv: YYK~<lap0"Kxj#䫹TW <Х :joe+8!o?~"I_9gZFoy-<ə O"j#ًW^Jkb=rmK,>GK/Xz U`6mCY98s lug% +8(J BNjAHBa/өM`œ, IA" $A:t.Ug{ EE/@|mc1k kw{ ^DWcv-Ŵǿ! }ȸ_'\6ۑ`"Gv|- IЅ,(E@V={XʐVHS5~W;aJ*MiWtjNQH^СCiiiݻw޽ǎ{tfd2ɲiW,WTTX.UАrvOQ'nܸ>t;6666DN_ٷo9rxz>N-?\rӦMݻwazzVaÆ8q^{o,I?eK.ϐO}PӖaQ-BصU:8'FV 'K&: V@QM1"hR I^zNҡiX{S?>Q쮺s҃2sšt9q [3b"׬o3Ee9 [E yI : H -x xӖV-Ed ZMF,3dkk&i*I /\p ?1z-^=y, dNR7pI;Fu0)"`Q\lato?08_uV~< Tlbu%߼ҁޜKey{D:rOziڈMvtтt&z:'U1t<|VĊxn|*ԊmIʙ4Sh#ءx="b/Hk[i (vlATiԝG!ˆe8Q1:ex{CXse16lzYc;@3jƢ JS (~\6#{3bQ Gbse=i30%ߨ>_}FMnMҨ6&~-rg;{1$ikw8nS"vy< 5EIkIi8[ŐɤhlFhɪd IDATe  Nï`ڃGqE8TxemUY9ݹj*]h~3kAA뢮:M2Z#n1x4#'`ț4Zx1AKG@13-cР7@s5gR_0cIb(E:E F1׷lE`9'&Z')ҁ:/逫pTmZ)LL[xQ A/Ml_C@FUoUIؘ6vA!:) BElIn_feșkuBMVwo߾ekjjR}7n\jjn`0_|ݻw:t^9T!oZnjSPPp3Z,VUUu NW^y[#o)))Pyyyo{נժjѼ #>]8K9:KZ *zi$\>/ɴPKs2p% ?,yK[_;+] 7Qvks_KQvmlb!978^U"c%[b p6fw_ JH>6)+AU? 6)5N[͸rRolz6*5Vհ3]+r O(q|Ul? cZ駫ɃOwj2 dd =c>M_j"tTN'P9);еD/0R~]*Ƞ;v ,-q_]mS]m{HK!uΜb/ӯ}:Xe˖kw}+c9{lCH \.U C233^o4|cƍݻwV{t%_)))K.dժUG5kVCCɓ׬Ys6%/:ݻw@ j%\2f̘-[W_{më)HUpPs(`DQ1gs?Ց_'^%UNF>a&Ѩov0i xQx)cg_%6}%XV@D<+J}([{3j|qL@loo9d'|+53|ĸBr)Bxmm(fYĵ#t(Gl&Uןec2AAϾZZCGWIU5Ql]ᎸnBRT4M%.C;V`zUnV"! ]XP%˪ϹJ~j*Y]ŚňK0`VyBN#Klnc|lx<ĩBѫ{ 6A)dH1Pp%%S򢕓eGIGKZ~Rm;kꚃ}zL&FӵGkkk[[[Y,}?:sL'˦(ŋ_}Uud0 A 0`W]uaÆnaڴi$g#(_-n;3|p86oͷ_hϸe¾OpiMAQxVJ/0:ǜG(dHS;p`MeFز\s3= mo@ޓKnw]<}TN`]gJ ӱ˼wƹ1x[{dzR-$EХ{0݂baWUHVr.@ҟײ@Q-E~EUQ""%x%wȿ*(HBYAL_p>v~19iF>D%O^: r5փMi~Jj!Jݦ2l*~Zk{b(ᘁ #}+,zO?@ױTj 8=DҢ (ސȗiҙs;ijv#Ʉ".Հ$}8kZLn5G\\O`-xkݧnMYDD;`C!~'ZD숉3T"K'Pn>Έ.l ųqy B@kƙ!è)DϘSju^|?_p]f̘.Eju~GјtNhg_WWשgٲegAXnݐ!C֬Y /lٲ+;wnuu9C/ ku:]n5ꂟ/ u˝;wjߥ3ٴix|:t֭[nׯСCŋ/!O?TQQqvD:==^ӫ55 VRa{b㒡r"DmeeȯnMfut4E:%tMwl8jb!10 dXVjCv^¬7'P} ~~I(T=_̇lXQau"v1l()U8Ӎd$RuG;?D.sLp`mə2+ɊC]n<%ՍAjrh8 L >Mxv7 AѶMdaۗ*!5q4w( F!BL_᯿:Fj 3s GhpAqG^d0Zc-$zpWA!6u)27u8!6j X(zt@, XMx 5onب5#z#q6-V];֚UX B&`赆f-^ &6̠#6f*ӵzP:-~ \9>W梋.z{=~w۷ow82C 9xAKׯ_?y䐇'̘1l(TR^^>dȐɷvmVZZvO|#F5vE/ܴ|`f|zml yHrdžBBT8:&]ikc)2\M Cr%*J5*-pĉObR7<T;>yN$eL)u? `E 1 036cPט_-,lՆ""=qi勫O}ͫWdsW|~-b;[=QG?{%%3+/ gQ|FJ'" ;}kEztK.`6;;8qbڴiCvt:G [liiim=T_$Id>N:`!vI3Z4Ak_vEF\?i EBRpzaKȎ-d/bXR{eqE:!ÞUɵ@FOŖ%jZC勪Ÿvs &n}yx4Ĉ2(eZ8=15?m4|pcc $vĒ%ʂ6qz%-UQdM< q" 5c񳓵,hTg|PwznI^& Xላ)ԗ=w&b1h1K&kBj0鷊Ūu#0tZ4"z D4b霓\fWG;,=CG9̈&\& !w-b@>;pt/ H [Ϝ9چOF(;-Ԝ{x-&@ Wfx`/:|NףG\KŅhP /RLLL0~AAA>}zeX &m;qW^ov-[,))iСgA~͡8sϞ=woZ,ʲg!w` ǎ0`Xg~?*((:zпqdddx<~nݺā[nW_;OGkhѢ_->޽ܹsgΜ񢢢Gyd7_wYKׇ.w-Ձe?zV[:ţ=J)ЁLGE4yJӇkvM}CMEׅM,iM,9''ѩ~@'pڇEٸ^ cxϬfڀ89!ˎ)m3Pؾ~cSf@~+)m&ቪ)M\yL~xQx%N!^'{w [[V|u+hۦ^%-bwd$98& rdyOyKR"7}8!]כIr#޴_k~ezn"A4ytӐGq)u& 6"e~6Y Q/&vTNI "#x Y߮Nj*Lh¼Ï0+gEnB҂A8zb >>I$/cDBHa1Ccw 1QYЈ-Ltn%$Aj&*AZbCYM;JF $}qb$`ӳC&)H_pXW;N|BwnaW(bRsB=-9)mԨQF-Y[omll7o[[[o3g̜93: xѣeeeoYRRt mJKK̙sUWj-Zhܸq0ӦM7nܮ]~Yf\ bBqct:IZ"11Xt:7Bj1bʕMMM) x>_|qʕ3f̘>}z$s_gdd̜9sӦM .|ײn֜_~yQ=|?%޷ߛ͏]=L>Ui6J&.Hhŭ4K;aC479D:$zSR8ee(IJ=0&r)]%G iwM}Xt`:)*j<{}?}x"W@塎Gz\h A (۞%zt[-;ݎ/D;H/- fV %:]N/p؇CQkI@ p}|Ԁ7 Y]bB43B7#&`ғkfG*DaC Ë= !t &XL:p͉FoLZ,P6h $ 18KQ hCعmY6mhbx}# r(jYM Fd{R3V'k8%{9%,Ql*ӂj) }GzlZaaaUUdꫯB??6l؈#|>_ m߾}Ft:^`08cƌ1cƌ1""xjgҤI "9rU}e9r$111//owyI޲(!P-((ظq$Iќ1qEaZ].@]tх+V8x#:/}ٳg=zg}6eʔRxu߿ڴi~%KnO?q}㍺XT[ =l]_qj"R cv?9U҃;cic cIO J(Z4 !K#r" ծnnl4ڨ0M(VV+nN7SՌUr 9LV>j$V;$ܠd U6\~I2x~4p>/Ͳ], *֣]SvJ;oַZ\tXDq_NL-wCZKWoF?OTH"@?=.ײ!@@ B%^R VT$(4^-eA􀝾KnT{HIZ&{&GH8v;A{QxHIř Piȡ8z(½1D,fd6 kEvMAf0jzoߌQ05W&:tSonTፀքCF6!!s&UUJjʋ=fSmdc$@D"!{_8,));wnff&УGPݻwoݺu޼y7nmkkML&ɔ4o޼Amٲ姟~Z`V5jԸqJKKo6ԩS+V[g޼y999 UiӦŋ/\033s޽s]`h+Z[[CvrΝ O⪪*~v3q={̚5VkuuzAwaۺu}^hƍ@ IDAT|+rO<Đ!CfϞ]QQۧγ>;tMo'|r|^z衢~_~Yti~QoSGM7ogP) KQ;gv9BE֍+HqҾW"4n@E D7-Z r`՝zKV+*jx1\[ ~^! $l]³jr,nuu!g}zn4Pho >wc9m󻙼rb2.]Z*08:+OygϢ#NkI;hilHm_0 Y Va,=UQ諀%F@A *FF|WE/HZZH%ތZHv%"B%Zi<ҖJk5|bx) w@\A5bm-jDG?vFQ+*kE ر4T BF:nÇ?rhZh|G |\SSs>ؘ1cnݺx9sL4i̘1&iO=o=c=t{/?رc̙3~ӧO:uΜ9+W={({1c/+,* ,CӒn(g& Z7 FMP[,pl[M:d'eIdގʼn"Z^z^AlZɤGpku?ՐIHq_stZO*Q#ŗ*3s׉eб!sLM-N_tMxc*]'[s* p9ٳ=w65tWsh?~6)80&?Bs |Ҍp[hu5;iec>XH .gx-SL4avLBrFfr_\ɻYU͓Uw߿jժ>}緵eee۶m۸q;sС1cƬ[o߾~;fO>} U^/REEŠAw^TTi V|֭{FرcǎbŊ7x?M&SH.]T/?kǯ^|zjԨQ#..w!nWY]tG}{ ?N:uʔ)_~'|o߾uiѣGw=\ͭW_}uRRһ;~ G9\[BQ /v!Zf40;%%tw-o=ϧ`dH| X X~9s}sm۶۷o֬YoѣE))))));-[_o՟~ifffZZZAAAnnnNNη~{_z~ذaNKIIILLLLL}wvC$~VWW}ǿ[kz5\s5֭[z]nҥKZÇ_xQX{嗿HU_|j#66wk}n߾W^&iܸq|;`44_5ܹg;w~أG#F >w޿h>|xJJʻ[^^# 0੧ݻw?ÕW^ٻwA{;TVSS3aδr*7zHɁlZ3@ gNJdOw*]E0jD Jae. P.2K*1k\4 Q:#c!@isR4=CZ$"ɐʰ6MލSꀵyW1:\/Ã"S<,N"..-y9+>|se(lf{o$!t5$t+\QA 6Di"HB IH!Bzl6wnv7WO>{ys>.Lюpa[G1|c0`8 : PC6AU8pD7_3[/6K.FnE/ 0Aq`"awfHHà pXcm Css3+#HRzZQ]]W_ojjjN<9cƌq;wϞ={)GG۷?fS>>>,NAAAl$I^o4Yh4AAA ,`>˥[.33G"<3]wbT*}'-[}vX\SS~zGٹk$$$ر!YHMM]@.jժ _:|_0`ذa111I\-[lΝk֬IMM/VZ5{+WO'M5mڴZBVDFF=:V,>CSF,/I}}vt&CI$^C M,[wP:D*Y"B7(|Xhe&CZ0,l PlQgAmK&u~ &C=EL;р'n0ICXc-[uIo,?U\kBoH([ahu nviҤ2' |8;;iZD9))iٲev<-7믿;ollu몫srrN8m۶7z{{?55u|>P~Μ9qqq7n˖-۷oOvr/mY;Ox3^(AadCi>ihbE-_A(ʈ&昘hЛ;4M0J<d^-4ڢ]ȅc';E$dPA[u};m7e VAF SEn໣:au7_VlB\MHiɪl&0-7yϸp;w… gϞm  W_} K޸q^D}L ߵ a3w[ =Zt'F9"{hI x78D!x* 4TFλIW4ZLЃյ qh^6ؾUUiPt zڛh1CN0  qGx V\0AYx3GgĀ>k fRǝN+soUT{ oycXWw.DoDCKH+p1i(go̖]pK1>r4mFj!U" V҄ -ӍdkQ9%c\.Tx1XP$Ad?&aoa h[7x ?YK:n0.ܹXצ~R)426H8Hp tmRSVkiξѷH\nȒc79MHrR2Kh+'5M+߹|$>j$h *jkC-bիmw-AhANP֊~25akM$ 9DVBQO< "IuҤIBhĉߟ&6IQQQ۷oW(`AAAk֬[xq``s=nYTTϾ˃^4}RteeeO?vd1cL>] Nrvvl ?$1mٲ%44i+xXdIll)S=Aeddteye0rN}:7nܨj_z饇l?߿9rȐ!bX p\am۶s۷GFFXo߾j|-Z2k,>lŊ7n7n*0ǚN4WHk`+!|vL"tǐ}HgƧ۹6[+`h&>COa|\9t8U¶ Ri@aFJ0Ŗp$T'h,7/ Mpf+a$ε[ު||QQiWM:,@/x@miġ@8KЦ4 kgZNFX- wS$ ? X'MPG-xwm% 1I[SH 2}sx>kK:`-@l@oN3Q(n=^~3CmO9:S8IN+Mv&z^c!P!T7:)SRR|||B!áizݟ~۷=<<&N*˗/ϟ?&M}LJd?wʕ+/^liaKOZ[[/^7) Jl(7=( :u ؑÿ պcǎZ.Kd߾}zȆg~'OjlD$:F:޽{G9p@DH5$ IDATDɓJK{96ظ}ݻwV}6nܘ3ywy'88XT~7G~ȼ"Ԇ FOd]veddܻwOVF$( 8WQD;7nÇǏߕ'Ls}=c]׷gϞG1cƯn̲'OښyڵݻwǮݻwݻwAAgffM7cƌN= EiiiNN͛7)z7Mx<<]v[wK}H`|(p>^v14Fxhn1UvE- RƊQbͫL,VCP  cs83&yw ⛹9B R4Hw.0i Φ0 'h<8V1ޅ€QH\96d.hil=uުG?5Rdx1 }C#S^ F?m3>: eu=G/)iljOTi#GEWds! hy ZiiWYOwP͎$@!Avz1P¨YHS6e+j-mAjZ300 )ۗ} e!C%  ʔ5e`hp9p0_~r /^pŋ7f̘ .ddd9rd2,"""""Et+gׯmhΟ?iƽ{TWWj__ߧ~z|2IKܺulx#F1bZbg''}}}WTT|G2l+XuGC_^.wgϞ}ѣGw%"wԮE988$%%%%%4]^^~Ν[nm߾}ݺu}_קO^z ֖NRtщvl4X-[ܾ}{ԩ-j7,8d~~ZwUdԤשm`~g )T31uImTF0oHvZ;N0`eka0(F> W/͙dDL4Fp^[|)VtU˧yթ 1 =PC8-Gw:ݦcgGꕥ-m5Rk\&S ЪqCJ oBpt [bV "jKm*D2' v4Ѣ7t@!͢% fDi1|֚NX3xK!06  l+T!ZxmsȖKL@Ɗx쓌K`헫 O8c wݡW\^޾};''g߾}۷owqqIHHHOOWw)((qécsZ!!!{Dlv򼼼ӧOD=z|W<&$$DDDX{PT111^^^/^<}'|B099999޽{yyyEEEla```PPD"r*7n7ouO,zxx=3gt1T0`O??Z2z:qDff빑$8bBXUUuׯ9sV$q\GGGGٳ=..nԨQ^^^...urwss;wN:wޢ/v))={ΑS^^G[ޕ/i ,H˻I@ӵcA{MYwb9ԵB CGѫv+urCAMeq U(M#2˒+] .ơ6)Ç̂rD"Rtht6hI1h@pAW>r!Pxڡ) g# i8ӢZFz 1 1NzuV#Qi6WJ:ᄌ:I9Tm6\!PVI m]IC=jXhX &6R1;g[iw  M1FS`gz-stq }-[Z7:9%%6777//ѣ!!!cƌqwwh4mmm B.WWW;wܾ}pE9::>cެ,L&srrKVY[6mڃ(Ns xudݸǎĚ߼yԩSMMM @ pss ;wntt_{ڀVaÆu=-,&OcǎCvj`7\]]YWJ*JҠ~iZV}4;;;;;;333??_TڢdGdd7oN2`0č70Sqwٓmx<^Mg)'C_~b.rq䞄Fgoq> S%0 p ȖVAycHVuЩ=y^IoE 'd/xx$6ׂNs[E{2Fz$4@V<`Ե?b %B^ԦEpBFh3c-CH($m/Gef)vU7`-bG @YjB cšn@+а0(@SiL{ q¥oX˟|2sŊXzYYR.wTTZh4YYYxlPd4E"` I`0466ܿ%...!!!99Y"x<֊WjzrFQ(3gΔz*yyyyyyٓ3p\PpݽXviiiWLc$''ux=pSR0p3gΔ:9#]\\u T7o߸q]{pppxK0 .fi6 Mjօ788زMQPP&H͟aACw[$1n,ݺ 5:lCwݨJo9CxZd9Qڇo + QD9Y5Y#(ڂ$/5(9dA>@2PW{[;zIV`b,<@clo\e8ƀBpI)Ng?ߎֆc7ebmg "9s /?ӧz_LKKrJHHHWB$D"quuѣKh4eee5553bP(?y䈈///<~QXXx?gz)VAV+])#׿8/++{DXcbb222vwwOMMݽ{Ro9qDxx{Zn6DZkYݳg޽{kjjE"shhD"d2,33o߾oڵk )))''o߾$I=zҥ!!!R8?]1H&we7`àM`7?0@EA{]+aPrW.-fRؿaAjܶ*gWu7,FQV`Q$юvTdz> TӶubڌ 4V!L1qMah4:{`3> f-^KWQp`s-zI1jJD+[ӞuRԋ+*=FBoYKkxgÑD nn884PL1I02Z &aa)hs}YL&wb3ϣ63 pD 9K"x=у(Iwjtt8TF ߸q YA>]v?H|P(={vǧx㍒65w600ВQAEuqA0uԏ>h6Q݃޶m۲e {cǎm۶-33СC2ãuԩ bX( M$ 6O>|ƍrP^ M˛$!yg@Aq&f"KPFK A^ڊ&j m$ v@q[%fʻ`:3086f;F[$Ffw[!j<~mLAJEVx4Ƹpa99͟Ԝ^N>}z)ѓDEB|Z !"AqQ0+ؼh #Nɻ>,HkOFZṅ$٪r$5ˁZpIHzk: (H|B[msv}kXQ|-FuR>cjA㄄'N̘1?s޽{W^ۿx''9s79rABԩS7oX=z;nݺ7=X|GWW׀+Wt=y2`C}+Wf͚6mZ8>}gz_~o4kkkݻ' ÇJeYY 4hPJJJQQQ]]ڵkKKKn) NZZZ\DPUB ;Fh>Fdlw6_ejA [.\ѸiЏ2CdʂAiBB|JWS ]FL wqx9 T/vՁ2Q$ F$RkD5lk H@F[mŎ?ZV= !l@ߝ?{G3ַgvvvbb"JJJnn}ݫW;V(0 ##ѣ=zĉD S֬Yxbk>^߶m.\uK_k]\\Baiip `Gnݎ;v޽s\]%~~'N'0G&ړ2dR/_ϟ4iR}}=ǻxbdd䃺 D"DEEE]ͤI uC`oN;ws`؄ݟ_ Vs+DYN)67T v:6܄jhk%E*D5Jm(WL~=F#b7/z2^wSPo;GܪUsJOsg(h(s/@s-oiו8=q~|]" @Ә_()A+sUVI2ʏW}@xIwړE)-VL3I Wc]";4ʡ@rp:V6oh j*@  5'i[~8Kc%.Y_YwpD#/<ӎEuK JHH(((xg222&L0u &:ҥK۶mرcNj3gάYf#Fx\>h׮]k׮O8q#G1b:~3gFGGwnÇG?qX ͛77lPQQs 6Z37֚FDDDqq#=D{C{+RL <:䫱;, Q9T#]Ts} C6F\(lF}_aI*lM;ڰM ߂pe\]QFk'v H,cZ4@n[0 $)ϹoWu*C) @&;wnڴi&\& IDAT` :U͍pvvNOOOOOڼyszzzbbԩSYsuu֭[.\:nܸѣG$ٕFߚh4_}վ}.]:tPV{ԩ;vܹsgӦM[1=q#=D>}˲߄~~~O?Unڕٳ-Z4f̘Gwk[[[]]] x<ޕ+Wb1jްaC[[[CCCPPйs ~[L&dSL zg,[ۇ7_s^?CIt'FٹrE E7C%؆ -љ;i3a4@RnuF kj1Sg=>uŏ:s@ qǃ"##cccW^Vo޼y…5k888xyyJRDƂ~i߾}^^^cƌٳgOSSSll+Ѻ.*)1~9s*#Ù?{oLQѣ{3gY<{6ÿԇ/Y+줤S_r̙3|>_$wlllښkCh^DcEl>$wsqz{B8y>lV~PklBd`Kњ*DViqa E:䨰Qxy"VE{嚗Dr z\VEN>? 8ew#ԁ'r7B*_,zWZ|9qkK8U b%cf(8Y:5@pi;UCZ!;'{UoL=Env4c's DN"w߰XPPSXXhxн{w$O>ݣGAdn.]TVVfs玣f .;rȑ#Ggee]zʕ+\.ۻW^ӦMJ ݻGp8A~H$xB߬ԌR.)){nYYQBCCSSS{RC{u}#ZÇϝ;ƍ۲eKxxA=<< vĉ޽{?ȎQ^#FJ=zscc#M2A(>t:]UUUUUUIIIQQѭ[Ri^;]k4^oү`;\|1>׾\TC󇹅Y5 *5vb5F j5FpAn&> ;PWCh n-*j7mKޛU9`@HƦc/x4΂Xn{7"GW%ԶUpBAǐtƤִj;tx?ܾck.\QHvXYc A޶J`k`d %h3wZUdo16YJۋ/{%Ef"-J[5~%Kll :bmHHH߾}3fX.?v}5t7n]϶ ]pȑ#*ǧG RukjjjllU(^rEn/))lhh(*..nСQQQ...k9eܹf͚9sfWx,$ׯw .պˈ#.\ք OJosvv=ztWliilBbIIIJ9///??̙3rgϞZi,j+**֮];xNJRUPFH4LB!Kx$zcB$|̟Y P[Wkʼ7 .FZ4C2*;P-Wu>Ā; O>=?cԐn>LY x͛wَOHH8~Çg͚ƑcǎK8WWW߻woƌ]0`.77ܹsAHҀXZ 燵/++C wuuo5sG} ??^z۷oʔ)酎sYtiBB¯J iӦ]6997waGW0LYY@ pvv{nhhhmXݻ K.?~|ݺuC6lXdd\.wuuY/OgggvIhsbРNd 44Me.ih(h¦d<:ˢiu~ W/LBu`MuFL(i{;nPOcQOK2!n5=aλZlɇ.4(jqS%%gP*55$$&R<^'w@фQ1ٵ:`hИCC=#Lbv,$hz`D@@Y"7Fn AuJ40~(T Ml;zв,* n/!8^YAR\]\AyyT*)R՝*;<}駟f"FQ׳EzXl4u:]B{-**Rv '9~ʇbz  (J0()-Ew`h*ޭvaJPCXĕ*l{qR'yGU'\Ó(́(S3 hqGm4c|+1ѢMe44gQMc0H8fWQԣp7(3Y(<%uL2 ڸ=E<? p9x&QAl8mx#FGG_"cnyT*9V,ܿSw} ޿x3BCCz-/Z֭[˟ ?|*{ kn 55?pʕ+9Nnn#^Pj)zc*âJ3 3-+حkX &bbݨXHtw0ߏH" \\ÉsSnFG]))*L^ ނf>/ WHDړk0cb!4^d@Pfi@m9`ί`b8WLY4((L1!u9rR XM0]ç  LAd"WRr ׃x0;^p& D0H6.vT"sM^o8h⁍V#=ڮDv'*?vZ:f{}  ]yhB%&&b099sw!!>'/_f+++ə2e fq܏kKpp)++;{@}?~rooH3---555uuu c=hرc7o|UU[nyyy%$$uZ( qGr0 zA@P}3مbѣGhSSS$[:6l][[c->wՠ۪ڿ)222FXRRRϞ=y>|8$$ѣGٳwхǻ ư""""##kQL&YŋSL133(--=v%gffv ѕxcƌtt ݻf67TaZ8qno f10 EX L4T^J$rO:4Ze-5CEW ~ u CBIkA ?p@ JQmh4Ȓ6'0$(`v`[a`4.,((psss 6EPjjjT*l5o޼{CSSsΝˍW\)--7v-FvtTT5dff*++QEr̙2c 2vĉ-[\t)11k'LӧKth4DcjjjIHH4755׵/F;XápxzI  hj'p {nkPPz+4W͡S 灬 5FbPW lȍ.Ԁ AAסP2Pm7.$N @jخ@s ! jr65@^BiW?0hEwةt%Z Km|ȝd T:@PLdQ@fLWTTdX=lSAAA99F?͛7=<<wޝL&388800p׮]Ӈ"EEE ?kB۰U988TTT;vLZZ/6o޼} Dĭ:Hi2R]uS,+**bXJJJOpvfSgF1K+@D. ش}Ԗխv/n)PrX2`'ـLj" g-[ʮAQQ1;;477)rΜ93gΤ7o~cX|ɵbbb)4t7vvvk?9}C:tL&Q֯_) >dkx|[[&$$YVVf07@7dZ555p\4>踺hĨGkgJggنPKK S*...!!p-% Re@BS-ľW8l@{r'㊑AeYe.$e풇 :0Zx`1 Bk]JsqP,- v+Y0u|xT&A\*f? ;~A\<œcv Wx-ԦyE*v݆ @=YfL:}•]S|x<=F" }= ))Yf-Z977L&+))Y566ጌlv\\v'V"H555uvvx"B2@v}3 77WBB_d"2U ˗/O]]]h4D"IJJN0?xю;ZZZ֯_?q#Gdff"Z< ""B9NF  & :07ח/f sqĥ4VBnv-Iyh~]6 uRmnQP[+30BH/-  \,fP ѡ Fum' QY0sVwnW8+ʆ6:и_3~1^ <({;\b6-ܻwowPBBduuuo*F9+Z4o<$*((8::򉖏9zsssYYYss𖖖 !!q`0gp8w\Zaaᝯ"YYYC,:Dも: ĮbFP4+W,,,$T*ǵ#ɩ7@8qR'm60AuvбAMȓnx`Pzdǡ!>d`H;L,(C,t@tE3@}TechN\"`Ł}ȿ+܍M{]ԗCv)(b`-w3SL˗/}|]xxTLFLfO8q]1>Z---43>1a„ڡ$?޽;88իW#"""""~BSwr[[[ |!&F577wv5d2U\X,vܸqٳ6mîFP{RcX?we*jl8AE8/e=8\jv jHAsc{&3#[|z׸)FTxfІ# IDAT l&  @Ѡ&΄+@\ b VSX )J~\ޥ2YoAKMۮiV\`ͣ=[q55561`KveS+**YSSSBB"==f222D"ϲ>r-gffՍfΜ5A<==n>>>*0N]~]KKK__ft<"%%  Dt:#))inn3s_CC(,,lΜ9/^@a筫ٳUTXslz{+g9y kn73 P_B:V )ۭ ,l:5byPS o 1q\>[?Z cggx,zϘ充i4Tl#=}tBEwuǏYL04_}ϟ[;%K r8@dpPrDj(EDD{GeeeI$ݻw~ȑ#戏ZMMM^^~Ϟ=]ע8q!%Z }[b@%cr/׽U;2 jEy1<&pfj~mNh2I a RC|xm0v0P aiYU6^;[0UEh3%gay~oqqqZZZ/D}}=BQRRήKQQBLX>0cƌ 8ץK>}?ɓ~\XXXHHbCݸqCKKedd466 }X6-,,|Miiid!JE;ڨQoܛ/!իW`tuu.]zܹ*BǏs玻'Op۶msiBΗTGr@g`=ޱt(JrY_6ٝ/6 $V!eByHH@շ`1vY/P "=Ԋ0fC#@rLh k=ׂL?v hZ755h\8#&&62|ggg&9ڠcǎgϞus VVV;w<7=-ZdggiӦaSDD"d .\( r-''WYY;8<6mW^x1o< 9" wޔ87oޫW֯__TT9AB\77p ~@V'*EGyl'hM 'v7y ORWWFr0 8.mW -n"J Yq]à+jt.;yh\EYiNXkk>'UIII+`0P(T>\ f͚5'NɃn޼9$$dWpqqٹs3gnܸя*$$cǎ,.X͛vvv!zSTD|{wb222*//_^^ޛJ333` Lstt\n_LL̢E\\\={(۷oڵK.rrrrU$0΀_I A4ALlEPG h12`tf@(H,k7@  #NM@K AAY 52A$9A` 8񸥥hWUU! h{̴ƛJ]]|Yf555~zĎ:y˗/K ˗'%XLL?P(ʣF\;`pBhDa\`$%%bQQQo544Dr¦MҮ]֏[quu# >||#Gnܸ$vKR-[vI׿i͝ ׶aEp 90f& 'J3j/w07WYШnUX<@qu;#$Z<&, xw`>=!n1s5pۀ!Oľs~zGEEtЉ▖>CFs-|$iڵ.]vi~\SLaXH<@9rFmٲ%++[ܹS^^~۶mÕāFa.?|۷;r EEEDF :^ANN.**txJ@PPPHHѣG:::ҽRLL¢> @^^[q,gjjb;&""2,%%Pϟ>޽{p8111UUU 'Ĭ0ۂqq~dttŋrrLZۨ>R3xTxi286d|hy]^FXrJlLgx@mKۉGkXj@w_GW^O?{m[[ԩSvrrB@绹9A>NPWWw„ W\1FXzuii˗/KkϚ5700pϞ=ߊh(gK());vl={&MMMM3f̸qF $H!0@@Ț}jXYYlbg 133۸q3^:ڊ+[P(@&'Oo˖-SWWP(wܙ>}:P(gΜ-++w^RRRII͛7q8ܹo//9y67%[} {7VUU ˗/Ì3.]D2[s#kk7nHIIM<[@gg={$&&FDD 222<<<444:Y__ܹ , KOO,,,+//?}UUUgϞC-MVnU*zǝET(`N7AW屡5ڻw-(fn{ }8?~ا%77ktW緵)Gzlٲ߇HTVVpႄİM| ⒒GqppR H3f̨:}4VVVFza ɉDޞ={t]>~xΝǏGRԽ{Xl.+UUo= jmmMOO733_lYo !!>h3O.&&VPPɓ&''R(6p~ϟ_pIFFTTT$---f"""""""d2YDDFc04Ғ/^Ԅ]~HkkUVijjnPRLKT[T-Ha*q7ZTB*0(P `9~,Y8H$,'Otuu1[:~-[z,tŋ555r\/_>,J f7[}i``nݺ3gHII!MG...^^^'Nq3hlذŋqqq/G]\\LMM/^knn2;'N6mZ3}Ν;h4t:=,,***[nK\P}G饥zzzUlmm&O8RRRSLA򮳳233o߾`H$2 dɒɓ'"oa͚5O~eNN͖p t:!u4"-- ++K&ťh+W==={޼.C;/Z`2?)yvr˜M_:OXDrpV/ @P b.Xqb0+Brss{wHNNټys_ Ŋ7n܏ Z>sw`ҤIǏzm>>>>>>;{?|bŊ>swz iӦ%\]]͛ghhq͟?1+={2gΜ)S "Ai(`0 c(r˗\䄤I5}tVRRFx ɱYbŷ~(tׯAˋEPmll]\\zl#""6c8NRRR]]i 5jԨʈत$SSNĨ(:H400}veerqqqHH۷kjjdddz{\KN>mooo<<;?G ""u֛7o.Yddܞ'O\>@ **k׮ŋ;wncƌ1cRuPQQQQQY` P([[[8 щr,(( 222+VXbř3g@DMMMQQQXXX\\\BBbwܙ6mԩSutt\]]htUUUXXثW._$&''?|֬YrrrǏζ?̺ϋ/|B&Ǐ?2ӧ%%%8nddӧOjaa1|%%[iӦA.]JPvu;tG>x`NN80zh E 􀲲YΟ?} ߺu\Ⴛ+WBCC UUUT*666>|`0Ǐ]%##hѢE>yԩS4mرw܉=~ŋ{C}} p8رc{GXb2;\TTgGtdJ --ʕ+6m_k$::j>\7ڵkϜ9###3~z4n:sΒϟ?GGGKJJ"]ZP(6.;,h77W^Đ䪪*D_fVUUeffFEEܹSEEELLLVVVUU*80{/_y&%%D"  ~O>eff?@ HII! k4`466(**gee}ɉL&WWW?yDCCCSSs…RWW>ޠR˝޾円bӧOO8S}Op8D4oxO􆺺:9scC PWWґA@TTT__VEEN'$$<~8""YPPpXMbȵBBBD"ݻwRRRϟb0RRR FKK9;;ŋ_r?XVVDXX8))˗^ѱVVVFPչF|||llliiiMM D?ڵk'Mؘ͛Ǐq8R???acc1hKiiidd==QTTTqqٳXl\\ܱc&N8gΜ/ess9s n>۵_,Y$//#((hh߿ΝCo3@011122jlllhhIHHv233311P? b =pk׮ڵɓ'NNNK.UUU$Hϟ?wqqlkkknnNNN~ٵk-Z4cƌanٲ%55>ϏD"! ?A+++RRR綌b0"uر˗/WUUˋ1cƌ;޾O[EEE{ŋ߿$=V#G$bijjN2|0@ׯ_qF?f:th˖-#`0 wpp@333߽{WTTڪ̙$ zʅ4iwrr h/vvv IKK۱crDDD?lii]hAAA;;;[[ۋ/k֬Yrh4"itzdddxxxdd$3003f2Hu JMM}TTT| ӧONڱc1@@uZ[[{{k FRRZoIMM}ի7o۵;x" L?'Npsssvv[R"GiiV64rsrrnݺ/ (ۿDDDrr̙#**KJJlr>]v;vPEEEEFF xi֭4wѢE]VUUFGG'&&tDY]]P[[{]vSXXxȑ+VXXXt&I޾}{mwƍou퍊 ===777___>b8rGw`P\=+^ZZQ^^?wx>ܷoѣ7<r[[۱cɹ}~~~K.uqq?6P(MMMrrrjjjd2kb zjSS̙30===###++VBB%??ժURRRᛘzƊ&++2--u |x؄%|zyy#ֈ***:$ 6h|>RRRϓ'OJKKo'''GFFa0GGGgg޾MHNNx񢡡add >}ZPP@&Lfdd)y׍V^wHeggP(.YEEv --C:mm@yyPRR}v---**,,b޿4=zDھ}رcN:ݹsg͚5W^A|[n}wԨQ#o|\~=66vٲeNNNk18xyyٳw6`---=pկ_>eʔٳg755ǧ988r;vE򒒒l*JP SRRtܥKsuuo߾*t:L7//o޽'OTPPWy5k Pd1;;{̙gϞw㟂z}mo}d ^|o"2ςU||CCjiiӝ;wN:,!!1a„ٳg7nvI$R^^^aarhhhPPnرΝ311IIIqƛ7oq8L&?^WWwq}OQ(QQQ===##"݇_Kee%իh4 "xmIIٳg'%%O:@ ۶m?}t~>s?HK.Y[[QUU544wއƎ sFVVVTTTXXXVVTUU?ŋǎ!""2T[[[ddbPPЕ+Wx<ބ ***p8Pzzz``kX,֨Qx<@EP^^^ߕ5hnn޶mۗ/_Dڶmd^^իW/_bҶo߾m۶ ----عsgovd0Ϟ=,l6̙3'O29>ԖC;~<|Ӹc hhhnjӹ\pǏAb6ӧO>7III)::sٲe+W|ݻwWVVp8 dɒ͛7wxo߾ onn8qC=zr/_>tUUO"ɓ'ϟ|Z[[M=CHHȑ#G-Z|b? ñG!f߾}w^kkk k=x?~<0ҏCUU՞={P(ԪUL/ɓ'ϝ;քuuu'N#H 2tLbcc###SRRZ[[srr&Mzjyyy r%$$G&HҒ+$$`deeziiiaaa\.Ʀիo߾_nnٳg{b.\P]]o߾'w޽}={Ǝ˿s ˗/޾}L^zeaa1s6cx1{lwwos7n{xx$&&~L&)))u ;::VWWYZZZYY))) ?~9`~AMNNzܹsuuuykiiޗN[nҥ8.^XSSallF>\B^^/CwM0aܹ@ΝKNN>wܷ6سgܹs'L4NKKK#M;eTS]6fIIɄLgiiihh>\-yyy޽f2::: ETTtԩg۷|HP֬Y\$Mv~Z>|0<<ۻ4)+++))imm5777113fgϮ\2iҤS奦&&&UTTəX[[ N$===%%%22˗/%%%vvvT*M2`(bccʕ+tzUUUiiiVVϟ߿ooolbbӵ |||h;z Dcbbf̘aeeůϵr444ϛ7GtIZ[[_zu5MMM6¿6mߺuk?l…J'$$feeX[[P'O8;;oذ( JONNNJJɡR∦QB篘fWUU577WVV%'' h4Դ͛7-222z:B```FFݻ:X~M[[[]]====+++??_DDDKKKSSS^^^VV}߾}zzz44###** lmmG4| .ˠU<ǣP(!!! ,XbEg?IIInnndEFF>}СC6"kmmMNNjnnvvv޹sv'Us8.d2YYYyyyHwbq8C.<F#X1c?;ss_~eݿի. y󦷷xT*5---772...//OMMM@@QNVTTTSS355Eܢh~h>L[ooosse˖έ׷b...$?.\6jnn2O>;w.""BSSLOO韃4]G vŵt:)9bx<^\\\JJJAA!777&&Ǐ... ._`>}uΝ]?l]]ݾ}Ǝ;o;o޼˗8|o޸qDGG8qM:^BB6ŋg>{mh4?tYf}L&ĉ>|?~}:455!Mjjjjkk FPX,` V/HE %TUUmݺյw 6fhhO/B>s244;gTTԻwJKK---\w}e```ݿ˃ … kޝ5u~ $@b , D6PF(S!Z-i ֕eJ:uAFՂb)51@JuYpss}̹9'.U}L&Cу\VLPTZ}С\T&%%ر]mllLHH(**z#0=ź{3Q''3gzzzjqҥ +M@ vvvzB Lf2eee/y jjj*,,pnnnoDkjjj:tPeǏyjjC?>%BϷғxhX,ܹs\uR(;w466N>orssY,V``y~`09g,]|ѣor…x ւ377wttLKKB1)S.\А[\\p͍@ZBWknܸq8o#KKr a=Qܹs(܂]VRR2yGzz:N?qD^[[ǏO0A x 7UyR\.ٳ EUU՝;wj̙3N[jבU7D".Nc0ŋ/_|#i4]Kbb{l*wTT/_$wuk>T7nܸo߾Yfك.7!!a  ֎ J2222***&&fXG=zIWg„ ...nnnBP(MuGѨjZRT*RxL&ٳgvvvgà.##cSLyEEEׯ_OMMGq?SSSǎcwwxYYY}_|2111<<\ڱɹsLfrr2Tk1{fee=;T&]|>offF X;)ph4Z7T*{zz4P(dD&BH$|||]dff&%%R0''ӧI"77f͊pww{ܺ]8NVVDڶm#immhk֬yW$ ւ ~Çb7I$.@ E"T* A cƌ177bVVV666x<D"hee5@[[ۮ] j魭_-,..nii>^\Z>{lSSSFFZkd2YVV@ h->WJPg RIDAT*d̘19ɓ #//ϐKBqȑǏ7oZUUu햖ww%KDFGG Fnڴs,kΝ)))AAAF!XOfff&M? 1<C.H& DoJիͻu떱A.|ٳ+V ;rH[[[vUQQvq6Rܦ644T׭Ȑa?gPZ0| X f F":::Mֿ*}`(//SAT;;ãׇ/_r2LZXXX[[D'''' Jw.^hHZkZmKKKOO xv.===;##リcǎ,_?SISyխ[ܹCP6l`xƎn5F  B8ΝIopႹyttW\A_|L.4gΜkr~0+++++b>ŕ500P*>}Wa2iii555aaaW&HV.XYY rc]ɓ555XVL㏈Ox<ޱcjkk#""-ZdooA/h4/^qF ZA Ů]USSˑSFӧO߼ysٱGb0KII9s& QtvvƮXb ~^^\dҥKI$0zfJEw.X 66O'骻DEEYFk>}߆|WEEE?&H3f̘>}!EH$Dp>|Xb [[ہM:u޽0X GWQQqA6cƌ㕗WVVvvv7H$zzz?YZZgVTD,D"@d2Y,VggP( 箮'b-ڵkNRFLyyCCpoo)D&BRTPzK$$j{{{mll<<<&Mdl6;%%ՕJ~Pz1kO?ܹ3$$ĸ{J<O`nRMLLrhRhH$666x<~رF<6Ꚕ4h˸^6/ҥKMMM-,,ۺu̘1κjRVukRB}{Mw^77}-LIIIqq1FP(#sݻw۷]<|l+W\jUbb"1W7o޳gZ ___kk봴4;;'"2WVWWWo߾=,,,99yX!0t  Fjjٳ׭[7LOH,_tdݺuQQQpfX f;JG&?{,//s۶m]Z1I$ .TVVZ 9K.Q(hC B`i4Gc0={8::zڵkΝ mX ! KKK׮]34ԩS!!![l@]CCCZZT*ݿ9W^QThZWƺ|ªJߏ޺u+ 0Bd3gt??p<?ڮ]V]]uVVNb-`Hrʓ'O}||d2DBrykkkmmmUUUGGL^r%DsZF2>_]]]UU%ɐHB1bZkkkkjjr9 ~OTX. M"LMM?tZD:;;ds 0Jdf.doogp8 `tKҞplvss?caabk4Zh4"bl.B@ 0V$...( D" 9՗!rIENDB`elk-7.2.42/examples/magnetism-source-free/Ba122/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520022020 xustar0030 mtime=1623670096.099101393 30 atime=1623670096.099101393 30 ctime=1623670096.099101393 elk-7.2.42/examples/magnetism-source-free/Ba122/elk.in0000644002504400250440000000474514061636520024067 0ustar00dewhurstdewhurst00000000000000 ! Magnetism in BaFe2As2 using the source-free version of LSDA. ! Source-Free Exchange-Correlation Magnetic Fields in Density Functional Theory ! S. Sharma, E. K. U. Gross, A. Sanna and J. K. Dewhurst ! Journal of Chemical Theory and Computation 14 (3), 1247 (2018) tasks 0 ! ground-state run 72 ! 2D plot of magnetisation 82 ! 2D plot of B_xc 83 ! 3D plot of B_xc 92 ! 2D plot of divergence of B_xc 152 ! 2D plot of m(r) x B_xc(r) ! enable source-free B_xc nosource .true. ! spin exchange-correlation scaling factor (see article) sxcscf 1.12 highq .true. ngridk 8 8 6 xctype 3 spinpol .true. spinorb .true. plot2d 0.0 0.0 0.5 1.0 0.0 0.5 0.0 1.0 0.5 600 600 plot3d 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 200 200 200 scale 9.8337 avec 1.078174 0.000000 0.000000 -0.000000 1.096817 0.000000 0.000000 0.000000 2.473656 primcell .true. sppath '../../../species/' atoms 3 "Ba.in" 4 0.00000 -0.00000 -0.00000 0.00000 0.00000 0.00000 0.00000 0.50000 0.50000 0.00000 0.00000 0.00000 0.50000 0.50000 -0.00000 0.00000 0.00000 0.00000 0.50000 -0.00000 0.50000 0.00000 0.00000 0.00000 "Fe.in" 8 0.75000 0.25000 0.25000 0.00000 0.00000 -0.01000 0.75000 0.75000 0.25000 0.00000 0.00000 0.01000 0.25000 0.25000 0.25000 0.00000 0.00000 -0.01000 0.25000 0.75000 0.25000 0.00000 0.00000 0.01000 0.75000 0.25000 0.75000 0.00000 0.00000 0.01000 0.75000 0.75000 0.75000 0.00000 0.00000 -0.01000 0.25000 0.25000 0.75000 0.00000 0.00000 0.01000 0.25000 0.75000 0.75000 0.00000 0.00000 -0.01000 "As.in" 8 0.00000 -0.00000 0.64970 0.00000 0.00000 0.00000 0.00000 -0.00000 0.35030 0.00000 0.00000 0.00000 0.50000 0.50000 0.64970 0.00000 0.00000 0.00000 0.50000 0.50000 0.35030 0.00000 0.00000 0.00000 0.00000 0.50000 0.14970 0.00000 0.00000 0.00000 0.00000 0.50000 0.85030 0.00000 0.00000 0.00000 0.50000 -0.00000 0.14970 0.00000 0.00000 0.00000 0.50000 -0.00000 0.85030 0.00000 0.00000 0.00000 elk-7.2.42/examples/PaxHeaders.21776/molecules0000644000000000000000000000013214061636520015660 xustar0030 mtime=1623670096.106101386 30 atime=1623670096.100101392 30 ctime=1623670096.106101386 elk-7.2.42/examples/molecules/0000755002504400250440000000000014061636520017772 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/molecules/PaxHeaders.21776/C600000644000000000000000000000013014061636520016206 xustar0029 mtime=1623670096.10210139 30 atime=1623670096.101101391 29 ctime=1623670096.10210139 elk-7.2.42/examples/molecules/C60/0000755002504400250440000000000014061636520020322 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/molecules/C60/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520017374 xustar0029 mtime=1623670096.10210139 29 atime=1623670096.10210139 29 ctime=1623670096.10210139 elk-7.2.42/examples/molecules/C60/elk.in0000644002504400250440000000550714061636520021434 0ustar00dewhurstdewhurst00000000000000 ! C60 buckyball example. This example has high memory and time requirements and ! employs iterative diagonalisation. tasks 0 ! use iterative diagonalisation for the first-variational step tefvit .true. ! molecule calculation molecule .true. ! use very small energy cut-off rgkmax 4.0 sppath '../../../species/' ! use an fcc box to contain the molecule avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 24.0 ! the atomic coordinates are Cartesian with molecule=.true. atoms 1 : nspecies 'C.in' : spfname 60 : natoms; atposc below 4.20790955 1.12423579 5.07240250 5.92255243 0.30577656 3.09053347 2.53625794 -0.58931105 6.15449739 5.89150423 -2.19125067 2.27598598 6.07911622 -2.76287388 -0.40300296 6.14208189 2.34350589 1.26288498 6.32168145 1.79658139 -1.30022597 6.28972619 -0.81331917 -2.15152863 -0.85451519 2.59699373 6.10424958 0.89249869 4.38777367 4.97351314 -0.05102260 0.16353689 6.68186323 3.36781297 3.66786366 4.46912637 4.56285678 4.42127851 2.11483015 -0.49930340 5.89307270 3.14654495 0.64416979 6.61402206 0.89416165 3.23137475 5.86189222 0.36707927 -4.04684820 -1.59965305 5.07597408 -4.88658574 0.94354019 4.47250898 -1.68274430 -1.98120762 6.15625484 -3.32578546 2.99557474 4.97542176 -3.10623709 5.03232141 3.14743312 -6.29775752 0.83554235 2.11927100 -6.08784676 2.78439786 0.37044299 -4.45682426 4.92933134 0.89618365 -0.95746747 -5.66581425 3.40868774 -3.42822750 -5.26727104 2.27991661 -0.10387824 -4.05947157 5.30402621 -4.93898784 -3.27912812 3.09521999 -6.32980727 -1.77424483 1.26783606 -3.23999190 -5.83991471 -0.39909123 -4.57094481 -4.40022696 -2.14742792 -6.15020772 -2.32243545 -1.29533158 4.14416909 -3.98220068 3.40634448 3.25204835 -5.66116553 1.42568487 2.50352789 -3.19913602 5.30279789 0.75764784 -6.48459473 1.42687540 -0.65282474 -6.59204455 -0.92630589 4.44820711 -4.90778847 -0.92840348 3.09860260 -5.01057066 -3.17986082 0.49168780 -5.87162431 -3.17872698 -4.21537397 -1.10412910 -5.10475461 -3.37499392 -3.64732234 -4.50151628 -0.89933950 -4.36660874 -5.00582745 -2.54410030 0.61009804 -6.18628259 -4.15359883 4.00310105 -3.43858320 -5.90029145 2.21167861 -2.30835699 -5.93067825 -0.28551870 -3.12307455 -2.51263637 3.22020647 -5.33473426 0.94767869 5.68830199 -3.44022726 -0.76728544 6.50657224 -1.45864170 -3.26164816 5.68270840 -1.45786691 0.09442961 4.08156247 -5.33543346 4.03843892 1.62287778 -5.10734353 4.93027621 3.30214499 -3.12685400 3.41902454 5.29011783 -2.31168290 1.67416495 2.00384654 -6.18737863 0.84756100 -2.57503512 -6.13588359 3.31858560 -2.97318149 -5.00728254 4.87893235 -0.92061781 -4.50446425 0.04346370 -0.14161607 -6.71310040 elk-7.2.42/examples/molecules/PaxHeaders.21776/H2O-iterative0000644000000000000000000000013214061636520020242 xustar0030 mtime=1623670096.104101388 30 atime=1623670096.103101389 30 ctime=1623670096.104101388 elk-7.2.42/examples/molecules/H2O-iterative/0000755002504400250440000000000014061636520022354 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/molecules/H2O-iterative/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021422 xustar0030 mtime=1623670096.105101387 30 atime=1623670096.104101388 30 ctime=1623670096.105101387 elk-7.2.42/examples/molecules/H2O-iterative/elk.in0000644002504400250440000000136314061636520023462 0ustar00dewhurstdewhurst00000000000000 ! Water molecule in a box. This example uses iterative diagonalisation which may ! be used for fine-grained parallelism. tasks 0 maxscl 30 lorbcnd .true. ! solve the first-variational eigenvalue equation iteratively tefvit .true. ! molecule calculation (atomic positions are in Cartesian coordinates) molecule .true. ! put molecule in a large box avec 6.0 0.0 0.0 0.0 6.0 0.0 0.0 0.0 6.0 sppath '../../../species/' ! atomic positions in Cartesian coordinates atoms 2 : nspecies 'O.in' : spfname 1 : natoms; atposc below 0.0 0.0 0.0 'H.in' 2 1.811 0.0 0.0 -0.451907959 1.753710409 0.0 elk-7.2.42/examples/molecules/PaxHeaders.21776/NaCl-monomer0000644000000000000000000000013214061636520020147 xustar0030 mtime=1623670096.107101385 30 atime=1623670096.106101386 30 ctime=1623670096.107101385 elk-7.2.42/examples/molecules/NaCl-monomer/0000755002504400250440000000000014061636520022261 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/molecules/NaCl-monomer/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021327 xustar0030 mtime=1623670096.108101384 30 atime=1623670096.107101385 30 ctime=1623670096.108101384 elk-7.2.42/examples/molecules/NaCl-monomer/elk.in0000644002504400250440000000163714061636520023373 0ustar00dewhurstdewhurst00000000000000 ! NaCl monomer in a large box. Note that with 'molecule=.true.' the atomic ! positions are supplied in Cartesian coordinates. Try plotting the 1D ! density along the molcular axis. You can also compute the vibrational ! frequency using task=200. tasks 0 molecule .true. ! large smearing width improves convergence for molecules swidth 0.05 rgkmax 6.0 ! large box containing the molecule avec 10.0 0.0 0.0 0.0 10.0 0.0 0.0 0.0 10.0 sppath '../../../species/' ! note that atomic positions are now in Cartesian coordinates atoms 2 : nspecies 'Na.in' : spfname 1 : natoms; atposc below 0.0 0.0 0.0 'Cl.in' : spfname 1 : natoms; atposc below 4.4121 0.0 0.0 plot1d 2 1000 0.0 0.0 0.0 1.0 0.0 0.0 elk-7.2.42/examples/PaxHeaders.21776/structure-factors0000644000000000000000000000013214061636520017367 xustar0030 mtime=1623670096.110101383 30 atime=1623670096.109101384 30 ctime=1623670096.110101383 elk-7.2.42/examples/structure-factors/0000755002504400250440000000000014061636520021501 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structure-factors/PaxHeaders.21776/MnO0000644000000000000000000000013214061636520020060 xustar0030 mtime=1623670096.111101382 30 atime=1623670096.110101383 30 ctime=1623670096.111101382 elk-7.2.42/examples/structure-factors/MnO/0000755002504400250440000000000014061636520022172 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structure-factors/MnO/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021240 xustar0030 mtime=1623670096.111101382 30 atime=1623670096.111101382 30 ctime=1623670096.111101382 elk-7.2.42/examples/structure-factors/MnO/elk.in0000644002504400250440000000455014061636520023301 0ustar00dewhurstdewhurst00000000000000 ! MnO in AFMII structure with LDA, in analogy with NiO example. Unit cell from ! Transactions and Journal of the British Ceramic Society (1984) 83, 5-9. ! ! This example illustrates the calculation of X-ray and magnetic structure ! factors which are the Fourier transforms of the electron density and ! magnetisation, respectively. ! ! The structure factors are calculated for the reflections whose diffraction ! vectors have lengths up to hmaxvr (given in a.u.). The connection to the ! traditional sin(theta)/lambda ratio is ! ! max|H| = 4*pi*max(sin(theta)/lambda) [wavelength also in a.u.!] ! ! Additionally, the hkl indices of the reflections are transformed by matrix ! vhmat. ! ! Since the primitive magnetic unit cell (given by avec) is bigger than the ! conventional crystallographic unit cell (cubic with a = 8.397946), a ! non-integer hkl indices appears when reflections are reindexed to the latter ! with vhmat. They have zero intensity for X-ray structure factors but are of ! non-zero intensity in case of magnetic structure factors. ! ! Example by Alexey I. Baranov. tasks 0 195 196 spinpol .true. scale 8.397946 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Mn.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 ! fairly high number of empty states nempty 8 sppath '../../../species/' ! this grid is too small for accurate magnetic moment ngridk 4 4 4 ! maximum |H| hmaxvr 6.0 ! H-vectors are reduced by the symmorphic crystal symmetries reduceh .true. ! uncomment the following lines to define an energy window for which only the ! orbitals within this window will contribute to the structure factors !wsfac ! -1.0 -0.1 ! H-vector transformation matrix for the conventional cell (cubic, a=8.397946) ! in the usual matrix row-column setting and applied directly as H' = MH but ! only for the output of the structure factor files. vhmat 1.5 -0.5 -0.5 -0.5 1.5 -0.5 -0.5 -0.5 1.5 ! For accurate results fine radial mesh (lradstp=1) should be used. lradstp 1 elk-7.2.42/examples/PaxHeaders.21776/README0000644000000000000000000000013014061636520014623 xustar0029 mtime=1623670096.11310138 30 atime=1623670096.112101381 29 ctime=1623670096.11310138 elk-7.2.42/examples/README0000644002504400250440000000037714061636520016671 0ustar00dewhurstdewhurst00000000000000 Elk Code examples Please note that these examples are simply to demonstrate the features of the code. Any calculations used for production work must be thoroughly checked for convergence with respect to input parameters. elk-7.2.42/examples/PaxHeaders.21776/Compton-scattering0000644000000000000000000000013114061636520017447 xustar0030 mtime=1623670096.125101369 29 atime=1623670096.11310138 30 ctime=1623670096.125101369 elk-7.2.42/examples/Compton-scattering/0000755002504400250440000000000014061636520021562 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Compton-scattering/PaxHeaders.21776/Li0000644000000000000000000000013214061636520020014 xustar0030 mtime=1623670096.119101374 30 atime=1623670096.115101378 30 ctime=1623670096.119101374 elk-7.2.42/examples/Compton-scattering/Li/0000755002504400250440000000000014061636520022126 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Compton-scattering/Li/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021174 xustar0030 mtime=1623670096.117101376 30 atime=1623670096.116101377 30 ctime=1623670096.117101376 elk-7.2.42/examples/Compton-scattering/Li/elk.in0000644002504400250440000000163214061636520023233 0ustar00dewhurstdewhurst00000000000000 ! Once-integrated electron momentum density (EMD) plot for fcc Li. ! First the EMD is calculated on a regular H+k grid. This is then interpolated ! and integrated perpendicular to the plotting plane given by plot2d. The files ! required for plotting the EMD with OpenDX are included in this directory. ! Example by David Ernsting and Stephen Dugdale. tasks 0 170 172 ! the 2D plotting plane vertices are given in reciprocal lattice coordinates plot2d -2.0 -2.0 0.0 -2.0 2.0 0.0 2.0 -2.0 0.0 100 100 ! maximum length of H+k-vectors for the regular EMD grid hkmax 7.0 ! large k-point grid required ngridk 20 20 20 avec 0.5 0.5 -0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 scale 6.6226 sppath '../../../species/' atoms 1 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 elk-7.2.42/examples/Compton-scattering/Li/PaxHeaders.21776/emd2d.general0000644000000000000000000000013214061636520022423 xustar0030 mtime=1623670096.118101375 30 atime=1623670096.118101375 30 ctime=1623670096.118101375 elk-7.2.42/examples/Compton-scattering/Li/emd2d.general0000644002504400250440000000027114061636520024460 0ustar00dewhurstdewhurst00000000000000file = EMD2D.OUT grid = 100 x 100 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 2-vector, scalar type = float, float end elk-7.2.42/examples/Compton-scattering/Li/PaxHeaders.21776/emd2d.net0000644000000000000000000000013214061636520021574 xustar0030 mtime=1623670096.120101373 30 atime=1623670096.120101373 30 ctime=1623670096.120101373 elk-7.2.42/examples/Compton-scattering/Li/emd2d.net0000644002504400250440000003741414061636520023642 0ustar00dewhurstdewhurst00000000000000// // time: Mon Jan 26 19:22:44 2015 // // version: 3.2.0 (format), 4.4.4 (DX) // // // MODULE main // workspace: width = 425, height = 581 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[2]: x = 199, y = 111, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "emd2d.general" // main_Import_2_out_1 = Import( main_Import_2_in_1, main_Import_2_in_2, main_Import_2_in_3, main_Import_2_in_4, main_Import_2_in_5, main_Import_2_in_6 ) [instance: 2, cache: 1]; // // node RubberSheet[2]: x = 138, y = 249, inputs = 4, label = RubberSheet // main_RubberSheet_2_out_1 = RubberSheet( main_Import_2_out_1, main_RubberSheet_2_in_2, main_RubberSheet_2_in_3, main_RubberSheet_2_in_4 ) [instance: 2, cache: 1]; // // node Colormap[3]: x = 351, y = 266, inputs = 19, label = Colormap // input[1]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.666667] [1.0 0.0] } // input[2]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[3]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[4]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[5]: defaulting = 0, visible = 0, type = 32, value = "Colormap_3" // input[7]: defaulting = 1, visible = 0, type = 5, value = 4.1046274e-06 // input[8]: defaulting = 1, visible = 0, type = 5, value = 0.014571383 // input[9]: defaulting = 1, visible = 0, type = 1, value = 20 // input[12]: defaulting = 0, visible = 0, type = 16777221, value = { 4.1046274e-06 0.014571383 } // input[17]: defaulting = 0, visible = 0, type = 5, value = 4.1046274e-06 // input[18]: defaulting = 0, visible = 0, type = 5, value = 0.014571383 // window: position = (17.0661,30.3398), size = 17.0661x30.3398 // main_Colormap_3_out_1[cache: 2], main_Colormap_3_out_2[cache: 2] = Colormap( main_Colormap_3_in_1, main_Colormap_3_in_2, main_Colormap_3_in_3, main_Colormap_3_in_4, main_Colormap_3_in_5, main_RubberSheet_2_out_1, main_Colormap_3_in_7, main_Colormap_3_in_8, main_Colormap_3_in_9, main_Colormap_3_in_10, main_Colormap_3_in_11, main_Colormap_3_in_12, main_Colormap_3_in_13, main_Colormap_3_in_14, main_Colormap_3_in_15, main_Colormap_3_in_16, main_Colormap_3_in_17, main_Colormap_3_in_18, main_Colormap_3_in_19 ) [instance: 3, cache: 1]; // // node Color[4]: x = 277, y = 387, inputs = 5, label = Color // main_Color_4_out_1 = Color( main_RubberSheet_2_out_1, main_Colormap_3_out_1, main_Color_4_in_3, main_Color_4_in_4, main_Color_4_in_5 ) [instance: 4, cache: 1]; // // node Image[4]: x = 226, y = 519, inputs = 49, label = Image // input[1]: defaulting = 0, visible = 0, type = 32, value = "Image_4" // input[4]: defaulting = 0, visible = 0, type = 1, value = 1 // input[5]: defaulting = 0, visible = 0, type = 8, value = [3.98495 2.30071 0.460402] // input[6]: defaulting = 0, visible = 0, type = 8, value = [3.98495 2.30071 23.7018] // input[7]: defaulting = 0, visible = 0, type = 5, value = 12.455 // input[8]: defaulting = 0, visible = 0, type = 1, value = 826 // input[9]: defaulting = 0, visible = 0, type = 5, value = 0.751 // input[10]: defaulting = 0, visible = 0, type = 8, value = [0 1 0] // input[11]: defaulting = 1, visible = 0, type = 5, value = 29.9999 // input[12]: defaulting = 0, visible = 0, type = 1, value = 0 // input[14]: defaulting = 0, visible = 0, type = 1, value = 1 // input[15]: defaulting = 1, visible = 0, type = 32, value = "none" // input[16]: defaulting = 1, visible = 0, type = 32, value = "none" // input[17]: defaulting = 1, visible = 0, type = 1, value = 1 // input[18]: defaulting = 1, visible = 0, type = 1, value = 1 // input[19]: defaulting = 0, visible = 0, type = 1, value = 0 // input[29]: defaulting = 1, visible = 0, type = 3, value = 0 // input[41]: defaulting = 0, visible = 0, type = 32, value = "rotate" // depth: value = 24 // window: position = (0.2953,0.1796), size = 0.4375x0.6120 // internal caching: 1 // main_Image_4_out_1, main_Image_4_out_2, main_Image_4_out_3 = Image( main_Image_4_in_1, main_Color_4_out_1, main_Image_4_in_3, main_Image_4_in_4, main_Image_4_in_5, main_Image_4_in_6, main_Image_4_in_7, main_Image_4_in_8, main_Image_4_in_9, main_Image_4_in_10, main_Image_4_in_11, main_Image_4_in_12, main_Image_4_in_13, main_Image_4_in_14, main_Image_4_in_15, main_Image_4_in_16, main_Image_4_in_17, main_Image_4_in_18, main_Image_4_in_19, main_Image_4_in_20, main_Image_4_in_21, main_Image_4_in_22, main_Image_4_in_23, main_Image_4_in_24, main_Image_4_in_25, main_Image_4_in_26, main_Image_4_in_27, main_Image_4_in_28, main_Image_4_in_29, main_Image_4_in_30, main_Image_4_in_31, main_Image_4_in_32, main_Image_4_in_33, main_Image_4_in_34, main_Image_4_in_35, main_Image_4_in_36, main_Image_4_in_37, main_Image_4_in_38, main_Image_4_in_39, main_Image_4_in_40, main_Image_4_in_41, main_Image_4_in_42, main_Image_4_in_43, main_Image_4_in_44, main_Image_4_in_45, main_Image_4_in_46, main_Image_4_in_47, main_Image_4_in_48, main_Image_4_in_49 ) [instance: 4, cache: 1]; // network: end of macro body CacheScene(main_Image_4_in_1, main_Image_4_out_1, main_Image_4_out_2); } main_Import_2_in_1 = "emd2d.general"; main_Import_2_in_2 = NULL; main_Import_2_in_3 = NULL; main_Import_2_in_4 = NULL; main_Import_2_in_5 = NULL; main_Import_2_in_6 = NULL; main_Import_2_out_1 = NULL; main_RubberSheet_2_in_2 = NULL; main_RubberSheet_2_in_3 = NULL; main_RubberSheet_2_in_4 = NULL; main_RubberSheet_2_out_1 = NULL; main_Colormap_3_in_1 = { [0.0 0.666667] [1.0 0.0] }; main_Colormap_3_in_2 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_3_in_3 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_3_in_4 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_3_in_5 = "Colormap_3"; main_Colormap_3_in_7 = NULL; main_Colormap_3_in_8 = NULL; main_Colormap_3_in_9 = NULL; main_Colormap_3_in_10 = NULL; main_Colormap_3_in_11 = NULL; main_Colormap_3_in_12 = { 4.1046274e-06 0.014571383 }; main_Colormap_3_in_13 = NULL; main_Colormap_3_in_14 = NULL; main_Colormap_3_in_15 = NULL; main_Colormap_3_in_16 = NULL; main_Colormap_3_in_17 = 4.1046274e-06; main_Colormap_3_in_18 = 0.014571383; main_Colormap_3_in_19 = NULL; main_Colormap_3_out_1 = NULL; main_Color_4_in_3 = NULL; main_Color_4_in_4 = NULL; main_Color_4_in_5 = NULL; main_Color_4_out_1 = NULL; macro Image( id, object, where, useVector, to, from, width, resolution, aspect, up, viewAngle, perspective, options, buttonState = 1, buttonUpApprox = "none", buttonDownApprox = "none", buttonUpDensity = 1, buttonDownDensity = 1, renderMode = 0, defaultCamera, reset, backgroundColor, throttle, RECenable = 0, RECfile, RECformat, RECresolution, RECaspect, AAenable = 0, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, interactionMode, title, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, webOptions) -> ( object, camera, where) { ImageMessage( id, backgroundColor, throttle, RECenable, RECfile, RECformat, RECresolution, RECaspect, AAenable, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, interactionMode, title, renderMode, buttonUpApprox, buttonDownApprox, buttonUpDensity, buttonDownDensity) [instance: 1, cache: 1]; autoCamera = AutoCamera( object, "front", object, resolution, aspect, [0,1,0], perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; realCamera = Camera( to, from, width, resolution, aspect, up, perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; coloredDefaultCamera = UpdateCamera(defaultCamera, background=backgroundColor) [instance: 1, cache: 1]; nullDefaultCamera = Inquire(defaultCamera, "is null + 1") [instance: 1, cache: 1]; resetCamera = Switch( nullDefaultCamera, coloredDefaultCamera, autoCamera) [instance: 1, cache: 1]; resetNull = Inquire( reset, "is null + 1") [instance: 2, cache: 1]; reset = Switch( resetNull, reset, 0) [instance: 2, cache: 1]; whichCamera = Compute( "($0 != 0 || $1 == 0) ? 1 : 2", reset, useVector) [instance: 1, cache: 1]; camera = Switch( whichCamera, resetCamera, realCamera) [instance: 3, cache: 1]; AAobject = AutoAxes( object, camera, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels) [instance: 1, cache: 1]; switchAAenable = Compute("$0+1", AAenable) [instance: 2, cache: 1]; object = Switch( switchAAenable, object, AAobject) [instance:4, cache: 1]; SWapproximation_options = Switch( buttonState, buttonUpApprox, buttonDownApprox) [instance: 5, cache: 1]; SWdensity_options = Switch( buttonState, buttonUpDensity, buttonDownDensity) [instance: 6, cache: 1]; HWapproximation_options = Format( "%s,%s", buttonDownApprox, buttonUpApprox) [instance: 1, cache: 1]; HWdensity_options = Format( "%d,%d", buttonDownDensity, buttonUpDensity) [instance: 2, cache: 1]; switchRenderMode = Compute( "$0+1", renderMode) [instance: 3, cache: 1]; approximation_options = Switch( switchRenderMode, SWapproximation_options, HWapproximation_options) [instance: 7, cache: 1]; density_options = Switch( switchRenderMode, SWdensity_options, HWdensity_options) [instance: 8, cache: 1]; renderModeString = Switch( switchRenderMode, "software", "hardware")[instance: 9, cache: 1]; object_tag = Inquire( object, "object tag")[instance: 3, cache: 1]; annoted_object = Options( object, "send boxes", 0, "cache", 1, "object tag", object_tag, "ddcamera", whichCamera, "rendering approximation", approximation_options, "render every", density_options, "button state", buttonState, "rendering mode", renderModeString) [instance: 1, cache: 1]; RECresNull = Inquire( RECresolution, "is null + 1") [instance: 4, cache: 1]; ImageResolution = Inquire( camera, "camera resolution") [instance: 5, cache: 1]; RECresolution = Switch( RECresNull, RECresolution, ImageResolution) [instance: 10, cache: 1]; RECaspectNull = Inquire( RECaspect, "is null + 1") [instance: 6, cache: 1]; ImageAspect = Inquire( camera, "camera aspect") [instance: 7, cache: 1]; RECaspect = Switch( RECaspectNull, RECaspect, ImageAspect) [instance: 11, cache: 1]; switchRECenable = Compute( "$0 == 0 ? 1 : (($2 == $3) && ($4 == $5)) ? ($1 == 1 ? 2 : 3) : 4", RECenable, switchRenderMode, RECresolution, ImageResolution, RECaspect, ImageAspect) [instance: 4, cache: 1]; NoRECobject, RECNoRerenderObject, RECNoRerHW, RECRerenderObject = Route(switchRECenable, annoted_object); Display( NoRECobject, camera, where, throttle) [instance: 1, cache: 1]; image = Render( RECNoRerenderObject, camera) [instance: 1, cache: 1]; Display( image, NULL, where, throttle) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 1, cache: 1]; rec_where = Display( RECNoRerHW, camera, where, throttle) [instance: 1, cache: 0]; rec_image = ReadImageWindow( rec_where) [instance: 1, cache: 1]; WriteImage( rec_image, RECfile, RECformat) [instance: 1, cache: 1]; RECupdateCamera = UpdateCamera( camera, resolution=RECresolution, aspect=RECaspect) [instance: 2, cache: 1]; Display( RECRerenderObject, camera, where, throttle) [instance: 1, cache: 1]; RECRerenderObject = ScaleScreen( RECRerenderObject, NULL, RECresolution, camera) [instance: 1, cache: 1]; image = Render( RECRerenderObject, RECupdateCamera) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 2, cache: 1]; } main_Image_4_in_1 = "Image_4"; main_Image_4_in_3 = "X24,,"; main_Image_4_in_4 = 1; main_Image_4_in_5 = [3.98495 2.30071 0.460402]; main_Image_4_in_6 = [3.98495 2.30071 23.7018]; main_Image_4_in_7 = 12.455; main_Image_4_in_8 = 826; main_Image_4_in_9 = 0.751; main_Image_4_in_10 = [0 1 0]; main_Image_4_in_11 = NULL; main_Image_4_in_12 = 0; main_Image_4_in_13 = NULL; main_Image_4_in_14 = 1; main_Image_4_in_15 = NULL; main_Image_4_in_16 = NULL; main_Image_4_in_17 = NULL; main_Image_4_in_18 = NULL; main_Image_4_in_19 = 0; main_Image_4_in_20 = NULL; main_Image_4_in_21 = NULL; main_Image_4_in_22 = NULL; main_Image_4_in_23 = NULL; main_Image_4_in_25 = NULL; main_Image_4_in_26 = NULL; main_Image_4_in_27 = NULL; main_Image_4_in_28 = NULL; main_Image_4_in_29 = NULL; main_Image_4_in_30 = NULL; main_Image_4_in_31 = NULL; main_Image_4_in_32 = NULL; main_Image_4_in_33 = NULL; main_Image_4_in_34 = NULL; main_Image_4_in_35 = NULL; main_Image_4_in_36 = NULL; main_Image_4_in_37 = NULL; main_Image_4_in_38 = NULL; main_Image_4_in_39 = NULL; main_Image_4_in_40 = NULL; main_Image_4_in_41 = "rotate"; main_Image_4_in_42 = NULL; main_Image_4_in_43 = NULL; main_Image_4_in_44 = NULL; main_Image_4_in_45 = NULL; main_Image_4_in_46 = NULL; main_Image_4_in_47 = NULL; main_Image_4_in_48 = NULL; main_Image_4_in_49 = NULL; Executive("product version 4 4 4"); $sync main(); elk-7.2.42/examples/Compton-scattering/PaxHeaders.21776/Ni0000644000000000000000000000013014061636520020014 xustar0029 mtime=1623670096.12410137 30 atime=1623670096.121101372 29 ctime=1623670096.12410137 elk-7.2.42/examples/Compton-scattering/Ni/0000755002504400250440000000000014061636520022130 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Compton-scattering/Ni/PaxHeaders.21776/EMD1D.OUT0000644000000000000000000000013214061636520021256 xustar0030 mtime=1623670096.123101371 30 atime=1623670096.122101372 30 ctime=1623670096.123101371 elk-7.2.42/examples/Compton-scattering/Ni/EMD1D.OUT0000644002504400250440000001265614061636520023325 0ustar00dewhurstdewhurst00000000000000 0.000000000 13.36944509 0.3808160347E-01 13.36242486 0.7616320694E-01 13.34713589 0.1142448104 13.32147908 0.1523264139 13.27585701 0.1904080173 13.20894159 0.2284896208 13.13144996 0.2665712243 13.05060461 0.3046528277 12.95891882 0.3427344312 12.85570551 0.3808160347 12.73724511 0.4188976382 12.58594259 0.4569792416 12.40646548 0.4950608451 12.20258717 0.5331424486 11.98203209 0.5712240520 11.74982301 0.6093056555 11.50397852 0.6473872590 11.25947488 0.6854688624 11.02068933 0.7235504659 10.79507807 0.7616320694 10.59602405 0.7997136728 10.41950030 0.8377952763 10.24830043 0.8758768798 10.07520866 0.9139584832 9.896749716 0.9520400867 9.714049752 0.9901216902 9.530473138 1.028203294 9.339954965 1.066284897 9.140787720 1.104366501 8.935569331 1.142448104 8.738411330 1.180529708 8.561515588 1.218611311 8.394655152 1.256692914 8.228303536 1.294774518 8.068561140 1.332856121 7.910297932 1.370937725 7.742682296 1.409019328 7.573756340 1.447100932 7.410641772 1.485182535 7.254345570 1.523264139 7.097871593 1.561345742 6.940479426 1.599427346 6.789792236 1.637508949 6.639704472 1.675590553 6.489502153 1.713672156 6.355455259 1.751753760 6.239973890 1.789835363 6.120954124 1.827916966 5.988027446 1.865998570 5.841258977 1.904080173 5.692287515 1.942161777 5.546780416 1.980243380 5.395408983 2.018324984 5.236678739 2.056406587 5.076396106 2.094488191 4.928660100 2.132569794 4.796921137 2.170651398 4.667976134 2.208733001 4.538842525 2.246814605 4.414996074 2.284896208 4.291667931 2.322977812 4.163871229 2.361059415 4.036540109 2.399141019 3.912284859 2.437222622 3.794245903 2.475304225 3.679202305 2.513385829 3.567232516 2.551467432 3.462760945 2.589549036 3.361378745 2.627630639 3.263495724 2.665712243 3.177204176 2.703793846 3.100418825 2.741875450 3.022089438 2.779957053 2.938390805 2.818038657 2.850146442 2.856120260 2.763888755 2.894201864 2.680168113 2.932283467 2.593537368 2.970365071 2.504035903 3.008446674 2.415061089 3.046528277 2.334230769 3.084609881 2.261386065 3.122691484 2.189648361 3.160773088 2.119272318 3.198854691 2.052492680 3.236936295 1.985614800 3.275017898 1.917490125 3.313099502 1.850589025 3.351181105 1.786127365 3.389262709 1.725223654 3.427344312 1.665586690 3.465425916 1.608161480 3.503507519 1.554434647 3.541589123 1.502060642 3.579670726 1.452381398 3.617752329 1.409522582 3.655833933 1.370733010 3.693915536 1.330727243 3.731997140 1.288452971 3.770078743 1.244733351 3.808160347 1.202922648 3.846241950 1.162416103 3.884323554 1.120802947 3.922405157 1.078265333 3.960486761 1.036333665 3.998568364 0.9988444237 4.036649968 0.9649956003 4.074731571 0.9318476569 4.112813175 0.8997748555 4.150894778 0.8695350725 4.188976382 0.8389903421 4.227057985 0.8083465603 4.265139588 0.7786091047 4.303221192 0.7499539424 4.341302795 0.7229939196 4.379384399 0.6965284364 4.417466002 0.6713876299 4.455547606 0.6479272515 4.493629209 0.6251312139 4.531710813 0.6041244525 4.569792416 0.5862059253 4.607874020 0.5694603533 4.645955623 0.5520693813 4.684037227 0.5339913846 4.722118830 0.5158421203 4.760200434 0.4990218240 4.798282037 0.4827316178 4.836363640 0.4659253487 4.874445244 0.4486479322 4.912526847 0.4318071797 4.950608451 0.4171274069 4.988690054 0.4040055540 5.026771658 0.3911671146 5.064853261 0.3788656153 5.102934865 0.3672275819 5.141016468 0.3553093866 5.179098072 0.3434334700 5.217179675 0.3319091178 5.255261279 0.3207857681 5.293342882 0.3100308349 5.331424486 0.2991821951 5.369506089 0.2888413378 5.407587693 0.2790769534 5.445669296 0.2695133828 5.483750899 0.2607814560 5.521832503 0.2533991562 5.559914106 0.2461602714 5.597995710 0.2385604544 5.636077313 0.2307868105 5.674158917 0.2231243759 elk-7.2.42/examples/Compton-scattering/Ni/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520021202 xustar0029 mtime=1623670096.12410137 29 atime=1623670096.12410137 29 ctime=1623670096.12410137 elk-7.2.42/examples/Compton-scattering/Ni/elk.in0000644002504400250440000000170214061636520023233 0ustar00dewhurstdewhurst00000000000000 ! Twice-integrated electron momentum density (EMD) plot for ferromagnetic Ni. ! First the EMD is calculated on a regular H+k grid. This is then interpolated ! and integrated in directions which are mutually orthogonal to each other and ! along the plotting line. This line is given by plot1d. ! Example by David Ernsting and Stephen Dugdale. tasks 0 170 171 ! define the plotting line in reciprocal lattice coordinates plot1d 2 150 0.0 0.0 0.0 3.0 3.0 0.0 ! maximum length of H+k-vectors for the EMD hkmax 8.d0 ! small swidth to give a sharp profile swidth 0.00016 ngridk 20 20 20 spinpol .true. bfieldc 0.0 0.0 -0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.322 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/Compton-scattering/PaxHeaders.21776/Si-GW0000644000000000000000000000013214061636520020336 xustar0030 mtime=1623670096.126101368 30 atime=1623670096.125101369 30 ctime=1623670096.126101368 elk-7.2.42/examples/Compton-scattering/Si-GW/0000755002504400250440000000000014061636520022450 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Compton-scattering/Si-GW/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021516 xustar0030 mtime=1623670096.127101367 30 atime=1623670096.127101367 30 ctime=1623670096.127101367 elk-7.2.42/examples/Compton-scattering/Si-GW/elk.in0000644002504400250440000000244614061636520023561 0ustar00dewhurstdewhurst00000000000000 ! Compton profile determined for silicon from the GW approximation. ! The density matrices are calculated from the interacting Green's function at ! each k-point and the files EVECSV.OUT and OCCSV.OUT are updated. The electron ! momentum density (EMD) is then computed from these. tasks 0 : ground state calculation 600 : determined the GW self-energy 640 : write the natural orbitals and occupaction numbers 170 : write the EMD for each k-point 171 : produce the 1D EMD plot ! use LAPW nxoapwlo 1 ! Matsubara frequency cut-off wmaxgw 20.0 ! response function G-vector cut-off gmaxrf 3.0 ! temperature of many-body system (determines Matsubara frequency spacing) tempk 1000.0 ! define the plotting line in reciprocal lattice coordinates plot1d 2 150 0.0 0.0 0.0 3.0 3.0 0.0 ! maximum length of H+k-vectors for the EMD hkmax 8.d0 ngridk 8 8 8 ! q-point grid can be smaller than (but commensurate with) the k-point set ngridq 2 2 2 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 elk-7.2.42/examples/PaxHeaders.21776/ELNES0000644000000000000000000000013214061636520014536 xustar0030 mtime=1623670096.142101353 30 atime=1623670096.128101366 30 ctime=1623670096.142101353 elk-7.2.42/examples/ELNES/0000755002504400250440000000000014061636520016650 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELNES/PaxHeaders.21776/Pu0000644000000000000000000000013214061636520015122 xustar0030 mtime=1623670096.132101362 30 atime=1623670096.129101365 30 ctime=1623670096.132101362 elk-7.2.42/examples/ELNES/Pu/0000755002504400250440000000000014061636520017234 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELNES/Pu/PaxHeaders.21776/Pu+.in0000644000000000000000000000013214061636520016166 xustar0030 mtime=1623670096.131101363 30 atime=1623670096.130101364 30 ctime=1623670096.131101363 elk-7.2.42/examples/ELNES/Pu/Pu+.in0000644002504400250440000000472314061636520020231 0ustar00dewhurstdewhurst00000000000000 'Pu' : spsymb 'plutonium' : spname -94.0000 : spzn 444784.7903 : spmass 0.206284E-06 2.2000 42.3450 800 : sprmin, rmt, sprmax, nrmt 27 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 3.50000 T <---- 1/2 electron removed from next lowest state 4 2 2 4.00000 F 4 2 3 6.00000 F 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 5 3 4 3.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.50000 F <---- and added to highest state 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -1.7999 0 T 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -0.7412 0 T 2 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -30.0000 0 T elk-7.2.42/examples/ELNES/Pu/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016302 xustar0030 mtime=1623670096.132101362 30 atime=1623670096.132101362 30 ctime=1623670096.132101362 elk-7.2.42/examples/ELNES/Pu/elk.in0000644002504400250440000000140114061636520020333 0ustar00dewhurstdewhurst00000000000000 ! Electron loss near-edge spectroscopy (ELNES) of spin-polarised fcc plutonium. ! Take note of the modified species file, 'Pu+.in', and the requirement of ! spin-orbit coupling. tasks 0 140 spinorb .true. ! maximum allowed energy for the initial state in the double differential ! cross-section formula emaxelnes -20.0 wplot 300 100 6 : nwplot, ngrkf, nswplot 28.0 32.0 : wplot nempty 20 ! q-vector in lattice coordinates vecql 0.0 0.0 0.25 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 9.13730 atoms 1 : nspecies 'Pu+.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.01 : atposl, bfcmt ngridk 4 4 4 elk-7.2.42/examples/ELNES/PaxHeaders.21776/BN0000644000000000000000000000013214061636520015035 xustar0030 mtime=1623670096.140101355 30 atime=1623670096.133101361 30 ctime=1623670096.140101355 elk-7.2.42/examples/ELNES/BN/0000755002504400250440000000000014061636520017147 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELNES/BN/PaxHeaders.21776/B.in0000644000000000000000000000013114061636520015622 xustar0030 mtime=1623670096.135101359 29 atime=1623670096.13410136 30 ctime=1623670096.135101359 elk-7.2.42/examples/ELNES/BN/B.in0000644002504400250440000000172214061636520017662 0ustar00dewhurstdewhurst00000000000000 'B' : spsymb 'boron' : spname -5.00000 : spzn 19707.24740 : spmass 0.894427E-06 1.8000 43.3288 300 : sprmin, rmt, sprmax, nrmt 3 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/examples/ELNES/BN/PaxHeaders.21776/ELNES.OUT0000644000000000000000000000013214061636520016351 xustar0030 mtime=1623670096.136101359 30 atime=1623670096.136101359 30 ctime=1623670096.136101359 elk-7.2.42/examples/ELNES/BN/ELNES.OUT0000644002504400250440000002553414061636520020417 0ustar00dewhurstdewhurst00000000000000 18.00000000 0.000000000 18.01333333 0.000000000 18.02666667 0.000000000 18.04000000 0.000000000 18.05333333 0.000000000 18.06666667 0.000000000 18.08000000 0.000000000 18.09333333 0.000000000 18.10666667 0.000000000 18.12000000 0.000000000 18.13333333 0.000000000 18.14666667 0.000000000 18.16000000 0.000000000 18.17333333 0.000000000 18.18666667 0.000000000 18.20000000 0.000000000 18.21333333 0.000000000 18.22666667 0.000000000 18.24000000 0.000000000 18.25333333 0.000000000 18.26666667 0.000000000 18.28000000 0.000000000 18.29333333 0.000000000 18.30666667 0.000000000 18.32000000 0.000000000 18.33333333 0.000000000 18.34666667 0.000000000 18.36000000 0.000000000 18.37333333 0.000000000 18.38666667 0.000000000 18.40000000 0.000000000 18.41333333 0.000000000 18.42666667 0.000000000 18.44000000 0.000000000 18.45333333 0.000000000 18.46666667 0.000000000 18.48000000 0.000000000 18.49333333 0.000000000 18.50666667 0.000000000 18.52000000 0.000000000 18.53333333 0.000000000 18.54666667 0.000000000 18.56000000 0.000000000 18.57333333 0.000000000 18.58666667 0.000000000 18.60000000 0.000000000 18.61333333 0.000000000 18.62666667 0.000000000 18.64000000 0.4802983991E-10 18.65333333 0.4187232974E-08 18.66666667 0.1166852820E-06 18.68000000 0.1185389883E-05 18.69333333 0.7384946085E-05 18.70666667 0.3045664582E-04 18.72000000 0.9242656802E-04 18.73333333 0.2095808507E-03 18.74666667 0.3736608862E-03 18.76000000 0.5533811122E-03 18.77333333 0.7624387726E-03 18.78666667 0.1130701129E-02 18.80000000 0.1718257455E-02 18.81333333 0.2493497109E-02 18.82666667 0.3185876321E-02 18.84000000 0.3773753388E-02 18.85333333 0.4163071949E-02 18.86666667 0.4417930457E-02 18.88000000 0.4382860113E-02 18.89333333 0.4265167650E-02 18.90666667 0.4274114406E-02 18.92000000 0.4531939553E-02 18.93333333 0.4773633135E-02 18.94666667 0.4692470703E-02 18.96000000 0.4280908391E-02 18.97333333 0.3707009360E-02 18.98666667 0.3231771893E-02 19.00000000 0.2948639963E-02 19.01333333 0.2934893917E-02 19.02666667 0.3219916297E-02 19.04000000 0.3575260703E-02 19.05333333 0.3751330763E-02 19.06666667 0.3327580078E-02 19.08000000 0.2543806713E-02 19.09333333 0.1654728178E-02 19.10666667 0.1150618326E-02 19.12000000 0.9459602807E-03 19.13333333 0.8998660240E-03 19.14666667 0.8176059080E-03 19.16000000 0.7558026853E-03 19.17333333 0.9037873207E-03 19.18666667 0.1321903948E-02 19.20000000 0.1867767255E-02 19.21333333 0.2223600447E-02 19.22666667 0.2224099692E-02 19.24000000 0.1902702475E-02 19.25333333 0.1439482382E-02 19.26666667 0.9722495061E-03 19.28000000 0.5977864035E-03 19.29333333 0.3478918970E-03 19.30666667 0.2213236000E-03 19.32000000 0.1703656489E-03 19.33333333 0.1539137766E-03 19.34666667 0.1451793490E-03 19.36000000 0.1375585069E-03 19.37333333 0.1278149172E-03 19.38666667 0.1195727132E-03 19.40000000 0.1260018751E-03 19.41333333 0.1695476274E-03 19.42666667 0.3183900566E-03 19.44000000 0.5793807268E-03 19.45333333 0.9115068510E-03 19.46666667 0.1130902983E-02 19.48000000 0.1185230847E-02 19.49333333 0.1088279488E-02 19.50666667 0.9753621739E-03 19.52000000 0.8640461661E-03 19.53333333 0.7562832710E-03 19.54666667 0.6414338684E-03 19.56000000 0.5560142899E-03 19.57333333 0.5075797090E-03 19.58666667 0.4777864278E-03 19.60000000 0.4375588173E-03 19.61333333 0.3777842167E-03 19.62666667 0.3123612299E-03 19.64000000 0.2611515503E-03 19.65333333 0.2373966982E-03 19.66666667 0.2324238458E-03 19.68000000 0.2292782226E-03 19.69333333 0.2212538667E-03 19.70666667 0.2174469307E-03 19.72000000 0.2324020016E-03 19.73333333 0.2755053590E-03 19.74666667 0.3373106475E-03 19.76000000 0.4001468611E-03 19.77333333 0.4277098535E-03 19.78666667 0.4056550688E-03 19.80000000 0.3437894304E-03 19.81333333 0.2756163370E-03 19.82666667 0.2317231865E-03 19.84000000 0.2230530902E-03 19.85333333 0.2569834841E-03 19.86666667 0.3246486802E-03 19.88000000 0.4109200279E-03 19.89333333 0.4913710672E-03 19.90666667 0.5572174814E-03 19.92000000 0.6215124056E-03 19.93333333 0.7215388596E-03 19.94666667 0.8783714081E-03 19.96000000 0.1089505958E-02 19.97333333 0.1309540454E-02 19.98666667 0.1506600555E-02 20.00000000 0.1641843699E-02 20.01333333 0.1683875413E-02 20.02666667 0.1608065088E-02 20.04000000 0.1413556994E-02 20.05333333 0.1149511752E-02 20.06666667 0.8333914280E-03 20.08000000 0.5265343190E-03 20.09333333 0.2595013230E-03 20.10666667 0.9703860137E-04 20.12000000 0.2181874162E-04 20.13333333 0.4267836290E-05 20.14666667 0.8728401994E-06 20.16000000 0.4237144268E-07 20.17333333 0.000000000 20.18666667 0.000000000 20.20000000 0.000000000 20.21333333 0.000000000 20.22666667 0.000000000 20.24000000 0.000000000 20.25333333 0.000000000 20.26666667 0.000000000 20.28000000 0.000000000 20.29333333 0.000000000 20.30666667 0.000000000 20.32000000 0.000000000 20.33333333 0.000000000 20.34666667 0.000000000 20.36000000 0.000000000 20.37333333 0.000000000 20.38666667 0.000000000 20.40000000 0.000000000 20.41333333 0.000000000 20.42666667 0.000000000 20.44000000 0.000000000 20.45333333 0.000000000 20.46666667 0.000000000 20.48000000 0.000000000 20.49333333 0.000000000 20.50666667 0.000000000 20.52000000 0.000000000 20.53333333 0.000000000 20.54666667 0.000000000 20.56000000 0.000000000 20.57333333 0.000000000 20.58666667 0.000000000 20.60000000 0.000000000 20.61333333 0.000000000 20.62666667 0.000000000 20.64000000 0.000000000 20.65333333 0.000000000 20.66666667 0.000000000 20.68000000 0.000000000 20.69333333 0.000000000 20.70666667 0.000000000 20.72000000 0.000000000 20.73333333 0.000000000 20.74666667 0.000000000 20.76000000 0.000000000 20.77333333 0.000000000 20.78666667 0.000000000 20.80000000 0.000000000 20.81333333 0.000000000 20.82666667 0.000000000 20.84000000 0.000000000 20.85333333 0.000000000 20.86666667 0.000000000 20.88000000 0.000000000 20.89333333 0.000000000 20.90666667 0.000000000 20.92000000 0.000000000 20.93333333 0.000000000 20.94666667 0.000000000 20.96000000 0.000000000 20.97333333 0.000000000 20.98666667 0.000000000 21.00000000 0.000000000 21.01333333 0.000000000 21.02666667 0.000000000 21.04000000 0.000000000 21.05333333 0.000000000 21.06666667 0.000000000 21.08000000 0.000000000 21.09333333 0.000000000 21.10666667 0.000000000 21.12000000 0.000000000 21.13333333 0.000000000 21.14666667 0.000000000 21.16000000 0.000000000 21.17333333 0.000000000 21.18666667 0.000000000 21.20000000 0.000000000 21.21333333 0.000000000 21.22666667 0.000000000 21.24000000 0.000000000 21.25333333 0.000000000 21.26666667 0.000000000 21.28000000 0.000000000 21.29333333 0.000000000 21.30666667 0.000000000 21.32000000 0.000000000 21.33333333 0.000000000 21.34666667 0.000000000 21.36000000 0.000000000 21.37333333 0.000000000 21.38666667 0.000000000 21.40000000 0.000000000 21.41333333 0.000000000 21.42666667 0.000000000 21.44000000 0.000000000 21.45333333 0.000000000 21.46666667 0.000000000 21.48000000 0.000000000 21.49333333 0.000000000 21.50666667 0.000000000 21.52000000 0.000000000 21.53333333 0.000000000 21.54666667 0.000000000 21.56000000 0.000000000 21.57333333 0.000000000 21.58666667 0.000000000 21.60000000 0.000000000 21.61333333 0.000000000 21.62666667 0.000000000 21.64000000 0.000000000 21.65333333 0.000000000 21.66666667 0.000000000 21.68000000 0.000000000 21.69333333 0.000000000 21.70666667 0.000000000 21.72000000 0.000000000 21.73333333 0.000000000 21.74666667 0.000000000 21.76000000 0.000000000 21.77333333 0.000000000 21.78666667 0.000000000 21.80000000 0.000000000 21.81333333 0.000000000 21.82666667 0.000000000 21.84000000 0.000000000 21.85333333 0.000000000 21.86666667 0.000000000 21.88000000 0.000000000 21.89333333 0.000000000 21.90666667 0.000000000 21.92000000 0.000000000 21.93333333 0.000000000 21.94666667 0.000000000 21.96000000 0.000000000 21.97333333 0.000000000 21.98666667 0.000000000 elk-7.2.42/examples/ELNES/BN/PaxHeaders.21776/N+.in0000644000000000000000000000013214061636520015712 xustar0030 mtime=1623670096.138101357 30 atime=1623670096.138101357 30 ctime=1623670096.138101357 elk-7.2.42/examples/ELNES/BN/N+.in0000644002504400250440000000253414061636520017753 0ustar00dewhurstdewhurst00000000000000 'N+' : spsymb 'nitrogen with pseudo core-hole' : spname -8.00000 : spzn 25532.72506 : spmass 0.755929E-06 1.4500 26.9237 300 : sprmin, rmt, sprmax, nrmt 4 : spnst 1 0 1 2.00000 F : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 2 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -0.6020 0 T 0 3 0.1500 0 F 0.1500 1 F -20.0000 0 T elk-7.2.42/examples/ELNES/BN/PaxHeaders.21776/N.in0000644000000000000000000000013214061636520015637 xustar0030 mtime=1623670096.139101356 30 atime=1623670096.139101356 30 ctime=1623670096.139101356 elk-7.2.42/examples/ELNES/BN/N.in0000644002504400250440000000222014061636520017670 0ustar00dewhurstdewhurst00000000000000 'N' : spsymb 'nitrogen' : spname -7.00000 : spzn 25532.65213 : spmass 0.755929E-06 1.8000 33.2667 300 : sprmin, rmt, sprmax, nrmt 4 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 2 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -0.6770 0 T elk-7.2.42/examples/ELNES/BN/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016215 xustar0030 mtime=1623670096.141101354 30 atime=1623670096.141101354 30 ctime=1623670096.141101354 elk-7.2.42/examples/ELNES/BN/elk.in0000644002504400250440000000356214061636520020260 0ustar00dewhurstdewhurst00000000000000 ! Calculation of the electron loss near-edge spectroscopy (ELNES) for boron ! nitride. Note that a 16 atom supercell has been constructed with a special ! N atom (defined in the species file 'N+.in') for which the nuclear and ! electronic charges have been increased by one, and the 1s core code state has ! been included as a valence state by adding a local-orbital at the appropriate ! energy. This approximates the local core-hole interation. Compare with Phys. ! Rev. B 64, 115107 (2001). ! This example is well converged and is of publication quality. However it is ! fairly time-consuming and is best run on a multi-processor machine. tasks 0 140 ! spin-orbit coupling required to obtain realistic 1s state in valence spinorb .true. ! ELNES q-vector in lattice coordinates vecql 0.0 0.0 0.125 ! energy range for ELNES plot wplot 300 150 3 : nwplot, ngrkf, nswplot 18.0 22.0 : wplot (for the nitrogen K-edge) ! maximum allowed energy for the initial state in the double differential ! cross-section formula emaxelnes -10.0 ! large number of empty states required nempty 30 ngridk 8 8 8 avec 9.674352 0.0 0.0 4.837176 8.378234597 0.0 4.837176 2.792744866 7.899075331 atoms 3 : nspecies 'B.in' : spfname 8 : natoms; atposl below 0.0 0.0 0.0 0.0 0.0 0.5 0.0 0.5 0.0 0.0 0.5 0.5 0.5 0.0 0.0 0.5 0.0 0.5 0.5 0.5 0.0 0.5 0.5 0.5 'N+.in' : spfname 1 : natoms; atposl below 0.125 0.125 0.125 'N.in' : spfname 7 0.125 0.125 0.625 0.125 0.625 0.125 0.125 0.625 0.625 0.625 0.125 0.125 0.625 0.125 0.625 0.625 0.625 0.125 0.625 0.625 0.625 elk-7.2.42/examples/ELNES/PaxHeaders.21776/Cu0000644000000000000000000000013014061636520015103 xustar0029 mtime=1623670096.14510135 30 atime=1623670096.142101353 29 ctime=1623670096.14510135 elk-7.2.42/examples/ELNES/Cu/0000755002504400250440000000000014061636520017217 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ELNES/Cu/PaxHeaders.21776/Cu+.in0000644000000000000000000000013214061636520016134 xustar0030 mtime=1623670096.144101351 30 atime=1623670096.143101352 30 ctime=1623670096.144101351 elk-7.2.42/examples/ELNES/Cu/Cu+.in0000644002504400250440000000373314061636520020177 0ustar00dewhurstdewhurst00000000000000 'Cu+' : spsymb 'copper with pseudo core-hole' : spname -29.0000 : spzn 115837.2717 : spmass 0.371391E-06 2.0000 37.1331 500 : sprmin, rmt, sprmax, nrmt 10 : spnst 1 0 1 1.50000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 1.50000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 8 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -2.6152 0 T 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -4.0000 0 T 1 3 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -34.0000 0 T 0 3 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -41.0000 0 T elk-7.2.42/examples/ELNES/Cu/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520016271 xustar0029 mtime=1623670096.14510135 29 atime=1623670096.14510135 29 ctime=1623670096.14510135 elk-7.2.42/examples/ELNES/Cu/elk.in0000644002504400250440000000225214061636520020323 0ustar00dewhurstdewhurst00000000000000 ! Electron loss near-edge spectroscopy for fcc Cu. Note that a special species ! file has been constructed to simulate dynamical core-hole effects by removing ! half an electron from the 1s core state (even though we are interested in the ! 2s and 2p transitions). This is a publication-quality calculation and may take ! some time to complete. ! No supercell is required because of the strong metallic screening of copper. ! Compare with Eur. Phys. J. B21, 363 (2001). tasks 0 140 ! spin-orbit coupling required for accurate description of deep valence states spinorb .true. ! maximum allowed energy for the initial state in the double differential ! cross-section formula emaxelnes -30.0 ! energy range for ELNES plot wplot 500 200 1 : nwplot, ngrkf, nswplot 33.0 37.5 : wplot (suitable for the Cu L3 edge) vecql 0.0 0.0 0.1 rgkmax 8.0 gmaxvr 14.0 nempty 20 ngridk 10 10 10 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 6.83117 atoms 1 : nspecies 'Cu+.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/PaxHeaders.21776/Mossbauer0000644000000000000000000000013214061636520015630 xustar0030 mtime=1623670096.163101333 30 atime=1623670096.146101349 30 ctime=1623670096.163101333 elk-7.2.42/examples/Mossbauer/0000755002504400250440000000000014061636520017742 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/PaxHeaders.21776/Mg2SiO40000644000000000000000000000013214061636520016754 xustar0030 mtime=1623670096.152101344 30 atime=1623670096.148101347 30 ctime=1623670096.152101344 elk-7.2.42/examples/Mossbauer/Mg2SiO4/0000755002504400250440000000000014061636520021066 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/Mg2SiO4/PaxHeaders.21776/EFG.OUT0000644000000000000000000000013214061636520020023 xustar0030 mtime=1623670096.149101347 30 atime=1623670096.149101347 30 ctime=1623670096.149101347 elk-7.2.42/examples/Mossbauer/Mg2SiO4/EFG.OUT0000644002504400250440000002127714061636520022071 0ustar00dewhurstdewhurst00000000000000 (electric field gradient tensor is in Cartesian coordinates) Species : 1 (Mg), atom : 1 EFG tensor : 0.4540892586E-01 -0.1763387239E-01 0.6360381772E-01 -0.1763387239E-01 -0.6707466662E-01 0.5324981887E-01 0.6360381772E-01 0.5324981887E-01 0.2166574076E-01 trace : 0.2255140519E-15 eigenvalues : -0.1057174610 0.4640486884E-02 0.1010769741 Species : 1 (Mg), atom : 2 EFG tensor : 0.4540892586E-01 -0.1763387239E-01 -0.6360381772E-01 -0.1763387239E-01 -0.6707466662E-01 -0.5324981887E-01 -0.6360381772E-01 -0.5324981887E-01 0.2166574076E-01 trace : -0.8673617380E-16 eigenvalues : -0.1057174610 0.4640486884E-02 0.1010769741 Species : 1 (Mg), atom : 3 EFG tensor : 0.4540892586E-01 0.1763387239E-01 -0.6360381772E-01 0.1763387239E-01 -0.6707466662E-01 0.5324981887E-01 -0.6360381772E-01 0.5324981887E-01 0.2166574076E-01 trace : -0.2324529458E-15 eigenvalues : -0.1057174610 0.4640486884E-02 0.1010769741 Species : 1 (Mg), atom : 4 EFG tensor : 0.4540892586E-01 0.1763387239E-01 0.6360381772E-01 0.1763387239E-01 -0.6707466662E-01 -0.5324981887E-01 0.6360381772E-01 -0.5324981887E-01 0.2166574076E-01 trace : -0.5204170428E-16 eigenvalues : -0.1057174610 0.4640486884E-02 0.1010769741 Species : 1 (Mg), atom : 5 EFG tensor : -0.8040555871E-01 -0.3650637845E-01 -0.3047653057E-16 -0.3650637845E-01 0.1498274433E-01 -0.1054253974E-15 -0.3047653057E-16 -0.1054253974E-15 0.6542281438E-01 trace : -0.7216449660E-15 eigenvalues : -0.9277343976E-01 0.2735062538E-01 0.6542281438E-01 Species : 1 (Mg), atom : 6 EFG tensor : -0.8040555871E-01 -0.3650637845E-01 -0.8533708916E-16 -0.3650637845E-01 0.1498274433E-01 -0.1268311785E-15 -0.8533708916E-16 -0.1268311785E-15 0.6542281438E-01 trace : 0.2775557562E-16 eigenvalues : -0.9277343976E-01 0.2735062538E-01 0.6542281438E-01 Species : 1 (Mg), atom : 7 EFG tensor : -0.8040555871E-01 0.3650637845E-01 0.6083835430E-16 0.3650637845E-01 0.1498274433E-01 0.8868811951E-16 0.6083835430E-16 0.8868811951E-16 0.6542281438E-01 trace : 0.4163336342E-16 eigenvalues : -0.9277343976E-01 0.2735062538E-01 0.6542281438E-01 Species : 1 (Mg), atom : 8 EFG tensor : -0.8040555871E-01 0.3650637845E-01 -0.2566982641E-16 0.3650637845E-01 0.1498274433E-01 0.1392643800E-15 -0.2566982641E-16 0.1392643800E-15 0.6542281438E-01 trace : 0.9714451465E-16 eigenvalues : -0.9277343976E-01 0.2735062538E-01 0.6542281438E-01 Species : 2 (Si), atom : 1 EFG tensor : 0.1998888880 0.3247854545E-01 0.9705954098E-16 0.3247854545E-01 -0.1762801640 -0.3077944466E-15 0.9705954098E-16 -0.3077944466E-15 -0.2360872399E-01 trace : -0.4787836794E-15 eigenvalues : -0.1790637727 -0.2360872399E-01 0.2026724967 Species : 2 (Si), atom : 2 EFG tensor : 0.1998888880 0.3247854545E-01 0.9050580257E-16 0.3247854545E-01 -0.1762801640 -0.3344693075E-15 0.9050580257E-16 -0.3344693075E-15 -0.2360872399E-01 trace : 0.4336808690E-15 eigenvalues : -0.1790637727 -0.2360872399E-01 0.2026724967 Species : 2 (Si), atom : 3 EFG tensor : 0.1998888880 -0.3247854545E-01 0.1056039611E-15 -0.3247854545E-01 -0.1762801640 0.8244420802E-16 0.1056039611E-15 0.8244420802E-16 -0.2360872399E-01 trace : 0.1151856388E-14 eigenvalues : -0.1790637727 -0.2360872399E-01 0.2026724967 Species : 2 (Si), atom : 4 EFG tensor : 0.1998888880 -0.3247854545E-01 0.1427804355E-16 -0.3247854545E-01 -0.1762801640 0.1160800898E-15 0.1427804355E-16 0.1160800898E-15 -0.2360872399E-01 trace : 0.2775557562E-16 eigenvalues : -0.1790637727 -0.2360872399E-01 0.2026724967 Species : 3 (O), atom : 1 EFG tensor : -0.4883142850 -0.4644265160E-01 -0.2893374241E-15 -0.4644265160E-01 0.1719771655 0.2307362823E-15 -0.2893374241E-15 0.2307362823E-15 0.3163371195 trace : -0.9436895709E-15 eigenvalues : -0.4915649001 0.1752277806 0.3163371195 Species : 3 (O), atom : 2 EFG tensor : -0.4883142850 -0.4644265160E-01 -0.8665332380E-16 -0.4644265160E-01 0.1719771655 0.1921692501E-15 -0.8665332380E-16 0.1921692501E-15 0.3163371195 trace : 0.7216449660E-15 eigenvalues : -0.4915649001 0.1752277806 0.3163371195 Species : 3 (O), atom : 3 EFG tensor : -0.4883142850 0.4644265160E-01 -0.1075299185E-15 0.4644265160E-01 0.1719771655 -0.4737739850E-15 -0.1075299185E-15 -0.4737739850E-15 0.3163371195 trace : 0.3330669074E-14 eigenvalues : -0.4915649001 0.1752277806 0.3163371195 Species : 3 (O), atom : 4 EFG tensor : -0.4883142850 0.4644265160E-01 -0.1908814821E-15 0.4644265160E-01 0.1719771655 -0.3512425491E-15 -0.1908814821E-15 -0.3512425491E-15 0.3163371195 trace : -0.2164934898E-14 eigenvalues : -0.4915649001 0.1752277806 0.3163371195 Species : 3 (O), atom : 5 EFG tensor : -0.5817198967E-01 0.2576542145 0.1269063876E-15 0.2576542145 -0.2568887445 -0.2865787890E-16 0.1269063876E-15 -0.2865787890E-16 0.3150607341 trace : 0.1165734176E-14 eigenvalues : -0.4336784820 0.1186177479 0.3150607341 Species : 3 (O), atom : 6 EFG tensor : -0.5817198967E-01 0.2576542145 0.1229734413E-15 0.2576542145 -0.2568887445 0.1684989048E-15 0.1229734413E-15 0.1684989048E-15 0.3150607341 trace : 0.5551115123E-16 eigenvalues : -0.4336784820 0.1186177479 0.3150607341 Species : 3 (O), atom : 7 EFG tensor : -0.5817198967E-01 -0.2576542145 -0.4353297598E-15 -0.2576542145 -0.2568887445 -0.8050984716E-15 -0.4353297598E-15 -0.8050984716E-15 0.3150607341 trace : -0.5551115123E-16 eigenvalues : -0.4336784820 0.1186177479 0.3150607341 Species : 3 (O), atom : 8 EFG tensor : -0.5817198967E-01 -0.2576542145 -0.3397294856E-15 -0.2576542145 -0.2568887445 -0.6887664005E-15 -0.3397294856E-15 -0.6887664005E-15 0.3150607341 trace : -0.1276756478E-14 eigenvalues : -0.4336784820 0.1186177479 0.3150607341 Species : 3 (O), atom : 9 EFG tensor : 0.3617984671E-01 -0.1046542712 -0.2284590635 -0.1046542712 0.1873139119 -0.1586476054 -0.2284590635 -0.1586476054 -0.2234937586 trace : 0.1165734176E-14 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 10 EFG tensor : 0.3617984671E-01 -0.1046542712 -0.2284590635 -0.1046542712 0.1873139119 -0.1586476054 -0.2284590635 -0.1586476054 -0.2234937586 trace : 0.3330669074E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 11 EFG tensor : 0.3617984671E-01 -0.1046542712 0.2284590635 -0.1046542712 0.1873139119 0.1586476054 0.2284590635 0.1586476054 -0.2234937586 trace : 0.8049116929E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 12 EFG tensor : 0.3617984671E-01 -0.1046542712 0.2284590635 -0.1046542712 0.1873139119 0.1586476054 0.2284590635 0.1586476054 -0.2234937586 trace : -0.4163336342E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 13 EFG tensor : 0.3617984671E-01 0.1046542712 0.2284590635 0.1046542712 0.1873139119 -0.1586476054 0.2284590635 -0.1586476054 -0.2234937586 trace : -0.5273559367E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 14 EFG tensor : 0.3617984671E-01 0.1046542712 0.2284590635 0.1046542712 0.1873139119 -0.1586476054 0.2284590635 -0.1586476054 -0.2234937586 trace : 0.9714451465E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 15 EFG tensor : 0.3617984671E-01 0.1046542712 -0.2284590635 0.1046542712 0.1873139119 0.1586476054 -0.2284590635 0.1586476054 -0.2234937586 trace : 0.000000000 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 Species : 3 (O), atom : 16 EFG tensor : 0.3617984671E-01 0.1046542712 -0.2284590635 0.1046542712 0.1873139119 0.1586476054 -0.2284590635 0.1586476054 -0.2234937586 trace : 0.1665334537E-15 eigenvalues : -0.4161232705 0.1678290337 0.2482942368 elk-7.2.42/examples/Mossbauer/Mg2SiO4/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020134 xustar0030 mtime=1623670096.151101345 30 atime=1623670096.151101345 30 ctime=1623670096.151101345 elk-7.2.42/examples/Mossbauer/Mg2SiO4/elk.in0000644002504400250440000000760214061636520022176 0ustar00dewhurstdewhurst00000000000000 ! Electric field gradient of Mg2SiO4. ! See: B. Winkler, P. Blaha and K. Schwarz, Am. Mineralog. 81, 545 (1996). tasks 0 115 lmaxi 2 xctype 20 ngridk 2 2 2 sppath '../../../species/' ! Atomic positions generated by spacegroup version 1.2.01 ! Hermann-Mauguin symbol : Pbnm ! Hall symbol : -P 2c 2ab ! Schoenflies symbol : D2h^16 ! space group number : 62:cab ! lattice constants (a,b,c) : 8.980000000 19.26010000 11.29680000 ! angles in degrees (bc,ac,ab) : 90.00000000 90.00000000 90.00000000 ! number of conventional unit cells : 1 1 1 ! reduction to primitive cell : T ! Wyckoff positions : ! species : 1, Mg ! 0.000000000 0.000000000 0.000000000 ! 0.5084600000 0.7774200000 0.2500000000 ! species : 2, Si ! 0.7353000000E-01 0.5940300000 0.2500000000 ! species : 3, O ! 0.7340800000 0.5915500000 0.2500000000 ! 0.2216000000 0.4470400000 0.2500000000 ! 0.2225300000 0.6631600000 0.4669700000 avec 8.980000000 0.000000000 0.000000000 0.000000000 0.000000000 11.29680000 0.000000000 19.26010000 0.000000000 atoms 3 : nspecies 'Mg.in' : spfname 8 : natoms; atposl, bfcmt below 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.50000000 0.00000000 0.00000000 0.00000000 0.00000000 0.50000000 0.00000000 0.50000000 0.00000000 0.00000000 0.00000000 0.50000000 0.50000000 0.50000000 0.00000000 0.00000000 0.00000000 0.50846000 0.25000000 0.77742000 0.00000000 0.00000000 0.00000000 0.49154000 0.75000000 0.22258000 0.00000000 0.00000000 0.00000000 0.00846000 0.75000000 0.72258000 0.00000000 0.00000000 0.00000000 0.99154000 0.25000000 0.27742000 0.00000000 0.00000000 0.00000000 'Si.in' : spfname 4 : natoms; atposl, bfcmt below 0.07353000 0.25000000 0.59403000 0.00000000 0.00000000 0.00000000 0.92647000 0.75000000 0.40597000 0.00000000 0.00000000 0.00000000 0.57353000 0.75000000 0.90597000 0.00000000 0.00000000 0.00000000 0.42647000 0.25000000 0.09403000 0.00000000 0.00000000 0.00000000 'O.in' : spfname 16 : natoms; atposl, bfcmt below 0.73408000 0.25000000 0.59155000 0.00000000 0.00000000 0.00000000 0.26592000 0.75000000 0.40845000 0.00000000 0.00000000 0.00000000 0.23408000 0.75000000 0.90845000 0.00000000 0.00000000 0.00000000 0.76592000 0.25000000 0.09155000 0.00000000 0.00000000 0.00000000 0.22160000 0.25000000 0.44704000 0.00000000 0.00000000 0.00000000 0.77840000 0.75000000 0.55296000 0.00000000 0.00000000 0.00000000 0.72160000 0.75000000 0.05296000 0.00000000 0.00000000 0.00000000 0.27840000 0.25000000 0.94704000 0.00000000 0.00000000 0.00000000 0.22253000 0.46697000 0.66316000 0.00000000 0.00000000 0.00000000 0.77747000 0.53303000 0.33684000 0.00000000 0.00000000 0.00000000 0.77747000 0.96697000 0.33684000 0.00000000 0.00000000 0.00000000 0.22253000 0.03303000 0.66316000 0.00000000 0.00000000 0.00000000 0.72253000 0.53303000 0.83684000 0.00000000 0.00000000 0.00000000 0.27747000 0.46697000 0.16316000 0.00000000 0.00000000 0.00000000 0.27747000 0.03303000 0.16316000 0.00000000 0.00000000 0.00000000 0.72253000 0.96697000 0.83684000 0.00000000 0.00000000 0.00000000 elk-7.2.42/examples/Mossbauer/Mg2SiO4/PaxHeaders.21776/spacegroup.in0000644000000000000000000000013214061636520021531 xustar0030 mtime=1623670096.152101344 30 atime=1623670096.152101344 30 ctime=1623670096.152101344 elk-7.2.42/examples/Mossbauer/Mg2SiO4/spacegroup.in0000644002504400250440000000113314061636520023564 0ustar00dewhurstdewhurst00000000000000 'Pbnm' : hrmg 8.9800 19.2601 11.2968 : a, b, c 90.0 90.0 90.0 : bc, ac, ab 1 1 1 : ncell .true. : primcell 3 : nspecies 'Mg' : spsymb, spfname 2 : nwpos 0.00000 0.00000 0.00000 : wpos 0.50846 0.77742 0.25000 'Si' 1 0.07353 0.59403 0.25000 'O' 3 0.73408 0.59155 0.25000 0.22160 0.44704 0.25000 0.22253 0.66316 0.46697 elk-7.2.42/examples/Mossbauer/PaxHeaders.21776/Co-hcp0000644000000000000000000000013214061636520016741 xustar0030 mtime=1623670096.154101342 30 atime=1623670096.153101343 30 ctime=1623670096.154101342 elk-7.2.42/examples/Mossbauer/Co-hcp/0000755002504400250440000000000014061636520021053 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/Co-hcp/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020121 xustar0030 mtime=1623670096.155101341 30 atime=1623670096.155101341 30 ctime=1623670096.155101341 elk-7.2.42/examples/Mossbauer/Co-hcp/elk.in0000644002504400250440000000406214061636520022160 0ustar00dewhurstdewhurst00000000000000 ! Calculating the Mossbauer effect hyperfine parameters for hcp Co, namely the ! contact charge density, the contact magnetic hyperfine field and the electric ! field gradient (EFG). ! The hyperfine magnetic field is difficult to calculate accurately. This is ! mainly because most of the contact magnetisation arises from the polarised ! core s states. One therefore has to switch on core polarisation with ! 'spincore=.true.', but in addition any semi-core s states should also be moved ! to the core and thus treated with the full Dirac equation. Also note that the ! field is quite sensitive to the number of empty states and k-points. ! Also note that the hyperfine field also depends strongly on the choice of ! functional with GGA functions usually yielding larger values. Try running the ! calculation again with PBE (xctype=20). ! Experimentally the hyperfine field is 21.9 Tesla [J. Phys. Soc. Jpn. 33, 1591 ! (1972)]. tasks 0 110 : isomer shift and hyperfine field 115 : electric field gradient ! enable calculation of the dipole magnetic field tbdip .true. ! enable calculation of the current density (i.e. orbital) contribution to the ! dipole field tjr .true. ! enable spin-orbit coupling spinorb .true. ! switch on core polarisation for hyperfine field spincore .true. ! lmaxi should be at least 2 for the EFG calculation lmaxi 2 ! external field for breaking spin symmetry bfieldc 0.0 0.0 0.001 ! very large number of empty states required for hyperfine field nempty 80 ! conduction local-orbitals required lorbcnd .true. ! large number of k-points required ngridk 14 14 10 avec 2.368866000 4.102996268 0.000000000 4.737732000 0.000000000 0.000000000 0.000000000 0.000000000 7.690240000 sppath '../../../species/' atoms 1 : nspecies 'Co.in' : spfname 2 : natoms; atposl, bfcmt below 0.66666667 0.66666667 0.75000000 0.33333333 0.33333333 0.25000000 elk-7.2.42/examples/Mossbauer/PaxHeaders.21776/Fe0000644000000000000000000000013114061636520016161 xustar0030 mtime=1623670096.159101337 29 atime=1623670096.15610134 30 ctime=1623670096.159101337 elk-7.2.42/examples/Mossbauer/Fe/0000755002504400250440000000000014061636520020274 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/Fe/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017342 xustar0030 mtime=1623670096.158101338 30 atime=1623670096.157101339 30 ctime=1623670096.158101338 elk-7.2.42/examples/Mossbauer/Fe/elk.in0000644002504400250440000000425214061636520021402 0ustar00dewhurstdewhurst00000000000000 ! Calculating the Mossbauer effect hyperfine parameters for bcc Fe, namely the ! contact charge density, the contact magnetic hyperfine field and the electric ! field gradient (EFG). In this case the EFG is zero because of symmetry. ! The hyperfine magnetic field is difficult to calculate accurately. This is ! partly due to the neglect of the orbital and dipolar contributions, but mainly ! because most of the contact magnetisation arises from the polarised core s ! states. One therefore has to switch on core polarisation with ! 'spincore=.true.', but in addition any semi-core s states should also be moved ! to the core and thus treated with the full Dirac equation. Consequently, this ! example requires a special species file (Fe.in), in which the 3s states are in ! the core. Note that the field is quite sensitive to the number of empty states ! and k-points. ! Also note that the hyperfine field also depends strongly on the choice of ! functional with GGA functions usually yielding larger values. Try running the ! calculation again with PBE (xctype=20). ! Experimentally the hyperfine field is 33.9 Tesla [J. Phys. Soc. Jpn. 33, 159 ! (1972)]. A complete derivation of the formulae can be found in Phys. Rev. B ! 53, 3271 (1987). tasks 0 110 : isomer shift and hyperfine field 115 : electric field gradient ! enable calculation of the dipole field tbdip .true. ! enable calculation of the current density (i.e. orbital) contribution to the ! dipole field tjr .true. ! enable spin-orbit coupling spinorb .true. ! switch on core polarisation for hyperfine field spincore .true. ! lmaxi should be at least 2 for the EFG calculation lmaxi 2 ! external field for breaking spin symmetry bfieldc 0.0 0.0 0.001 ! very large number of empty states required for hyperfine field nempty 80 ! enable conduction local-orbitals lorbcnd .true. ! large number of k-points required ngridk 14 14 14 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/Mossbauer/Fe/PaxHeaders.21776/Fe.in0000644000000000000000000000013214061636520017121 xustar0030 mtime=1623670096.159101337 30 atime=1623670096.159101337 30 ctime=1623670096.159101337 elk-7.2.42/examples/Mossbauer/Fe/Fe.in0000644002504400250440000000311414061636520021155 0ustar00dewhurstdewhurst00000000000000 'Fe' : spsymb 'iron' : spname -26.0000 : spzn 101799.2074 : spmass 0.392232E-06 2.0000 34.5962 500 : sprmin, rmt, sprmax, nrmt 10 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 2.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.1817 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2816 0 T elk-7.2.42/examples/Mossbauer/PaxHeaders.21776/Co-fcc0000644000000000000000000000013214061636520016722 xustar0030 mtime=1623670096.161101335 30 atime=1623670096.160101336 30 ctime=1623670096.161101335 elk-7.2.42/examples/Mossbauer/Co-fcc/0000755002504400250440000000000014061636520021034 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/Co-fcc/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020102 xustar0030 mtime=1623670096.161101335 30 atime=1623670096.161101335 30 ctime=1623670096.161101335 elk-7.2.42/examples/Mossbauer/Co-fcc/elk.in0000644002504400250440000000400514061636520022136 0ustar00dewhurstdewhurst00000000000000 ! Calculating the Mossbauer effect hyperfine parameters for fcc Co, namely the ! contact charge density, the contact magnetic hyperfine field and the electric ! field gradient (EFG). ! The hyperfine magnetic field is difficult to calculate accurately. This is ! mainly because most of the contact magnetisation arises from the polarised ! core s states. One therefore has to switch on core polarisation with ! 'spincore=.true.', but in addition any semi-core s states should also be moved ! to the core and thus treated with the full Dirac equation. Also note that the ! field is quite sensitive to the number of empty states and k-points. ! Also note that the hyperfine field also depends strongly on the choice of ! functional, with GGA usually yielding larger values. Try running the ! calculation again with PBE (xctype=20). This may be the better choice of ! functional for Mossbauer related quantities because of the large density ! gradients near the nucleus. tasks 0 110 : isomer shift and hyperfine field 115 : electric field gradient ! uncomment the following lines to enable GGA (PBE) !xctype ! 20 ! !msmooth ! 4 ! enable calculation of the dipole magnetic field tbdip .true. ! enable calculation of the current density (i.e. orbital) contribution to the ! dipole field tjr .true. ! enable spin-orbit coupling spinorb .true. ! switch on core polarisation for hyperfine field spincore .true. ! lmaxi should be at least 2 for the EFG calculation lmaxi 2 ! external field for breaking spin symmetry bfieldc 0.0 0.0 0.001 ! very large number of empty states required for hyperfine field nempty 80 ! conduction local-orbitals required lorbcnd .true. ! large number of k-points required ngridk 14 14 14 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.3448 sppath '../../../species/' atoms 1 : nspecies 'Co.in' : spfname 1 : natoms; atposl, bfcmt below 0.0 0.0 0.0 elk-7.2.42/examples/Mossbauer/PaxHeaders.21776/NiF20000644000000000000000000000013214061636520016366 xustar0030 mtime=1623670096.165101332 30 atime=1623670096.163101333 30 ctime=1623670096.165101332 elk-7.2.42/examples/Mossbauer/NiF2/0000755002504400250440000000000014061636520020500 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Mossbauer/NiF2/PaxHeaders.21776/MOSSBAUER.OUT0000644000000000000000000000013214061636520020374 xustar0030 mtime=1623670096.164101333 30 atime=1623670096.164101333 30 ctime=1623670096.164101333 elk-7.2.42/examples/Mossbauer/NiF2/MOSSBAUER.OUT0000644002504400250440000001013714061636520022433 0ustar00dewhurstdewhurst00000000000000 Species : 1 (Ni), atom : 1 approximate nuclear radius : 0.7325707712E-04 number of mesh points to nuclear radius : 170 density at nuclear center : 27065.61626 density at nuclear surface : 19469.68536 average contact charge density : 21799.30518 contact magnetic moment (mu_B) : 0.3556682277 -0.3250408784E-02 -0.5961585217E-04 contact field : 0.7942691198E-04 -0.7258729125E-06 -0.1331325846E-07 tesla : 18.66943519 -0.1706177033 -0.3129304790E-02 spin and orbital dipole field : -0.6038677809E-05 0.1166101164E-05 0.6342070908E-08 tesla : -1.419401827 0.2740941271 0.1490714908E-02 Species : 1 (Ni), atom : 2 approximate nuclear radius : 0.7325707712E-04 number of mesh points to nuclear radius : 170 density at nuclear center : 27065.62041 density at nuclear surface : 19469.68809 average contact charge density : 21799.30825 contact magnetic moment (mu_B) : 0.3560239771 -0.3179352632E-02 0.3878445782E-04 contact field : 0.7950635701E-04 -0.7100048359E-06 0.8661245165E-08 tesla : 18.68810889 -0.1668878840 0.2035840892E-02 spin and orbital dipole field : -0.6143126486E-05 -0.5623083484E-06 -0.2821446664E-06 tesla : -1.443952673 -0.1321715651 -0.6631859950E-01 Species : 2 (F), atom : 1 approximate nuclear radius : 0.5278478738E-04 number of mesh points to nuclear radius : 89 density at nuclear center : 469.6748179 density at nuclear surface : 458.0181065 average contact charge density : 518.3705591 contact magnetic moment (mu_B) : -0.2076757064 0.1757535181E-02 -0.5037678888E-04 contact field : -0.4637760353E-04 0.3924882270E-06 -0.1125001466E-07 tesla : -10.90113718 0.9225504727E-01 -0.2644335709E-02 spin and orbital dipole field : -0.3840346331E-04 -0.1592687822E-04 -0.2577673716E-07 tesla : -9.026801516 -3.743640704 -0.6058867353E-02 Species : 2 (F), atom : 2 approximate nuclear radius : 0.5278478738E-04 number of mesh points to nuclear radius : 89 density at nuclear center : 469.6746466 density at nuclear surface : 458.0179388 average contact charge density : 518.3703693 contact magnetic moment (mu_B) : -0.2078531243 0.1740868591E-02 -0.1670018648E-04 contact field : -0.4641722404E-04 0.3887662872E-06 -0.3729442605E-08 tesla : -10.91045005 0.9138019878E-01 -0.8766120359E-03 spin and orbital dipole field : -0.3847659363E-04 0.1653003236E-04 -0.5230842188E-08 tesla : -9.043990926 3.885413145 -0.1229518646E-02 Species : 2 (F), atom : 3 approximate nuclear radius : 0.5278478738E-04 number of mesh points to nuclear radius : 89 density at nuclear center : 469.6748179 density at nuclear surface : 458.0181065 average contact charge density : 518.3705591 contact magnetic moment (mu_B) : -0.2076757064 0.1757535181E-02 -0.5037678888E-04 contact field : -0.4637760353E-04 0.3924882270E-06 -0.1125001466E-07 tesla : -10.90113718 0.9225504727E-01 -0.2644335709E-02 spin and orbital dipole field : -0.3840346331E-04 -0.1592687822E-04 -0.2577673716E-07 tesla : -9.026801516 -3.743640704 -0.6058867353E-02 Species : 2 (F), atom : 4 approximate nuclear radius : 0.5278478738E-04 number of mesh points to nuclear radius : 89 density at nuclear center : 469.6746466 density at nuclear surface : 458.0179388 average contact charge density : 518.3703693 contact magnetic moment (mu_B) : -0.2078531243 0.1740868591E-02 -0.1670018648E-04 contact field : -0.4641722404E-04 0.3887662872E-06 -0.3729442605E-08 tesla : -10.91045005 0.9138019878E-01 -0.8766120359E-03 spin and orbital dipole field : -0.3847659363E-04 0.1653003236E-04 -0.5230842188E-08 tesla : -9.043990926 3.885413145 -0.1229518646E-02 Note that the contact term is implicitly included in the spin dipole field but may not match exactly with the directly calculated value. elk-7.2.42/examples/Mossbauer/NiF2/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017546 xustar0030 mtime=1623670096.166101331 30 atime=1623670096.165101332 30 ctime=1623670096.166101331 elk-7.2.42/examples/Mossbauer/NiF2/elk.in0000644002504400250440000000403114061636520021601 0ustar00dewhurstdewhurst00000000000000 ! Calculating the zero field resonance frequencies for NiF2. ! The ground state is antiferromagnetic with moments in the a-b plane. ! Nonetheless, the experimentally measured hyperfine field originates from ! domain walls, as explained in R. G. Shulman, Journal of Applied Physics 32, ! S126 (1961). ! The zero field estimate are ~0.7 T and ~1.3 T in good agreement with the ! results provided by this example. ! Example by Pietro Bonfa. tasks 0 ! ground-state calculation 110 ! determine the magnetic hyperfine field lmaxi 2 rgkmax 5.5 gmaxvr 16.0 ! enable calculation of the dipole field tbdip .true. ! enable calculation of the current density (i.e. orbital) contribution to the ! dipole field tjr .true. ! enable spin-orbit coupling spinorb .true. ! switch on core polarisation for hyperfine field spincore .true. sppath '../../../species/' ! external field for breaking spin symmetry bfieldc 0.01 0.0 0.0 reducebf 0.75 ! very large number of empty states required for hyperfine field nempty 40 ! enable conduction local-orbitals lorbcnd .true. ! large number of k-points required ngridk 6 6 6 avec 1.0000000000 0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000 0.0000000000 0.6619957537 scale 8.9006099310 atoms 2 : nspecies 'Ni.in' : spfname 2 0.000000000000000 0.000000000000000 0.000000000000000 0.00100000 0.00100000 0.00000000 0.500000000000000 0.500000000000000 0.500000000000000 -0.00100000 -0.00100000 0.00000000 'F.in' : spfname 4 0.303300000000000 0.303300000000000 0.000000000000000 0.00000000 0.00000000 0.00000000 0.196700000000000 0.803300000000000 0.500000000000000 0.00000000 0.00000000 0.00000000 0.696700000000000 0.696700000000000 0.000000000000000 0.00000000 0.00000000 0.00000000 0.803300000000000 0.196700000000000 0.500000000000000 0.00000000 0.00000000 0.00000000 elk-7.2.42/examples/PaxHeaders.21776/TDDFT-optics0000644000000000000000000000013214061636520016034 xustar0030 mtime=1623670096.196101303 30 atime=1623670096.166101331 30 ctime=1623670096.196101303 elk-7.2.42/examples/TDDFT-optics/0000755002504400250440000000000014061636520020146 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/Ar-bootstrap-single0000644000000000000000000000013214061636520021670 xustar0030 mtime=1623670096.170101327 30 atime=1623670096.168101329 30 ctime=1623670096.170101327 elk-7.2.42/examples/TDDFT-optics/Ar-bootstrap-single/0000755002504400250440000000000014061636520024002 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/Ar-bootstrap-single/PaxHeaders.21776/Ar_expt_eV.dat0000644000000000000000000000013214061636520024473 xustar0030 mtime=1623670096.169101328 30 atime=1623670096.169101328 30 ctime=1623670096.169101328 elk-7.2.42/examples/TDDFT-optics/Ar-bootstrap-single/Ar_expt_eV.dat0000644002504400250440000000645114061636520026536 0ustar00dewhurstdewhurst00000000000000#Phys. Rev. B 76 161103(R) (2007) 11.6284 0.0621413 11.6956 0.198027 11.7548 0.412014 11.7982 0.723684 11.8416 1.05486 11.885 1.48357 11.9165 1.81486 11.9283 2.10733 11.9401 2.32178 11.9559 2.49718 11.9637 2.88722 11.9754 3.23821 11.9793 3.62829 11.9831 4.01837 11.9832 3.82331 11.9869 4.54499 11.9944 6.22242 11.9945 6.02736 11.9946 5.63724 11.9981 7.39274 11.9982 7.00262 11.9982 6.80756 11.9983 6.6125 12.0017 8.56305 12.0017 8.36799 12.0018 8.17293 12.0019 7.97788 12.002 7.58776 12.0053 9.92843 12.0054 9.53831 12.0054 9.34325 12.0055 9.14819 12.0056 8.75807 12.009 10.7086 12.0091 10.5136 12.0092 10.1234 12.0128 11.5864 12.0129 10.9036 12.0166 11.9764 12.0167 11.7814 12.0205 12.3665 12.0243 12.9516 12.0243 12.7566 12.0244 12.5615 12.0281 13.3417 12.0282 13.1467 12.032 13.7318 12.0357 14.473 12.0358 14.1219 12.0359 13.9268 12.0438 13.7902 12.0479 13.4001 12.0479 13.205 12.0519 13.0099 12.052 12.8148 12.0522 11.9956 12.056 12.4247 12.0643 11.0592 12.0683 10.669 12.0684 10.474 12.0685 10.0839 12.0725 9.88876 12.0726 9.49864 12.0726 9.30358 12.0767 9.10849 12.0769 8.23072 12.085 7.56744 12.089 7.17729 12.0891 6.98223 12.0931 6.59207 12.0932 6.39701 12.0972 6.00685 12.1054 5.10951 12.1094 4.91441 12.1134 4.52425 12.1174 4.32915 12.1255 3.7439 12.1295 3.5488 12.1335 3.3537 12.1375 3.15861 12.1415 2.96351 12.1495 2.49529 12.157 4.17272 12.1571 3.97766 12.1608 4.95292 12.1608 4.75786 12.1609 4.5628 12.1645 5.73312 12.1645 5.53806 12.1646 5.343 12.1647 5.14794 12.1682 6.51331 12.1683 6.31825 12.1684 5.92814 12.1719 7.48857 12.172 7.29351 12.1721 6.90339 12.1721 6.70833 12.1757 8.26877 12.1758 7.87865 12.1758 7.68359 12.1794 9.04897 12.1795 8.85391 12.1796 8.46379 12.1831 9.98521 12.1833 9.43904 12.1868 11.2726 12.1869 10.8239 12.1945 11.7796 12.1946 11.5846 12.1984 12.1697 12.2022 12.5598 12.2023 12.3647 12.2059 13.4375 12.2141 12.6767 12.2181 12.2866 12.2182 12.0915 12.2222 11.7013 12.2264 10.7455 12.2345 10.2578 12.2385 10.0627 12.2425 9.67254 12.2427 8.83378 12.2466 9.22386 12.2546 8.77515 12.2547 8.44355 12.2587 8.24845 12.2628 7.8583 12.2628 7.66324 12.2668 7.46814 12.2708 7.27304 12.2709 7.07798 12.2749 6.88288 12.275 6.43425 12.283 6.1806 12.287 5.9855 12.291 5.59534 12.2911 5.40028 12.2951 5.20518 12.2952 4.67853 12.3191 3.85905 12.339 3.44923 12.3588 3.29299 12.4103 2.98039 12.4262 2.74617 12.45 2.23878 12.4699 1.90699 12.4937 1.51664 12.5214 1.22378 12.5373 0.892029 12.5611 0.755256 12.573 0.540576 12.6007 0.403764 12.6402 0.286344 12.6679 0.149532 12.7035 0.0711618 12.7668 0.0510392 12.8142 0.1286 12.8497 0.245289 12.8932 0.322888 12.9248 0.400603 12.9722 0.49767 13.0078 0.575347 13.0591 0.594352 13.1145 0.593812 13.1896 0.59308 13.2409 0.63159 13.2805 0.611699 13.32 0.708843 13.3634 0.805948 13.4148 0.961494 13.4582 1.07811 13.4819 1.35096 13.4976 1.76043 13.5093 2.03339 13.5211 2.4234 13.5289 2.6769 13.5685 2.44244 13.5884 2.14966 13.6043 1.72037 13.6281 1.2325 13.6598 0.998116 13.6796 0.744347 13.7034 0.705104 13.7231 0.997499 13.7507 1.25081 13.7664 1.42621 13.802 1.26981 13.8219 1.03555 13.8298 0.859917 13.8575 0.742612 13.901 0.878729 13.9128 1.07367 13.9325 1.21002 13.9523 1.09279 13.976 0.917009 14.0077 0.858183 14.0393 0.994416 14.0748 1.07209 14.0867 1.11099 14.1183 1.11068 14.1459 1.16893 14.1776 1.1101 14.1973 1.0709 14.2487 1.0704 14.3199 1.14773 14.3673 1.10825 14.4345 1.1076 14.474 1.10721 elk-7.2.42/examples/TDDFT-optics/Ar-bootstrap-single/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023050 xustar0030 mtime=1623670096.171101326 30 atime=1623670096.170101327 30 ctime=1623670096.171101326 elk-7.2.42/examples/TDDFT-optics/Ar-bootstrap-single/elk.in0000644002504400250440000000143114061636520025104 0ustar00dewhurstdewhurst00000000000000 ! This example produces the dielectric function of solid argon using a single ! iteration of the bootstrap kernel [Phys. Rev. Lett. 107, 186401]. This ! approximation works particularly well for calculating excitonic binding ! energies. ! A file with experimental data in units of eV is included in this directory. tasks 0 120 320 scissor 0.22 swidth 0.005 ! bootstrap kernal with single iteration fxctype 211 gmaxrf 0.0 wplot 6000 100 2 0.0 1.0 nempty 10 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 10.030 sppath '../../../species/' atoms 1 : nspecies 'Ar.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 ngridk 8 8 8 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/LiF-bootstrap-single0000644000000000000000000000013214061636520022000 xustar0030 mtime=1623670096.172101325 30 atime=1623670096.171101326 30 ctime=1623670096.172101325 elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap-single/0000755002504400250440000000000014061636520024112 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap-single/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023160 xustar0030 mtime=1623670096.173101324 30 atime=1623670096.173101324 30 ctime=1623670096.173101324 elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap-single/elk.in0000644002504400250440000000121614061636520025215 0ustar00dewhurstdewhurst00000000000000 ! Optical response of LiF with the single iteration bootstrap kernel. tasks 0 120 320 ! single iteration bootstrap fxctype 211 scissor 0.1916 swidth 0.008 ! LFE are included gmaxrpa 2.0 lradstp 2 nempty 10 wplot 8000 100 0 0.0 1.0 avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 8 8 8 vkloff 0.625 0.5 0.25 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/Ni-MOKE0000644000000000000000000000013214061636520017133 xustar0030 mtime=1623670096.175101322 30 atime=1623670096.174101323 30 ctime=1623670096.175101322 elk-7.2.42/examples/TDDFT-optics/Ni-MOKE/0000755002504400250440000000000014061636520021245 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/Ni-MOKE/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020313 xustar0030 mtime=1623670096.176101321 30 atime=1623670096.176101321 30 ctime=1623670096.176101321 elk-7.2.42/examples/TDDFT-optics/Ni-MOKE/elk.in0000644002504400250440000000121314061636520022345 0ustar00dewhurstdewhurst00000000000000 ! Magneto-optical Kerr effect for ferromagnetic nickel. For good accuracy of the ! Kerr rotation a k-point grid of 20x20x20 is required. tasks 0 120 122 ! the relaxation time is taken to be 1/swidth swidth 0.01 spinpol .true. ! spin-orbit coupling is required for MOKE spinorb .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 10 10 10 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/Ge0000644000000000000000000000013014061636520016365 xustar0029 mtime=1623670096.17710132 30 atime=1623670096.176101321 29 ctime=1623670096.17710132 elk-7.2.42/examples/TDDFT-optics/Ge/0000755002504400250440000000000014061636520020501 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/Ge/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520017553 xustar0029 mtime=1623670096.17810132 29 atime=1623670096.17810132 29 ctime=1623670096.17810132 elk-7.2.42/examples/TDDFT-optics/Ge/elk.in0000644002504400250440000000141114061636520021601 0ustar00dewhurstdewhurst00000000000000 ! High quality density of states, band structure and linear optical tensor of ! germanium with spin-orbit coupling (Andrew Chizmeshya) tasks 0 10 20 120 121 spinorb .true. xctype 3 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 5.3451 nempty 20 wplot 1000 150 0 -0.5 2.0 lmaxapw 10 lmaxo 8 gmaxvr 12.0 sppath '../../../species/' atoms 1 : nspecies 'Ge.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 10 10 10 vkloff 0.25 0.25 0.75 plot1d 3 200 : nvp1d, npp1d 0.5 0.0 1.0 : vlvp1d 0.0 0.0 1.0 0.5 0.5 1.0 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/LiF-bootstrap0000644000000000000000000000013214061636520020521 xustar0030 mtime=1623670096.180101318 30 atime=1623670096.179101319 30 ctime=1623670096.180101318 elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap/0000755002504400250440000000000014061636520022633 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021701 xustar0030 mtime=1623670096.180101318 30 atime=1623670096.180101318 30 ctime=1623670096.180101318 elk-7.2.42/examples/TDDFT-optics/LiF-bootstrap/elk.in0000644002504400250440000000251714061636520023743 0ustar00dewhurstdewhurst00000000000000 ! Time-dependent density functional theory (TDDFT) optical spectrum of lithium ! fluoride. This material has a prominent excitonic peak, which is absent in the ! usual RPA dielectric function. The 'bootstrap' TDDFT kernel is used, see: ! arXiv:1107.0199v1 [cond-mat.mtrl-sci] ! The scissor shift is taken to be the difference between the experimental gap, ! 14.2 eV [Phys. Rev. B 13, 5530 (1976)], and the LDA gap, 8.97 eV. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function with no local field contributions 320 ! compute TDDFT dielectric function with local field contributions ! scissor shift scissor 0.192 xctype 3 ! bootstrap kernel fxctype 210 ! smearing width swidth 0.01 ! G-vector cut-off of exchange-correlation kernel and response function gmaxrf 0.0 nempty 8 lradstp 2 wplot 800 100 0 : nwplot, ngrkf, nswplot 0.0 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 8 8 8 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/TiO20000644000000000000000000000013214061636520016611 xustar0030 mtime=1623670096.182101316 30 atime=1623670096.181101317 30 ctime=1623670096.182101316 elk-7.2.42/examples/TDDFT-optics/TiO2/0000755002504400250440000000000014061636520020723 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/TiO2/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017771 xustar0030 mtime=1623670096.183101315 30 atime=1623670096.182101316 30 ctime=1623670096.183101315 elk-7.2.42/examples/TDDFT-optics/TiO2/elk.in0000644002504400250440000000127314061636520022031 0ustar00dewhurstdewhurst00000000000000 ! Linear optical spectrum of titanium dioxide. The inverse lifetime is ! determined by swidth. Note that many more k-points are required for good ! convergence of the optical spectrum. tasks 0 120 121 swidth 0.005 ! use Broyden mixing for fast convergence mixtype 3 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.6441 scale 8.6806 sppath '../../../species/' atoms 2 : nspecies 'Ti.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.5 0.5 0.5 'O.in' 4 0.3048 0.3048 0.0 0.6952 0.6952 0.0 0.1952 0.8048 0.5 0.8048 0.1952 0.5 ngridk 4 4 4 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/LiF-LRC0000644000000000000000000000013214061636520017124 xustar0030 mtime=1623670096.185101313 30 atime=1623670096.184101314 30 ctime=1623670096.185101313 elk-7.2.42/examples/TDDFT-optics/LiF-LRC/0000755002504400250440000000000014061636520021236 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/LiF-LRC/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020304 xustar0030 mtime=1623670096.186101312 30 atime=1623670096.185101313 30 ctime=1623670096.186101312 elk-7.2.42/examples/TDDFT-optics/LiF-LRC/elk.in0000644002504400250440000000242714061636520022346 0ustar00dewhurstdewhurst00000000000000 ! Time-dependent density functional theory (TDDFT) optical spectrum of lithium ! fluoride. This material has a prominent excitonic peak, which is absent in the ! usual RPA dielectric function. The TDDFT kernel fxc is described in ! Phys. Rev. B 69, p155112 (2004) as the 'long-range contribution' and requires ! a material-dependent parameter alpha. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function with no local field contributions 320 ! compute TDDFT dielectric function with local field contributions ! long-range contribution kernel fxctype 200 ! parameter alpha for long-range contribution kernel fxclrc 5.5 ! G-vector cut-off of exchange-correlation kernel and response function gmaxrf 1.0 swidth 0.01 nempty 8 lradstp 2 wplot 800 100 0 : nwplot, ngrkf, nswplot 0.0 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 4 4 4 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/LiF0000644000000000000000000000013214061636520016506 xustar0030 mtime=1623670096.187101311 30 atime=1623670096.186101312 30 ctime=1623670096.187101311 elk-7.2.42/examples/TDDFT-optics/LiF/0000755002504400250440000000000014061636520020620 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/LiF/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520017672 xustar0029 mtime=1623670096.18810131 29 atime=1623670096.18810131 29 ctime=1623670096.18810131 elk-7.2.42/examples/TDDFT-optics/LiF/elk.in0000644002504400250440000000112214061636520021717 0ustar00dewhurstdewhurst00000000000000 ! Linear optical spectrum of lithium fluoride. tasks 0 120 121 ! the inverse lifetime is determined by swidth swidth 0.01 nempty 10 lradstp 2 wplot 400 100 0 : nwplot, ngrkf, nswplot 0.0 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 10 10 10 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/diamond-ALDA0000644000000000000000000000013214061636520020146 xustar0030 mtime=1623670096.190101308 30 atime=1623670096.189101309 30 ctime=1623670096.190101308 elk-7.2.42/examples/TDDFT-optics/diamond-ALDA/0000755002504400250440000000000014061636520022260 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/diamond-ALDA/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021326 xustar0030 mtime=1623670096.190101308 30 atime=1623670096.190101308 30 ctime=1623670096.190101308 elk-7.2.42/examples/TDDFT-optics/diamond-ALDA/elk.in0000644002504400250440000000117414061636520023366 0ustar00dewhurstdewhurst00000000000000 ! Dielectric function of diamond calculated at finite q-vector using ALDA. tasks 0 120 320 ! q-vector in lattice coordinates vecql 0.5 0.5 0.5 xctype 3 fxctype 3 ! G-vector cut-off for the RPA and ALDA response function gmaxrf 3.0 nempty 10 swidth 0.01 wplot 500 100 1 0.0 1.5 avec 3.3637 3.3637 0.0 3.3637 0.0 3.3637 0.0 3.3637 3.3637 sppath '../../../species/' atoms 1 : nspecies 'C.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 8 8 8 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/Al0000644000000000000000000000013214061636520016370 xustar0030 mtime=1623670096.192101307 30 atime=1623670096.191101308 30 ctime=1623670096.192101307 elk-7.2.42/examples/TDDFT-optics/Al/0000755002504400250440000000000014061636520020502 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/Al/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017550 xustar0030 mtime=1623670096.193101306 30 atime=1623670096.192101307 30 ctime=1623670096.193101306 elk-7.2.42/examples/TDDFT-optics/Al/elk.in0000644002504400250440000000130414061636520021603 0ustar00dewhurstdewhurst00000000000000 ! Linear optical response of aluminium including intra-band contributions. ! The plasma frequency is also determined and written to PLASMA.OUT. tasks 0 120 121 ! include intra-band excitations intraband .true. swidth 0.01 ! dense k-point set required ngridk 24 24 24 ! larger number of empty states required nempty 8 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 ! lattice constant at room temperature scale 3.8267 ! this is the relative path to the species files sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/LiF-RBO0000644000000000000000000000013214061636520017126 xustar0030 mtime=1623670096.195101304 30 atime=1623670096.194101305 30 ctime=1623670096.195101304 elk-7.2.42/examples/TDDFT-optics/LiF-RBO/0000755002504400250440000000000014061636520021240 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/LiF-RBO/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020306 xustar0030 mtime=1623670096.196101303 30 atime=1623670096.195101304 30 ctime=1623670096.196101303 elk-7.2.42/examples/TDDFT-optics/LiF-RBO/elk.in0000644002504400250440000000201214061636520022336 0ustar00dewhurstdewhurst00000000000000 ! Example for the revised bootstrap kernel (RBO) of S. Rigamonti, et al., ! Phys. Rev. Lett. 114, 146402. tasks 0 ! ground-state calculation 120 ! compute momentum matrix elements 121 ! compute RPA dielectric function with no local field contributions 320 ! compute TDDFT dielectric function with local field contributions ! scissor shift scissor 0.192 xctype 3 ! RBO kernel fxctype 212 ! smearing width swidth 0.01 ! G-vector cut-off of exchange-correlation kernel and response function gmaxrf 0.0 nempty 8 lradstp 2 wplot 800 100 0 : nwplot, ngrkf, nswplot 0.0 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 8 8 8 vkloff 0.25 0.5 0.625 elk-7.2.42/examples/TDDFT-optics/PaxHeaders.21776/Ne-RBO0000644000000000000000000000012614061636520017021 xustar0028 mtime=1623670096.1991013 30 atime=1623670096.196101303 28 ctime=1623670096.1991013 elk-7.2.42/examples/TDDFT-optics/Ne-RBO/0000755002504400250440000000000014061636520021130 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-optics/Ne-RBO/PaxHeaders.21776/Ne_expt_eV.dat0000644000000000000000000000013214061636520021621 xustar0030 mtime=1623670096.198101301 30 atime=1623670096.198101301 30 ctime=1623670096.198101301 elk-7.2.42/examples/TDDFT-optics/Ne-RBO/Ne_expt_eV.dat0000644002504400250440000000153414061636520023661 0ustar00dewhurstdewhurst00000000000000#Phys. Rev. B 72 035127 (2005) 16.7861 0.308771 16.8999 0.402363 17.0137 0.464459 17.0863 0.621367 17.1279 0.747024 17.1799 0.904096 17.2318 1.04542 17.2631 1.2184 17.3047 1.3913 17.3154 1.56445 17.3366 1.87924 17.3369 2.05247 17.3478 2.41458 17.3587 2.72946 17.3694 2.9341 17.3697 3.09158 17.3806 3.4222 17.3809 3.59543 17.3812 3.7844 17.3815 3.95763 17.3924 4.2725 17.3927 4.46147 17.3929 4.60321 17.4036 4.80785 17.4039 4.96532 17.4042 5.1543 17.4045 5.32752 17.4158 5.86287 17.478 5.98836 17.4877 5.62608 17.5179 5.12191 17.5279 4.9486 17.5482 4.74371 17.5787 4.46001 17.5884 4.08198 17.597 3.07404 17.6059 2.22358 17.6154 1.75106 17.6653 0.679801 17.7264 0.159635 17.7882 0.0489118 18.0156 0.0628692 18.2223 0.0612415 18.4704 0.0750361 18.7909 0.104009 19.1424 0.164233 19.2354 0.163501 19.4628 0.16171 19.5662 0.176644 19.804 0.206268 20.1245 0.282484 elk-7.2.42/examples/TDDFT-optics/Ne-RBO/PaxHeaders.21776/elk.in0000644000000000000000000000012414061636520020177 xustar0028 mtime=1623670096.1991013 28 atime=1623670096.1991013 28 ctime=1623670096.1991013 elk-7.2.42/examples/TDDFT-optics/Ne-RBO/elk.in0000644002504400250440000000120314061636520022227 0ustar00dewhurstdewhurst00000000000000 ! Example for the revised bootstrap kernel (RBO) of S. Rigamonti, et al., ! Phys. Rev. Lett. 114, 146402. tasks 0 120 320 scissor 0.360 lradstp 2 ! local field effects (LFE) not included gmaxrpa 0.0 swidth 0.005 ! RBO kernel fxctype 212 wplot 5000 100 1 0.0 1.1 nempty 20 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 8.440 sppath '../../../species/' atoms 1 : nspecies 'Ne.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 ngridk 10 10 10 vkloff 0.625 0.5 0.25 elk-7.2.42/examples/PaxHeaders.21776/fractional-species0000644000000000000000000000013214061636520017443 xustar0030 mtime=1623670096.201101298 30 atime=1623670096.200101299 30 ctime=1623670096.201101298 elk-7.2.42/examples/fractional-species/0000755002504400250440000000000014061636520021555 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/fractional-species/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020623 xustar0030 mtime=1623670096.202101297 30 atime=1623670096.202101297 30 ctime=1623670096.202101297 elk-7.2.42/examples/fractional-species/elk.in0000644002504400250440000000154114061636520022661 0ustar00dewhurstdewhurst00000000000000 ! In this example the code generates a fractional atomic species file called ! 'A.in' which is then used in a ground-state calculation to find the moment. ! This allows for easy use of the virtual crystal approximation (VCA). tasks 0 ! generate a fractional atomic species charge -26.2 and write to the file 'A.in' fspecies -26.2 'A' spinpol .true. ! small magnetic field in the z-direction bfieldc 0.0 0.0 0.01 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 ! Now use the file 'A.in' in the atoms block atoms 1 : nspecies 'A.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/PaxHeaders.21776/magnetism0000644000000000000000000000013214061636520015654 xustar0030 mtime=1623670096.233101268 30 atime=1623670096.203101296 30 ctime=1623670096.233101268 elk-7.2.42/examples/magnetism/0000755002504400250440000000000014061636520017766 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-FSM-MT-AFM0000644000000000000000000000013214061636520017550 xustar0030 mtime=1623670096.205101295 30 atime=1623670096.204101295 30 ctime=1623670096.205101295 elk-7.2.42/examples/magnetism/Fe-FSM-MT-AFM/0000755002504400250440000000000014061636520021662 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-FSM-MT-AFM/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020730 xustar0030 mtime=1623670096.206101294 30 atime=1623670096.206101294 30 ctime=1623670096.206101294 elk-7.2.42/examples/magnetism/Fe-FSM-MT-AFM/elk.in0000644002504400250440000000213414061636520022765 0ustar00dewhurstdewhurst00000000000000 ! Antiferromagnetic bcc iron example with fixed spin moment in muffin-tin. ! Rememeber to put a small magnetic fields on atoms with same symmetry as ! fixed moment. This in order to correctly symmetrize the magnetization. ! Run by Fredrik Bultmark, Francesco Cricchio, Lars Nordstrom. tasks 0 ! antiferromagnetic local fixed spin moment calculation fsmtype 2 mommtfix 1 1 0.0 0.0 1.0 : is, ia, mommtfix 1 2 0.0 0.0 -1.0 : is, ia, mommtfix ! FSM step length: reduce to improve convergence taufsm 0.01 lmaxapw 10 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale 6.6 sppath '../../../species/' ! note small magnetic fields on atoms with same symmetry as fixed moment atoms 1 : nspecies 'Fe.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.001 : atposl, bfcmt 0.5 0.5 0.5 0.0 0.0 -0.001 ! this k-point set is too small for calculation of accurate moments ngridk 4 4 4 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-spiral0000644000000000000000000000013214061636520017476 xustar0030 mtime=1623670096.208101292 30 atime=1623670096.207101293 30 ctime=1623670096.208101292 elk-7.2.42/examples/magnetism/Fe-spiral/0000755002504400250440000000000014061636520021610 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-spiral/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020656 xustar0030 mtime=1623670096.208101292 30 atime=1623670096.208101292 30 ctime=1623670096.208101292 elk-7.2.42/examples/magnetism/Fe-spiral/elk.in0000644002504400250440000000135214061636520022714 0ustar00dewhurstdewhurst00000000000000 ! Spin-spiral state for Gamma-Fe. Care should be taken to ensure that the ! calculation is fully converged. tasks 0 spinsprl .true. ! spin-spiral q-vector in lattice coordinates vqlss 0.1 0.1 0.0 ! fairly large large cut-off required rgkmax 8.5 gmaxvr 14.0 nempty 8 ! spiral magnetic field along q with perpendicular component only bfieldc 0.05 0.0 0.0 ! tight convergence required epspot 1.e-7 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.375 sppath '../../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Cr-mono0000644000000000000000000000013214061636520017166 xustar0030 mtime=1623670096.213101287 30 atime=1623670096.209101291 30 ctime=1623670096.213101287 elk-7.2.42/examples/magnetism/Cr-mono/0000755002504400250440000000000014061636520021300 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Cr-mono/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020346 xustar0030 mtime=1623670096.211101289 30 atime=1623670096.211101289 30 ctime=1623670096.211101289 elk-7.2.42/examples/magnetism/Cr-mono/elk.in0000644002504400250440000000236314061636520022407 0ustar00dewhurstdewhurst00000000000000 ! Unsupported monolayer of Cr with the symmetry and lattice constant of a ! monolayer on the Ag(111) surface (see Phys. Rev. B 69, 24415 (2004)), which ! exhibits a non-collinear Neel state. Small magnetic fields 120 degrees apart ! are applied to each of the three atoms. ! Try plotting the 2D magnetisation density in OpenDX (version 4.3.2) using the ! files provided. tasks 0 72 spinpol .true. ! note that the number of empty states should be large because non-collinear ! effects are obtained in the second-variational step nempty 8 avec 1.5 0.86602540378 0.0 1.5 -0.86602540378 0.0 0.0 0.0 1.0 scale1 5.50836 : 7.79/sqrt(2) scale2 5.50836 scale3 7.0 sppath '../../../species/' ! note that the magnetic fields are in Cartesian coordinates atoms 1 : nspecies 'Cr.in' : spfname 3 : natoms 0.0 0.0 0.0 0.0 0.1 0.0 : atposl, bfcmt 0.333333333333 0.333333333333 0.0 -0.086602540378 -0.05 0.0 0.666666666667 0.666666666667 0.0 0.086602540378 -0.05 0.0 ngridk 2 2 1 vkloff 0.5 0.5 0.0 plot2d 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 200 200 elk-7.2.42/examples/magnetism/Cr-mono/PaxHeaders.21776/mag2d.general0000644000000000000000000000013214061636520021574 xustar0030 mtime=1623670096.212101288 30 atime=1623670096.212101288 30 ctime=1623670096.212101288 elk-7.2.42/examples/magnetism/Cr-mono/mag2d.general0000644002504400250440000000027314061636520023633 0ustar00dewhurstdewhurst00000000000000file = MAG2D.OUT grid = 200 x 200 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 2-vector, 3-vector type = float, float end elk-7.2.42/examples/magnetism/Cr-mono/PaxHeaders.21776/mag2d.net0000644000000000000000000000013214061636520020745 xustar0030 mtime=1623670096.214101286 30 atime=1623670096.213101287 30 ctime=1623670096.214101286 elk-7.2.42/examples/magnetism/Cr-mono/mag2d.net0000644002504400250440000002211314061636520023001 0ustar00dewhurstdewhurst00000000000000// // time: Sat Jun 16 15:49:00 2007 // // version: 3.2.0 (format), 4.4.0 (DX) // // // MODULE main // workspace: width = 565, height = 623 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 47, y = 39, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "mag2d.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Sample[1]: x = 216, y = 66, inputs = 2, label = Sample // input[2]: defaulting = 0, visible = 1, type = 1, value = 2000 // main_Sample_1_out_1 = Sample( main_Import_1_out_1, main_Sample_1_in_2 ) [instance: 1, cache: 1]; // // node Compute[1]: x = 84, y = 147, inputs = 3, label = Compute // input[1]: defaulting = 0, visible = 0, type = 32, value = "$0/mag($0)" // expression: value = a/mag(a) // name[2]: value = a // name[3]: value = b // main_Compute_1_out_1 = Compute( main_Compute_1_in_1, main_Sample_1_out_1, main_Compute_1_in_3 ) [instance: 1, cache: 1]; // // node AutoGlyph[1]: x = 44, y = 254, inputs = 7, label = AutoGlyph // input[2]: defaulting = 0, visible = 1, type = 32, value = "rocket2D" // input[3]: defaulting = 0, visible = 1, type = 5, value = 7.0 // input[4]: defaulting = 0, visible = 1, type = 5, value = 0.25 // input[5]: defaulting = 0, visible = 1, type = 5, value = 0.05 // main_AutoGlyph_1_out_1 = AutoGlyph( main_Compute_1_out_1, main_AutoGlyph_1_in_2, main_AutoGlyph_1_in_3, main_AutoGlyph_1_in_4, main_AutoGlyph_1_in_5, main_AutoGlyph_1_in_6, main_AutoGlyph_1_in_7 ) [instance: 1, cache: 1]; // // node Color[1]: x = 108, y = 341, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "black" // main_Color_1_out_1 = Color( main_AutoGlyph_1_out_1, main_Color_1_in_2, main_Color_1_in_3, main_Color_1_in_4, main_Color_1_in_5 ) [instance: 1, cache: 1]; // // node Compute[2]: x = 348, y = 66, inputs = 3, label = Compute // input[1]: defaulting = 0, visible = 0, type = 32, value = "mag($0)" // expression: value = mag(a) // name[2]: value = a // name[3]: value = b // main_Compute_2_out_1 = Compute( main_Compute_2_in_1, main_Import_1_out_1, main_Compute_2_in_3 ) [instance: 2, cache: 1]; // // node RubberSheet[1]: x = 467, y = 146, inputs = 4, label = RubberSheet // main_RubberSheet_1_out_1 = RubberSheet( main_Compute_2_out_1, main_RubberSheet_1_in_2, main_RubberSheet_1_in_3, main_RubberSheet_1_in_4 ) [instance: 1, cache: 1]; // // node Translate[1]: x = 283, y = 189, inputs = 2, label = Translate // input[2]: defaulting = 0, visible = 1, type = 8, value = [0 0 -3] // main_Translate_1_out_1 = Translate( main_RubberSheet_1_out_1, main_Translate_1_in_2 ) [instance: 1, cache: 1]; // // node Colormap[2]: x = 479, y = 260, inputs = 19, label = Colormap // input[1]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.66315789] [0.60691824 0.0] } // input[2]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[3]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[4]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[5]: defaulting = 0, visible = 0, type = 32, value = "Colormap_2" // input[7]: defaulting = 1, visible = 0, type = 5, value = 9.2432623e-05 // input[8]: defaulting = 1, visible = 0, type = 5, value = 0.9849546 // input[9]: defaulting = 1, visible = 0, type = 1, value = 20 // input[12]: defaulting = 0, visible = 0, type = 16777221, value = { 9.2432623e-05 0.9849546 } // input[17]: defaulting = 0, visible = 0, type = 5, value = 9.2432623e-05 // input[18]: defaulting = 0, visible = 0, type = 5, value = 0.9849546 // window: position = (0.2998,0.0000), size = 0.6348x0.5859 // main_Colormap_2_out_1[cache: 2], main_Colormap_2_out_2[cache: 2] = Colormap( main_Colormap_2_in_1, main_Colormap_2_in_2, main_Colormap_2_in_3, main_Colormap_2_in_4, main_Colormap_2_in_5, main_Translate_1_out_1, main_Colormap_2_in_7, main_Colormap_2_in_8, main_Colormap_2_in_9, main_Colormap_2_in_10, main_Colormap_2_in_11, main_Colormap_2_in_12, main_Colormap_2_in_13, main_Colormap_2_in_14, main_Colormap_2_in_15, main_Colormap_2_in_16, main_Colormap_2_in_17, main_Colormap_2_in_18, main_Colormap_2_in_19 ) [instance: 2, cache: 1]; // // node Color[3]: x = 339, y = 334, inputs = 5, label = Color // main_Color_3_out_1 = Color( main_Translate_1_out_1, main_Colormap_2_out_1, main_Color_3_in_3, main_Color_3_in_4, main_Color_3_in_5 ) [instance: 3, cache: 1]; // // node Collect[1]: x = 214, y = 419, inputs = 2, label = Collect // main_Collect_1_out_1 = Collect( main_Color_1_out_1, main_Color_3_out_1 ) [instance: 1, cache: 1]; // // node AutoCamera[1]: x = 363, y = 493, inputs = 9, label = AutoCamera // input[3]: defaulting = 0, visible = 0, type = 5, value = 15.0 // input[4]: defaulting = 0, visible = 0, type = 1, value = 800 // input[5]: defaulting = 0, visible = 0, type = 5, value = 0.6 // input[7]: defaulting = 0, visible = 0, type = 3, value = 0 // input[8]: defaulting = 1, visible = 0, type = 5, value = 20.0 // input[9]: defaulting = 0, visible = 0, type = 32, value = "white" // main_AutoCamera_1_out_1 = AutoCamera( main_Collect_1_out_1, main_AutoCamera_1_in_2, main_AutoCamera_1_in_3, main_AutoCamera_1_in_4, main_AutoCamera_1_in_5, main_AutoCamera_1_in_6, main_AutoCamera_1_in_7, main_AutoCamera_1_in_8, main_AutoCamera_1_in_9 ) [instance: 1, cache: 1]; // // node Render[1]: x = 252, y = 561, inputs = 3, label = Render // main_Render_1_out_1 = Render( main_Collect_1_out_1, main_AutoCamera_1_out_1, main_Render_1_in_3 ) [instance: 1, cache: 1]; // // node Display[2]: x = 139, y = 557, inputs = 8, label = Display // depth: value = 24 // window: position = (0.0869,0.1107), size = 0.7949x0.6797 // main_Display_2_out_1[cache: 2] = Display( main_Render_1_out_1, main_Display_2_in_2, main_Display_2_in_3, main_Display_2_in_4, main_Display_2_in_5, main_Display_2_in_6, main_Display_2_in_7, main_Display_2_in_8 ) [instance: 2, cache: 1]; // network: end of macro body } main_Import_1_in_1 = "mag2d.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Sample_1_in_2 = 2000; main_Sample_1_out_1 = NULL; main_Compute_1_in_1 = "$0/mag($0)"; main_Compute_1_in_3 = NULL; main_Compute_1_out_1 = NULL; main_AutoGlyph_1_in_2 = "rocket2D"; main_AutoGlyph_1_in_3 = 7.0; main_AutoGlyph_1_in_4 = 0.25; main_AutoGlyph_1_in_5 = 0.05; main_AutoGlyph_1_in_6 = NULL; main_AutoGlyph_1_in_7 = NULL; main_AutoGlyph_1_out_1 = NULL; main_Color_1_in_2 = "black"; main_Color_1_in_3 = NULL; main_Color_1_in_4 = NULL; main_Color_1_in_5 = NULL; main_Color_1_out_1 = NULL; main_Compute_2_in_1 = "mag($0)"; main_Compute_2_in_3 = NULL; main_Compute_2_out_1 = NULL; main_RubberSheet_1_in_2 = NULL; main_RubberSheet_1_in_3 = NULL; main_RubberSheet_1_in_4 = NULL; main_RubberSheet_1_out_1 = NULL; main_Translate_1_in_2 = [0 0 -3]; main_Translate_1_out_1 = NULL; main_Colormap_2_in_1 = { [0.0 0.66315789] [0.60691824 0.0] }; main_Colormap_2_in_2 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_2_in_3 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_2_in_4 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_2_in_5 = "Colormap_2"; main_Colormap_2_in_7 = NULL; main_Colormap_2_in_8 = NULL; main_Colormap_2_in_9 = NULL; main_Colormap_2_in_10 = NULL; main_Colormap_2_in_11 = NULL; main_Colormap_2_in_12 = { 9.2432623e-05 0.9849546 }; main_Colormap_2_in_13 = NULL; main_Colormap_2_in_14 = NULL; main_Colormap_2_in_15 = NULL; main_Colormap_2_in_16 = NULL; main_Colormap_2_in_17 = 9.2432623e-05; main_Colormap_2_in_18 = 0.9849546; main_Colormap_2_in_19 = NULL; main_Colormap_2_out_1 = NULL; main_Color_3_in_3 = NULL; main_Color_3_in_4 = NULL; main_Color_3_in_5 = NULL; main_Color_3_out_1 = NULL; main_Collect_1_out_1 = NULL; main_AutoCamera_1_in_2 = NULL; main_AutoCamera_1_in_3 = 15.0; main_AutoCamera_1_in_4 = 800; main_AutoCamera_1_in_5 = 0.6; main_AutoCamera_1_in_6 = NULL; main_AutoCamera_1_in_7 = 0; main_AutoCamera_1_in_8 = NULL; main_AutoCamera_1_in_9 = "white"; main_AutoCamera_1_out_1 = NULL; main_Render_1_in_3 = NULL; main_Render_1_out_1 = NULL; main_Display_2_in_2 = NULL; main_Display_2_in_3 = "X24,,"; main_Display_2_in_4 = NULL; main_Display_2_in_5 = NULL; main_Display_2_in_6 = NULL; main_Display_2_in_7 = NULL; main_Display_2_in_8 = NULL; Executive("product version 4 4 0"); $sync main(); elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-FSM-MT-FM0000644000000000000000000000013214061636520017447 xustar0030 mtime=1623670096.216101284 30 atime=1623670096.215101285 30 ctime=1623670096.216101284 elk-7.2.42/examples/magnetism/Fe-FSM-MT-FM/0000755002504400250440000000000014061636520021561 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-FSM-MT-FM/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020627 xustar0030 mtime=1623670096.216101284 30 atime=1623670096.216101284 30 ctime=1623670096.216101284 elk-7.2.42/examples/magnetism/Fe-FSM-MT-FM/elk.in0000644002504400250440000000135214061636520022665 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic bcc iron example with fixed spin moment in muffin-tin. ! Run by Fredrik Bultmark, Francesco Cricchio, Lars Nordstrom. tasks 0 ! ferromagnetic local fixed spin moment calculation fsmtype 2 mommtfix 1 1 0.0 0.0 1.0 : ia, is, mommtfix ! FSM step length: reduce to improve convergence taufsm 0.01 lmaxapw 10 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt sppath '../../../species/' ngridk 6 6 6 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe0000644000000000000000000000013214061636520016206 xustar0030 mtime=1623670096.219101281 30 atime=1623670096.218101283 30 ctime=1623670096.219101281 elk-7.2.42/examples/magnetism/Fe/0000755002504400250440000000000014061636520020320 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017366 xustar0030 mtime=1623670096.219101281 30 atime=1623670096.219101281 30 ctime=1623670096.219101281 elk-7.2.42/examples/magnetism/Fe/elk.in0000644002504400250440000000126614061636520021430 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic bcc iron example. Note the small global magnetic field, which ! is needed to break spin symmetry. Check the total moment of the cell in the ! file INFO.OUT. tasks 0 spinpol .true. ! small magnetic field in the z-direction bfieldc 0.0 0.0 0.01 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 sppath '../../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Eu0000644000000000000000000000013014061636520016223 xustar0029 mtime=1623670096.22110128 30 atime=1623670096.220101281 29 ctime=1623670096.22110128 elk-7.2.42/examples/magnetism/Eu/0000755002504400250440000000000014061636520020337 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Eu/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520017411 xustar0029 mtime=1623670096.22110128 29 atime=1623670096.22110128 29 ctime=1623670096.22110128 elk-7.2.42/examples/magnetism/Eu/elk.in0000644002504400250440000000101614061636520021440 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic bcc Eu example (thanks to Sandro Massidda for fixing a problem ! with the Eu.in species file). tasks 0 10 spinpol .true. spinorb .true. bfieldc 0.0 0.0 0.01 nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 4.30385 sppath '../../../species/' atoms 1 : nspecies 'Eu.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 8 8 8 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-FSM0000644000000000000000000000013214061636520016631 xustar0030 mtime=1623670096.224101277 30 atime=1623670096.223101278 30 ctime=1623670096.224101277 elk-7.2.42/examples/magnetism/Fe-FSM/0000755002504400250440000000000014061636520020743 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-FSM/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020011 xustar0030 mtime=1623670096.224101277 30 atime=1623670096.224101277 30 ctime=1623670096.224101277 elk-7.2.42/examples/magnetism/Fe-FSM/elk.in0000644002504400250440000000141614061636520022050 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic bcc iron fixed spin moment example. tasks 0 ! small mixing parameter required beta0 0.05 ! FSM step length: reduce to improve convergence taufsm 0.01 spinpol .true. ! total fixed spin moment required fsmtype 1 ! fixed spin moment vector momfix 0.0 0.0 1.0 ! small magnetic field in the z-direction bfieldc 0.0 0.0 0.01 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 sppath '../../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/magnetism/PaxHeaders.21776/FeCo-MAE0000644000000000000000000000013214061636520017070 xustar0030 mtime=1623670096.226101275 30 atime=1623670096.225101276 30 ctime=1623670096.226101275 elk-7.2.42/examples/magnetism/FeCo-MAE/0000755002504400250440000000000014061636520021202 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/FeCo-MAE/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020250 xustar0030 mtime=1623670096.226101275 30 atime=1623670096.226101275 30 ctime=1623670096.226101275 elk-7.2.42/examples/magnetism/FeCo-MAE/elk.in0000644002504400250440000000261014061636520022304 0ustar00dewhurstdewhurst00000000000000 ! Determination of the magnetic anisotropy energy (MAE) for Fe_(1-x)Co_x where ! x = 1/2 and the unit cell is tetragonal of L1_0 type. ! The MAE is determined from a set of fixed spin moment direction calculations ! performed automatically with task = 28. The number of direction points used is ! given by the parameter 'npmae'. The estimation becomes more accurate as the ! number of points increases, but the calculation takes longer. The MAE is also ! strongly dependent on the number of k-points, the number used in this example ! is insufficient for a reliable result. ! Example updated by James Glasbrenner and others. tasks 28 ! high angular momentum cut-off needed for accurate densities and potentials lmaxapw 14 lmaxo 14 ! number of magnetisation direction points; the estimate of the MAE improves ! with the number of points; in this case, the Cartesian x, y and z directions ! are used npmae 3 ! very tight convergence required epspot 1.e-8 epsengy 1.e-6 rgkmax 8.0 ngridk 4 4 4 swidth 0.01 mixtype 3 ! artificial strained lattice avec 0.5 0.5 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale1 6.8 scale2 6.8 scale3 7.0 sppath '../../../species/' atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'Co.in' 1 0.0 0.5 0.5 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-AFM0000644000000000000000000000013214061636520016607 xustar0030 mtime=1623670096.229101272 30 atime=1623670096.228101273 30 ctime=1623670096.229101272 elk-7.2.42/examples/magnetism/Fe-AFM/0000755002504400250440000000000014061636520020721 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-AFM/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017767 xustar0030 mtime=1623670096.229101272 30 atime=1623670096.229101272 30 ctime=1623670096.229101272 elk-7.2.42/examples/magnetism/Fe-AFM/elk.in0000644002504400250440000000116614061636520022030 0ustar00dewhurstdewhurst00000000000000 ! Antiferromagnetic fcc iron example tasks 0 spinpol .true. ! fairly large number of empty states required for magnetic cases nempty 8 avec 0.5 0.5 0.0 0.5 -0.5 0.0 0.0 0.0 1.0 scale 6.82 sppath '../../../species/' ! note the magnetic fields on each atom atoms 1 : nspecies 'Fe.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.1 : atposl, bfcmt 0.5 0.5 0.5 0.0 0.0 -0.1 ! this k-point set is too small for calculation of accurate moments ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Fe-spiral-supercell0000644000000000000000000000013014061636520021470 xustar0029 mtime=1623670096.23110127 30 atime=1623670096.230101271 29 ctime=1623670096.23110127 elk-7.2.42/examples/magnetism/Fe-spiral-supercell/0000755002504400250440000000000014061636520023604 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Fe-spiral-supercell/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520022656 xustar0029 mtime=1623670096.23110127 29 atime=1623670096.23110127 29 ctime=1623670096.23110127 elk-7.2.42/examples/magnetism/Fe-spiral-supercell/elk.in0000644002504400250440000000210014061636520024700 0ustar00dewhurstdewhurst00000000000000 ! Spin-spiral state for Gamma-Fe calculated supercells instead of the spiral ! Bloch state anzatz. This is required for functionals which do not preserve ! the anzatz self-consistently. ! The code runs in the same way as the phonon supercell calculations. The ! supercells are generated automatically from the q-points given by ngridq. Like ! phonons, several instances of the code can be started in the same directory, ! allowing for parallel generation of the q-dependent ground-states. ! Note that automatic k-point generation is always enabled for this task. tasks 350 ! q-point set on which the spiral ground-states are to be computed ngridq 2 2 2 highq .true. avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.375 sppath '../../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 -0.01 0.0 0.0 : atposl, bfcmt ! define a fixed spin direction in the muffin-tin fsmtype -2 mommtfix 1 1 1.0 0.0 0.0 elk-7.2.42/examples/magnetism/PaxHeaders.21776/Ni0000644000000000000000000000013214061636520016222 xustar0030 mtime=1623670096.234101268 30 atime=1623670096.233101268 30 ctime=1623670096.234101268 elk-7.2.42/examples/magnetism/Ni/0000755002504400250440000000000014061636520020334 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/magnetism/Ni/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017402 xustar0030 mtime=1623670096.234101268 30 atime=1623670096.234101268 30 ctime=1623670096.234101268 elk-7.2.42/examples/magnetism/Ni/elk.in0000644002504400250440000000120114061636520021431 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic nickel example. A small global magnetic field is required to ! break spin symmetry. Check the total spin moment of the cell in the file ! INFO.OUT. Note that large k-point grids are required for obtaining accurate ! moments. tasks 0 spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/PaxHeaders.21776/non-linear-optics0000644000000000000000000000013214061636520017231 xustar0030 mtime=1623670096.237101265 30 atime=1623670096.235101267 30 ctime=1623670096.237101265 elk-7.2.42/examples/non-linear-optics/0000755002504400250440000000000014061636520021343 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/non-linear-optics/PaxHeaders.21776/GaAs0000644000000000000000000000013214061636520020044 xustar0030 mtime=1623670096.238101264 30 atime=1623670096.237101265 30 ctime=1623670096.238101264 elk-7.2.42/examples/non-linear-optics/GaAs/0000755002504400250440000000000014061636520022156 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/non-linear-optics/GaAs/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021224 xustar0030 mtime=1623670096.238101264 30 atime=1623670096.238101264 30 ctime=1623670096.238101264 elk-7.2.42/examples/non-linear-optics/GaAs/elk.in0000644002504400250440000000161314061636520023262 0ustar00dewhurstdewhurst00000000000000 ! Susceptibility for non-linear optical second-harmonic generation in GaAs. The ! inverse lifetime is determined by swidth. Note that many k-points and empty ! states are required for good convergence. Various contributions to the ! susceptibility are also written to file. ! For details, see Physica Scripta T109, 128 (2004). tasks 0 120 125 nempty 15 scissor 0.031 swidth 0.008 ! components of the optical tensor optcomp 1 2 3 wplot 400 100 0 : nwplot, ngrkf, nswplot 0.0 0.3 : wplot mixtype 3 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 ngridk 12 12 12 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/PaxHeaders.21776/tensor-moments0000644000000000000000000000013014061636520016660 xustar0029 mtime=1623670096.24210126 30 atime=1623670096.239101263 29 ctime=1623670096.24210126 elk-7.2.42/examples/tensor-moments/0000755002504400250440000000000014061636520020774 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/tensor-moments/PaxHeaders.21776/NiO-LDA+U-FLL0000644000000000000000000000013214061636520020560 xustar0030 mtime=1623670096.241101261 30 atime=1623670096.240101262 30 ctime=1623670096.241101261 elk-7.2.42/examples/tensor-moments/NiO-LDA+U-FLL/0000755002504400250440000000000014061636520022672 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/tensor-moments/NiO-LDA+U-FLL/PaxHeaders.21776/elk.in0000644000000000000000000000013014061636520021736 xustar0029 mtime=1623670096.24210126 30 atime=1623670096.241101261 29 ctime=1623670096.24210126 elk-7.2.42/examples/tensor-moments/NiO-LDA+U-FLL/elk.in0000644002504400250440000000275614061636520024007 0ustar00dewhurstdewhurst00000000000000 ! NiO in AFMII structure with LDA+U and fully-localised-limit (FLL) double ! counting (dftu=1). Values of Slater parameters for Ni are taken from ! literature. Calculate the tensor moment decomposition of the density ! matrix and of the Hartree-Fock LDA+U energy in TMDFTU.OUT with task=400 ! (see PRB 80, 035121 (2009)). ! Observe the large 011 (spin-polarization), 404 (high multipole of charge) and ! the almost degenerate 413, 414, 415 (high multipoles of magnetization) ! contributions to the exchange energy. ! Compare the case with and without spin-orbit coupling (spinorb). ! Example by Francesco Cricchio. tasks 0 400 ! DFT+U block ! here FLL double counting is used (dftu=1) with Slater parameters as specified dft+u 1 2 : dftu, inpdftu 1 2 0.29399 0.30078 0.18799 : is, l, f0, f2, f4 spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 ! fairly high number of empty states nempty 8 sppath '../../../species/' ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/tensor-moments/PaxHeaders.21776/US-LDA+SOC+U0000644000000000000000000000013114061636520020426 xustar0030 mtime=1623670096.243101259 29 atime=1623670096.24210126 30 ctime=1623670096.243101259 elk-7.2.42/examples/tensor-moments/US-LDA+SOC+U/0000755002504400250440000000000014061636520022541 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/tensor-moments/US-LDA+SOC+U/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021607 xustar0030 mtime=1623670096.244101258 30 atime=1623670096.244101258 30 ctime=1623670096.244101258 elk-7.2.42/examples/tensor-moments/US-LDA+SOC+U/elk.in0000644002504400250440000000413714061636520023651 0ustar00dewhurstdewhurst00000000000000 ! US in FM structure with magnetic moment along easy-axis [111] with LDA+SOC+U ! and automatic interpolation double counting (dftu=3). Values of Slater ! parameters for Uranium are calculated through a Yukawa potential with ! screening length automatically determined such that U=1.0 eV (0.036749 Ha). ! In this way there is only one free parameter to be chosen. ! Check the tensor moment decomposition of the density matrix and of the ! Hartree-Fock DFT+U energy (and its convergence) in TMDFTU.OUT (see PRB 80, ! 035121 (2009)). Observe the large 011 (spin-polarization), 110 (SOC-like term) ! and 615 (large multipole of magnetization density) contributions to the ! exchange-energy. ! Example by Francesco Cricchio. tasks 0 ! DFT+U block ! here interpolation double-counting is used (dftu=3) ! inpdftu=5 corresponds to determine the Yukawa screening length that produces ! U=1 eV (0.036749 Ha) through a secant algorithm dft+u 3 5 : dftu,inpdftu 1 3 0.0367493060 : is, l, U fixed ! the tensor moments are calculated and written to file at every iteration tmwrite .true. spinpol .true. spinorb .true. scale 10.36175041 ! fcc lattice vectors avec 0.0 0.5 0.5 0.5 0.0 0.5 0.5 0.5 0.0 atoms 2 : nspecies 'U.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'S.in' : spfname 1 : natoms 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt ! small global magnetic field along easy-axis [111] bfieldc -0.01 -0.01 -0.01 ! this rgkmax is too small for an accurate calculation ! rgkmax for actinides must usually be increased around 9.0-9.5 rgkmax 8.0 ! convergence of magnetic moment with number of empty states ! must be checked nempty 8 sppath '../../../species/' ! low convergence parameters for testing epspot 1.d-4 epsengy 1.d-2 ! larger betamax might help convergence betamax 1.0 beta0 0.05 ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/PaxHeaders.21776/DFT+U0000644000000000000000000000013214061636520014505 xustar0030 mtime=1623670096.261101242 30 atime=1623670096.245101257 30 ctime=1623670096.261101242 elk-7.2.42/examples/DFT+U/0000755002504400250440000000000014061636520016617 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/PaxHeaders.21776/FeAl-LDA+U-INT0000644000000000000000000000013214061636520016542 xustar0030 mtime=1623670096.247101256 30 atime=1623670096.246101256 30 ctime=1623670096.247101256 elk-7.2.42/examples/DFT+U/FeAl-LDA+U-INT/0000755002504400250440000000000014061636520020654 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/FeAl-LDA+U-INT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017722 xustar0030 mtime=1623670096.248101255 30 atime=1623670096.248101255 30 ctime=1623670096.248101255 elk-7.2.42/examples/DFT+U/FeAl-LDA+U-INT/elk.in0000644002504400250440000000240714061636520021762 0ustar00dewhurstdewhurst00000000000000 ! FeAl in CsCl (B2) structure using LDA+U and interpolation between AMF and ! FLL double counting (dftu=3). Compare the total DOS and partial DOS with the ! one calculated with bare LDA. Note the opening of a gap and the increased ! localization of Fe d-electrons. Note the interpolation factor in file ! ALPHADU.OUT about 0.1, this value is a sign of a weakly correlated compound ! (see PRB 67, 153106 (2003)). ! Example created by Fredrik Bultmark, Francesco Cricchio and Lars Nordstrom. tasks 0 10 ! DFT+U block ! here an interpolation between AMF and FLL double counting is used (dftu=3) ! inpdftu=1 corresponds to provide U and J as input dft+u 3 1 : dftu,inpdftu 1 2 0.183 0.034911967 : is, l, U, J spinpol .true. ! small field along z to break symmetry bfieldc 0.0 0.0 -0.01 scale 5.496 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'Al.in' 1 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt sppath '../../../species/' ! fair number of empty states nempty 8 ! fair number of k-points ngridk 8 8 8 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/NiO-LDA+U-optimized0000644000000000000000000000013214061636520017772 xustar0030 mtime=1623670096.250101253 30 atime=1623670096.249101254 30 ctime=1623670096.250101253 elk-7.2.42/examples/DFT+U/NiO-LDA+U-optimized/0000755002504400250440000000000014061636520022104 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/NiO-LDA+U-optimized/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021152 xustar0030 mtime=1623670096.251101252 30 atime=1623670096.250101253 30 ctime=1623670096.251101252 elk-7.2.42/examples/DFT+U/NiO-LDA+U-optimized/elk.in0000644002504400250440000000356514061636520023220 0ustar00dewhurstdewhurst00000000000000 ! Optimized LDA+U calculation for NiO AFMII with only one free parameter. ! The double counting is automatically chosen by doing an interpolation ! between FLL and AMF (dftu=3). The Slater parameters are determined through ! a Yukawa potential. Hence there is only one free parameter, the potential ! screening length lambda (see PRB 80, 035121 (2009)). Here lambda=1.5 ! provides realistic values of Slater parameters which are printed in FDU.OUT. ! Try to plot the magnetic moment as function of lambda. ! Analyze total and partial DOS (t2g and eg states) and compare with bare LDA. ! Look at the file ALPHADU.OUT where the interpolation factor is printed out. ! (see PRB 67, 153106 (2003)). Such a factor is about 0.5 for NiO. ! Compare the value of the interpolation factor with the example Fe-LDA+U-INT ! (weakly correlated system). ! Example by Francesco Cricchio. tasks 0 10 ! DFT+U block ! here an interpolation between AMF and FLL double counting is used (dftu=3) ! inpdftu=4 corresponds to calculate the Slater parameters through a Yukawa ! potential with screening length lambda, which constitutes the only free ! parameter in the calculation dft+u 3 4 : dftu, inpdftu 1 2 1.5 : is, l, lambda spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 ! fairly high number of empty states nempty 8 sppath '../../../species/' ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/FeAl-LDA0000644000000000000000000000013214061636520015712 xustar0030 mtime=1623670096.252101251 30 atime=1623670096.251101252 30 ctime=1623670096.252101251 elk-7.2.42/examples/DFT+U/FeAl-LDA/0000755002504400250440000000000014061636520020024 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/FeAl-LDA/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520017076 xustar0029 mtime=1623670096.25310125 29 atime=1623670096.25310125 29 ctime=1623670096.25310125 elk-7.2.42/examples/DFT+U/FeAl-LDA/elk.in0000644002504400250440000000124514061636520021131 0ustar00dewhurstdewhurst00000000000000 ! FeAl in CsCl (B2) structure using LDA. Compare with LDA+U case. ! Example Created by Fredrik Bultmark, Francesco Cricchio and Lars Nordstrom. tasks 0 10 spinpol .true. ! small field along z to break symmetry bfieldc 0.0 0.0 -0.01 scale 5.496 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'Al.in' 1 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt sppath '../../../species/' ! fair number of empty states nempty 8 ngridk 8 8 8 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/NiO-LDA0000644000000000000000000000013114061636520015567 xustar0030 mtime=1623670096.254101249 29 atime=1623670096.25310125 30 ctime=1623670096.254101249 elk-7.2.42/examples/DFT+U/NiO-LDA/0000755002504400250440000000000014061636520017702 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/NiO-LDA/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016750 xustar0030 mtime=1623670096.255101248 30 atime=1623670096.255101248 30 ctime=1623670096.255101248 elk-7.2.42/examples/DFT+U/NiO-LDA/elk.in0000644002504400250440000000147314061636520021012 0ustar00dewhurstdewhurst00000000000000 ! NiO in AFMII structure with LDA for comparison with LDA+U case. ! Example by Fredrik Bultmark, Francesco Cricchio and Lars Nordstrom. tasks 0 10 spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 ! fairly high number of empty states nempty 8 sppath '../../../species/' ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/NiO-LDA+U-FLL-Ykwa0000644000000000000000000000013214061636520017314 xustar0030 mtime=1623670096.257101246 30 atime=1623670096.256101247 30 ctime=1623670096.257101246 elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL-Ykwa/0000755002504400250440000000000014061636520021426 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL-Ykwa/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020474 xustar0030 mtime=1623670096.257101246 30 atime=1623670096.257101246 30 ctime=1623670096.257101246 elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL-Ykwa/elk.in0000644002504400250440000000337214061636520022536 0ustar00dewhurstdewhurst00000000000000 ! NiO in AFMII structure with LDA+U and fully-localised-limit (FLL) double ! counting (dftu=1). With inpdftu=4 the values of Slater parameters are ! conveniently calculated through a screened Yukawa potential with screening ! length lambda provided as input (see PRB 80, 035121 (2009)). Here lambda=1.5 ! gives realistic values of Slater integrals which are printed in FDU.OUT. ! Try to plot the magnetic moments of Ni as function of lambda. ! If inpdftu=5 the code will automatically determine the screening length ! corresponding to the fixed value of U (udufix) provided as input. ! Example by Francesco Cricchio. tasks 0 ! DFT+U block ! here FLL double counting is used (dftu=1) ! inpdftu=4 corresponds to calculate the Slater parameters self-consistently ! through a Yukawa potential with screening length lambda dft+u 1 4 : dftu, inpdftu 1 2 1.5 : is, l, lambda ! alternatively try inpdftu=5; this will determine the screening length ! corresponding to U=0.29399 Ha (8 eV) through a secant algorithm !dft+u ! 1 5 : dftu, inpdftu ! 1 2 0.29399 : is, l, U fixed spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 sppath '../../../species/' ! fairly high number of empty states nempty 8 ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/FeAl-LDA+U-AMF0000644000000000000000000000013214061636520016513 xustar0030 mtime=1623670096.259101244 30 atime=1623670096.258101245 30 ctime=1623670096.259101244 elk-7.2.42/examples/DFT+U/FeAl-LDA+U-AMF/0000755002504400250440000000000014061636520020625 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/FeAl-LDA+U-AMF/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017673 xustar0030 mtime=1623670096.260101244 30 atime=1623670096.260101244 30 ctime=1623670096.260101244 elk-7.2.42/examples/DFT+U/FeAl-LDA+U-AMF/elk.in0000644002504400250440000000251014061636520021726 0ustar00dewhurstdewhurst00000000000000 ! FeAl in CsCl (B2) structure using LDA+U and "around mean field" (AMF) double ! counting (dftu=2). Compare the total DOS and partial DOS with the one calculated ! with bare LDA. Note the opening of a gap and the increased localization of Fe ! d-electrons. Note the non-magnetic solution for U about 0.1837 Ha (5 eV) ! (the exact value of U depends on the muffin-tin (MT) radius used since DFT+U ! is applied only inside mt spheres). Try to plot the magnetic moment as ! function of U for different MT radius. Example created by Fredrik Bultmark, ! Francesco Cricchio and Lars Nordstrom. tasks 0 10 ! DFT+U block ! here AMF double counting is used (dftu=2) ! inpdftu=1 corresponds to provide U and J as input dft+u 2 1 : dftu, inpdftu 1 2 0.183 0.034911967 : is, l, U, J spinpol .true. ! small field along z to break symmetry bfieldc 0.0 0.0 -0.01 scale 5.496 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'Al.in' 1 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt sppath '../../../species/' ! fair number of empty states nempty 8 ! fair number of k-points ngridk 8 8 8 elk-7.2.42/examples/DFT+U/PaxHeaders.21776/NiO-LDA+U-FLL0000644000000000000000000000013214061636520016403 xustar0030 mtime=1623670096.262101242 30 atime=1623670096.261101242 30 ctime=1623670096.262101242 elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL/0000755002504400250440000000000014061636520020515 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017563 xustar0030 mtime=1623670096.262101242 30 atime=1623670096.262101242 30 ctime=1623670096.262101242 elk-7.2.42/examples/DFT+U/NiO-LDA+U-FLL/elk.in0000644002504400250440000000304414061636520021621 0ustar00dewhurstdewhurst00000000000000 ! NiO in AFMII structure with LDA+U and fully-localised-limit (FLL) double ! counting (dftu=1). Values of Slater parameters for Ni are taken from ! literature. ! Analyze total and partial DOS (t2g and eg states) and compare with bare LDA. ! Notice the increasing of the gap (~4eV) and of magnetic moment to ~1.69 u_b. ! The increasing of magnetic moment is typical of FLL double counting. ! Example by Francesco Cricchio. tasks 0 10 ! DFT+U block ! here FLL double counting is used (dftu=1) ! inpdftu=1 corresponds to provide U and J in Hartree as input ! inpdftu=2 or 3 corresponds to, respectively, Slater or Racah parameters ! inpdftu=4 or 5 corresponds to calculating the Slater parameters through a ! Yukawa potential (see example NiO-LDA+U-FLL-Ykwa and PRB 80, 035121 (2009)) dft+u 1 2 : dftu,inpdftu 1 2 0.29399 0.30078 0.18799 : is, l, f0, f2, f4 spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 ! fairly high number of empty states nempty 8 sppath '../../../species/' ! this grid is too small for accurate magnetic moment ngridk 4 4 4 elk-7.2.42/examples/PaxHeaders.21776/Fermi-surface0000644000000000000000000000013114061636520016357 xustar0030 mtime=1623670096.280101225 29 atime=1623670096.26410124 30 ctime=1623670096.280101225 elk-7.2.42/examples/Fermi-surface/0000755002504400250440000000000014061636520020472 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Fermi-surface/PaxHeaders.21776/Ni0000644000000000000000000000013214061636520016726 xustar0030 mtime=1623670096.271101233 30 atime=1623670096.265101239 30 ctime=1623670096.271101233 elk-7.2.42/examples/Fermi-surface/Ni/0000755002504400250440000000000014061636520021040 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Fermi-surface/Ni/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020106 xustar0030 mtime=1623670096.266101238 30 atime=1623670096.266101238 30 ctime=1623670096.266101238 elk-7.2.42/examples/Fermi-surface/Ni/elk.in0000644002504400250440000000142714061636520022147 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic nickel Fermi surface. Note that the spin-up and -down surfaces ! are separated into the files FERMISURF_UP.OUT and FERMISURF_DN.OUT. ! Use OpenDX with the files in this directory to produce the 3D plot. tasks 0 100 ! define box corners and grid size for 3D plot, first point is the origin plot3d 0.0 0.0 0.0 : vclp3d 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 40 40 40 : np3d spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 8 8 8 elk-7.2.42/examples/Fermi-surface/Ni/PaxHeaders.21776/fermi.net0000644000000000000000000000013214061636520020615 xustar0030 mtime=1623670096.268101236 30 atime=1623670096.267101237 30 ctime=1623670096.268101236 elk-7.2.42/examples/Fermi-surface/Ni/fermi.net0000644002504400250440000003707514061636520022666 0ustar00dewhurstdewhurst00000000000000// // time: Thu Nov 6 12:08:29 2008 // // version: 3.2.0 (format), 4.4.0 (DX) // // // MODULE main // workspace: width = 372, height = 548 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 147, y = 71, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "fermi_up.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Isosurface[1]: x = 146, y = 196, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_1_out_1 = Isosurface( main_Import_1_out_1, main_Isosurface_1_in_2, main_Isosurface_1_in_3, main_Isosurface_1_in_4, main_Isosurface_1_in_5, main_Isosurface_1_in_6 ) [instance: 1, cache: 1]; // // node Color[1]: x = 154, y = 315, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "green" // main_Color_1_out_1 = Color( main_Isosurface_1_out_1, main_Color_1_in_2, main_Color_1_in_3, main_Color_1_in_4, main_Color_1_in_5 ) [instance: 1, cache: 1]; // // node Import[2]: x = 291, y = 73, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "fermi_dn.general" // main_Import_2_out_1 = Import( main_Import_2_in_1, main_Import_2_in_2, main_Import_2_in_3, main_Import_2_in_4, main_Import_2_in_5, main_Import_2_in_6 ) [instance: 2, cache: 1]; // // node Isosurface[2]: x = 290, y = 194, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_2_out_1 = Isosurface( main_Import_2_out_1, main_Isosurface_2_in_2, main_Isosurface_2_in_3, main_Isosurface_2_in_4, main_Isosurface_2_in_5, main_Isosurface_2_in_6 ) [instance: 2, cache: 1]; // // node Color[2]: x = 300, y = 313, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "yellow" // main_Color_2_out_1 = Color( main_Isosurface_2_out_1, main_Color_2_in_2, main_Color_2_in_3, main_Color_2_in_4, main_Color_2_in_5 ) [instance: 2, cache: 1]; // // node Collect[1]: x = 231, y = 399, inputs = 2, label = Collect // main_Collect_1_out_1 = Collect( main_Color_1_out_1, main_Color_2_out_1 ) [instance: 1, cache: 1]; // // node Image[2]: x = 283, y = 486, inputs = 49, label = Image // input[1]: defaulting = 0, visible = 0, type = 32, value = "Image_2" // input[4]: defaulting = 0, visible = 0, type = 1, value = 1 // input[5]: defaulting = 0, visible = 0, type = 8, value = [0.459851 0.459851 0.459851] // input[6]: defaulting = 0, visible = 0, type = 8, value = [5.36756 3.53923 7.97489] // input[7]: defaulting = 0, visible = 0, type = 5, value = 5.08525 // input[8]: defaulting = 0, visible = 0, type = 1, value = 640 // input[9]: defaulting = 0, visible = 0, type = 5, value = 0.75 // input[10]: defaulting = 0, visible = 0, type = 8, value = [-0.0834371 0.940039 -0.330704] // input[11]: defaulting = 1, visible = 0, type = 5, value = 30.0002 // input[12]: defaulting = 0, visible = 0, type = 1, value = 0 // input[14]: defaulting = 0, visible = 0, type = 1, value = 1 // input[15]: defaulting = 1, visible = 0, type = 32, value = "none" // input[16]: defaulting = 1, visible = 0, type = 32, value = "none" // input[17]: defaulting = 1, visible = 0, type = 1, value = 1 // input[18]: defaulting = 1, visible = 0, type = 1, value = 1 // input[19]: defaulting = 0, visible = 0, type = 1, value = 0 // input[29]: defaulting = 1, visible = 0, type = 3, value = 0 // input[41]: defaulting = 0, visible = 0, type = 32, value = "none" // depth: value = 24 // window: position = (0.0104,0.0600), size = 0.4542x0.5800, screen = 0 // internal caching: 1 // main_Image_2_out_1, main_Image_2_out_2, main_Image_2_out_3 = Image( main_Image_2_in_1, main_Collect_1_out_1, main_Image_2_in_3, main_Image_2_in_4, main_Image_2_in_5, main_Image_2_in_6, main_Image_2_in_7, main_Image_2_in_8, main_Image_2_in_9, main_Image_2_in_10, main_Image_2_in_11, main_Image_2_in_12, main_Image_2_in_13, main_Image_2_in_14, main_Image_2_in_15, main_Image_2_in_16, main_Image_2_in_17, main_Image_2_in_18, main_Image_2_in_19, main_Image_2_in_20, main_Image_2_in_21, main_Image_2_in_22, main_Image_2_in_23, main_Image_2_in_24, main_Image_2_in_25, main_Image_2_in_26, main_Image_2_in_27, main_Image_2_in_28, main_Image_2_in_29, main_Image_2_in_30, main_Image_2_in_31, main_Image_2_in_32, main_Image_2_in_33, main_Image_2_in_34, main_Image_2_in_35, main_Image_2_in_36, main_Image_2_in_37, main_Image_2_in_38, main_Image_2_in_39, main_Image_2_in_40, main_Image_2_in_41, main_Image_2_in_42, main_Image_2_in_43, main_Image_2_in_44, main_Image_2_in_45, main_Image_2_in_46, main_Image_2_in_47, main_Image_2_in_48, main_Image_2_in_49 ) [instance: 2, cache: 1]; // network: end of macro body CacheScene(main_Image_2_in_1, main_Image_2_out_1, main_Image_2_out_2); } main_Import_1_in_1 = "fermi_up.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Isosurface_1_in_2 = 0.0; main_Isosurface_1_in_3 = NULL; main_Isosurface_1_in_4 = NULL; main_Isosurface_1_in_5 = NULL; main_Isosurface_1_in_6 = NULL; main_Isosurface_1_out_1 = NULL; main_Color_1_in_2 = "green"; main_Color_1_in_3 = NULL; main_Color_1_in_4 = NULL; main_Color_1_in_5 = NULL; main_Color_1_out_1 = NULL; main_Import_2_in_1 = "fermi_dn.general"; main_Import_2_in_2 = NULL; main_Import_2_in_3 = NULL; main_Import_2_in_4 = NULL; main_Import_2_in_5 = NULL; main_Import_2_in_6 = NULL; main_Import_2_out_1 = NULL; main_Isosurface_2_in_2 = 0.0; main_Isosurface_2_in_3 = NULL; main_Isosurface_2_in_4 = NULL; main_Isosurface_2_in_5 = NULL; main_Isosurface_2_in_6 = NULL; main_Isosurface_2_out_1 = NULL; main_Color_2_in_2 = "yellow"; main_Color_2_in_3 = NULL; main_Color_2_in_4 = NULL; main_Color_2_in_5 = NULL; main_Color_2_out_1 = NULL; main_Collect_1_out_1 = NULL; macro Image( id, object, where, useVector, to, from, width, resolution, aspect, up, viewAngle, perspective, options, buttonState = 1, buttonUpApprox = "none", buttonDownApprox = "none", buttonUpDensity = 1, buttonDownDensity = 1, renderMode = 0, defaultCamera, reset, backgroundColor, throttle, RECenable = 0, RECfile, RECformat, RECresolution, RECaspect, AAenable = 0, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, interactionMode, title, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, webOptions) -> ( object, camera, where) { ImageMessage( id, backgroundColor, throttle, RECenable, RECfile, RECformat, RECresolution, RECaspect, AAenable, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels, interactionMode, title, renderMode, buttonUpApprox, buttonDownApprox, buttonUpDensity, buttonDownDensity) [instance: 1, cache: 1]; autoCamera = AutoCamera( object, "front", object, resolution, aspect, [0,1,0], perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; realCamera = Camera( to, from, width, resolution, aspect, up, perspective, viewAngle, backgroundColor) [instance: 1, cache: 1]; coloredDefaultCamera = UpdateCamera(defaultCamera, background=backgroundColor) [instance: 1, cache: 1]; nullDefaultCamera = Inquire(defaultCamera, "is null + 1") [instance: 1, cache: 1]; resetCamera = Switch( nullDefaultCamera, coloredDefaultCamera, autoCamera) [instance: 1, cache: 1]; resetNull = Inquire( reset, "is null + 1") [instance: 2, cache: 1]; reset = Switch( resetNull, reset, 0) [instance: 2, cache: 1]; whichCamera = Compute( "($0 != 0 || $1 == 0) ? 1 : 2", reset, useVector) [instance: 1, cache: 1]; camera = Switch( whichCamera, resetCamera, realCamera) [instance: 3, cache: 1]; AAobject = AutoAxes( object, camera, AAlabels, AAticks, AAcorners, AAframe, AAadjust, AAcursor, AAgrid, AAcolors, AAannotation, AAlabelscale, AAfont, AAxTickLocs, AAyTickLocs, AAzTickLocs, AAxTickLabels, AAyTickLabels, AAzTickLabels) [instance: 1, cache: 1]; switchAAenable = Compute("$0+1", AAenable) [instance: 2, cache: 1]; object = Switch( switchAAenable, object, AAobject) [instance:4, cache: 1]; SWapproximation_options = Switch( buttonState, buttonUpApprox, buttonDownApprox) [instance: 5, cache: 1]; SWdensity_options = Switch( buttonState, buttonUpDensity, buttonDownDensity) [instance: 6, cache: 1]; HWapproximation_options = Format( "%s,%s", buttonDownApprox, buttonUpApprox) [instance: 1, cache: 1]; HWdensity_options = Format( "%d,%d", buttonDownDensity, buttonUpDensity) [instance: 2, cache: 1]; switchRenderMode = Compute( "$0+1", renderMode) [instance: 3, cache: 1]; approximation_options = Switch( switchRenderMode, SWapproximation_options, HWapproximation_options) [instance: 7, cache: 1]; density_options = Switch( switchRenderMode, SWdensity_options, HWdensity_options) [instance: 8, cache: 1]; renderModeString = Switch( switchRenderMode, "software", "hardware")[instance: 9, cache: 1]; object_tag = Inquire( object, "object tag")[instance: 3, cache: 1]; annoted_object = Options( object, "send boxes", 0, "cache", 1, "object tag", object_tag, "ddcamera", whichCamera, "rendering approximation", approximation_options, "render every", density_options, "button state", buttonState, "rendering mode", renderModeString) [instance: 1, cache: 1]; RECresNull = Inquire( RECresolution, "is null + 1") [instance: 4, cache: 1]; ImageResolution = Inquire( camera, "camera resolution") [instance: 5, cache: 1]; RECresolution = Switch( RECresNull, RECresolution, ImageResolution) [instance: 10, cache: 1]; RECaspectNull = Inquire( RECaspect, "is null + 1") [instance: 6, cache: 1]; ImageAspect = Inquire( camera, "camera aspect") [instance: 7, cache: 1]; RECaspect = Switch( RECaspectNull, RECaspect, ImageAspect) [instance: 11, cache: 1]; switchRECenable = Compute( "$0 == 0 ? 1 : (($2 == $3) && ($4 == $5)) ? ($1 == 1 ? 2 : 3) : 4", RECenable, switchRenderMode, RECresolution, ImageResolution, RECaspect, ImageAspect) [instance: 4, cache: 1]; NoRECobject, RECNoRerenderObject, RECNoRerHW, RECRerenderObject = Route(switchRECenable, annoted_object); Display( NoRECobject, camera, where, throttle) [instance: 1, cache: 1]; image = Render( RECNoRerenderObject, camera) [instance: 1, cache: 1]; Display( image, NULL, where, throttle) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 1, cache: 1]; rec_where = Display( RECNoRerHW, camera, where, throttle) [instance: 1, cache: 0]; rec_image = ReadImageWindow( rec_where) [instance: 1, cache: 1]; WriteImage( rec_image, RECfile, RECformat) [instance: 1, cache: 1]; RECupdateCamera = UpdateCamera( camera, resolution=RECresolution, aspect=RECaspect) [instance: 2, cache: 1]; Display( RECRerenderObject, camera, where, throttle) [instance: 1, cache: 1]; RECRerenderObject = ScaleScreen( RECRerenderObject, NULL, RECresolution, camera) [instance: 1, cache: 1]; image = Render( RECRerenderObject, RECupdateCamera) [instance: 2, cache: 1]; WriteImage( image, RECfile, RECformat) [instance: 2, cache: 1]; } main_Image_2_in_1 = "Image_2"; main_Image_2_in_3 = "X24,,"; main_Image_2_in_4 = 1; main_Image_2_in_5 = [0.459851 0.459851 0.459851]; main_Image_2_in_6 = [5.36756 3.53923 7.97489]; main_Image_2_in_7 = 5.08525; main_Image_2_in_8 = 640; main_Image_2_in_9 = 0.75; main_Image_2_in_10 = [-0.0834371 0.940039 -0.330704]; main_Image_2_in_11 = NULL; main_Image_2_in_12 = 0; main_Image_2_in_13 = NULL; main_Image_2_in_14 = 1; main_Image_2_in_15 = NULL; main_Image_2_in_16 = NULL; main_Image_2_in_17 = NULL; main_Image_2_in_18 = NULL; main_Image_2_in_19 = 0; main_Image_2_in_20 = NULL; main_Image_2_in_21 = NULL; main_Image_2_in_22 = NULL; main_Image_2_in_23 = NULL; main_Image_2_in_25 = NULL; main_Image_2_in_26 = NULL; main_Image_2_in_27 = NULL; main_Image_2_in_28 = NULL; main_Image_2_in_29 = NULL; main_Image_2_in_30 = NULL; main_Image_2_in_31 = NULL; main_Image_2_in_32 = NULL; main_Image_2_in_33 = NULL; main_Image_2_in_34 = NULL; main_Image_2_in_35 = NULL; main_Image_2_in_36 = NULL; main_Image_2_in_37 = NULL; main_Image_2_in_38 = NULL; main_Image_2_in_39 = NULL; main_Image_2_in_40 = NULL; main_Image_2_in_41 = "none"; main_Image_2_in_42 = NULL; main_Image_2_in_43 = NULL; main_Image_2_in_44 = NULL; main_Image_2_in_45 = NULL; main_Image_2_in_46 = NULL; main_Image_2_in_47 = NULL; main_Image_2_in_48 = NULL; main_Image_2_in_49 = NULL; Executive("product version 4 4 0"); $sync main(); elk-7.2.42/examples/Fermi-surface/Ni/PaxHeaders.21776/fermi_dn.general0000644000000000000000000000013214061636520022125 xustar0030 mtime=1623670096.270101234 30 atime=1623670096.269101235 30 ctime=1623670096.270101234 elk-7.2.42/examples/Fermi-surface/Ni/fermi_dn.general0000644002504400250440000000030514061636520024160 0ustar00dewhurstdewhurst00000000000000file = ./FERMISURF_DN.OUT grid = 40 x 40 x 40 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 3-vector, scalar type = float, float end elk-7.2.42/examples/Fermi-surface/Ni/PaxHeaders.21776/fermi_up.general0000644000000000000000000000013214061636520022150 xustar0030 mtime=1623670096.271101233 30 atime=1623670096.271101233 30 ctime=1623670096.271101233 elk-7.2.42/examples/Fermi-surface/Ni/fermi_up.general0000644002504400250440000000030514061636520024203 0ustar00dewhurstdewhurst00000000000000file = ./FERMISURF_UP.OUT grid = 40 x 40 x 40 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 3-vector, scalar type = float, float end elk-7.2.42/examples/Fermi-surface/PaxHeaders.21776/Al0000644000000000000000000000013214061636520016714 xustar0030 mtime=1623670096.276101229 30 atime=1623670096.272101232 30 ctime=1623670096.276101229 elk-7.2.42/examples/Fermi-surface/Al/0000755002504400250440000000000014061636520021026 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Fermi-surface/Al/PaxHeaders.21776/elk.in0000644000000000000000000000013014061636520020072 xustar0029 mtime=1623670096.27410123 30 atime=1623670096.273101231 29 ctime=1623670096.27410123 elk-7.2.42/examples/Fermi-surface/Al/elk.in0000644002504400250440000000062014061636520022127 0ustar00dewhurstdewhurst00000000000000 ! Fermi surface plot of aluminium. tasks 0 100 ! define box corners and grid size for 3D plot, first point is the origin plot3d 0.0 0.0 0.0 : vclp3d 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 40 40 40 : np3d avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.8267 sppath '../../../species/' atoms 1 'Al.in' 1 0.0 0.0 0.0 ngridk 6 6 6 elk-7.2.42/examples/Fermi-surface/Al/PaxHeaders.21776/fermi.general0000644000000000000000000000013214061636520021432 xustar0030 mtime=1623670096.275101229 30 atime=1623670096.275101229 30 ctime=1623670096.275101229 elk-7.2.42/examples/Fermi-surface/Al/fermi.general0000644002504400250440000000030214061636520023462 0ustar00dewhurstdewhurst00000000000000file = ./FERMISURF.OUT grid = 40 x 40 x 40 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 3-vector, scalar type = float, float end elk-7.2.42/examples/Fermi-surface/Al/PaxHeaders.21776/fermi.net0000644000000000000000000000013214061636520020603 xustar0030 mtime=1623670096.277101228 30 atime=1623670096.276101229 30 ctime=1623670096.277101228 elk-7.2.42/examples/Fermi-surface/Al/fermi.net0000644002504400250440000002203614061636520022643 0ustar00dewhurstdewhurst00000000000000// // time: Fri Jul 15 15:49:55 2011 // // version: 3.2.0 (format), 4.4.4 (DX) // // // MODULE main // workspace: width = 620, height = 667 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Camera[1]: x = 404, y = 490, inputs = 9, label = Camera // input[2]: defaulting = 0, visible = 1, type = 8, value = [1 1 1] // input[3]: defaulting = 0, visible = 1, type = 5, value = 6.0 // input[4]: defaulting = 0, visible = 1, type = 1, value = 800 // input[5]: defaulting = 0, visible = 1, type = 5, value = 0.65 // input[9]: defaulting = 0, visible = 1, type = 32, value = "white" // main_Camera_1_out_1 = Camera( main_Camera_1_in_1, main_Camera_1_in_2, main_Camera_1_in_3, main_Camera_1_in_4, main_Camera_1_in_5, main_Camera_1_in_6, main_Camera_1_in_7, main_Camera_1_in_8, main_Camera_1_in_9 ) [instance: 1, cache: 1]; // // node Caption[1]: x = 46, y = 444, inputs = 9, label = Caption // input[1]: defaulting = 0, visible = 1, type = 32, value = "Aluminium Fermi surface" // input[6]: defaulting = 0, visible = 0, type = 1, value = 25 // main_Caption_1_out_1 = Caption( main_Caption_1_in_1, main_Caption_1_in_2, main_Caption_1_in_3, main_Caption_1_in_4, main_Caption_1_in_5, main_Caption_1_in_6, main_Caption_1_in_7, main_Caption_1_in_8, main_Caption_1_in_9 ) [instance: 1, cache: 1]; // // node Color[6]: x = 141, y = 504, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "black" // main_Color_6_out_1 = Color( main_Caption_1_out_1, main_Color_6_in_2, main_Color_6_in_3, main_Color_6_in_4, main_Color_6_in_5 ) [instance: 6, cache: 1]; // // node Import[1]: x = 258, y = 10, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "fermi.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Isosurface[3]: x = 57, y = 106, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_3_out_1 = Isosurface( main_Import_1_out_1, main_Isosurface_3_in_2, main_Isosurface_3_in_3, main_Isosurface_3_in_4, main_Isosurface_3_in_5, main_Isosurface_3_in_6 ) [instance: 3, cache: 1]; // // node Color[3]: x = 171, y = 194, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "yellow" // input[4]: defaulting = 0, visible = 0, type = 32, value = "front colors" // main_Color_3_out_1 = Color( main_Isosurface_3_out_1, main_Color_3_in_2, main_Color_3_in_3, main_Color_3_in_4, main_Color_3_in_5 ) [instance: 3, cache: 1]; // // node Color[4]: x = 50, y = 286, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "blue" // input[4]: defaulting = 0, visible = 0, type = 32, value = "back colors" // main_Color_4_out_1 = Color( main_Color_3_out_1, main_Color_4_in_2, main_Color_4_in_3, main_Color_4_in_4, main_Color_4_in_5 ) [instance: 4, cache: 1]; // // node Translate[2]: x = 166, y = 364, inputs = 2, label = Translate // input[2]: defaulting = 0, visible = 1, type = 8, value = [0 1.2 2.0] // main_Translate_2_out_1 = Translate( main_Color_4_out_1, main_Translate_2_in_2 ) [instance: 2, cache: 1]; // // node Refine[2]: x = 473, y = 83, inputs = 2, label = Refine // input[2]: defaulting = 0, visible = 1, type = 1, value = 1 // main_Refine_2_out_1 = Refine( main_Import_1_out_1, main_Refine_2_in_2 ) [instance: 2, cache: 1]; // // node MapToPlane[1]: x = 317, y = 129, inputs = 3, label = MapToPlane // input[2]: defaulting = 1, visible = 1, type = 8, value = [1,1,1] // input[3]: defaulting = 0, visible = 1, type = 8, value = [1,1,1] // main_MapToPlane_1_out_1 = MapToPlane( main_Refine_2_out_1, main_MapToPlane_1_in_2, main_MapToPlane_1_in_3 ) [instance: 1, cache: 1]; // // node Isosurface[2]: x = 508, y = 170, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // input[3]: defaulting = 1, visible = 1, type = 1, value = 10 // main_Isosurface_2_out_1 = Isosurface( main_MapToPlane_1_out_1, main_Isosurface_2_in_2, main_Isosurface_2_in_3, main_Isosurface_2_in_4, main_Isosurface_2_in_5, main_Isosurface_2_in_6 ) [instance: 2, cache: 1]; // // node Color[5]: x = 324, y = 241, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "black" // main_Color_5_out_1 = Color( main_Isosurface_2_out_1, main_Color_5_in_2, main_Color_5_in_3, main_Color_5_in_4, main_Color_5_in_5 ) [instance: 5, cache: 1]; // // node Ribbon[1]: x = 500, y = 264, inputs = 2, label = Ribbon // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.01 // main_Ribbon_1_out_1 = Ribbon( main_Color_5_out_1, main_Ribbon_1_in_2 ) [instance: 1, cache: 1]; // // node Shade[1]: x = 492, y = 358, inputs = 8, label = Shade // input[2]: defaulting = 0, visible = 1, type = 3, value = 0 // main_Shade_1_out_1 = Shade( main_Ribbon_1_out_1, main_Shade_1_in_2, main_Shade_1_in_3, main_Shade_1_in_4, main_Shade_1_in_5, main_Shade_1_in_6, main_Shade_1_in_7, main_Shade_1_in_8 ) [instance: 1, cache: 1]; // // node Translate[1]: x = 360, y = 360, inputs = 2, label = Translate // input[2]: defaulting = 0, visible = 1, type = 8, value = [2.0 1.2 0] // main_Translate_1_out_1 = Translate( main_Shade_1_out_1, main_Translate_1_in_2 ) [instance: 1, cache: 1]; // // node Collect[1]: x = 265, y = 458, inputs = 3, label = Collect // main_Collect_1_out_1 = Collect( main_Color_6_out_1, main_Translate_2_out_1, main_Translate_1_out_1 ) [instance: 1, cache: 1]; // // node Display[3]: x = 287, y = 605, inputs = 8, label = Display // depth: value = 24 // main_Display_3_out_1[cache: 2] = Display( main_Collect_1_out_1, main_Camera_1_out_1, main_Display_3_in_3, main_Display_3_in_4, main_Display_3_in_5, main_Display_3_in_6, main_Display_3_in_7, main_Display_3_in_8 ) [instance: 3, cache: 1]; // network: end of macro body } main_Camera_1_in_1 = NULL; main_Camera_1_in_2 = [1 1 1]; main_Camera_1_in_3 = 6.0; main_Camera_1_in_4 = 800; main_Camera_1_in_5 = 0.65; main_Camera_1_in_6 = NULL; main_Camera_1_in_7 = NULL; main_Camera_1_in_8 = NULL; main_Camera_1_in_9 = "white"; main_Camera_1_out_1 = NULL; main_Caption_1_in_1 = "Aluminium Fermi surface"; main_Caption_1_in_2 = NULL; main_Caption_1_in_3 = NULL; main_Caption_1_in_4 = NULL; main_Caption_1_in_5 = NULL; main_Caption_1_in_6 = 25; main_Caption_1_in_7 = NULL; main_Caption_1_in_8 = NULL; main_Caption_1_in_9 = NULL; main_Caption_1_out_1 = NULL; main_Color_6_in_2 = "black"; main_Color_6_in_3 = NULL; main_Color_6_in_4 = NULL; main_Color_6_in_5 = NULL; main_Color_6_out_1 = NULL; main_Import_1_in_1 = "fermi.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Isosurface_3_in_2 = 0.0; main_Isosurface_3_in_3 = NULL; main_Isosurface_3_in_4 = NULL; main_Isosurface_3_in_5 = NULL; main_Isosurface_3_in_6 = NULL; main_Isosurface_3_out_1 = NULL; main_Color_3_in_2 = "yellow"; main_Color_3_in_3 = NULL; main_Color_3_in_4 = "front colors"; main_Color_3_in_5 = NULL; main_Color_3_out_1 = NULL; main_Color_4_in_2 = "blue"; main_Color_4_in_3 = NULL; main_Color_4_in_4 = "back colors"; main_Color_4_in_5 = NULL; main_Color_4_out_1 = NULL; main_Translate_2_in_2 = [0 1.2 2.0]; main_Translate_2_out_1 = NULL; main_Refine_2_in_2 = 1; main_Refine_2_out_1 = NULL; main_MapToPlane_1_in_2 = NULL; main_MapToPlane_1_in_3 = [1,1,1]; main_MapToPlane_1_out_1 = NULL; main_Isosurface_2_in_2 = 0.0; main_Isosurface_2_in_3 = NULL; main_Isosurface_2_in_4 = NULL; main_Isosurface_2_in_5 = NULL; main_Isosurface_2_in_6 = NULL; main_Isosurface_2_out_1 = NULL; main_Color_5_in_2 = "black"; main_Color_5_in_3 = NULL; main_Color_5_in_4 = NULL; main_Color_5_in_5 = NULL; main_Color_5_out_1 = NULL; main_Ribbon_1_in_2 = 0.01; main_Ribbon_1_out_1 = NULL; main_Shade_1_in_2 = 0; main_Shade_1_in_3 = NULL; main_Shade_1_in_4 = NULL; main_Shade_1_in_5 = NULL; main_Shade_1_in_6 = NULL; main_Shade_1_in_7 = NULL; main_Shade_1_in_8 = NULL; main_Shade_1_out_1 = NULL; main_Translate_1_in_2 = [2.0 1.2 0]; main_Translate_1_out_1 = NULL; main_Collect_1_out_1 = NULL; main_Display_3_in_3 = "X24,,"; main_Display_3_in_4 = NULL; main_Display_3_in_5 = NULL; main_Display_3_in_6 = NULL; main_Display_3_in_7 = NULL; main_Display_3_in_8 = NULL; Executive("product version 4 4 4"); $sync main(); elk-7.2.42/examples/Fermi-surface/PaxHeaders.21776/Fe0000644000000000000000000000013214061636520016712 xustar0030 mtime=1623670096.278101227 30 atime=1623670096.277101228 30 ctime=1623670096.278101227 elk-7.2.42/examples/Fermi-surface/Fe/0000755002504400250440000000000014061636520021024 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Fermi-surface/Fe/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020072 xustar0030 mtime=1623670096.279101226 30 atime=1623670096.279101226 30 ctime=1623670096.279101226 elk-7.2.42/examples/Fermi-surface/Fe/elk.in0000644002504400250440000000146114061636520022131 0ustar00dewhurstdewhurst00000000000000 ! Fermi surface of ferromagnetic bcc iron. Use XCrysDen for visualisation. ! Run code and then use ! xcrysden --bxsf FERMISURF(_UP/_DN).bxsf ! to display the spin up and down Fermi surfaces. tasks 0 102 : this generates the XCrysDen Fermi Surface .bxsf file ! 3D Fermi surface box defined in terms of reciprocal lattice vectors plot3d 0.0 0.0 0.0 : origin (first corner) 1.0 0.0 0.0 : second corner, etc. 0.0 1.0 0.0 0.0 0.0 1.0 12 12 12 : number of points in each direction spinpol .true. bfieldc 0.0 0.0 0.01 ! fairly large number of empty states required for magnetic cases nempty 8 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 sppath '../../../species/' atoms 1 'Fe.in' 1 0.0 0.0 0.0 ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/Fermi-surface/PaxHeaders.21776/MgB20000644000000000000000000000013214061636520017107 xustar0030 mtime=1623670096.284101221 30 atime=1623670096.280101225 30 ctime=1623670096.284101221 elk-7.2.42/examples/Fermi-surface/MgB2/0000755002504400250440000000000014061636520021221 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Fermi-surface/MgB2/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020267 xustar0030 mtime=1623670096.281101224 30 atime=1623670096.281101224 30 ctime=1623670096.281101224 elk-7.2.42/examples/Fermi-surface/MgB2/elk.in0000644002504400250440000000144414061636520022327 0ustar00dewhurstdewhurst00000000000000 ! Fermi surface of MgB2 plotted with OpenDX. In this example, the surfaces from ! different bands are separated in the 3D plot. tasks 0 101 ngridk 6 6 4 ! plot a 2x2x2 reciprocal space cell plot3d 0.0 0.0 0.0 2.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0 2.0 24 24 16 avec 5.8316944 0.0 0.0 -2.9158472 5.050395498 0.0 0.0 0.0 6.65939438 sppath '../../../species/' atoms 2 : nspecies 'Mg.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'B.in' : spfname 2 : natoms; atposl below 0.3333333333 0.6666666667 0.5 0.6666666667 0.3333333333 0.5 elk-7.2.42/examples/Fermi-surface/MgB2/PaxHeaders.21776/fermi.general0000644000000000000000000000013214061636520021625 xustar0030 mtime=1623670096.283101222 30 atime=1623670096.282101223 30 ctime=1623670096.283101222 elk-7.2.42/examples/Fermi-surface/MgB2/fermi.general0000644002504400250440000000035614061636520023666 0ustar00dewhurstdewhurst00000000000000file = FERMISURF.OUT grid = 24 x 24 x 16 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0, field1, field2 structure = 3-vector, scalar, scalar, scalar type = float, float, float, float end elk-7.2.42/examples/Fermi-surface/MgB2/PaxHeaders.21776/fermi.net0000644000000000000000000000013214061636520020776 xustar0030 mtime=1623670096.284101221 30 atime=1623670096.284101221 30 ctime=1623670096.284101221 elk-7.2.42/examples/Fermi-surface/MgB2/fermi.net0000644002504400250440000001624214061636520023040 0ustar00dewhurstdewhurst00000000000000// // time: Mon Sep 3 18:12:53 2012 // // version: 3.2.0 (format), 4.4.4 (DX) // // // MODULE main // workspace: width = 527, height = 582 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 151, y = 24, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "fermi.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Select[1]: x = 240, y = 119, inputs = 3, label = Select // input[2]: defaulting = 0, visible = 1, type = 1, value = 0 // main_Select_1_out_1 = Select( main_Import_1_out_1, main_Select_1_in_2, main_Select_1_in_3 ) [instance: 1, cache: 1]; // // node Isosurface[1]: x = 182, y = 209, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_1_out_1 = Isosurface( main_Select_1_out_1, main_Isosurface_1_in_2, main_Isosurface_1_in_3, main_Isosurface_1_in_4, main_Isosurface_1_in_5, main_Isosurface_1_in_6 ) [instance: 1, cache: 1]; // // node Color[1]: x = 199, y = 297, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "red" // main_Color_1_out_1 = Color( main_Isosurface_1_out_1, main_Color_1_in_2, main_Color_1_in_3, main_Color_1_in_4, main_Color_1_in_5 ) [instance: 1, cache: 1]; // // node Select[2]: x = 319, y = 120, inputs = 3, label = Select // input[2]: defaulting = 0, visible = 1, type = 1, value = 1 // main_Select_2_out_1 = Select( main_Import_1_out_1, main_Select_2_in_2, main_Select_2_in_3 ) [instance: 2, cache: 1]; // // node Isosurface[2]: x = 310, y = 211, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_2_out_1 = Isosurface( main_Select_2_out_1, main_Isosurface_2_in_2, main_Isosurface_2_in_3, main_Isosurface_2_in_4, main_Isosurface_2_in_5, main_Isosurface_2_in_6 ) [instance: 2, cache: 1]; // // node Color[2]: x = 316, y = 299, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "yellow" // main_Color_2_out_1 = Color( main_Isosurface_2_out_1, main_Color_2_in_2, main_Color_2_in_3, main_Color_2_in_4, main_Color_2_in_5 ) [instance: 2, cache: 1]; // // node Select[3]: x = 409, y = 122, inputs = 3, label = Select // input[2]: defaulting = 0, visible = 1, type = 1, value = 2 // main_Select_3_out_1 = Select( main_Import_1_out_1, main_Select_3_in_2, main_Select_3_in_3 ) [instance: 3, cache: 1]; // // node Isosurface[3]: x = 449, y = 213, inputs = 6, label = Isosurface // input[2]: defaulting = 0, visible = 1, type = 5, value = 0.0 // main_Isosurface_3_out_1 = Isosurface( main_Select_3_out_1, main_Isosurface_3_in_2, main_Isosurface_3_in_3, main_Isosurface_3_in_4, main_Isosurface_3_in_5, main_Isosurface_3_in_6 ) [instance: 3, cache: 1]; // // node Color[3]: x = 444, y = 300, inputs = 5, label = Color // input[2]: defaulting = 0, visible = 1, type = 32, value = "green" // main_Color_3_out_1 = Color( main_Isosurface_3_out_1, main_Color_3_in_2, main_Color_3_in_3, main_Color_3_in_4, main_Color_3_in_5 ) [instance: 3, cache: 1]; // // node Collect[1]: x = 299, y = 392, inputs = 3, label = Collect // main_Collect_1_out_1 = Collect( main_Color_1_out_1, main_Color_2_out_1, main_Color_3_out_1 ) [instance: 1, cache: 1]; // // node AutoCamera[2]: x = 422, y = 412, inputs = 9, label = AutoCamera // input[2]: defaulting = 0, visible = 1, type = 8, value = [1.0 -0.25 0.5] // input[3]: defaulting = 0, visible = 0, type = 5, value = 4.0 // input[4]: defaulting = 0, visible = 0, type = 1, value = 800 // input[6]: defaulting = 0, visible = 0, type = 8, value = [0 0 1] // main_AutoCamera_2_out_1 = AutoCamera( main_Collect_1_out_1, main_AutoCamera_2_in_2, main_AutoCamera_2_in_3, main_AutoCamera_2_in_4, main_AutoCamera_2_in_5, main_AutoCamera_2_in_6, main_AutoCamera_2_in_7, main_AutoCamera_2_in_8, main_AutoCamera_2_in_9 ) [instance: 2, cache: 1]; // // node Render[1]: x = 255, y = 507, inputs = 3, label = Render // main_Render_1_out_1 = Render( main_Collect_1_out_1, main_AutoCamera_2_out_1, main_Render_1_in_3 ) [instance: 1, cache: 1]; // // node Display[1]: x = 451, y = 520, inputs = 8, label = Display // depth: value = 24 // window: position = (0.0089,0.0231), size = 0.4240x0.5944, screen = 0 // main_Display_1_out_1[cache: 2] = Display( main_Render_1_out_1, main_Display_1_in_2, main_Display_1_in_3, main_Display_1_in_4, main_Display_1_in_5, main_Display_1_in_6, main_Display_1_in_7, main_Display_1_in_8 ) [instance: 1, cache: 1]; // network: end of macro body } main_Import_1_in_1 = "fermi.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Select_1_in_2 = 0; main_Select_1_in_3 = NULL; main_Select_1_out_1 = NULL; main_Isosurface_1_in_2 = 0.0; main_Isosurface_1_in_3 = NULL; main_Isosurface_1_in_4 = NULL; main_Isosurface_1_in_5 = NULL; main_Isosurface_1_in_6 = NULL; main_Isosurface_1_out_1 = NULL; main_Color_1_in_2 = "red"; main_Color_1_in_3 = NULL; main_Color_1_in_4 = NULL; main_Color_1_in_5 = NULL; main_Color_1_out_1 = NULL; main_Select_2_in_2 = 1; main_Select_2_in_3 = NULL; main_Select_2_out_1 = NULL; main_Isosurface_2_in_2 = 0.0; main_Isosurface_2_in_3 = NULL; main_Isosurface_2_in_4 = NULL; main_Isosurface_2_in_5 = NULL; main_Isosurface_2_in_6 = NULL; main_Isosurface_2_out_1 = NULL; main_Color_2_in_2 = "yellow"; main_Color_2_in_3 = NULL; main_Color_2_in_4 = NULL; main_Color_2_in_5 = NULL; main_Color_2_out_1 = NULL; main_Select_3_in_2 = 2; main_Select_3_in_3 = NULL; main_Select_3_out_1 = NULL; main_Isosurface_3_in_2 = 0.0; main_Isosurface_3_in_3 = NULL; main_Isosurface_3_in_4 = NULL; main_Isosurface_3_in_5 = NULL; main_Isosurface_3_in_6 = NULL; main_Isosurface_3_out_1 = NULL; main_Color_3_in_2 = "green"; main_Color_3_in_3 = NULL; main_Color_3_in_4 = NULL; main_Color_3_in_5 = NULL; main_Color_3_out_1 = NULL; main_Collect_1_out_1 = NULL; main_AutoCamera_2_in_2 = [1.0 -0.25 0.5]; main_AutoCamera_2_in_3 = 4.0; main_AutoCamera_2_in_4 = 800; main_AutoCamera_2_in_5 = NULL; main_AutoCamera_2_in_6 = [0 0 1]; main_AutoCamera_2_in_7 = NULL; main_AutoCamera_2_in_8 = NULL; main_AutoCamera_2_in_9 = NULL; main_AutoCamera_2_out_1 = NULL; main_Render_1_in_3 = NULL; main_Render_1_out_1 = NULL; main_Display_1_in_2 = NULL; main_Display_1_in_3 = "X24,,"; main_Display_1_in_4 = NULL; main_Display_1_in_5 = NULL; main_Display_1_in_6 = NULL; main_Display_1_in_7 = NULL; main_Display_1_in_8 = NULL; Executive("product version 4 4 4"); $sync main(); elk-7.2.42/examples/PaxHeaders.21776/OEP0000644000000000000000000000013114061636520014312 xustar0030 mtime=1623670096.288101217 29 atime=1623670096.28510122 30 ctime=1623670096.288101217 elk-7.2.42/examples/OEP/0000755002504400250440000000000014061636520016425 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/OEP/PaxHeaders.21776/HEG0000644000000000000000000000013214061636520014716 xustar0030 mtime=1623670096.287101218 30 atime=1623670096.286101219 30 ctime=1623670096.287101218 elk-7.2.42/examples/OEP/HEG/0000755002504400250440000000000014061636520017030 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/OEP/HEG/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016076 xustar0030 mtime=1623670096.288101217 30 atime=1623670096.287101218 30 ctime=1623670096.288101217 elk-7.2.42/examples/OEP/HEG/elk.in0000644002504400250440000000070214061636520020132 0ustar00dewhurstdewhurst00000000000000 ! Optimised effetive potential (OEP) ground state of the homogenous electron ! gas. The Wigner radius (r_s) is written to INFO.OUT. Note that the exchange ! energy is only computed during the last iteration. tasks 0 xctype -1 chgexs 10.0 ! use the unit cell of aluminium avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.75 ! note that low density gases require denser k-point grids! ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/OEP/PaxHeaders.21776/Si0000644000000000000000000000013214061636520014666 xustar0030 mtime=1623670096.289101217 30 atime=1623670096.288101217 30 ctime=1623670096.289101217 elk-7.2.42/examples/OEP/Si/0000755002504400250440000000000014061636520017000 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/OEP/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016046 xustar0030 mtime=1623670096.290101216 30 atime=1623670096.290101216 30 ctime=1623670096.290101216 elk-7.2.42/examples/OEP/Si/elk.in0000644002504400250440000000217014061636520020103 0ustar00dewhurstdewhurst00000000000000 ! Optimised effective potential calculation of silicon. An iterative proceedure ! is used to find the optimised potential [Phys. Rev. Lett. 98, 196405 (2007)]. ! Note that the exact exchange energy is calculated only during the last ! self-consistent loop, which is the reason why the final total energy is ! different from those calculated in previous loops. tasks 0 20 ! exact exchange only (no correlation) xctype -1 ! large number of OEP iterations to converge the gap maxitoep 300 ! large number of empty states required nempty 15 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 4 4 4 ! These are the vertices to be joined for the band structure plot plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/PaxHeaders.21776/TDDFT-time-evolution0000644000000000000000000000013214061636520017513 xustar0030 mtime=1623670096.300101206 30 atime=1623670096.291101215 30 ctime=1623670096.300101206 elk-7.2.42/examples/TDDFT-time-evolution/0000755002504400250440000000000014061636520021625 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-time-evolution/PaxHeaders.21776/Si-ramp0000644000000000000000000000013014061636520021021 xustar0029 mtime=1623670096.29610121 30 atime=1623670096.292101214 29 ctime=1623670096.29610121 elk-7.2.42/examples/TDDFT-time-evolution/Si-ramp/0000755002504400250440000000000014061636520023135 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-time-evolution/Si-ramp/PaxHeaders.21776/CURRENT_TD.OUT0000644000000000000000000000013214061636520023202 xustar0030 mtime=1623670096.294101212 30 atime=1623670096.293101213 30 ctime=1623670096.294101212 elk-7.2.42/examples/TDDFT-time-evolution/Si-ramp/CURRENT_TD.OUT0000644002504400250440000022166714061636520025255 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.8644623958E-07 0.1019852863E-08 -0.2089850144E-06 0.5000000000 -0.4922748506E-07 0.1015602350E-08 -0.2091685305E-06 1.000000000 -0.4529148319E-06 0.9612447865E-09 -0.2094131967E-06 1.500000000 -0.1116944378E-05 0.8392404419E-09 -0.2097077474E-06 2.000000000 -0.2028799134E-05 0.6553324862E-09 -0.2099872188E-06 2.500000000 -0.3174740071E-05 0.4321333401E-09 -0.2101869665E-06 3.000000000 -0.4542272130E-05 0.2053379989E-09 -0.2102943481E-06 3.500000000 -0.6120336139E-05 0.1872021900E-10 -0.2103550900E-06 4.000000000 -0.7897714864E-05 -0.9017690588E-10 -0.2104326124E-06 4.500000000 -0.9861198698E-05 -0.1114240333E-09 -0.2105566255E-06 5.000000000 -0.1199490837E-04 -0.7528173880E-10 -0.2107012209E-06 5.500000000 -0.1428110766E-04 -0.4062271036E-10 -0.2108045873E-06 6.000000000 -0.1670176215E-04 -0.6227395573E-10 -0.2108103152E-06 6.500000000 -0.1923977112E-04 -0.1604584411E-09 -0.2106995298E-06 7.000000000 -0.2187929258E-04 -0.3166659608E-09 -0.2104963332E-06 7.500000000 -0.2460535190E-04 -0.4989821902E-09 -0.2102496239E-06 8.000000000 -0.2740334353E-04 -0.6948261205E-09 -0.2100058248E-06 8.500000000 -0.3025888494E-04 -0.9234801709E-09 -0.2097864082E-06 9.000000000 -0.3315803445E-04 -0.1219840913E-08 -0.2095785362E-06 9.500000000 -0.3608756978E-04 -0.1606334580E-08 -0.2093421781E-06 10.00000000 -0.3903505363E-04 -0.2078375405E-08 -0.2090316023E-06 10.50000000 -0.4198866413E-04 -0.2613791758E-08 -0.2086213393E-06 11.00000000 -0.4493697609E-04 -0.3194259110E-08 -0.2081209843E-06 11.50000000 -0.4786888739E-04 -0.3818340848E-08 -0.2075674665E-06 12.00000000 -0.5077374112E-04 -0.4497143259E-08 -0.2069987052E-06 12.50000000 -0.5364154780E-04 -0.5241150953E-08 -0.2064279117E-06 13.00000000 -0.5646316156E-04 -0.6052764178E-08 -0.2058386033E-06 13.50000000 -0.5923031005E-04 -0.6929598323E-08 -0.2052035580E-06 14.00000000 -0.6193546639E-04 -0.7870995331E-08 -0.2045102822E-06 14.50000000 -0.6457164100E-04 -0.8878255875E-08 -0.2037701705E-06 15.00000000 -0.6713223084E-04 -0.9948501086E-08 -0.2030041540E-06 15.50000000 -0.6961105581E-04 -0.1107090355E-07 -0.2022199984E-06 16.00000000 -0.7200260891E-04 -0.1223188258E-07 -0.2014042320E-06 16.50000000 -0.7430238665E-04 -0.1342536552E-07 -0.2005372836E-06 17.00000000 -0.7650706612E-04 -0.1465758779E-07 -0.1996175024E-06 17.50000000 -0.7861436371E-04 -0.1594094228E-07 -0.1986703870E-06 18.00000000 -0.8062263558E-04 -0.1728274119E-07 -0.1977326392E-06 18.50000000 -0.8253049422E-04 -0.1867996288E-07 -0.1968240542E-06 19.00000000 -0.8433673002E-04 -0.2012443436E-07 -0.1959318846E-06 19.50000000 -0.8604060240E-04 -0.2161177531E-07 -0.1950217731E-06 20.00000000 -0.8764227527E-04 -0.2314395587E-07 -0.1940667971E-06 20.50000000 -0.8914305802E-04 -0.2472305398E-07 -0.1930717422E-06 21.00000000 -0.9054527361E-04 -0.2634389971E-07 -0.1920746892E-06 21.50000000 -0.9185186777E-04 -0.2799446217E-07 -0.1911260177E-06 22.00000000 -0.9306604637E-04 -0.2966387906E-07 -0.1902602057E-06 22.50000000 -0.9419114998E-04 -0.3134913023E-07 -0.1894780889E-06 23.00000000 -0.9523074409E-04 -0.3305265557E-07 -0.1887486193E-06 23.50000000 -0.9618874426E-04 -0.3477341346E-07 -0.1880282138E-06 24.00000000 -0.9706943388E-04 -0.3650156287E-07 -0.1872881735E-06 24.50000000 -0.9787739481E-04 -0.3822329644E-07 -0.1865367936E-06 25.00000000 -0.9861747174E-04 -0.3993108838E-07 -0.1858228043E-06 25.50000000 -0.9929483196E-04 -0.4162816363E-07 -0.1852136513E-06 26.00000000 -0.9991504282E-04 -0.4332176010E-07 -0.1847569730E-06 26.50000000 -0.1004840327E-03 -0.4501176175E-07 -0.1844488970E-06 27.00000000 -0.1010078978E-03 -0.4668646246E-07 -0.1842343413E-06 27.50000000 -0.1014926726E-03 -0.4832975118E-07 -0.1840448437E-06 28.00000000 -0.1019442428E-03 -0.4993187890E-07 -0.1838496079E-06 28.50000000 -0.1023684738E-03 -0.5149240892E-07 -0.1836802940E-06 29.00000000 -0.1027714647E-03 -0.5301289493E-07 -0.1836069525E-06 29.50000000 -0.1031597419E-03 -0.5448841287E-07 -0.1836818748E-06 30.00000000 -0.1035402615E-03 -0.5590834794E-07 -0.1838974674E-06 30.50000000 -0.1039202193E-03 -0.5726613956E-07 -0.1841954444E-06 31.00000000 -0.1043067688E-03 -0.5856676975E-07 -0.1845215237E-06 31.50000000 -0.1047067696E-03 -0.5982208519E-07 -0.1848784972E-06 32.00000000 -0.1051266535E-03 -0.6103683304E-07 -0.1853288470E-06 32.50000000 -0.1055724454E-03 -0.6219898313E-07 -0.1859405649E-06 33.00000000 -0.1060499237E-03 -0.6328462784E-07 -0.1867210416E-06 33.50000000 -0.1065648334E-03 -0.6427340246E-07 -0.1875982326E-06 34.00000000 -0.1071230271E-03 -0.6515986691E-07 -0.1884707709E-06 34.50000000 -0.1077304348E-03 -0.6595063797E-07 -0.1892896339E-06 35.00000000 -0.1083928856E-03 -0.6665151108E-07 -0.1901038213E-06 35.50000000 -0.1091159164E-03 -0.6725802630E-07 -0.1910283155E-06 36.00000000 -0.1099047029E-03 -0.6775762032E-07 -0.1921545791E-06 36.50000000 -0.1107641150E-03 -0.6813829915E-07 -0.1934717863E-06 37.00000000 -0.1116987598E-03 -0.6839254448E-07 -0.1948618089E-06 37.50000000 -0.1127128965E-03 -0.6851236431E-07 -0.1961760299E-06 38.00000000 -0.1138102846E-03 -0.6848296573E-07 -0.1973394162E-06 38.50000000 -0.1149941762E-03 -0.6828449887E-07 -0.1984044290E-06 39.00000000 -0.1162675799E-03 -0.6790111909E-07 -0.1995116789E-06 39.50000000 -0.1176336378E-03 -0.6732639059E-07 -0.2007815011E-06 40.00000000 -0.1190957355E-03 -0.6655676406E-07 -0.2022130504E-06 40.50000000 -0.1206571024E-03 -0.6557860864E-07 -0.2036668418E-06 41.00000000 -0.1223200969E-03 -0.6436333484E-07 -0.2049503282E-06 41.50000000 -0.1240857417E-03 -0.6287763370E-07 -0.2059505510E-06 42.00000000 -0.1259539719E-03 -0.6109855511E-07 -0.2067167518E-06 42.50000000 -0.1279244942E-03 -0.5901558724E-07 -0.2074238593E-06 43.00000000 -0.1299976047E-03 -0.5661463917E-07 -0.2082325663E-06 43.50000000 -0.1321742910E-03 -0.5385974835E-07 -0.2091451140E-06 44.00000000 -0.1344555296E-03 -0.5069390260E-07 -0.2099714033E-06 44.50000000 -0.1368413724E-03 -0.4706164599E-07 -0.2104451498E-06 45.00000000 -0.1393305852E-03 -0.4293115739E-07 -0.2104127755E-06 45.50000000 -0.1419210813E-03 -0.3829011262E-07 -0.2099494891E-06 46.00000000 -0.1446106822E-03 -0.3311501357E-07 -0.2093007701E-06 46.50000000 -0.1473974944E-03 -0.2734334995E-07 -0.2086801549E-06 47.00000000 -0.1502796330E-03 -0.2087930570E-07 -0.2080743636E-06 47.50000000 -0.1532547007E-03 -0.1363128809E-07 -0.2072125525E-06 48.00000000 -0.1563196589E-03 -0.5544498002E-08 -0.2057337049E-06 48.50000000 -0.1594712893E-03 0.3408011652E-08 -0.2034288351E-06 49.00000000 -0.1627067814E-03 0.1327269287E-07 -0.2003718151E-06 49.50000000 -0.1660237879E-03 0.2415693464E-07 -0.1968391198E-06 50.00000000 -0.1694197828E-03 0.3622101076E-07 -0.1930849961E-06 50.50000000 -0.1728912664E-03 0.4962339371E-07 -0.1891471581E-06 51.00000000 -0.1764335712E-03 0.6447045973E-07 -0.1848217547E-06 51.50000000 -0.1800415071E-03 0.8082208988E-07 -0.1798024401E-06 52.00000000 -0.1837103222E-03 0.9875326105E-07 -0.1738535620E-06 52.50000000 -0.1874361742E-03 0.1184168375E-06 -0.1668838669E-06 53.00000000 -0.1912157787E-03 0.1400490926E-06 -0.1588940467E-06 53.50000000 -0.1950456411E-03 0.1639128478E-06 -0.1498822311E-06 54.00000000 -0.1989215992E-03 0.1902327332E-06 -0.1398066202E-06 54.50000000 -0.2028390184E-03 0.2191845996E-06 -0.1286222100E-06 55.00000000 -0.2067933357E-03 0.2509484000E-06 -0.1163196746E-06 55.50000000 -0.2107803796E-03 0.2857713591E-06 -0.1028893969E-06 56.00000000 -0.2147962335E-03 0.3239756771E-06 -0.8821525558E-07 56.50000000 -0.2188369335E-03 0.3658935390E-06 -0.7198753380E-07 57.00000000 -0.2228984331E-03 0.4117757194E-06 -0.5372716455E-07 57.50000000 -0.2269768980E-03 0.4617418338E-06 -0.3293036031E-07 58.00000000 -0.2310689534E-03 0.5158062503E-06 -0.9250524929E-08 58.50000000 -0.2351715124E-03 0.5739595876E-06 0.1738660992E-07 59.00000000 -0.2392812875E-03 0.6362561737E-06 0.4678050835E-07 59.50000000 -0.2433945034E-03 0.7028642455E-06 0.7853794026E-07 60.00000000 -0.2475072050E-03 0.7740564580E-06 0.1121860039E-06 60.50000000 -0.2516159644E-03 0.8501339365E-06 0.1472869496E-06 61.00000000 -0.2557183281E-03 0.9312936052E-06 0.1835489364E-06 61.50000000 -0.2598125327E-03 0.1017479817E-05 0.2209107992E-06 62.00000000 -0.2638966987E-03 0.1108294714E-05 0.2595471121E-06 62.50000000 -0.2679682370E-03 0.1203036163E-05 0.2997512135E-06 63.00000000 -0.2720240206E-03 0.1300863322E-05 0.3417291904E-06 63.50000000 -0.2760611608E-03 0.1400995549E-05 0.3854212324E-06 64.00000000 -0.2800776662E-03 0.1502814331E-05 0.4304719294E-06 64.50000000 -0.2840724110E-03 0.1605811212E-05 0.4763714730E-06 65.00000000 -0.2880445341E-03 0.1709459121E-05 0.5226592089E-06 65.50000000 -0.2919929303E-03 0.1813157247E-05 0.5690344658E-06 66.00000000 -0.2959163624E-03 0.1916325952E-05 0.6153039834E-06 66.50000000 -0.2998140753E-03 0.2018557942E-05 0.6612379973E-06 67.00000000 -0.3036862892E-03 0.2119625377E-05 0.7064784221E-06 67.50000000 -0.3075340818E-03 0.2219226641E-05 0.7505777092E-06 68.00000000 -0.3113587596E-03 0.2316589778E-05 0.7931098440E-06 68.50000000 -0.3151612747E-03 0.2410233570E-05 0.8337195083E-06 69.00000000 -0.3189421392E-03 0.2498134310E-05 0.8720369755E-06 69.50000000 -0.3227017998E-03 0.2578260622E-05 0.9075270963E-06 70.00000000 -0.3264410716E-03 0.2649137534E-05 0.9394232924E-06 70.50000000 -0.3301613183E-03 0.2710040692E-05 0.9668364904E-06 71.00000000 -0.3338644045E-03 0.2760673432E-05 0.9889751160E-06 71.50000000 -0.3375526370E-03 0.2800556637E-05 0.1005306963E-05 72.00000000 -0.3412287735E-03 0.2828568577E-05 0.1015536381E-05 72.50000000 -0.3448959573E-03 0.2842950496E-05 0.1019424775E-05 73.00000000 -0.3485574479E-03 0.2841748762E-05 0.1016610969E-05 73.50000000 -0.3522162754E-03 0.2823368886E-05 0.1006578473E-05 74.00000000 -0.3558751324E-03 0.2786883244E-05 0.9887841108E-06 74.50000000 -0.3595366730E-03 0.2731954323E-05 0.9628298982E-06 75.00000000 -0.3632040154E-03 0.2658513073E-05 0.9285422789E-06 75.50000000 -0.3668810368E-03 0.2566461978E-05 0.8859234525E-06 76.00000000 -0.3705722282E-03 0.2455595814E-05 0.8350560371E-06 76.50000000 -0.3742822606E-03 0.2325749487E-05 0.7760677812E-06 77.00000000 -0.3780156080E-03 0.2177038455E-05 0.7091844021E-06 77.50000000 -0.3817764156E-03 0.2010029326E-05 0.6348009839E-06 78.00000000 -0.3855685131E-03 0.1825745739E-05 0.5534817194E-06 78.50000000 -0.3893954045E-03 0.1625514927E-05 0.4658699637E-06 79.00000000 -0.3932602501E-03 0.1410746222E-05 0.3725816026E-06 79.50000000 -0.3971660216E-03 0.1182779266E-05 0.2741760790E-06 80.00000000 -0.4011158749E-03 0.9429225464E-06 0.1712322008E-06 80.50000000 -0.4051134758E-03 0.6927028647E-06 0.6446459563E-07 81.00000000 -0.4091628975E-03 0.4341905766E-06 -0.4521531903E-07 81.50000000 -0.4132680186E-03 0.1701510583E-06 -0.1567385104E-06 82.00000000 -0.4174318184E-03 -0.9618431101E-07 -0.2689798428E-06 82.50000000 -0.4216561208E-03 -0.3617065709E-06 -0.3808455989E-06 83.00000000 -0.4259419705E-03 -0.6240698173E-06 -0.4913029560E-06 83.50000000 -0.4302902853E-03 -0.8819519767E-06 -0.5993694886E-06 84.00000000 -0.4347022363E-03 -0.1134683541E-05 -0.7041093815E-06 84.50000000 -0.4391791348E-03 -0.1381400413E-05 -0.8046553650E-06 85.00000000 -0.4437220949E-03 -0.1620236343E-05 -0.9002282470E-06 85.50000000 -0.4483318761E-03 -0.1848098282E-05 -0.9901150399E-06 86.00000000 -0.4530090102E-03 -0.2061207660E-05 -0.1073608213E-05 86.50000000 -0.4577539463E-03 -0.2256082357E-05 -0.1149961155E-05 87.00000000 -0.4625669362E-03 -0.2430349241E-05 -0.1218419971E-05 87.50000000 -0.4674477177E-03 -0.2582928744E-05 -0.1278333358E-05 88.00000000 -0.4723953323E-03 -0.2713599579E-05 -0.1329268193E-05 88.50000000 -0.4774083051E-03 -0.2822366316E-05 -0.1371038988E-05 89.00000000 -0.4824850382E-03 -0.2909099834E-05 -0.1403621219E-05 89.50000000 -0.4876240426E-03 -0.2973596347E-05 -0.1427014261E-05 90.00000000 -0.4928238085E-03 -0.3015810757E-05 -0.1441165243E-05 90.50000000 -0.4980824870E-03 -0.3035910248E-05 -0.1446015038E-05 91.00000000 -0.5033977248E-03 -0.3034043792E-05 -0.1441620325E-05 91.50000000 -0.5087667972E-03 -0.3010076780E-05 -0.1428234965E-05 92.00000000 -0.5141868744E-03 -0.2963644490E-05 -0.1406267220E-05 92.50000000 -0.5196551705E-03 -0.2894615495E-05 -0.1376142890E-05 93.00000000 -0.5251689350E-03 -0.2803660905E-05 -0.1338198351E-05 93.50000000 -0.5307254656E-03 -0.2692470756E-05 -0.1292711540E-05 94.00000000 -0.5363222767E-03 -0.2563405420E-05 -0.1240057710E-05 94.50000000 -0.5419573119E-03 -0.2418809113E-05 -0.1180853904E-05 95.00000000 -0.5476289298E-03 -0.2260458032E-05 -0.1115947077E-05 95.50000000 -0.5533355540E-03 -0.2089463873E-05 -0.1046226202E-05 96.00000000 -0.5590751979E-03 -0.1906566960E-05 -0.9723960501E-06 96.50000000 -0.5648452383E-03 -0.1712493598E-05 -0.8948980903E-06 97.00000000 -0.5706426192E-03 -0.1508128965E-05 -0.8140489319E-06 97.50000000 -0.5764643180E-03 -0.1294538671E-05 -0.7302809505E-06 98.00000000 -0.5823077173E-03 -0.1073040525E-05 -0.6442761568E-06 98.50000000 -0.5881706776E-03 -0.8454090394E-06 -0.5568716414E-06 99.00000000 -0.5940514144E-03 -0.6140317728E-06 -0.4688118239E-06 99.50000000 -0.5999484242E-03 -0.3817344193E-06 -0.3805558058E-06 100.0000000 -0.6058605557E-03 -0.1511998227E-06 -0.2922972505E-06 100.5000000 -0.6117870534E-03 0.7574001476E-07 -0.2041645467E-06 101.0000000 -0.6177273344E-03 0.2984845947E-06 -0.1164125223E-06 101.5000000 -0.6236805110E-03 0.5174428518E-06 -0.2943495527E-07 102.0000000 -0.6296450086E-03 0.7333331428E-06 0.5640082322E-07 102.5000000 -0.6356186884E-03 0.9464371961E-06 0.1409320510E-06 103.0000000 -0.6415995213E-03 0.1156232845E-05 0.2242214011E-06 103.5000000 -0.6475863610E-03 0.1361546874E-05 0.3064033110E-06 104.0000000 -0.6535792039E-03 0.1561039585E-05 0.3874998338E-06 104.5000000 -0.6595787143E-03 0.1753678190E-05 0.4673687875E-06 105.0000000 -0.6655854143E-03 0.1938939207E-05 0.5458126535E-06 105.5000000 -0.6715992115E-03 0.2116700831E-05 0.6227239602E-06 106.0000000 -0.6776195887E-03 0.2286982256E-05 0.6981168675E-06 106.5000000 -0.6836461551E-03 0.2449741113E-05 0.7720121910E-06 107.0000000 -0.6896789626E-03 0.2604838665E-05 0.8442839167E-06 107.5000000 -0.6957183274E-03 0.2752113656E-05 0.9146050766E-06 108.0000000 -0.7017644551E-03 0.2891403843E-05 0.9825300968E-06 108.5000000 -0.7078173686E-03 0.3022405136E-05 0.1047624183E-05 109.0000000 -0.7138772612E-03 0.3144423488E-05 0.1109517072E-05 109.5000000 -0.7199449119E-03 0.3256208399E-05 0.1167838337E-05 110.0000000 -0.7260217375E-03 0.3356026538E-05 0.1222097867E-05 110.5000000 -0.7321094743E-03 0.3441949404E-05 0.1271610265E-05 111.0000000 -0.7382098707E-03 0.3512149230E-05 0.1315509765E-05 111.5000000 -0.7443246921E-03 0.3564989952E-05 0.1352828016E-05 112.0000000 -0.7504559366E-03 0.3598879411E-05 0.1382578529E-05 112.5000000 -0.7566059341E-03 0.3612055093E-05 0.1403813186E-05 113.0000000 -0.7627772166E-03 0.3602522737E-05 0.1415643428E-05 113.5000000 -0.7689723857E-03 0.3568216467E-05 0.1417222789E-05 114.0000000 -0.7751942078E-03 0.3507241131E-05 0.1407687836E-05 114.5000000 -0.7814458180E-03 0.3417978107E-05 0.1386082236E-05 115.0000000 -0.7877306918E-03 0.3298951785E-05 0.1351329937E-05 115.5000000 -0.7940522821E-03 0.3148567351E-05 0.1302322153E-05 116.0000000 -0.8004136838E-03 0.2964970905E-05 0.1238108155E-05 116.5000000 -0.8068177861E-03 0.2746239464E-05 0.1158081743E-05 117.0000000 -0.8132679098E-03 0.2490899579E-05 0.1062031930E-05 117.5000000 -0.8197683612E-03 0.2198529527E-05 0.9500229807E-06 118.0000000 -0.8263243048E-03 0.1870089018E-05 0.8222137330E-06 118.5000000 -0.8329409486E-03 0.1507747358E-05 0.6787853063E-06 119.0000000 -0.8396226624E-03 0.1114299758E-05 0.5200540568E-06 119.5000000 -0.8463726892E-03 0.6925632891E-06 0.3466803615E-06 120.0000000 -0.8531935550E-03 0.2451830507E-06 0.1597985265E-06 120.5000000 -0.8600877021E-03 -0.2250172483E-06 -0.3902827975E-07 121.0000000 -0.8670577980E-03 -0.7144260924E-06 -0.2479560620E-06 121.5000000 -0.8741065835E-03 -0.1218251415E-05 -0.4649447825E-06 122.0000000 -0.8812365369E-03 -0.1730600850E-05 -0.6876870821E-06 122.5000000 -0.8884496612E-03 -0.2244863180E-05 -0.9134595951E-06 123.0000000 -0.8957474051E-03 -0.2753991578E-05 -0.1139076623E-05 123.5000000 -0.9031305001E-03 -0.3250480936E-05 -0.1361051079E-05 124.0000000 -0.9105986036E-03 -0.3726230651E-05 -0.1575878197E-05 124.5000000 -0.9181499609E-03 -0.4172656018E-05 -0.1780229184E-05 125.0000000 -0.9257814585E-03 -0.4581161184E-05 -0.1970902228E-05 125.5000000 -0.9334891871E-03 -0.4943681493E-05 -0.2144584984E-05 126.0000000 -0.9412691607E-03 -0.5252888728E-05 -0.2297655607E-05 126.5000000 -0.9491176135E-03 -0.5501963587E-05 -0.2426231599E-05 127.0000000 -0.9570305944E-03 -0.5684248644E-05 -0.2526477242E-05 127.5000000 -0.9650031760E-03 -0.5793179362E-05 -0.2594973653E-05 128.0000000 -0.9730289282E-03 -0.5822596427E-05 -0.2628920301E-05 128.5000000 -0.9811000626E-03 -0.5767215588E-05 -0.2626096281E-05 129.0000000 -0.9892080839E-03 -0.5622996243E-05 -0.2584712657E-05 129.5000000 -0.9973444343E-03 -0.5387353781E-05 -0.2503353849E-05 130.0000000 -0.1005500768E-02 -0.5059296881E-05 -0.2381094430E-05 130.5000000 -0.1013668884E-02 -0.4639497796E-05 -0.2217711042E-05 131.0000000 -0.1021840562E-02 -0.4130207322E-05 -0.2013842248E-05 131.5000000 -0.1030007490E-02 -0.3535027928E-05 -0.1771020366E-05 132.0000000 -0.1038161321E-02 -0.2858771005E-05 -0.1491613752E-05 132.5000000 -0.1046293841E-02 -0.2107635009E-05 -0.1178763121E-05 133.0000000 -0.1054397234E-02 -0.1289638662E-05 -0.8363515474E-06 133.5000000 -0.1062464383E-02 -0.4149227559E-06 -0.4689837434E-06 134.0000000 -0.1070489105E-02 0.5044202802E-06 -0.8193344053E-07 134.5000000 -0.1078466333E-02 0.1454918925E-05 0.3189504329E-06 135.0000000 -0.1086392329E-02 0.2422272285E-05 0.7273527478E-06 135.5000000 -0.1094264970E-02 0.3391526258E-05 0.1136586804E-05 136.0000000 -0.1102083898E-02 0.4346936917E-05 0.1539671559E-05 136.5000000 -0.1109850382E-02 0.5271894992E-05 0.1929419681E-05 137.0000000 -0.1117566996E-02 0.6149210110E-05 0.2298573091E-05 137.5000000 -0.1125237547E-02 0.6961720608E-05 0.2639993543E-05 138.0000000 -0.1132867445E-02 0.7692948603E-05 0.2946862926E-05 138.5000000 -0.1140464159E-02 0.8327539685E-05 0.3212818416E-05 139.0000000 -0.1148037178E-02 0.8851417956E-05 0.3431986919E-05 139.5000000 -0.1155597344E-02 0.9251772488E-05 0.3598976817E-05 140.0000000 -0.1163156126E-02 0.9517085679E-05 0.3708947824E-05 140.5000000 -0.1170725489E-02 0.9637400806E-05 0.3757831556E-05 141.0000000 -0.1178318351E-02 0.9604883646E-05 0.3742637693E-05 141.5000000 -0.1185948985E-02 0.9414492369E-05 0.3661676754E-05 142.0000000 -0.1193632789E-02 0.9064404936E-05 0.3514571338E-05 142.5000000 -0.1201385525E-02 0.8555973019E-05 0.3302092765E-05 143.0000000 -0.1209222617E-02 0.7893350044E-05 0.3026004680E-05 143.5000000 -0.1217158945E-02 0.7083232827E-05 0.2689081952E-05 144.0000000 -0.1225209032E-02 0.6135014638E-05 0.2295302849E-05 144.5000000 -0.1233387137E-02 0.5061154008E-05 0.1850032065E-05 145.0000000 -0.1241706940E-02 0.3877232037E-05 0.1359989836E-05 145.5000000 -0.1250180878E-02 0.2601409989E-05 0.8329719028E-06 146.0000000 -0.1258819486E-02 0.1253601623E-05 0.2774976995E-06 146.5000000 -0.1267631037E-02 -0.1450185804E-06 -0.2973879039E-06 147.0000000 -0.1276621478E-02 -0.1571916357E-05 -0.8821099952E-06 147.5000000 -0.1285794428E-02 -0.3002917863E-05 -0.1466532118E-05 148.0000000 -0.1295151025E-02 -0.4412397291E-05 -0.2040104536E-05 148.5000000 -0.1304689696E-02 -0.5774142767E-05 -0.2592196986E-05 149.0000000 -0.1314406055E-02 -0.7062492196E-05 -0.3112421070E-05 149.5000000 -0.1324293001E-02 -0.8253157749E-05 -0.3590793295E-05 150.0000000 -0.1334340901E-02 -0.9323501298E-05 -0.4017822012E-05 150.5000000 -0.1344537684E-02 -0.1025244999E-04 -0.4384709519E-05 151.0000000 -0.1354868901E-02 -0.1102041272E-04 -0.4683678517E-05 151.5000000 -0.1365317901E-02 -0.1160950555E-04 -0.4908188961E-05 152.0000000 -0.1375866190E-02 -0.1200422781E-04 -0.5052863646E-05 152.5000000 -0.1386493936E-02 -0.1219243113E-04 -0.5113283695E-05 153.0000000 -0.1397180495E-02 -0.1216609178E-04 -0.5086024991E-05 153.5000000 -0.1407904818E-02 -0.1192141841E-04 -0.4969064065E-05 154.0000000 -0.1418645667E-02 -0.1145838951E-04 -0.4762231071E-05 154.5000000 -0.1429381690E-02 -0.1078039999E-04 -0.4467285784E-05 155.0000000 -0.1440091659E-02 -0.9894536075E-05 -0.4087603155E-05 155.5000000 -0.1450755061E-02 -0.8812155363E-05 -0.3627890758E-05 156.0000000 -0.1461352883E-02 -0.7548957123E-05 -0.3094271477E-05 156.5000000 -0.1471868220E-02 -0.6124295716E-05 -0.2494551386E-05 157.0000000 -0.1482286618E-02 -0.4560427466E-05 -0.1838204575E-05 157.5000000 -0.1492596361E-02 -0.2882411028E-05 -0.1135917880E-05 158.0000000 -0.1502788814E-02 -0.1118402361E-05 -0.3990619220E-06 158.5000000 -0.1512858515E-02 0.7005838252E-06 0.3604638202E-06 159.0000000 -0.1522802844E-02 0.2541778053E-05 0.1130013738E-05 159.5000000 -0.1532621678E-02 0.4371872400E-05 0.1896025372E-05 160.0000000 -0.1542317574E-02 0.6157493308E-05 0.2644221674E-05 160.5000000 -0.1551896376E-02 0.7865071901E-05 0.3360091711E-05 161.0000000 -0.1561367508E-02 0.9460967546E-05 0.4029337597E-05 161.5000000 -0.1570743634E-02 0.1091222510E-04 0.4638150709E-05 162.0000000 -0.1580040119E-02 0.1218749377E-04 0.5173438109E-05 162.5000000 -0.1589274872E-02 0.1325766340E-04 0.5623133557E-05 163.0000000 -0.1598468396E-02 0.1409650030E-04 0.5976549874E-05 163.5000000 -0.1607643570E-02 0.1468169681E-04 0.6224633976E-05 164.0000000 -0.1616825029E-02 0.1499594926E-04 0.6360082898E-05 164.5000000 -0.1626038568E-02 0.1502721301E-04 0.6377428009E-05 165.0000000 -0.1635310809E-02 0.1476812073E-04 0.6273217912E-05 165.5000000 -0.1644669009E-02 0.1421569656E-04 0.6046300457E-05 166.0000000 -0.1654140784E-02 0.1337223500E-04 0.5698048142E-05 166.5000000 -0.1663753732E-02 0.1224666624E-04 0.5232362841E-05 167.0000000 -0.1673535056E-02 0.1085495309E-04 0.4655490052E-05 167.5000000 -0.1683511178E-02 0.9219210815E-05 0.3975888857E-05 168.0000000 -0.1693707235E-02 0.7366800529E-05 0.3204360541E-05 168.5000000 -0.1704146307E-02 0.5330455759E-05 0.2354312471E-05 169.0000000 -0.1714848431E-02 0.3148817375E-05 0.1441781473E-05 169.5000000 -0.1725829728E-02 0.8659315421E-06 0.4849994940E-06 170.0000000 -0.1737102130E-02 -0.1470552911E-05 -0.4962965353E-06 170.5000000 -0.1748673597E-02 -0.3811208683E-05 -0.1481417948E-05 171.0000000 -0.1760548094E-02 -0.6105535919E-05 -0.2448990354E-05 171.5000000 -0.1772724790E-02 -0.8301905109E-05 -0.3377134365E-05 172.0000000 -0.1785196957E-02 -0.1034795365E-04 -0.4243828598E-05 172.5000000 -0.1797951505E-02 -0.1219202220E-04 -0.5027510684E-05 173.0000000 -0.1810969330E-02 -0.1378516551E-04 -0.5707778227E-05 173.5000000 -0.1824225847E-02 -0.1508298687E-04 -0.6266038015E-05 174.0000000 -0.1837691387E-02 -0.1604696047E-04 -0.6686042412E-05 174.5000000 -0.1851331842E-02 -0.1664535269E-04 -0.6954337656E-05 175.0000000 -0.1865109756E-02 -0.1685403879E-04 -0.7060693928E-05 175.5000000 -0.1878985392E-02 -0.1665743580E-04 -0.6998570059E-05 176.0000000 -0.1892917319E-02 -0.1604945192E-04 -0.6765580458E-05 176.5000000 -0.1906862860E-02 -0.1503407586E-04 -0.6363843779E-05 177.0000000 -0.1920779001E-02 -0.1362544931E-04 -0.5800086950E-05 177.5000000 -0.1934623805E-02 -0.1184781673E-04 -0.5085463926E-05 178.0000000 -0.1948357895E-02 -0.9735807680E-05 -0.4235171402E-05 178.5000000 -0.1961945836E-02 -0.7334794711E-05 -0.3268031254E-05 179.0000000 -0.1975357389E-02 -0.4700460034E-05 -0.2206173201E-05 179.5000000 -0.1988568392E-02 -0.1897098858E-05 -0.1074771007E-05 180.0000000 -0.2001560917E-02 0.1004798088E-05 0.9836880940E-07 180.5000000 -0.2014323007E-02 0.3930696086E-05 0.1283487717E-05 181.0000000 -0.2026848869E-02 0.6803511167E-05 0.2449725903E-05 181.5000000 -0.2039139894E-02 0.9544936782E-05 0.3565992233E-05 182.0000000 -0.2051205805E-02 0.1207727167E-04 0.4601844747E-05 182.5000000 -0.2063064988E-02 0.1432583110E-04 0.5528377466E-05 183.0000000 -0.2074743952E-02 0.1622150759E-04 0.6318925424E-05 183.5000000 -0.2086276601E-02 0.1770322545E-04 0.6949468979E-05 184.0000000 -0.2097703705E-02 0.1872042761E-04 0.7399062532E-05 184.5000000 -0.2109072438E-02 0.1923547776E-04 0.7650751769E-05 185.0000000 -0.2120435779E-02 0.1922524389E-04 0.7692801887E-05 185.5000000 -0.2131851616E-02 0.1868140921E-04 0.7519409966E-05 186.0000000 -0.2143381280E-02 0.1761028681E-04 0.7130504652E-05 186.5000000 -0.2155087597E-02 0.1603329689E-04 0.6531346160E-05 187.0000000 -0.2167033230E-02 0.1398782135E-04 0.5732847056E-05 187.5000000 -0.2179279585E-02 0.1152676231E-04 0.4752403394E-05 188.0000000 -0.2191885231E-02 0.8716048875E-05 0.3614101515E-05 188.5000000 -0.2204902912E-02 0.5631533077E-05 0.2347792005E-05 189.0000000 -0.2218376116E-02 0.2357080733E-05 0.9878184509E-06 189.5000000 -0.2232336902E-02 -0.1016402553E-05 -0.4276868371E-06 190.0000000 -0.2246805071E-02 -0.4392882770E-05 -0.1857171636E-05 190.5000000 -0.2261787527E-02 -0.7674873386E-05 -0.3256620932E-05 191.0000000 -0.2277277677E-02 -0.1076750765E-04 -0.4581345999E-05 191.5000000 -0.2293255500E-02 -0.1358124373E-04 -0.5787942185E-05 192.0000000 -0.2309687953E-02 -0.1603325353E-04 -0.6835901793E-05 192.5000000 -0.2326529015E-02 -0.1804910762E-04 -0.7689045709E-05 193.0000000 -0.2343719906E-02 -0.1956565058E-04 -0.8316917417E-05 193.5000000 -0.2361190700E-02 -0.2053395355E-04 -0.8695808872E-05 194.0000000 -0.2378863217E-02 -0.2092065645E-04 -0.8809319123E-05 194.5000000 -0.2396654267E-02 -0.2070774234E-04 -0.8649055324E-05 195.0000000 -0.2414478862E-02 -0.1989251861E-04 -0.8215838078E-05 195.5000000 -0.2432253109E-02 -0.1848885385E-04 -0.7520595075E-05 196.0000000 -0.2449896112E-02 -0.1652846460E-04 -0.6583891309E-05 196.5000000 -0.2467331339E-02 -0.1406048871E-04 -0.5434393401E-05 197.0000000 -0.2484489171E-02 -0.1114960610E-04 -0.4107536238E-05 197.5000000 -0.2501310870E-02 -0.7874589626E-05 -0.2644765970E-05 198.0000000 -0.2517751824E-02 -0.4327838574E-05 -0.1092475489E-05 198.5000000 -0.2533782722E-02 -0.6141235594E-06 0.4998767117E-06 199.0000000 -0.2549389886E-02 0.3152820128E-05 0.2081783986E-05 199.5000000 -0.2564575970E-02 0.6854572513E-05 0.3603215810E-05 200.0000000 -0.2579360288E-02 0.1037130146E-04 0.5016015139E-05 200.5000000 -0.2593778156E-02 0.1358458654E-04 0.6275588322E-05 201.0000000 -0.2607880286E-02 0.1638158997E-04 0.7342463705E-05 201.5000000 -0.2621732587E-02 0.1866023082E-04 0.8183304745E-05 202.0000000 -0.2635414721E-02 0.2033343119E-04 0.8771830092E-05 202.5000000 -0.2649016739E-02 0.2133232299E-04 0.9090006504E-05 203.0000000 -0.2662635620E-02 0.2160985370E-04 0.9128807616E-05 203.5000000 -0.2676372741E-02 0.2114436698E-04 0.8887893603E-05 204.0000000 -0.2690330526E-02 0.1994118847E-04 0.8375020512E-05 204.5000000 -0.2704607590E-02 0.1803238070E-04 0.7606254218E-05 205.0000000 -0.2719295123E-02 0.1547667338E-04 0.6606305490E-05 205.5000000 -0.2734476076E-02 0.1235937981E-04 0.5407474646E-05 206.0000000 -0.2750224240E-02 0.8789951257E-05 0.4047569956E-05 206.5000000 -0.2766600822E-02 0.4896943923E-05 0.2568750646E-05 207.0000000 -0.2783650829E-02 0.8228435245E-06 0.1017646535E-05 207.5000000 -0.2801401929E-02 -0.3280228073E-05 -0.5551654683E-06 208.0000000 -0.2819864476E-02 -0.7255614034E-05 -0.2097322992E-05 208.5000000 -0.2839030823E-02 -0.1094912401E-04 -0.3556905986E-05 209.0000000 -0.2858874907E-02 -0.1421654745E-04 -0.4883309167E-05 209.5000000 -0.2879353029E-02 -0.1692989794E-04 -0.6027808429E-05 210.0000000 -0.2900404639E-02 -0.1898234341E-04 -0.6945412868E-05 210.5000000 -0.2921952494E-02 -0.2029278172E-04 -0.7597529716E-05 211.0000000 -0.2943903276E-02 -0.2081002883E-04 -0.7953862434E-05 211.5000000 -0.2966149350E-02 -0.2051527172E-04 -0.7993271209E-05 212.0000000 -0.2988571585E-02 -0.1942202250E-04 -0.7704668446E-05 212.5000000 -0.3011043253E-02 -0.1757464017E-04 -0.7088651750E-05 213.0000000 -0.3033434749E-02 -0.1504665014E-04 -0.6159371134E-05 213.5000000 -0.3055618600E-02 -0.1193840561E-04 -0.4945483180E-05 214.0000000 -0.3077475067E-02 -0.8373176309E-05 -0.3489566777E-05 214.5000000 -0.3098898643E-02 -0.4492025635E-05 -0.1846601458E-05 215.0000000 -0.3119804504E-02 -0.4481399198E-06 -0.8242240956E-07 215.5000000 -0.3140133965E-02 0.3599460219E-05 0.1728128202E-05 216.0000000 -0.3159858964E-02 0.7492458241E-05 0.3504314528E-05 216.5000000 -0.3178985355E-02 0.1107896115E-04 0.5163804675E-05 217.0000000 -0.3197553815E-02 0.1421828902E-04 0.6627323415E-05 217.5000000 -0.3215638160E-02 0.1678555700E-04 0.7823378187E-05 218.0000000 -0.3233342342E-02 0.1867579490E-04 0.8692651314E-05 218.5000000 -0.3250796733E-02 0.1980681648E-04 0.9190988664E-05 219.0000000 -0.3268152539E-02 0.2012136926E-04 0.9291126290E-05 219.5000000 -0.3285574028E-02 0.1958988297E-04 0.8984649015E-05 220.0000000 -0.3303230547E-02 0.1821387451E-04 0.8283742880E-05 220.5000000 -0.3321289621E-02 0.1602843932E-04 0.7220262383E-05 221.0000000 -0.3339910093E-02 0.1310224472E-04 0.5842165540E-05 221.5000000 -0.3359235225E-02 0.9535284097E-05 0.4210398450E-05 222.0000000 -0.3379387782E-02 0.5456354972E-05 0.2397040521E-05 222.5000000 -0.3400467049E-02 0.1021097912E-05 0.4821585538E-06 223.0000000 -0.3422545710E-02 -0.3591319626E-05 -0.1451304841E-05 223.5000000 -0.3445666915E-02 -0.8184752246E-05 -0.3321899761E-05 224.0000000 -0.3469843037E-02 -0.1255500113E-04 -0.5051943222E-05 224.5000000 -0.3495055121E-02 -0.1649945873E-04 -0.6569575450E-05 225.0000000 -0.3521252185E-02 -0.1982729574E-04 -0.7811862838E-05 225.5000000 -0.3548351821E-02 -0.2237009793E-04 -0.8727541002E-05 226.0000000 -0.3576242541E-02 -0.2399185879E-04 -0.9278126857E-05 226.5000000 -0.3604786890E-02 -0.2459762754E-04 -0.9438290566E-05 227.0000000 -0.3633826017E-02 -0.2414055112E-04 -0.9196597317E-05 227.5000000 -0.3663186928E-02 -0.2262617710E-04 -0.8556138638E-05 228.0000000 -0.3692691135E-02 -0.2011303142E-04 -0.7534434825E-05 228.5000000 -0.3722162936E-02 -0.1671009969E-04 -0.6163324093E-05 229.0000000 -0.3751437688E-02 -0.1257182342E-04 -0.4489380456E-05 229.5000000 -0.3780370581E-02 -0.7889700200E-05 -0.2573827120E-05 230.0000000 -0.3808844277E-02 -0.2880398868E-05 -0.4909901486E-06 230.5000000 -0.3836774408E-02 0.2226767514E-05 0.1674129619E-05 231.0000000 -0.3864114571E-02 0.7200261613E-05 0.3828625079E-05 231.5000000 -0.3890860614E-02 0.1181573700E-04 0.5875422282E-05 232.0000000 -0.3917050937E-02 0.1586666715E-04 0.7718103031E-05 232.5000000 -0.3942763632E-02 0.1917442435E-04 0.9265697360E-05 233.0000000 -0.3968114250E-02 0.2159436016E-04 0.1043710062E-04 233.5000000 -0.3993252144E-02 0.2301863728E-04 0.1116594094E-04 234.0000000 -0.4018352598E-02 0.2337900039E-04 0.1140574475E-04 234.5000000 -0.4043609075E-02 0.2264947688E-04 0.1113413660E-04 235.0000000 -0.4069227507E-02 0.2084689425E-04 0.1035557043E-04 235.5000000 -0.4095418134E-02 0.1802931398E-04 0.9102505328E-05 236.0000000 -0.4122385216E-02 0.1429460017E-04 0.7434265035E-05 236.5000000 -0.4150318209E-02 0.9780580348E-05 0.5433536852E-05 237.0000000 -0.4179382764E-02 0.4665023485E-05 0.3201777859E-05 237.5000000 -0.4209711569E-02 -0.8384563748E-06 0.8540073832E-06 238.0000000 -0.4241398628E-02 -0.6488647338E-05 -0.1487693116E-05 238.5000000 -0.4274495140E-02 -0.1202493202E-04 -0.3701912684E-05 239.0000000 -0.4309004494E-02 -0.1717545831E-04 -0.5675808028E-05 239.5000000 -0.4344879736E-02 -0.2167004075E-04 -0.7311863604E-05 240.0000000 -0.4382025587E-02 -0.2525737564E-04 -0.8532527534E-05 240.5000000 -0.4420304013E-02 -0.2772117296E-04 -0.9283235040E-05 241.0000000 -0.4459543126E-02 -0.2889398105E-04 -0.9534754928E-05 241.5000000 -0.4499547262E-02 -0.2867100013E-04 -0.9283423904E-05 242.0000000 -0.4540106294E-02 -0.2702287827E-04 -0.8548143070E-05 242.5000000 -0.4581006201E-02 -0.2400334615E-04 -0.7367056234E-05 243.0000000 -0.4622040501E-02 -0.1974917871E-04 -0.5795721366E-05 243.5000000 -0.4663019065E-02 -0.1447391027E-04 -0.3903911212E-05 244.0000000 -0.4703774922E-02 -0.8457830258E-05 -0.1770932142E-05 244.5000000 -0.4744171453E-02 -0.2033546954E-05 0.5163430817E-06 245.0000000 -0.4784108893E-02 0.4434659287E-05 0.2863133795E-05 245.5000000 -0.4823528567E-02 0.1057548014E-04 0.5167883898E-05 246.0000000 -0.4862416809E-02 0.1603505617E-04 0.7324165047E-05 246.5000000 -0.4900810690E-02 0.2049966782E-04 0.9222208460E-05 247.0000000 -0.4938802692E-02 0.2371630589E-04 0.1075262123E-04 247.5000000 -0.4976540901E-02 0.2550871844E-04 0.1181255724E-04 248.0000000 -0.5014227356E-02 0.2578540809E-04 0.1231262162E-04 248.5000000 -0.5052115497E-02 0.2454008264E-04 0.1218597919E-04 249.0000000 -0.5090501201E-02 0.2184913587E-04 0.1139955400E-04 249.5000000 -0.5129705009E-02 0.1786581801E-04 0.9962501891E-05 250.0000000 -0.5170048939E-02 0.1280592686E-04 0.7929985718E-05 250.5000000 -0.5211832341E-02 0.6928657508E-05 0.5404561032E-05 251.0000000 -0.5255309830E-02 0.5224454163E-06 0.2534165864E-05 251.5000000 -0.5300670536E-02 -0.6105711344E-05 -0.4971138418E-06 252.0000000 -0.5348021634E-02 -0.1264414454E-04 -0.3484759514E-05 252.5000000 -0.5397382936E-02 -0.1878908605E-04 -0.6221844223E-05 253.0000000 -0.5448688501E-02 -0.2425158085E-04 -0.8517724751E-05 253.5000000 -0.5501791659E-02 -0.2876466052E-04 -0.1021612965E-04 254.0000000 -0.5556481090E-02 -0.3209186605E-04 -0.1120857022E-04 254.5000000 -0.5612503252E-02 -0.3403422673E-04 -0.1144095679E-04 255.0000000 -0.5669579584E-02 -0.3444218187E-04 -0.1091479605E-04 255.5000000 -0.5727422322E-02 -0.3323442971E-04 -0.9683029318E-05 256.0000000 -0.5785750652E-02 -0.3041343973E-04 -0.7840376627E-05 256.5000000 -0.5844302869E-02 -0.2607544681E-04 -0.5511209593E-05 257.0000000 -0.5902846367E-02 -0.2041951965E-04 -0.2837774214E-05 257.5000000 -0.5961184688E-02 -0.1374955899E-04 0.3033359570E-07 258.0000000 -0.6019164624E-02 -0.6462435146E-05 0.2944146227E-05 258.5000000 -0.6076687864E-02 0.9747105002E-06 0.5760595980E-05 259.0000000 -0.6133717566E-02 0.8056629913E-05 0.8346614887E-05 259.5000000 -0.6190279361E-02 0.1428243757E-04 0.1058214526E-04 260.0000000 -0.6246464807E-02 0.1920166135E-04 0.1236192849E-04 260.5000000 -0.6302429004E-02 0.2245526183E-04 0.1359804131E-04 261.0000000 -0.6358381076E-02 0.2380847068E-04 0.1422482669E-04 261.5000000 -0.6414574287E-02 0.2317256556E-04 0.1420449412E-04 262.0000000 -0.6471290455E-02 0.2061095986E-04 0.1352927004E-04 262.5000000 -0.6528822354E-02 0.1632863948E-04 0.1222080748E-04 263.0000000 -0.6587461476E-02 0.1064886993E-04 0.1033183232E-04 263.5000000 -0.6647486731E-02 0.3981279839E-05 0.7947405678E-05 264.0000000 -0.6709155025E-02 -0.3216512252E-05 0.5182326262E-05 264.5000000 -0.6772691926E-02 -0.1047716602E-04 0.2180461329E-05 265.0000000 -0.6838275720E-02 -0.1735304097E-04 -0.8854235783E-06 265.5000000 -0.6906019834E-02 -0.2343903390E-04 -0.3821192173E-05 266.0000000 -0.6975957110E-02 -0.2839250095E-04 -0.6422210230E-05 266.5000000 -0.7048023445E-02 -0.3194379493E-04 -0.8484548328E-05 267.0000000 -0.7122045752E-02 -0.3389925008E-04 -0.9822269747E-05 267.5000000 -0.7197744066E-02 -0.3414565993E-04 -0.1028987538E-04 268.0000000 -0.7274749914E-02 -0.3265441766E-04 -0.9804256641E-05 268.5000000 -0.7352635813E-02 -0.2948431040E-04 -0.8362029472E-05 269.0000000 -0.7430958016E-02 -0.2478505323E-04 -0.6047629033E-05 269.5000000 -0.7509305733E-02 -0.1879609634E-04 -0.3029092198E-05 270.0000000 -0.7587338869E-02 -0.1184062347E-04 0.4591924258E-06 270.5000000 -0.7664817164E-02 -0.4317522147E-05 0.4142580771E-05 271.0000000 -0.7741619060E-02 0.3316571249E-05 0.7735345719E-05 271.5000000 -0.7817738246E-02 0.1057671737E-04 0.1097110674E-04 272.0000000 -0.7893270065E-02 0.1698066352E-04 0.1362889123E-04 272.5000000 -0.7968394988E-02 0.2207951919E-04 0.1554841634E-04 273.0000000 -0.8043354791E-02 0.2549115295E-04 0.1663470162E-04 273.5000000 -0.8118428695E-02 0.2693187216E-04 0.1685349167E-04 274.0000000 -0.8193917323E-02 0.2624286985E-04 0.1622133224E-04 274.5000000 -0.8270133828E-02 0.2341300251E-04 0.1479347193E-04 275.0000000 -0.8347390708E-02 0.1859345196E-04 0.1265328263E-04 275.5000000 -0.8425983573E-02 0.1209875603E-04 0.9909806390E-05 276.0000000 -0.8506178207E-02 0.4396235866E-05 0.6699482737E-05 276.5000000 -0.8588192147E-02 -0.3921374028E-05 0.3188817267E-05 277.0000000 -0.8672176345E-02 -0.1218720589E-04 -0.4211824693E-06 277.5000000 -0.8758201610E-02 -0.1972644780E-04 -0.3898802312E-05 278.0000000 -0.8846250470E-02 -0.2592480200E-04 -0.6995816147E-05 278.5000000 -0.8936221993E-02 -0.3029003211E-04 -0.9468770200E-05 279.0000000 -0.9027945741E-02 -0.3249870224E-04 -0.1110672110E-04 279.5000000 -0.9121205605E-02 -0.3241883355E-04 -0.1175811830E-04 280.0000000 -0.9215763020E-02 -0.3010176225E-04 -0.1135310896E-04 280.5000000 -0.9311371533E-02 -0.2575645888E-04 -0.9913086485E-05 281.0000000 -0.9407790036E-02 -0.1971860828E-04 -0.7546274799E-05 281.5000000 -0.9504786029E-02 -0.1241576981E-04 -0.4439241601E-05 282.0000000 -0.9602137413E-02 -0.4337018072E-05 -0.8375503115E-06 282.5000000 -0.9699641245E-02 0.3992434280E-05 0.2977455321E-05 283.0000000 -0.9797126386E-02 0.1203324115E-04 0.6702916802E-05 283.5000000 -0.9894475993E-02 0.1924842973E-04 0.1003386308E-04 284.0000000 -0.9991650545E-02 0.2512463368E-04 0.1268950882E-04 284.5000000 -0.1008870097E-01 0.2920595167E-04 0.1443735722E-04 285.0000000 -0.1018576469E-01 0.3113440000E-04 0.1512060349E-04 285.5000000 -0.1028304557E-01 0.3068829721E-04 0.1468664634E-04 286.0000000 -0.1038078013E-01 0.2781501202E-04 0.1319872749E-04 286.5000000 -0.1047919544E-01 0.2265359874E-04 0.1082648526E-04 287.0000000 -0.1057847765E-01 0.1554114114E-04 0.7822837920E-05 287.5000000 -0.1067875758E-01 0.6993567041E-05 0.4485875738E-05 288.0000000 -0.1078011756E-01 -0.2340848331E-05 0.1115721945E-05 288.5000000 -0.1088261117E-01 -0.1174280510E-04 -0.2020763986E-05 289.0000000 -0.1098628805E-01 -0.2049332984E-04 -0.4714103681E-05 289.5000000 -0.1109121652E-01 -0.2794114849E-04 -0.6819215119E-05 290.0000000 -0.1119748088E-01 -0.3355733810E-04 -0.8249023907E-05 290.5000000 -0.1130516259E-01 -0.3697870388E-04 -0.8961594134E-05 291.0000000 -0.1141431236E-01 -0.3802642509E-04 -0.8945922686E-05 291.5000000 -0.1152491563E-01 -0.3671337584E-04 -0.8216117817E-05 292.0000000 -0.1163686479E-01 -0.3324062481E-04 -0.6812622494E-05 292.5000000 -0.1174995172E-01 -0.2797648170E-04 -0.4806439548E-05 293.0000000 -0.1186389421E-01 -0.2142949308E-04 -0.2310475106E-05 293.5000000 -0.1197837266E-01 -0.1419664966E-04 0.5131113693E-06 294.0000000 -0.1209306330E-01 -0.6894969919E-05 0.3459911433E-05 294.5000000 -0.1220767315E-01 -0.9222790759E-07 0.6298614568E-05 295.0000000 -0.1232196019E-01 0.5755321489E-05 0.8792934527E-05 295.5000000 -0.1243574416E-01 0.1033573193E-04 0.1072725092E-04 296.0000000 -0.1254892218E-01 0.1348614723E-04 0.1193189302E-04 296.5000000 -0.1266149578E-01 0.1518025382E-04 0.1230150233E-04 297.0000000 -0.1277360653E-01 0.1550995373E-04 0.1180609218E-04 297.5000000 -0.1288555936E-01 0.1466418470E-04 0.1049860419E-04 298.0000000 -0.1299781621E-01 0.1290835575E-04 0.8513220730E-05 298.5000000 -0.1311094056E-01 0.1056026653E-04 0.6052936633E-05 299.0000000 -0.1322550737E-01 0.7953701861E-05 0.3370528588E-05 299.5000000 -0.1334199676E-01 0.5399739082E-05 0.7413584913E-06 300.0000000 -0.1346070471E-01 0.3148368744E-05 -0.1579562058E-05 300.5000000 -0.1358171210E-01 0.1367231867E-05 -0.3405324212E-05 301.0000000 -0.1370489864E-01 0.1534842052E-06 -0.4649848770E-05 301.5000000 -0.1382999581E-01 -0.4463221073E-06 -0.5334838184E-05 302.0000000 -0.1395665842E-01 -0.4234767081E-06 -0.5572470095E-05 302.5000000 -0.1408452359E-01 0.1951232832E-06 -0.5517107361E-05 303.0000000 -0.1421324754E-01 0.1331107940E-05 -0.5304969566E-05 303.5000000 -0.1434252421E-01 0.2839404099E-05 -0.5016670682E-05 304.0000000 -0.1447210173E-01 0.4522638974E-05 -0.4657119139E-05 304.5000000 -0.1460180124E-01 0.6169325462E-05 -0.4169533380E-05 305.0000000 -0.1473153886E-01 0.7592367480E-05 -0.3472897584E-05 305.5000000 -0.1486133069E-01 0.8666997317E-05 -0.2499489243E-05 306.0000000 -0.1499127944E-01 0.9337460401E-05 -0.1236047585E-05 306.5000000 -0.1512153603E-01 0.9594923762E-05 0.2540028812E-06 307.0000000 -0.1525223725E-01 0.9463149612E-05 0.1829468435E-05 307.5000000 -0.1538346613E-01 0.9002499669E-05 0.3281142040E-05 308.0000000 -0.1551522550E-01 0.8329009722E-05 0.4371677004E-05 308.5000000 -0.1564744231E-01 0.7613581182E-05 0.4892260119E-05 309.0000000 -0.1578000328E-01 0.7058504892E-05 0.4721922874E-05 309.5000000 -0.1591280840E-01 0.6840652704E-05 0.3879337638E-05 310.0000000 -0.1604582674E-01 0.7046538248E-05 0.2531502010E-05 310.5000000 -0.1617912620E-01 0.7629052695E-05 0.9591218661E-06 311.0000000 -0.1631289986E-01 0.8403332466E-05 -0.5211696346E-06 311.5000000 -0.1644745845E-01 0.9107229999E-05 -0.1639699364E-05 312.0000000 -0.1658318433E-01 0.9494176335E-05 -0.2228860307E-05 312.5000000 -0.1672046330E-01 0.9449444310E-05 -0.2244244829E-05 313.0000000 -0.1685959412E-01 0.9073404971E-05 -0.1756257645E-05 313.5000000 -0.1700070127E-01 0.8694048209E-05 -0.9261244077E-06 314.0000000 -0.1714368503E-01 0.8789030449E-05 0.2633592907E-07 314.5000000 -0.1728820721E-01 0.9819791501E-05 0.8490224803E-06 315.0000000 -0.1743373423E-01 0.1206959548E-04 0.1298921558E-05 315.5000000 -0.1757962423E-01 0.1552648948E-04 0.1201980162E-05 316.0000000 -0.1772523926E-01 0.1986627616E-04 0.5050029496E-06 316.5000000 -0.1787006140E-01 0.2454773538E-04 -0.6929522284E-06 317.0000000 -0.1801378441E-01 0.2896092751E-04 -0.2142919981E-05 317.5000000 -0.1815637237E-01 0.3258362691E-04 -0.3488407944E-05 318.0000000 -0.1829807154E-01 0.3509816264E-04 -0.4335509241E-05 318.5000000 -0.1843935654E-01 0.3643481007E-04 -0.4328586448E-05 319.0000000 -0.1858083235E-01 0.3674438065E-04 -0.3241456493E-05 319.5000000 -0.1872310082E-01 0.3629128940E-04 -0.1061579048E-05 320.0000000 -0.1886662877E-01 0.3531737027E-04 0.1953833685E-05 320.5000000 -0.1901165190E-01 0.3391922477E-04 0.5280898339E-05 321.0000000 -0.1915815931E-01 0.3202285124E-04 0.8243471054E-05 321.5000000 -0.1930594476E-01 0.2947115540E-04 0.1019751342E-04 322.0000000 -0.1945470665E-01 0.2616704926E-04 0.1073842583E-04 322.5000000 -0.1960415692E-01 0.2218059981E-04 0.9850886787E-05 323.0000000 -0.1975407678E-01 0.1772643884E-04 0.7941730121E-05 323.5000000 -0.1990431771E-01 0.1302375942E-04 0.5741138249E-05 324.0000000 -0.2005476308E-01 0.8134486552E-05 0.4098702792E-05 324.5000000 -0.2020529013E-01 0.2890922056E-05 0.3734622237E-05 325.0000000 -0.2035578543E-01 -0.3043190310E-05 0.5031482221E-05 325.5000000 -0.2050619644E-01 -0.1002175111E-04 0.7939520200E-05 326.0000000 -0.2065659284E-01 -0.1827850607E-04 0.1199720047E-04 326.5000000 -0.2080718150E-01 -0.2782337313E-04 0.1647157031E-04 327.0000000 -0.2095826710E-01 -0.3841312256E-04 0.2056504095E-04 327.5000000 -0.2111015622E-01 -0.4954783171E-04 0.2360494265E-04 328.0000000 -0.2126304700E-01 -0.6053232389E-04 0.2516886321E-04 328.5000000 -0.2141695628E-01 -0.7060187769E-04 0.2512195740E-04 329.0000000 -0.2157171138E-01 -0.7910567304E-04 0.2360997062E-04 329.5000000 -0.2172701359E-01 -0.8568366901E-04 0.2101690559E-04 330.0000000 -0.2188256273E-01 -0.9033550296E-04 0.1790330170E-04 330.5000000 -0.2203818265E-01 -0.9336060971E-04 0.1491481526E-04 331.0000000 -0.2219392123E-01 -0.9520905447E-04 0.1265297623E-04 331.5000000 -0.2235003715E-01 -0.9634020602E-04 0.1152203457E-04 332.0000000 -0.2250689521E-01 -0.9715688413E-04 0.1162373247E-04 332.5000000 -0.2266481310E-01 -0.9801345971E-04 0.1274298752E-04 333.0000000 -0.2282393968E-01 -0.9923367756E-04 0.1441724870E-04 333.5000000 -0.2298423442E-01 -0.1010540094E-03 0.1607464555E-04 334.0000000 -0.2314552877E-01 -0.1034674381E-03 0.1717847717E-04 334.5000000 -0.2330759539E-01 -0.1060454419E-03 0.1737630040E-04 335.0000000 -0.2347018024E-01 -0.1078824622E-03 0.1661468521E-04 335.5000000 -0.2363297987E-01 -0.1077902084E-03 0.1517758460E-04 336.0000000 -0.2379561694E-01 -0.1047690577E-03 0.1360923195E-04 336.5000000 -0.2395769933E-01 -0.9851181873E-04 0.1248287320E-04 337.0000000 -0.2411897542E-01 -0.8968781653E-04 0.1214620005E-04 337.5000000 -0.2427950447E-01 -0.7978260288E-04 0.1255869718E-04 338.0000000 -0.2443973816E-01 -0.7055930544E-04 0.1334437174E-04 338.5000000 -0.2460042400E-01 -0.6338545094E-04 0.1403857302E-04 339.0000000 -0.2476234366E-01 -0.5876582008E-04 0.1435311595E-04 339.5000000 -0.2492599775E-01 -0.5623796803E-04 0.1427400604E-04 340.0000000 -0.2509138366E-01 -0.5463924233E-04 0.1394631160E-04 340.5000000 -0.2525798725E-01 -0.5257819487E-04 0.1346907325E-04 341.0000000 -0.2542499009E-01 -0.4890766627E-04 0.1278353793E-04 341.5000000 -0.2559160112E-01 -0.4301880546E-04 0.1171787820E-04 342.0000000 -0.2575736900E-01 -0.3488327721E-04 0.1014140271E-04 342.5000000 -0.2592232222E-01 -0.2490636669E-04 0.8079985627E-05 343.0000000 -0.2608687200E-01 -0.1373999749E-04 0.5728336492E-05 343.5000000 -0.2625153958E-01 -0.2201316133E-05 0.3354876075E-05 344.0000000 -0.2641665178E-01 0.8771399408E-05 0.1177307999E-05 344.5000000 -0.2658219775E-01 0.1819551249E-04 -0.7203858462E-06 345.0000000 -0.2674791413E-01 0.2530034416E-04 -0.2418982658E-05 345.5000000 -0.2691352899E-01 0.2982763997E-04 -0.4092422702E-05 346.0000000 -0.2707898672E-01 0.3217236826E-04 -0.5879169955E-05 346.5000000 -0.2724453629E-01 0.3322719450E-04 -0.7764376210E-05 347.0000000 -0.2741066467E-01 0.3402664557E-04 -0.9555724492E-05 347.5000000 -0.2757790108E-01 0.3537499070E-04 -0.1093680940E-04 348.0000000 -0.2774658846E-01 0.3762475241E-04 -0.1158930971E-04 348.5000000 -0.2791668644E-01 0.4061019599E-04 -0.1129504734E-04 349.0000000 -0.2808774645E-01 0.4374461864E-04 -0.9991885573E-05 349.5000000 -0.2825912454E-01 0.4626570373E-04 -0.7795318742E-05 350.0000000 -0.2843034958E-01 0.4756578801E-04 -0.4981940292E-05 350.5000000 -0.2860139401E-01 0.4748021170E-04 -0.1933190356E-05 351.0000000 -0.2877262512E-01 0.4642344554E-04 0.9142585067E-06 351.5000000 -0.2894447513E-01 0.4524820197E-04 0.3136565945E-05 352.0000000 -0.2911712555E-01 0.4490009733E-04 0.4420086023E-05 352.5000000 -0.2929045576E-01 0.4597993991E-04 0.4700096570E-05 353.0000000 -0.2946424572E-01 0.4837618092E-04 0.4260363860E-05 353.5000000 -0.2963841342E-01 0.5114608762E-04 0.3683626698E-05 354.0000000 -0.2981310429E-01 0.5285047114E-04 0.3559105858E-05 354.5000000 -0.2998862083E-01 0.5227279292E-04 0.4109512845E-05 355.0000000 -0.3016532024E-01 0.4908929272E-04 0.4978902347E-05 355.5000000 -0.3034350215E-01 0.4401098447E-04 0.5382680440E-05 356.0000000 -0.3052323428E-01 0.3825525650E-04 0.4586143893E-05 356.5000000 -0.3070418805E-01 0.3275727163E-04 0.2400259063E-05 357.0000000 -0.3088561497E-01 0.2770138842E-04 -0.5536996547E-06 357.5000000 -0.3106659099E-01 0.2266316166E-04 -0.3045374792E-05 358.0000000 -0.3124647384E-01 0.1714855343E-04 -0.3822369008E-05 358.5000000 -0.3142527954E-01 0.1110647591E-04 -0.2303455659E-05 359.0000000 -0.3160369869E-01 0.5136587425E-05 0.1042935522E-05 359.5000000 -0.3178271983E-01 0.2669919626E-06 0.4917200241E-05 360.0000000 -0.3196310733E-01 -0.2536202941E-05 0.7916413843E-05 360.5000000 -0.3214504168E-01 -0.2861210234E-05 0.9275513233E-05 361.0000000 -0.3232810381E-01 -0.1125589226E-05 0.9180438374E-05 361.5000000 -0.3251154001E-01 0.1559447949E-05 0.8526057127E-05 362.0000000 -0.3269465123E-01 0.3789184261E-05 0.8310202561E-05 362.5000000 -0.3287715041E-01 0.4263451054E-05 0.9026272750E-05 363.0000000 -0.3305933326E-01 0.2087250869E-05 0.1033329717E-04 363.5000000 -0.3324194837E-01 -0.3043765175E-05 0.1120275650E-04 364.0000000 -0.3342579580E-01 -0.1079688233E-04 0.1051967994E-04 364.5000000 -0.3361129849E-01 -0.2035836993E-04 0.7796274198E-05 365.0000000 -0.3379836613E-01 -0.3082882833E-04 0.3543724386E-05 365.5000000 -0.3398661146E-01 -0.4153167532E-04 -0.9100438092E-06 366.0000000 -0.3417562289E-01 -0.5198897033E-04 -0.3980595032E-05 366.5000000 -0.3436496752E-01 -0.6161521808E-04 -0.4501270043E-05 367.0000000 -0.3455404408E-01 -0.6956201546E-04 -0.2228987423E-05 367.5000000 -0.3474214190E-01 -0.7499815253E-04 0.1975255327E-05 368.0000000 -0.3492885917E-01 -0.7765060984E-04 0.6462389435E-05 368.5000000 -0.3511453087E-01 -0.7814018756E-04 0.9578721971E-05 369.0000000 -0.3530015945E-01 -0.7768814799E-04 0.1050259701E-04 369.5000000 -0.3548684150E-01 -0.7734322350E-04 0.9558939818E-05 370.0000000 -0.3567515013E-01 -0.7725969592E-04 0.7866260783E-05 370.5000000 -0.3586494206E-01 -0.7662483630E-04 0.6650354352E-05 371.0000000 -0.3605556741E-01 -0.7436361863E-04 0.6680215692E-05 371.5000000 -0.3624624996E-01 -0.7007070143E-04 0.7942728341E-05 372.0000000 -0.3643644410E-01 -0.6436221392E-04 0.9564571623E-05 372.5000000 -0.3662609275E-01 -0.5841929590E-04 0.1015632960E-04 373.0000000 -0.3681569612E-01 -0.5312623962E-04 0.8698843577E-05 373.5000000 -0.3700599154E-01 -0.4860257708E-04 0.5508745436E-05 374.0000000 -0.3719739962E-01 -0.4452124239E-04 0.2392994998E-05 374.5000000 -0.3738962602E-01 -0.4090455966E-04 0.1623622964E-05 375.0000000 -0.3758182471E-01 -0.3855410567E-04 0.4332212939E-05 375.5000000 -0.3777325767E-01 -0.3848117385E-04 0.9583372414E-05 376.0000000 -0.3796395787E-01 -0.4075978254E-04 0.1480829287E-04 376.5000000 -0.3815478893E-01 -0.4399203790E-04 0.1733940873E-04 377.0000000 -0.3834676941E-01 -0.4618163090E-04 0.1595682912E-04 377.5000000 -0.3854016153E-01 -0.4630323025E-04 0.1142824641E-04 378.0000000 -0.3873411071E-01 -0.4499953836E-04 0.5736745594E-05 378.5000000 -0.3892723576E-01 -0.4381818315E-04 0.6075152219E-06 379.0000000 -0.3911877016E-01 -0.4390973764E-04 -0.3521159259E-05 379.5000000 -0.3930930965E-01 -0.4540804294E-04 -0.7256928497E-05 380.0000000 -0.3950043291E-01 -0.4766895000E-04 -0.1110771036E-04 380.5000000 -0.3969335569E-01 -0.4973978658E-04 -0.1461360292E-04 381.0000000 -0.3988778388E-01 -0.5071362115E-04 -0.1663835706E-04 381.5000000 -0.4008210851E-01 -0.5004864764E-04 -0.1652709418E-04 382.0000000 -0.4027487042E-01 -0.4781519010E-04 -0.1499245822E-04 382.5000000 -0.4046608883E-01 -0.4464085549E-04 -0.1381080226E-04 383.0000000 -0.4065720992E-01 -0.4130498786E-04 -0.1437661710E-04 383.5000000 -0.4084985133E-01 -0.3828736465E-04 -0.1631819759E-04 384.0000000 -0.4104462247E-01 -0.3563494439E-04 -0.1758313811E-04 384.5000000 -0.4124100954E-01 -0.3318891050E-04 -0.1615520754E-04 385.0000000 -0.4143808106E-01 -0.3087177665E-04 -0.1188917825E-04 385.5000000 -0.4163513594E-01 -0.2881480691E-04 -0.6591503445E-05 386.0000000 -0.4183176181E-01 -0.2736317941E-04 -0.2273497105E-05 386.5000000 -0.4202761051E-01 -0.2709368543E-04 0.6208244762E-06 387.0000000 -0.4222250156E-01 -0.2862159034E-04 0.3238972734E-05 387.5000000 -0.4241691519E-01 -0.3205382503E-04 0.6764444683E-05 388.0000000 -0.4261219621E-01 -0.3663961252E-04 0.1092511064E-04 388.5000000 -0.4280993474E-01 -0.4126433588E-04 0.1405696926E-04 389.0000000 -0.4301084912E-01 -0.4543785403E-04 0.1464701237E-04 389.5000000 -0.4321412751E-01 -0.4950615437E-04 0.1283577952E-04 390.0000000 -0.4341783496E-01 -0.5376657947E-04 0.1022132230E-04 390.5000000 -0.4362013205E-01 -0.5764857431E-04 0.8182604381E-05 391.0000000 -0.4382037127E-01 -0.6009261215E-04 0.6725988658E-05 391.5000000 -0.4401921974E-01 -0.6076313076E-04 0.5238779591E-05 392.0000000 -0.4421778654E-01 -0.6070560138E-04 0.3978840611E-05 392.5000000 -0.4441668508E-01 -0.6157095016E-04 0.4107815706E-05 393.0000000 -0.4461599590E-01 -0.6399463778E-04 0.6151156174E-05 393.5000000 -0.4481597034E-01 -0.6682715058E-04 0.8981207528E-05 394.0000000 -0.4501733198E-01 -0.6832226236E-04 0.1067253273E-04 394.5000000 -0.4522059481E-01 -0.6809453586E-04 0.1015533082E-04 395.0000000 -0.4542522627E-01 -0.6737660369E-04 0.7871470272E-05 395.5000000 -0.4562982545E-01 -0.6721982106E-04 0.4847945521E-05 396.0000000 -0.4583323912E-01 -0.6693517046E-04 0.1449010793E-05 396.5000000 -0.4603543171E-01 -0.6473965022E-04 -0.2671760903E-05 397.0000000 -0.4623739329E-01 -0.5965920723E-04 -0.7348344116E-05 397.5000000 -0.4644040775E-01 -0.5255158646E-04 -0.1116068001E-04 398.0000000 -0.4664534648E-01 -0.4553452354E-04 -0.1272470214E-04 398.5000000 -0.4685224725E-01 -0.4063622025E-04 -0.1265973948E-04 399.0000000 -0.4706023720E-01 -0.3871456170E-04 -0.1339466871E-04 399.5000000 -0.4726787576E-01 -0.3914133616E-04 -0.1657670816E-04 400.0000000 -0.4747395355E-01 -0.4034842045E-04 -0.2128373002E-04 400.5000000 -0.4767840504E-01 -0.4078127004E-04 -0.2525275187E-04 401.0000000 -0.4788263874E-01 -0.3976400140E-04 -0.2713381897E-04 401.5000000 -0.4808869159E-01 -0.3774042821E-04 -0.2675804308E-04 402.0000000 -0.4829760892E-01 -0.3549796842E-04 -0.2385128781E-04 402.5000000 -0.4850849531E-01 -0.3291420675E-04 -0.1798780408E-04 403.0000000 -0.4871930722E-01 -0.2888055929E-04 -0.1011547579E-04 403.5000000 -0.4892870893E-01 -0.2296841427E-04 -0.2871442685E-05 404.0000000 -0.4913712912E-01 -0.1683773372E-04 0.1647696117E-05 404.5000000 -0.4934600435E-01 -0.1345664421E-04 0.3850189372E-05 405.0000000 -0.4955620873E-01 -0.1487411284E-04 0.5387021632E-05 405.5000000 -0.4976750554E-01 -0.2078158429E-04 0.6292663613E-05 406.0000000 -0.4997933189E-01 -0.2896693949E-04 0.4794152436E-05 406.5000000 -0.5019153541E-01 -0.3667500790E-04 0.2948205134E-06 407.0000000 -0.5040407944E-01 -0.4172947735E-04 -0.4836331573E-05 407.5000000 -0.5061655390E-01 -0.4326946003E-04 -0.7541670118E-05 408.0000000 -0.5082852875E-01 -0.4231541521E-04 -0.7485666503E-05 408.5000000 -0.5104025066E-01 -0.4132162467E-04 -0.6978411041E-05 409.0000000 -0.5125247208E-01 -0.4211762780E-04 -0.7486797302E-05 409.5000000 -0.5146563660E-01 -0.4420931409E-04 -0.7325472838E-05 410.0000000 -0.5167973789E-01 -0.4574200554E-04 -0.3770413504E-05 410.5000000 -0.5189492456E-01 -0.4581353404E-04 0.3058823590E-05 411.0000000 -0.5211151663E-01 -0.4488859282E-04 0.9538549241E-05 411.5000000 -0.5232920585E-01 -0.4340350570E-04 0.1215916069E-04 412.0000000 -0.5254686783E-01 -0.4129873885E-04 0.1087138674E-04 412.5000000 -0.5276349394E-01 -0.3878042399E-04 0.8338851468E-05 413.0000000 -0.5297900728E-01 -0.3658678249E-04 0.6688418309E-05 413.5000000 -0.5319413179E-01 -0.3538537954E-04 0.5984449097E-05 414.0000000 -0.5340977090E-01 -0.3496201320E-04 0.5403027662E-05 414.5000000 -0.5362651210E-01 -0.3409811632E-04 0.4555413609E-05 415.0000000 -0.5384440593E-01 -0.3188111893E-04 0.3270848805E-05 415.5000000 -0.5406312398E-01 -0.2904473999E-04 0.8737127231E-06 416.0000000 -0.5428239873E-01 -0.2673520317E-04 -0.3283464055E-05 416.5000000 -0.5450223691E-01 -0.2391098703E-04 -0.8247236607E-05 417.0000000 -0.5472256160E-01 -0.1802181172E-04 -0.1118324423E-04 417.5000000 -0.5494278368E-01 -0.9076970833E-05 -0.1012403848E-04 418.0000000 -0.5516227988E-01 -0.1018659330E-05 -0.7086349101E-05 418.5000000 -0.5538143660E-01 0.2271233380E-05 -0.6546311752E-05 419.0000000 -0.5560145284E-01 0.6230105860E-06 -0.9787414038E-05 419.5000000 -0.5582264520E-01 -0.3961528296E-05 -0.1277471591E-04 420.0000000 -0.5604376031E-01 -0.1036965362E-04 -0.1152233546E-04 420.5000000 -0.5626367794E-01 -0.1801557171E-04 -0.7558521744E-05 421.0000000 -0.5648307994E-01 -0.2533612341E-04 -0.4999314119E-05 421.5000000 -0.5670360826E-01 -0.3060989839E-04 -0.3693766168E-05 422.0000000 -0.5692573802E-01 -0.3344560315E-04 0.7329134657E-07 422.5000000 -0.5714834358E-01 -0.3433565626E-04 0.6467013087E-05 423.0000000 -0.5737035885E-01 -0.3322112387E-04 0.1080540253E-04 423.5000000 -0.5759194851E-01 -0.2946279347E-04 0.1002767871E-04 424.0000000 -0.5781367290E-01 -0.2295879757E-04 0.5868272057E-05 424.5000000 -0.5803547499E-01 -0.1382496483E-04 0.8068934649E-06 425.0000000 -0.5825730802E-01 -0.1321641132E-05 -0.4551770717E-05 425.5000000 -0.5848005005E-01 0.1413178757E-04 -0.8724452850E-05 426.0000000 -0.5870454047E-01 0.2798560601E-04 -0.7892390800E-05 426.5000000 -0.5893013735E-01 0.3452776801E-04 0.2285379118E-06 427.0000000 -0.5915558550E-01 0.3326503611E-04 0.1282091449E-04 427.5000000 -0.5938103005E-01 0.2874280494E-04 0.2416856518E-04 428.0000000 -0.5960736872E-01 0.2380472498E-04 0.3054986986E-04 428.5000000 -0.5983394205E-01 0.1704587360E-04 0.3169109497E-04 429.0000000 -0.6005923960E-01 0.7212748630E-05 0.2845805017E-04 429.5000000 -0.6028408991E-01 -0.3651513498E-05 0.2143359298E-04 430.0000000 -0.6051143433E-01 -0.1220307211E-04 0.1200069046E-04 430.5000000 -0.6074218906E-01 -0.1630805209E-04 0.3106193484E-05 431.0000000 -0.6097381086E-01 -0.1590647248E-04 -0.2381607316E-05 431.5000000 -0.6120401334E-01 -0.1335659872E-04 -0.3885549134E-05 432.0000000 -0.6143351955E-01 -0.1225429871E-04 -0.3408086766E-05 432.5000000 -0.6166382753E-01 -0.1496153369E-04 -0.3537240398E-05 433.0000000 -0.6189443827E-01 -0.2133858029E-04 -0.5304099599E-05 433.5000000 -0.6212398462E-01 -0.2913484239E-04 -0.8557724676E-05 434.0000000 -0.6235266617E-01 -0.3591705568E-04 -0.1297186080E-04 434.5000000 -0.6258187863E-01 -0.4161694136E-04 -0.1693399827E-04 435.0000000 -0.6281207986E-01 -0.4801545661E-04 -0.1762703644E-04 435.5000000 -0.6304249296E-01 -0.5545549182E-04 -0.1439691625E-04 436.0000000 -0.6327277612E-01 -0.6166015268E-04 -0.9594730141E-05 436.5000000 -0.6350356988E-01 -0.6366674620E-04 -0.4656353988E-05 437.0000000 -0.6373523876E-01 -0.5992402610E-04 0.1305859731E-05 437.5000000 -0.6396716511E-01 -0.5148311411E-04 0.7601154233E-05 438.0000000 -0.6419856047E-01 -0.4170121988E-04 0.1074881287E-04 438.5000000 -0.6442948029E-01 -0.3357690669E-04 0.9266360162E-05 439.0000000 -0.6466092838E-01 -0.2750331253E-04 0.5560051133E-05 439.5000000 -0.6489368417E-01 -0.2257006634E-04 0.7278788567E-06 440.0000000 -0.6512698789E-01 -0.1887329978E-04 -0.6988563656E-05 440.5000000 -0.6535927363E-01 -0.1735107478E-04 -0.1528234307E-04 441.0000000 -0.6559063202E-01 -0.1838185874E-04 -0.1630033654E-04 441.5000000 -0.6582324238E-01 -0.2044071285E-04 -0.6776222023E-05 442.0000000 -0.6605842714E-01 -0.2019283772E-04 0.6377028333E-05 442.5000000 -0.6629467440E-01 -0.1636658020E-04 0.1475685431E-04 443.0000000 -0.6652977350E-01 -0.1349122677E-04 0.1742088379E-04 443.5000000 -0.6676353970E-01 -0.1777103474E-04 0.1776767769E-04 444.0000000 -0.6699707736E-01 -0.2824557021E-04 0.1669151077E-04 444.5000000 -0.6723080355E-01 -0.3674028519E-04 0.1314118554E-04 445.0000000 -0.6746480825E-01 -0.3764259254E-04 0.7219070498E-05 445.5000000 -0.6770002281E-01 -0.3239260753E-04 -0.9388799504E-06 446.0000000 -0.6793722010E-01 -0.2405375226E-04 -0.1141564013E-04 446.5000000 -0.6817566160E-01 -0.1336299244E-04 -0.2122258206E-04 447.0000000 -0.6841402279E-01 -0.1827548417E-05 -0.2509178198E-04 447.5000000 -0.6865167615E-01 0.6352652193E-05 -0.2123657568E-04 448.0000000 -0.6888868200E-01 0.8422018016E-05 -0.1298374110E-04 448.5000000 -0.6912610232E-01 0.5865119373E-05 -0.5445211601E-05 449.0000000 -0.6936568592E-01 0.1761070785E-05 -0.2600788035E-05 449.5000000 -0.6960713066E-01 -0.2057252255E-05 -0.4363942967E-05 450.0000000 -0.6984763203E-01 -0.5513719992E-05 -0.6455339658E-05 450.5000000 -0.7008616433E-01 -0.9058776146E-05 -0.6574589949E-05 451.0000000 -0.7032503704E-01 -0.1228402756E-04 -0.7155925623E-05 451.5000000 -0.7056588369E-01 -0.1415490963E-04 -0.8532324264E-05 452.0000000 -0.7080762470E-01 -0.1430251111E-04 -0.6576795114E-05 452.5000000 -0.7104930592E-01 -0.1460990097E-04 -0.1936882781E-05 453.0000000 -0.7129180707E-01 -0.1865250404E-04 -0.1948343554E-05 453.5000000 -0.7153549766E-01 -0.2654171037E-04 -0.7699511519E-05 454.0000000 -0.7177880542E-01 -0.3180495222E-04 -0.1050377701E-04 454.5000000 -0.7202067862E-01 -0.2825686020E-04 -0.5962848046E-05 455.0000000 -0.7226230499E-01 -0.1782014113E-04 0.7179633718E-06 455.5000000 -0.7250491845E-01 -0.7033048316E-05 0.5937615323E-05 456.0000000 -0.7274819556E-01 -0.2431816328E-06 0.1200228284E-04 456.5000000 -0.7299190355E-01 0.9644055370E-06 0.1995724573E-04 457.0000000 -0.7323626566E-01 -0.2047202415E-05 0.2664703083E-04 457.5000000 -0.7348059853E-01 -0.4205414702E-05 0.2868656491E-04 458.0000000 -0.7372449991E-01 -0.1387298972E-05 0.2671261401E-04 458.5000000 -0.7396872938E-01 0.3839419612E-05 0.2418292854E-04 459.0000000 -0.7421300510E-01 0.4736830917E-05 0.2208785130E-04 459.5000000 -0.7445626606E-01 -0.4914626744E-06 0.1882269508E-04 460.0000000 -0.7469918076E-01 -0.6599436797E-05 0.1478385756E-04 460.5000000 -0.7494262964E-01 -0.9079040474E-05 0.1175663950E-04 461.0000000 -0.7518616359E-01 -0.7572122248E-05 0.9432092273E-05 461.5000000 -0.7543069412E-01 -0.3158258843E-05 0.7530843020E-05 462.0000000 -0.7567780700E-01 0.1507794746E-05 0.7834171033E-05 462.5000000 -0.7592581140E-01 0.3291035813E-05 0.9992562543E-05 463.0000000 -0.7617207274E-01 0.2582589953E-05 0.9728145628E-05 463.5000000 -0.7641751049E-01 0.4980817317E-06 0.6377236580E-05 464.0000000 -0.7666430800E-01 -0.3355294884E-05 0.5742711490E-05 464.5000000 -0.7691241749E-01 -0.4820800163E-05 0.8958151655E-05 465.0000000 -0.7716139952E-01 0.1425722092E-05 0.9731166479E-05 465.5000000 -0.7741185376E-01 0.1174451150E-04 0.7554314140E-05 466.0000000 -0.7766272270E-01 0.1759736963E-04 0.7405854087E-05 466.5000000 -0.7791158185E-01 0.1462981169E-04 0.6822805412E-05 467.0000000 -0.7815860721E-01 0.4617603485E-05 0.2118671974E-05 467.5000000 -0.7840656490E-01 -0.6265189337E-05 -0.5874693636E-06 468.0000000 -0.7865694723E-01 -0.1289585203E-04 0.2253560228E-05 468.5000000 -0.7890876928E-01 -0.1506876791E-04 0.3505751830E-05 469.0000000 -0.7916035179E-01 -0.1359318156E-04 0.6507846744E-06 469.5000000 -0.7941013594E-01 -0.8847857574E-05 0.6689807381E-06 470.0000000 -0.7965809350E-01 -0.3832648261E-05 0.4825399627E-05 470.5000000 -0.7990710057E-01 -0.3297488978E-06 0.6073304981E-05 471.0000000 -0.8015956110E-01 0.2108710422E-05 0.2848980241E-05 471.5000000 -0.8041331747E-01 -0.1433691943E-05 0.1034187312E-05 472.0000000 -0.8066451307E-01 -0.1546002714E-04 0.2767866173E-05 472.5000000 -0.8091359300E-01 -0.2962004921E-04 0.3337913635E-05 473.0000000 -0.8116475440E-01 -0.2899055596E-04 0.2637033229E-06 473.5000000 -0.8141975803E-01 -0.1607529806E-04 -0.3305510839E-05 474.0000000 -0.8167584027E-01 -0.1589723715E-05 -0.5321219972E-05 474.5000000 -0.8193017905E-01 0.1319756396E-04 -0.6184006497E-05 475.0000000 -0.8218335701E-01 0.2516994563E-04 -0.4456980351E-05 475.5000000 -0.8243695281E-01 0.2574284564E-04 0.1684438391E-05 476.0000000 -0.8269107892E-01 0.1879610492E-04 0.8627764971E-05 476.5000000 -0.8294623295E-01 0.1553512396E-04 0.1021881341E-04 477.0000000 -0.8320283573E-01 0.1419366140E-04 0.7693726627E-05 477.5000000 -0.8345933053E-01 0.5042436305E-05 0.5894281685E-05 478.0000000 -0.8371456596E-01 -0.1199807774E-04 0.4340586731E-05 478.5000000 -0.8396958895E-01 -0.2840749202E-04 0.2814515661E-05 479.0000000 -0.8422561411E-01 -0.3992233814E-04 0.3776865373E-05 479.5000000 -0.8448232375E-01 -0.4695699643E-04 0.6400270914E-05 480.0000000 -0.8473885334E-01 -0.4885648683E-04 0.9542229646E-05 480.5000000 -0.8499507053E-01 -0.4633914544E-04 0.1462519430E-04 481.0000000 -0.8525179540E-01 -0.4375056976E-04 0.1923813634E-04 481.5000000 -0.8550919236E-01 -0.4473296306E-04 0.2031598636E-04 482.0000000 -0.8576628369E-01 -0.4766509844E-04 0.2120142256E-04 482.5000000 -0.8602333506E-01 -0.4777164588E-04 0.2295099105E-04 483.0000000 -0.8628135445E-01 -0.3890592909E-04 0.2114819807E-04 483.5000000 -0.8654030362E-01 -0.1786691339E-04 0.1716145587E-04 484.0000000 -0.8680003926E-01 0.4851442450E-05 0.1669632819E-04 484.5000000 -0.8706000630E-01 0.1561118947E-04 0.1763774613E-04 485.0000000 -0.8731950240E-01 0.1577781567E-04 0.1398926639E-04 485.5000000 -0.8757915336E-01 0.1314269406E-04 0.6125588297E-05 486.0000000 -0.8783912383E-01 0.1076606250E-04 -0.1596473410E-05 486.5000000 -0.8809939446E-01 0.8305477628E-05 -0.5597273102E-05 487.0000000 -0.8836097926E-01 0.2678005322E-05 -0.4312872017E-05 487.5000000 -0.8862331896E-01 -0.6156372172E-05 -0.2812482595E-05 488.0000000 -0.8888459601E-01 -0.1377448892E-04 -0.9129452939E-05 488.5000000 -0.8914527807E-01 -0.1812881573E-04 -0.2116381355E-04 489.0000000 -0.8940665166E-01 -0.2139427730E-04 -0.2641617428E-04 489.5000000 -0.8966855355E-01 -0.2640083482E-04 -0.1790079476E-04 490.0000000 -0.8993048928E-01 -0.3196613822E-04 -0.5946246595E-05 490.5000000 -0.9019208769E-01 -0.3664543616E-04 -0.4290383341E-05 491.0000000 -0.9045368367E-01 -0.4105315014E-04 -0.8152712932E-05 491.5000000 -0.9071643431E-01 -0.4370647861E-04 -0.4584682339E-05 492.0000000 -0.9098060112E-01 -0.4289553154E-04 0.2073759061E-05 492.5000000 -0.9124493583E-01 -0.3914149769E-04 0.1731629497E-05 493.0000000 -0.9150899991E-01 -0.3448801456E-04 -0.2329886672E-05 493.5000000 -0.9177419343E-01 -0.3163785163E-04 -0.8836514414E-05 494.0000000 -0.9204010814E-01 -0.2937224968E-04 -0.1891358886E-04 494.5000000 -0.9230530083E-01 -0.2254262980E-04 -0.2188407366E-04 495.0000000 -0.9257130204E-01 -0.1231933373E-04 -0.1479571920E-04 495.5000000 -0.9283894739E-01 -0.6444911164E-05 -0.1022140508E-04 496.0000000 -0.9310592867E-01 -0.3714031711E-05 -0.1097619280E-04 496.5000000 -0.9337149335E-01 0.3124857420E-05 -0.6916297341E-05 497.0000000 -0.9363777177E-01 0.1070401770E-04 0.3692162317E-05 497.5000000 -0.9390515350E-01 0.1229471317E-04 0.1431713983E-04 498.0000000 -0.9417128692E-01 0.1043436752E-04 0.2097767743E-04 498.5000000 -0.9443583668E-01 0.4842085726E-05 0.2067479975E-04 499.0000000 -0.9470078086E-01 -0.8218530763E-05 0.1480144919E-04 499.5000000 -0.9496631114E-01 -0.2303808683E-04 0.6932153320E-05 500.0000000 -0.9523320457E-01 -0.3707781056E-04 -0.6160247848E-05 500.5000000 -0.9550316501E-01 -0.5015470867E-04 -0.2182212867E-04 501.0000000 -0.9577351996E-01 -0.4875857739E-04 -0.2729928325E-04 501.5000000 -0.9604172332E-01 -0.3114375880E-04 -0.2039821710E-04 502.0000000 -0.9631019909E-01 -0.2051758386E-04 -0.1169076059E-04 502.5000000 -0.9658112344E-01 -0.2649649998E-04 -0.8153911649E-05 503.0000000 -0.9685343256E-01 -0.3652228476E-04 -0.9043478826E-05 503.5000000 -0.9712491173E-01 -0.4287217353E-04 -0.9383252180E-05 504.0000000 -0.9739464405E-01 -0.4360362996E-04 -0.5389698026E-05 504.5000000 -0.9766374811E-01 -0.4029467245E-04 -0.9233415308E-07 505.0000000 -0.9793353295E-01 -0.3414247518E-04 0.1175419309E-05 505.5000000 -0.9820512943E-01 -0.2140368260E-04 -0.2770044820E-05 506.0000000 -0.9847916881E-01 -0.7053805770E-05 -0.8799151607E-05 506.5000000 -0.9875246712E-01 -0.1700951813E-05 -0.1500251242E-04 507.0000000 -0.9902233662E-01 -0.7862473505E-05 -0.2161047746E-04 507.5000000 -0.9929256285E-01 -0.1927808397E-04 -0.2318434531E-04 508.0000000 -0.9956625578E-01 -0.2669955846E-04 -0.1845241837E-04 508.5000000 -0.9984099758E-01 -0.2758447829E-04 -0.1624846949E-04 509.0000000 -0.1001148404 -0.2559798823E-04 -0.1975428543E-04 509.5000000 -0.1003878164 -0.2616663453E-04 -0.2432949727E-04 510.0000000 -0.1006613872 -0.3373675427E-04 -0.2412244469E-04 510.5000000 -0.1009364738 -0.4203770581E-04 -0.1726293576E-04 511.0000000 -0.1012116071 -0.4423018270E-04 -0.8171082722E-05 elk-7.2.42/examples/TDDFT-time-evolution/Si-ramp/PaxHeaders.21776/elk.in0000644000000000000000000000013114061636520022202 xustar0030 mtime=1623670096.297101209 29 atime=1623670096.29610121 30 ctime=1623670096.297101209 elk-7.2.42/examples/TDDFT-time-evolution/Si-ramp/elk.in0000644002504400250440000000174714061636520024251 0ustar00dewhurstdewhurst00000000000000 ! Silicon exposed to an intense, linearly increasing electric field. See the ! manual for details on the 'ramp' vector potential. This is a computationally ! expensive example that is best run with MPI on a cluster. tasks 0 450 460 ! no shifting of the atomic positions for the ground-state run tshift .false. xctype 20 highq .true. nxoapwlo 1 mixtype 3 nempty 20.0 autokpt .false. tstime 500 dtimes 0.5 ! vector potential ramp parameters ! 1 - 3 : polarisation vector (including amplitude) ! 4 : start time of ramp ! 5 : linear coefficient ! 6 : quadratic coefficient ramp 1 1.0 0.0 0.0 0.0 0.0 0.0025 ngridk 12 12 12 vkloff 0.25 0.5 0.625 avec 5.13 5.13 0.0 5.13 0.0 5.13 0.0 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 elk-7.2.42/examples/TDDFT-time-evolution/PaxHeaders.21776/FeCo-Ehrenfest0000644000000000000000000000013214061636520022250 xustar0030 mtime=1623670096.299101207 30 atime=1623670096.298101208 30 ctime=1623670096.299101207 elk-7.2.42/examples/TDDFT-time-evolution/FeCo-Ehrenfest/0000755002504400250440000000000014061636520024362 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-time-evolution/FeCo-Ehrenfest/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023430 xustar0030 mtime=1623670096.299101207 30 atime=1623670096.299101207 30 ctime=1623670096.299101207 elk-7.2.42/examples/TDDFT-time-evolution/FeCo-Ehrenfest/elk.in0000644002504400250440000000365514061636520025476 0ustar00dewhurstdewhurst00000000000000 ! TDDFT time evolution of FeCo with Ehrenfest nuclear dynamics. This is a ! two-step process: first the forces under the influence of a laser pulse are ! calculated. In the second step, the same calculation is repeated but this time ! the forces are used to find the motion of the nuclei. The back-reaction of ! this nuclear motion is applied to the electronic system. ! This approach is valid only for small amplitude nuclear motion. tasks 0 ! ground-state run 450 ! generate the laser pulse A-field 460 ! time evolution with laser pulse and forces calculated 462 ! same time evolution with Ehrenfest dynamics using the previous forces ! calculate forces at each time step tforce .true. ! total simulation time tstime 400.0 ! Simulation time step, ideally about 1 attosecond. It is critically important ! to make sure that the time evolution is stable, particularly for magnetism ! which can diverge even in the absence of a laser field. Any simulation should ! be run first with a laser field of amplitude zero to make sure that all ! observables remain constant over the total simulation time. Reducing the time ! step can improve stability. dtimes 0.4 ! laser pulse parameters ! 1 - 3 : polarisation vector (including amplitude) ! 4 : frequency ! 5 : phase in degrees ! 6 : chirp rate ! 7 : peak time ! 8 : full-width at half-maximum pulse 1 : number of laser pulses 0.0 0.0 150.0 0.03 0.0 0.0 240.0 120.0 nxoapwlo 1 tshift .false. spinorb .true. bfieldc 0.0 0.0 0.001 nempty 20 ngridk 4 4 4 ! artificial strained lattice avec 0.5 0.5 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale1 6.8 scale2 6.8 scale3 7.0 sppath '../../../species/' atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'Co.in' 1 0.0 0.5 0.5 elk-7.2.42/examples/TDDFT-time-evolution/PaxHeaders.21776/Ni-laser-pulse0000644000000000000000000000013214061636520022313 xustar0030 mtime=1623670096.301101205 30 atime=1623670096.300101206 30 ctime=1623670096.301101205 elk-7.2.42/examples/TDDFT-time-evolution/Ni-laser-pulse/0000755002504400250440000000000014061636520024425 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/TDDFT-time-evolution/Ni-laser-pulse/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023473 xustar0030 mtime=1623670096.301101205 30 atime=1623670096.301101205 30 ctime=1623670096.301101205 elk-7.2.42/examples/TDDFT-time-evolution/Ni-laser-pulse/elk.in0000644002504400250440000000476114061636520025540 0ustar00dewhurstdewhurst00000000000000 ! Simulation of an intense ultra-short laser pulse acting on fcc nickel. ! The laser pulse is represented by a time-dependent vector potential which is ! constructed from an arbitrary superposition of planes waves each multiplied ! with a Gaussian envelope function. ! The time-dependent vector potential and laser pulse parameters are written to ! AFIELDT.OUT and TD_INFO.OUT, respectively. The power density of the laser ! pulse is written to AFPDT.OUT. Time units are atomic, one of which is equal to ! 24.18884328 attoseconds. ! The total macroscopic current is written to the file JTOT_TD.OUT and may be ! directly plotted. The total moment magnitude as a function of time is stored ! in the file MOMENTM_TD.OUT. Observe that the moment declines considerably ! after the laser pulse has stopped. ! This example is insufficiently converged for a production run, and all ! observables should be carefully checked for convergence with respect to the ! usual parameters. tasks 0 450 460 ! no shifting of the atomic positions for the ground-state run tshift .false. ! tight ground-state convergence epspot 1.e-7 lradstp 5 rgkmax 8.0 ngridk 8 8 8 ! automatic conversion of species to LAPW + linearised l.o. instead of APW+l.o. nxoapwlo 1 ! large number of empty states required nempty 16 ! total simulation time tstime 500.0 ! Simulation time step, ideally about 1 attosecond. It is critically important ! to make sure that the time evolution is stable, particularly for magnetism ! which can diverge even in the absence of a laser field. Any simulation should ! be run first with a laser field of amplitude zero to make sure that all ! observables remain constant over the total simulation time. Reducing the time ! step can improve stability. dtimes 0.1 ! laser pulse parameters ! 1 - 3 : polarisation vector (including amplitude) ! 4 : frequency ! 5 : phase in degrees ! 6 : chirp rate ! 7 : peak time ! 8 : full-width at half-maximum pulse 1 : number of laser pulses 0.0 0.0 250.0 0.03 0.0 0.0 240.0 120.0 ! plot the 2D magnetisation every ntswrite time steps tdmag2d .true. ntswrite 100 spinpol .true. spinorb .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/PaxHeaders.21776/hybrids0000644000000000000000000000012614061636520015337 xustar0028 mtime=1623670096.3071012 30 atime=1623670096.303101204 28 ctime=1623670096.3071012 elk-7.2.42/examples/hybrids/0000755002504400250440000000000014061636520017446 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/hybrids/PaxHeaders.21776/Si-libxc0000644000000000000000000000013214061636520017006 xustar0030 mtime=1623670096.305101202 30 atime=1623670096.304101203 30 ctime=1623670096.305101202 elk-7.2.42/examples/hybrids/Si-libxc/0000755002504400250440000000000014061636520021120 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/hybrids/Si-libxc/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020166 xustar0030 mtime=1623670096.305101202 30 atime=1623670096.305101202 30 ctime=1623670096.305101202 elk-7.2.42/examples/hybrids/Si-libxc/elk.in0000644002504400250440000000112714061636520022224 0ustar00dewhurstdewhurst00000000000000 ! Hybrid functional example using libxc. Note that the DFT step should be run ! separately with task=0. Then the hybrid step should be run with task=5. ! Example by Tyrel McQueen. tasks 0 ! first run task=0 with PBE... xctype 100 101 130 !...then uncomment the following and run with task=5 for hybrid GGA ! (note that only the correlation functional is set) !xctype ! 100 0 406 lmaxo 6 gmaxvr 10.0 ngridk 2 2 2 nempty 8 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 'Si.in' 2 0.00 0.00 0.00 0.25 0.25 0.25 elk-7.2.42/examples/hybrids/PaxHeaders.21776/Si0000644000000000000000000000013014061636520015705 xustar0030 mtime=1623670096.308101199 28 atime=1623670096.3071012 30 ctime=1623670096.308101199 elk-7.2.42/examples/hybrids/Si/0000755002504400250440000000000014061636520020021 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/hybrids/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017067 xustar0030 mtime=1623670096.308101199 30 atime=1623670096.308101199 30 ctime=1623670096.308101199 elk-7.2.42/examples/hybrids/Si/elk.in0000644002504400250440000000057414061636520021132 0ustar00dewhurstdewhurst00000000000000 ! Hybrid functional using the native PBE functional. ! Example by Tyrel McQueen. tasks 0 5 xctype 20 hybrid .true. ! hybrid mixing parameter hybmix 0.25 lmaxo 6 gmaxvr 10.0 ngridk 2 2 2 nempty 10 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 'Si.in' 2 0.00 0.00 0.00 0.25 0.25 0.25 elk-7.2.42/examples/PaxHeaders.21776/meta-GGA0000644000000000000000000000013214061636520015212 xustar0030 mtime=1623670096.313101194 30 atime=1623670096.309101198 30 ctime=1623670096.313101194 elk-7.2.42/examples/meta-GGA/0000755002504400250440000000000014061636520017324 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/meta-GGA/PaxHeaders.21776/GaAs-SCAN0000644000000000000000000000013214061636520016547 xustar0030 mtime=1623670096.312101195 30 atime=1623670096.310101197 30 ctime=1623670096.312101195 elk-7.2.42/examples/meta-GGA/GaAs-SCAN/0000755002504400250440000000000014061636520020661 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/meta-GGA/GaAs-SCAN/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017727 xustar0030 mtime=1623670096.312101195 30 atime=1623670096.312101195 30 ctime=1623670096.312101195 elk-7.2.42/examples/meta-GGA/GaAs-SCAN/elk.in0000644002504400250440000000212214061636520021761 0ustar00dewhurstdewhurst00000000000000 ! Variational meta-GGA example using the strongly constrained and appropriately ! normed (SCAN) functional of J. Sun, A. Ruzsinszky and J. P. Perdew, ! Phys. Rev. Lett. 115, 036402 (2015). ! ! Unfortunately, the original functional is numerically unstable when used with ! Elk. Instead we use the numerically stable 'regularised' version of SCAN ! developed by A. P. Bartók and J. R. Yates, J. Chem. Phys. 150, 161101 (2019). ! ! This example requires the Libxc functional library. tasks 0 20 highq .true. ! set additional options required for meta-GGA metagga .true. ! regularised SCAN xctype 100 493 494 ngridk 4 4 4 plot1d 7 200 0.0 0.0 1.0 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 elk-7.2.42/examples/meta-GGA/PaxHeaders.21776/Si-Tran-Blaha0000644000000000000000000000013214061636520017474 xustar0030 mtime=1623670096.314101193 30 atime=1623670096.313101194 30 ctime=1623670096.314101193 elk-7.2.42/examples/meta-GGA/Si-Tran-Blaha/0000755002504400250440000000000014061636520021606 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/meta-GGA/Si-Tran-Blaha/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020654 xustar0030 mtime=1623670096.315101192 30 atime=1623670096.314101193 30 ctime=1623670096.315101192 elk-7.2.42/examples/meta-GGA/Si-Tran-Blaha/elk.in0000644002504400250440000000225314061636520022713 0ustar00dewhurstdewhurst00000000000000 ! Band structure of silicon using meta-GGA. Note that the libxc library has to ! be linked into the code. See the manual for instructions on how to do this. ! LAPW appears to be required to obtain accurate kinetic energy densities. ! Compare the meta-GGA and LDA band structures and band gaps. tasks 0 20 ! use the Tran-Blaha meta-GGA functional for exchange and LDA for correlation ! [Phys. Rev. Lett. 102, 226401 (2009)] xctype 100 208 12 ! double the number of points in the muffin-tin nrmtscf 2 ! use LAPW nxoapwlo 1 ! smooth the gradients to ensure convergence msmooth 2 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 14 14 14 ! These are the vertices to be joined for the band structure plot plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/PaxHeaders.21776/phonons-superconductivity0000644000000000000000000000013214061636520021155 xustar0030 mtime=1623670096.390101123 30 atime=1623670096.316101192 30 ctime=1623670096.390101123 elk-7.2.42/examples/phonons-superconductivity/0000755002504400250440000000000014061636520023267 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/GaAs-DFPT0000644000000000000000000000013114061636520022522 xustar0030 mtime=1623670096.321101187 29 atime=1623670096.31710119 30 ctime=1623670096.321101187 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/0000755002504400250440000000000014061636520024635 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000012714061636520024164 xustar0029 mtime=1623670096.31810119 29 atime=1623670096.31810119 29 ctime=1623670096.31810119 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/PHDISP.OUT0000644002504400250440000012662414061636520026230 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.1536768326E-10 0.1588994284E-01 0.1350455454E-04 0.3177988568E-01 0.2703428035E-04 0.4766982851E-01 0.4061314416E-04 0.6355977135E-01 0.5426273974E-04 0.7944971419E-01 0.6800118985E-04 0.9533965703E-01 0.8184215000E-04 0.1112295999 0.9579394125E-04 0.1271195427 0.1098588339E-03 0.1430094855 0.1240324987E-03 0.1588994284 0.1383036361E-03 0.1747893712 0.1526537889E-03 0.1906793141 0.1670573397E-03 0.2065692569 0.1814816874E-03 0.2224591997 0.1958875971E-03 0.2383491426 0.2102297134E-03 0.2542390854 0.2244572224E-03 0.2701290283 0.2385146522E-03 0.2860189711 0.2523427910E-03 0.3019089139 0.2658797097E-03 0.3177988568 0.2790618645E-03 0.3336887996 0.2918252581E-03 0.3495787424 0.3041066308E-03 0.3654686853 0.3158446474E-03 0.3813586281 0.3269810433E-03 0.3972485710 0.3374616830E-03 0.4131385138 0.3472374834E-03 0.4290284566 0.3562651510E-03 0.4449183995 0.3645076847E-03 0.4608083423 0.3719346028E-03 0.4766982851 0.3785218708E-03 0.4925882280 0.3842515242E-03 0.5084781708 0.3891110109E-03 0.5243681137 0.3930923066E-03 0.5402580565 0.3961908851E-03 0.5561479993 0.3984046472E-03 0.5720379422 0.3997329241E-03 0.5879278850 0.4001756680E-03 0.6039174156 0.4028763589E-03 0.6199069461 0.4108045080E-03 0.6358964767 0.4234740900E-03 0.6518860072 0.4401784201E-03 0.6678755378 0.4601015819E-03 0.6838650683 0.4824169885E-03 0.6998545989 0.5063567717E-03 0.7158441294 0.5312512913E-03 0.7318336600 0.5565458692E-03 0.7478231905 0.5818030409E-03 0.7638127211 0.6066967268E-03 0.7798022516 0.6310023339E-03 0.7957917822 0.6545849451E-03 0.8117813127 0.6773866193E-03 0.8277708433 0.6716945882E-03 0.8437603738 0.6366422122E-03 0.8597499044 0.6039116923E-03 0.8757394349 0.5749954450E-03 0.8917289655 0.5513433532E-03 0.9077184961 0.5342994788E-03 0.9237080266 0.5249126663E-03 0.9396975572 0.5236898661E-03 0.9556870877 0.5303413087E-03 0.9716766183 0.5434697864E-03 0.9876661488 0.5598214953E-03 1.003655679 0.5723949441E-03 1.019645210 0.5717049985E-03 1.035634740 0.5576272869E-03 1.051624271 0.5365952268E-03 1.067613802 0.5123777815E-03 1.083603332 0.4865636392E-03 1.099592863 0.4599038630E-03 1.115582393 0.4328260101E-03 1.131571924 0.4056149529E-03 1.147561454 0.3784821208E-03 1.163550985 0.3515945070E-03 1.179540515 0.3250876449E-03 1.195530046 0.2990716344E-03 1.211519577 0.2736339815E-03 1.227509107 0.2488409541E-03 1.243498638 0.2247382916E-03 1.259488168 0.2013517094E-03 1.275477699 0.1786874469E-03 1.291467229 0.1567329992E-03 1.307456760 0.1354581091E-03 1.323446290 0.1148160477E-03 1.339435821 0.9474517726E-04 1.355425351 0.7517076156E-04 1.371414882 0.5600697027E-04 1.387404413 0.3715901639E-04 1.403393943 0.1852536941E-04 1.419383474 0.1536768326E-10 1.435294739 0.1278302379E-04 1.451206004 0.2553441114E-04 1.467117269 0.3822261477E-04 1.483028534 0.5081626546E-04 1.498939799 0.6328426049E-04 1.514851064 0.7559585124E-04 1.530762330 0.8772072986E-04 1.546673595 0.9962911437E-04 1.562584860 0.1112918323E-03 1.578496125 0.1226804020E-03 1.594407390 0.1337671114E-03 1.610318655 0.1445250942E-03 1.626229920 0.1549284020E-03 1.642141185 0.1649520729E-03 1.658052451 0.1745721951E-03 1.673963716 0.1837659659E-03 1.689874981 0.1925117449E-03 1.705786246 0.2007891010E-03 1.721697511 0.2085788534E-03 1.737608776 0.2158631050E-03 1.753520041 0.2226252700E-03 1.769431306 0.2288500938E-03 1.785342572 0.2345236666E-03 1.801253837 0.2396334308E-03 1.817165102 0.2441681828E-03 1.833076367 0.2481180696E-03 1.848987632 0.2514745828E-03 1.864898897 0.2542305487E-03 1.880810162 0.2563801179E-03 1.896721427 0.2579187548E-03 1.912632693 0.2588432274E-03 1.928543958 0.2591515999E-03 1.944455223 0.2596108136E-03 1.960366488 0.2609785784E-03 1.976277753 0.2632258395E-03 1.992189018 0.2663060073E-03 2.008100283 0.2701574505E-03 2.024011548 0.2747065365E-03 2.039922814 0.2798708875E-03 2.055834079 0.2855625640E-03 2.071745344 0.2916909558E-03 2.087656609 0.2981652504E-03 2.103567874 0.3048964240E-03 2.119479139 0.3117987658E-03 2.135390404 0.3187909793E-03 2.151301669 0.3257969280E-03 2.167212935 0.3327460942E-03 2.183124200 0.3395738155E-03 2.199035465 0.3462213535E-03 2.214946730 0.3526358384E-03 2.230857995 0.3587701215E-03 2.246769260 0.3645825591E-03 2.262680525 0.3700367441E-03 2.278591790 0.3751011956E-03 2.294503056 0.3797490169E-03 2.310414321 0.3839575277E-03 2.326325586 0.3877078789E-03 2.342236851 0.3909846582E-03 2.358148116 0.3937754972E-03 2.374059381 0.3960706924E-03 2.389970646 0.3978628515E-03 2.405881911 0.3991465804E-03 2.421793177 0.3999182235E-03 2.437704442 0.4001756680E-03 2.453176228 0.4018541590E-03 2.468648015 0.4068371567E-03 2.484119801 0.4149736908E-03 2.499591588 0.4260318459E-03 2.515063374 0.4397228232E-03 2.530535160 0.4557261304E-03 2.546006947 0.4737115720E-03 2.561478733 0.4933556337E-03 2.576950520 0.5143516144E-03 2.592422306 0.5364139154E-03 2.607894093 0.5592771219E-03 2.623365879 0.5826899485E-03 2.638837666 0.6064025592E-03 2.654309452 0.6301420874E-03 2.669781238 0.6535615835E-03 2.685253025 0.6761192769E-03 2.700724811 0.6921926342E-03 2.716196598 0.6999453049E-03 2.731668384 0.7026367756E-03 2.747065710 0.6914659010E-03 2.762463036 0.6741923307E-03 2.777860361 0.6558633073E-03 2.793257687 0.6369568790E-03 2.808655013 0.6176074688E-03 2.824052339 0.5978879996E-03 2.839449664 0.5778558392E-03 2.854846990 0.5575651559E-03 2.870244316 0.5370716009E-03 2.885641641 0.5164347640E-03 2.901038967 0.4957199475E-03 2.916436293 0.4749998079E-03 2.931833619 0.4543561085E-03 2.947230944 0.4338817115E-03 2.962628270 0.4136828879E-03 2.978025596 0.3938819780E-03 2.993422921 0.3746203719E-03 3.008820247 0.3560616754E-03 3.024217573 0.3383947406E-03 3.039614899 0.3218359623E-03 3.055012224 0.3066298379E-03 3.070409550 0.2930463154E-03 3.085806876 0.2813730876E-03 3.101204201 0.2719010714E-03 3.116601527 0.2649023831E-03 3.131998853 0.2606025030E-03 3.147396179 0.2591515999E-03 0.000000000 0.2057951587E-10 0.1588994284E-01 0.3110564968E-04 0.3177988568E-01 0.6230316667E-04 0.4766982851E-01 0.9368103042E-04 0.6355977135E-01 0.1253210607E-03 0.7944971419E-01 0.1572953703E-03 0.9533965703E-01 0.1896636350E-03 0.1112295999 0.2224707575E-03 0.1271195427 0.2557449738E-03 0.1430094855 0.2894964349E-03 0.1588994284 0.3237162687E-03 0.1747893712 0.3583761139E-03 0.1906793141 0.3934280991E-03 0.2065692569 0.4288052305E-03 0.2224591997 0.4644221450E-03 0.2383491426 0.5001761804E-03 0.2542390854 0.5359487100E-03 0.2701290283 0.5716066927E-03 0.2860189711 0.6070043837E-03 0.3019089139 0.6419851547E-03 0.3177988568 0.6763833667E-03 0.3336887996 0.7100262346E-03 0.3495787424 0.7427356077E-03 0.3654686853 0.7743295674E-03 0.3813586281 0.8046236948E-03 0.3972485710 0.7988229102E-03 0.4131385138 0.7584331479E-03 0.4290284566 0.7165580645E-03 0.4449183995 0.6737949399E-03 0.4608083423 0.6307650378E-03 0.4766982851 0.5881891810E-03 0.4925882280 0.5469396936E-03 0.5084781708 0.5080846446E-03 0.5243681137 0.4729191786E-03 0.5402580565 0.4429603290E-03 0.5561479993 0.4198624858E-03 0.5720379422 0.4052077900E-03 0.5879278850 0.4001756680E-03 0.6039174156 0.4044883437E-03 0.6199069461 0.4170658042E-03 0.6358964767 0.4369304278E-03 0.6518860072 0.4627338675E-03 0.6678755378 0.4930137051E-03 0.6838650683 0.5263700854E-03 0.6998545989 0.5615458684E-03 0.7158441294 0.5974339343E-03 0.7318336600 0.6330367221E-03 0.7478231905 0.6673815004E-03 0.7638127211 0.6993286643E-03 0.7798022516 0.7267043273E-03 0.7957917822 0.7358157616E-03 0.8117813127 0.7071885772E-03 0.8277708433 0.6994132245E-03 0.8437603738 0.7207209567E-03 0.8597499044 0.7414025728E-03 0.8757394349 0.7615732616E-03 0.8917289655 0.7781466716E-03 0.9077184961 0.7644481306E-03 0.9237080266 0.7485495541E-03 0.9396975572 0.7310963524E-03 0.9556870877 0.7127962975E-03 0.9716766183 0.6947696209E-03 0.9876661488 0.6794547302E-03 1.003655679 0.6727193688E-03 1.019645210 0.6828036620E-03 1.035634740 0.7086214213E-03 1.051624271 0.7426378713E-03 1.067613802 0.7801049841E-03 1.083603332 0.7845689880E-03 1.099592863 0.7538843613E-03 1.115582393 0.7218257036E-03 1.131571924 0.6885401191E-03 1.147561454 0.6541606780E-03 1.163550985 0.6188137421E-03 1.179540515 0.5826213488E-03 1.195530046 0.5457014376E-03 1.211519577 0.5081670770E-03 1.227509107 0.4701252398E-03 1.243498638 0.4316754243E-03 1.259488168 0.3929083058E-03 1.275477699 0.3539045465E-03 1.291467229 0.3147338592E-03 1.307456760 0.2754543994E-03 1.323446290 0.2361125396E-03 1.339435821 0.1967430596E-03 1.355425351 0.1573697690E-03 1.371414882 0.1180065534E-03 1.387404413 0.7865881659E-04 1.403393943 0.3932527005E-04 1.419383474 0.2062956135E-10 1.435294739 0.1278302379E-04 1.451206004 0.2553441114E-04 1.467117269 0.3822261477E-04 1.483028534 0.5081626546E-04 1.498939799 0.6328426049E-04 1.514851064 0.7559585124E-04 1.530762330 0.8772072986E-04 1.546673595 0.9962911437E-04 1.562584860 0.1112918323E-03 1.578496125 0.1226804020E-03 1.594407390 0.1337671114E-03 1.610318655 0.1445250942E-03 1.626229920 0.1549284020E-03 1.642141185 0.1649520729E-03 1.658052451 0.1745721951E-03 1.673963716 0.1837659659E-03 1.689874981 0.1925117449E-03 1.705786246 0.2007891010E-03 1.721697511 0.2085788534E-03 1.737608776 0.2158631050E-03 1.753520041 0.2226252700E-03 1.769431306 0.2288500938E-03 1.785342572 0.2345236666E-03 1.801253837 0.2396334308E-03 1.817165102 0.2441681828E-03 1.833076367 0.2481180696E-03 1.848987632 0.2514745828E-03 1.864898897 0.2542305487E-03 1.880810162 0.2563801179E-03 1.896721427 0.2579187548E-03 1.912632693 0.2588432274E-03 1.928543958 0.2591515999E-03 1.944455223 0.2637865572E-03 1.960366488 0.2771826440E-03 1.976277753 0.2980381792E-03 1.992189018 0.3247323342E-03 2.008100283 0.3557154944E-03 2.024011548 0.3896886245E-03 2.039922814 0.4256276570E-03 2.055834079 0.4627404322E-03 2.071745344 0.5004085975E-03 2.087656609 0.5381339233E-03 2.103567874 0.5754904535E-03 2.119479139 0.6120725301E-03 2.135390404 0.6474081977E-03 2.151301669 0.6807272655E-03 2.167212935 0.7100575456E-03 2.183124200 0.7283357327E-03 2.199035465 0.7235382139E-03 2.214946730 0.7034775348E-03 2.230857995 0.6782652923E-03 2.246769260 0.6509205439E-03 2.262680525 0.6225172646E-03 2.278591790 0.5936700152E-03 2.294503056 0.5648771377E-03 2.310414321 0.5366250083E-03 2.326325586 0.5094294701E-03 2.342236851 0.4838548740E-03 2.358148116 0.4605197668E-03 2.374059381 0.4400884339E-03 2.389970646 0.4232439087E-03 2.405881911 0.4106386216E-03 2.421793177 0.4028245931E-03 2.437704442 0.4001756680E-03 2.453176228 0.4023951121E-03 2.468648015 0.4089415919E-03 2.484119801 0.4194978660E-03 2.499591588 0.4335894170E-03 2.515063374 0.4506461070E-03 2.530535160 0.4700606662E-03 2.546006947 0.4912334753E-03 2.561478733 0.5136004590E-03 2.576950520 0.5366457484E-03 2.592422306 0.5599024508E-03 2.607894093 0.5829443978E-03 2.623365879 0.6053702922E-03 2.638837666 0.6267799939E-03 2.654309452 0.6467413484E-03 2.669781238 0.6647462641E-03 2.685253025 0.6801606033E-03 2.700724811 0.6967556747E-03 2.716196598 0.7130121950E-03 2.731668384 0.7197483539E-03 2.747065710 0.7304152402E-03 2.762463036 0.7461789831E-03 2.777860361 0.7619987966E-03 2.793257687 0.7414120412E-03 2.808655013 0.7184687137E-03 2.824052339 0.6946506685E-03 2.839449664 0.6701858322E-03 2.854846990 0.6452212670E-03 2.870244316 0.6198673989E-03 2.885641641 0.5942185036E-03 2.901038967 0.5683634927E-03 2.916436293 0.5423925094E-03 2.931833619 0.5164017391E-03 2.947230944 0.4904976101E-03 2.962628270 0.4648010440E-03 2.978025596 0.4394521784E-03 2.993422921 0.4146158544E-03 3.008820247 0.3904880317E-03 3.024217573 0.3673030771E-03 3.039614899 0.3453414520E-03 3.055012224 0.3249365478E-03 3.070409550 0.3064781372E-03 3.085806876 0.2904081696E-03 3.101204201 0.2772030397E-03 3.116601527 0.2673367064E-03 3.131998853 0.2612237212E-03 3.147396179 0.2591515999E-03 0.000000000 0.2062956135E-10 0.1588994284E-01 0.5515240561E-04 0.3177988568E-01 0.1101136541E-03 0.4766982851E-01 0.1646942073E-03 0.6355977135E-01 0.2187077414E-03 0.7944971419E-01 0.2719726946E-03 0.9533965703E-01 0.3243137444E-03 0.1112295999 0.3755631861E-03 0.1271195427 0.4255621869E-03 0.1430094855 0.4741618799E-03 0.1588994284 0.5212242543E-03 0.1747893712 0.5666227755E-03 0.1906793141 0.6102426289E-03 0.2065692569 0.6519803948E-03 0.2224591997 0.6917427762E-03 0.2383491426 0.7294435767E-03 0.2542390854 0.7649970412E-03 0.2701290283 0.7983026333E-03 0.2860189711 0.8292064747E-03 0.3019089139 0.8573864443E-03 0.3177988568 0.8819205193E-03 0.3336887996 0.8991874613E-03 0.3495787424 0.8967304349E-03 0.3654686853 0.8713912056E-03 0.3813586281 0.8369815720E-03 0.3972485710 0.8334317717E-03 0.4131385138 0.8605655043E-03 0.4290284566 0.8858325282E-03 0.4449183995 0.9090313235E-03 0.4608083423 0.9299405988E-03 0.4766982851 0.9482996507E-03 0.4925882280 0.9637799291E-03 0.5084781708 0.9759797013E-03 0.5243681137 0.9845761935E-03 0.5402580565 0.9897567375E-03 0.5561479993 0.9924110162E-03 0.5720379422 0.9935710983E-03 0.5879278850 0.9938893502E-03 0.6039174156 0.9933177239E-03 0.6199069461 0.9915213567E-03 0.6358964767 0.9882026540E-03 0.6518860072 0.9826567417E-03 0.6678755378 0.9735148719E-03 0.6838650683 0.9592391593E-03 0.6998545989 0.9395561915E-03 0.7158441294 0.9152815229E-03 0.7318336600 0.8872972579E-03 0.7478231905 0.8563581568E-03 0.7638127211 0.8233014314E-03 0.7798022516 0.7899039038E-03 0.7957917822 0.7693259174E-03 0.8117813127 0.7804129148E-03 0.8277708433 0.7918981964E-03 0.8437603738 0.7969795994E-03 0.8597499044 0.7955813442E-03 0.8757394349 0.7888704023E-03 0.8917289655 0.7813558346E-03 0.9077184961 0.8008642845E-03 0.9237080266 0.8201829526E-03 0.9396975572 0.8393329455E-03 0.9556870877 0.8581973903E-03 0.9716766183 0.8762897062E-03 0.9876661488 0.8917888473E-03 1.003655679 0.8978935468E-03 1.019645210 0.8868239288E-03 1.035634740 0.8659199380E-03 1.051624271 0.8410006015E-03 1.067613802 0.8136985113E-03 1.083603332 0.8185270823E-03 1.099592863 0.8561306946E-03 1.115582393 0.8905463565E-03 1.131571924 0.9139627848E-03 1.147561454 0.9077930243E-03 1.163550985 0.8810448618E-03 1.179540515 0.8468468485E-03 1.195530046 0.8081516491E-03 1.211519577 0.7657776486E-03 1.227509107 0.7200989734E-03 1.243498638 0.6713697247E-03 1.259488168 0.6198100212E-03 1.275477699 0.5656345917E-03 1.291467229 0.5090635820E-03 1.307456760 0.4503267512E-03 1.323446290 0.3896648333E-03 1.339435821 0.3273295229E-03 1.355425351 0.2635827142E-03 1.371414882 0.1986952901E-03 1.387404413 0.1329456161E-03 1.403393943 0.6661783166E-04 1.419383474 0.2089859716E-10 1.435294739 0.4999015884E-04 1.451206004 0.9985964513E-04 1.467117269 0.1494880696E-03 1.483028534 0.1987556081E-03 1.498939799 0.2475432817E-03 1.514851064 0.2957332324E-03 1.530762330 0.3432089937E-03 1.546673595 0.3898557550E-03 1.562584860 0.4355606155E-03 1.578496125 0.4802128266E-03 1.594407390 0.5237040174E-03 1.610318655 0.5659283977E-03 1.626229920 0.6067829279E-03 1.642141185 0.6461674423E-03 1.658052451 0.6839846978E-03 1.673963716 0.7201403050E-03 1.689874981 0.7545424581E-03 1.705786246 0.7871013024E-03 1.721697511 0.8177276117E-03 1.737608776 0.8463300413E-03 1.753520041 0.8728091943E-03 1.769431306 0.8970437633E-03 1.785342572 0.9188543107E-03 1.801253837 0.9378938493E-03 1.817165102 0.9532718592E-03 1.833076367 0.9625983076E-03 1.848987632 0.9639316217E-03 1.864898897 0.9611086724E-03 1.880810162 0.9576746910E-03 1.896721427 0.9548520533E-03 1.912632693 0.9530553723E-03 1.928543958 0.9524422393E-03 1.944455223 0.9518748369E-03 1.960366488 0.9501617672E-03 1.976277753 0.9472709582E-03 1.992189018 0.9431506425E-03 2.008100283 0.9377318561E-03 2.024011548 0.9309320996E-03 2.039922814 0.9226606331E-03 2.055834079 0.9128261125E-03 2.071745344 0.9013473585E-03 2.087656609 0.8881682059E-03 2.103567874 0.8732785356E-03 2.119479139 0.8567486396E-03 2.135390404 0.8388033370E-03 2.151301669 0.8200433776E-03 2.167212935 0.8023390149E-03 2.183124200 0.7927090762E-03 2.199035465 0.8031808031E-03 2.214946730 0.8259854172E-03 2.230857995 0.8510890639E-03 2.246769260 0.8755801093E-03 2.262680525 0.8985190924E-03 2.278591790 0.9194520110E-03 2.294503056 0.9380680046E-03 2.310414321 0.9541003250E-03 2.326325586 0.9673037137E-03 2.342236851 0.9774940466E-03 2.358148116 0.9846777967E-03 2.374059381 0.9892153832E-03 2.389970646 0.9917878098E-03 2.405881911 0.9931136746E-03 2.421793177 0.9937178375E-03 2.437704442 0.9938893502E-03 2.453176228 0.9935782877E-03 2.468648015 0.9926283060E-03 2.484119801 0.9909910466E-03 2.499591588 0.9885928534E-03 2.515063374 0.9853455665E-03 2.530535160 0.9811614284E-03 2.546006947 0.9759702237E-03 2.561478733 0.9697353667E-03 2.576950520 0.9624656387E-03 2.592422306 0.9542212730E-03 2.607894093 0.9393557415E-03 2.623365879 0.9217045984E-03 2.638837666 0.9030441286E-03 2.654309452 0.8836105402E-03 2.669781238 0.8637284450E-03 2.685253025 0.8439274424E-03 2.700724811 0.8252614772E-03 2.716196598 0.8101873235E-03 2.731668384 0.8038452601E-03 2.747065710 0.7976432339E-03 2.762463036 0.7825297867E-03 2.777860361 0.7630642809E-03 2.793257687 0.7774075421E-03 2.808655013 0.7922863854E-03 2.824052339 0.8065829971E-03 2.839449664 0.8202660411E-03 2.854846990 0.8333133718E-03 2.870244316 0.8457080427E-03 2.885641641 0.8574367008E-03 2.901038967 0.8684888513E-03 2.916436293 0.8788564770E-03 2.931833619 0.8885338123E-03 2.947230944 0.8975171847E-03 2.962628270 0.9058048845E-03 2.978025596 0.9133970461E-03 2.993422921 0.9202955328E-03 3.008820247 0.9265038203E-03 3.024217573 0.9320268729E-03 3.039614899 0.9368709961E-03 3.055012224 0.9410436407E-03 3.070409550 0.9445531213E-03 3.085806876 0.9474082116E-03 3.101204201 0.9496175938E-03 3.116601527 0.9511891743E-03 3.131998853 0.9521293350E-03 3.147396179 0.9524422393E-03 0.000000000 0.1215508796E-02 0.1588994284E-01 0.1215045359E-02 0.3177988568E-01 0.1213660368E-02 0.4766982851E-01 0.1211369681E-02 0.6355977135E-01 0.1208199405E-02 0.7944971419E-01 0.1204185417E-02 0.9533965703E-01 0.1199372717E-02 0.1112295999 0.1193814626E-02 0.1271195427 0.1187571858E-02 0.1430094855 0.1180711486E-02 0.1588994284 0.1173305831E-02 0.1747893712 0.1165431302E-02 0.1906793141 0.1156295538E-02 0.2065692569 0.1142705128E-02 0.2224591997 0.1127162975E-02 0.2383491426 0.1109574042E-02 0.2542390854 0.1089876206E-02 0.2701290283 0.1068058695E-02 0.2860189711 0.1044203525E-02 0.3019089139 0.1018602973E-02 0.3177988568 0.9921936170E-03 0.3336887996 0.9686579670E-03 0.3495787424 0.9605632952E-03 0.3654686853 0.9712302778E-03 0.3813586281 0.9870651557E-03 0.3972485710 0.1003025032E-02 0.4131385138 0.1017937657E-02 0.4290284566 0.1031479698E-02 0.4449183995 0.1033015405E-02 0.4608083423 0.1028977324E-02 0.4766982851 0.1025826252E-02 0.4925882280 0.1023776420E-02 0.5084781708 0.1023126367E-02 0.5243681137 0.1024108485E-02 0.5402580565 0.1026459359E-02 0.5561479993 0.1029228779E-02 0.5720379422 0.1031340711E-02 0.5879278850 0.1032116111E-02 0.6039174156 0.1030936506E-02 0.6199069461 0.1027353821E-02 0.6358964767 0.1021345467E-02 0.6518860072 0.1013252742E-02 0.6678755378 0.1004211916E-02 0.6838650683 0.9957542780E-03 0.6998545989 0.9883640603E-03 0.7158441294 0.9816085568E-03 0.7318336600 0.9751417077E-03 0.7478231905 0.9689367373E-03 0.7638127211 0.9632389855E-03 0.7798022516 0.9585605508E-03 0.7957917822 0.9557157435E-03 0.8117813127 0.9557851352E-03 0.8277708433 0.9597927194E-03 0.8437603738 0.9680462650E-03 0.8597499044 0.9797375112E-03 0.8757394349 0.9933560783E-03 0.8917289655 0.1007375117E-02 0.9077184961 0.1020560658E-02 0.9237080266 0.1016356759E-02 0.9396975572 0.1001941711E-02 0.9556870877 0.9862562934E-03 0.9716766183 0.9698227389E-03 0.9876661488 0.9544781957E-03 1.003655679 0.9470185628E-03 1.019645210 0.9551970120E-03 1.035634740 0.9716276078E-03 1.051624271 0.9904297361E-03 1.067613802 0.1009898570E-02 1.083603332 0.1023281117E-02 1.099592863 0.1005955624E-02 1.115582393 0.9872802280E-03 1.131571924 0.9744912035E-03 1.147561454 0.9857691278E-03 1.163550985 0.1011841178E-02 1.179540515 0.1039437449E-02 1.195530046 0.1065574564E-02 1.211519577 0.1089503025E-02 1.227509107 0.1111006458E-02 1.243498638 0.1130065776E-02 1.259488168 0.1146759961E-02 1.275477699 0.1161222603E-02 1.291467229 0.1173615229E-02 1.307456760 0.1184107638E-02 1.323446290 0.1192863132E-02 1.339435821 0.1200028417E-02 1.355425351 0.1205727902E-02 1.371414882 0.1210061516E-02 1.387404413 0.1213104840E-02 1.403393943 0.1214910340E-02 1.419383474 0.1215508796E-02 1.435294739 0.1214951550E-02 1.451206004 0.1213283672E-02 1.467117269 0.1210516743E-02 1.483028534 0.1206670068E-02 1.498939799 0.1201770689E-02 1.514851064 0.1195853388E-02 1.530762330 0.1188960702E-02 1.546673595 0.1181142923E-02 1.562584860 0.1172458100E-02 1.578496125 0.1162972029E-02 1.594407390 0.1152758224E-02 1.610318655 0.1141897877E-02 1.626229920 0.1130479793E-02 1.642141185 0.1118600305E-02 1.658052451 0.1106363178E-02 1.673963716 0.1093879528E-02 1.689874981 0.1081267818E-02 1.705786246 0.1068654059E-02 1.721697511 0.1056172539E-02 1.737608776 0.1043967773E-02 1.753520041 0.1032199425E-02 1.769431306 0.1021054921E-02 1.785342572 0.1010784187E-02 1.801253837 0.1001807355E-02 1.817165102 0.9950888210E-03 1.833076367 0.9930911290E-03 1.848987632 0.9978247977E-03 1.864898897 0.1005516105E-02 1.880810162 0.1012675013E-02 1.896721427 0.1018124404E-02 1.912632693 0.1021483302E-02 1.928543958 0.1022614840E-02 1.944455223 0.1022710705E-02 1.960366488 0.1022998736E-02 1.976277753 0.1023479895E-02 1.992189018 0.1024154758E-02 2.008100283 0.1025022388E-02 2.024011548 0.1026079348E-02 2.039922814 0.1027319049E-02 2.055834079 0.1028731449E-02 2.071745344 0.1030302934E-02 2.087656609 0.1032016164E-02 2.103567874 0.1033849542E-02 2.119479139 0.1035775759E-02 2.135390404 0.1037758358E-02 2.151301669 0.1039743754E-02 2.167212935 0.1041642284E-02 2.183124200 0.1043281924E-02 2.199035465 0.1044305511E-02 2.214946730 0.1044081603E-02 2.230857995 0.1042171749E-02 2.246769260 0.1039084597E-02 2.262680525 0.1035637539E-02 2.278591790 0.1032334240E-02 2.294503056 0.1029454130E-02 2.310414321 0.1027200130E-02 2.326325586 0.1025764976E-02 2.342236851 0.1025323860E-02 2.358148116 0.1025929275E-02 2.374059381 0.1027355204E-02 2.389970646 0.1029112226E-02 2.405881911 0.1030690744E-02 2.421793177 0.1031747935E-02 2.437704442 0.1032116111E-02 2.453176228 0.1031486963E-02 2.468648015 0.1029560591E-02 2.484119801 0.1026230634E-02 2.499591588 0.1021353411E-02 2.515063374 0.1014791072E-02 2.530535160 0.1006452493E-02 2.546006947 0.9963153767E-03 2.561478733 0.9844247977E-03 2.576950520 0.9708773539E-03 2.592422306 0.9558035202E-03 2.607894093 0.9451161570E-03 2.623365879 0.9353203575E-03 2.638837666 0.9250680973E-03 2.654309452 0.9146759168E-03 2.669781238 0.9045737552E-03 2.685253025 0.8953447242E-03 2.700724811 0.8877486622E-03 2.716196598 0.8826639240E-03 2.731668384 0.8808627427E-03 2.747065710 0.8864827383E-03 2.762463036 0.8998519360E-03 2.777860361 0.9164165412E-03 2.793257687 0.9340206416E-03 2.808655013 0.9517820555E-03 2.824052339 0.9693022349E-03 2.839449664 0.9863758533E-03 2.854846990 0.1002883787E-02 2.870244316 0.1018749617E-02 2.885641641 0.1033920086E-02 2.901038967 0.1047487540E-02 2.916436293 0.1044568009E-02 2.931833619 0.1041802597E-02 2.947230944 0.1039199953E-02 2.962628270 0.1036768223E-02 2.978025596 0.1034514919E-02 2.993422921 0.1032446775E-02 3.008820247 0.1030569574E-02 3.024217573 0.1028887974E-02 3.039614899 0.1027405350E-02 3.055012224 0.1026123674E-02 3.070409550 0.1025043501E-02 3.085806876 0.1024164093E-02 3.101204201 0.1023483711E-02 3.116601527 0.1023000090E-02 3.131998853 0.1022711005E-02 3.147396179 0.1022614840E-02 0.000000000 0.1215508796E-02 0.1588994284E-01 0.1215232460E-02 0.3177988568E-01 0.1214390359E-02 0.4766982851E-01 0.1212943637E-02 0.6355977135E-01 0.1210828906E-02 0.7944971419E-01 0.1207960252E-02 0.9533965703E-01 0.1204231918E-02 0.1112295999 0.1199521576E-02 0.1271195427 0.1193694056E-02 0.1430094855 0.1186605445E-02 0.1588994284 0.1178107435E-02 0.1747893712 0.1168051879E-02 0.1906793141 0.1157167219E-02 0.2065692569 0.1148594638E-02 0.2224591997 0.1139795211E-02 0.2383491426 0.1130850107E-02 0.2542390854 0.1121839012E-02 0.2701290283 0.1112839228E-02 0.2860189711 0.1103924908E-02 0.3019089139 0.1095166430E-02 0.3177988568 0.1086629952E-02 0.3336887996 0.1078377174E-02 0.3495787424 0.1070465354E-02 0.3654686853 0.1062947647E-02 0.3813586281 0.1055873899E-02 0.3972485710 0.1049292082E-02 0.4131385138 0.1043250773E-02 0.4290284566 0.1037803372E-02 0.4449183995 0.1043566598E-02 0.4608083423 0.1054198839E-02 0.4766982851 0.1063411454E-02 0.4925882280 0.1071253486E-02 0.5084781708 0.1077777963E-02 0.5243681137 0.1083036194E-02 0.5402580565 0.1087074110E-02 0.5561479993 0.1089929746E-02 0.5720379422 0.1091631457E-02 0.5879278850 0.1092196726E-02 0.6039174156 0.1091624661E-02 0.6199069461 0.1090048593E-02 0.6358964767 0.1087834051E-02 0.6518860072 0.1085423808E-02 0.6678755378 0.1083169226E-02 0.6838650683 0.1081244716E-02 0.6998545989 0.1079670328E-02 0.7158441294 0.1078379261E-02 0.7318336600 0.1077273552E-02 0.7478231905 0.1076255416E-02 0.7638127211 0.1075242232E-02 0.7798022516 0.1074173547E-02 0.7957917822 0.1073014570E-02 0.8117813127 0.1071758062E-02 0.8277708433 0.1070425424E-02 0.8437603738 0.1066831607E-02 0.8597499044 0.1059511801E-02 0.8757394349 0.1050872057E-02 0.8917289655 0.1040831451E-02 0.9077184961 0.1029333314E-02 0.9237080266 0.1031957523E-02 0.9396975572 0.1040869556E-02 0.9556870877 0.1047120536E-02 0.9716766183 0.1051321285E-02 0.9876661488 0.1054351121E-02 1.003655679 0.1056584196E-02 1.019645210 0.1057426905E-02 1.035634740 0.1055167141E-02 1.051624271 0.1048507012E-02 1.067613802 0.1037680158E-02 1.083603332 0.1029401678E-02 1.099592863 0.1048590881E-02 1.115582393 0.1067216609E-02 1.131571924 0.1085076255E-02 1.147561454 0.1101999160E-02 1.163550985 0.1117843217E-02 1.179540515 0.1132495277E-02 1.195530046 0.1145872472E-02 1.211519577 0.1157923248E-02 1.227509107 0.1168627562E-02 1.243498638 0.1177951634E-02 1.259488168 0.1185104751E-02 1.275477699 0.1191512810E-02 1.291467229 0.1197118965E-02 1.307456760 0.1201899115E-02 1.323446290 0.1205862095E-02 1.339435821 0.1209045865E-02 1.355425351 0.1211509844E-02 1.371414882 0.1213324504E-02 1.387404413 0.1214559918E-02 1.403393943 0.1215274992E-02 1.419383474 0.1215508796E-02 1.435294739 0.1215386730E-02 1.451206004 0.1215021653E-02 1.467117269 0.1214416915E-02 1.483028534 0.1213578075E-02 1.498939799 0.1212512851E-02 1.514851064 0.1211231065E-02 1.530762330 0.1209744561E-02 1.546673595 0.1208067114E-02 1.562584860 0.1206214316E-02 1.578496125 0.1204203448E-02 1.594407390 0.1202053335E-02 1.610318655 0.1199784188E-02 1.626229920 0.1197417424E-02 1.642141185 0.1194975483E-02 1.658052451 0.1192481620E-02 1.673963716 0.1189959694E-02 1.689874981 0.1187433943E-02 1.705786246 0.1184928754E-02 1.721697511 0.1182468423E-02 1.737608776 0.1180076915E-02 1.753520041 0.1177777625E-02 1.769431306 0.1175593133E-02 1.785342572 0.1173544974E-02 1.801253837 0.1171653409E-02 1.817165102 0.1169937210E-02 1.833076367 0.1168413456E-02 1.848987632 0.1167097352E-02 1.864898897 0.1166002057E-02 1.880810162 0.1165138545E-02 1.896721427 0.1164515479E-02 1.912632693 0.1164139116E-02 1.928543958 0.1164013240E-02 1.944455223 0.1163384047E-02 1.960366488 0.1161511457E-02 1.976277753 0.1158440343E-02 1.992189018 0.1154245086E-02 2.008100283 0.1149028617E-02 2.024011548 0.1142920434E-02 2.039922814 0.1136073055E-02 2.055834079 0.1128656491E-02 2.071745344 0.1120850698E-02 2.087656609 0.1112836596E-02 2.103567874 0.1104787123E-02 2.119479139 0.1096860504E-02 2.135390404 0.1089198439E-02 2.151301669 0.1081932727E-02 2.167212935 0.1075206693E-02 2.183124200 0.1069226842E-02 2.199035465 0.1064372595E-02 2.214946730 0.1061292828E-02 2.230857995 0.1060445777E-02 2.246769260 0.1061351676E-02 2.262680525 0.1063237566E-02 2.278591790 0.1065666018E-02 2.294503056 0.1068451145E-02 2.310414321 0.1071512780E-02 2.326325586 0.1074798148E-02 2.342236851 0.1078235017E-02 2.358148116 0.1081700403E-02 2.374059381 0.1085009279E-02 2.389970646 0.1087930639E-02 2.405881911 0.1090225906E-02 2.421793177 0.1091692443E-02 2.437704442 0.1092196726E-02 2.453176228 0.1091948329E-02 2.468648015 0.1091247608E-02 2.484119801 0.1090217503E-02 2.499591588 0.1089029181E-02 2.515063374 0.1087858681E-02 2.530535160 0.1086845776E-02 2.546006947 0.1086071668E-02 2.561478733 0.1085516184E-02 2.576950520 0.1084981585E-02 2.592422306 0.1084714485E-02 2.607894093 0.1084694469E-02 2.623365879 0.1084877857E-02 2.638837666 0.1085207169E-02 2.654309452 0.1085619572E-02 2.669781238 0.1086053529E-02 2.685253025 0.1086453621E-02 2.700724811 0.1086773898E-02 2.716196598 0.1086952998E-02 2.731668384 0.1086994557E-02 2.747065710 0.1083051786E-02 2.762463036 0.1079125039E-02 2.777860361 0.1075253064E-02 2.793257687 0.1071446368E-02 2.808655013 0.1067715341E-02 2.824052339 0.1064070281E-02 2.839449664 0.1060521394E-02 2.854846990 0.1057078783E-02 2.870244316 0.1053752423E-02 2.885641641 0.1050552135E-02 2.901038967 0.1048355528E-02 2.916436293 0.1062024830E-02 2.931833619 0.1074902608E-02 2.947230944 0.1086967556E-02 2.962628270 0.1098201422E-02 2.978025596 0.1108588362E-02 2.993422921 0.1118114514E-02 3.008820247 0.1126767709E-02 3.024217573 0.1134537273E-02 3.039614899 0.1141413884E-02 3.055012224 0.1147389478E-02 3.070409550 0.1152457168E-02 3.085806876 0.1156611200E-02 3.101204201 0.1159846907E-02 3.116601527 0.1162160686E-02 3.131998853 0.1163549974E-02 3.147396179 0.1164013240E-02 0.000000000 0.1215508796E-02 0.1588994284E-01 0.1215361805E-02 0.3177988568E-01 0.1214920247E-02 0.4766982851E-01 0.1214182418E-02 0.6355977135E-01 0.1213145633E-02 0.7944971419E-01 0.1211806459E-02 0.9533965703E-01 0.1210161035E-02 0.1112295999 0.1208205465E-02 0.1271195427 0.1205936280E-02 0.1430094855 0.1203350961E-02 0.1588994284 0.1200448489E-02 0.1747893712 0.1197229939E-02 0.1906793141 0.1193699057E-02 0.2065692569 0.1189862837E-02 0.2224591997 0.1185732056E-02 0.2383491426 0.1181321744E-02 0.2542390854 0.1176651578E-02 0.2701290283 0.1171746156E-02 0.2860189711 0.1166635160E-02 0.3019089139 0.1161353354E-02 0.3177988568 0.1155940429E-02 0.3336887996 0.1150440667E-02 0.3495787424 0.1144902434E-02 0.3654686853 0.1139377489E-02 0.3813586281 0.1133920146E-02 0.3972485710 0.1128586294E-02 0.4131385138 0.1123432325E-02 0.4290284566 0.1118514010E-02 0.4449183995 0.1113885379E-02 0.4608083423 0.1109597664E-02 0.4766982851 0.1105698346E-02 0.4925882280 0.1102230364E-02 0.5084781708 0.1099231506E-02 0.5243681137 0.1096733988E-02 0.5402580565 0.1094764212E-02 0.5561479993 0.1093342669E-02 0.5720379422 0.1092483936E-02 0.5879278850 0.1092196726E-02 0.6039174156 0.1092208608E-02 0.6199069461 0.1092239466E-02 0.6358964767 0.1092274809E-02 0.6518860072 0.1092290097E-02 0.6678755378 0.1092250215E-02 0.6838650683 0.1092108871E-02 0.6998545989 0.1091808024E-02 0.7158441294 0.1091277501E-02 0.7318336600 0.1090434951E-02 0.7478231905 0.1089186299E-02 0.7638127211 0.1087426807E-02 0.7798022516 0.1085042839E-02 0.7957917822 0.1081914311E-02 0.8117813127 0.1077917764E-02 0.8277708433 0.1072929926E-02 0.8437603738 0.1069067610E-02 0.8597499044 0.1067766700E-02 0.8757394349 0.1066639670E-02 0.8917289655 0.1065846912E-02 0.9077184961 0.1065607649E-02 0.9237080266 0.1066209880E-02 0.9396975572 0.1067928282E-02 0.9556870877 0.1070670977E-02 0.9716766183 0.1073649203E-02 0.9876661488 0.1075856125E-02 1.003655679 0.1076816488E-02 1.019645210 0.1077035751E-02 1.035634740 0.1078145530E-02 1.051624271 0.1081374186E-02 1.067613802 0.1086447053E-02 1.083603332 0.1092810231E-02 1.099592863 0.1100118218E-02 1.115582393 0.1108145275E-02 1.131571924 0.1116709142E-02 1.147561454 0.1125640892E-02 1.163550985 0.1134775216E-02 1.179540515 0.1143948735E-02 1.195530046 0.1153001489E-02 1.211519577 0.1161779776E-02 1.227509107 0.1170139741E-02 1.243498638 0.1177996011E-02 1.259488168 0.1186067784E-02 1.275477699 0.1192907457E-02 1.291467229 0.1198600698E-02 1.307456760 0.1203249031E-02 1.323446290 0.1206963860E-02 1.339435821 0.1209860005E-02 1.355425351 0.1212049067E-02 1.371414882 0.1213632956E-02 1.387404413 0.1214697937E-02 1.403393943 0.1215309563E-02 1.419383474 0.1215508796E-02 1.435294739 0.1215386730E-02 1.451206004 0.1215021653E-02 1.467117269 0.1214416915E-02 1.483028534 0.1213578075E-02 1.498939799 0.1212512851E-02 1.514851064 0.1211231065E-02 1.530762330 0.1209744561E-02 1.546673595 0.1208067114E-02 1.562584860 0.1206214316E-02 1.578496125 0.1204203448E-02 1.594407390 0.1202053335E-02 1.610318655 0.1199784188E-02 1.626229920 0.1197417424E-02 1.642141185 0.1194975483E-02 1.658052451 0.1192481620E-02 1.673963716 0.1189959694E-02 1.689874981 0.1187433943E-02 1.705786246 0.1184928754E-02 1.721697511 0.1182468423E-02 1.737608776 0.1180076915E-02 1.753520041 0.1177777625E-02 1.769431306 0.1175593133E-02 1.785342572 0.1173544974E-02 1.801253837 0.1171653409E-02 1.817165102 0.1169937210E-02 1.833076367 0.1168413456E-02 1.848987632 0.1167097352E-02 1.864898897 0.1166002057E-02 1.880810162 0.1165138545E-02 1.896721427 0.1164515479E-02 1.912632693 0.1164139116E-02 1.928543958 0.1164013240E-02 1.944455223 0.1163839485E-02 1.960366488 0.1163319882E-02 1.976277753 0.1162459397E-02 1.992189018 0.1161266268E-02 2.008100283 0.1159751927E-02 2.024011548 0.1157930914E-02 2.039922814 0.1155820750E-02 2.055834079 0.1153441783E-02 2.071745344 0.1150817014E-02 2.087656609 0.1147971885E-02 2.103567874 0.1144934040E-02 2.119479139 0.1141733066E-02 2.135390404 0.1138400198E-02 2.151301669 0.1134968006E-02 2.167212935 0.1131470060E-02 2.183124200 0.1127940574E-02 2.199035465 0.1124414044E-02 2.214946730 0.1120924877E-02 2.230857995 0.1117507014E-02 2.246769260 0.1114193574E-02 2.262680525 0.1111016494E-02 2.278591790 0.1108006207E-02 2.294503056 0.1105191340E-02 2.310414321 0.1102598440E-02 2.326325586 0.1100251748E-02 2.342236851 0.1098173001E-02 2.358148116 0.1096381277E-02 2.374059381 0.1094892871E-02 2.389970646 0.1093721210E-02 2.405881911 0.1092876786E-02 2.421793177 0.1092367118E-02 2.437704442 0.1092196726E-02 2.453176228 0.1092009082E-02 2.468648015 0.1091466122E-02 2.484119801 0.1090625740E-02 2.499591588 0.1089577513E-02 2.515063374 0.1088432016E-02 2.530535160 0.1087306207E-02 2.546006947 0.1086306945E-02 2.561478733 0.1085560352E-02 2.576950520 0.1085294685E-02 2.592422306 0.1085234883E-02 2.607894093 0.1085332499E-02 2.623365879 0.1085538754E-02 2.638837666 0.1085808709E-02 2.654309452 0.1086103013E-02 2.669781238 0.1086388480E-02 2.685253025 0.1086638162E-02 2.700724811 0.1086831258E-02 2.716196598 0.1086980130E-02 2.731668384 0.1087051244E-02 2.747065710 0.1091027506E-02 2.762463036 0.1095054557E-02 2.777860361 0.1099093130E-02 2.793257687 0.1103131829E-02 2.808655013 0.1107158956E-02 2.824052339 0.1111162432E-02 2.839449664 0.1115129736E-02 2.854846990 0.1119047842E-02 2.870244316 0.1122903174E-02 2.885641641 0.1126681568E-02 2.901038967 0.1130368262E-02 2.916436293 0.1133947906E-02 2.931833619 0.1137404609E-02 2.947230944 0.1140722020E-02 2.962628270 0.1143883446E-02 2.978025596 0.1146872011E-02 2.993422921 0.1149670853E-02 3.008820247 0.1152263344E-02 3.024217573 0.1154633340E-02 3.039614899 0.1156765448E-02 3.055012224 0.1158645295E-02 3.070409550 0.1160259791E-02 3.085806876 0.1161597384E-02 3.101204201 0.1162648283E-02 3.116601527 0.1163404660E-02 3.131998853 0.1163860803E-02 3.147396179 0.1164013240E-02 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000013214061636520024377 xustar0030 mtime=1623670096.320101188 30 atime=1623670096.320101188 30 ctime=1623670096.320101188 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/PHDLINES.OUT0000644002504400250440000000106014061636520026431 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.9116315967E-03 0.000000000 0.1823263193E-02 0.5879278850 -0.9116315967E-03 0.5879278850 0.1823263193E-02 1.419383474 -0.9116315967E-03 1.419383474 0.1823263193E-02 1.928543958 -0.9116315967E-03 1.928543958 0.1823263193E-02 2.437704442 -0.9116315967E-03 2.437704442 0.1823263193E-02 2.731668384 -0.9116315967E-03 2.731668384 0.1823263193E-02 3.147396179 -0.9116315967E-03 3.147396179 0.1823263193E-02 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023703 xustar0030 mtime=1623670096.322101186 30 atime=1623670096.322101186 30 ctime=1623670096.322101186 elk-7.2.42/examples/phonons-superconductivity/GaAs-DFPT/elk.in0000644002504400250440000000177614061636520025753 0ustar00dewhurstdewhurst00000000000000 ! Phonon dispersion of GaAs calculated with density functional perturbation ! theory (DFPT). Note the large number of radial mesh points required for ! convergence. This is because the gradients calculated in the muffin-tin ! have to be particularly accurate. ! Also note that the LO-TO splitting is not included in the dispersion. tasks 0 : ground state calculation 205 : phonon calculation with DFPT 220 : phonon dispersion plot ! scale up the number of radial mesh points nrmtscf 6.0 ngridq 2 2 2 ngridk 4 4 4 plot1d 7 200 0.0 0.0 1.0 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Nb-DFPT0000644000000000000000000000013214061636520022247 xustar0030 mtime=1623670096.338101171 30 atime=1623670096.323101185 30 ctime=1623670096.338101171 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/0000755002504400250440000000000014061636520024361 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/ALPHA2F.OUT0000644000000000000000000000013214061636520023732 xustar0030 mtime=1623670096.325101183 30 atime=1623670096.325101183 30 ctime=1623670096.325101183 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/ALPHA2F.OUT0000644002504400250440000004410414061636520025772 0ustar00dewhurstdewhurst00000000000000 -0.1214788429E-03 0.000000000 -0.1188063098E-03 0.000000000 -0.1161337768E-03 0.000000000 -0.1134612437E-03 0.000000000 -0.1107887107E-03 0.000000000 -0.1081161776E-03 0.000000000 -0.1054436446E-03 0.000000000 -0.1027711115E-03 0.000000000 -0.1000985785E-03 0.000000000 -0.9742604544E-04 0.000000000 -0.9475351239E-04 0.000000000 -0.9208097934E-04 0.000000000 -0.8940844629E-04 0.000000000 -0.8673591325E-04 0.000000000 -0.8406338020E-04 0.000000000 -0.8139084715E-04 0.000000000 -0.7871831410E-04 0.000000000 -0.7604578106E-04 0.000000000 -0.7337324801E-04 0.000000000 -0.7070071496E-04 0.000000000 -0.6802818191E-04 0.000000000 -0.6535564886E-04 0.000000000 -0.6268311582E-04 0.000000000 -0.6001058277E-04 0.000000000 -0.5733804972E-04 0.000000000 -0.5466551667E-04 0.000000000 -0.5199298362E-04 0.000000000 -0.4932045058E-04 0.000000000 -0.4664791753E-04 0.000000000 -0.4397538448E-04 0.000000000 -0.4130285143E-04 0.000000000 -0.3863031839E-04 0.000000000 -0.3595778534E-04 0.000000000 -0.3328525229E-04 0.000000000 -0.3061271924E-04 0.000000000 -0.2794018619E-04 0.000000000 -0.2526765315E-04 0.000000000 -0.2259512010E-04 0.000000000 -0.1992258705E-04 0.000000000 -0.1725005400E-04 0.000000000 -0.1457752095E-04 0.000000000 -0.1190498791E-04 0.000000000 -0.9232454859E-05 0.000000000 -0.6559921811E-05 0.000000000 -0.3887388763E-05 0.3801108487E-34 -0.1214855715E-05 0.3801108487E-34 0.1457677333E-05 0.6197129300E-09 0.4130210381E-05 0.6197129300E-09 0.6802743429E-05 0.1048194789E-07 0.9475276476E-05 0.9862234962E-08 0.1214780952E-04 0.9862234962E-08 0.1482034257E-04 0.4948219052E-07 0.1749287562E-04 0.4974567115E-07 0.2016540867E-04 0.2065159609E-06 0.2283794172E-04 0.2064282313E-06 0.2551047476E-04 0.4700093407E-06 0.2818300781E-04 0.1098097410E-05 0.3085554086E-04 0.1450322615E-05 0.3352807391E-04 0.2249805080E-05 0.3620060696E-04 0.2299490027E-05 0.3887314000E-04 0.2738248309E-05 0.4154567305E-04 0.4184096368E-05 0.4421820610E-04 0.6220368978E-05 0.4689073915E-04 0.7450004557E-05 0.4956327219E-04 0.1217122090E-04 0.5223580524E-04 0.1348206585E-04 0.5490833829E-04 0.1793631065E-04 0.5758087134E-04 0.1201078497E-04 0.6025340439E-04 0.2863514237E-04 0.6292593743E-04 0.2432934426E-04 0.6559847048E-04 0.3380218137E-04 0.6827100353E-04 0.3625309382E-04 0.7094353658E-04 0.4896928584E-04 0.7361606963E-04 0.5640155106E-04 0.7628860267E-04 0.5212492429E-04 0.7896113572E-04 0.7148191658E-04 0.8163366877E-04 0.8023089039E-04 0.8430620182E-04 0.8918821089E-04 0.8697873486E-04 0.9698401649E-04 0.8965126791E-04 0.1248459045E-03 0.9232380096E-04 0.1532548832E-03 0.9499633401E-04 0.1775887565E-03 0.9766886706E-04 0.1651870442E-03 0.1003414001E-03 0.1595840128E-03 0.1030139332E-03 0.2002683335E-03 0.1056864662E-03 0.2432766462E-03 0.1083589992E-03 0.2977323840E-03 0.1110315323E-03 0.2488172994E-03 0.1137040653E-03 0.3042284579E-03 0.1163765984E-03 0.3193929675E-03 0.1190491314E-03 0.4153687199E-03 0.1217216645E-03 0.4162909873E-03 0.1243941975E-03 0.4190759288E-03 0.1270667306E-03 0.5076066717E-03 0.1297392636E-03 0.5643792185E-03 0.1324117967E-03 0.6538184349E-03 0.1350843297E-03 0.6840598363E-03 0.1377568628E-03 0.7125154847E-03 0.1404293958E-03 0.7520137824E-03 0.1431019289E-03 0.7945140122E-03 0.1457744619E-03 0.8334516714E-03 0.1484469950E-03 0.9639524481E-03 0.1511195280E-03 0.9407677873E-03 0.1537920611E-03 0.1105787418E-02 0.1564645941E-03 0.1094633362E-02 0.1591371272E-03 0.1382073439E-02 0.1618096602E-03 0.1510714936E-02 0.1644821933E-03 0.1503748880E-02 0.1671547263E-03 0.1493542777E-02 0.1698272593E-03 0.1426354195E-02 0.1724997924E-03 0.1795407753E-02 0.1751723254E-03 0.2007551769E-02 0.1778448585E-03 0.2364998769E-02 0.1805173915E-03 0.2397984943E-02 0.1831899246E-03 0.2166709217E-02 0.1858624576E-03 0.2295813505E-02 0.1885349907E-03 0.2380975557E-02 0.1912075237E-03 0.2890545885E-02 0.1938800568E-03 0.3021138090E-02 0.1965525898E-03 0.3362073456E-02 0.1992251229E-03 0.3411429583E-02 0.2018976559E-03 0.3676574442E-02 0.2045701890E-03 0.3670684092E-02 0.2072427220E-03 0.3976415244E-02 0.2099152551E-03 0.4042918245E-02 0.2125877881E-03 0.4335465177E-02 0.2152603212E-03 0.4887157290E-02 0.2179328542E-03 0.5265472417E-02 0.2206053873E-03 0.5815736242E-02 0.2232779203E-03 0.5385582407E-02 0.2259504534E-03 0.5798599839E-02 0.2286229864E-03 0.5807222779E-02 0.2312955195E-03 0.6907092080E-02 0.2339680525E-03 0.7309227343E-02 0.2366405855E-03 0.8012009442E-02 0.2393131186E-03 0.7954803591E-02 0.2419856516E-03 0.7821591299E-02 0.2446581847E-03 0.7836098194E-02 0.2473307177E-03 0.8777246007E-02 0.2500032508E-03 0.9704545101E-02 0.2526757838E-03 0.1060571434E-01 0.2553483169E-03 0.1072647748E-01 0.2580208499E-03 0.1102255967E-01 0.2606933830E-03 0.1215533748E-01 0.2633659160E-03 0.1253633775E-01 0.2660384491E-03 0.1289422321E-01 0.2687109821E-03 0.1330075107E-01 0.2713835152E-03 0.1394043649E-01 0.2740560482E-03 0.1444152571E-01 0.2767285813E-03 0.1640975639E-01 0.2794011143E-03 0.1726860966E-01 0.2820736474E-03 0.1896692422E-01 0.2847461804E-03 0.1743672972E-01 0.2874187135E-03 0.1792206139E-01 0.2900912465E-03 0.1938982919E-01 0.2927637796E-03 0.2120087331E-01 0.2954363126E-03 0.2335018978E-01 0.2981088456E-03 0.2438911718E-01 0.3007813787E-03 0.2486007452E-01 0.3034539117E-03 0.2479545003E-01 0.3061264448E-03 0.2608320728E-01 0.3087989778E-03 0.2931329628E-01 0.3114715109E-03 0.3162515556E-01 0.3141440439E-03 0.3303621955E-01 0.3168165770E-03 0.3250297945E-01 0.3194891100E-03 0.3477157241E-01 0.3221616431E-03 0.3587087857E-01 0.3248341761E-03 0.3891490992E-01 0.3275067092E-03 0.4001779060E-01 0.3301792422E-03 0.4200440680E-01 0.3328517753E-03 0.4425786496E-01 0.3355243083E-03 0.4640391288E-01 0.3381968414E-03 0.4765271090E-01 0.3408693744E-03 0.4743674831E-01 0.3435419075E-03 0.4936986665E-01 0.3462144405E-03 0.5363899618E-01 0.3488869736E-03 0.5594309531E-01 0.3515595066E-03 0.5826045873E-01 0.3542320397E-03 0.5930710359E-01 0.3569045727E-03 0.6277595126E-01 0.3595771057E-03 0.6378059226E-01 0.3622496388E-03 0.6562482763E-01 0.3649221718E-03 0.6914307563E-01 0.3675947049E-03 0.7278953692E-01 0.3702672379E-03 0.7499796490E-01 0.3729397710E-03 0.7791020244E-01 0.3756123040E-03 0.7806831823E-01 0.3782848371E-03 0.8275036362E-01 0.3809573701E-03 0.8092061116E-01 0.3836299032E-03 0.8898054424E-01 0.3863024362E-03 0.9040715724E-01 0.3889749693E-03 0.9398954972E-01 0.3916475023E-03 0.9484933384E-01 0.3943200354E-03 0.9533566316E-01 0.3969925684E-03 0.1039066884 0.3996651015E-03 0.1055013963 0.4023376345E-03 0.1101860358 0.4050101676E-03 0.1073569943 0.4076827006E-03 0.1131476057 0.4103552337E-03 0.1170992170 0.4130277667E-03 0.1231283768 0.4157002998E-03 0.1217433843 0.4183728328E-03 0.1242152489 0.4210453658E-03 0.1269776060 0.4237178989E-03 0.1343215863 0.4263904319E-03 0.1372672256 0.4290629650E-03 0.1370632022 0.4317354980E-03 0.1413184658 0.4344080311E-03 0.1453467990 0.4370805641E-03 0.1507673067 0.4397530972E-03 0.1488766473 0.4424256302E-03 0.1539609019 0.4450981633E-03 0.1582496413 0.4477706963E-03 0.1650402630 0.4504432294E-03 0.1629777178 0.4531157624E-03 0.1684302922 0.4557882955E-03 0.1719300701 0.4584608285E-03 0.1812745933 0.4611333616E-03 0.1828809171 0.4638058946E-03 0.1782969942 0.4664784277E-03 0.1849448512 0.4691509607E-03 0.1916399665 0.4718234938E-03 0.2019819946 0.4744960268E-03 0.2010402177 0.4771685599E-03 0.1994405493 0.4798410929E-03 0.2066676925 0.4825136260E-03 0.2135437372 0.4851861590E-03 0.2171768366 0.4878586920E-03 0.2207986965 0.4905312251E-03 0.2211230339 0.4932037581E-03 0.2313735936 0.4958762912E-03 0.2317286698 0.4985488242E-03 0.2381004427 0.5012213573E-03 0.2427764728 0.5038938903E-03 0.2436529986 0.5065664234E-03 0.2524296141 0.5092389564E-03 0.2473656774 0.5119114895E-03 0.2623987259 0.5145840225E-03 0.2646717608 0.5172565556E-03 0.2757509348 0.5199290886E-03 0.2780320578 0.5226016217E-03 0.2758757714 0.5252741547E-03 0.2857883350 0.5279466878E-03 0.2920473763 0.5306192208E-03 0.2990592002 0.5332917539E-03 0.3009050367 0.5359642869E-03 0.3049301612 0.5386368200E-03 0.3165226534 0.5413093530E-03 0.3202720960 0.5439818861E-03 0.3251660549 0.5466544191E-03 0.3255216505 0.5493269521E-03 0.3369994677 0.5519994852E-03 0.3420418147 0.5546720182E-03 0.3538806734 0.5573445513E-03 0.3548220022 0.5600170843E-03 0.3647379743 0.5626896174E-03 0.3684875239 0.5653621504E-03 0.3776358778 0.5680346835E-03 0.3731853237 0.5707072165E-03 0.3939817216 0.5733797496E-03 0.3933171693 0.5760522826E-03 0.4188199621 0.5787248157E-03 0.4105824635 0.5813973487E-03 0.4316033827 0.5840698818E-03 0.4304621177 0.5867424148E-03 0.4438654690 0.5894149479E-03 0.4470284470 0.5920874809E-03 0.4646107440 0.5947600140E-03 0.4726783460 0.5974325470E-03 0.4907477298 0.6001050801E-03 0.4954350476 0.6027776131E-03 0.5070039135 0.6054501462E-03 0.5122571605 0.6081226792E-03 0.5355186415 0.6107952122E-03 0.5476397259 0.6134677453E-03 0.5717653354 0.6161402783E-03 0.5831796272 0.6188128114E-03 0.5989144327 0.6214853444E-03 0.6127570490 0.6241578775E-03 0.6315707160 0.6268304105E-03 0.6556930482 0.6295029436E-03 0.6827056442 0.6321754766E-03 0.7051576177 0.6348480097E-03 0.7385509500 0.6375205427E-03 0.7589178219 0.6401930758E-03 0.8012969822 0.6428656088E-03 0.8434709491 0.6455381419E-03 0.9043850337 0.6482106749E-03 0.9555189678 0.6508832080E-03 1.039483134 0.6535557410E-03 1.198302673 0.6562282741E-03 1.330433549 0.6589008071E-03 1.410226950 0.6615733402E-03 1.400075953 0.6642458732E-03 1.393698961 0.6669184063E-03 1.422295416 0.6695909393E-03 1.435087850 0.6722634723E-03 1.465921975 0.6749360054E-03 1.435054345 0.6776085384E-03 1.401581055 0.6802810715E-03 1.390710068 0.6829536045E-03 1.397865635 0.6856261376E-03 1.415513287 0.6882986706E-03 1.390013872 0.6909712037E-03 1.328049771 0.6936437367E-03 1.234834057 0.6963162698E-03 1.139339604 0.6989888028E-03 1.060964831 0.7016613359E-03 1.040424565 0.7043338689E-03 1.009748699 0.7070064020E-03 0.9836978182 0.7096789350E-03 0.9435322817 0.7123514681E-03 0.9188764339 0.7150240011E-03 0.9166038680 0.7176965342E-03 0.9082401543 0.7203690672E-03 0.8838319721 0.7230416003E-03 0.8663986326 0.7257141333E-03 0.8339612588 0.7283866664E-03 0.8192783905 0.7310591994E-03 0.8011895524 0.7337317325E-03 0.7906379347 0.7364042655E-03 0.7849605620 0.7390767985E-03 0.7846813588 0.7417493316E-03 0.7801081205 0.7444218646E-03 0.7701009651 0.7470943977E-03 0.7610295139 0.7497669307E-03 0.7605096297 0.7524394638E-03 0.7785767961 0.7551119968E-03 0.7865848636 0.7577845299E-03 0.7833013308 0.7604570629E-03 0.7791675893 0.7631295960E-03 0.7704813660 0.7658021290E-03 0.7676567724 0.7684746621E-03 0.7511666722 0.7711471951E-03 0.7499188564 0.7738197282E-03 0.7352130537 0.7764922612E-03 0.7311604909 0.7791647943E-03 0.7184396044 0.7818373273E-03 0.7133594686 0.7845098604E-03 0.7122242387 0.7871823934E-03 0.7214013334 0.7898549265E-03 0.7111458630 0.7925274595E-03 0.7000665206 0.7951999926E-03 0.7002378800 0.7978725256E-03 0.7230918813 0.8005450586E-03 0.7200840918 0.8032175917E-03 0.7102563562 0.8058901247E-03 0.7273084882 0.8085626578E-03 0.7338158860 0.8112351908E-03 0.7411002780 0.8139077239E-03 0.7233228556 0.8165802569E-03 0.7332277474 0.8192527900E-03 0.7098855825 0.8219253230E-03 0.6955255638 0.8245978561E-03 0.6934405186 0.8272703891E-03 0.6972495319 0.8299429222E-03 0.6897723557 0.8326154552E-03 0.6444056507 0.8352879883E-03 0.6171330889 0.8379605213E-03 0.5906650028 0.8406330544E-03 0.5897145780 0.8433055874E-03 0.5814302819 0.8459781205E-03 0.5689990725 0.8486506535E-03 0.5423747917 0.8513231866E-03 0.5205646947 0.8539957196E-03 0.5183550017 0.8566682527E-03 0.5271656642 0.8593407857E-03 0.5155779911 0.8620133187E-03 0.4988970558 0.8646858518E-03 0.4730481307 0.8673583848E-03 0.4843320374 0.8700309179E-03 0.4866108742 0.8727034509E-03 0.4735469427 0.8753759840E-03 0.4582666772 0.8780485170E-03 0.4353765691 0.8807210501E-03 0.4536383972 0.8833935831E-03 0.4413576219 0.8860661162E-03 0.4446697070 0.8887386492E-03 0.4196600318 0.8914111823E-03 0.4248223729 0.8940837153E-03 0.4187493058 0.8967562484E-03 0.4239028291 0.8994287814E-03 0.4189333357 0.9021013145E-03 0.3989226643 0.9047738475E-03 0.4005302367 0.9074463806E-03 0.4005588488 0.9101189136E-03 0.4078645452 0.9127914467E-03 0.3860197496 0.9154639797E-03 0.3829378326 0.9181365128E-03 0.3887746111 0.9208090458E-03 0.3943779298 0.9234815789E-03 0.3901873651 0.9261541119E-03 0.3952848882 0.9288266449E-03 0.4001578096 0.9314991780E-03 0.3969627570 0.9341717110E-03 0.4089410770 0.9368442441E-03 0.4174107664 0.9395167771E-03 0.4285201815 0.9421893102E-03 0.4197015964 0.9448618432E-03 0.4471285176 0.9475343763E-03 0.4584103255 0.9502069093E-03 0.4766426141 0.9528794424E-03 0.4767209631 0.9555519754E-03 0.5149901077 0.9582245085E-03 0.5216695729 0.9608970415E-03 0.5591493003 0.9635695746E-03 0.5721179976 0.9662421076E-03 0.6236149057 0.9689146407E-03 0.6394987348 0.9715871737E-03 0.6584890717 0.9742597068E-03 0.6835154458 0.9769322398E-03 0.7126965147 0.9796047729E-03 0.7487999089 0.9822773059E-03 0.7818140382 0.9849498390E-03 0.8201599442 0.9876223720E-03 0.8790247155 0.9902949050E-03 0.9391473392 0.9929674381E-03 1.043182426 0.9956399711E-03 1.109772721 0.9983125042E-03 1.169400266 0.1000985037E-02 1.192040552 0.1003657570E-02 1.237823939 0.1006330103E-02 1.299862616 0.1009002636E-02 1.337869241 0.1011675169E-02 1.358360615 0.1014347702E-02 1.331886403 0.1017020236E-02 1.319069590 0.1019692769E-02 1.288845428 0.1022365302E-02 1.282806695 0.1025037835E-02 1.254628576 0.1027710368E-02 1.249106660 0.1030382901E-02 1.238733919 0.1033055434E-02 1.252617764 0.1035727967E-02 1.242812453 0.1038400500E-02 1.164393981 0.1041073033E-02 1.028982367 0.1043745566E-02 0.8743320304 0.1046418099E-02 0.7690782054 0.1049090632E-02 0.6923536142 0.1051763165E-02 0.6287611563 0.1054435698E-02 0.5701736492 0.1057108231E-02 0.5063996662 0.1059780764E-02 0.4356629499 0.1062453297E-02 0.3188856820 0.1065125830E-02 0.2070466528 0.1067798363E-02 0.1202692498 0.1070470896E-02 0.9458962199E-01 0.1073143430E-02 0.8381588436E-01 0.1075815963E-02 0.7926804998E-01 0.1078488496E-02 0.7155949018E-01 0.1081161029E-02 0.6567912531E-01 0.1083833562E-02 0.5892432356E-01 0.1086506095E-02 0.5383654684E-01 0.1089178628E-02 0.4839037985E-01 0.1091851161E-02 0.4161728390E-01 0.1094523694E-02 0.3555180480E-01 0.1097196227E-02 0.2900290594E-01 0.1099868760E-02 0.2220027873E-01 0.1102541293E-02 0.1247138479E-01 0.1105213826E-02 0.4897551404E-02 0.1107886359E-02 0.2792628519E-03 0.1110558892E-02 0.000000000 0.1113231425E-02 0.000000000 0.1115903958E-02 0.000000000 0.1118576491E-02 0.000000000 0.1121249024E-02 0.000000000 0.1123921557E-02 0.000000000 0.1126594090E-02 0.000000000 0.1129266624E-02 0.000000000 0.1131939157E-02 0.000000000 0.1134611690E-02 0.000000000 0.1137284223E-02 0.000000000 0.1139956756E-02 0.000000000 0.1142629289E-02 0.000000000 0.1145301822E-02 0.000000000 0.1147974355E-02 0.000000000 0.1150646888E-02 0.000000000 0.1153319421E-02 0.000000000 0.1155991954E-02 0.000000000 0.1158664487E-02 0.000000000 0.1161337020E-02 0.000000000 0.1164009553E-02 0.000000000 0.1166682086E-02 0.000000000 0.1169354619E-02 0.000000000 0.1172027152E-02 0.000000000 0.1174699685E-02 0.000000000 0.1177372218E-02 0.000000000 0.1180044751E-02 0.000000000 0.1182717284E-02 0.000000000 0.1185389818E-02 0.000000000 0.1188062351E-02 0.000000000 0.1190734884E-02 0.000000000 0.1193407417E-02 0.000000000 0.1196079950E-02 0.000000000 0.1198752483E-02 0.000000000 0.1201425016E-02 0.000000000 0.1204097549E-02 0.000000000 0.1206770082E-02 0.000000000 0.1209442615E-02 0.000000000 0.1212115148E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/ELIASHBERG_GAP_T.OUT0000644000000000000000000000013214061636520025274 xustar0030 mtime=1623670096.327101181 30 atime=1623670096.327101181 30 ctime=1623670096.327101181 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/ELIASHBERG_GAP_T.OUT0000644002504400250440000000423014061636520027330 0ustar00dewhurstdewhurst00000000000000 4.641895546 0.1120506996E-03 2.101141314 6.592837152 0.1109092731E-03 2.100438923 8.543778758 0.1084305350E-03 2.100870512 10.49472036 0.1034312918E-03 2.103474471 12.44566197 0.9456550699E-04 2.109291107 14.39660358 0.8035593294E-04 2.118670638 16.34754518 0.5548320594E-04 2.132418902 18.29848679 0.6524183979E-07 2.145515563 20.24942840 0.1586296463E-09 2.145522420 22.20037000 0.8747859637E-10 2.145413019 24.15131161 0.8177930128E-10 2.145365447 26.10225321 0.4455281642E-10 2.145429476 28.05319482 0.4018356898E-10 2.145433057 30.00413643 0.3572715852E-10 2.145376528 31.95507803 0.3133564660E-10 2.145503799 33.90601964 0.2711170766E-10 2.145343631 35.85696125 0.2315706998E-10 2.145399025 37.80790285 0.1954084995E-10 2.145423321 39.75884446 0.1630383490E-10 2.145417662 41.70978607 0.1346079432E-10 2.145381783 43.66072767 0.1100581597E-10 2.145313985 45.61166928 0.8917681450E-11 2.145564840 47.56261088 0.7165505735E-11 2.145459957 49.51355249 0.5713685173E-11 2.145317782 51.46449410 0.4519035286E-11 2.145540374 53.41543570 0.3548509285E-11 2.145358556 55.36637731 0.2767949501E-11 2.145562933 57.31731892 0.2145787635E-11 2.145337200 59.26826052 0.1654042659E-11 2.145529720 61.21920213 0.1268288974E-11 2.145251669 63.17014373 0.9678114946E-12 2.145437652 65.12108534 0.7351873113E-12 2.145607235 67.07202695 0.5561825589E-12 2.145277821 69.02296855 0.4191819398E-12 2.145446808 70.97391016 0.3148133141E-12 2.145602106 72.92485177 0.2356776139E-12 2.145206374 74.87579337 0.1759225704E-12 2.145365976 76.82673498 0.1309578187E-12 2.145513623 78.77767658 0.9724010491E-13 2.145650478 80.72861819 0.7204139109E-13 2.145183350 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/MCMILLAN.OUT0000644000000000000000000000012714061636520024115 xustar0029 mtime=1623670096.32810118 29 atime=1623670096.32810118 29 ctime=1623670096.32810118 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/MCMILLAN.OUT0000644002504400250440000000053214061636520026146 0ustar00dewhurstdewhurst00000000000000 Electron-phonon coupling constant, lambda : 1.150620532 Logarithmic average frequency : 0.7088838913E-03 RMS average frequency : 0.7567470325E-03 Coulomb pseudopotential, mu* : 0.1500000000 McMillan-Allen-Dynes superconducting critical temperature [Eq. 34, Phys. Rev. B 12, 905 (1975)] (kelvin) : 16.14572364 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000013214061636520023704 xustar0030 mtime=1623670096.330101178 30 atime=1623670096.330101178 30 ctime=1623670096.330101178 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PHDISP.OUT0000644002504400250440000012660214061636520025750 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.1104284254E-02 0.1640615945E-01 0.1103175681E-02 0.3281231890E-01 0.1099861896E-02 0.4921847835E-01 0.1094378639E-02 0.6562463780E-01 0.1086785263E-02 0.8203079725E-01 0.1077164413E-02 0.9843695670E-01 0.1065621560E-02 0.1148431162 0.1052284392E-02 0.1312492756 0.1037302030E-02 0.1476554351 0.1020844066E-02 0.1640615945 0.1003099378E-02 0.1804677540 0.9842746811E-03 0.1968739134 0.9645927891E-03 0.2132800729 0.9442904960E-03 0.2296862323 0.9236160341E-03 0.2460923918 0.9028260246E-03 0.2624985512 0.8821818547E-03 0.2789047107 0.8619454265E-03 0.2953108701 0.8423742573E-03 0.3117170296 0.8237159658E-03 0.3281231890 0.8062022592E-03 0.3445293485 0.7900426390E-03 0.3609355079 0.7754181559E-03 0.3773416674 0.7624756514E-03 0.3937478268 0.7513229917E-03 0.4101539863 0.7420258100E-03 0.4265601457 0.7346061933E-03 0.4429663052 0.7290435880E-03 0.4593724646 0.7252779673E-03 0.4757786241 0.7232150495E-03 0.4921847835 0.7227331267E-03 0.5085909430 0.7236909085E-03 0.5249971024 0.7259357238E-03 0.5414032619 0.7293114606E-03 0.5578094213 0.7336657305E-03 0.5742155808 0.7388558927E-03 0.5906217402 0.7447537252E-03 0.6070278997 0.7512486679E-03 0.6234340591 0.7582496650E-03 0.6398402186 0.7656857081E-03 0.6562463780 0.7735052235E-03 0.6726525375 0.7816744701E-03 0.6890586969 0.7901751238E-03 0.7054648564 0.7990012271E-03 0.7218710158 0.8081556831E-03 0.7382771753 0.8176464729E-03 0.7546833347 0.8274827744E-03 0.7710894942 0.8376711537E-03 0.7874956536 0.8482119959E-03 0.8039018131 0.8590963228E-03 0.8203079725 0.8703031260E-03 0.8367141320 0.8817973127E-03 0.8531202914 0.8935283273E-03 0.8695264509 0.9054294760E-03 0.8859326103 0.9174179414E-03 0.9023387698 0.9109937499E-03 0.9187449292 0.9037083620E-03 0.9351510887 0.8955474422E-03 0.9515572481 0.8865042980E-03 0.9679634076 0.8765797261E-03 0.9843695670 0.8657817803E-03 1.000775726 0.8541254677E-03 1.017181886 0.8416323767E-03 1.033588045 0.8283302449E-03 1.049994205 0.8142524693E-03 1.066400364 0.7994375669E-03 1.082806524 0.7839285892E-03 1.099212683 0.7677724989E-03 1.115618843 0.7510195117E-03 1.132025002 0.7337224133E-03 1.148431162 0.7159358560E-03 1.164837321 0.6977156438E-03 1.181243480 0.6791180134E-03 1.197649640 0.6601989202E-03 1.214055799 0.6410133383E-03 1.230461959 0.6216145846E-03 1.246868118 0.6020536764E-03 1.263274278 0.5823787347E-03 1.279680437 0.5626344417E-03 1.296086597 0.5428615651E-03 1.312492756 0.5230965582E-03 1.328898916 0.5033712446E-03 1.345305075 0.4837125973E-03 1.361711234 0.4641426156E-03 1.378117394 0.4446783068E-03 1.394523553 0.4253317718E-03 1.410929713 0.4061103935E-03 1.427335872 0.3870171247E-03 1.443742032 0.3680508647E-03 1.460148191 0.3492069166E-03 1.476554351 0.3304775087E-03 1.492960510 0.3118523647E-03 1.509366669 0.2933193051E-03 1.525772829 0.2748648592E-03 1.542178988 0.2564748699E-03 1.558585148 0.2381350713E-03 1.574991307 0.2198316234E-03 1.591397467 0.2015515865E-03 1.607803626 0.1832833250E-03 1.624209786 0.1650168292E-03 1.640615945 0.1467439500E-03 1.657022105 0.1284585419E-03 1.673428264 0.1101565156E-03 1.689834423 0.9183580177E-04 1.706240583 0.7349623257E-04 1.722646742 0.5513934762E-04 1.739052902 0.3676813500E-04 1.755459061 0.1838671793E-04 1.771865221 -0.4874794363E-10 1.788365009 0.1967239359E-04 1.804864797 0.3935006319E-04 1.821364585 0.5903744919E-04 1.837864373 0.7873740873E-04 1.854364161 0.9845063673E-04 1.870863949 0.1181753233E-03 1.887363737 0.1379070963E-03 1.903863525 0.1576392769E-03 1.920363314 0.1773634495E-03 1.936863102 0.1970703267E-03 1.953362890 0.2167508643E-03 1.969862678 0.2363975607E-03 1.986362466 0.2560058606E-03 2.002862254 0.2755755640E-03 2.019362042 0.2951121391E-03 2.035861830 0.3146278277E-03 2.052361618 0.3341424382E-03 2.068861406 0.3536837276E-03 2.085361195 0.3732872922E-03 2.101860983 0.3929959073E-03 2.118360771 0.4128582927E-03 2.134860559 0.4329273133E-03 2.151360347 0.4532576702E-03 2.167860135 0.4739031786E-03 2.184359923 0.4949137691E-03 2.200859711 0.5163323792E-03 2.217359499 0.5381919201E-03 2.233859287 0.5605125070E-03 2.250359076 0.5832991272E-03 2.266858864 0.6065398887E-03 2.283358652 0.6302049554E-03 2.299858440 0.6542462225E-03 2.316358228 0.6785977406E-03 2.332858016 0.7031768501E-03 2.349357804 0.7278859529E-03 2.365857592 0.7526148186E-03 2.382357380 0.7772433083E-03 2.398857168 0.8016443895E-03 2.415356957 0.8256873179E-03 2.431856745 0.8492408658E-03 2.448356533 0.8721764872E-03 2.464856321 0.8943713213E-03 2.481356109 0.9157109461E-03 2.497855897 0.9360918083E-03 2.514355685 0.9554232663E-03 2.530855473 0.9736291928E-03 2.547355261 0.9840986433E-03 2.563855049 0.9909031509E-03 2.580354838 0.9989373266E-03 2.596854626 0.1008074654E-02 2.613354414 0.1018120363E-02 2.629854202 0.1028822404E-02 2.646353990 0.1039885110E-02 2.662853778 0.1050984391E-02 2.679353566 0.1061783345E-02 2.695853354 0.1071947353E-02 2.712353142 0.1081157990E-02 2.728852930 0.1089125284E-02 2.745352719 0.1095598109E-02 2.761852507 0.1100372600E-02 2.778352295 0.1103298609E-02 2.794852083 0.1104284254E-02 2.810926771 0.1103244387E-02 2.827001458 0.1100133044E-02 2.843076146 0.1094974995E-02 2.859150834 0.1087811479E-02 2.875225521 0.1078700140E-02 2.891300209 0.1067714940E-02 2.907374897 0.1054946031E-02 2.923449585 0.1040499593E-02 2.939524272 0.1024497626E-02 2.955598960 0.1007077682E-02 2.971673648 0.9883925183E-03 2.987748335 0.9686096447E-03 3.003823023 0.9479107327E-03 3.019897711 0.9264908344E-03 3.035972399 0.9045573517E-03 3.052047086 0.8823286780E-03 3.068121774 0.8600324180E-03 3.084196462 0.8379030816E-03 3.100271149 0.8161791381E-03 3.116345837 0.7950993268E-03 3.132420525 0.7748981450E-03 3.148495213 0.7558004938E-03 3.164569900 0.7380155478E-03 3.180644588 0.7217300437E-03 3.196719276 0.7071013294E-03 3.212793963 0.6942506646E-03 3.228868651 0.6832573846E-03 3.244943339 0.6741545737E-03 3.261018027 0.6669268336E-03 3.277092714 0.6615105423E-03 3.293167402 0.6577967249E-03 3.309242090 0.6556363361E-03 3.325316777 0.6548474753E-03 3.341391465 0.6552238639E-03 3.357466153 0.6565438508E-03 3.373540841 0.6585792740E-03 3.389615528 0.6611036472E-03 3.405690216 0.6638993300E-03 3.421764904 0.6667635181E-03 3.437839591 0.6695130414E-03 3.453914279 0.6719880610E-03 3.469988967 0.6740548137E-03 3.486063655 0.6756075730E-03 3.502138342 0.6765699872E-03 3.518213030 0.6768959334E-03 3.534197200 0.6769430479E-03 3.550181370 0.6770965372E-03 3.566165539 0.6773922051E-03 3.582149709 0.6778876325E-03 3.598133879 0.6786591075E-03 3.614118048 0.6797974752E-03 3.630102218 0.6814030699E-03 3.646086388 0.6835799628E-03 3.662070558 0.6864298223E-03 3.678054727 0.6900457485E-03 3.694038897 0.6945064779E-03 3.710023067 0.6998713613E-03 3.726007236 0.7061764775E-03 3.741991406 0.7134321582E-03 3.757975576 0.7216220797E-03 3.773959746 0.7307039330E-03 3.789943915 0.7406115454E-03 3.805928085 0.7512582075E-03 3.821912255 0.7625408842E-03 3.837896424 0.7743449503E-03 3.853880594 0.7865491015E-03 3.869864764 0.7990301294E-03 3.885848934 0.8116673096E-03 3.901833103 0.8243462187E-03 3.917817273 0.8369618613E-03 3.933801443 0.8494210475E-03 3.949785613 0.8616440068E-03 3.965769782 0.8735652623E-03 3.981753952 0.8851338189E-03 3.997738122 0.8963127334E-03 4.013722291 0.9070781567E-03 4.029706461 0.9174179414E-03 4.045690631 0.9070781567E-03 4.061674801 0.8963127334E-03 4.077658970 0.8851338189E-03 4.093643140 0.8735652623E-03 4.109627310 0.8616440068E-03 4.125611479 0.8494210475E-03 4.141595649 0.8369618613E-03 4.157579819 0.8243462187E-03 4.173563989 0.8116673096E-03 4.189548158 0.7990301294E-03 4.205532328 0.7865491015E-03 4.221516498 0.7743449503E-03 4.237500668 0.7625408842E-03 4.253484837 0.7512582075E-03 4.269469007 0.7406115454E-03 4.285453177 0.7307039330E-03 4.301437346 0.7216220797E-03 4.317421516 0.7134321582E-03 4.333405686 0.7061764775E-03 4.349389856 0.6998713613E-03 4.365374025 0.6945064779E-03 4.381358195 0.6900457485E-03 4.397342365 0.6864298223E-03 4.413326534 0.6835799628E-03 4.429310704 0.6814030699E-03 4.445294874 0.6797974752E-03 4.461279044 0.6786591075E-03 4.477263213 0.6778876325E-03 4.493247383 0.6773922051E-03 4.509231553 0.6770965372E-03 4.525215722 0.6769430479E-03 4.541199892 0.6768959334E-03 4.557639914 0.6764106948E-03 4.574079935 0.6749578982E-03 4.590519957 0.6725462213E-03 4.606959978 0.6691898632E-03 4.623400000 0.6649081570E-03 4.639840021 0.6597250402E-03 4.656280043 0.6536683990E-03 4.672720064 0.6467693038E-03 4.689160086 0.6390611570E-03 4.705600107 0.6305787798E-03 4.722040129 0.6213574643E-03 4.738480151 0.6114320238E-03 4.754920172 0.6008358704E-03 4.771360194 0.5896001551E-03 4.787800215 0.5757737738E-03 4.804240237 0.5508936274E-03 4.820680258 0.5267076417E-03 4.837120280 0.5034609744E-03 4.853560301 0.4813514494E-03 4.870000323 0.4605190208E-03 4.886440344 0.4410370406E-03 4.902880366 0.4229066368E-03 4.919320387 0.4060554062E-03 4.935760409 0.3903411959E-03 4.952200430 0.3755610468E-03 4.968640452 0.3614645496E-03 4.985080473 0.3477701748E-03 5.001520495 0.3341827625E-03 5.017960517 0.3204103906E-03 5.034400538 0.3061792059E-03 5.050840560 0.2912453438E-03 5.067280581 0.2754036097E-03 5.083720603 0.2584930259E-03 5.100160624 0.2403996188E-03 5.116600646 0.2210569408E-03 5.133040667 0.2004448310E-03 5.149480689 0.1765112085E-03 5.165920710 0.1521156550E-03 5.182360732 0.1273516060E-03 5.198800753 0.1022721489E-03 5.215240775 0.7693478088E-04 5.231680796 0.5140065952E-04 5.248120818 0.2573376568E-04 5.264560839 -0.4874794363E-10 5.281046338 0.1617313168E-04 5.297531837 0.3237096913E-04 5.314017336 0.4861780442E-04 5.330502835 0.6493711182E-04 5.346988334 0.8135116247E-04 5.363473833 0.9788066643E-04 5.379959331 0.1145444492E-03 5.396444830 0.1313591688E-03 5.412930329 0.1483390785E-03 5.429415828 0.1654958371E-03 5.445901327 0.1828383695E-03 5.462386826 0.2003727762E-03 5.478872325 0.2181022918E-03 5.495357823 0.2360272894E-03 5.511843322 0.2541453269E-03 5.528328821 0.2724512328E-03 5.544814320 0.2909372255E-03 5.561299819 0.3095930623E-03 5.577785318 0.3284062121E-03 5.594270817 0.3473620486E-03 5.610756315 0.3664440578E-03 5.627241814 0.3856340551E-03 5.643727313 0.4049124099E-03 5.660212812 0.4242582712E-03 5.676698311 0.4436497921E-03 5.693183810 0.4630643500E-03 5.709669309 0.4824787596E-03 5.726154807 0.5018694752E-03 5.742640306 0.5212127828E-03 5.759125805 0.5404849769E-03 5.775611304 0.5596625238E-03 5.792096803 0.5787222076E-03 5.808582302 0.5976412606E-03 5.825067801 0.6163974754E-03 5.841553299 0.6349692999E-03 5.858038798 0.6510426388E-03 5.874524297 0.6596281489E-03 5.891009796 0.6673382833E-03 5.907495295 0.6741978783E-03 5.923980794 0.6802371930E-03 5.940466292 0.6854913285E-03 5.956951791 0.6899995094E-03 5.973437290 0.6938042211E-03 5.989922789 0.6969501996E-03 6.006408288 0.6994832781E-03 6.022893787 0.7014491053E-03 6.039379286 0.7028917656E-03 6.055864784 0.7038523616E-03 6.072350283 0.7043676544E-03 6.088835782 0.7044689194E-03 6.105321281 0.7041812480E-03 6.121806780 0.7035236165E-03 6.138292279 0.7025101135E-03 6.154777778 0.7011527143E-03 6.171263276 0.6994658059E-03 6.187748775 0.6974722019E-03 6.204234274 0.6952096290E-03 6.220719773 0.6927358502E-03 6.237205272 0.6901302478E-03 6.253690771 0.6874903239E-03 6.270176270 0.6849232012E-03 6.286661768 0.6825340300E-03 6.303147267 0.6804142079E-03 6.319632766 0.6786320470E-03 6.336118265 0.6772273724E-03 6.352603764 0.6762102557E-03 6.369089263 0.6755632070E-03 6.385574762 0.6752457734E-03 6.402060260 0.6752004909E-03 6.418545759 0.6753593175E-03 6.435031258 0.6756499143E-03 6.451516757 0.6760013596E-03 6.468002256 0.6763490570E-03 6.484487755 0.6766387308E-03 6.500973254 0.6768294830E-03 6.517458752 0.6768959334E-03 0.000000000 0.1104284254E-02 0.1640615945E-01 0.1103987669E-02 0.3281231890E-01 0.1103099680E-02 0.4921847835E-01 0.1101625596E-02 0.6562463780E-01 0.1099574289E-02 0.8203079725E-01 0.1096958240E-02 0.9843695670E-01 0.1093793576E-02 0.1148431162 0.1090100133E-02 0.1312492756 0.1085901506E-02 0.1476554351 0.1081225093E-02 0.1640615945 0.1076102128E-02 0.1804677540 0.1070567680E-02 0.1968739134 0.1064660627E-02 0.2132800729 0.1058423575E-02 0.2296862323 0.1051902726E-02 0.2460923918 0.1045147669E-02 0.2624985512 0.1038211108E-02 0.2789047107 0.1031148484E-02 0.2953108701 0.1024017515E-02 0.3117170296 0.1016877621E-02 0.3281231890 0.1009789260E-02 0.3445293485 0.1002813142E-02 0.3609355079 0.9960093573E-03 0.3773416674 0.9894364117E-03 0.3937478268 0.9831501862E-03 0.4101539863 0.9772028507E-03 0.4265601457 0.9716417532E-03 0.4429663052 0.9665083183E-03 0.4593724646 0.9618369923E-03 0.4757786241 0.9576542744E-03 0.4921847835 0.9539778709E-03 0.5085909430 0.9508160119E-03 0.5249971024 0.9481669599E-03 0.5414032619 0.9460187378E-03 0.5578094213 0.9443490904E-03 0.5742155808 0.9431256866E-03 0.5906217402 0.9423065568E-03 0.6070278997 0.9418407521E-03 0.6234340591 0.9416691993E-03 0.6398402186 0.9417257230E-03 0.6562463780 0.9419381982E-03 0.6726525375 0.9422297943E-03 0.6890586969 0.9425202740E-03 0.7054648564 0.9427273088E-03 0.7218710158 0.9427677790E-03 0.7382771753 0.9425590293E-03 0.7546833347 0.9420200554E-03 0.7710894942 0.9410726049E-03 0.7874956536 0.9396421769E-03 0.8039018131 0.9376589127E-03 0.8203079725 0.9350583719E-03 0.8367141320 0.9317821911E-03 0.8531202914 0.9277786270E-03 0.8695264509 0.9230029858E-03 0.8859326103 0.9174179414E-03 0.9023387698 0.9109937499E-03 0.9187449292 0.9037083620E-03 0.9351510887 0.8955474422E-03 0.9515572481 0.8865042980E-03 0.9679634076 0.8765797261E-03 0.9843695670 0.8657817803E-03 1.000775726 0.8541254677E-03 1.017181886 0.8416323767E-03 1.033588045 0.8283302449E-03 1.049994205 0.8142524693E-03 1.066400364 0.7994375669E-03 1.082806524 0.7839285892E-03 1.099212683 0.7677724989E-03 1.115618843 0.7510195117E-03 1.132025002 0.7337224133E-03 1.148431162 0.7159358560E-03 1.164837321 0.6977156438E-03 1.181243480 0.6791180134E-03 1.197649640 0.6601989202E-03 1.214055799 0.6410133383E-03 1.230461959 0.6216145846E-03 1.246868118 0.6020536764E-03 1.263274278 0.5823787347E-03 1.279680437 0.5626344417E-03 1.296086597 0.5428615651E-03 1.312492756 0.5230965582E-03 1.328898916 0.5033712446E-03 1.345305075 0.4837125973E-03 1.361711234 0.4641426156E-03 1.378117394 0.4446783068E-03 1.394523553 0.4253317718E-03 1.410929713 0.4061103935E-03 1.427335872 0.3870171247E-03 1.443742032 0.3680508647E-03 1.460148191 0.3492069166E-03 1.476554351 0.3304775087E-03 1.492960510 0.3118523647E-03 1.509366669 0.2933193051E-03 1.525772829 0.2748648592E-03 1.542178988 0.2564748699E-03 1.558585148 0.2381350713E-03 1.574991307 0.2198316234E-03 1.591397467 0.2015515865E-03 1.607803626 0.1832833250E-03 1.624209786 0.1650168292E-03 1.640615945 0.1467439500E-03 1.657022105 0.1284585419E-03 1.673428264 0.1101565156E-03 1.689834423 0.9183580177E-04 1.706240583 0.7349623257E-04 1.722646742 0.5513934762E-04 1.739052902 0.3676813500E-04 1.755459061 0.1838671793E-04 1.771865221 -0.4874794363E-10 1.788365009 0.1967239359E-04 1.804864797 0.3935006319E-04 1.821364585 0.5903744919E-04 1.837864373 0.7873740873E-04 1.854364161 0.9845063673E-04 1.870863949 0.1181753233E-03 1.887363737 0.1379070963E-03 1.903863525 0.1576392769E-03 1.920363314 0.1773634495E-03 1.936863102 0.1970703267E-03 1.953362890 0.2167508643E-03 1.969862678 0.2363975607E-03 1.986362466 0.2560058606E-03 2.002862254 0.2755755640E-03 2.019362042 0.2951121391E-03 2.035861830 0.3146278277E-03 2.052361618 0.3341424382E-03 2.068861406 0.3536837276E-03 2.085361195 0.3732872922E-03 2.101860983 0.3929959073E-03 2.118360771 0.4128582927E-03 2.134860559 0.4329273133E-03 2.151360347 0.4532576702E-03 2.167860135 0.4739031786E-03 2.184359923 0.4949137691E-03 2.200859711 0.5163323792E-03 2.217359499 0.5381919201E-03 2.233859287 0.5605125070E-03 2.250359076 0.5832991272E-03 2.266858864 0.6065398887E-03 2.283358652 0.6302049554E-03 2.299858440 0.6542462225E-03 2.316358228 0.6785977406E-03 2.332858016 0.7031768501E-03 2.349357804 0.7278859529E-03 2.365857592 0.7526148186E-03 2.382357380 0.7772433083E-03 2.398857168 0.8016443895E-03 2.415356957 0.8256873179E-03 2.431856745 0.8492408658E-03 2.448356533 0.8721764872E-03 2.464856321 0.8943713213E-03 2.481356109 0.9157109461E-03 2.497855897 0.9360918083E-03 2.514355685 0.9554232663E-03 2.530855473 0.9736291928E-03 2.547355261 0.9906490987E-03 2.563855049 0.1006438748E-02 2.580354838 0.1020970248E-02 2.596854626 0.1034231610E-02 2.613354414 0.1046225795E-02 2.629854202 0.1056969271E-02 2.646353990 0.1066490122E-02 2.662853778 0.1074825781E-02 2.679353566 0.1082020451E-02 2.695853354 0.1088122332E-02 2.712353142 0.1093180745E-02 2.728852930 0.1097243288E-02 2.745352719 0.1100353138E-02 2.761852507 0.1102546644E-02 2.778352295 0.1103851306E-02 2.794852083 0.1104284254E-02 2.810926771 0.1103888634E-02 2.827001458 0.1102704368E-02 2.843076146 0.1100739231E-02 2.859150834 0.1098006115E-02 2.875225521 0.1094522942E-02 2.891300209 0.1090312530E-02 2.907374897 0.1085402429E-02 2.923449585 0.1079824718E-02 2.939524272 0.1073615762E-02 2.955598960 0.1066815940E-02 2.971673648 0.1059469331E-02 2.987748335 0.1051623369E-02 3.003823023 0.1043328462E-02 3.019897711 0.1034637582E-02 3.035972399 0.1025605824E-02 3.052047086 0.1016289939E-02 3.068121774 0.1006747840E-02 3.084196462 0.9970380944E-03 3.100271149 0.9872193997E-03 3.116345837 0.9773500524E-03 3.132420525 0.9674874165E-03 3.148495213 0.9576874010E-03 3.164569900 0.9480039537E-03 3.180644588 0.9384885827E-03 3.196719276 0.9291899156E-03 3.212793963 0.9201533065E-03 3.228868651 0.9114205008E-03 3.244943339 0.9030293689E-03 3.261018027 0.8950137150E-03 3.277092714 0.8874031687E-03 3.293167402 0.8802231632E-03 3.309242090 0.8734950018E-03 3.325316777 0.8672360112E-03 3.341391465 0.8614597764E-03 3.357466153 0.8561764495E-03 3.373540841 0.8513931228E-03 3.389615528 0.8471142500E-03 3.405690216 0.8433421029E-03 3.421764904 0.8400772441E-03 3.437839591 0.8373189993E-03 3.453914279 0.8350659104E-03 3.469988967 0.8333161527E-03 3.486063655 0.8320678998E-03 3.502138342 0.8313196234E-03 3.518213030 0.8310703151E-03 3.534197200 0.8307506731E-03 3.550181370 0.8298052427E-03 3.566165539 0.8282743332E-03 3.582149709 0.8262245110E-03 3.598133879 0.8237475958E-03 3.614118048 0.8209591012E-03 3.630102218 0.8179959820E-03 3.646086388 0.8150135381E-03 3.662070558 0.8121813331E-03 3.678054727 0.8096780247E-03 3.694038897 0.8076850789E-03 3.710023067 0.8063794477E-03 3.726007236 0.8059254323E-03 3.741991406 0.8064661073E-03 3.757975576 0.8081148258E-03 3.773959746 0.8109474294E-03 3.789943915 0.8149958171E-03 3.805928085 0.8202434636E-03 3.821912255 0.8266233280E-03 3.837896424 0.8340183655E-03 3.853880594 0.8422646060E-03 3.869864764 0.8511565305E-03 3.885848934 0.8604542993E-03 3.901833103 0.8698922952E-03 3.917817273 0.8791884321E-03 3.933801443 0.8880537322E-03 3.949785613 0.8962017708E-03 3.965769782 0.9033576936E-03 3.981753952 0.9092666177E-03 3.997738122 0.9137013078E-03 4.013722291 0.9164690826E-03 4.029706461 0.9174179414E-03 4.045690631 0.9164690826E-03 4.061674801 0.9137013078E-03 4.077658970 0.9092666177E-03 4.093643140 0.9033576936E-03 4.109627310 0.8962017708E-03 4.125611479 0.8880537322E-03 4.141595649 0.8791884321E-03 4.157579819 0.8698922952E-03 4.173563989 0.8604542993E-03 4.189548158 0.8511565305E-03 4.205532328 0.8422646060E-03 4.221516498 0.8340183655E-03 4.237500668 0.8266233280E-03 4.253484837 0.8202434636E-03 4.269469007 0.8149958171E-03 4.285453177 0.8109474294E-03 4.301437346 0.8081148258E-03 4.317421516 0.8064661073E-03 4.333405686 0.8059254323E-03 4.349389856 0.8063794477E-03 4.365374025 0.8076850789E-03 4.381358195 0.8096780247E-03 4.397342365 0.8121813331E-03 4.413326534 0.8150135381E-03 4.429310704 0.8179959820E-03 4.445294874 0.8209591012E-03 4.461279044 0.8237475958E-03 4.477263213 0.8262245110E-03 4.493247383 0.8282743332E-03 4.509231553 0.8298052427E-03 4.525215722 0.8307506731E-03 4.541199892 0.8310703151E-03 4.557639914 0.8296073445E-03 4.574079935 0.8252376568E-03 4.590519957 0.8180187131E-03 4.606959978 0.8080455738E-03 4.623400000 0.7954498301E-03 4.639840021 0.7803980941E-03 4.656280043 0.7630900281E-03 4.672720064 0.7437558878E-03 4.689160086 0.7226535361E-03 4.705600107 0.7000648709E-03 4.722040129 0.6762915890E-03 4.738480151 0.6516501877E-03 4.754920172 0.6264660893E-03 4.771360194 0.6010667672E-03 4.787800215 0.5777530012E-03 4.804240237 0.5653188606E-03 4.820680258 0.5523180200E-03 4.837120280 0.5387662779E-03 4.853560301 0.5246748084E-03 4.870000323 0.5100502189E-03 4.886440344 0.4948948030E-03 4.902880366 0.4792069797E-03 4.919320387 0.4629819030E-03 4.935760409 0.4462122201E-03 4.952200430 0.4288889467E-03 4.968640452 0.4110024279E-03 4.985080473 0.3925433471E-03 5.001520495 0.3735037457E-03 5.017960517 0.3538780161E-03 5.034400538 0.3336638354E-03 5.050840560 0.3128630064E-03 5.067280581 0.2914821828E-03 5.083720603 0.2695334547E-03 5.100160624 0.2470347813E-03 5.116600646 0.2240102608E-03 5.133040667 0.2004902318E-03 5.149480689 0.1785868633E-03 5.165920710 0.1555468513E-03 5.182360732 0.1314246896E-03 5.198800753 0.1063517415E-03 5.215240775 0.8048591808E-04 5.231680796 0.5400655315E-04 5.248120818 0.2710914290E-04 5.264560839 -0.4874794363E-10 5.281046338 0.1710293184E-04 5.297531837 0.3430846660E-04 5.314017336 0.5171396775E-04 5.330502835 0.6940672583E-04 5.346988334 0.8745988214E-04 5.363473833 0.1059293631E-03 5.379959331 0.1248519586E-03 5.396444830 0.1442445584E-03 5.412930329 0.1641044553E-03 5.429415828 0.1844105506E-03 5.445901327 0.2051252502E-03 5.462386826 0.2261968245E-03 5.478872325 0.2475620130E-03 5.495357823 0.2691486776E-03 5.511843322 0.2908783486E-03 5.528328821 0.3126685477E-03 5.544814320 0.3344348182E-03 5.561299819 0.3560924320E-03 5.577785318 0.3775577763E-03 5.594270817 0.3987494496E-03 5.610756315 0.4195891075E-03 5.627241814 0.4400021095E-03 5.643727313 0.4599180153E-03 5.660212812 0.4792709742E-03 5.676698311 0.4980000424E-03 5.693183810 0.5160494567E-03 5.709669309 0.5333688808E-03 5.726154807 0.5499136353E-03 5.742640306 0.5656449148E-03 5.759125805 0.5805299908E-03 5.775611304 0.5945423958E-03 5.792096803 0.6076620804E-03 5.808582302 0.6198755343E-03 5.825067801 0.6311758607E-03 5.841553299 0.6415627926E-03 5.858038798 0.6533359146E-03 5.874524297 0.6714772924E-03 5.891009796 0.6893742426E-03 5.907495295 0.7070084375E-03 5.923980794 0.7243624247E-03 5.940466292 0.7414196254E-03 5.956951791 0.7581643196E-03 5.973437290 0.7745816203E-03 5.989922789 0.7906574377E-03 6.006408288 0.8063784351E-03 6.022893787 0.8217319786E-03 6.039379286 0.8367060819E-03 6.055864784 0.8512893477E-03 6.072350283 0.8654709086E-03 6.088835782 0.8792403672E-03 6.105321281 0.8925877386E-03 6.121806780 0.9031061025E-03 6.138292279 0.8914959268E-03 6.154777778 0.8803915169E-03 6.171263276 0.8700073172E-03 6.187748775 0.8605297644E-03 6.204234274 0.8521059188E-03 6.220719773 0.8448337745E-03 6.237205272 0.8387566887E-03 6.253690771 0.8338637471E-03 6.270176270 0.8300962573E-03 6.286661768 0.8273586916E-03 6.303147267 0.8255313233E-03 6.319632766 0.8244819675E-03 6.336118265 0.8240752666E-03 6.352603764 0.8241791223E-03 6.369089263 0.8246686625E-03 6.385574762 0.8254284458E-03 6.402060260 0.8263535876E-03 6.418545759 0.8273503312E-03 6.435031258 0.8283363966E-03 6.451516757 0.8292412847E-03 6.468002256 0.8300066063E-03 6.484487755 0.8305864385E-03 6.500973254 0.8309476737E-03 6.517458752 0.8310703151E-03 0.000000000 0.1104284254E-02 0.1640615945E-01 0.1103987669E-02 0.3281231890E-01 0.1103099680E-02 0.4921847835E-01 0.1101625596E-02 0.6562463780E-01 0.1099574289E-02 0.8203079725E-01 0.1096958240E-02 0.9843695670E-01 0.1093793576E-02 0.1148431162 0.1090100133E-02 0.1312492756 0.1085901506E-02 0.1476554351 0.1081225093E-02 0.1640615945 0.1076102128E-02 0.1804677540 0.1070567680E-02 0.1968739134 0.1064660627E-02 0.2132800729 0.1058423575E-02 0.2296862323 0.1051902726E-02 0.2460923918 0.1045147669E-02 0.2624985512 0.1038211108E-02 0.2789047107 0.1031148484E-02 0.2953108701 0.1024017515E-02 0.3117170296 0.1016877621E-02 0.3281231890 0.1009789260E-02 0.3445293485 0.1002813142E-02 0.3609355079 0.9960093573E-03 0.3773416674 0.9894364117E-03 0.3937478268 0.9831501862E-03 0.4101539863 0.9772028507E-03 0.4265601457 0.9716417532E-03 0.4429663052 0.9665083183E-03 0.4593724646 0.9618369923E-03 0.4757786241 0.9576542744E-03 0.4921847835 0.9539778709E-03 0.5085909430 0.9508160119E-03 0.5249971024 0.9481669599E-03 0.5414032619 0.9460187378E-03 0.5578094213 0.9443490904E-03 0.5742155808 0.9431256866E-03 0.5906217402 0.9423065568E-03 0.6070278997 0.9418407521E-03 0.6234340591 0.9416691993E-03 0.6398402186 0.9417257230E-03 0.6562463780 0.9419381982E-03 0.6726525375 0.9422297943E-03 0.6890586969 0.9425202740E-03 0.7054648564 0.9427273088E-03 0.7218710158 0.9427677790E-03 0.7382771753 0.9425590293E-03 0.7546833347 0.9420200554E-03 0.7710894942 0.9410726049E-03 0.7874956536 0.9396421769E-03 0.8039018131 0.9376589127E-03 0.8203079725 0.9350583719E-03 0.8367141320 0.9317821911E-03 0.8531202914 0.9277786270E-03 0.8695264509 0.9230029858E-03 0.8859326103 0.9174179414E-03 0.9023387698 0.9293954435E-03 0.9187449292 0.9412494739E-03 0.9351510887 0.9528550121E-03 0.9515572481 0.9640766202E-03 0.9679634076 0.9747708104E-03 0.9843695670 0.9847885839E-03 1.000775726 0.9939780467E-03 1.017181886 0.1002187023E-02 1.033588045 0.1009265599E-02 1.049994205 0.1015068540E-02 1.066400364 0.1019457555E-02 1.082806524 0.1022303352E-02 1.099212683 0.1023487502E-02 1.115618843 0.1022904065E-02 1.132025002 0.1020461000E-02 1.148431162 0.1016081339E-02 1.164837321 0.1009704139E-02 1.181243480 0.1001285207E-02 1.197649640 0.9907976157E-03 1.214055799 0.9782319981E-03 1.230461959 0.9635966484E-03 1.246868118 0.9469174187E-03 1.263274278 0.9282374290E-03 1.279680437 0.9076165925E-03 1.296086597 0.8851309651E-03 1.312492756 0.8608719245E-03 1.328898916 0.8349451872E-03 1.345305075 0.8074696669E-03 1.361711234 0.7785761840E-03 1.378117394 0.7484060294E-03 1.394523553 0.7171093901E-03 1.410929713 0.6848436417E-03 1.427335872 0.6517715142E-03 1.443742032 0.6180591354E-03 1.460148191 0.5838739598E-03 1.476554351 0.5493825892E-03 1.492960510 0.5147484936E-03 1.509366669 0.4801296433E-03 1.525772829 0.4456760677E-03 1.542178988 0.4115273616E-03 1.558585148 0.3778101675E-03 1.574991307 0.3446356745E-03 1.591397467 0.3120971873E-03 1.607803626 0.2802678370E-03 1.624209786 0.2491985224E-03 1.640615945 0.2189161952E-03 1.657022105 0.1894226150E-03 1.673428264 0.1606937159E-03 1.689834423 0.1326797263E-03 1.706240583 0.1053061691E-03 1.722646742 0.7847583133E-04 1.739052902 0.5207173794E-04 1.755459061 0.2596108484E-04 1.771865221 -0.4874794363E-10 1.788365009 0.3529691598E-04 1.804864797 0.7055922313E-04 1.821364585 0.1057537496E-03 1.837864373 0.1408500488E-03 1.854364161 0.1758214004E-03 1.870863949 0.2106454036E-03 1.887363737 0.2453040693E-03 1.903863525 0.2797833559E-03 1.920363314 0.3140721291E-03 1.936863102 0.3481605776E-03 1.953362890 0.3820381561E-03 1.969862678 0.4156911729E-03 1.986362466 0.4491001742E-03 2.002862254 0.4822373022E-03 2.019362042 0.5150638192E-03 2.035861830 0.5475279851E-03 2.052361618 0.5795634654E-03 2.068861406 0.6110884148E-03 2.085361195 0.6420053479E-03 2.101860983 0.6722018636E-03 2.118360771 0.7015522468E-03 2.134860559 0.7299199260E-03 2.151360347 0.7571607295E-03 2.167860135 0.7831268474E-03 2.184359923 0.8076713826E-03 2.200859711 0.8306533561E-03 2.217359499 0.8519430151E-03 2.233859287 0.8714272858E-03 2.250359076 0.8890152054E-03 2.266858864 0.9046431593E-03 2.283358652 0.9182797437E-03 2.299858440 0.9299300620E-03 2.316358228 0.9396392507E-03 2.332858016 0.9474950127E-03 2.349357804 0.9536289180E-03 2.365857592 0.9582162172E-03 2.382357380 0.9614739026E-03 2.398857168 0.9636567669E-03 2.415356957 0.9650512472E-03 2.431856745 0.9659669345E-03 2.448356533 0.9667257689E-03 2.464856321 0.9676491584E-03 2.481356109 0.9690435187E-03 2.497855897 0.9711850321E-03 2.514355685 0.9743046886E-03 2.530855473 0.9785748559E-03 2.547355261 0.9906490987E-03 2.563855049 0.1006438748E-02 2.580354838 0.1020970248E-02 2.596854626 0.1034231610E-02 2.613354414 0.1046225795E-02 2.629854202 0.1056969271E-02 2.646353990 0.1066490122E-02 2.662853778 0.1074825781E-02 2.679353566 0.1082020451E-02 2.695853354 0.1088122332E-02 2.712353142 0.1093180745E-02 2.728852930 0.1097243288E-02 2.745352719 0.1100353138E-02 2.761852507 0.1102546644E-02 2.778352295 0.1103851306E-02 2.794852083 0.1104284254E-02 2.810926771 0.1104024081E-02 2.827001458 0.1103247574E-02 2.843076146 0.1101966719E-02 2.859150834 0.1100201316E-02 2.875225521 0.1097978705E-02 2.891300209 0.1095333388E-02 2.907374897 0.1092306547E-02 2.923449585 0.1088945441E-02 2.939524272 0.1085302710E-02 2.955598960 0.1081435561E-02 2.971673648 0.1077404865E-02 2.987748335 0.1073274153E-02 3.003823023 0.1069108534E-02 3.019897711 0.1064973543E-02 3.035972399 0.1060933936E-02 3.052047086 0.1057052463E-02 3.068121774 0.1053388633E-02 3.084196462 0.1049997512E-02 3.100271149 0.1046928576E-02 3.116345837 0.1044224664E-02 3.132420525 0.1041921058E-02 3.148495213 0.1040044724E-02 3.164569900 0.1038613735E-02 3.180644588 0.1037636918E-02 3.196719276 0.1037113713E-02 3.212793963 0.1037034269E-02 3.228868651 0.1037379772E-02 3.244943339 0.1038122983E-02 3.261018027 0.1039228981E-02 3.277092714 0.1040656073E-02 3.293167402 0.1042356846E-02 3.309242090 0.1044279323E-02 3.325316777 0.1046368195E-02 3.341391465 0.1048566082E-02 3.357466153 0.1050814804E-02 3.373540841 0.1053056615E-02 3.389615528 0.1055235404E-02 3.405690216 0.1057297801E-02 3.421764904 0.1059194211E-02 3.437839591 0.1060879739E-02 3.453914279 0.1062314998E-02 3.469988967 0.1063466811E-02 3.486063655 0.1064308776E-02 3.502138342 0.1064821715E-02 3.518213030 0.1064993995E-02 3.534197200 0.1064701131E-02 3.550181370 0.1063829314E-02 3.566165539 0.1062398585E-02 3.582149709 0.1060441396E-02 3.598133879 0.1058001221E-02 3.614118048 0.1055130676E-02 3.630102218 0.1051889221E-02 3.646086388 0.1048340525E-02 3.662070558 0.1044549600E-02 3.678054727 0.1040579835E-02 3.694038897 0.1036490047E-02 3.710023067 0.1032331702E-02 3.726007236 0.1028146450E-02 3.741991406 0.1023964078E-02 3.757975576 0.1019801032E-02 3.773959746 0.1015659548E-02 3.789943915 0.1011527480E-02 3.805928085 0.1007378804E-02 3.821912255 0.1003174796E-02 3.837896424 0.9988657956E-03 3.853880594 0.9943934768E-03 3.869864764 0.9896934898E-03 3.885848934 0.9846983549E-03 3.901833103 0.9793404635E-03 3.917817273 0.9735550569E-03 3.933801443 0.9672830620E-03 3.949785613 0.9604736819E-03 3.965769782 0.9530866576E-03 3.981753952 0.9450941355E-03 3.997738122 0.9364820991E-03 4.013722291 0.9272513379E-03 4.029706461 0.9174179414E-03 4.045690631 0.9272513379E-03 4.061674801 0.9364820991E-03 4.077658970 0.9450941355E-03 4.093643140 0.9530866576E-03 4.109627310 0.9604736819E-03 4.125611479 0.9672830620E-03 4.141595649 0.9735550569E-03 4.157579819 0.9793404635E-03 4.173563989 0.9846983549E-03 4.189548158 0.9896934898E-03 4.205532328 0.9943934768E-03 4.221516498 0.9988657956E-03 4.237500668 0.1003174796E-02 4.253484837 0.1007378804E-02 4.269469007 0.1011527480E-02 4.285453177 0.1015659548E-02 4.301437346 0.1019801032E-02 4.317421516 0.1023964078E-02 4.333405686 0.1028146450E-02 4.349389856 0.1032331702E-02 4.365374025 0.1036490047E-02 4.381358195 0.1040579835E-02 4.397342365 0.1044549600E-02 4.413326534 0.1048340525E-02 4.429310704 0.1051889221E-02 4.445294874 0.1055130676E-02 4.461279044 0.1058001221E-02 4.477263213 0.1060441396E-02 4.493247383 0.1062398585E-02 4.509231553 0.1063829314E-02 4.525215722 0.1064701131E-02 4.541199892 0.1064993995E-02 4.557639914 0.1064196355E-02 4.574079935 0.1061803878E-02 4.590519957 0.1057817950E-02 4.606959978 0.1052241084E-02 4.623400000 0.1045077214E-02 4.639840021 0.1036332087E-02 4.656280043 0.1026013746E-02 4.672720064 0.1014133075E-02 4.689160086 0.1000704394E-02 4.705600107 0.9857460654E-03 4.722040129 0.9692811102E-03 4.738480151 0.9513377828E-03 4.754920172 0.9319500990E-03 4.771360194 0.9111582851E-03 4.787800215 0.8890091270E-03 4.804240237 0.8655562019E-03 4.820680258 0.8408599735E-03 4.837120280 0.8149877383E-03 4.853560301 0.7880134120E-03 4.870000323 0.7600171500E-03 4.886440344 0.7310847973E-03 4.902880366 0.7013071698E-03 4.919320387 0.6707791712E-03 4.935760409 0.6395987531E-03 4.952200430 0.6078657327E-03 4.968640452 0.5756804824E-03 4.985080473 0.5431425152E-03 5.001520495 0.5103489894E-03 5.017960517 0.4773931636E-03 5.034400538 0.4443628384E-03 5.050840560 0.4113388221E-03 5.067280581 0.3783934671E-03 5.083720603 0.3455893233E-03 5.100160624 0.3129779603E-03 5.116600646 0.2805990108E-03 5.133040667 0.2484794860E-03 5.149480689 0.2166334110E-03 5.165920710 0.1850618217E-03 5.182360732 0.1537531524E-03 5.198800753 0.1226840318E-03 5.215240775 0.9182048259E-04 5.231680796 0.6111950669E-04 5.248120818 0.3053100919E-04 5.264560839 -0.4874794363E-10 5.281046338 0.3030146633E-04 5.297531837 0.6064703647E-04 5.314017336 0.9107971365E-04 5.330502835 0.1216402785E-03 5.346988334 0.1523661276E-03 5.363473833 0.1832900605E-03 5.379959331 0.2144390148E-03 5.396444830 0.2458327607E-03 5.412930329 0.2774825815E-03 5.429415828 0.3093899838E-03 5.445901327 0.3415454944E-03 5.462386826 0.3739276098E-03 5.478872325 0.4065019713E-03 5.495357823 0.4392208277E-03 5.511843322 0.4720228409E-03 5.528328821 0.5048332650E-03 5.544814320 0.5375645077E-03 5.561299819 0.5701170589E-03 5.577785318 0.6023807486E-03 5.594270817 0.6342362829E-03 5.610756315 0.6655569957E-03 5.627241814 0.6962107522E-03 5.643727313 0.7260619444E-03 5.660212812 0.7549735220E-03 5.676698311 0.7828090150E-03 5.693183810 0.8094345107E-03 5.709669309 0.8347205575E-03 5.726154807 0.8585439752E-03 5.742640306 0.8807895596E-03 5.759125805 0.9013516707E-03 5.775611304 0.9201357016E-03 5.792096803 0.9370594232E-03 5.808582302 0.9520542058E-03 5.825067801 0.9650661173E-03 5.841553299 0.9760568979E-03 5.858038798 0.9850048134E-03 5.874524297 0.9919053885E-03 5.891009796 0.9967720188E-03 5.907495295 0.9996364641E-03 5.923980794 0.1000549221E-02 5.940466292 0.9995797719E-03 5.956951791 0.9968167089E-03 5.973437290 0.9923677202E-03 5.989922789 0.9863594315E-03 6.006408288 0.9789370790E-03 6.022893787 0.9702639837E-03 6.039379286 0.9605207787E-03 6.055864784 0.9499043141E-03 6.072350283 0.9386261286E-03 6.088835782 0.9269103205E-03 6.105321281 0.9149905844E-03 6.121806780 0.9055033965E-03 6.138292279 0.9179780231E-03 6.154777778 0.9300025653E-03 6.171263276 0.9415681974E-03 6.187748775 0.9526662913E-03 6.204234274 0.9632883942E-03 6.220719773 0.9734262158E-03 6.237205272 0.9830716223E-03 6.253690771 0.9922166401E-03 6.270176270 0.1000853467E-02 6.286661768 0.1008974490E-02 6.303147267 0.1016572313E-02 6.319632766 0.1023639785E-02 6.336118265 0.1030170039E-02 6.352603764 0.1036156534E-02 6.369089263 0.1041593092E-02 6.385574762 0.1046473951E-02 6.402060260 0.1050793803E-02 6.418545759 0.1054547844E-02 6.435031258 0.1057731811E-02 6.451516757 0.1060342026E-02 6.468002256 0.1062375427E-02 6.484487755 0.1063829602E-02 6.500973254 0.1064702809E-02 6.517458752 0.1064993995E-02 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000013214061636520024123 xustar0030 mtime=1623670096.332101177 30 atime=1623670096.332101177 30 ctime=1623670096.332101177 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PHDLINES.OUT0000644002504400250440000000132014061636520026154 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.8282132761E-03 0.000000000 0.1656426406E-02 0.8859326103 -0.8282132761E-03 0.8859326103 0.1656426406E-02 1.771865221 -0.8282132761E-03 1.771865221 0.1656426406E-02 2.794852083 -0.8282132761E-03 2.794852083 0.1656426406E-02 3.518213030 -0.8282132761E-03 3.518213030 0.1656426406E-02 4.029706461 -0.8282132761E-03 4.029706461 0.1656426406E-02 4.541199892 -0.8282132761E-03 4.541199892 0.1656426406E-02 5.264560839 -0.8282132761E-03 5.264560839 0.1656426406E-02 6.517458752 -0.8282132761E-03 6.517458752 0.1656426406E-02 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/PHDOS.OUT0000644000000000000000000000013214061636520023572 xustar0030 mtime=1623670096.334101175 30 atime=1623670096.333101176 30 ctime=1623670096.334101175 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PHDOS.OUT0000644002504400250440000004410414061636520025632 0ustar00dewhurstdewhurst00000000000000 -0.1214788429E-03 0.000000000 -0.1188063098E-03 0.000000000 -0.1161337768E-03 0.000000000 -0.1134612437E-03 0.000000000 -0.1107887107E-03 0.000000000 -0.1081161776E-03 0.000000000 -0.1054436446E-03 0.000000000 -0.1027711115E-03 0.000000000 -0.1000985785E-03 0.000000000 -0.9742604544E-04 0.000000000 -0.9475351239E-04 0.000000000 -0.9208097934E-04 0.000000000 -0.8940844629E-04 0.000000000 -0.8673591325E-04 0.000000000 -0.8406338020E-04 0.000000000 -0.8139084715E-04 0.000000000 -0.7871831410E-04 0.000000000 -0.7604578106E-04 0.000000000 -0.7337324801E-04 0.000000000 -0.7070071496E-04 0.000000000 -0.6802818191E-04 0.000000000 -0.6535564886E-04 0.000000000 -0.6268311582E-04 0.000000000 -0.6001058277E-04 0.000000000 -0.5733804972E-04 0.000000000 -0.5466551667E-04 0.000000000 -0.5199298362E-04 0.000000000 -0.4932045058E-04 0.000000000 -0.4664791753E-04 0.000000000 -0.4397538448E-04 0.000000000 -0.4130285143E-04 0.000000000 -0.3863031839E-04 0.000000000 -0.3595778534E-04 0.000000000 -0.3328525229E-04 0.000000000 -0.3061271924E-04 0.000000000 -0.2794018619E-04 0.000000000 -0.2526765315E-04 0.000000000 -0.2259512010E-04 0.000000000 -0.1992258705E-04 0.000000000 -0.1725005400E-04 0.000000000 -0.1457752095E-04 0.000000000 -0.1190498791E-04 0.000000000 -0.9232454859E-05 0.000000000 -0.6559921811E-05 0.000000000 -0.3887388763E-05 0.3741768510 -0.1214855715E-05 0.3741768510 0.1457677333E-05 1.122530553 0.4130210381E-05 0.7483537020 0.6802743429E-05 1.496707404 0.9475276476E-05 0.7483537020 0.1214780952E-04 0.7483537020 0.1482034257E-04 0.7483537020 0.1749287562E-04 1.496707404 0.2016540867E-04 3.741768510 0.2283794172E-04 7.483537020 0.2551047476E-04 12.72201293 0.2818300781E-04 14.21872034 0.3085554086E-04 14.21872034 0.3352807391E-04 11.97365923 0.3620060696E-04 10.22750059 0.3887314000E-04 10.97585430 0.4154567305E-04 14.71762281 0.4421820610E-04 23.19896476 0.4689073915E-04 26.94073327 0.4956327219E-04 31.43085548 0.5223580524E-04 30.68250178 0.5490833829E-04 32.42866042 0.5758087134E-04 22.70006229 0.6025340439E-04 30.18359931 0.6292593743E-04 30.68250178 0.6559847048E-04 44.15286842 0.6827100353E-04 47.14628322 0.7094353658E-04 53.88146654 0.7361606963E-04 49.39134433 0.7628860267E-04 49.89024680 0.7896113572E-04 44.65177088 0.8163366877E-04 56.62543012 0.8430620182E-04 56.87488135 0.8697873486E-04 65.85512577 0.8965126791E-04 71.84195539 0.9232380096E-04 77.82878500 0.9499633401E-04 86.06067573 0.9766886706E-04 74.08701649 0.1003414001E-03 68.84854058 0.1030139332E-03 73.33866279 0.1056864662E-03 86.06067573 0.1083589992E-03 99.53104236 0.1110315323E-03 90.05189547 0.1137040653E-03 105.7673232 0.1163765984E-03 109.2596405 0.1190491314E-03 116.4937263 0.1217216645E-03 102.2750059 0.1243941975E-03 98.78268866 0.1270667306E-03 115.2464701 0.1297392636E-03 127.2201293 0.1324117967E-03 142.9355571 0.1350843297E-03 145.9289719 0.1377568628E-03 143.6839108 0.1404293958E-03 143.6839108 0.1431019289E-03 135.4520201 0.1457744619E-03 148.1740330 0.1484469950E-03 146.6773256 0.1511195280E-03 161.6443996 0.1537920611E-03 170.6246440 0.1564645941E-03 174.8653150 0.1591371272E-03 183.0972057 0.1618096602E-03 189.8323891 0.1644821933E-03 190.8301940 0.1671547263E-03 184.8433644 0.1698272593E-03 175.8631200 0.1724997924E-03 195.5697674 0.1751723254E-03 215.7753174 0.1778448585E-03 242.7160507 0.1805173915E-03 243.9633068 0.1831899246E-03 223.0094032 0.1858624576E-03 217.7709273 0.1885349907E-03 214.0291588 0.1912075237E-03 246.2083679 0.1938800568E-03 256.6853198 0.1965525898E-03 276.6414185 0.1992251229E-03 265.4161130 0.2018976559E-03 276.6414185 0.2045701890E-03 266.4139179 0.2072427220E-03 285.8711142 0.2099152551E-03 275.3941623 0.2125877881E-03 292.6062975 0.2152603212E-03 311.3151400 0.2179328542E-03 326.2822141 0.2206053873E-03 353.2229473 0.2232779203E-03 326.2822141 0.2259504534E-03 336.0108122 0.2286229864E-03 321.0437381 0.2312955195E-03 358.4614232 0.2339680525E-03 373.1790460 0.2366405855E-03 391.3889861 0.2393131186E-03 391.3889861 0.2419856516E-03 372.9295948 0.2446581847E-03 370.4350825 0.2473307177E-03 400.3692306 0.2500032508E-03 421.3231342 0.2526757838E-03 444.5220990 0.2553483169E-03 425.0649027 0.2580208499E-03 431.0517323 0.2606933830E-03 472.2111859 0.2633659160E-03 475.9529544 0.2660384491E-03 483.4364915 0.2687109821E-03 470.7144785 0.2713835152E-03 484.1848452 0.2740560482E-03 489.1738699 0.2767285813E-03 526.5915549 0.2794011143E-03 553.5322882 0.2820736474E-03 580.7224727 0.2847461804E-03 534.3245432 0.2874187135E-03 537.3179580 0.2900912465E-03 569.4971672 0.2927637796E-03 594.1928394 0.2954363126E-03 623.3786337 0.2981088456E-03 629.3654634 0.3007813787E-03 639.8424152 0.3034539117E-03 625.1247924 0.3061264448E-03 649.8204645 0.3087989778E-03 693.9733330 0.3114715109E-03 715.4261391 0.3141440439E-03 711.4349193 0.3168165770E-03 697.9645527 0.3194891100E-03 721.9118712 0.3221616431E-03 731.8899205 0.3248341761E-03 763.3207760 0.3275067092E-03 795.4999852 0.3301792422E-03 815.7055351 0.3328517753E-03 838.1561462 0.3355243083E-03 838.9044999 0.3381968414E-03 860.6067573 0.3408693744E-03 830.6726092 0.3435419075E-03 865.8452332 0.3462144405E-03 914.4882238 0.3488869736E-03 956.3960311 0.3515595066E-03 957.8927385 0.3542320397E-03 956.1465799 0.3569045727E-03 987.5774354 0.3595771057E-03 999.5510946 0.3622496388E-03 988.5752403 0.3649221718E-03 1043.205061 0.3675947049E-03 1079.126038 0.3702672379E-03 1116.543723 0.3729397710E-03 1114.548113 0.3756123040E-03 1107.812930 0.3782848371E-03 1142.237200 0.3809573701E-03 1118.040431 0.3836299032E-03 1194.372508 0.3863024362E-03 1209.339582 0.3889749693E-03 1232.538547 0.3916475023E-03 1233.286901 0.3943200354E-03 1234.035255 0.3969925684E-03 1309.369527 0.3996651015E-03 1315.356357 0.4023376345E-03 1347.535566 0.4050101676E-03 1304.380503 0.4076827006E-03 1351.526786 0.4103552337E-03 1395.679654 0.4130277667E-03 1454.051243 0.4157002998E-03 1426.362156 0.4183728328E-03 1428.607217 0.4210453658E-03 1438.335815 0.4237178989E-03 1503.442587 0.4263904319E-03 1528.138259 0.4290629650E-03 1521.403076 0.4317354980E-03 1561.814176 0.4344080311E-03 1560.317469 0.4370805641E-03 1603.472532 0.4397530972E-03 1582.518628 0.4424256302E-03 1626.671497 0.4450981633E-03 1655.358389 0.4477706963E-03 1701.257416 0.4504432294E-03 1675.065036 0.4531157624E-03 1724.456381 0.4557882955E-03 1736.928942 0.4584608285E-03 1812.512666 0.4611333616E-03 1811.015959 0.4638058946E-03 1745.909187 0.4664784277E-03 1793.803824 0.4691509607E-03 1858.162242 0.4718234938E-03 1937.487734 0.4744960268E-03 1925.514075 0.4771685599E-03 1886.599683 0.4798410929E-03 1934.244868 0.4825136260E-03 1980.642798 0.4851861590E-03 1995.609872 0.4878586920E-03 2022.051703 0.4905312251E-03 2025.793471 0.4932037581E-03 2079.674938 0.4958762912E-03 2085.661767 0.4985488242E-03 2115.595915 0.5012213573E-03 2156.007015 0.5038938903E-03 2158.252076 0.5065664234E-03 2197.166469 0.5092389564E-03 2145.530064 0.5119114895E-03 2253.292997 0.5145840225E-03 2267.511717 0.5172565556E-03 2349.082270 0.5199290886E-03 2345.340502 0.5226016217E-03 2309.419524 0.5252741547E-03 2373.777943 0.5279466878E-03 2404.460444 0.5306192208E-03 2468.818863 0.5332917539E-03 2474.805692 0.5359642869E-03 2484.534291 0.5386368200E-03 2551.137770 0.5413093530E-03 2566.853198 0.5439818861E-03 2596.038992 0.5466544191E-03 2594.542285 0.5493269521E-03 2661.894118 0.5519994852E-03 2696.318388 0.5546720182E-03 2775.643881 0.5573445513E-03 2786.869186 0.5600170843E-03 2840.002299 0.5626896174E-03 2843.744067 0.5653621504E-03 2904.111266 0.5680346835E-03 2855.468275 0.5707072165E-03 3000.648894 0.5733797496E-03 2967.970782 0.5760522826E-03 3153.562500 0.5787248157E-03 3060.766641 0.5813973487E-03 3201.457137 0.5840698818E-03 3158.052622 0.5867424148E-03 3260.577079 0.5894149479E-03 3255.338604 0.5920874809E-03 3378.068611 0.5947600140E-03 3402.015929 0.5974325470E-03 3525.743741 0.6001050801E-03 3533.227278 0.6027776131E-03 3596.088989 0.6054501462E-03 3605.568136 0.6081226792E-03 3741.519059 0.6107952122E-03 3805.877477 0.6134677453E-03 3951.058095 0.6161402783E-03 4008.930781 0.6188128114E-03 4080.772737 0.6214853444E-03 4142.137740 0.6241578775E-03 4240.920429 0.6268304105E-03 4367.392205 0.6295029436E-03 4511.076115 0.6321754766E-03 4618.839049 0.6348480097E-03 4802.934059 0.6375205427E-03 4884.504613 0.6401930758E-03 5103.023894 0.6428656088E-03 5314.807991 0.6455381419E-03 5633.606668 0.6482106749E-03 5862.353450 0.6508832080E-03 6250.749021 0.6535557410E-03 7040.262177 0.6562282741E-03 7678.857336 0.6589008071E-03 8091.200226 0.6615733402E-03 8005.139550 0.6642458732E-03 7987.927415 0.6669184063E-03 8132.359679 0.6695909393E-03 8211.934623 0.6722634723E-03 8393.784572 0.6749360054E-03 8192.477427 0.6776085384E-03 7958.741620 0.6802810715E-03 7821.044539 0.6829536045E-03 7797.097221 0.6856261376E-03 7836.011613 0.6882986706E-03 7692.701879 0.6909712037E-03 7375.524635 0.6936437367E-03 6913.790401 0.6963162698E-03 6383.581803 0.6989888028E-03 5971.862542 0.7016613359E-03 5889.543634 0.7043338689E-03 5750.724023 0.7070064020E-03 5606.665935 0.7096789350E-03 5374.676288 0.7123514681E-03 5250.823750 0.7150240011E-03 5266.165001 0.7176965342E-03 5244.462743 0.7203690672E-03 5121.233834 0.7230416003E-03 5029.435780 0.7257141333E-03 4860.557294 0.7283866664E-03 4766.140002 0.7310591994E-03 4671.223808 0.7337317325E-03 4620.585207 0.7364042655E-03 4603.248346 0.7390767985E-03 4627.070939 0.7417493316E-03 4606.366487 0.7444218646E-03 4547.994898 0.7470943977E-03 4503.093676 0.7497669307E-03 4495.610139 0.7524394638E-03 4623.079720 0.7551119968E-03 4678.208442 0.7577845299E-03 4693.175516 0.7604570629E-03 4656.630910 0.7631295960E-03 4625.075329 0.7658021290E-03 4633.806123 0.7684746621E-03 4587.782370 0.7711471951E-03 4594.642279 0.7738197282E-03 4489.373858 0.7764922612E-03 4508.082701 0.7791647943E-03 4449.461661 0.7818373273E-03 4456.196844 0.7845098604E-03 4465.177088 0.7871823934E-03 4509.579408 0.7898549265E-03 4484.883736 0.7925274595E-03 4442.227575 0.7951999926E-03 4477.400199 0.7978725256E-03 4592.896120 0.8005450586E-03 4588.530724 0.8032175917E-03 4568.948802 0.8058901247E-03 4682.449113 0.8085626578E-03 4745.186099 0.8112351908E-03 4796.198876 0.8139077239E-03 4737.328385 0.8165802569E-03 4794.951620 0.8192527900E-03 4685.941430 0.8219253230E-03 4607.114841 0.8245978561E-03 4610.108255 0.8272703891E-03 4645.031428 0.8299429222E-03 4631.311610 0.8326154552E-03 4357.414155 0.8352879883E-03 4191.279633 0.8379605213E-03 4018.659380 0.8406330544E-03 4043.604503 0.8433055874E-03 4010.676940 0.8459781205E-03 3939.583338 0.8486506535E-03 3767.212536 0.8513231866E-03 3622.031918 0.8539957196E-03 3632.758321 0.8566682527E-03 3698.363995 0.8593407857E-03 3630.513259 0.8620133187E-03 3519.507460 0.8646858518E-03 3358.361963 0.8673583848E-03 3443.424834 0.8700309179E-03 3480.094165 0.8727034509E-03 3397.525807 0.8753759840E-03 3283.776044 0.8780485170E-03 3116.893169 0.8807210501E-03 3260.327628 0.8833935831E-03 3221.787413 0.8860661162E-03 3240.496255 0.8887386492E-03 3062.138623 0.8914111823E-03 3093.195301 0.8940837153E-03 3074.486459 0.8967562484E-03 3132.858048 0.8994287814E-03 3095.190911 0.9021013145E-03 2953.752062 0.9047738475E-03 2951.257549 0.9074463806E-03 2977.699380 0.9101189136E-03 3037.068774 0.9127914467E-03 2902.365107 0.9154639797E-03 2868.689191 0.9181365128E-03 2917.082730 0.9208090458E-03 2963.854837 0.9234815789E-03 2933.920689 0.9261541119E-03 2989.049411 0.9288266449E-03 3014.493437 0.9314991780E-03 3015.241791 0.9341717110E-03 3093.070576 0.9368442441E-03 3167.656495 0.9395167771E-03 3239.248999 0.9421893102E-03 3185.991160 0.9448618432E-03 3403.762088 0.9475343763E-03 3480.343617 0.9502069093E-03 3615.795637 0.9528794424E-03 3600.703837 0.9555519754E-03 3920.999221 0.9582245085E-03 3953.677333 0.9608970415E-03 4210.362653 0.9635695746E-03 4268.235339 0.9662421076E-03 4663.241368 0.9689146407E-03 4794.327992 0.9715871737E-03 4933.646506 0.9742597068E-03 5137.572890 0.9769322398E-03 5388.895008 0.9796047729E-03 5715.177222 0.9822773059E-03 5993.938976 0.9849498390E-03 6335.437715 0.9876223720E-03 6834.839086 0.9902949050E-03 7385.627410 0.9929674381E-03 8308.098074 0.9956399711E-03 8876.722161 0.9983125042E-03 9378.119142 0.1000985037E-02 9482.888660 0.1003657570E-02 9817.028588 0.1006330103E-02 10212.53352 0.1009002636E-02 10434.79457 0.1011675169E-02 10438.16216 0.1014347702E-02 10057.25013 0.1017020236E-02 9732.215168 0.1019692769E-02 9356.666336 0.1022365302E-02 9114.948090 0.1025037835E-02 8779.436180 0.1027710368E-02 8560.043820 0.1030382901E-02 8375.574632 0.1033055434E-02 8349.881155 0.1035727967E-02 8185.118615 0.1038400500E-02 7596.912605 0.1041073033E-02 6648.499014 0.1043745566E-02 5612.029137 0.1046418099E-02 4892.861229 0.1049090632E-02 4363.650436 0.1051763165E-02 3916.883276 0.1054435698E-02 3532.977827 0.1057108231E-02 3120.260760 0.1059780764E-02 2688.834851 0.1062453297E-02 2050.863320 0.1065125830E-02 1493.713989 0.1067798363E-02 1063.909513 0.1070470896E-02 929.5800235 0.1073143430E-02 836.7841644 0.1075815963E-02 805.2285833 0.1078488496E-02 739.3734575 0.1081161029E-02 691.8529975 0.1083833562E-02 630.1138171 0.1086506095E-02 584.4642412 0.1089178628E-02 533.3267383 0.1091851161E-02 465.9749051 0.1094523694E-02 404.6099015 0.1097196227E-02 335.2624585 0.1099868760E-02 260.1776370 0.1102541293E-02 147.5504049 0.1105213826E-02 58.49631437 0.1107886359E-02 3.367591659 0.1110558892E-02 0.000000000 0.1113231425E-02 0.000000000 0.1115903958E-02 0.000000000 0.1118576491E-02 0.000000000 0.1121249024E-02 0.000000000 0.1123921557E-02 0.000000000 0.1126594090E-02 0.000000000 0.1129266624E-02 0.000000000 0.1131939157E-02 0.000000000 0.1134611690E-02 0.000000000 0.1137284223E-02 0.000000000 0.1139956756E-02 0.000000000 0.1142629289E-02 0.000000000 0.1145301822E-02 0.000000000 0.1147974355E-02 0.000000000 0.1150646888E-02 0.000000000 0.1153319421E-02 0.000000000 0.1155991954E-02 0.000000000 0.1158664487E-02 0.000000000 0.1161337020E-02 0.000000000 0.1164009553E-02 0.000000000 0.1166682086E-02 0.000000000 0.1169354619E-02 0.000000000 0.1172027152E-02 0.000000000 0.1174699685E-02 0.000000000 0.1177372218E-02 0.000000000 0.1180044751E-02 0.000000000 0.1182717284E-02 0.000000000 0.1185389818E-02 0.000000000 0.1188062351E-02 0.000000000 0.1190734884E-02 0.000000000 0.1193407417E-02 0.000000000 0.1196079950E-02 0.000000000 0.1198752483E-02 0.000000000 0.1201425016E-02 0.000000000 0.1204097549E-02 0.000000000 0.1206770082E-02 0.000000000 0.1209442615E-02 0.000000000 0.1212115148E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/PHLWIDTH.OUT0000644000000000000000000000013214061636520024140 xustar0030 mtime=1623670096.336101173 30 atime=1623670096.335101174 30 ctime=1623670096.336101173 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PHLWIDTH.OUT0000644002504400250440000012660214061636520026204 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.1054834577E-04 0.1640615945E-01 0.1054426906E-04 0.3281231890E-01 0.1053224948E-04 0.4921847835E-01 0.1051291115E-04 0.6562463780E-01 0.1048726943E-04 0.8203079725E-01 0.1045669506E-04 0.9843695670E-01 0.1042286651E-04 0.1148431162 0.1038771301E-04 0.1312492756 0.1035335081E-04 0.1476554351 0.1032201555E-04 0.1640615945 0.1029599337E-04 0.1804677540 0.1027755320E-04 0.1968739134 0.1026888230E-04 0.2132800729 0.1027202659E-04 0.2296862323 0.1028883686E-04 0.2460923918 0.1032092148E-04 0.2624985512 0.1036960608E-04 0.2789047107 0.1043589994E-04 0.2953108701 0.1052046948E-04 0.3117170296 0.1062361856E-04 0.3281231890 0.1074527583E-04 0.3445293485 0.1088498952E-04 0.3609355079 0.1104193002E-04 0.3773416674 0.1121490100E-04 0.3937478268 0.1140235969E-04 0.4101539863 0.1160244679E-04 0.4265601457 0.1181302643E-04 0.4429663052 0.1203173592E-04 0.4593724646 0.1225604474E-04 0.4757786241 0.1235715223E-04 0.4921847835 0.1232117761E-04 0.5085909430 0.1230211703E-04 0.5249971024 0.1230319825E-04 0.5414032619 0.1232707044E-04 0.5578094213 0.1237573160E-04 0.5742155808 0.1245046998E-04 0.5906217402 0.1255181836E-04 0.6070278997 0.1267952119E-04 0.6234340591 0.1283251463E-04 0.6398402186 0.1300892134E-04 0.6562463780 0.1320606214E-04 0.6726525375 0.1342048754E-04 0.6890586969 0.1364803207E-04 0.7054648564 0.1388389412E-04 0.7218710158 0.1412274272E-04 0.7382771753 0.1435885137E-04 0.7546833347 0.1458625685E-04 0.7710894942 0.1479893888E-04 0.7874956536 0.1499101419E-04 0.8039018131 0.1515693680E-04 0.8203079725 0.1529169463E-04 0.8367141320 0.1534477832E-04 0.8531202914 0.1538531932E-04 0.8695264509 0.1541996037E-04 0.8859326103 0.1544698628E-04 0.9023387698 0.1538058083E-04 0.9187449292 0.1527217934E-04 0.9351510887 0.1512369552E-04 0.9515572481 0.1493797262E-04 0.9679634076 0.1471863602E-04 0.9843695670 0.1446991558E-04 1.000775726 0.1419644783E-04 1.017181886 0.1390306852E-04 1.033588045 0.1359460603E-04 1.049994205 0.1327568534E-04 1.066400364 0.1295055054E-04 1.082806524 0.1262291236E-04 1.099212683 0.1229582502E-04 1.115618843 0.1197159525E-04 1.132025002 0.1165172428E-04 1.148431162 0.1133688276E-04 1.164837321 0.1102691786E-04 1.181243480 0.1072089095E-04 1.197649640 0.1041714488E-04 1.214055799 0.9777600309E-05 1.230461959 0.9099967529E-05 1.246868118 0.8410024987E-05 1.263274278 0.7715588455E-05 1.279680437 0.7024540575E-05 1.296086597 0.6344592768E-05 1.312492756 0.5683056486E-05 1.328898916 0.5046634419E-05 1.345305075 0.4441241004E-05 1.361711234 0.3871859762E-05 1.378117394 0.3342442719E-05 1.394523553 0.2855854678E-05 1.410929713 0.2413862481E-05 1.427335872 0.2017166951E-05 1.443742032 0.1665472985E-05 1.460148191 0.1357591512E-05 1.476554351 0.1091565743E-05 1.492960510 0.8648135035E-06 1.509366669 0.6742772993E-06 1.525772829 0.5165742427E-06 1.542178988 0.3881388419E-06 1.558585148 0.2853529263E-06 1.574991307 0.2046584482E-06 1.591397467 0.1426504762E-06 1.607803626 0.9614923659E-07 1.624209786 0.6225146469E-07 1.640615945 0.3836252037E-07 1.657022105 0.2221164456E-07 1.673428264 0.1185336640E-07 1.689834423 0.5658417901E-08 1.706240583 0.2297598172E-08 1.722646742 0.7218952595E-09 1.739052902 0.1418656213E-09 1.755459061 0.8838830962E-11 1.771865221 0.3660200637E-35 1.788365009 0.8932626533E-10 1.804864797 0.1415136414E-08 1.821364585 0.7047244014E-08 1.837864373 0.2176823466E-07 1.854364161 0.5161263052E-07 1.870863949 0.1032958840E-06 1.887363737 0.1835954396E-06 1.903863525 0.2987489043E-06 1.920363314 0.4539291341E-06 1.936863102 0.6528438813E-06 1.953362890 0.8974905434E-06 1.969862678 0.1188077092E-05 1.986362466 0.1523101129E-05 2.002862254 0.1899562630E-05 2.019362042 0.2313274129E-05 2.035861830 0.2759225805E-05 2.052361618 0.3231962306E-05 2.068861406 0.3725932535E-05 2.085361195 0.4235781728E-05 2.101860983 0.4756565504E-05 2.118360771 0.5283876579E-05 2.134860559 0.5813885136E-05 2.151360347 0.6343302461E-05 2.167860135 0.6869283813E-05 2.184359923 0.7389290391E-05 2.200859711 0.7900931827E-05 2.217359499 0.8401810253E-05 2.233859287 0.8889384889E-05 2.250359076 0.9360872867E-05 2.266858864 0.9813197806E-05 2.283358652 0.1024299286E-04 2.299858440 0.1064665981E-04 2.316358228 0.1102048051E-04 2.332858016 0.1136077214E-04 2.349357804 0.1166407323E-04 2.365857592 0.1192734441E-04 2.382357380 0.1214816579E-04 2.398857168 0.1232491308E-04 2.415356957 0.1245689589E-04 2.431856745 0.1254444546E-04 2.448356533 0.1258894344E-04 2.464856321 0.1259278914E-04 2.481356109 0.1255930810E-04 2.497855897 0.1249261027E-04 2.514355685 0.1239740994E-04 2.530855473 0.1227882220E-04 2.547355261 0.1214215190E-04 2.563855049 0.1199268984E-04 2.580354838 0.1183552954E-04 2.596854626 0.1167541420E-04 2.613354414 0.1151662052E-04 2.629854202 0.1136288209E-04 2.646353990 0.1121735185E-04 2.662853778 0.1108260049E-04 2.679353566 0.1096064543E-04 2.695853354 0.1085300388E-04 2.712353142 0.1076076258E-04 2.728852930 0.1068465674E-04 2.745352719 0.1062515100E-04 2.761852507 0.1058251570E-04 2.778352295 0.1055689268E-04 2.794852083 0.1054834577E-04 2.810926771 0.1053722989E-04 2.827001458 0.1050420196E-04 2.843076146 0.1045021086E-04 2.859150834 0.1037680425E-04 2.875225521 0.1028607971E-04 2.891300209 0.1018062002E-04 2.907374897 0.1006341580E-04 2.923449585 0.9937779442E-05 2.939524272 0.9807254234E-05 2.955598960 0.9675522938E-05 2.971673648 0.9546319337E-05 2.987748335 0.9423346015E-05 3.003823023 0.9310200733E-05 3.019897711 0.9210312918E-05 3.035972399 0.9126890847E-05 3.052047086 0.9062879185E-05 3.068121774 0.9020925735E-05 3.084196462 0.9003355626E-05 3.100271149 0.9012150729E-05 3.116345837 0.9048931959E-05 3.132420525 0.9114942219E-05 3.148495213 0.9211028107E-05 3.164569900 0.9337619132E-05 3.180644588 0.9494703930E-05 3.196719276 0.9681803855E-05 3.212793963 0.9897945252E-05 3.228868651 0.1014163252E-04 3.244943339 0.1041082482E-04 3.261018027 0.1070291978E-04 3.277092714 0.1101474774E-04 3.293167402 0.1134258013E-04 3.309242090 0.1168215497E-04 3.325316777 0.1202872212E-04 3.341391465 0.1237710957E-04 3.357466153 0.1272181122E-04 3.373540841 0.1305709509E-04 3.389615528 0.1337712963E-04 3.405690216 0.1367612453E-04 3.421764904 0.1394848116E-04 3.437839591 0.1356105511E-04 3.453914279 0.1319186101E-04 3.469988967 0.1290028453E-04 3.486063655 0.1268972879E-04 3.502138342 0.1256250599E-04 3.518213030 0.1251995279E-04 3.534197200 0.1254047020E-04 3.550181370 0.1260128515E-04 3.566165539 0.1270021334E-04 3.582149709 0.1283370691E-04 3.598133879 0.1299699598E-04 3.614118048 0.1318429001E-04 3.630102218 0.1338903773E-04 3.646086388 0.1360423938E-04 3.662070558 0.1382279828E-04 3.678054727 0.1403789158E-04 3.694038897 0.1424333450E-04 3.710023067 0.1443390871E-04 3.726007236 0.1460562622E-04 3.741991406 0.1475590390E-04 3.757975576 0.1488363199E-04 3.773959746 0.1498912954E-04 3.789943915 0.1488650472E-04 3.805928085 0.1452024652E-04 3.821912255 0.1425889212E-04 3.837896424 0.1409542607E-04 3.853880594 0.1402087280E-04 3.869864764 0.1402458528E-04 3.885848934 0.1409450734E-04 3.901833103 0.1421744360E-04 3.917817273 0.1437936814E-04 3.933801443 0.1456579301E-04 3.949785613 0.1476220272E-04 3.965769782 0.1495454444E-04 3.981753952 0.1512974832E-04 3.997738122 0.1527624132E-04 4.013722291 0.1538441217E-04 4.029706461 0.1544698628E-04 4.045690631 0.1538441217E-04 4.061674801 0.1527624132E-04 4.077658970 0.1512974832E-04 4.093643140 0.1495454444E-04 4.109627310 0.1476220272E-04 4.125611479 0.1456579301E-04 4.141595649 0.1437936814E-04 4.157579819 0.1421744360E-04 4.173563989 0.1409450734E-04 4.189548158 0.1402458528E-04 4.205532328 0.1402087280E-04 4.221516498 0.1409542607E-04 4.237500668 0.1425889212E-04 4.253484837 0.1452024652E-04 4.269469007 0.1488650472E-04 4.285453177 0.1498912954E-04 4.301437346 0.1488363199E-04 4.317421516 0.1475590390E-04 4.333405686 0.1460562622E-04 4.349389856 0.1443390871E-04 4.365374025 0.1424333450E-04 4.381358195 0.1403789158E-04 4.397342365 0.1382279828E-04 4.413326534 0.1360423938E-04 4.429310704 0.1338903773E-04 4.445294874 0.1318429001E-04 4.461279044 0.1299699598E-04 4.477263213 0.1283370691E-04 4.493247383 0.1270021334E-04 4.509231553 0.1260128515E-04 4.525215722 0.1254047020E-04 4.541199892 0.1251995279E-04 4.557639914 0.1246695510E-04 4.574079935 0.1230996500E-04 4.590519957 0.1205485143E-04 4.606959978 0.1171094311E-04 4.623400000 0.1129039646E-04 4.639840021 0.1080739847E-04 4.656280043 0.1027727909E-04 4.672720064 0.9715611473E-05 4.689160086 0.9137373629E-05 4.705600107 0.8556232231E-05 4.722040129 0.7983990861E-05 4.738480151 0.7430224101E-05 4.754920172 0.6902098424E-05 4.771360194 0.6404363683E-05 4.787800215 0.5939486916E-05 4.804240237 0.5507894145E-05 4.820680258 0.5108285499E-05 4.837120280 0.4737993175E-05 4.853560301 0.4393358514E-05 4.870000323 0.4070111711E-05 4.886440344 0.3763743571E-05 4.902880366 0.3469861771E-05 4.919320387 0.3184524093E-05 4.935760409 0.2904538254E-05 4.952200430 0.2627713723E-05 4.968640452 0.2353046931E-05 4.985080473 0.2080819449E-05 5.001520495 0.1812590507E-05 5.017960517 0.1551071619E-05 5.034400538 0.1299881714E-05 5.050840560 0.1063195205E-05 5.067280581 0.8453105848E-06 5.083720603 0.6501811297E-06 5.100160624 0.4809592438E-06 5.116600646 0.3396098588E-06 5.133040667 0.2266445319E-06 5.149480689 0.1410163558E-06 5.165920710 0.8019748571E-07 5.182360732 0.4043830627E-07 5.198800753 0.1718311419E-07 5.215240775 0.5595247892E-08 5.231680796 0.1128232826E-08 5.248120818 0.7139362773E-10 5.264560839 0.3660200637E-35 5.281046338 0.1157181683E-10 5.297531837 0.1859975642E-09 5.314017336 0.9486846086E-09 5.330502835 0.3029022438E-08 5.346988334 0.7489035783E-08 5.363473833 0.1575965431E-07 5.379959331 0.2968073469E-07 5.396444830 0.5153989973E-07 5.412930329 0.8410430656E-07 5.429415828 0.1306387300E-06 5.445901327 0.1949029760E-06 5.462386826 0.2811217578E-06 5.478872325 0.3939208904E-06 5.495357823 0.5382250678E-06 5.511843322 0.7191146082E-06 5.528328821 0.9416413240E-06 5.544814320 0.1210606980E-05 5.561299819 0.1530311407E-05 5.577785318 0.1904281000E-05 5.594270817 0.2334991631E-05 5.610756315 0.2823602735E-05 5.627241814 0.3369720992E-05 5.643727313 0.3971212468E-05 5.660212812 0.4594868291E-05 5.676698311 0.5153141893E-05 5.693183810 0.5732080910E-05 5.709669309 0.6327286738E-05 5.726154807 0.6934094126E-05 5.742640306 0.7547661040E-05 5.759125805 0.8163058282E-05 5.775611304 0.8775353257E-05 5.792096803 0.9379674969E-05 5.808582302 0.9971211304E-05 5.825067801 0.1054480672E-04 5.841553299 0.1108660120E-04 5.858038798 0.1135240616E-04 5.874524297 0.1149071808E-04 5.891009796 0.1161832377E-04 5.907495295 0.1174174170E-04 5.923980794 0.1186477707E-04 5.940466292 0.1199032710E-04 5.956951791 0.1212054732E-04 5.973437290 0.1225687944E-04 5.989922789 0.1240007008E-04 6.006408288 0.1255020191E-04 6.022893787 0.1270674162E-04 6.039379286 0.1286860490E-04 6.055864784 0.1303423723E-04 6.072350283 0.1320170851E-04 6.088835782 0.1336881836E-04 6.105321281 0.1353320778E-04 6.121806780 0.1369247121E-04 6.138292279 0.1384426075E-04 6.154777778 0.1398637052E-04 6.171263276 0.1411678124E-04 6.187748775 0.1423362492E-04 6.204234274 0.1433496739E-04 6.220719773 0.1441809076E-04 6.237205272 0.1447713426E-04 6.253690771 0.1449564473E-04 6.270176270 0.1444141124E-04 6.286661768 0.1431459175E-04 6.303147267 0.1415178368E-04 6.319632766 0.1397429326E-04 6.336118265 0.1379143575E-04 6.352603764 0.1360867360E-04 6.369089263 0.1343019623E-04 6.385574762 0.1325966868E-04 6.402060260 0.1310044687E-04 6.418545759 0.1295561831E-04 6.435031258 0.1282798085E-04 6.451516757 0.1272000067E-04 6.468002256 0.1263376657E-04 6.484487755 0.1257094849E-04 6.500973254 0.1253276381E-04 6.517458752 0.1251995279E-04 0.000000000 0.1054834577E-04 0.1640615945E-01 0.1054426906E-04 0.3281231890E-01 0.1053224948E-04 0.4921847835E-01 0.1051291115E-04 0.6562463780E-01 0.1048726943E-04 0.8203079725E-01 0.1045669506E-04 0.9843695670E-01 0.1042286651E-04 0.1148431162 0.1038771301E-04 0.1312492756 0.1035335081E-04 0.1476554351 0.1032201555E-04 0.1640615945 0.1029599337E-04 0.1804677540 0.1027755320E-04 0.1968739134 0.1026888230E-04 0.2132800729 0.1027202659E-04 0.2296862323 0.1028883686E-04 0.2460923918 0.1032092148E-04 0.2624985512 0.1036960608E-04 0.2789047107 0.1043589994E-04 0.2953108701 0.1052046948E-04 0.3117170296 0.1062361856E-04 0.3281231890 0.1074527583E-04 0.3445293485 0.1088498952E-04 0.3609355079 0.1104193002E-04 0.3773416674 0.1121490100E-04 0.3937478268 0.1140235969E-04 0.4101539863 0.1160244679E-04 0.4265601457 0.1181302643E-04 0.4429663052 0.1203173592E-04 0.4593724646 0.1225604474E-04 0.4757786241 0.1248332142E-04 0.4921847835 0.1271090646E-04 0.5085909430 0.1293618870E-04 0.5249971024 0.1315668217E-04 0.5414032619 0.1337010003E-04 0.5578094213 0.1357442214E-04 0.5742155808 0.1376795293E-04 0.5906217402 0.1394936641E-04 0.6070278997 0.1411773591E-04 0.6234340591 0.1427254689E-04 0.6398402186 0.1441369162E-04 0.6562463780 0.1454144609E-04 0.6726525375 0.1465642959E-04 0.6890586969 0.1475954901E-04 0.7054648564 0.1485192987E-04 0.7218710158 0.1493483703E-04 0.7382771753 0.1500958826E-04 0.7546833347 0.1507746393E-04 0.7710894942 0.1513961607E-04 0.7874956536 0.1519698017E-04 0.8039018131 0.1525019257E-04 0.8203079725 0.1529951636E-04 0.8367141320 0.1534477832E-04 0.8531202914 0.1538531932E-04 0.8695264509 0.1541996037E-04 0.8859326103 0.1544698628E-04 0.9023387698 0.1546414893E-04 0.9187449292 0.1546869132E-04 0.9351510887 0.1545739405E-04 0.9515572481 0.1542664430E-04 0.9679634076 0.1537252771E-04 0.9843695670 0.1529094174E-04 1.000775726 0.1517772874E-04 1.017181886 0.1502882532E-04 1.033588045 0.1484042350E-04 1.049994205 0.1460913796E-04 1.066400364 0.1433217268E-04 1.082806524 0.1400747923E-04 1.099212683 0.1363389892E-04 1.115618843 0.1321128067E-04 1.132025002 0.1274056742E-04 1.148431162 0.1222384449E-04 1.164837321 0.1166434541E-04 1.181243480 0.1106641231E-04 1.197649640 0.1043541066E-04 1.214055799 0.9777600309E-05 1.230461959 0.9099967529E-05 1.246868118 0.8410024987E-05 1.263274278 0.7715588455E-05 1.279680437 0.7024540575E-05 1.296086597 0.6344592768E-05 1.312492756 0.5683056486E-05 1.328898916 0.5046634419E-05 1.345305075 0.4441241004E-05 1.361711234 0.3871859762E-05 1.378117394 0.3342442719E-05 1.394523553 0.2855854678E-05 1.410929713 0.2413862481E-05 1.427335872 0.2017166951E-05 1.443742032 0.1665472985E-05 1.460148191 0.1357591512E-05 1.476554351 0.1091565743E-05 1.492960510 0.8648135035E-06 1.509366669 0.6742772993E-06 1.525772829 0.5165742427E-06 1.542178988 0.3881388419E-06 1.558585148 0.2853529263E-06 1.574991307 0.2046584482E-06 1.591397467 0.1426504762E-06 1.607803626 0.9614923659E-07 1.624209786 0.6225146469E-07 1.640615945 0.3836252037E-07 1.657022105 0.2221164456E-07 1.673428264 0.1185336640E-07 1.689834423 0.5658417901E-08 1.706240583 0.2297598172E-08 1.722646742 0.7218952595E-09 1.739052902 0.1418656213E-09 1.755459061 0.8838830962E-11 1.771865221 0.3660200637E-35 1.788365009 0.8932626533E-10 1.804864797 0.1415136414E-08 1.821364585 0.7047244014E-08 1.837864373 0.2176823466E-07 1.854364161 0.5161263052E-07 1.870863949 0.1032958840E-06 1.887363737 0.1835954396E-06 1.903863525 0.2987489043E-06 1.920363314 0.4539291341E-06 1.936863102 0.6528438813E-06 1.953362890 0.8974905434E-06 1.969862678 0.1188077092E-05 1.986362466 0.1523101129E-05 2.002862254 0.1899562630E-05 2.019362042 0.2313274129E-05 2.035861830 0.2759225805E-05 2.052361618 0.3231962306E-05 2.068861406 0.3725932535E-05 2.085361195 0.4235781728E-05 2.101860983 0.4756565504E-05 2.118360771 0.5283876579E-05 2.134860559 0.5813885136E-05 2.151360347 0.6343302461E-05 2.167860135 0.6869283813E-05 2.184359923 0.7389290391E-05 2.200859711 0.7900931827E-05 2.217359499 0.8401810253E-05 2.233859287 0.8889384889E-05 2.250359076 0.9360872867E-05 2.266858864 0.9813197806E-05 2.283358652 0.1024299286E-04 2.299858440 0.1064665981E-04 2.316358228 0.1102048051E-04 2.332858016 0.1136077214E-04 2.349357804 0.1166407323E-04 2.365857592 0.1192734441E-04 2.382357380 0.1214816579E-04 2.398857168 0.1232491308E-04 2.415356957 0.1245689589E-04 2.431856745 0.1254444546E-04 2.448356533 0.1258894344E-04 2.464856321 0.1259278914E-04 2.481356109 0.1255930810E-04 2.497855897 0.1249261027E-04 2.514355685 0.1239740994E-04 2.530855473 0.1227882220E-04 2.547355261 0.1214215190E-04 2.563855049 0.1199268984E-04 2.580354838 0.1183552954E-04 2.596854626 0.1167541420E-04 2.613354414 0.1151662052E-04 2.629854202 0.1136288209E-04 2.646353990 0.1121735185E-04 2.662853778 0.1108260049E-04 2.679353566 0.1096064543E-04 2.695853354 0.1085300388E-04 2.712353142 0.1076076258E-04 2.728852930 0.1068465674E-04 2.745352719 0.1062515100E-04 2.761852507 0.1058251570E-04 2.778352295 0.1055689268E-04 2.794852083 0.1054834577E-04 2.810926771 0.1056683174E-04 2.827001458 0.1062226349E-04 2.843076146 0.1071456062E-04 2.859150834 0.1084358265E-04 2.875225521 0.1100911964E-04 2.891300209 0.1121087962E-04 2.907374897 0.1144847348E-04 2.923449585 0.1172139808E-04 2.939524272 0.1202901813E-04 2.955598960 0.1237054801E-04 2.971673648 0.1274503419E-04 2.987748335 0.1315133910E-04 3.003823023 0.1358812738E-04 3.019897711 0.1405385507E-04 3.035972399 0.1454676247E-04 3.052047086 0.1506487097E-04 3.068121774 0.1560598434E-04 3.084196462 0.1616769443E-04 3.100271149 0.1674739147E-04 3.116345837 0.1734227862E-04 3.132420525 0.1794939051E-04 3.148495213 0.1856561536E-04 3.164569900 0.1918772011E-04 3.180644588 0.1981237786E-04 3.196719276 0.2043619703E-04 3.212793963 0.2105575147E-04 3.228868651 0.2134954376E-04 3.244943339 0.2089825959E-04 3.261018027 0.2036670290E-04 3.277092714 0.1976950811E-04 3.293167402 0.1912241958E-04 3.309242090 0.1844173480E-04 3.325316777 0.1774376981E-04 3.341391465 0.1704437363E-04 3.357466153 0.1635851371E-04 3.373540841 0.1569994809E-04 3.389615528 0.1508099252E-04 3.405690216 0.1451238378E-04 3.421764904 0.1400323280E-04 3.437839591 0.1418894696E-04 3.453914279 0.1439276751E-04 3.469988967 0.1455582950E-04 3.486063655 0.1467478843E-04 3.502138342 0.1474717476E-04 3.518213030 0.1477147370E-04 3.534197200 0.1477062742E-04 3.550181370 0.1476833660E-04 3.566165539 0.1476532445E-04 3.582149709 0.1476272833E-04 3.598133879 0.1476200336E-04 3.614118048 0.1476479813E-04 3.630102218 0.1477281176E-04 3.646086388 0.1478764293E-04 3.662070558 0.1481064170E-04 3.678054727 0.1484277451E-04 3.694038897 0.1488451194E-04 3.710023067 0.1493574739E-04 3.726007236 0.1499575329E-04 3.741991406 0.1506317928E-04 3.757975576 0.1513609511E-04 3.773959746 0.1521207796E-04 3.789943915 0.1507399107E-04 3.805928085 0.1514083914E-04 3.821912255 0.1519300574E-04 3.837896424 0.1523417105E-04 3.853880594 0.1526799021E-04 3.869864764 0.1529773828E-04 3.885848934 0.1532600028E-04 3.901833103 0.1535442911E-04 3.917817273 0.1538358874E-04 3.933801443 0.1541289510E-04 3.949785613 0.1544066111E-04 3.965769782 0.1546424724E-04 3.981753952 0.1548031205E-04 3.997738122 0.1547362522E-04 4.013722291 0.1545431222E-04 4.029706461 0.1544698628E-04 4.045690631 0.1545431222E-04 4.061674801 0.1547362522E-04 4.077658970 0.1548031205E-04 4.093643140 0.1546424724E-04 4.109627310 0.1544066111E-04 4.125611479 0.1541289510E-04 4.141595649 0.1538358874E-04 4.157579819 0.1535442911E-04 4.173563989 0.1532600028E-04 4.189548158 0.1529773828E-04 4.205532328 0.1526799021E-04 4.221516498 0.1523417105E-04 4.237500668 0.1519300574E-04 4.253484837 0.1514083914E-04 4.269469007 0.1507399107E-04 4.285453177 0.1521207796E-04 4.301437346 0.1513609511E-04 4.317421516 0.1506317928E-04 4.333405686 0.1499575329E-04 4.349389856 0.1493574739E-04 4.365374025 0.1488451194E-04 4.381358195 0.1484277451E-04 4.397342365 0.1481064170E-04 4.413326534 0.1478764293E-04 4.429310704 0.1477281176E-04 4.445294874 0.1476479813E-04 4.461279044 0.1476200336E-04 4.477263213 0.1476272833E-04 4.493247383 0.1476532445E-04 4.509231553 0.1476833660E-04 4.525215722 0.1477062742E-04 4.541199892 0.1477147370E-04 4.557639914 0.1470901098E-04 4.574079935 0.1452430448E-04 4.590519957 0.1422519394E-04 4.606959978 0.1382408389E-04 4.623400000 0.1333702618E-04 4.639840021 0.1278257482E-04 4.656280043 0.1218052865E-04 4.672720064 0.1155068102E-04 4.689160086 0.1091168418E-04 4.705600107 0.1028011181E-04 4.722040129 0.9669771544E-05 4.738480151 0.9091284989E-05 4.754920172 0.8551921707E-05 4.771360194 0.8055650474E-05 4.787800215 0.7603358265E-05 4.804240237 0.7193185640E-05 4.820680258 0.6820934945E-05 4.837120280 0.6480521436E-05 4.853560301 0.6164452982E-05 4.870000323 0.5864336687E-05 4.886440344 0.5571417287E-05 4.902880366 0.5277150357E-05 4.919320387 0.4973803418E-05 4.935760409 0.4655062135E-05 4.952200430 0.4316600679E-05 4.968640452 0.3956559847E-05 4.985080473 0.3575868257E-05 5.001520495 0.3178344517E-05 5.017960517 0.2770533429E-05 5.034400538 0.2361256315E-05 5.050840560 0.1960891322E-05 5.067280581 0.1580438945E-05 5.083720603 0.1230464449E-05 5.100160624 0.9200360014E-06 5.116600646 0.6557894261E-06 5.133040667 0.4412443202E-06 5.149480689 0.2764710817E-06 5.165920710 0.1581667999E-06 5.182360732 0.8014524257E-07 5.198800753 0.3418980647E-07 5.215240775 0.1116666638E-07 5.231680796 0.2256457924E-08 5.248120818 0.1429677656E-09 5.264560839 0.3660200637E-35 5.281046338 0.2477821740E-10 5.297531837 0.3952335424E-09 5.314017336 0.1990636964E-08 5.330502835 0.6246405822E-08 5.346988334 0.1510998601E-07 5.363473833 0.3098092474E-07 5.379959331 0.5663690360E-07 5.396444830 0.9514791197E-07 5.412930329 0.1497810849E-06 5.429415828 0.2238989951E-06 5.445901327 0.3208543686E-06 5.462386826 0.4438842832E-06 5.478872325 0.5960069044E-06 5.495357823 0.7799237137E-06 5.511843322 0.9979299998E-06 5.528328821 0.1251836110E-05 5.544814320 0.1542901613E-05 5.561299819 0.1871784127E-05 5.577785318 0.2238504086E-05 5.594270817 0.2642426267E-05 5.610756315 0.3082258336E-05 5.627241814 0.3556066227E-05 5.643727313 0.4061305612E-05 5.660212812 0.4624081026E-05 5.676698311 0.5322428285E-05 5.693183810 0.6058506301E-05 5.709669309 0.6822868901E-05 5.726154807 0.7604621301E-05 5.742640306 0.8391761001E-05 5.759125805 0.9171596240E-05 5.775611304 0.9931222326E-05 5.792096803 0.1065803127E-04 5.808582302 0.1087066782E-04 5.825067801 0.1105638559E-04 5.841553299 0.1123163366E-04 5.858038798 0.1164182145E-04 5.874524297 0.1213994627E-04 5.891009796 0.1261085892E-04 5.907495295 0.1304971065E-04 5.923980794 0.1345430427E-04 5.940466292 0.1382321257E-04 5.956951791 0.1415555249E-04 5.973437290 0.1445091343E-04 5.989922789 0.1443179199E-04 6.006408288 0.1438250142E-04 6.022893787 0.1431754103E-04 6.039379286 0.1424904912E-04 6.055864784 0.1418895778E-04 6.072350283 0.1414871540E-04 6.088835782 0.1413906492E-04 6.105321281 0.1416987432E-04 6.121806780 0.1425001080E-04 6.138292279 0.1438724573E-04 6.154777778 0.1458817548E-04 6.171263276 0.1485814341E-04 6.187748775 0.1520115027E-04 6.204234274 0.1520427075E-04 6.220719773 0.1508419235E-04 6.237205272 0.1495917836E-04 6.253690771 0.1484802130E-04 6.270176270 0.1478578931E-04 6.286661768 0.1477565883E-04 6.303147267 0.1478478151E-04 6.319632766 0.1479593408E-04 6.336118265 0.1480412304E-04 6.352603764 0.1480834226E-04 6.369089263 0.1480888454E-04 6.385574762 0.1480648497E-04 6.402060260 0.1480200257E-04 6.418545759 0.1479628468E-04 6.435031258 0.1479010420E-04 6.451516757 0.1478412979E-04 6.468002256 0.1477891260E-04 6.484487755 0.1477488120E-04 6.500973254 0.1477234075E-04 6.517458752 0.1477147370E-04 0.000000000 0.1054834577E-04 0.1640615945E-01 0.1056207525E-04 0.3281231890E-01 0.1060293411E-04 0.4921847835E-01 0.1066993838E-04 0.6562463780E-01 0.1076146428E-04 0.8203079725E-01 0.1087527433E-04 0.9843695670E-01 0.1100855685E-04 0.1148431162 0.1115798135E-04 0.1312492756 0.1131977182E-04 0.1476554351 0.1148979922E-04 0.1640615945 0.1166369312E-04 0.1804677540 0.1183697094E-04 0.1968739134 0.1200518128E-04 0.2132800729 0.1216405636E-04 0.2296862323 0.1230966673E-04 0.2460923918 0.1243857079E-04 0.2624985512 0.1254795083E-04 0.2789047107 0.1263572786E-04 0.2953108701 0.1270064827E-04 0.3117170296 0.1274233693E-04 0.3281231890 0.1276131347E-04 0.3445293485 0.1275897089E-04 0.3609355079 0.1273751772E-04 0.3773416674 0.1269988775E-04 0.3937478268 0.1264962258E-04 0.4101539863 0.1259073417E-04 0.4265601457 0.1252755464E-04 0.4429663052 0.1246458107E-04 0.4593724646 0.1240632213E-04 0.4757786241 0.1248332142E-04 0.4921847835 0.1271090646E-04 0.5085909430 0.1293618870E-04 0.5249971024 0.1315668217E-04 0.5414032619 0.1337010003E-04 0.5578094213 0.1357442214E-04 0.5742155808 0.1376795293E-04 0.5906217402 0.1394936641E-04 0.6070278997 0.1411773591E-04 0.6234340591 0.1427254689E-04 0.6398402186 0.1441369162E-04 0.6562463780 0.1454144609E-04 0.6726525375 0.1465642959E-04 0.6890586969 0.1475954901E-04 0.7054648564 0.1485192987E-04 0.7218710158 0.1493483703E-04 0.7382771753 0.1500958826E-04 0.7546833347 0.1507746393E-04 0.7710894942 0.1513961607E-04 0.7874956536 0.1519698017E-04 0.8039018131 0.1525019257E-04 0.8203079725 0.1529951636E-04 0.8367141320 0.1539099209E-04 0.8531202914 0.1545140810E-04 0.8695264509 0.1547052008E-04 0.8859326103 0.1544698628E-04 0.9023387698 0.1546414893E-04 0.9187449292 0.1546869132E-04 0.9351510887 0.1545739405E-04 0.9515572481 0.1542664430E-04 0.9679634076 0.1537252771E-04 0.9843695670 0.1529094174E-04 1.000775726 0.1517772874E-04 1.017181886 0.1502882532E-04 1.033588045 0.1484042350E-04 1.049994205 0.1460913796E-04 1.066400364 0.1433217268E-04 1.082806524 0.1400747923E-04 1.099212683 0.1363389892E-04 1.115618843 0.1321128067E-04 1.132025002 0.1274056742E-04 1.148431162 0.1222384449E-04 1.164837321 0.1166434541E-04 1.181243480 0.1106641231E-04 1.197649640 0.1043541066E-04 1.214055799 0.1011339914E-04 1.230461959 0.9806871688E-05 1.246868118 0.9494425746E-05 1.263274278 0.9172739135E-05 1.279680437 0.8838492804E-05 1.296086597 0.8488573531E-05 1.312492756 0.8120283992E-05 1.328898916 0.7731551352E-05 1.345305075 0.7321123655E-05 1.361711234 0.6888741821E-05 1.378117394 0.6435274304E-05 1.394523553 0.5962801736E-05 1.410929713 0.5474640284E-05 1.427335872 0.4975295184E-05 1.443742032 0.4470339785E-05 1.460148191 0.3966220397E-05 1.476554351 0.3469992795E-05 1.492960510 0.2989002049E-05 1.509366669 0.2530522848E-05 1.525772829 0.2101382121E-05 1.542178988 0.1707588996E-05 1.558585148 0.1353998581E-05 1.574991307 0.1044035377E-05 1.591397467 0.7794992683E-06 1.607803626 0.5604720197E-06 1.624209786 0.3853354346E-06 1.640615945 0.2509042102E-06 1.657022105 0.1526677470E-06 1.673428264 0.8512646524E-07 1.689834423 0.4220030883E-07 1.706240583 0.1768080138E-07 1.722646742 0.5693860207E-08 1.739052902 0.1138995734E-08 1.755459061 0.7172885624E-10 1.771865221 0.3660200637E-35 1.788365009 0.1659161240E-09 1.804864797 0.2629173768E-08 1.821364585 0.1309806660E-07 1.837864373 0.4047669917E-07 1.854364161 0.9601080077E-07 1.870863949 0.1922068135E-06 1.887363737 0.3416260997E-06 1.903863525 0.5556677803E-06 1.920363314 0.8434544697E-06 1.936863102 0.1210924842E-05 1.953362890 0.1660216454E-05 1.969862678 0.2189393546E-05 1.986362466 0.2792540533E-05 2.002862254 0.3460206128E-05 2.019362042 0.4180149275E-05 2.035861830 0.4938310050E-05 2.052361618 0.5719909311E-05 2.068861406 0.6510572242E-05 2.085361195 0.7297373714E-05 2.101860983 0.8069716696E-05 2.118360771 0.8819976798E-05 2.134860559 0.9543873082E-05 2.151360347 0.1024055372E-04 2.167860135 0.1091241124E-04 2.184359923 0.1156466245E-04 2.200859711 0.1220474128E-04 2.217359499 0.1284155727E-04 2.233859287 0.1348467014E-04 2.250359076 0.1414342402E-04 2.266858864 0.1482607572E-04 2.283358652 0.1553894529E-04 2.299858440 0.1628561389E-04 2.316358228 0.1706619792E-04 2.332858016 0.1787673667E-04 2.349357804 0.1870874229E-04 2.365857592 0.1954897202E-04 2.382357380 0.2037948757E-04 2.398857168 0.2117806265E-04 2.415356957 0.2191898173E-04 2.431856745 0.2257424232E-04 2.448356533 0.2311512991E-04 2.464856321 0.2351408414E-04 2.481356109 0.2374672503E-04 2.497855897 0.2379386642E-04 2.514355685 0.2364331927E-04 2.530855473 0.2329128689E-04 2.547355261 0.2274318046E-04 2.563855049 0.2201373613E-04 2.580354838 0.2112638888E-04 2.596854626 0.2011194376E-04 2.613354414 0.1900667091E-04 2.629854202 0.1785002212E-04 2.646353990 0.1668221388E-04 2.662853778 0.1554193557E-04 2.679353566 0.1446441820E-04 2.695853354 0.1348004232E-04 2.712353142 0.1261358124E-04 2.728852930 0.1188407966E-04 2.745352719 0.1130527477E-04 2.761852507 0.1088639015E-04 2.778352295 0.1063308680E-04 2.794852083 0.1054834577E-04 2.810926771 0.1059201403E-04 2.827001458 0.1072273776E-04 2.843076146 0.1093963969E-04 2.859150834 0.1124114764E-04 2.875225521 0.1162484183E-04 2.891300209 0.1208726497E-04 2.907374897 0.1262371669E-04 2.923449585 0.1322805663E-04 2.939524272 0.1389254165E-04 2.955598960 0.1460772134E-04 2.971673648 0.1536241268E-04 2.987748335 0.1614376971E-04 3.003823023 0.1693745735E-04 3.019897711 0.1772793119E-04 3.035972399 0.1849881677E-04 3.052047086 0.1923337464E-04 3.068121774 0.1991503004E-04 3.084196462 0.2052794083E-04 3.100271149 0.2105757331E-04 3.116345837 0.2149125380E-04 3.132420525 0.2181866453E-04 3.148495213 0.2203225486E-04 3.164569900 0.2212754384E-04 3.180644588 0.2210329629E-04 3.196719276 0.2196156254E-04 3.212793963 0.2170758006E-04 3.228868651 0.2166761086E-04 3.244943339 0.2226837071E-04 3.261018027 0.2285468127E-04 3.277092714 0.2342327500E-04 3.293167402 0.2397099196E-04 3.309242090 0.2449480281E-04 3.325316777 0.2499182932E-04 3.341391465 0.2545936206E-04 3.357466153 0.2589487534E-04 3.373540841 0.2629603955E-04 3.389615528 0.2666073085E-04 3.405690216 0.2698703860E-04 3.421764904 0.2727327082E-04 3.437839591 0.2751795784E-04 3.453914279 0.2771985464E-04 3.469988967 0.2787794215E-04 3.486063655 0.2799142777E-04 3.502138342 0.2805974547E-04 3.518213030 0.2808255576E-04 3.534197200 0.2797669282E-04 3.550181370 0.2766338570E-04 3.566165539 0.2715519339E-04 3.582149709 0.2647212166E-04 3.598133879 0.2564032923E-04 3.614118048 0.2469049377E-04 3.630102218 0.2365598843E-04 3.646086388 0.2257102903E-04 3.662070558 0.2146894229E-04 3.678054727 0.2038068023E-04 3.694038897 0.1933366779E-04 3.710023067 0.1835102680E-04 3.726007236 0.1745117500E-04 3.741991406 0.1664776037E-04 3.757975576 0.1594986263E-04 3.773959746 0.1536237838E-04 3.789943915 0.1528834174E-04 3.805928085 0.1536190223E-04 3.821912255 0.1542976931E-04 3.837896424 0.1548915445E-04 3.853880594 0.1553767911E-04 3.869864764 0.1557356849E-04 3.885848934 0.1559581501E-04 3.901833103 0.1560429724E-04 3.917817273 0.1559984290E-04 3.933801443 0.1558422894E-04 3.949785613 0.1556011645E-04 3.965769782 0.1553092360E-04 3.981753952 0.1550064445E-04 3.997738122 0.1548515049E-04 4.013722291 0.1547509993E-04 4.029706461 0.1544698628E-04 4.045690631 0.1547509993E-04 4.061674801 0.1548515049E-04 4.077658970 0.1550064445E-04 4.093643140 0.1553092360E-04 4.109627310 0.1556011645E-04 4.125611479 0.1558422894E-04 4.141595649 0.1559984290E-04 4.157579819 0.1560429724E-04 4.173563989 0.1559581501E-04 4.189548158 0.1557356849E-04 4.205532328 0.1553767911E-04 4.221516498 0.1548915445E-04 4.237500668 0.1542976931E-04 4.253484837 0.1536190223E-04 4.269469007 0.1528834174E-04 4.285453177 0.1536237838E-04 4.301437346 0.1594986263E-04 4.317421516 0.1664776037E-04 4.333405686 0.1745117500E-04 4.349389856 0.1835102680E-04 4.365374025 0.1933366779E-04 4.381358195 0.2038068023E-04 4.397342365 0.2146894229E-04 4.413326534 0.2257102903E-04 4.429310704 0.2365598843E-04 4.445294874 0.2469049377E-04 4.461279044 0.2564032923E-04 4.477263213 0.2647212166E-04 4.493247383 0.2715519339E-04 4.509231553 0.2766338570E-04 4.525215722 0.2797669282E-04 4.541199892 0.2808255576E-04 4.557639914 0.2796923447E-04 4.574079935 0.2763455254E-04 4.590519957 0.2709393256E-04 4.606959978 0.2637171675E-04 4.623400000 0.2549928623E-04 4.639840021 0.2451272755E-04 4.656280043 0.2345029201E-04 4.672720064 0.2234989619E-04 4.689160086 0.2124688240E-04 4.705600107 0.2017220051E-04 4.722040129 0.1915110114E-04 4.738480151 0.1820235630E-04 4.754920172 0.1733796045E-04 4.771360194 0.1656322304E-04 4.787800215 0.1587714685E-04 4.804240237 0.1527299610E-04 4.820680258 0.1473898725E-04 4.837120280 0.1425907517E-04 4.853560301 0.1381384503E-04 4.870000323 0.1338154649E-04 4.886440344 0.1293931069E-04 4.902880366 0.1246457152E-04 4.919320387 0.1193667037E-04 4.935760409 0.1133856736E-04 4.952200430 0.1065852275E-04 4.968640452 0.9891564474E-05 4.985080473 0.9040533452E-05 5.001520495 0.8116508733E-05 5.017960517 0.7138461737E-05 5.034400538 0.6132071447E-05 5.050840560 0.5127739543E-05 5.067280581 0.4157961125E-05 5.083720603 0.3254314005E-05 5.100160624 0.2444408761E-05 5.116600646 0.1749177352E-05 5.133040667 0.1180860487E-05 5.149480689 0.7419820054E-06 5.165920710 0.4254795286E-06 5.182360732 0.2160102523E-06 5.198800753 0.9229010774E-07 5.215240775 0.3017759525E-07 5.231680796 0.6102964183E-08 5.248120818 0.3868660582E-09 5.264560839 0.3660200637E-35 5.281046338 0.8176172578E-10 5.297531837 0.1298980946E-08 5.314017336 0.6499188863E-08 5.330502835 0.2020548315E-07 5.346988334 0.4829872089E-07 5.363473833 0.9760406135E-07 5.379959331 0.1754104602E-06 5.396444830 0.2889560528E-06 5.412930329 0.4449142619E-06 5.429415828 0.6489148232E-06 5.445901327 0.9051308401E-06 5.462386826 0.1215957744E-05 5.478872325 0.1581803104E-05 5.495357823 0.2000998167E-05 5.511843322 0.2469833459E-05 5.528328821 0.2982712401E-05 5.544814320 0.3532409317E-05 5.561299819 0.4110411930E-05 5.577785318 0.4707323905E-05 5.594270817 0.5313300438E-05 5.610756315 0.5918489338E-05 5.627241814 0.6513451494E-05 5.643727313 0.7089537737E-05 5.660212812 0.7639203650E-05 5.676698311 0.8156249231E-05 5.693183810 0.8635976233E-05 5.709669309 0.9075261788E-05 5.726154807 0.9472552331E-05 5.742640306 0.9827786558E-05 5.759125805 0.1014226014E-04 5.775611304 0.1041844912E-04 5.792096803 0.1065981713E-04 5.808582302 0.1134022694E-04 5.825067801 0.1196731657E-04 5.841553299 0.1253055065E-04 5.858038798 0.1302328567E-04 5.874524297 0.1344124983E-04 5.891009796 0.1378269775E-04 5.907495295 0.1404844805E-04 5.923980794 0.1424180563E-04 5.940466292 0.1436837788E-04 5.956951791 0.1443580106E-04 5.973437290 0.1445339804E-04 5.989922789 0.1470930997E-04 6.006408288 0.1493113688E-04 6.022893787 0.1511712212E-04 6.039379286 0.1526827786E-04 6.055864784 0.1538585064E-04 6.072350283 0.1547127266E-04 6.088835782 0.1552611655E-04 6.105321281 0.1555205632E-04 6.121806780 0.1555083791E-04 6.138292279 0.1552426437E-04 6.154777778 0.1547420309E-04 6.171263276 0.1540263041E-04 6.187748775 0.1531174834E-04 6.204234274 0.1561974464E-04 6.220719773 0.1611489034E-04 6.237205272 0.1668581442E-04 6.253690771 0.1732984569E-04 6.270176270 0.1804225965E-04 6.286661768 0.1881615024E-04 6.303147267 0.1964235125E-04 6.319632766 0.2050943040E-04 6.336118265 0.2140377664E-04 6.352603764 0.2230979618E-04 6.369089263 0.2321022581E-04 6.385574762 0.2408656323E-04 6.402060260 0.2491960447E-04 6.418545759 0.2569006918E-04 6.435031258 0.2637928576E-04 6.451516757 0.2696990138E-04 6.468002256 0.2744657759E-04 6.484487755 0.2779663083E-04 6.500973254 0.2801057838E-04 6.517458752 0.2808255576E-04 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/PHLWLINES.OUT0000644000000000000000000000013214061636520024262 xustar0030 mtime=1623670096.337101172 30 atime=1623670096.337101172 30 ctime=1623670096.337101172 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PHLWLINES.OUT0000644002504400250440000000132014061636520026313 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.2106191682E-04 0.000000000 0.4212383364E-04 0.8859326103 -0.2106191682E-04 0.8859326103 0.4212383364E-04 1.771865221 -0.2106191682E-04 1.771865221 0.4212383364E-04 2.794852083 -0.2106191682E-04 2.794852083 0.4212383364E-04 3.518213030 -0.2106191682E-04 3.518213030 0.4212383364E-04 4.029706461 -0.2106191682E-04 4.029706461 0.4212383364E-04 4.541199892 -0.2106191682E-04 4.541199892 0.4212383364E-04 5.264560839 -0.2106191682E-04 5.264560839 0.4212383364E-04 6.517458752 -0.2106191682E-04 6.517458752 0.4212383364E-04 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013014061636520023425 xustar0029 mtime=1623670096.33910117 30 atime=1623670096.338101171 29 ctime=1623670096.33910117 elk-7.2.42/examples/phonons-superconductivity/Nb-DFPT/elk.in0000644002504400250440000000357014061636520025471 0ustar00dewhurstdewhurst00000000000000 ! This example generates a good quality phonon dispersion for bcc niobium using ! density functional perturbation theory (DFPT). The superconducting critical ! temperature is also computed using McMillan's formula and by solving the ! Eliashberg equations. ! The phonon dispersion and vertex location lines are included with this ! example in the files PHDISP.OUT and PHDLINES.OUT, respectively. tasks 0 : generate the ground-state 205 : generate the dynamical matrices with DFPT ! number of phonon q-points ngridq 4 4 4 ! add extra local-orbitals for accurate electron-phonon coupling nxlo 1 ! larger cut-off required rgkmax 8.0 ngridk 8 8 8 ! larger smearing width required for stable phonon dispersion swidth 0.005 stype 1 ! increase the number of muffin-tin points (for accurate gradients) nrmtscf 2.0 ! after all the dynamical matrix DYN---.OUT files have been calculated then ! uncomment the following lines and run again ! large k-point required for accurate electron-phonon coupling !ngridk ! 24 24 24 !tasks ! 1 : ground state with larger k-point set ! 210 : phonon DOS ! 220 : plot the phonon dispersion ! 240 : electron-phonon matrix elements ! 245 : phonon line-widths ! 250 : Eliashberg function, alpha^2F ! 260 : solving the Eliashberg equations ! number of temperature steps for Eliashberg calculation ntemp 40 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 ! use LDA equilibrium lattice constant scale 3.071 sppath '../../../species/' atoms 1 : nspecies 'Nb.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 plot1d 9 400 0.5 0.5 0.5 0.25 0.25 0.25 0.0 0.0 0.0 -0.5 0.5 0.5 -0.5 0.5 0.0 -0.75 0.25 0.25 -0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Si-DFPT0000644000000000000000000000013114061636520022262 xustar0030 mtime=1623670096.340101169 29 atime=1623670096.33910117 30 ctime=1623670096.340101169 elk-7.2.42/examples/phonons-superconductivity/Si-DFPT/0000755002504400250440000000000014061636520024375 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Si-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023443 xustar0030 mtime=1623670096.341101168 30 atime=1623670096.341101168 30 ctime=1623670096.341101168 elk-7.2.42/examples/phonons-superconductivity/Si-DFPT/elk.in0000644002504400250440000000245714061636520025510 0ustar00dewhurstdewhurst00000000000000 ! Phonon dispersion of silicon. ! You can submit the same job (with task=205) on as many machines as you like, ! but they must be be able to see the same directory. Each machine with compute ! a row of a particular dynamical matrix. When run with task=220, the code ! assembles all the pieces to construct the dynamical matrices throughout the ! Brillouin zone. ! The final output (PHDISP.OUT and PHDLINES.OUT) is included with this example. tasks 0 205 220 ! scale the number of radial mesh points in the muffin-tins; this is so that ! gradients are accurately calculated nrmtscf 4 ! limit the maximum number of self-consistent loops maxscl 30 ! phonon q-point grid ngridq 4 4 4 ! k-point grid should be commensurate with the q-point grid ngridk 4 4 4 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ! These are the vertices to be joined for the phonon dispersion plot plot1d 7 200 : nvp1d, npp1d 1.0 0.0 0.0 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Al-DFPT0000644000000000000000000000013214061636520022244 xustar0030 mtime=1623670096.356101154 30 atime=1623670096.341101168 30 ctime=1623670096.356101154 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/0000755002504400250440000000000014061636520024356 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/ALPHA2F.OUT0000644000000000000000000000013214061636520023727 xustar0030 mtime=1623670096.343101166 30 atime=1623670096.343101166 30 ctime=1623670096.343101166 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/ALPHA2F.OUT0000644002504400250440000004410414061636520025767 0ustar00dewhurstdewhurst00000000000000 -0.1808426262E-03 0.1486312544E-03 -0.1768640889E-03 0.2753909944E-03 -0.1728855515E-03 0.3165147133E-03 -0.1689070142E-03 0.2884110037E-03 -0.1649284769E-03 0.2320821422E-03 -0.1609499396E-03 0.2240698940E-03 -0.1569714023E-03 0.2167077218E-03 -0.1529928650E-03 0.2133926103E-03 -0.1490143276E-03 0.2129562529E-03 -0.1450357903E-03 0.2603005795E-03 -0.1410572530E-03 0.3002895587E-03 -0.1370787157E-03 0.3102669636E-03 -0.1331001784E-03 0.2713891658E-03 -0.1291216411E-03 0.2500962101E-03 -0.1251431037E-03 0.2720685095E-03 -0.1211645664E-03 0.2216094825E-03 -0.1171860291E-03 0.2061627561E-03 -0.1132074918E-03 0.1463786740E-03 -0.1092289545E-03 0.1977499514E-03 -0.1052504172E-03 0.1737908679E-03 -0.1012718798E-03 0.1611302992E-03 -0.9729334252E-04 0.2317900946E-03 -0.9331480520E-04 0.2768366039E-03 -0.8933626789E-04 0.2917724209E-03 -0.8535773057E-04 0.2026799998E-03 -0.8137919325E-04 0.1840666610E-03 -0.7740065594E-04 0.2044289657E-03 -0.7342211862E-04 0.2121815827E-03 -0.6944358130E-04 0.2059031140E-03 -0.6546504399E-04 0.1775189099E-03 -0.6148650667E-04 0.1617404912E-03 -0.5750796936E-04 0.1222544583E-03 -0.5352943204E-04 0.1000401154E-03 -0.4955089472E-04 0.9859881892E-04 -0.4557235741E-04 0.1000872450E-03 -0.4159382009E-04 0.8798463219E-04 -0.3761528277E-04 0.9673748333E-04 -0.3363674546E-04 0.1045200063E-03 -0.2965820814E-04 0.1101424008E-03 -0.2567967082E-04 0.5696841541E-04 -0.2170113351E-04 0.3869062916E-04 -0.1772259619E-04 0.1875315966E-04 -0.1374405887E-04 0.1656432473E-04 -0.9765521557E-05 0.2598969075E-04 -0.5786984241E-05 0.2598388555E-04 -0.1808446924E-05 0.1838916113E-04 0.2170090392E-05 0.1994680648E-34 0.6148627709E-05 0.000000000 0.1012716503E-04 0.2218403550E-04 0.1410570234E-04 0.4787310539E-04 0.1808423966E-04 0.6420324930E-04 0.2206277697E-04 0.4916274521E-04 0.2604131429E-04 0.3220684438E-04 0.3001985161E-04 0.4309974714E-04 0.3399838892E-04 0.9650969800E-04 0.3797692624E-04 0.1403258254E-03 0.4195546356E-04 0.1431741251E-03 0.4593400087E-04 0.1034711681E-03 0.4991253819E-04 0.9335027807E-04 0.5389107551E-04 0.1276632621E-03 0.5786961282E-04 0.1766534470E-03 0.6184815014E-04 0.2248696725E-03 0.6582668746E-04 0.2246347252E-03 0.6980522477E-04 0.1787944409E-03 0.7378376209E-04 0.2251448482E-03 0.7776229941E-04 0.2127447560E-03 0.8174083672E-04 0.2535864456E-03 0.8571937404E-04 0.2288816815E-03 0.8969791136E-04 0.2904202352E-03 0.9367644867E-04 0.3200839161E-03 0.9765498599E-04 0.2845678599E-03 0.1016335233E-03 0.3137292230E-03 0.1056120606E-03 0.3180206108E-03 0.1095905979E-03 0.3750613816E-03 0.1135691353E-03 0.3837076242E-03 0.1175476726E-03 0.4491293821E-03 0.1215262099E-03 0.4246863469E-03 0.1255047472E-03 0.3597768359E-03 0.1294832845E-03 0.3297324056E-03 0.1334618218E-03 0.4025997736E-03 0.1374403592E-03 0.4600787617E-03 0.1414188965E-03 0.5094009577E-03 0.1453974338E-03 0.4840432849E-03 0.1493759711E-03 0.6284412188E-03 0.1533545084E-03 0.6679803478E-03 0.1573330457E-03 0.6766543411E-03 0.1613115831E-03 0.6151494974E-03 0.1652901204E-03 0.6643016460E-03 0.1692686577E-03 0.7085920604E-03 0.1732471950E-03 0.6660286656E-03 0.1772257323E-03 0.6654779798E-03 0.1812042696E-03 0.7014597529E-03 0.1851828070E-03 0.7225200558E-03 0.1891613443E-03 0.7378954393E-03 0.1931398816E-03 0.8600541734E-03 0.1971184189E-03 0.1091399779E-02 0.2010969562E-03 0.1014132482E-02 0.2050754935E-03 0.1015129517E-02 0.2090540309E-03 0.1067431675E-02 0.2130325682E-03 0.1168961083E-02 0.2170111055E-03 0.1042104049E-02 0.2209896428E-03 0.9021205989E-03 0.2249681801E-03 0.1012719292E-02 0.2289467174E-03 0.1129863955E-02 0.2329252547E-03 0.1300706611E-02 0.2369037921E-03 0.1427621736E-02 0.2408823294E-03 0.1538465356E-02 0.2448608667E-03 0.1446370985E-02 0.2488394040E-03 0.1482648841E-02 0.2528179413E-03 0.1484611225E-02 0.2567964786E-03 0.1582069839E-02 0.2607750160E-03 0.1632624786E-02 0.2647535533E-03 0.1714429157E-02 0.2687320906E-03 0.1599440907E-02 0.2727106279E-03 0.1750142895E-02 0.2766891652E-03 0.1929977047E-02 0.2806677025E-03 0.2189485375E-02 0.2846462399E-03 0.2211244815E-02 0.2886247772E-03 0.2219822499E-02 0.2926033145E-03 0.2368556009E-02 0.2965818518E-03 0.2135515801E-02 0.3005603891E-03 0.2159421066E-02 0.3045389264E-03 0.2328511436E-02 0.3085174638E-03 0.2732961175E-02 0.3124960011E-03 0.2835254183E-02 0.3164745384E-03 0.2869947978E-02 0.3204530757E-03 0.2769680048E-02 0.3244316130E-03 0.3054715816E-02 0.3284101503E-03 0.3050040907E-02 0.3323886877E-03 0.3458168471E-02 0.3363672250E-03 0.3441137514E-02 0.3403457623E-03 0.3493550465E-02 0.3443242996E-03 0.3516756189E-02 0.3483028369E-03 0.3600129383E-02 0.3522813742E-03 0.3935056926E-02 0.3562599116E-03 0.4226933007E-02 0.3602384489E-03 0.4375147570E-02 0.3642169862E-03 0.4413146248E-02 0.3681955235E-03 0.4605127099E-02 0.3721740608E-03 0.5057373727E-02 0.3761525981E-03 0.5232686880E-02 0.3801311355E-03 0.5319776849E-02 0.3841096728E-03 0.5197525198E-02 0.3880882101E-03 0.5734402925E-02 0.3920667474E-03 0.5831294903E-02 0.3960452847E-03 0.6221608148E-02 0.4000238220E-03 0.6535844309E-02 0.4040023594E-03 0.6871682882E-02 0.4079808967E-03 0.7238239431E-02 0.4119594340E-03 0.7323356675E-02 0.4159379713E-03 0.7599023801E-02 0.4199165086E-03 0.8024245233E-02 0.4238950459E-03 0.8414231803E-02 0.4278735833E-03 0.8942037838E-02 0.4318521206E-03 0.8931046801E-02 0.4358306579E-03 0.9203890298E-02 0.4398091952E-03 0.9428727404E-02 0.4437877325E-03 0.1011251296E-01 0.4477662698E-03 0.1084704921E-01 0.4517448072E-03 0.1118935648E-01 0.4557233445E-03 0.1159552872E-01 0.4597018818E-03 0.1113327044E-01 0.4636804191E-03 0.1223187780E-01 0.4676589564E-03 0.1227517067E-01 0.4716374937E-03 0.1345803737E-01 0.4756160311E-03 0.1294898566E-01 0.4795945684E-03 0.1311446425E-01 0.4835731057E-03 0.1469673749E-01 0.4875516430E-03 0.1529466756E-01 0.4915301803E-03 0.1642395971E-01 0.4955087176E-03 0.1520149124E-01 0.4994872550E-03 0.1543291611E-01 0.5034657923E-03 0.1674337054E-01 0.5074443296E-03 0.1782900470E-01 0.5114228669E-03 0.1881774503E-01 0.5154014042E-03 0.1794071218E-01 0.5193799415E-03 0.1863130449E-01 0.5233584789E-03 0.2006884822E-01 0.5273370162E-03 0.2063862220E-01 0.5313155535E-03 0.2096983475E-01 0.5352940908E-03 0.2116463184E-01 0.5392726281E-03 0.2238200045E-01 0.5432511654E-03 0.2360094328E-01 0.5472297028E-03 0.2338253607E-01 0.5512082401E-03 0.2489123880E-01 0.5551867774E-03 0.2509053463E-01 0.5591653147E-03 0.2653248691E-01 0.5631438520E-03 0.2736793609E-01 0.5671223893E-03 0.2843714857E-01 0.5711009267E-03 0.3014281374E-01 0.5750794640E-03 0.3045490887E-01 0.5790580013E-03 0.3140099968E-01 0.5830365386E-03 0.3232095031E-01 0.5870150759E-03 0.3386776011E-01 0.5909936132E-03 0.3574338830E-01 0.5949721506E-03 0.3682164546E-01 0.5989506879E-03 0.3853152349E-01 0.6029292252E-03 0.3875430179E-01 0.6069077625E-03 0.4097374130E-01 0.6108862998E-03 0.4269065619E-01 0.6148648371E-03 0.4571207272E-01 0.6188433745E-03 0.4685513204E-01 0.6228219118E-03 0.4840474223E-01 0.6268004491E-03 0.4935430712E-01 0.6307789864E-03 0.5314571074E-01 0.6347575237E-03 0.5666719747E-01 0.6387360610E-03 0.6057865782E-01 0.6427145984E-03 0.6337276414E-01 0.6466931357E-03 0.6615064369E-01 0.6506716730E-03 0.7351737953E-01 0.6546502103E-03 0.8495394851E-01 0.6586287476E-03 0.9401315163E-01 0.6626072849E-03 0.9934982598E-01 0.6665858222E-03 0.9931249569E-01 0.6705643596E-03 0.9866897590E-01 0.6745428969E-03 0.1000356873 0.6785214342E-03 0.9820695841E-01 0.6824999715E-03 0.1003124350 0.6864785088E-03 0.9993789894E-01 0.6904570461E-03 0.1013390590 0.6944355835E-03 0.1013055510 0.6984141208E-03 0.1013599617 0.7023926581E-03 0.1025349587 0.7063711954E-03 0.1052821559 0.7103497327E-03 0.1046298997 0.7143282700E-03 0.1038352439 0.7183068074E-03 0.1039809692 0.7222853447E-03 0.1049796447 0.7262638820E-03 0.1070143813 0.7302424193E-03 0.1056572193 0.7342209566E-03 0.1076130716 0.7381994939E-03 0.1073588040 0.7421780313E-03 0.1110851318 0.7461565686E-03 0.1114080943 0.7501351059E-03 0.1138148963 0.7541136432E-03 0.1112376319 0.7580921805E-03 0.1138904212 0.7620707178E-03 0.1150064108 0.7660492552E-03 0.1175893430 0.7700277925E-03 0.1193693357 0.7740063298E-03 0.1186857088 0.7779848671E-03 0.1228244178 0.7819634044E-03 0.1230314153 0.7859419417E-03 0.1263817748 0.7899204791E-03 0.1275278645 0.7938990164E-03 0.1285792735 0.7978775537E-03 0.1322864369 0.8018560910E-03 0.1342809495 0.8058346283E-03 0.1385208960 0.8098131656E-03 0.1430014037 0.8137917030E-03 0.1438504478 0.8177702403E-03 0.1488915840 0.8217487776E-03 0.1511634864 0.8257273149E-03 0.1588005720 0.8297058522E-03 0.1620030724 0.8336843895E-03 0.1626881929 0.8376629269E-03 0.1644354384 0.8416414642E-03 0.1648815495 0.8456200015E-03 0.1695779929 0.8495985388E-03 0.1713657024 0.8535770761E-03 0.1713606293 0.8575556134E-03 0.1698323733 0.8615341508E-03 0.1705420826 0.8655126881E-03 0.1736562887 0.8694912254E-03 0.1795133876 0.8734697627E-03 0.1790268017 0.8774483000E-03 0.1820236860 0.8814268373E-03 0.1831938618 0.8854053747E-03 0.1875852800 0.8893839120E-03 0.1923586788 0.8933624493E-03 0.1957722773 0.8973409866E-03 0.1977402506 0.9013195239E-03 0.2018452446 0.9052980612E-03 0.2066319004 0.9092765986E-03 0.2139487245 0.9132551359E-03 0.2167484516 0.9172336732E-03 0.2211033051 0.9212122105E-03 0.2251974387 0.9251907478E-03 0.2310381146 0.9291692851E-03 0.2317076612 0.9331478225E-03 0.2353180169 0.9371263598E-03 0.2382216661 0.9411048971E-03 0.2421412845 0.9450834344E-03 0.2483303874 0.9490619717E-03 0.2490668583 0.9530405090E-03 0.2525791625 0.9570190464E-03 0.2508793529 0.9609975837E-03 0.2566859204 0.9649761210E-03 0.2619856195 0.9689546583E-03 0.2681458890 0.9729331956E-03 0.2710465786 0.9769117329E-03 0.2703863540 0.9808902703E-03 0.2613794021 0.9848688076E-03 0.2483481155 0.9888473449E-03 0.2344887179 0.9928258822E-03 0.2288416251 0.9968044195E-03 0.2227325632 0.1000782957E-02 0.2194011752 0.1004761494E-02 0.2080731751 0.1008740031E-02 0.2006605170 0.1012718569E-02 0.1910309064 0.1016697106E-02 0.1839813975 0.1020675643E-02 0.1749247443 0.1024654181E-02 0.1732813098 0.1028632718E-02 0.1757118588 0.1032611255E-02 0.1740543929 0.1036589793E-02 0.1740947797 0.1040568330E-02 0.1709899669 0.1044546867E-02 0.1758168492 0.1048525405E-02 0.1761891776 0.1052503942E-02 0.1779508245 0.1056482479E-02 0.1790024020 0.1060461017E-02 0.1813385796 0.1064439554E-02 0.1825473769 0.1068418091E-02 0.1814675107 0.1072396629E-02 0.1807581721 0.1076375166E-02 0.1853673518 0.1080353703E-02 0.1867457737 0.1084332240E-02 0.1869655623 0.1088310778E-02 0.1856120859 0.1092289315E-02 0.1894987356 0.1096267852E-02 0.1911077841 0.1100246390E-02 0.1917944789 0.1104224927E-02 0.1924879828 0.1108203464E-02 0.1924253558 0.1112182002E-02 0.1936426584 0.1116160539E-02 0.1953169230 0.1120139076E-02 0.1965597864 0.1124117614E-02 0.1973668019 0.1128096151E-02 0.2001622165 0.1132074688E-02 0.2007574921 0.1136053226E-02 0.1992229527 0.1140031763E-02 0.1986392473 0.1144010300E-02 0.2028906719 0.1147988838E-02 0.2029594156 0.1151967375E-02 0.2023527120 0.1155945912E-02 0.1991991118 0.1159924449E-02 0.2029245090 0.1163902987E-02 0.2023281927 0.1167881524E-02 0.2008925690 0.1171860061E-02 0.2020783836 0.1175838599E-02 0.1985854804 0.1179817136E-02 0.1974281360 0.1183795673E-02 0.1954981927 0.1187774211E-02 0.1962874992 0.1191752748E-02 0.1965853909 0.1195731285E-02 0.1904580289 0.1199709823E-02 0.1875463461 0.1203688360E-02 0.1858981315 0.1207666897E-02 0.1825039869 0.1211645435E-02 0.1822688813 0.1215623972E-02 0.1763724978 0.1219602509E-02 0.1768565139 0.1223581047E-02 0.1677340098 0.1227559584E-02 0.1665880688 0.1231538121E-02 0.1588844622 0.1235516659E-02 0.1532208807 0.1239495196E-02 0.1445122878 0.1243473733E-02 0.1383919029 0.1247452270E-02 0.1372399777 0.1251430808E-02 0.1338844742 0.1255409345E-02 0.1371080758 0.1259387882E-02 0.1379617535 0.1263366420E-02 0.1439094481 0.1267344957E-02 0.1476638246 0.1271323494E-02 0.1535207268 0.1275302032E-02 0.1576453872 0.1279280569E-02 0.1628440168 0.1283259106E-02 0.1707980298 0.1287237644E-02 0.1829418594 0.1291216181E-02 0.1896015698 0.1295194718E-02 0.1998189510 0.1299173256E-02 0.2066539814 0.1303151793E-02 0.2160904116 0.1307130330E-02 0.2279832237 0.1311108868E-02 0.2390745819 0.1315087405E-02 0.2537601060 0.1319065942E-02 0.2666619982 0.1323044479E-02 0.2752657496 0.1327023017E-02 0.2951972187 0.1331001554E-02 0.3067240221 0.1334980091E-02 0.3245073068 0.1338958629E-02 0.3384719098 0.1342937166E-02 0.3523048840 0.1346915703E-02 0.3771866355 0.1350894241E-02 0.4001234273 0.1354872778E-02 0.4307752699 0.1358851315E-02 0.4591587293 0.1362829853E-02 0.5004092261 0.1366808390E-02 0.5461501132 0.1370786927E-02 0.5836726613 0.1374765465E-02 0.5901836825 0.1378744002E-02 0.5834320238 0.1382722539E-02 0.5682518069 0.1386701077E-02 0.5570240047 0.1390679614E-02 0.5430294693 0.1394658151E-02 0.5353694019 0.1398636688E-02 0.5303436486 0.1402615226E-02 0.5329456414 0.1406593763E-02 0.5317442884 0.1410572300E-02 0.5388568577 0.1414550838E-02 0.5382934827 0.1418529375E-02 0.5438753913 0.1422507912E-02 0.5450922247 0.1426486450E-02 0.5541694744 0.1430464987E-02 0.5676624393 0.1434443524E-02 0.5782366855 0.1438422062E-02 0.5999985072 0.1442400599E-02 0.6106097701 0.1446379136E-02 0.6420668651 0.1450357674E-02 0.6833438147 0.1454336211E-02 0.7212229106 0.1458314748E-02 0.7516990083 0.1462293286E-02 0.7348204976 0.1466271823E-02 0.7081069182 0.1470250360E-02 0.6593678456 0.1474228898E-02 0.6338603324 0.1478207435E-02 0.6141880135 0.1482185972E-02 0.6026401763 0.1486164509E-02 0.5757216947 0.1490143047E-02 0.5458649432 0.1494121584E-02 0.4994360228 0.1498100121E-02 0.4602342753 0.1502078659E-02 0.4274304091 0.1506057196E-02 0.4062400705 0.1510035733E-02 0.3764532731 0.1514014271E-02 0.3423280617 0.1517992808E-02 0.3052712112 0.1521971345E-02 0.2753850627 0.1525949883E-02 0.2579603264 0.1529928420E-02 0.2415304756 0.1533906957E-02 0.2246154773 0.1537885495E-02 0.2075639988 0.1541864032E-02 0.1884399387 0.1545842569E-02 0.1747149108 0.1549821107E-02 0.1510549896 0.1553799644E-02 0.1318714882 0.1557778181E-02 0.1016814986 0.1561756718E-02 0.7592465735E-01 0.1565735256E-02 0.5707736455E-01 0.1569713793E-02 0.5530535482E-01 0.1573692330E-02 0.5070682221E-01 0.1577670868E-02 0.4919879505E-01 0.1581649405E-02 0.4569132903E-01 0.1585627942E-02 0.4625558295E-01 0.1589606480E-02 0.4219434041E-01 0.1593585017E-02 0.3996641807E-01 0.1597563554E-02 0.3616406166E-01 0.1601542092E-02 0.3723839475E-01 0.1605520629E-02 0.3243074884E-01 0.1609499166E-02 0.3236621632E-01 0.1613477704E-02 0.2836988713E-01 0.1617456241E-02 0.2633458359E-01 0.1621434778E-02 0.2473928504E-01 0.1625413316E-02 0.2220849431E-01 0.1629391853E-02 0.1977182607E-01 0.1633370390E-02 0.1575852557E-01 0.1637348927E-02 0.1206676176E-01 0.1641327465E-02 0.7160197122E-02 0.1645306002E-02 0.3107037115E-02 0.1649284539E-02 0.4152109777E-04 0.1653263077E-02 0.000000000 0.1657241614E-02 0.000000000 0.1661220151E-02 0.000000000 0.1665198689E-02 0.000000000 0.1669177226E-02 0.000000000 0.1673155763E-02 0.000000000 0.1677134301E-02 0.000000000 0.1681112838E-02 0.000000000 0.1685091375E-02 0.000000000 0.1689069913E-02 0.000000000 0.1693048450E-02 0.000000000 0.1697026987E-02 0.000000000 0.1701005525E-02 0.000000000 0.1704984062E-02 0.000000000 0.1708962599E-02 0.000000000 0.1712941136E-02 0.000000000 0.1716919674E-02 0.000000000 0.1720898211E-02 0.000000000 0.1724876748E-02 0.000000000 0.1728855286E-02 0.000000000 0.1732833823E-02 0.000000000 0.1736812360E-02 0.000000000 0.1740790898E-02 0.000000000 0.1744769435E-02 0.000000000 0.1748747972E-02 0.000000000 0.1752726510E-02 0.000000000 0.1756705047E-02 0.000000000 0.1760683584E-02 0.000000000 0.1764662122E-02 0.000000000 0.1768640659E-02 0.000000000 0.1772619196E-02 0.000000000 0.1776597734E-02 0.000000000 0.1780576271E-02 0.000000000 0.1784554808E-02 0.000000000 0.1788533346E-02 0.000000000 0.1792511883E-02 0.000000000 0.1796490420E-02 0.000000000 0.1800468957E-02 0.000000000 0.1804447495E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/ELIASHBERG_GAP_T.OUT0000644000000000000000000000013214061636520025271 xustar0030 mtime=1623670096.345101165 30 atime=1623670096.345101165 30 ctime=1623670096.345101165 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/ELIASHBERG_GAP_T.OUT0000644002504400250440000001046014061636520027327 0ustar00dewhurstdewhurst00000000000000 0.1165486246 0.4552402555E-05 1.420983284 0.1475569742 0.4552938572E-05 1.420981757 0.1785653239 0.4552717911E-05 1.420979836 0.2095736736 0.4549299004E-05 1.420977344 0.2405820232 0.4541859195E-05 1.420974476 0.2715903729 0.4529830978E-05 1.420971531 0.3025987225 0.4509266570E-05 1.420968891 0.3336070722 0.4478685366E-05 1.420965929 0.3646154218 0.4436646796E-05 1.420963814 0.3956237715 0.4383357043E-05 1.420961579 0.4266321212 0.4317956452E-05 1.420960056 0.4576404708 0.4233422063E-05 1.420958113 0.4886488205 0.4135280324E-05 1.420956880 0.5196571701 0.4019366591E-05 1.420956676 0.5506655198 0.3879118541E-05 1.420955951 0.5816738695 0.3720175841E-05 1.420956102 0.6126822191 0.3524844898E-05 1.420957407 0.6436905688 0.3306251083E-05 1.420958238 0.6746989184 0.3051145288E-05 1.420960166 0.7057072681 0.2736902359E-05 1.420962255 0.7367156177 0.2356544574E-05 1.420964242 0.7677239674 0.1873202066E-05 1.420967109 0.7987323171 0.1135679257E-05 1.420970527 0.8297406667 0.1612068212E-06 1.420973459 0.8607490164 0.1014285074E-08 1.420973018 0.8917573660 0.3090708148E-09 1.420973260 0.9227657157 0.3058819562E-09 1.420973239 0.9537740653 0.1732715892E-09 1.420973456 0.9847824150 0.1704154311E-09 1.420972642 1.015790765 0.1221315618E-09 1.420972960 1.046799114 0.1193788232E-09 1.420973027 1.077807464 0.1164411394E-09 1.420973179 1.108815814 0.8692591807E-10 1.420973751 1.139824163 0.8425204931E-10 1.420973025 1.170832513 0.8150922992E-10 1.420973277 1.201840863 0.7867187104E-10 1.420972679 1.232849212 0.6217049624E-10 1.420973616 1.263857562 0.5964292132E-10 1.420971873 1.294865912 0.5711566594E-10 1.420972114 1.325874261 0.5458352572E-10 1.420972286 1.356882611 0.5205039631E-10 1.420972556 1.387890961 0.4952434538E-10 1.420973091 1.418899310 0.4701509238E-10 1.420974058 1.449907660 0.4453272493E-10 1.420973018 1.480916010 0.4209715523E-10 1.420972633 1.511924359 0.3970688711E-10 1.420973072 1.542932709 0.3737938168E-10 1.420971723 1.573941059 0.3511185225E-10 1.420971422 1.604949408 0.3291913086E-10 1.420972338 1.635957758 0.3079721213E-10 1.420971688 1.666966107 0.2875840157E-10 1.420972478 1.697974457 0.2680536908E-10 1.420971816 1.728982807 0.2493253717E-10 1.420972815 1.759991156 0.2314865216E-10 1.420972475 1.790999506 0.2145413587E-10 1.420974018 1.822007856 0.1984868512E-10 1.420974333 1.853016205 0.1833142660E-10 1.420973422 1.884024555 0.1690098591E-10 1.420971279 1.915032905 0.1555555575E-10 1.420971359 1.946041254 0.1429295777E-10 1.420973826 1.977049604 0.1311073771E-10 1.420971727 2.008057954 0.1200621091E-10 1.420972128 2.039066303 0.1097647484E-10 1.420971522 2.070074653 0.1001848377E-10 1.420973641 2.101083003 0.9132507558E-11 1.420971081 2.132091352 0.8311503069E-11 1.420971357 2.163099702 0.7552136187E-11 1.420974632 2.194108052 0.6851120695E-11 1.420973179 2.225116401 0.6205219904E-11 1.420970828 2.256124751 0.5613524349E-11 1.420971650 2.287133101 0.5070291318E-11 1.420971688 2.318141450 0.4572432423E-11 1.420970944 2.349149800 0.4118744521E-11 1.420973651 2.380158150 0.3704343015E-11 1.420971399 2.411166499 0.3326468409E-11 1.420972710 2.442174849 0.2983837193E-11 1.420973349 2.473183199 0.2672408382E-11 1.420973318 2.504191548 0.2390920329E-11 1.420972617 2.535199898 0.2135846495E-11 1.420971245 2.566208248 0.1905074615E-11 1.420973826 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/MCMILLAN.OUT0000644000000000000000000000013214061636520024106 xustar0030 mtime=1623670096.346101164 30 atime=1623670096.346101164 30 ctime=1623670096.346101164 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/MCMILLAN.OUT0000644002504400250440000000053214061636520026143 0ustar00dewhurstdewhurst00000000000000 Electron-phonon coupling constant, lambda : 0.4237123761 Logarithmic average frequency : 0.1068940640E-02 RMS average frequency : 0.1161090651E-02 Coulomb pseudopotential, mu* : 0.1500000000 McMillan-Allen-Dynes superconducting critical temperature [Eq. 34, Phys. Rev. B 12, 905 (1975)] (kelvin) : 0.5132416494 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000013214061636520023701 xustar0030 mtime=1623670096.348101162 30 atime=1623670096.348101162 30 ctime=1623670096.348101162 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PHDISP.OUT0000644002504400250440000005331214061636520025742 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.3420208952E-10 0.1367793241E-01 0.1395975825E-04 0.2735586482E-01 0.2811116802E-04 0.4103379724E-01 0.4263638565E-04 0.5471172965E-01 0.5769959260E-04 0.6838966206E-01 0.7344031904E-04 0.8206759447E-01 0.8996898946E-04 0.9574552688E-01 0.1073647223E-03 0.1094234593 0.1256751165E-03 0.1231013917 0.1449175914E-03 0.1367793241 0.1650818093E-03 0.1504572565 0.1861327570E-03 0.1641351889 0.2080141521E-03 0.1778131214 0.2306519397E-03 0.1914910538 0.2539577266E-03 0.2051689862 0.2778320642E-03 0.2188469186 0.3021675364E-03 0.2325248510 0.3268516307E-03 0.2462027834 0.3517693906E-03 0.2598807158 0.3768058469E-03 0.2735586482 0.4018482323E-03 0.2872365807 0.4267879789E-03 0.3009145131 0.4515224963E-03 0.3145924455 0.4759567251E-03 0.3282703779 0.5000044597E-03 0.3419483103 0.5235894294E-03 0.3556262427 0.5466461283E-03 0.3693041751 0.5691203841E-03 0.3829821075 0.5909696551E-03 0.3966600400 0.6121630513E-03 0.4103379724 0.6326810726E-03 0.4240159048 0.6525150689E-03 0.4376938372 0.6716664277E-03 0.4513717696 0.6901455040E-03 0.4650497020 0.7079703165E-03 0.4787276344 0.7251650399E-03 0.4924055668 0.7417583354E-03 0.5060834992 0.7577815682E-03 0.5197614317 0.7732669673E-03 0.5334393641 0.7882457918E-03 0.5471172965 0.8027465676E-03 0.5607952289 0.8167934605E-03 0.5744731613 0.8304048486E-03 0.5881510937 0.8435921480E-03 0.6018290261 0.8563589386E-03 0.6155069585 0.8687004217E-03 0.6291848910 0.8806032273E-03 0.6428628234 0.8920455733E-03 0.6565407558 0.9029977638E-03 0.6702186882 0.9134229989E-03 0.6838966206 0.9232784567E-03 0.6975745530 0.9325165990E-03 0.7112524854 0.9410866446E-03 0.7249304178 0.9489361531E-03 0.7386083503 0.9560126588E-03 0.7522862827 0.9622652970E-03 0.7659642151 0.9676463705E-03 0.7796421475 0.9721128052E-03 0.7933200799 0.9756274546E-03 0.8069980123 0.9781602152E-03 0.8206759447 0.9796889239E-03 0.8343538771 0.9802000156E-03 0.8482356956 0.9800119746E-03 0.8621175141 0.9794484320E-03 0.8759993325 0.9785111233E-03 0.8898811510 0.9772029234E-03 0.9037629694 0.9755278196E-03 0.9176447879 0.9734908747E-03 0.9315266063 0.9710981796E-03 0.9454084248 0.9683567957E-03 0.9592902433 0.9652746882E-03 0.9731720617 0.9618606501E-03 0.9870538802 0.9581242167E-03 1.000935699 0.9540755731E-03 1.014817517 0.9497254534E-03 1.028699336 0.9450850337E-03 1.042581154 0.9401658186E-03 1.056462972 0.9349795237E-03 1.070344791 0.9295379529E-03 1.084226609 0.9238528741E-03 1.098108428 0.9179358925E-03 1.111990246 0.9117983239E-03 1.125872065 0.9054510692E-03 1.139753883 0.8989044905E-03 1.153635702 0.8921682923E-03 1.167517520 0.8852514070E-03 1.181399339 0.8781618880E-03 1.195281157 0.8709068102E-03 1.209162975 0.8634921812E-03 1.223044794 0.8559228627E-03 1.236926612 0.8482025043E-03 1.250808431 0.8403334907E-03 1.264690249 0.8323169032E-03 1.278572068 0.8241524954E-03 1.292453886 0.8158386854E-03 1.306335705 0.8073725629E-03 1.320217523 0.7987499122E-03 1.334099342 0.7899652517E-03 1.347981160 0.7810118872E-03 1.361862979 0.7718819810E-03 1.375744797 0.7625666343E-03 1.389626615 0.7530559821E-03 1.403508434 0.7433392998E-03 1.417390252 0.7334051198E-03 1.431272071 0.7232413569E-03 1.445153889 0.7128354400E-03 1.459035708 0.7021744503E-03 1.472917526 0.6912452620E-03 1.486799345 0.6800346858E-03 1.500681163 0.6685296127E-03 1.514562982 0.6567171566E-03 1.528444800 0.6445847946E-03 1.542326618 0.6321205026E-03 1.556208437 0.6193128872E-03 1.570090255 0.6061513098E-03 1.583972074 0.5926260046E-03 1.597853892 0.5787281877E-03 1.611735711 0.5644501584E-03 1.625617529 0.5497853900E-03 1.639499348 0.5347286120E-03 1.653381166 0.5192758811E-03 1.667262985 0.5034246429E-03 1.681144803 0.4871737824E-03 1.695026621 0.4705236645E-03 1.708908440 0.4534761639E-03 1.722790258 0.4360346849E-03 1.736672077 0.4182041715E-03 1.750553895 0.3999911068E-03 1.764435714 0.3814035037E-03 1.778317532 0.3624508865E-03 1.792199351 0.3431442632E-03 1.806081169 0.3234960901E-03 1.819962988 0.3035202275E-03 1.833844806 0.2832318892E-03 1.847726625 0.2626475838E-03 1.861608443 0.2417850498E-03 1.875490261 0.2206631848E-03 1.889372080 0.1993019688E-03 1.903253898 0.1777223822E-03 1.917135717 0.1559463192E-03 1.931017535 0.1339964970E-03 1.944899354 0.1118963613E-03 1.958781172 0.8966998794E-04 1.972662991 0.6734198276E-04 1.986544809 0.4493737796E-04 2.000426628 0.2248152738E-04 2.014308446 -0.3420208952E-10 2.027941873 0.2370354388E-04 2.041575301 0.4736585954E-04 2.055208728 0.7094588699E-04 2.068842156 0.9440290202E-04 2.082475583 0.1176966823E-03 2.096109011 0.1407876711E-03 2.109742438 0.1636371386E-03 2.123375865 0.1862073390E-03 2.137009293 0.2084616636E-03 2.150642720 0.2303647889E-03 2.164276148 0.2518828185E-03 2.177909575 0.2729834193E-03 2.191543002 0.2936359494E-03 2.205176430 0.3138115788E-03 2.218809857 0.3334834017E-03 2.232443285 0.3526265385E-03 2.246076712 0.3712182287E-03 2.259710140 0.3892379126E-03 2.273343567 0.4066673017E-03 2.286976994 0.4234904369E-03 2.300610422 0.4396937341E-03 2.314243849 0.4552660161E-03 2.327877277 0.4701985311E-03 2.341510704 0.4844849558E-03 2.355144132 0.4981213836E-03 2.368777559 0.5111062973E-03 2.382410986 0.5234405258E-03 2.396044414 0.5351271831E-03 2.409677841 0.5461715923E-03 2.423311269 0.5565811908E-03 2.436944696 0.5663654194E-03 2.450578123 0.5755355941E-03 2.464211551 0.5841047609E-03 2.477844978 0.5920875345E-03 2.491478406 0.5994999209E-03 2.505111833 0.6063591254E-03 2.518745261 0.6126833465E-03 2.532378688 0.6184915582E-03 2.546012115 0.6238032803E-03 2.559645543 0.6286383419E-03 2.573278970 0.6330166366E-03 2.586912398 0.6369578758E-03 2.600545825 0.6404813395E-03 2.614179253 0.6436056306E-03 2.627812680 0.6463484338E-03 2.641446107 0.6487262841E-03 2.655079535 0.6507543468E-03 2.668712962 0.6524462147E-03 2.682346390 0.6538137227E-03 2.695979817 0.6548667865E-03 2.709613245 0.6556132653E-03 2.723246672 0.6560588526E-03 2.736880099 0.6562069967E-03 0.000000000 -0.3420208952E-10 0.1367793241E-01 0.1395975825E-04 0.2735586482E-01 0.2811116802E-04 0.4103379724E-01 0.4263638565E-04 0.5471172965E-01 0.5769959260E-04 0.6838966206E-01 0.7344031904E-04 0.8206759447E-01 0.8996898946E-04 0.9574552688E-01 0.1073647223E-03 0.1094234593 0.1256751165E-03 0.1231013917 0.1449175914E-03 0.1367793241 0.1650818093E-03 0.1504572565 0.1861327570E-03 0.1641351889 0.2080141521E-03 0.1778131214 0.2306519397E-03 0.1914910538 0.2539577266E-03 0.2051689862 0.2778320642E-03 0.2188469186 0.3021675364E-03 0.2325248510 0.3268516307E-03 0.2462027834 0.3517693906E-03 0.2598807158 0.3768058469E-03 0.2735586482 0.4018482323E-03 0.2872365807 0.4267879789E-03 0.3009145131 0.4515224963E-03 0.3145924455 0.4759567251E-03 0.3282703779 0.5000044597E-03 0.3419483103 0.5235894294E-03 0.3556262427 0.5466461283E-03 0.3693041751 0.5691203841E-03 0.3829821075 0.5909696551E-03 0.3966600400 0.6121630513E-03 0.4103379724 0.6326810726E-03 0.4240159048 0.6525150689E-03 0.4376938372 0.6716664277E-03 0.4513717696 0.6901455040E-03 0.4650497020 0.7079703165E-03 0.4787276344 0.7251650399E-03 0.4924055668 0.7417583354E-03 0.5060834992 0.7577815682E-03 0.5197614317 0.7732669673E-03 0.5334393641 0.7882457918E-03 0.5471172965 0.8027465676E-03 0.5607952289 0.8167934605E-03 0.5744731613 0.8304048486E-03 0.5881510937 0.8435921480E-03 0.6018290261 0.8563589386E-03 0.6155069585 0.8687004217E-03 0.6291848910 0.8806032273E-03 0.6428628234 0.8920455733E-03 0.6565407558 0.9029977638E-03 0.6702186882 0.9134229989E-03 0.6838966206 0.9232784567E-03 0.6975745530 0.9325165990E-03 0.7112524854 0.9410866446E-03 0.7249304178 0.9489361531E-03 0.7386083503 0.9560126588E-03 0.7522862827 0.9622652970E-03 0.7659642151 0.9676463705E-03 0.7796421475 0.9721128052E-03 0.7933200799 0.9756274546E-03 0.8069980123 0.9781602152E-03 0.8206759447 0.9796889239E-03 0.8343538771 0.9802000156E-03 0.8482356956 0.9812857104E-03 0.8621175141 0.9845284034E-03 0.8759993325 0.9898854379E-03 0.8898811510 0.9972873991E-03 0.9037629694 0.1006640482E-02 0.9176447879 0.1017829524E-02 0.9315266063 0.1030721476E-02 0.9454084248 0.1045169078E-02 0.9592902433 0.1061014512E-02 0.9731720617 0.1078092876E-02 0.9870538802 0.1096235330E-02 1.000935699 0.1115271842E-02 1.014817517 0.1135033509E-02 1.028699336 0.1155354433E-02 1.042581154 0.1176073193E-02 1.056462972 0.1197033951E-02 1.070344791 0.1218087240E-02 1.084226609 0.1239090495E-02 1.098108428 0.1259908360E-02 1.111990246 0.1280412835E-02 1.125872065 0.1300483298E-02 1.139753883 0.1320006424E-02 1.153635702 0.1338876045E-02 1.167517520 0.1356992958E-02 1.181399339 0.1374261544E-02 1.195281157 0.1355591700E-02 1.209162975 0.1336647769E-02 1.223044794 0.1317465419E-02 1.236926612 0.1298078700E-02 1.250808431 0.1278519808E-02 1.264690249 0.1258818849E-02 1.278572068 0.1239003633E-02 1.292453886 0.1219099474E-02 1.306335705 0.1199129018E-02 1.320217523 0.1179112086E-02 1.334099342 0.1159065554E-02 1.347981160 0.1139003257E-02 1.361862979 0.1118935919E-02 1.375744797 0.1098871125E-02 1.389626615 0.1078813321E-02 1.403508434 0.1058763851E-02 1.417390252 0.1038721029E-02 1.431272071 0.1018680247E-02 1.445153889 0.9986341138E-03 1.459035708 0.9785726288E-03 1.472917526 0.9584833850E-03 1.486799345 0.9383517992E-03 1.500681163 0.9181613655E-03 1.514562982 0.8978939299E-03 1.528444800 0.8775299802E-03 1.542326618 0.8570489479E-03 1.556208437 0.8364295183E-03 1.570090255 0.8156499427E-03 1.583972074 0.7946883499E-03 1.597853892 0.7735230527E-03 1.611735711 0.7521328446E-03 1.625617529 0.7304972840E-03 1.639499348 0.7085969635E-03 1.653381166 0.6864137596E-03 1.667262985 0.6639310623E-03 1.681144803 0.6411339822E-03 1.695026621 0.6180095336E-03 1.708908440 0.5945467927E-03 1.722790258 0.5707370309E-03 1.736672077 0.5465738215E-03 1.750553895 0.5220531222E-03 1.764435714 0.4971733315E-03 1.778317532 0.4719353209E-03 1.792199351 0.4463424441E-03 1.806081169 0.4204005225E-03 1.819962988 0.3941178100E-03 1.833844806 0.3675049373E-03 1.847726625 0.3405748369E-03 1.861608443 0.3133426509E-03 1.875490261 0.2858256218E-03 1.889372080 0.2580429691E-03 1.903253898 0.2300157515E-03 1.917135717 0.2017667173E-03 1.931017535 0.1733201437E-03 1.944899354 0.1447016666E-03 1.958781172 0.1159381014E-03 1.972662991 0.8705725766E-04 1.986544809 0.5808774701E-04 2.000426628 0.2905878676E-04 2.014308446 -0.3420208952E-10 2.027941873 0.2370354388E-04 2.041575301 0.4736585954E-04 2.055208728 0.7094588699E-04 2.068842156 0.9440290202E-04 2.082475583 0.1176966823E-03 2.096109011 0.1407876711E-03 2.109742438 0.1636371386E-03 2.123375865 0.1862073390E-03 2.137009293 0.2084616636E-03 2.150642720 0.2303647889E-03 2.164276148 0.2518828185E-03 2.177909575 0.2729834193E-03 2.191543002 0.2936359494E-03 2.205176430 0.3138115788E-03 2.218809857 0.3334834017E-03 2.232443285 0.3526265385E-03 2.246076712 0.3712182287E-03 2.259710140 0.3892379126E-03 2.273343567 0.4066673017E-03 2.286976994 0.4234904369E-03 2.300610422 0.4396937341E-03 2.314243849 0.4552660161E-03 2.327877277 0.4701985311E-03 2.341510704 0.4844849558E-03 2.355144132 0.4981213836E-03 2.368777559 0.5111062973E-03 2.382410986 0.5234405258E-03 2.396044414 0.5351271831E-03 2.409677841 0.5461715923E-03 2.423311269 0.5565811908E-03 2.436944696 0.5663654194E-03 2.450578123 0.5755355941E-03 2.464211551 0.5841047609E-03 2.477844978 0.5920875345E-03 2.491478406 0.5994999209E-03 2.505111833 0.6063591254E-03 2.518745261 0.6126833465E-03 2.532378688 0.6184915582E-03 2.546012115 0.6238032803E-03 2.559645543 0.6286383419E-03 2.573278970 0.6330166366E-03 2.586912398 0.6369578758E-03 2.600545825 0.6404813395E-03 2.614179253 0.6436056306E-03 2.627812680 0.6463484338E-03 2.641446107 0.6487262841E-03 2.655079535 0.6507543468E-03 2.668712962 0.6524462147E-03 2.682346390 0.6538137227E-03 2.695979817 0.6548667865E-03 2.709613245 0.6556132653E-03 2.723246672 0.6560588526E-03 2.736880099 0.6562069967E-03 0.000000000 -0.3420208952E-10 0.1367793241E-01 0.3823884523E-04 0.2735586482E-01 0.7655998645E-04 0.4103379724E-01 0.1150412827E-03 0.5471172965E-01 0.1537519379E-03 0.6838966206E-01 0.1927487035E-03 0.8206759447E-01 0.2320726719E-03 0.9574552688E-01 0.2717467869E-03 0.1094234593 0.3117741532E-03 0.1231013917 0.3521371737E-03 0.1367793241 0.3927975063E-03 0.1504572565 0.4336967888E-03 0.1641351889 0.4747580608E-03 0.1778131214 0.5158877861E-03 0.1914910538 0.5569783745E-03 0.2051689862 0.5979110955E-03 0.2188469186 0.6385592786E-03 0.2325248510 0.6787916997E-03 0.2462027834 0.7184760577E-03 0.2598807158 0.7574824543E-03 0.2735586482 0.7956867946E-03 0.2872365807 0.8329740310E-03 0.3009145131 0.8692411810E-03 0.3145924455 0.9044000482E-03 0.3282703779 0.9383795843E-03 0.3419483103 0.9711278272E-03 0.3556262427 0.1002613358E-02 0.3693041751 0.1032826223E-02 0.3829821075 0.1061778263E-02 0.3966600400 0.1089502819E-02 0.4103379724 0.1116053772E-02 0.4240159048 0.1141503910E-02 0.4376938372 0.1165942611E-02 0.4513717696 0.1189472885E-02 0.4650497020 0.1212207812E-02 0.4787276344 0.1234266480E-02 0.4924055668 0.1255769519E-02 0.5060834992 0.1276834407E-02 0.5197614317 0.1297570705E-02 0.5334393641 0.1318075430E-02 0.5471172965 0.1338428772E-02 0.5607952289 0.1358690347E-02 0.5744731613 0.1378896178E-02 0.5881510937 0.1399056545E-02 0.6018290261 0.1419154813E-02 0.6155069585 0.1439147272E-02 0.6291848910 0.1458964002E-02 0.6428628234 0.1478510694E-02 0.6565407558 0.1497671319E-02 0.6702186882 0.1516311521E-02 0.6838966206 0.1534282560E-02 0.6975745530 0.1551425638E-02 0.7112524854 0.1567576449E-02 0.7249304178 0.1582569772E-02 0.7386083503 0.1596243986E-02 0.7522862827 0.1608445368E-02 0.7659642151 0.1619032074E-02 0.7796421475 0.1627877728E-02 0.7933200799 0.1634874537E-02 0.8069980123 0.1639935904E-02 0.8206759447 0.1642998481E-02 0.8343538771 0.1644023664E-02 0.8482356956 0.1643523278E-02 0.8621175141 0.1642023593E-02 0.8759993325 0.1639529018E-02 0.8898811510 0.1636046875E-02 0.9037629694 0.1631587366E-02 0.9176447879 0.1626163520E-02 0.9315266063 0.1619791124E-02 0.9454084248 0.1612488649E-02 0.9592902433 0.1604277149E-02 0.9731720617 0.1595180158E-02 0.9870538802 0.1585223561E-02 1.000935699 0.1574435464E-02 1.014817517 0.1562846035E-02 1.028699336 0.1550487351E-02 1.042581154 0.1537393212E-02 1.056462972 0.1523598957E-02 1.070344791 0.1509141263E-02 1.084226609 0.1494057931E-02 1.098108428 0.1478387666E-02 1.111990246 0.1462169841E-02 1.125872065 0.1445444263E-02 1.139753883 0.1428250919E-02 1.153635702 0.1410629725E-02 1.167517520 0.1392620268E-02 1.181399339 0.1374264711E-02 1.195281157 0.1390605367E-02 1.209162975 0.1405935262E-02 1.223044794 0.1420180772E-02 1.236926612 0.1433274069E-02 1.250808431 0.1445152897E-02 1.264690249 0.1455760355E-02 1.278572068 0.1465044687E-02 1.292453886 0.1472959085E-02 1.306335705 0.1479461501E-02 1.320217523 0.1484514475E-02 1.334099342 0.1488084963E-02 1.347981160 0.1490144177E-02 1.361862979 0.1490667441E-02 1.375744797 0.1489634042E-02 1.389626615 0.1487027091E-02 1.403508434 0.1482833397E-02 1.417390252 0.1477043333E-02 1.431272071 0.1469650719E-02 1.445153889 0.1460652698E-02 1.459035708 0.1450049623E-02 1.472917526 0.1437844943E-02 1.486799345 0.1424045092E-02 1.500681163 0.1408659378E-02 1.514562982 0.1391699882E-02 1.528444800 0.1373181350E-02 1.542326618 0.1353121088E-02 1.556208437 0.1331538864E-02 1.570090255 0.1308456807E-02 1.583972074 0.1283899307E-02 1.597853892 0.1257892918E-02 1.611735711 0.1230466265E-02 1.625617529 0.1201649948E-02 1.639499348 0.1171476449E-02 1.653381166 0.1139980042E-02 1.667262985 0.1107196704E-02 1.681144803 0.1073164026E-02 1.695026621 0.1037921130E-02 1.708908440 0.1001508584E-02 1.722790258 0.9639683170E-03 1.736672077 0.9253435454E-03 1.750553895 0.8856786904E-03 1.764435714 0.8450193042E-03 1.778317532 0.8034119960E-03 1.792199351 0.7609043610E-03 1.806081169 0.7175449105E-03 1.819962988 0.6733830052E-03 1.833844806 0.6284687898E-03 1.847726625 0.5828531304E-03 1.861608443 0.5365875529E-03 1.875490261 0.4897241846E-03 1.889372080 0.4423156964E-03 1.903253898 0.3944152475E-03 1.917135717 0.3460764318E-03 1.931017535 0.2973532253E-03 1.944899354 0.2482999353E-03 1.958781172 0.1989711506E-03 1.972662991 0.1494216932E-03 1.986544809 0.9970657006E-04 2.000426628 0.4988092658E-04 2.014308446 -0.3420208952E-10 2.027941873 0.4422954981E-04 2.041575301 0.8842365389E-04 2.055208728 0.1325468703E-03 2.068842156 0.1765637650E-03 2.082475583 0.2204389163E-03 2.096109011 0.2641369200E-03 2.109742438 0.3076223952E-03 2.123375865 0.3508599919E-03 2.137009293 0.3938143989E-03 2.150642720 0.4364503535E-03 2.164276148 0.4787326531E-03 2.177909575 0.5206261685E-03 2.191543002 0.5620958584E-03 2.205176430 0.6031067865E-03 2.218809857 0.6436241411E-03 2.232443285 0.6836132554E-03 2.246076712 0.7230396319E-03 2.259710140 0.7618689670E-03 2.273343567 0.8000671799E-03 2.286976994 0.8376004421E-03 2.300610422 0.8744352099E-03 2.314243849 0.9105382586E-03 2.327877277 0.9458767196E-03 2.341510704 0.9804181181E-03 2.355144132 0.1014130414E-02 2.368777559 0.1046982043E-02 2.382410986 0.1078941962E-02 2.396044414 0.1109979692E-02 2.409677841 0.1140065364E-02 2.423311269 0.1169169768E-02 2.436944696 0.1197264401E-02 2.450578123 0.1224321512E-02 2.464211551 0.1250314155E-02 2.477844978 0.1275216233E-02 2.491478406 0.1299002553E-02 2.505111833 0.1321648869E-02 2.518745261 0.1343131930E-02 2.532378688 0.1363429530E-02 2.546012115 0.1382520552E-02 2.559645543 0.1400385009E-02 2.573278970 0.1417004094E-02 2.586912398 0.1432360212E-02 2.600545825 0.1446437026E-02 2.614179253 0.1459219488E-02 2.627812680 0.1470693877E-02 2.641446107 0.1480847829E-02 2.655079535 0.1489670365E-02 2.668712962 0.1497151916E-02 2.682346390 0.1503284347E-02 2.695979817 0.1508060976E-02 2.709613245 0.1511476589E-02 2.723246672 0.1513527453E-02 2.736880099 0.1514211324E-02 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000012714061636520024124 xustar0029 mtime=1623670096.35010116 29 atime=1623670096.35010116 29 ctime=1623670096.35010116 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PHDLINES.OUT0000644002504400250440000000050014061636520026150 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.1233017808E-02 0.000000000 0.2466035513E-02 0.8343538771 -0.1233017808E-02 0.8343538771 0.2466035513E-02 2.014308446 -0.1233017808E-02 2.014308446 0.2466035513E-02 2.736880099 -0.1233017808E-02 2.736880099 0.2466035513E-02 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/PHDOS.OUT0000644000000000000000000000013214061636520023567 xustar0030 mtime=1623670096.351101159 30 atime=1623670096.351101159 30 ctime=1623670096.351101159 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PHDOS.OUT0000644002504400250440000004410414061636520025627 0ustar00dewhurstdewhurst00000000000000 -0.1808426262E-03 15.08091925 -0.1768640889E-03 30.49697004 -0.1728855515E-03 34.51854850 -0.1689070142E-03 31.66993042 -0.1649284769E-03 26.97808888 -0.1609499396E-03 26.47539157 -0.1569714023E-03 28.48618080 -0.1529928650E-03 23.62677349 -0.1490143276E-03 24.63216811 -0.1450357903E-03 26.14026003 -0.1410572530E-03 35.69150889 -0.1370787157E-03 36.69690351 -0.1331001784E-03 38.20499543 -0.1291216411E-03 32.34019350 -0.1251431037E-03 35.85907466 -0.1211645664E-03 28.31861503 -0.1171860291E-03 26.14026003 -0.1132074918E-03 19.10249772 -0.1092289545E-03 23.12407618 -0.1052504172E-03 25.13486542 -0.1012718798E-03 26.64295734 -0.9729334252E-04 33.17802235 -0.9331480520E-04 37.70229812 -0.8933626789E-04 37.03203505 -0.8535773057E-04 28.98887811 -0.8137919325E-04 24.96729965 -0.7740065594E-04 27.64835196 -0.7342211862E-04 26.64295734 -0.6944358130E-04 25.13486542 -0.6546504399E-04 22.11868157 -0.6148650667E-04 20.61058964 -0.5750796936E-04 20.10789233 -0.5352943204E-04 17.09170848 -0.4955089472E-04 20.94572118 -0.4557235741E-04 18.43223464 -0.4159382009E-04 16.42144540 -0.3761528277E-04 14.07552463 -0.3363674546E-04 14.07552463 -0.2965820814E-04 12.56743271 -0.2567967082E-04 5.529670391 -0.2170113351E-04 5.026973083 -0.1772259619E-04 5.026973083 -0.1374405887E-04 5.529670391 -0.9765521557E-05 4.524275775 -0.5786984241E-05 3.770229812 -0.1808446924E-05 2.262137887 0.2170090392E-05 0.2513486542 0.6148627709E-05 0.000000000 0.1012716503E-04 4.524275775 0.1410570234E-04 9.048551549 0.1808423966E-04 12.56743271 0.2206277697E-04 12.06473540 0.2604131429E-04 8.043156933 0.3001985161E-04 9.551248858 0.3399838892E-04 13.07013002 0.3797692624E-04 17.25927425 0.4195546356E-04 19.27006349 0.4593400087E-04 18.26466887 0.4991253819E-04 19.60519502 0.5389107551E-04 22.62137887 0.5786961282E-04 23.62677349 0.6184815014E-04 26.97808888 0.6582668746E-04 33.51315389 0.6980522477E-04 34.51854850 0.7378376209E-04 38.20499543 0.7776229941E-04 33.68071966 0.8174083672E-04 38.37256120 0.8571937404E-04 37.36716658 0.8969791136E-04 41.38874505 0.9367644867E-04 45.74545506 0.9765498599E-04 48.76163891 0.1016335233E-03 48.76163891 0.1056120606E-03 46.24815236 0.1095905979E-03 55.29670391 0.1135691353E-03 57.81019046 0.1175476726E-03 69.87492585 0.1215262099E-03 64.34525546 0.1255047472E-03 64.84795277 0.1294832845E-03 57.47505892 0.1334618218E-03 63.50742662 0.1374403592E-03 67.02630777 0.1414188965E-03 74.39920163 0.1453974338E-03 74.90189894 0.1493759711E-03 88.47472626 0.1533545084E-03 86.46393703 0.1573330457E-03 89.48012088 0.1613115831E-03 84.28558203 0.1652901204E-03 101.3772905 0.1692686577E-03 104.8961717 0.1732471950E-03 106.2366978 0.1772257323E-03 94.17196242 0.1812042696E-03 95.17735704 0.1851828070E-03 95.00979127 0.1891613443E-03 107.0745267 0.1931398816E-03 121.1500513 0.1971184189E-03 140.2525490 0.2010969562E-03 127.6851163 0.2050754935E-03 125.1716298 0.2090540309E-03 123.6635378 0.2130325682E-03 145.2795221 0.2170111055E-03 144.2741275 0.2209896428E-03 140.9228121 0.2249681801E-03 133.2147867 0.2289467174E-03 139.2471544 0.2329252547E-03 141.5930752 0.2369037921E-03 172.4251767 0.2408823294E-03 185.4953068 0.2448608667E-03 192.5330691 0.2488394040E-03 171.9224794 0.2528179413E-03 162.3712306 0.2567964786E-03 166.3928090 0.2607750160E-03 193.5384637 0.2647535533E-03 211.1328695 0.2687320906E-03 199.7383972 0.2727106279E-03 193.5384637 0.2766891652E-03 190.0195825 0.2806677025E-03 223.0300391 0.2846462399E-03 238.2785241 0.2886247772E-03 250.8459568 0.2926033145E-03 247.8297730 0.2965818518E-03 219.1760264 0.3005603891E-03 216.1598426 0.3045389264E-03 242.3001026 0.3085174638E-03 283.0185846 0.3124960011E-03 288.3806892 0.3164745384E-03 273.4673357 0.3204530757E-03 247.3270757 0.3244316130E-03 284.1915450 0.3284101503E-03 301.1156877 0.3323886877E-03 336.3044993 0.3363672250E-03 319.7154881 0.3403457623E-03 309.6615419 0.3443242996E-03 309.9966735 0.3483028369E-03 323.0668035 0.3522813742E-03 342.1693012 0.3562599116E-03 364.4555485 0.3602384489E-03 366.4663378 0.3642169862E-03 375.1797578 0.3681955235E-03 378.0283758 0.3721740608E-03 412.2117928 0.3761525981E-03 415.0604109 0.3801311355E-03 432.8223825 0.3841096728E-03 414.7252794 0.3880882101E-03 449.9140909 0.3920667474E-03 440.6979736 0.3960452847E-03 461.3085633 0.4000238220E-03 481.4164556 0.4040023594E-03 505.2107948 0.4079808967E-03 533.3618441 0.4119594340E-03 528.3348710 0.4159379713E-03 546.9346714 0.4199165086E-03 555.9832230 0.4238950459E-03 585.1396669 0.4278735833E-03 607.0907827 0.4318521206E-03 607.0907827 0.4358306579E-03 620.6636100 0.4398091952E-03 631.8905165 0.4437877325E-03 668.5874200 0.4477662698E-03 702.1005739 0.4517448072E-03 718.1868878 0.4557233445E-03 749.3541209 0.4597018818E-03 720.5328086 0.4636804191E-03 764.7701717 0.4676589564E-03 769.1268817 0.4716374937E-03 820.2344414 0.4756160311E-03 802.1373383 0.4795945684E-03 797.2779310 0.4835731057E-03 873.1852245 0.4875516430E-03 898.6552215 0.4915301803E-03 948.9249523 0.4955087176E-03 899.6606161 0.4994872550E-03 912.8983119 0.5034657923E-03 956.1302804 0.5074443296E-03 988.4704739 0.5114228669E-03 1034.551060 0.5154014042E-03 1001.875735 0.5193799415E-03 1029.859219 0.5233584789E-03 1070.242569 0.5273370162E-03 1093.869343 0.5313155535E-03 1119.004208 0.5352940908E-03 1125.539273 0.5392726281E-03 1167.095584 0.5432511654E-03 1192.230450 0.5472297028E-03 1186.868345 0.5512082401E-03 1244.846101 0.5551867774E-03 1245.851496 0.5591653147E-03 1292.434780 0.5631438520E-03 1307.515699 0.5671223893E-03 1333.991090 0.5711009267E-03 1412.914568 0.5750794640E-03 1408.390292 0.5790580013E-03 1434.698118 0.5830365386E-03 1432.184631 0.5870150759E-03 1488.989427 0.5909936132E-03 1548.475275 0.5949721506E-03 1578.972245 0.5989506879E-03 1605.615203 0.6029292252E-03 1612.988097 0.6069077625E-03 1674.484734 0.6108862998E-03 1739.332687 0.6148648371E-03 1813.731888 0.6188433745E-03 1826.802018 0.6228219118E-03 1856.796291 0.6268004491E-03 1864.001619 0.6307789864E-03 1985.654368 0.6347575237E-03 2057.204951 0.6387360610E-03 2169.138885 0.6427145984E-03 2197.792632 0.6466931357E-03 2267.667558 0.6506716730E-03 2431.379315 0.6546502103E-03 2677.030732 0.6586287476E-03 2872.915117 0.6626072849E-03 3007.637996 0.6665858222E-03 3034.616084 0.6705643596E-03 3059.080687 0.6745428969E-03 3103.485616 0.6785214342E-03 3095.610025 0.6824999715E-03 3176.879423 0.6864785088E-03 3220.111391 0.6904570461E-03 3289.316054 0.6944355835E-03 3321.488682 0.6984141208E-03 3386.671766 0.7023926581E-03 3458.557481 0.7063711954E-03 3563.286087 0.7103497327E-03 3533.794512 0.7143282700E-03 3500.616489 0.7183068074E-03 3489.054451 0.7222853447E-03 3478.497808 0.7262638820E-03 3530.610762 0.7302424193E-03 3480.676163 0.7342209566E-03 3537.648524 0.7381994939E-03 3507.989383 0.7421780313E-03 3595.961412 0.7461565686E-03 3577.696743 0.7501351059E-03 3630.479961 0.7541136432E-03 3552.059180 0.7580921805E-03 3603.837003 0.7620707178E-03 3603.837003 0.7660492552E-03 3653.604037 0.7700277925E-03 3673.376798 0.7740063298E-03 3632.155618 0.7779848671E-03 3716.608766 0.7819634044E-03 3705.884557 0.7859419417E-03 3776.262180 0.7899204791E-03 3757.159682 0.7938990164E-03 3766.710931 0.7978775537E-03 3828.542700 0.8018560910E-03 3867.250393 0.8058346283E-03 3930.757819 0.8098131656E-03 3994.600378 0.8137917030E-03 3975.497880 0.8177702403E-03 4082.404841 0.8217487776E-03 4117.090955 0.8257273149E-03 4258.851596 0.8297058522E-03 4290.018829 0.8336843895E-03 4269.408239 0.8376629269E-03 4275.943304 0.8416414642E-03 4231.873507 0.8456200015E-03 4276.613568 0.8495985388E-03 4248.462518 0.8535770761E-03 4153.285161 0.8575556134E-03 4025.600045 0.8615341508E-03 3957.233211 0.8655126881E-03 3951.703541 0.8694912254E-03 4009.513731 0.8734697627E-03 3916.012032 0.8774483000E-03 3922.714662 0.8814268373E-03 3877.974602 0.8854053747E-03 3889.033943 0.8893839120E-03 3905.455388 0.8933624493E-03 3901.433810 0.8973409866E-03 3885.347496 0.9013195239E-03 3876.801642 0.9052980612E-03 3893.893350 0.9092765986E-03 3948.687357 0.9132551359E-03 3927.071372 0.9172336732E-03 3917.520124 0.9212122105E-03 3905.120257 0.9251907478E-03 3916.179597 0.9291692851E-03 3857.364012 0.9331478225E-03 3822.510332 0.9371263598E-03 3799.888953 0.9411048971E-03 3772.240602 0.9450834344E-03 3796.370072 0.9490619717E-03 3758.667774 0.9530405090E-03 3718.954687 0.9570190464E-03 3633.998842 0.9609975837E-03 3609.366674 0.9649761210E-03 3629.139434 0.9689546583E-03 3653.771603 0.9729331956E-03 3625.117856 0.9769117329E-03 3557.086154 0.9808902703E-03 3436.941497 0.9848688076E-03 3325.845392 0.9888473449E-03 3195.646789 0.9928258822E-03 3125.771863 0.9968044195E-03 3028.751283 0.1000782957E-02 2974.459973 0.1004761494E-02 2815.607624 0.1008740031E-02 2669.825404 0.1012718569E-02 2516.167594 0.1016697106E-02 2382.450110 0.1020675643E-02 2269.343215 0.1024654181E-02 2223.430195 0.1028632718E-02 2252.083941 0.1032611255E-02 2213.376248 0.1036589793E-02 2212.873551 0.1040568330E-02 2176.176648 0.1044546867E-02 2225.943681 0.1048525405E-02 2220.916708 0.1052503942E-02 2226.949076 0.1056482479E-02 2231.473352 0.1060461017E-02 2247.727231 0.1064439554E-02 2258.786572 0.1068418091E-02 2238.175982 0.1072396629E-02 2225.440984 0.1076375166E-02 2255.100125 0.1080353703E-02 2269.678347 0.1084332240E-02 2255.602822 0.1088310778E-02 2230.467957 0.1092289315E-02 2260.629795 0.1096267852E-02 2266.662163 0.1100246390E-02 2266.662163 0.1104224927E-02 2254.597428 0.1108203464E-02 2242.700258 0.1112182002E-02 2234.657101 0.1116160539E-02 2240.186772 0.1120139076E-02 2244.543482 0.1124117614E-02 2233.986838 0.1128096151E-02 2244.543482 0.1132074688E-02 2230.970654 0.1136053226E-02 2201.814210 0.1140031763E-02 2179.695529 0.1144010300E-02 2197.289935 0.1147988838E-02 2176.679345 0.1151967375E-02 2154.560663 0.1155945912E-02 2104.458498 0.1159924449E-02 2124.566391 0.1163902987E-02 2087.869487 0.1167881524E-02 2053.015807 0.1171860061E-02 2044.469953 0.1175838599E-02 1996.713709 0.1179817136E-02 1965.546475 0.1183795673E-02 1925.833388 0.1187774211E-02 1909.747074 0.1191752748E-02 1900.698523 0.1195731285E-02 1820.769651 0.1199709823E-02 1780.051169 0.1203688360E-02 1744.024528 0.1207666897E-02 1697.273679 0.1211645435E-02 1679.679273 0.1215623972E-02 1608.128689 0.1219602509E-02 1602.599019 0.1223581047E-02 1498.037979 0.1227559584E-02 1477.427389 0.1231538121E-02 1390.963452 0.1235516659E-02 1333.655959 0.1239495196E-02 1240.154260 0.1243473733E-02 1176.814399 0.1247452270E-02 1152.182231 0.1251430808E-02 1114.647498 0.1255409345E-02 1130.231115 0.1259387882E-02 1129.225720 0.1263366420E-02 1169.273939 0.1267344957E-02 1189.381831 0.1271323494E-02 1223.062551 0.1275302032E-02 1249.202811 0.1279280569E-02 1281.375439 0.1283259106E-02 1337.174840 0.1287237644E-02 1421.627988 0.1291216181E-02 1466.535614 0.1295194718E-02 1535.907843 0.1299173256E-02 1574.615535 0.1303151793E-02 1639.798620 0.1307130330E-02 1715.203216 0.1311108868E-02 1795.132088 0.1315087405E-02 1888.131090 0.1319065942E-02 1978.616605 0.1323044479E-02 2021.848574 0.1327023017E-02 2168.133491 0.1331001554E-02 2229.127431 0.1334980091E-02 2354.801758 0.1338958629E-02 2432.719841 0.1342937166E-02 2529.572855 0.1346915703E-02 2685.409021 0.1350894241E-02 2834.710122 0.1354872778E-02 3039.307926 0.1358851315E-02 3220.278957 0.1362829853E-02 3490.394977 0.1366808390E-02 3788.494481 0.1370786927E-02 4033.308070 0.1374765465E-02 4061.291554 0.1378744002E-02 3987.897747 0.1382722539E-02 3865.239604 0.1386701077E-02 3764.700142 0.1390679614E-02 3654.274300 0.1394658151E-02 3589.426347 0.1398636688E-02 3536.643130 0.1402615226E-02 3539.994445 0.1406593763E-02 3511.340699 0.1410572300E-02 3551.053786 0.1414550838E-02 3527.091881 0.1418529375E-02 3550.215957 0.1422507912E-02 3537.648524 0.1426486450E-02 3588.756084 0.1430464987E-02 3656.620221 0.1434443524E-02 3707.057517 0.1438422062E-02 3829.715660 0.1442400599E-02 3879.985391 0.1446379136E-02 4061.291554 0.1450357674E-02 4289.683698 0.1454336211E-02 4507.351632 0.1458314748E-02 4684.971348 0.1462293286E-02 4583.761623 0.1466271823E-02 4427.590326 0.1470250360E-02 4128.317862 0.1474228898E-02 3968.627683 0.1478207435E-02 3836.920989 0.1482185972E-02 3755.148893 0.1486164509E-02 3577.696743 0.1490143047E-02 3387.677161 0.1494121584E-02 3101.642392 0.1498100121E-02 2858.839592 0.1502078659E-02 2653.739091 0.1506057196E-02 2516.670291 0.1510035733E-02 2309.391434 0.1514014271E-02 2050.334755 0.1517992808E-02 1780.553866 0.1521971345E-02 1571.431786 0.1525949883E-02 1464.357259 0.1529928420E-02 1362.309706 0.1533906957E-02 1260.764849 0.1537885495E-02 1161.733479 0.1541864032E-02 1051.642769 0.1545842569E-02 976.2381727 0.1549821107E-02 843.5260833 0.1553799644E-02 740.9758324 0.1557778181E-02 582.1234830 0.1561756718E-02 446.8979071 0.1565735256E-02 348.3692347 0.1569713793E-02 340.3260777 0.1573692330E-02 312.1750285 0.1577670868E-02 302.6237796 0.1581649405E-02 281.0077953 0.1585627942E-02 284.5266765 0.1589606480E-02 259.3918111 0.1593585017E-02 245.8189838 0.1597563554E-02 222.1922103 0.1601542092E-02 228.7272753 0.1605520629E-02 199.0681341 0.1609499166E-02 198.5654368 0.1613477704E-02 173.9332687 0.1617456241E-02 161.3658360 0.1621434778E-02 151.3118898 0.1625413316E-02 135.7282732 0.1629391853E-02 120.6473540 0.1633370390E-02 96.01518589 0.1637348927E-02 73.39380701 0.1641327465E-02 43.48331717 0.1645306002E-02 18.85114906 0.1649284539E-02 0.2513486542 0.1653263077E-02 0.000000000 0.1657241614E-02 0.000000000 0.1661220151E-02 0.000000000 0.1665198689E-02 0.000000000 0.1669177226E-02 0.000000000 0.1673155763E-02 0.000000000 0.1677134301E-02 0.000000000 0.1681112838E-02 0.000000000 0.1685091375E-02 0.000000000 0.1689069913E-02 0.000000000 0.1693048450E-02 0.000000000 0.1697026987E-02 0.000000000 0.1701005525E-02 0.000000000 0.1704984062E-02 0.000000000 0.1708962599E-02 0.000000000 0.1712941136E-02 0.000000000 0.1716919674E-02 0.000000000 0.1720898211E-02 0.000000000 0.1724876748E-02 0.000000000 0.1728855286E-02 0.000000000 0.1732833823E-02 0.000000000 0.1736812360E-02 0.000000000 0.1740790898E-02 0.000000000 0.1744769435E-02 0.000000000 0.1748747972E-02 0.000000000 0.1752726510E-02 0.000000000 0.1756705047E-02 0.000000000 0.1760683584E-02 0.000000000 0.1764662122E-02 0.000000000 0.1768640659E-02 0.000000000 0.1772619196E-02 0.000000000 0.1776597734E-02 0.000000000 0.1780576271E-02 0.000000000 0.1784554808E-02 0.000000000 0.1788533346E-02 0.000000000 0.1792511883E-02 0.000000000 0.1796490420E-02 0.000000000 0.1800468957E-02 0.000000000 0.1804447495E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/PHLWIDTH.OUT0000644000000000000000000000013214061636520024135 xustar0030 mtime=1623670096.353101157 30 atime=1623670096.353101157 30 ctime=1623670096.353101157 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PHLWIDTH.OUT0000644002504400250440000005331214061636520026176 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.1248848272E-35 0.1367793241E-01 0.8178770349E-11 0.2735586482E-01 0.1298112073E-09 0.4103379724E-01 0.6484169145E-09 0.5471172965E-01 0.2011243509E-08 0.6838966206E-01 0.4793427485E-08 0.8206759447E-01 0.9651822037E-08 0.9574552688E-01 0.1727210258E-07 0.1094234593 0.2831326937E-07 0.1231013917 0.4335384407E-07 0.1367793241 0.6284389144E-07 0.1504572565 0.8706650488E-07 0.1641351889 0.1161116194E-06 0.1778131214 0.1498640245E-06 0.1914910538 0.1880063284E-06 0.2051689862 0.2300364665E-06 0.2188469186 0.2752982539E-06 0.2325248510 0.3230225369E-06 0.2462027834 0.3723757861E-06 0.2598807158 0.4225125450E-06 0.2735586482 0.4726280295E-06 0.2872365807 0.5220073730E-06 0.3009145131 0.5700684905E-06 0.3145924455 0.6163962485E-06 0.3282703779 0.6607664880E-06 0.3419483103 0.7031593803E-06 0.3556262427 0.7437624925E-06 0.3693041751 0.7829647183E-06 0.3829821075 0.8213428154E-06 0.3966600400 0.8596426208E-06 0.4103379724 0.8987570722E-06 0.4240159048 0.9397029414E-06 0.4376938372 0.9835977241E-06 0.4513717696 0.1031637489E-05 0.4650497020 0.1085075754E-05 0.4787276344 0.1145202719E-05 0.4924055668 0.1213323559E-05 0.5060834992 0.1290734039E-05 0.5197614317 0.1378691549E-05 0.5334393641 0.1478379811E-05 0.5471172965 0.1590865996E-05 0.5607952289 0.1717049755E-05 0.5744731613 0.1857604748E-05 0.5881510937 0.2012914382E-05 0.6018290261 0.2183004732E-05 0.6155069585 0.2367478712E-05 0.6291848910 0.2565456439E-05 0.6428628234 0.2775527282E-05 0.6565407558 0.2995719149E-05 0.6702186882 0.3223490141E-05 0.6838966206 0.3455746788E-05 0.6975745530 0.3688891637E-05 0.7112524854 0.3918901175E-05 0.7249304178 0.4141433008E-05 0.7386083503 0.4351959045E-05 0.7522862827 0.4545919343E-05 0.7659642151 0.4718889444E-05 0.7796421475 0.4866752651E-05 0.7933200799 0.4985867807E-05 0.8069980123 0.5073223004E-05 0.8206759447 0.5126566119E-05 0.8343538771 0.5144504277E-05 0.8482356956 0.5133400461E-05 0.8621175141 0.5100235552E-05 0.8759993325 0.5045446034E-05 0.8898811510 0.4969749029E-05 0.9037629694 0.4874127082E-05 0.9176447879 0.4759807466E-05 0.9315266063 0.4628236582E-05 0.9454084248 0.4481050180E-05 0.9592902433 0.4320040209E-05 0.9731720617 0.4147119206E-05 0.9870538802 0.3964283167E-05 1.000935699 0.3773573887E-05 1.014817517 0.3577041707E-05 1.028699336 0.3376709608E-05 1.042581154 0.3174539494E-05 1.056462972 0.2972401409E-05 1.070344791 0.2772046359E-05 1.084226609 0.2575083210E-05 1.098108428 0.2382960066E-05 1.111990246 0.2196950325E-05 1.125872065 0.2018143491E-05 1.139753883 0.1847440673E-05 1.153635702 0.1685554560E-05 1.167517520 0.1533013548E-05 1.181399339 0.1390169593E-05 1.195281157 0.1257209272E-05 1.209162975 0.1134167489E-05 1.223044794 0.1020943217E-05 1.236926612 0.9173166592E-06 1.250808431 0.8229672051E-06 1.264690249 0.7374916249E-06 1.278572068 0.6604219478E-06 1.292453886 0.5912425673E-06 1.306335705 0.5294061740E-06 1.320217523 0.4743482055E-06 1.334099342 0.4254995872E-06 1.347981160 0.3822976251E-06 1.361862979 0.3441949952E-06 1.375744797 0.3106668481E-06 1.389626615 0.2812161199E-06 1.403508434 0.2553771899E-06 1.417390252 0.2327180737E-06 1.431272071 0.2128413687E-06 1.445153889 0.1953841823E-06 1.459035708 0.1800172807E-06 1.472917526 0.1664436837E-06 1.486799345 0.1543969131E-06 1.500681163 0.1436390766E-06 1.514562982 0.1339589325E-06 1.528444800 0.1251700481E-06 1.542326618 0.1171091237E-06 1.556208437 0.1096345194E-06 1.570090255 0.1026249882E-06 1.583972074 0.9597858998E-07 1.597853892 0.8961173958E-07 1.611735711 0.8345832740E-07 1.625617529 0.7746884187E-07 1.639499348 0.7160942480E-07 1.653381166 0.6586079597E-07 1.667262985 0.6021699672E-07 1.681144803 0.5468391899E-07 1.695026621 0.4927760730E-07 1.708908440 0.4402234286E-07 1.722790258 0.3894854130E-07 1.736672077 0.3409051591E-07 1.750553895 0.2948417548E-07 1.764435714 0.2516473916E-07 1.778317532 0.2116455819E-07 1.792199351 0.1751113686E-07 1.806081169 0.1422544076E-07 1.819962988 0.1132057077E-07 1.833844806 0.8800866390E-08 1.847726625 0.6661482340E-08 1.861608443 0.4888459901E-08 1.875490261 0.3459289640E-08 1.889372080 0.2343937166E-08 1.903253898 0.1506279255E-08 1.917135717 0.9058759521E-09 1.931017535 0.4999861129E-09 1.944899354 0.2457205189E-09 1.958781172 0.1022188990E-09 1.972662991 0.3273549994E-10 1.986544809 0.6522336193E-11 2.000426628 0.4097646550E-12 2.014308446 0.1248848272E-35 2.027941873 0.8440570852E-12 2.041575301 0.1348520908E-10 2.055208728 0.6810280710E-10 2.068842156 0.2145049900E-09 2.082475583 0.5213966953E-09 2.096109011 0.1075363278E-08 2.109742438 0.1979578242E-08 2.123375865 0.3352246150E-08 2.137009293 0.5324794422E-08 2.150642720 0.8039830475E-08 2.164276148 0.1164888345E-07 2.177909575 0.1630995267E-07 2.191543002 0.2218488789E-07 2.205176430 0.2943662922E-07 2.218809857 0.3822633764E-07 2.232443285 0.4871044962E-07 2.246076712 0.6103769191E-07 2.259710140 0.7534609511E-07 2.273343567 0.9176004636E-07 2.286976994 0.1103874233E-06 2.300610422 0.1313168523E-06 2.314243849 0.1546151351E-06 2.327877277 0.1803248867E-06 2.341510704 0.2084624282E-06 2.355144132 0.2390159747E-06 2.368777559 0.2719441587E-06 2.382410986 0.3071749224E-06 2.396044414 0.3446048130E-06 2.409677841 0.3840987054E-06 2.423311269 0.4254899757E-06 2.436944696 0.4685811383E-06 2.450578123 0.5131449560E-06 2.464211551 0.5589260227E-06 2.477844978 0.6056428115E-06 2.491478406 0.6529901729E-06 2.505111833 0.7006422588E-06 2.518745261 0.7482558407E-06 2.532378688 0.7954739822E-06 2.546012115 0.8419300196E-06 2.559645543 0.8872517943E-06 2.573278970 0.9310660794E-06 2.586912398 0.9730031342E-06 2.600545825 0.1012701318E-05 2.614179253 0.1049811689E-05 2.627812680 0.1084002524E-05 2.641446107 0.1114963667E-05 2.655079535 0.1142410661E-05 2.668712962 0.1166088567E-05 2.682346390 0.1185775430E-05 2.695979817 0.1201285309E-05 2.709613245 0.1212470842E-05 2.723246672 0.1219225280E-05 2.736880099 0.1221483977E-05 0.000000000 0.1248848272E-35 0.1367793241E-01 0.8178770349E-11 0.2735586482E-01 0.1298112073E-09 0.4103379724E-01 0.6484169145E-09 0.5471172965E-01 0.2011243509E-08 0.6838966206E-01 0.4793427485E-08 0.8206759447E-01 0.9651822037E-08 0.9574552688E-01 0.1727210258E-07 0.1094234593 0.2831326937E-07 0.1231013917 0.4335384407E-07 0.1367793241 0.6284389144E-07 0.1504572565 0.8706650488E-07 0.1641351889 0.1161116194E-06 0.1778131214 0.1498640245E-06 0.1914910538 0.1880063284E-06 0.2051689862 0.2300364665E-06 0.2188469186 0.2752982539E-06 0.2325248510 0.3230225369E-06 0.2462027834 0.3723757861E-06 0.2598807158 0.4225125450E-06 0.2735586482 0.4726280295E-06 0.2872365807 0.5220073730E-06 0.3009145131 0.5700684905E-06 0.3145924455 0.6163962485E-06 0.3282703779 0.6607664880E-06 0.3419483103 0.7031593803E-06 0.3556262427 0.7437624925E-06 0.3693041751 0.7829647183E-06 0.3829821075 0.8213428154E-06 0.3966600400 0.8596426208E-06 0.4103379724 0.8987570722E-06 0.4240159048 0.9397029414E-06 0.4376938372 0.9835977241E-06 0.4513717696 0.1031637489E-05 0.4650497020 0.1085075754E-05 0.4787276344 0.1145202719E-05 0.4924055668 0.1213323559E-05 0.5060834992 0.1290734039E-05 0.5197614317 0.1378691549E-05 0.5334393641 0.1478379811E-05 0.5471172965 0.1590865996E-05 0.5607952289 0.1717049755E-05 0.5744731613 0.1857604748E-05 0.5881510937 0.2012914382E-05 0.6018290261 0.2183004732E-05 0.6155069585 0.2367478712E-05 0.6291848910 0.2565456439E-05 0.6428628234 0.2775527282E-05 0.6565407558 0.2995719149E-05 0.6702186882 0.3223490141E-05 0.6838966206 0.3455746788E-05 0.6975745530 0.3688891637E-05 0.7112524854 0.3918901175E-05 0.7249304178 0.4141433008E-05 0.7386083503 0.4351959045E-05 0.7522862827 0.4545919343E-05 0.7659642151 0.4718889444E-05 0.7796421475 0.4866752651E-05 0.7933200799 0.4985867807E-05 0.8069980123 0.5073223004E-05 0.8206759447 0.5126566119E-05 0.8343538771 0.5144504277E-05 0.8482356956 0.5147653980E-05 0.8621175141 0.5157121649E-05 0.8759993325 0.5172962519E-05 0.8898811510 0.5195267152E-05 0.9037629694 0.5224159197E-05 0.9176447879 0.5259792264E-05 0.9315266063 0.5302345898E-05 0.9454084248 0.5352020681E-05 0.9592902433 0.5409032441E-05 0.9731720617 0.5473605583E-05 0.9870538802 0.5545965542E-05 1.000935699 0.5626330356E-05 1.014817517 0.5714901371E-05 1.028699336 0.5811853092E-05 1.042581154 0.5917322202E-05 1.056462972 0.6031395804E-05 1.070344791 0.6154098943E-05 1.084226609 0.6285381529E-05 1.098108428 0.6425104771E-05 1.111990246 0.6272629671E-05 1.125872065 0.6016061340E-05 1.139753883 0.5761430185E-05 1.153635702 0.5509771100E-05 1.167517520 0.5262010121E-05 1.181399339 0.5018962088E-05 1.195281157 0.4781330238E-05 1.209162975 0.4549707594E-05 1.223044794 0.4324579953E-05 1.236926612 0.4106330297E-05 1.250808431 0.3895244406E-05 1.264690249 0.3691517475E-05 1.278572068 0.3495261514E-05 1.292453886 0.3306513328E-05 1.306335705 0.3125242886E-05 1.320217523 0.2951361890E-05 1.334099342 0.2784732392E-05 1.347981160 0.2625175304E-05 1.361862979 0.2472478676E-05 1.375744797 0.2326405639E-05 1.389626615 0.2186701911E-05 1.403508434 0.2053102805E-05 1.417390252 0.1925339669E-05 1.431272071 0.1803145711E-05 1.445153889 0.1686261183E-05 1.459035708 0.1574437881E-05 1.472917526 0.1467442957E-05 1.486799345 0.1365062012E-05 1.500681163 0.1267101478E-05 1.514562982 0.1173390284E-05 1.528444800 0.1083780799E-05 1.542326618 0.9981490754E-06 1.556208437 0.9163944103E-06 1.570090255 0.8384382403E-06 1.583972074 0.7642224199E-06 1.597853892 0.6937069232E-06 1.611735711 0.6268670313E-06 1.625617529 0.5636900752E-06 1.639499348 0.5041718205E-06 1.653381166 0.4483125874E-06 1.667262985 0.3961132120E-06 1.681144803 0.3475709657E-06 1.695026621 0.3026755507E-06 1.708908440 0.2614052978E-06 1.722790258 0.2237236887E-06 1.736672077 0.1895763220E-06 1.750553895 0.1588884345E-06 1.764435714 0.1315630740E-06 1.778317532 0.1074800070E-06 1.792199351 0.8649542086E-07 1.806081169 0.6844245845E-07 1.819962988 0.5313259825E-07 1.833844806 0.4035786319E-07 1.847726625 0.2989381616E-07 1.861608443 0.2150327121E-07 1.875490261 0.1494062425E-07 1.889372080 0.9956683590E-08 1.903253898 0.6303860990E-08 1.917135717 0.3741568514E-08 1.931017535 0.2041656368E-08 1.944899354 0.9937222230E-09 1.958781172 0.4101239176E-09 1.972662991 0.1305347796E-09 1.986544809 0.2589392672E-10 2.000426628 0.1622487919E-11 2.014308446 0.1248848272E-35 2.027941873 0.8440570852E-12 2.041575301 0.1348520908E-10 2.055208728 0.6810280710E-10 2.068842156 0.2145049900E-09 2.082475583 0.5213966953E-09 2.096109011 0.1075363278E-08 2.109742438 0.1979578242E-08 2.123375865 0.3352246150E-08 2.137009293 0.5324794422E-08 2.150642720 0.8039830475E-08 2.164276148 0.1164888345E-07 2.177909575 0.1630995267E-07 2.191543002 0.2218488789E-07 2.205176430 0.2943662922E-07 2.218809857 0.3822633764E-07 2.232443285 0.4871044962E-07 2.246076712 0.6103769191E-07 2.259710140 0.7534609511E-07 2.273343567 0.9176004636E-07 2.286976994 0.1103874233E-06 2.300610422 0.1313168523E-06 2.314243849 0.1546151351E-06 2.327877277 0.1803248867E-06 2.341510704 0.2084624282E-06 2.355144132 0.2390159747E-06 2.368777559 0.2719441587E-06 2.382410986 0.3071749224E-06 2.396044414 0.3446048130E-06 2.409677841 0.3840987054E-06 2.423311269 0.4254899757E-06 2.436944696 0.4685811383E-06 2.450578123 0.5131449560E-06 2.464211551 0.5589260227E-06 2.477844978 0.6056428115E-06 2.491478406 0.6529901729E-06 2.505111833 0.7006422588E-06 2.518745261 0.7482558407E-06 2.532378688 0.7954739822E-06 2.546012115 0.8419300196E-06 2.559645543 0.8872517943E-06 2.573278970 0.9310660794E-06 2.586912398 0.9730031342E-06 2.600545825 0.1012701318E-05 2.614179253 0.1049811689E-05 2.627812680 0.1084002524E-05 2.641446107 0.1114963667E-05 2.655079535 0.1142410661E-05 2.668712962 0.1166088567E-05 2.682346390 0.1185775430E-05 2.695979817 0.1201285309E-05 2.709613245 0.1212470842E-05 2.723246672 0.1219225280E-05 2.736880099 0.1221483977E-05 0.000000000 0.1248848272E-35 0.1367793241E-01 0.3025605838E-10 0.2735586482E-01 0.4786753773E-09 0.4103379724E-01 0.2378325366E-08 0.5471172965E-01 0.7322747245E-08 0.6838966206E-01 0.1728949802E-07 0.8206759447E-01 0.3442280939E-07 0.9574552688E-01 0.6080046791E-07 0.1094234593 0.9821134716E-07 0.1231013917 0.1479681097E-06 0.1367793241 0.2107747816E-06 0.1504572565 0.2866619010E-06 0.1641351889 0.3749937384E-06 0.1778131214 0.4745437755E-06 0.1914910538 0.5836272800E-06 0.2051689862 0.7002742942E-06 0.2188469186 0.8224232453E-06 0.2325248510 0.9481148775E-06 0.2462027834 0.1075668147E-05 0.2598807158 0.1203823596E-05 0.2735586482 0.1331844818E-05 0.2872365807 0.1459574084E-05 0.3009145131 0.1587443260E-05 0.3145924455 0.1716445094E-05 0.3282703779 0.1848072433E-05 0.3419483103 0.1984233806E-05 0.3556262427 0.2127153221E-05 0.3693041751 0.2279260444E-05 0.3829821075 0.2443075907E-05 0.3966600400 0.2621092425E-05 0.4103379724 0.2815654500E-05 0.4240159048 0.3028835565E-05 0.4376938372 0.3262314193E-05 0.4513717696 0.3517251871E-05 0.4650497020 0.3794177131E-05 0.4787276344 0.4092883165E-05 0.4924055668 0.4412347838E-05 0.5060834992 0.4750685919E-05 0.5197614317 0.5105142831E-05 0.5334393641 0.5472137252E-05 0.5471172965 0.5847356436E-05 0.5607952289 0.6225903660E-05 0.5744731613 0.6602492097E-05 0.5881510937 0.6971674469E-05 0.6018290261 0.7328093612E-05 0.6155069585 0.7666736227E-05 0.6291848910 0.7983170989E-05 0.6428628234 0.8273753029E-05 0.6565407558 0.8535779447E-05 0.6702186882 0.8767584749E-05 0.6838966206 0.8968570271E-05 0.6975745530 0.9139167234E-05 0.7112524854 0.9280738373E-05 0.7249304178 0.9395427562E-05 0.7386083503 0.9485970095E-05 0.7522862827 0.9555478087E-05 0.7659642151 0.9607215803E-05 0.7796421475 0.9644378863E-05 0.7933200799 0.9669889473E-05 0.8069980123 0.9686217526E-05 0.8206759447 0.9695234985E-05 0.8343538771 0.9698108709E-05 0.8482356956 0.9686913394E-05 0.8621175141 0.9653424234E-05 0.8759993325 0.9597930021E-05 0.8898811510 0.9520906905E-05 0.9037629694 0.9423010775E-05 0.9176447879 0.9305066833E-05 0.9315266063 0.9168056604E-05 0.9454084248 0.9013102693E-05 0.9592902433 0.8841451611E-05 0.9731720617 0.8654455067E-05 0.9870538802 0.8453550121E-05 1.000935699 0.8240238632E-05 1.014817517 0.8016066415E-05 1.028699336 0.7782602530E-05 1.042581154 0.7541419096E-05 1.056462972 0.7294072003E-05 1.070344791 0.7042082853E-05 1.084226609 0.6786922411E-05 1.098108428 0.6529995806E-05 1.111990246 0.6573027340E-05 1.125872065 0.6728791473E-05 1.139753883 0.6891909311E-05 1.153635702 0.7061749835E-05 1.167517520 0.7237526771E-05 1.181399339 0.7418287944E-05 1.195281157 0.7602906555E-05 1.209162975 0.7790074926E-05 1.223044794 0.7978301240E-05 1.236926612 0.8165909834E-05 1.250808431 0.8351045546E-05 1.264690249 0.8531682607E-05 1.278572068 0.8705638464E-05 1.292453886 0.8870592840E-05 1.306335705 0.9024112199E-05 1.320217523 0.9163679661E-05 1.334099342 0.9286730202E-05 1.347981160 0.9390690839E-05 1.361862979 0.9473025258E-05 1.375744797 0.9531282180E-05 1.389626615 0.9563146546E-05 1.403508434 0.9566492419E-05 1.417390252 0.9539436340E-05 1.431272071 0.9480389753E-05 1.445153889 0.9388108985E-05 1.459035708 0.9261741235E-05 1.472917526 0.9100865014E-05 1.486799345 0.8905523515E-05 1.500681163 0.8676249498E-05 1.514562982 0.8414080439E-05 1.528444800 0.8120562884E-05 1.542326618 0.7797745232E-05 1.556208437 0.7448158461E-05 1.570090255 0.7074784664E-05 1.583972074 0.6681013604E-05 1.597853892 0.6270587914E-05 1.611735711 0.5847537922E-05 1.625617529 0.5416107443E-05 1.639499348 0.4980672255E-05 1.653381166 0.4545653240E-05 1.667262985 0.4115426448E-05 1.681144803 0.3694232498E-05 1.695026621 0.3286087876E-05 1.708908440 0.2894700693E-05 1.722790258 0.2523393417E-05 1.736672077 0.2175034970E-05 1.750553895 0.1851984344E-05 1.764435714 0.1556047587E-05 1.778317532 0.1288449645E-05 1.792199351 0.1049822114E-05 1.806081169 0.8402074748E-06 1.819962988 0.6590798683E-06 1.833844806 0.5053819580E-06 1.847726625 0.3775769006E-06 1.861608443 0.2737139468E-06 1.875490261 0.1915057441E-06 1.889372080 0.1284150082E-06 1.903253898 0.8174790454E-07 1.917135717 0.4875123636E-07 1.931017535 0.2671038609E-07 1.944899354 0.1304490639E-07 1.958781172 0.5398711750E-08 1.972662991 0.1721976962E-08 1.986544809 0.3421030654E-09 2.000426628 0.2145526544E-10 2.014308446 0.1248848272E-35 2.027941873 0.3708983310E-10 2.041575301 0.5903600893E-09 2.055208728 0.2962911867E-08 2.068842156 0.9251341716E-08 2.082475583 0.2223667460E-07 2.096109011 0.4523905914E-07 2.109742438 0.8194317487E-07 2.123375865 0.1362026842E-06 2.137009293 0.2118330367E-06 2.150642720 0.3124024524E-06 2.164276148 0.4410309540E-06 2.177909575 0.6002068834E-06 2.191543002 0.7916294540E-06 2.205176430 0.1016084605E-05 2.218809857 0.1273359798E-05 2.232443285 0.1562201533E-05 2.246076712 0.1880317324E-05 2.259710140 0.2224421792E-05 2.273343567 0.2590324524E-05 2.286976994 0.2973055442E-05 2.300610422 0.3367021791E-05 2.314243849 0.3766189554E-05 2.327877277 0.4164281116E-05 2.341510704 0.4554980502E-05 2.355144132 0.4932137374E-05 2.368777559 0.5289961319E-05 2.382410986 0.5623198651E-05 2.396044414 0.5927285026E-05 2.409677841 0.6198468517E-05 2.423311269 0.6433899326E-05 2.436944696 0.6631684006E-05 2.450578123 0.6790903761E-05 2.464211551 0.6911598023E-05 2.477844978 0.6994716010E-05 2.491478406 0.7042040281E-05 2.505111833 0.7056087264E-05 2.518745261 0.7039990492E-05 2.532378688 0.6997372606E-05 2.546012115 0.6932212216E-05 2.559645543 0.6848711426E-05 2.573278970 0.6751169228E-05 2.586912398 0.6643865132E-05 2.600545825 0.6530956421E-05 2.614179253 0.6416391268E-05 2.627812680 0.6303838836E-05 2.641446107 0.6196636344E-05 2.655079535 0.6097752075E-05 2.668712962 0.6009762480E-05 2.682346390 0.5934840880E-05 2.695979817 0.5874754882E-05 2.709613245 0.5830869496E-05 2.723246672 0.5804153083E-05 2.736880099 0.5795183581E-05 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/PHLWLINES.OUT0000644000000000000000000000013214061636520024257 xustar0030 mtime=1623670096.355101155 30 atime=1623670096.355101155 30 ctime=1623670096.355101155 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PHLWLINES.OUT0000644002504400250440000000050014061636520026307 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.7273581532E-05 0.000000000 0.1454716306E-04 0.8343538771 -0.7273581532E-05 0.8343538771 0.1454716306E-04 2.014308446 -0.7273581532E-05 2.014308446 0.1454716306E-04 2.736880099 -0.7273581532E-05 2.736880099 0.1454716306E-04 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023424 xustar0030 mtime=1623670096.356101154 30 atime=1623670096.356101154 30 ctime=1623670096.356101154 elk-7.2.42/examples/phonons-superconductivity/Al-DFPT/elk.in0000644002504400250440000000346414061636520025470 0ustar00dewhurstdewhurst00000000000000 ! Phonon spectrum and solving the Eliashberg equations to find the temperature- ! dependent superconducting gap. This uses density functional perturbation ! theory (DFPT) to calculate the phonon modes. ! You can submit the same phonon job (task=205) on as many machines as you like, ! but they must be be able to see the same directory. Each machine will compute ! a row of a particular dynamical matrix. The code assembles all the pieces to ! construct the dynamical and electron-phonon coupling matrices throughout the ! Brillouin zone. ! Example by Antonio Sanna. tasks 0 205 ! phonon q-point grid ngridq 4 4 4 ! add extra local-orbitals for accurate electron-phonon coupling nxlo 1 ngridk 8 8 8 ! larger smearing width required for stable phonon dispersion swidth 0.005 stype 1 ! increase the number of muffin-tin points (for accurate gradients) nrmtscf 1.5 ! uncomment the following lines for electron-phonon and Eliashberg calculations !ngridk ! 28 28 28 !tasks ! 1 : ground-state run ! 210 : phonon DOS ! 220 : phonon dispersion ! 240 : electron-phonon matrix elements ! 245 : phonon line-widths ! 250 : Eliashberg function, alpha^2F ! 260 : solving the Eliashberg equations ! number of temperature steps for Eliashberg calculation ntemp 80 ! use Broyden mixing mixtype 3 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 ! we use the LDA equilibrium lattice constant scale 3.7653 sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 plot1d 4 200 : nvp1d, npp1d 0.0 0.0 0.0 : vlvp1d 0.5 0.5 0.0 1.0 0.0 0.0 0.5 0.0 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Nb-supercell0000644000000000000000000000013214061636520023510 xustar0030 mtime=1623670096.358101152 30 atime=1623670096.357101153 30 ctime=1623670096.358101152 elk-7.2.42/examples/phonons-superconductivity/Nb-supercell/0000755002504400250440000000000014061636520025622 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Nb-supercell/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024670 xustar0030 mtime=1623670096.359101152 30 atime=1623670096.358101152 30 ctime=1623670096.359101152 elk-7.2.42/examples/phonons-superconductivity/Nb-supercell/elk.in0000644002504400250440000000700514061636520026727 0ustar00dewhurstdewhurst00000000000000 ! Example of how to determine the electron-phonon coupling parameters and ! superconducting transition temperature T_c. ! Note that these calculations are very time-consuming and require many ! computers sharing a common directory to run efficiently. It is also important ! to make sure the results are converged with respect to the various input ! parameters and err on the side of caution. Electron-phonon coupling is still ! an experimental feature at this stage. ! Follow the steps below for niobium on a 4x4x4 q-point grid. This is a time- ! consuming example, so the main results are included in this directory. avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 ! LDA equilibrium lattice parameter scale 3.071 sppath '../../../species/' atoms 1 : nspecies 'Nb.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 ! use efficient Broyden mixing mixtype 3 ! larger smearing width required swidth 0.005 stype 1 !--------------------------------------------------------------------------! ! Step 1: Compute the dynamical matrices and potential derivatives ! !--------------------------------------------------------------------------! ! This step should be run on as many computers as possible which share the same ! directory on a networked file system - just keep submitting jobs to the queue ! from the same directory. As usual, each job can be individually parallel ! using OpenMP. ! The code works by determining which DYN_Qqqqq_qqqq_qqqq_Sss_Aaa_Pp.OUT files ! need to be calculated. These files contain a single row of a dynamical matrix. ! If a calculation fails to complete, just delete that particular DYN file and ! re-run the code. All the DYN files must be calculated before proceeding to the ! next step. tasks 200 ! the q-point grid ngridq 4 4 4 ! add extra local-orbitals for accurate electron-phonon coupling nxlo 1 ! larger cut-off required rgkmax 8.0 ! this is an important parameter which fixes the k-point density irrespective ! of the size of the phonon supercell radkpt 40.0 !-----------------------------------------------------------------------! ! Step 2: Phonon dispersion curves and electron-phonon coupling ! !-----------------------------------------------------------------------! ! This should be run on one computer. You can plot the dispersion curves in the ! file PHDISP.OUT along with lines corresponding to high symmetry points stored ! in PHDLINES.OUT. The phonon linewidths along the same directions are in the ! file PHLWIDTH.OUT (PHLWLINES.OUT). The electron-phonon coupling parameter, ! lambda, and the estimated T_c is stored in MCMILLAN.OUT. You can also plot the ! Eliashberg function in ALPHA2F.OUT. Compare with the results of Bauer et al. ! in PRB 57, 11276 (1998). ! Uncomment the tasks below and run. !tasks ! 0 ! ground-state run ! 220 ! plot the phonon dispersion ! 240 ! generate the q-dependent phonon linewidths and coupling constants ! 245 ! plot the phonon linewidths ! 250 ! Eliashberg function, coupling constant, and superconducting T_c ! fine k-point grid required for accurate electron-phonon coupling; it should ! also be commensurate with the q-point grid ngridk 32 32 32 ! vertex location lines for the dispersion curves and phonon linewidths plot1d 9 400 0.5 0.5 0.5 0.25 0.25 0.25 0.0 0.0 0.0 -0.5 0.5 0.5 -0.5 0.5 0.0 -0.75 0.25 0.25 -0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Al-supercell0000644000000000000000000000013014061636520023503 xustar0029 mtime=1623670096.36110115 30 atime=1623670096.360101151 29 ctime=1623670096.36110115 elk-7.2.42/examples/phonons-superconductivity/Al-supercell/0000755002504400250440000000000014061636520025617 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Al-supercell/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024665 xustar0030 mtime=1623670096.362101149 30 atime=1623670096.362101149 30 ctime=1623670096.362101149 elk-7.2.42/examples/phonons-superconductivity/Al-supercell/elk.in0000644002504400250440000000354714061636520026733 0ustar00dewhurstdewhurst00000000000000 ! Phonon spectrum and solving the Eliashberg equations to find the temperature- ! dependent superconducting gap. This example uses finite displacements and a ! supercell to determine the phonon modes. ! You can submit the same phonon job (task=200) on as many machines as you like, ! but they must be be able to see the same directory. Each machine will compute ! a row of a particular dynamical matrix. The code assembles all the pieces to ! construct the dynamical and electron-phonon coupling matrices throughout the ! Brillouin zone. ! Example by Antonio Sanna. tasks 200 ! phonon q-point grid ngridq 4 4 4 ! add extra local-orbitals for accurate electron-phonon coupling nxlo 1 swidth 0.005 stype 1 ! uncomment the following lines for electron-phonon and Eliashberg calculations !tasks ! 0 : ground-state run ! 210 : phonon DOS ! 220 : phonon dispersion ! 240 : electron-phonon matrix elements ! 245 : phonon line-widths ! 250 : Eliashberg function, alpha^2F ! 260 : solving the Eliashberg equations ! number of temperature steps for Eliashberg calculation ntemp 80 ! k-point grid density is determined by the radius radkpt ! (only used for the phonon calculation) radkpt 40.0 ! fine k-point mesh required for the electron-phonon coupling (must be ! commensurate with q-point mesh) ngridk 24 24 24 ! use Broyden mixing mixtype 3 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 ! we use the LDA equilibrium lattice constant scale 3.7653 sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 plot1d 4 200 : nvp1d, npp1d 0.0 0.0 0.0 : vlvp1d 0.5 0.5 0.0 1.0 0.0 0.0 0.5 0.0 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Ni-supercell0000644000000000000000000000013214061636520023517 xustar0030 mtime=1623670096.367101144 30 atime=1623670096.363101148 30 ctime=1623670096.367101144 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/0000755002504400250440000000000014061636520025631 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000013214061636520025154 xustar0030 mtime=1623670096.365101146 30 atime=1623670096.364101147 30 ctime=1623670096.365101146 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/PHDISP.OUT0000644002504400250440000012660214061636520027220 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.3394132962E-10 0.1025457845E-01 0.1888579557E-04 0.2050915690E-01 0.3774855680E-04 0.3076373535E-01 0.5656537833E-04 0.4101831380E-01 0.7531361194E-04 0.5127289224E-01 0.9397099299E-04 0.6152747069E-01 0.1125157644E-03 0.7178204914E-01 0.1309267971E-03 0.8203662759E-01 0.1491837067E-03 0.9229120604E-01 0.1672669646E-03 0.1025457845 0.1851580040E-03 0.1128003629 0.2028393184E-03 0.1230549414 0.2202945538E-03 0.1333095198 0.2375085924E-03 0.1435640983 0.2544676267E-03 0.1538186767 0.2711592258E-03 0.1640732552 0.2875723900E-03 0.1743278336 0.3036975955E-03 0.1845824121 0.3195268278E-03 0.1948369905 0.3350536033E-03 0.2050915690 0.3502729785E-03 0.2153461474 0.3651815471E-03 0.2256007259 0.3797774247E-03 0.2358553043 0.3940602199E-03 0.2461098828 0.4080309931E-03 0.2563644612 0.4216922031E-03 0.2666190397 0.4350476401E-03 0.2768736181 0.4481023480E-03 0.2871281966 0.4608625340E-03 0.2973827750 0.4733354689E-03 0.3076373535 0.4855293761E-03 0.3178919319 0.4974533127E-03 0.3281465104 0.5091170432E-03 0.3384010888 0.5205309060E-03 0.3486556673 0.5317056765E-03 0.3589102457 0.5426524259E-03 0.3691648242 0.5533823796E-03 0.3794194026 0.5639067756E-03 0.3896739811 0.5742367252E-03 0.3999285595 0.5843830783E-03 0.4101831380 0.5943562938E-03 0.4204377164 0.6041663188E-03 0.4306922949 0.6138224763E-03 0.4409468733 0.6233333642E-03 0.4512014517 0.6327067665E-03 0.4614560302 0.6419495770E-03 0.4717106086 0.6510677385E-03 0.4819651871 0.6600661954E-03 0.4922197655 0.6689488615E-03 0.5024743440 0.6777186039E-03 0.5127289224 0.6863772404E-03 0.5229835009 0.6949255519E-03 0.5332380793 0.7033633083E-03 0.5434926578 0.7116893071E-03 0.5537472362 0.7199014233E-03 0.5640018147 0.7279966696E-03 0.5742563931 0.7359712654E-03 0.5845109716 0.7438207130E-03 0.5947655500 0.7515398791E-03 0.6050201285 0.7591230814E-03 0.6152747069 0.7665641761E-03 0.6255292854 0.7738566482E-03 0.6357838638 0.7809936999E-03 0.6460384423 0.7879683377E-03 0.6562930207 0.7947734566E-03 0.6665475992 0.8014019204E-03 0.6768021776 0.8078466355E-03 0.6870567561 0.8141006205E-03 0.6973113345 0.8201570684E-03 0.7075659130 0.8260094010E-03 0.7178204914 0.8316513171E-03 0.7280750699 0.8370768322E-03 0.7383296483 0.8422803105E-03 0.7485842268 0.8472564895E-03 0.7588388052 0.8520004965E-03 0.7690933837 0.8565078592E-03 0.7793479621 0.8607745077E-03 0.7896025406 0.8647967719E-03 0.7998571190 0.8685713725E-03 0.8101116975 0.8720954070E-03 0.8203662759 0.8753663316E-03 0.8306208544 0.8783819399E-03 0.8408754328 0.8811403384E-03 0.8511300113 0.8836399205E-03 0.8613845897 0.8858793394E-03 0.8716391682 0.8878574806E-03 0.8818937466 0.8895734352E-03 0.8921483250 0.8910264741E-03 0.9024029035 0.8922160243E-03 0.9126574819 0.8931416479E-03 0.9229120604 0.8938030241E-03 0.9331666388 0.8941999341E-03 0.9434212173 0.8943322513E-03 0.9434212173 0.8943322513E-03 0.9535655315 0.8943189294E-03 0.9637098456 0.8942790429E-03 0.9738541598 0.8942128294E-03 0.9839984740 0.8941206825E-03 0.9941427881 0.8940031484E-03 1.004287102 0.8938609212E-03 1.014431416 0.8936948370E-03 1.024575731 0.8935058665E-03 1.034720045 0.8932951070E-03 1.044864359 0.8930637731E-03 1.055008673 0.8928131868E-03 1.065152987 0.8925447664E-03 1.075297301 0.8922600150E-03 1.085441616 0.8919605092E-03 1.095585930 0.8916478862E-03 1.105730244 0.8913238320E-03 1.115874558 0.8909900687E-03 1.126018872 0.8906483419E-03 1.136163186 0.8903004094E-03 1.146307501 0.8899480289E-03 1.156451815 0.8895929470E-03 1.166596129 0.8892368888E-03 1.176740443 0.8888815480E-03 1.186884757 0.8885285774E-03 1.197029071 0.8881795816E-03 1.207173386 0.8878361087E-03 1.217317700 0.8874996447E-03 1.227462014 0.8871716080E-03 1.237606328 0.8868533448E-03 1.247750642 0.8865461255E-03 1.257894956 0.8862511429E-03 1.268039271 0.8859695098E-03 1.278183585 0.8857022585E-03 1.288327899 0.8854503408E-03 1.298472213 0.8852146283E-03 1.308616527 0.8849959136E-03 1.318760841 0.8847949122E-03 1.328905156 0.8846122641E-03 1.339049470 0.8844485359E-03 1.349193784 0.8843042235E-03 1.359338098 0.8841797544E-03 1.369482412 0.8840754898E-03 1.379626726 0.8839917270E-03 1.389771041 0.8839287014E-03 1.399915355 0.8838865878E-03 1.410059669 0.8838655021E-03 1.420203983 0.8838655021E-03 1.430348297 0.8838865878E-03 1.440492611 0.8839287014E-03 1.450636926 0.8839917270E-03 1.460781240 0.8840754898E-03 1.470925554 0.8841797544E-03 1.481069868 0.8843042235E-03 1.491214182 0.8844485359E-03 1.501358496 0.8846122641E-03 1.511502811 0.8847949122E-03 1.521647125 0.8849959136E-03 1.531791439 0.8852146283E-03 1.541935753 0.8854503408E-03 1.552080067 0.8857022585E-03 1.562224381 0.8859695098E-03 1.572368695 0.8862511429E-03 1.582513010 0.8865461255E-03 1.592657324 0.8868533448E-03 1.602801638 0.8871716080E-03 1.612945952 0.8874996447E-03 1.623090266 0.8878361087E-03 1.633234580 0.8881795816E-03 1.643378895 0.8885285774E-03 1.653523209 0.8888815480E-03 1.663667523 0.8892368888E-03 1.673811837 0.8895929470E-03 1.683956151 0.8899480289E-03 1.694100465 0.8903004094E-03 1.704244780 0.8906483419E-03 1.714389094 0.8909900687E-03 1.724533408 0.8913238320E-03 1.734677722 0.8916478862E-03 1.744822036 0.8919605092E-03 1.754966350 0.8922600150E-03 1.765110665 0.8925447664E-03 1.775254979 0.8928131868E-03 1.785399293 0.8930637731E-03 1.795543607 0.8932951070E-03 1.805687921 0.8935058665E-03 1.815832235 0.8936948370E-03 1.825976550 0.8938609212E-03 1.836120864 0.8940031484E-03 1.846265178 0.8941206825E-03 1.856409492 0.8942128294E-03 1.866553806 0.8942790429E-03 1.876698120 0.8943189294E-03 1.886842435 0.8943322513E-03 1.886842435 0.8943322513E-03 1.897027160 0.8942714923E-03 1.907211886 0.8940892138E-03 1.917396612 0.8937854115E-03 1.927581338 0.8933600781E-03 1.937766064 0.8928132038E-03 1.947950789 0.8921447763E-03 1.958135515 0.8913547813E-03 1.968320241 0.8904432028E-03 1.978504967 0.8894100234E-03 1.988689693 0.8882552249E-03 1.998874418 0.8869787889E-03 2.009059144 0.8855806975E-03 2.019243870 0.8840609337E-03 2.029428596 0.8824194822E-03 2.039613322 0.8806563305E-03 2.049798047 0.8787714693E-03 2.059982773 0.8767648936E-03 2.070167499 0.8746366036E-03 2.080352225 0.8723866054E-03 2.090536951 0.8700149124E-03 2.100721677 0.8675215461E-03 2.110906402 0.8649065370E-03 2.121091128 0.8621699258E-03 2.131275854 0.8593117646E-03 2.141460580 0.8563321177E-03 2.151645306 0.8532310632E-03 2.161830031 0.8500086935E-03 2.172014757 0.8466651168E-03 2.182199483 0.8432004582E-03 2.192384209 0.8396148606E-03 2.202568935 0.8359084861E-03 2.212753660 0.8320815168E-03 2.222938386 0.8281341562E-03 2.233123112 0.8240666297E-03 2.243307838 0.8198791865E-03 2.253492564 0.8155720995E-03 2.263677289 0.8111456673E-03 2.273862015 0.8066002143E-03 2.284046741 0.8019360923E-03 2.294231467 0.7971536806E-03 2.304416193 0.7922533876E-03 2.314600918 0.7872356508E-03 2.324785644 0.7821009381E-03 2.334970370 0.7768497481E-03 2.345155096 0.7714826107E-03 2.355339822 0.7660000880E-03 2.365524547 0.7604027742E-03 2.375709273 0.7546912965E-03 2.385893999 0.7488663152E-03 2.396078725 0.7429285241E-03 2.406263451 0.7368786507E-03 2.416448176 0.7307174561E-03 2.426632902 0.7244457358E-03 2.436817628 0.7180643188E-03 2.447002354 0.7115740682E-03 2.457187080 0.7049758810E-03 2.467371806 0.6982706876E-03 2.477556531 0.6914594519E-03 2.487741257 0.6845431709E-03 2.497925983 0.6775228742E-03 2.508110709 0.6703996238E-03 2.518295435 0.6631745133E-03 2.528480160 0.6558486676E-03 2.538664886 0.6484232422E-03 2.548849612 0.6408994224E-03 2.559034338 0.6332784229E-03 2.569219064 0.6255614865E-03 2.579403789 0.6177498837E-03 2.589588515 0.6098449118E-03 2.599773241 0.6018478937E-03 2.609957967 0.5937601772E-03 2.620142693 0.5855831337E-03 2.630327418 0.5773181576E-03 2.640512144 0.5689666647E-03 2.650696870 0.5605300915E-03 2.660881596 0.5520098939E-03 2.671066322 0.5434075462E-03 2.681251047 0.5347245395E-03 2.691435773 0.5259623811E-03 2.701620499 0.5171225929E-03 2.711805225 0.5082067102E-03 2.721989951 0.4992162808E-03 2.732174676 0.4901528635E-03 2.742359402 0.4810180267E-03 2.752544128 0.4718133480E-03 2.762728854 0.4625404119E-03 2.772913580 0.4532008097E-03 2.783098305 0.4437961373E-03 2.793283031 0.4343279951E-03 2.803467757 0.4247979860E-03 2.813652483 0.4152077148E-03 2.823837209 0.4055587871E-03 2.834021935 0.3958528081E-03 2.844206660 0.3860913817E-03 2.854391386 0.3762761096E-03 2.864576112 0.3664085904E-03 2.874760838 0.3564904186E-03 2.884945564 0.3465231840E-03 2.895130289 0.3365084707E-03 2.905315015 0.3264478566E-03 2.915499741 0.3163429126E-03 2.925684467 0.3061952021E-03 2.935869193 0.2960062803E-03 2.946053918 0.2857776941E-03 2.956238644 0.2755109810E-03 2.966423370 0.2652076694E-03 2.976608096 0.2548692780E-03 2.986792822 0.2444973154E-03 2.996977547 0.2340932802E-03 3.007162273 0.2236586608E-03 3.017346999 0.2131949351E-03 3.027531725 0.2027035709E-03 3.037716451 0.1921860256E-03 3.047901176 0.1816437465E-03 3.058085902 0.1710781707E-03 3.068270628 0.1604907259E-03 3.078455354 0.1498828301E-03 3.088640080 0.1392558919E-03 3.098824805 0.1286113115E-03 3.109009531 0.1179504805E-03 3.119194257 0.1072747825E-03 3.129378983 0.9658559397E-04 3.139563709 0.8588428426E-04 3.149748434 0.7517221653E-04 3.159933160 0.6445074829E-04 3.170117886 0.5372123199E-04 3.180302612 0.4298501573E-04 3.190487338 0.3224344396E-04 3.200672064 0.2149785816E-04 3.210856789 0.1074959759E-04 3.221041515 -0.3394132962E-10 3.221041515 -0.3394132962E-10 3.231254349 0.1251907998E-04 3.241467184 0.2503301127E-04 3.251680018 0.3753664830E-04 3.261892852 0.5002485164E-04 3.272105686 0.6249249112E-04 3.282318521 0.7493444889E-04 3.292531355 0.8734562243E-04 3.302744189 0.9972092760E-04 3.312957023 0.1120553016E-03 3.323169858 0.1243437059E-03 3.333382692 0.1365811293E-03 3.343595526 0.1487625906E-03 3.353808360 0.1608831416E-03 3.364021195 0.1729378697E-03 3.374234029 0.1849219007E-03 3.384446863 0.1968304017E-03 3.394659698 0.2086585833E-03 3.404872532 0.2204017022E-03 3.415085366 0.2320550641E-03 3.425298200 0.2436140256E-03 3.435511035 0.2550739966E-03 3.445723869 0.2664304427E-03 3.455936703 0.2776788874E-03 3.466149537 0.2888149139E-03 3.476362372 0.2998341673E-03 3.486575206 0.3107323565E-03 3.496788040 0.3215052559E-03 3.507000874 0.3321487071E-03 3.517213709 0.3426586210E-03 3.527426543 0.3530309784E-03 3.537639377 0.3632618324E-03 3.547852211 0.3733473094E-03 3.558065046 0.3832836099E-03 3.568277880 0.3930670107E-03 3.578490714 0.4026938649E-03 3.588703548 0.4121606035E-03 3.598916383 0.4214637363E-03 3.609129217 0.4305998523E-03 3.619342051 0.4395656210E-03 3.629554885 0.4483577925E-03 3.639767720 0.4569731982E-03 3.649980554 0.4654087515E-03 3.660193388 0.4736614481E-03 3.670406222 0.4817283658E-03 3.680619057 0.4896066656E-03 3.690831891 0.4972935913E-03 3.701044725 0.5047864695E-03 3.711257560 0.5120827101E-03 3.721470394 0.5191798058E-03 3.731683228 0.5260753323E-03 3.741896062 0.5327669482E-03 3.752108897 0.5392523944E-03 3.762321731 0.5455294943E-03 3.772534565 0.5515961533E-03 3.782747399 0.5574503584E-03 3.792960234 0.5630901781E-03 3.803173068 0.5685137617E-03 3.813385902 0.5737193393E-03 3.823598736 0.5787052206E-03 3.833811571 0.5834697955E-03 3.844024405 0.5880115327E-03 3.854237239 0.5923289796E-03 3.864450073 0.5964207619E-03 3.874662908 0.6002855831E-03 3.884875742 0.6039222236E-03 3.895088576 0.6073295407E-03 3.905301410 0.6105064680E-03 3.915514245 0.6134520149E-03 3.925727079 0.6161652659E-03 3.935939913 0.6186453809E-03 3.946152747 0.6208915938E-03 3.956365582 0.6229032129E-03 3.966578416 0.6246796205E-03 3.976791250 0.6262202719E-03 3.987004084 0.6275246960E-03 3.997216919 0.6285924945E-03 4.007429753 0.6294233417E-03 4.017642587 0.6300169847E-03 4.027855422 0.6303732426E-03 4.038068256 0.6304920073E-03 0.000000000 -0.3394132962E-10 0.1025457845E-01 0.1888579557E-04 0.2050915690E-01 0.3774855680E-04 0.3076373535E-01 0.5656537833E-04 0.4101831380E-01 0.7531361194E-04 0.5127289224E-01 0.9397099299E-04 0.6152747069E-01 0.1125157644E-03 0.7178204914E-01 0.1309267971E-03 0.8203662759E-01 0.1491837067E-03 0.9229120604E-01 0.1672669646E-03 0.1025457845 0.1851580040E-03 0.1128003629 0.2028393184E-03 0.1230549414 0.2202945538E-03 0.1333095198 0.2375085924E-03 0.1435640983 0.2544676267E-03 0.1538186767 0.2711592258E-03 0.1640732552 0.2875723900E-03 0.1743278336 0.3036975955E-03 0.1845824121 0.3195268278E-03 0.1948369905 0.3350536033E-03 0.2050915690 0.3502729785E-03 0.2153461474 0.3651815471E-03 0.2256007259 0.3797774247E-03 0.2358553043 0.3940602199E-03 0.2461098828 0.4080309931E-03 0.2563644612 0.4216922031E-03 0.2666190397 0.4350476401E-03 0.2768736181 0.4481023480E-03 0.2871281966 0.4608625340E-03 0.2973827750 0.4733354689E-03 0.3076373535 0.4855293761E-03 0.3178919319 0.4974533127E-03 0.3281465104 0.5091170432E-03 0.3384010888 0.5205309060E-03 0.3486556673 0.5317056765E-03 0.3589102457 0.5426524259E-03 0.3691648242 0.5533823796E-03 0.3794194026 0.5639067756E-03 0.3896739811 0.5742367252E-03 0.3999285595 0.5843830783E-03 0.4101831380 0.5943562938E-03 0.4204377164 0.6041663188E-03 0.4306922949 0.6138224763E-03 0.4409468733 0.6233333642E-03 0.4512014517 0.6327067665E-03 0.4614560302 0.6419495770E-03 0.4717106086 0.6510677385E-03 0.4819651871 0.6600661954E-03 0.4922197655 0.6689488615E-03 0.5024743440 0.6777186039E-03 0.5127289224 0.6863772404E-03 0.5229835009 0.6949255519E-03 0.5332380793 0.7033633083E-03 0.5434926578 0.7116893071E-03 0.5537472362 0.7199014233E-03 0.5640018147 0.7279966696E-03 0.5742563931 0.7359712654E-03 0.5845109716 0.7438207130E-03 0.5947655500 0.7515398791E-03 0.6050201285 0.7591230814E-03 0.6152747069 0.7665641761E-03 0.6255292854 0.7738566482E-03 0.6357838638 0.7809936999E-03 0.6460384423 0.7879683377E-03 0.6562930207 0.7947734566E-03 0.6665475992 0.8014019204E-03 0.6768021776 0.8078466355E-03 0.6870567561 0.8141006205E-03 0.6973113345 0.8201570684E-03 0.7075659130 0.8260094010E-03 0.7178204914 0.8316513171E-03 0.7280750699 0.8370768322E-03 0.7383296483 0.8422803105E-03 0.7485842268 0.8472564895E-03 0.7588388052 0.8520004965E-03 0.7690933837 0.8565078592E-03 0.7793479621 0.8607745077E-03 0.7896025406 0.8647967719E-03 0.7998571190 0.8685713725E-03 0.8101116975 0.8720954070E-03 0.8203662759 0.8753663316E-03 0.8306208544 0.8783819399E-03 0.8408754328 0.8811403384E-03 0.8511300113 0.8836399205E-03 0.8613845897 0.8858793394E-03 0.8716391682 0.8878574806E-03 0.8818937466 0.8895734352E-03 0.8921483250 0.8910264741E-03 0.9024029035 0.8922160243E-03 0.9126574819 0.8931416479E-03 0.9229120604 0.8938030241E-03 0.9331666388 0.8941999341E-03 0.9434212173 0.8943322513E-03 0.9434212173 0.8943322513E-03 0.9535655315 0.8944054692E-03 0.9637098456 0.8946248999E-03 0.9738541598 0.8949898793E-03 0.9839984740 0.8954993181E-03 0.9941427881 0.8961517261E-03 1.004287102 0.8969452468E-03 1.014431416 0.8978776996E-03 1.024575731 0.8989466297E-03 1.034720045 0.9001493625E-03 1.044864359 0.9014830646E-03 1.055008673 0.9029448051E-03 1.065152987 0.9045316205E-03 1.075297301 0.9062405774E-03 1.085441616 0.9080688342E-03 1.095585930 0.9100136988E-03 1.105730244 0.9120726809E-03 1.115874558 0.9142435382E-03 1.126018872 0.9165243144E-03 1.136163186 0.9189133681E-03 1.146307501 0.9214093923E-03 1.156451815 0.9240114232E-03 1.166596129 0.9267188376E-03 1.176740443 0.9295313399E-03 1.186884757 0.9324489374E-03 1.197029071 0.9354719049E-03 1.207173386 0.9386007387E-03 1.217317700 0.9418361018E-03 1.227462014 0.9451787596E-03 1.237606328 0.9486295090E-03 1.247750642 0.9521891010E-03 1.257894956 0.9558581595E-03 1.268039271 0.9596370964E-03 1.278183585 0.9635260269E-03 1.288327899 0.9675246846E-03 1.298472213 0.9716323399E-03 1.308616527 0.9758477226E-03 1.318760841 0.9801689507E-03 1.328905156 0.9845934676E-03 1.339049470 0.9891179870E-03 1.349193784 0.9937384508E-03 1.359338098 0.9984499962E-03 1.369482412 0.1003246937E-02 1.379626726 0.1008122758E-02 1.389771041 0.1013070122E-02 1.399915355 0.1018080888E-02 1.410059669 0.1023146150E-02 1.420203983 0.1023146150E-02 1.430348297 0.1018080888E-02 1.440492611 0.1013070122E-02 1.450636926 0.1008122758E-02 1.460781240 0.1003246937E-02 1.470925554 0.9984499962E-03 1.481069868 0.9937384508E-03 1.491214182 0.9891179870E-03 1.501358496 0.9845934676E-03 1.511502811 0.9801689507E-03 1.521647125 0.9758477226E-03 1.531791439 0.9716323399E-03 1.541935753 0.9675246846E-03 1.552080067 0.9635260269E-03 1.562224381 0.9596370964E-03 1.572368695 0.9558581595E-03 1.582513010 0.9521891010E-03 1.592657324 0.9486295090E-03 1.602801638 0.9451787596E-03 1.612945952 0.9418361018E-03 1.623090266 0.9386007387E-03 1.633234580 0.9354719049E-03 1.643378895 0.9324489374E-03 1.653523209 0.9295313399E-03 1.663667523 0.9267188376E-03 1.673811837 0.9240114232E-03 1.683956151 0.9214093923E-03 1.694100465 0.9189133681E-03 1.704244780 0.9165243144E-03 1.714389094 0.9142435382E-03 1.724533408 0.9120726809E-03 1.734677722 0.9100136988E-03 1.744822036 0.9080688342E-03 1.754966350 0.9062405774E-03 1.765110665 0.9045316205E-03 1.775254979 0.9029448051E-03 1.785399293 0.9014830646E-03 1.795543607 0.9001493625E-03 1.805687921 0.8989466297E-03 1.815832235 0.8978776996E-03 1.825976550 0.8969452468E-03 1.836120864 0.8961517261E-03 1.846265178 0.8954993181E-03 1.856409492 0.8949898793E-03 1.866553806 0.8946248999E-03 1.876698120 0.8944054692E-03 1.886842435 0.8943322513E-03 1.886842435 0.8943322513E-03 1.897027160 0.8944779425E-03 1.907211886 0.8949145542E-03 1.917396612 0.8956407038E-03 1.927581338 0.8966540951E-03 1.937766064 0.8979515299E-03 1.947950789 0.8995289250E-03 1.958135515 0.9013813328E-03 1.968320241 0.9035029662E-03 1.978504967 0.9058872268E-03 1.988689693 0.9085267373E-03 1.998874418 0.9114133755E-03 2.009059144 0.9145383121E-03 2.019243870 0.9178920491E-03 2.029428596 0.9214644611E-03 2.039613322 0.9252448367E-03 2.049798047 0.9292219212E-03 2.059982773 0.9333839594E-03 2.070167499 0.9377187382E-03 2.080352225 0.9422136294E-03 2.090536951 0.9468556309E-03 2.100721677 0.9516314077E-03 2.110906402 0.9565273315E-03 2.121091128 0.9615295191E-03 2.131275854 0.9666238685E-03 2.141460580 0.9717960949E-03 2.151645306 0.9770317636E-03 2.161830031 0.9823163220E-03 2.172014757 0.9876351296E-03 2.182199483 0.9929734861E-03 2.192384209 0.9983166583E-03 2.202568935 0.1003649905E-02 2.212753660 0.1008958500E-02 2.222938386 0.1014227755E-02 2.233123112 0.1019443037E-02 2.243307838 0.1024589794E-02 2.253492564 0.1029653563E-02 2.263677289 0.1034619997E-02 2.273862015 0.1039474872E-02 2.284046741 0.1044204106E-02 2.294231467 0.1048793774E-02 2.304416193 0.1045990072E-02 2.314600918 0.1040269913E-02 2.324785644 0.1034413404E-02 2.334970370 0.1028420353E-02 2.345155096 0.1022290545E-02 2.355339822 0.1016023740E-02 2.365524547 0.1009619677E-02 2.375709273 0.1003078071E-02 2.385893999 0.9963986186E-03 2.396078725 0.9895809965E-03 2.406263451 0.9826248638E-03 2.416448176 0.9755298640E-03 2.426632902 0.9682956267E-03 2.436817628 0.9609217697E-03 2.447002354 0.9534079015E-03 2.457187080 0.9457536233E-03 2.467371806 0.9379585316E-03 2.477556531 0.9300222213E-03 2.487741257 0.9219442879E-03 2.497925983 0.9137243310E-03 2.508110709 0.9053619571E-03 2.518295435 0.8968567825E-03 2.528480160 0.8882084372E-03 2.538664886 0.8794165676E-03 2.548849612 0.8704808404E-03 2.559034338 0.8614009459E-03 2.569219064 0.8521766016E-03 2.579403789 0.8428075556E-03 2.589588515 0.8332935905E-03 2.599773241 0.8236345270E-03 2.609957967 0.8138302273E-03 2.620142693 0.8038805990E-03 2.630327418 0.7937855988E-03 2.640512144 0.7835452358E-03 2.650696870 0.7731595754E-03 2.660881596 0.7626287425E-03 2.671066322 0.7519529251E-03 2.681251047 0.7411323779E-03 2.691435773 0.7301674251E-03 2.701620499 0.7190584642E-03 2.711805225 0.7078059685E-03 2.721989951 0.6964104906E-03 2.732174676 0.6848726647E-03 2.742359402 0.6731932099E-03 2.752544128 0.6613729324E-03 2.762728854 0.6494127281E-03 2.772913580 0.6373135847E-03 2.783098305 0.6250765839E-03 2.793283031 0.6127029034E-03 2.803467757 0.6001938185E-03 2.813652483 0.5875507037E-03 2.823837209 0.5747750341E-03 2.834021935 0.5618683866E-03 2.844206660 0.5488324408E-03 2.854391386 0.5356689799E-03 2.864576112 0.5223798911E-03 2.874760838 0.5089671659E-03 2.884945564 0.4954329007E-03 2.895130289 0.4817792962E-03 2.905315015 0.4680086575E-03 2.915499741 0.4541233932E-03 2.925684467 0.4401260154E-03 2.935869193 0.4260191380E-03 2.946053918 0.4118054762E-03 2.956238644 0.3974878449E-03 2.966423370 0.3830691570E-03 2.976608096 0.3685524224E-03 2.986792822 0.3539407451E-03 2.996977547 0.3392373218E-03 3.007162273 0.3244454393E-03 3.017346999 0.3095684721E-03 3.027531725 0.2946098798E-03 3.037716451 0.2795732040E-03 3.047901176 0.2644620656E-03 3.058085902 0.2492801614E-03 3.068270628 0.2340312610E-03 3.078455354 0.2187192030E-03 3.088640080 0.2033478918E-03 3.098824805 0.1879212934E-03 3.109009531 0.1724434319E-03 3.119194257 0.1569183854E-03 3.129378983 0.1413502816E-03 3.139563709 0.1257432943E-03 3.149748434 0.1101016382E-03 3.159933160 0.9442956517E-04 3.170117886 0.7873135965E-04 3.180302612 0.6301133401E-04 3.190487338 0.4727382404E-04 3.200672064 0.3152318433E-04 3.210856789 0.1576378360E-04 3.221041515 -0.3394132962E-10 3.221041515 -0.3394132962E-10 3.231254349 0.1251907998E-04 3.241467184 0.2503301127E-04 3.251680018 0.3753664830E-04 3.261892852 0.5002485164E-04 3.272105686 0.6249249112E-04 3.282318521 0.7493444889E-04 3.292531355 0.8734562243E-04 3.302744189 0.9972092760E-04 3.312957023 0.1120553016E-03 3.323169858 0.1243437059E-03 3.333382692 0.1365811293E-03 3.343595526 0.1487625906E-03 3.353808360 0.1608831416E-03 3.364021195 0.1729378697E-03 3.374234029 0.1849219007E-03 3.384446863 0.1968304017E-03 3.394659698 0.2086585833E-03 3.404872532 0.2204017022E-03 3.415085366 0.2320550641E-03 3.425298200 0.2436140256E-03 3.435511035 0.2550739966E-03 3.445723869 0.2664304427E-03 3.455936703 0.2776788874E-03 3.466149537 0.2888149139E-03 3.476362372 0.2998341673E-03 3.486575206 0.3107323565E-03 3.496788040 0.3215052559E-03 3.507000874 0.3321487071E-03 3.517213709 0.3426586210E-03 3.527426543 0.3530309784E-03 3.537639377 0.3632618324E-03 3.547852211 0.3733473094E-03 3.558065046 0.3832836099E-03 3.568277880 0.3930670107E-03 3.578490714 0.4026938649E-03 3.588703548 0.4121606035E-03 3.598916383 0.4214637363E-03 3.609129217 0.4305998523E-03 3.619342051 0.4395656210E-03 3.629554885 0.4483577925E-03 3.639767720 0.4569731982E-03 3.649980554 0.4654087515E-03 3.660193388 0.4736614481E-03 3.670406222 0.4817283658E-03 3.680619057 0.4896066656E-03 3.690831891 0.4972935913E-03 3.701044725 0.5047864695E-03 3.711257560 0.5120827101E-03 3.721470394 0.5191798058E-03 3.731683228 0.5260753323E-03 3.741896062 0.5327669482E-03 3.752108897 0.5392523944E-03 3.762321731 0.5455294943E-03 3.772534565 0.5515961533E-03 3.782747399 0.5574503584E-03 3.792960234 0.5630901781E-03 3.803173068 0.5685137617E-03 3.813385902 0.5737193393E-03 3.823598736 0.5787052206E-03 3.833811571 0.5834697955E-03 3.844024405 0.5880115327E-03 3.854237239 0.5923289796E-03 3.864450073 0.5964207619E-03 3.874662908 0.6002855831E-03 3.884875742 0.6039222236E-03 3.895088576 0.6073295407E-03 3.905301410 0.6105064680E-03 3.915514245 0.6134520149E-03 3.925727079 0.6161652659E-03 3.935939913 0.6186453809E-03 3.946152747 0.6208915938E-03 3.956365582 0.6229032129E-03 3.966578416 0.6246796205E-03 3.976791250 0.6262202719E-03 3.987004084 0.6275246960E-03 3.997216919 0.6285924945E-03 4.007429753 0.6294233417E-03 4.017642587 0.6300169847E-03 4.027855422 0.6303732426E-03 4.038068256 0.6304920073E-03 0.000000000 -0.3394132962E-10 0.1025457845E-01 0.2450379401E-04 0.2050915690E-01 0.4899861705E-04 0.3076373535E-01 0.7347543114E-04 0.4101831380E-01 0.9792506537E-04 0.5127289224E-01 0.1223381526E-03 0.6152747069E-01 0.1467050695E-03 0.7178204914E-01 0.1710158815E-03 0.8203662759E-01 0.1952602932E-03 0.9229120604E-01 0.2194276058E-03 0.1025457845 0.2435066815E-03 0.1128003629 0.2674859161E-03 0.1230549414 0.2913532211E-03 0.1333095198 0.3150960143E-03 0.1435640983 0.3387012196E-03 0.1538186767 0.3621552779E-03 0.1640732552 0.3854441659E-03 0.1743278336 0.4085534262E-03 0.1845824121 0.4314682057E-03 0.1948369905 0.4541733035E-03 0.2050915690 0.4766532275E-03 0.2153461474 0.4988922587E-03 0.2256007259 0.5208745227E-03 0.2358553043 0.5425840684E-03 0.2461098828 0.5640049515E-03 0.2563644612 0.5851213237E-03 0.2666190397 0.6059175246E-03 0.2768736181 0.6263781778E-03 0.2871281966 0.6464882872E-03 0.2973827750 0.6662333351E-03 0.3076373535 0.6855993795E-03 0.3178919319 0.7045731495E-03 0.3281465104 0.7231421390E-03 0.3384010888 0.7412946957E-03 0.3486556673 0.7590201062E-03 0.3589102457 0.7763086753E-03 0.3691648242 0.7931517980E-03 0.3794194026 0.8095420252E-03 0.3896739811 0.8254731193E-03 0.3999285595 0.8409401027E-03 0.4101831380 0.8559392943E-03 0.4204377164 0.8704683376E-03 0.4306922949 0.8845262160E-03 0.4409468733 0.8981132578E-03 0.4512014517 0.9112311295E-03 0.4614560302 0.9238828164E-03 0.4717106086 0.9360725923E-03 0.4819651871 0.9478059764E-03 0.4922197655 0.9590896794E-03 0.5024743440 0.9699315373E-03 0.5127289224 0.9803404355E-03 0.5229835009 0.9903262219E-03 0.5332380793 0.9998996109E-03 0.5434926578 0.1009072079E-02 0.5537472362 0.1017855753E-02 0.5640018147 0.1026263293E-02 0.5742563931 0.1034307769E-02 0.5845109716 0.1042002534E-02 0.5947655500 0.1049361099E-02 0.6050201285 0.1056397002E-02 0.6152747069 0.1063123686E-02 0.6255292854 0.1069554372E-02 0.6357838638 0.1075701942E-02 0.6460384423 0.1081578828E-02 0.6562930207 0.1087196909E-02 0.6665475992 0.1092567415E-02 0.6768021776 0.1097700846E-02 0.6870567561 0.1102606900E-02 0.6973113345 0.1107294416E-02 0.7075659130 0.1111771327E-02 0.7178204914 0.1116044632E-02 0.7280750699 0.1120120383E-02 0.7383296483 0.1124003677E-02 0.7485842268 0.1127698678E-02 0.7588388052 0.1131208635E-02 0.7690933837 0.1134535931E-02 0.7793479621 0.1137682128E-02 0.7896025406 0.1140648033E-02 0.7998571190 0.1143433770E-02 0.8101116975 0.1146038859E-02 0.8203662759 0.1148462305E-02 0.8306208544 0.1150702684E-02 0.8408754328 0.1152758244E-02 0.8511300113 0.1154626990E-02 0.8613845897 0.1156306784E-02 0.8716391682 0.1157795435E-02 0.8818937466 0.1159090782E-02 0.8921483250 0.1160190776E-02 0.9024029035 0.1161093552E-02 0.9126574819 0.1161797493E-02 0.9229120604 0.1162301286E-02 0.9331666388 0.1162603958E-02 0.9434212173 0.1162704916E-02 0.9434212173 0.1162704916E-02 0.9535655315 0.1162659450E-02 0.9637098456 0.1162522668E-02 0.9738541598 0.1162293427E-02 0.9839984740 0.1161969840E-02 0.9941427881 0.1161549316E-02 1.004287102 0.1161028606E-02 1.014431416 0.1160403855E-02 1.024575731 0.1159670681E-02 1.034720045 0.1158824248E-02 1.044864359 0.1157859357E-02 1.055008673 0.1156770539E-02 1.065152987 0.1155552159E-02 1.075297301 0.1154198516E-02 1.085441616 0.1152703957E-02 1.095585930 0.1151062979E-02 1.105730244 0.1149270341E-02 1.115874558 0.1147321165E-02 1.126018872 0.1145211041E-02 1.136163186 0.1142936122E-02 1.146307501 0.1140493210E-02 1.156451815 0.1137879843E-02 1.166596129 0.1135094363E-02 1.176740443 0.1132135981E-02 1.186884757 0.1129004829E-02 1.197029071 0.1125702001E-02 1.207173386 0.1122229581E-02 1.217317700 0.1118590657E-02 1.227462014 0.1114789331E-02 1.237606328 0.1110830706E-02 1.247750642 0.1106720867E-02 1.257894956 0.1102466846E-02 1.268039271 0.1098076579E-02 1.278183585 0.1093558849E-02 1.288327899 0.1088923221E-02 1.298472213 0.1084179962E-02 1.308616527 0.1079339958E-02 1.318760841 0.1074414622E-02 1.328905156 0.1069415793E-02 1.339049470 0.1064355634E-02 1.349193784 0.1059246521E-02 1.359338098 0.1054100936E-02 1.369482412 0.1048931352E-02 1.379626726 0.1043750130E-02 1.389771041 0.1038569407E-02 1.399915355 0.1033400994E-02 1.410059669 0.1028256282E-02 1.420203983 0.1028256282E-02 1.430348297 0.1033400994E-02 1.440492611 0.1038569407E-02 1.450636926 0.1043750130E-02 1.460781240 0.1048931352E-02 1.470925554 0.1054100936E-02 1.481069868 0.1059246521E-02 1.491214182 0.1064355634E-02 1.501358496 0.1069415793E-02 1.511502811 0.1074414622E-02 1.521647125 0.1079339958E-02 1.531791439 0.1084179962E-02 1.541935753 0.1088923221E-02 1.552080067 0.1093558849E-02 1.562224381 0.1098076579E-02 1.572368695 0.1102466846E-02 1.582513010 0.1106720867E-02 1.592657324 0.1110830706E-02 1.602801638 0.1114789331E-02 1.612945952 0.1118590657E-02 1.623090266 0.1122229581E-02 1.633234580 0.1125702001E-02 1.643378895 0.1129004829E-02 1.653523209 0.1132135981E-02 1.663667523 0.1135094363E-02 1.673811837 0.1137879843E-02 1.683956151 0.1140493210E-02 1.694100465 0.1142936122E-02 1.704244780 0.1145211041E-02 1.714389094 0.1147321165E-02 1.724533408 0.1149270341E-02 1.734677722 0.1151062979E-02 1.744822036 0.1152703957E-02 1.754966350 0.1154198516E-02 1.765110665 0.1155552159E-02 1.775254979 0.1156770539E-02 1.785399293 0.1157859357E-02 1.795543607 0.1158824248E-02 1.805687921 0.1159670681E-02 1.815832235 0.1160403855E-02 1.825976550 0.1161028606E-02 1.836120864 0.1161549316E-02 1.846265178 0.1161969840E-02 1.856409492 0.1162293427E-02 1.866553806 0.1162522668E-02 1.876698120 0.1162659450E-02 1.886842435 0.1162704916E-02 1.886842435 0.1162704916E-02 1.897027160 0.1162634620E-02 1.907211886 0.1162423743E-02 1.917396612 0.1162072312E-02 1.927581338 0.1161580373E-02 1.937766064 0.1160947990E-02 1.947950789 0.1160175244E-02 1.958135515 0.1159262232E-02 1.968320241 0.1158209069E-02 1.978504967 0.1157015885E-02 1.988689693 0.1155682823E-02 1.998874418 0.1154210042E-02 2.009059144 0.1152597710E-02 2.019243870 0.1150846009E-02 2.029428596 0.1148955129E-02 2.039613322 0.1146925270E-02 2.049798047 0.1144756636E-02 2.059982773 0.1142449440E-02 2.070167499 0.1140003897E-02 2.080352225 0.1137420223E-02 2.090536951 0.1134698637E-02 2.100721677 0.1131839355E-02 2.110906402 0.1128842591E-02 2.121091128 0.1125708554E-02 2.131275854 0.1122437446E-02 2.141460580 0.1119029461E-02 2.151645306 0.1115484786E-02 2.161830031 0.1111803593E-02 2.172014757 0.1107986042E-02 2.182199483 0.1104032280E-02 2.192384209 0.1099942436E-02 2.202568935 0.1095716622E-02 2.212753660 0.1091354932E-02 2.222938386 0.1086857440E-02 2.233123112 0.1082224198E-02 2.243307838 0.1077455237E-02 2.253492564 0.1072550563E-02 2.263677289 0.1067510160E-02 2.273862015 0.1062333988E-02 2.284046741 0.1057021981E-02 2.294231467 0.1051574047E-02 2.304416193 0.1053230117E-02 2.314600918 0.1057499554E-02 2.324785644 0.1061588700E-02 2.334970370 0.1065484368E-02 2.345155096 0.1069173586E-02 2.355339822 0.1072643604E-02 2.365524547 0.1075881905E-02 2.375709273 0.1078876211E-02 2.385893999 0.1081614497E-02 2.396078725 0.1084084996E-02 2.406263451 0.1086276207E-02 2.416448176 0.1088176907E-02 2.426632902 0.1089776153E-02 2.436817628 0.1091063295E-02 2.447002354 0.1092027982E-02 2.457187080 0.1092660168E-02 2.467371806 0.1092950123E-02 2.477556531 0.1092888433E-02 2.487741257 0.1092466018E-02 2.497925983 0.1091674127E-02 2.508110709 0.1090504354E-02 2.518295435 0.1088948641E-02 2.528480160 0.1086999282E-02 2.538664886 0.1084648935E-02 2.548849612 0.1081890624E-02 2.559034338 0.1078717746E-02 2.569219064 0.1075124078E-02 2.579403789 0.1071103780E-02 2.589588515 0.1066651403E-02 2.599773241 0.1061761894E-02 2.609957967 0.1056430598E-02 2.620142693 0.1050653266E-02 2.630327418 0.1044426060E-02 2.640512144 0.1037745551E-02 2.650696870 0.1030608731E-02 2.660881596 0.1023013013E-02 2.671066322 0.1014956230E-02 2.681251047 0.1006436645E-02 2.691435773 0.9974529505E-03 2.701620499 0.9880042695E-03 2.711805225 0.9780901587E-03 2.721989951 0.9677106099E-03 2.732174676 0.9568660507E-03 2.742359402 0.9455573456E-03 2.752544128 0.9337857958E-03 2.762728854 0.9215531395E-03 2.772913580 0.9088615513E-03 2.783098305 0.8957136408E-03 2.793283031 0.8821124519E-03 2.803467757 0.8680614606E-03 2.813652483 0.8535645726E-03 2.823837209 0.8386261209E-03 2.834021935 0.8232508628E-03 2.844206660 0.8074439759E-03 2.854391386 0.7912110543E-03 2.864576112 0.7745581042E-03 2.874760838 0.7574915390E-03 2.884945564 0.7400181739E-03 2.895130289 0.7221452202E-03 2.905315015 0.7038802791E-03 2.915499741 0.6852313348E-03 2.925684467 0.6662067480E-03 2.935869193 0.6468152477E-03 2.946053918 0.6270659240E-03 2.956238644 0.6069682194E-03 2.966423370 0.5865319202E-03 2.976608096 0.5657671472E-03 2.986792822 0.5446843468E-03 2.996977547 0.5232942803E-03 3.007162273 0.5016080146E-03 3.017346999 0.4796369109E-03 3.027531725 0.4573926141E-03 3.037716451 0.4348870416E-03 3.047901176 0.4121323717E-03 3.058085902 0.3891410316E-03 3.068270628 0.3659256853E-03 3.078455354 0.3424992213E-03 3.088640080 0.3188747398E-03 3.098824805 0.2950655398E-03 3.109009531 0.2710851058E-03 3.119194257 0.2469470943E-03 3.129378983 0.2226653205E-03 3.139563709 0.1982537444E-03 3.149748434 0.1737264566E-03 3.159933160 0.1490976643E-03 3.170117886 0.1243816772E-03 3.180302612 0.9959289295E-04 3.190487338 0.7474578252E-04 3.200672064 0.4985487587E-04 3.210856789 0.2493474715E-04 3.221041515 -0.3394132962E-10 3.221041515 -0.3394132962E-10 3.231254349 0.2795954070E-04 3.241467184 0.5589940460E-04 3.251680018 0.8379994864E-04 3.261892852 0.1116415972E-03 3.272105686 0.1394048755E-03 3.282318521 0.1670704431E-03 3.292531355 0.1946191269E-03 3.302744189 0.2220319537E-03 3.312957023 0.2492901828E-03 3.323169858 0.2763753375E-03 3.333382692 0.3032692364E-03 3.343595526 0.3299540244E-03 3.353808360 0.3564122022E-03 3.364021195 0.3826266559E-03 3.374234029 0.4085806852E-03 3.384446863 0.4342580308E-03 3.394659698 0.4596429013E-03 3.404872532 0.4847199987E-03 3.415085366 0.5094745426E-03 3.425298200 0.5338922937E-03 3.435511035 0.5579595760E-03 3.445723869 0.5816632978E-03 3.455936703 0.6049909708E-03 3.466149537 0.6279307287E-03 3.476362372 0.6504713437E-03 3.486575206 0.6726022415E-03 3.496788040 0.6943135155E-03 3.507000874 0.7155959382E-03 3.517213709 0.7364409719E-03 3.527426543 0.7568407771E-03 3.537639377 0.7767882198E-03 3.547852211 0.7962768758E-03 3.558065046 0.8153010344E-03 3.568277880 0.8338556996E-03 3.578490714 0.8519365893E-03 3.588703548 0.8695401325E-03 3.598916383 0.8866634648E-03 3.609129217 0.9033044218E-03 3.619342051 0.9194615301E-03 3.629554885 0.9351339963E-03 3.639767720 0.9503216946E-03 3.649980554 0.9650251511E-03 3.660193388 0.9792455273E-03 3.670406222 0.9929846003E-03 3.680619057 0.1006244742E-02 3.690831891 0.1019028895E-02 3.701044725 0.1031340550E-02 3.711257560 0.1043183713E-02 3.721470394 0.1054562881E-02 3.731683228 0.1065483012E-02 3.741896062 0.1075949485E-02 3.752108897 0.1085968074E-02 3.762321731 0.1095544906E-02 3.772534565 0.1104686425E-02 3.782747399 0.1113399356E-02 3.792960234 0.1121690661E-02 3.803173068 0.1129567499E-02 3.813385902 0.1137037185E-02 3.823598736 0.1144107146E-02 3.833811571 0.1150784878E-02 3.844024405 0.1157077904E-02 3.854237239 0.1162993726E-02 3.864450073 0.1168539785E-02 3.874662908 0.1173723417E-02 3.884875742 0.1178551808E-02 3.895088576 0.1183031954E-02 3.905301410 0.1187170619E-02 3.915514245 0.1190974296E-02 3.925727079 0.1194449164E-02 3.935939913 0.1197601059E-02 3.946152747 0.1200435434E-02 3.956365582 0.1202957325E-02 3.966578416 0.1205171326E-02 3.976791250 0.1207081557E-02 3.987004084 0.1208691641E-02 3.997216919 0.1210004682E-02 4.007429753 0.1211023246E-02 4.017642587 0.1211749343E-02 4.027855422 0.1212184421E-02 4.038068256 0.1212329350E-02 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000013214061636520025373 xustar0030 mtime=1623670096.366101145 30 atime=1623670096.366101145 30 ctime=1623670096.366101145 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/PHDLINES.OUT0000644002504400250440000000062014061636520027426 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.9092470720E-03 0.000000000 0.1818494042E-02 0.9434212173 -0.9092470720E-03 0.9434212173 0.1818494042E-02 1.886842435 -0.9092470720E-03 1.886842435 0.1818494042E-02 3.221041515 -0.9092470720E-03 3.221041515 0.1818494042E-02 4.038068256 -0.9092470720E-03 4.038068256 0.1818494042E-02 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024677 xustar0030 mtime=1623670096.368101143 30 atime=1623670096.368101143 30 ctime=1623670096.368101143 elk-7.2.42/examples/phonons-superconductivity/Ni-supercell/elk.in0000644002504400250440000000202014061636520026726 0ustar00dewhurstdewhurst00000000000000 ! Ferromagnetic nickel phonon example. Note that 'task=200' can be run on as ! many computers as you like, but within the same network file system (NFS) ! directory. Once all the DYN_Qqqqq_qqqq_qqqq_Sss_Aaa_Pp.OUT files are ! generated, run 'task=220' to generate the phonon dispersion and compare to ! arXiv:cond-mat/0609352v1. A previously calculated dispersion has been included ! in this directory. tasks 200 rgkmax 8.2 lmaxapw 8 beta0 0.01 ! this variable determines the density of k-points for the phonon calculation radkpt 50.0 ngridq 4 4 4 epspot 5.e-7 nempty 8 spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt plot1d 5 400 0.0 0.0 0.0 0.5 0.5 0.0 0.5 0.0 -0.5 0.0 0.0 0.0 0.5 0.0 0.0 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/MgB2-DFPT0000644000000000000000000000013214061636520022437 xustar0030 mtime=1623670096.388101125 30 atime=1623670096.369101142 30 ctime=1623670096.388101125 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/0000755002504400250440000000000014061636520024551 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/ALPHA2F.OUT0000644000000000000000000000013214061636520024122 xustar0030 mtime=1623670096.370101141 30 atime=1623670096.370101141 30 ctime=1623670096.370101141 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/ALPHA2F.OUT0000644002504400250440000004410414061636520026162 0ustar00dewhurstdewhurst00000000000000 -0.3870828934E-03 0.000000000 -0.3785670705E-03 0.000000000 -0.3700512476E-03 0.000000000 -0.3615354247E-03 0.000000000 -0.3530196018E-03 0.000000000 -0.3445037789E-03 0.000000000 -0.3359879560E-03 0.000000000 -0.3274721331E-03 0.000000000 -0.3189563102E-03 0.000000000 -0.3104404873E-03 0.000000000 -0.3019246644E-03 0.000000000 -0.2934088415E-03 0.000000000 -0.2848930187E-03 0.000000000 -0.2763771958E-03 0.000000000 -0.2678613729E-03 0.000000000 -0.2593455500E-03 0.9285466085E-05 -0.2508297271E-03 0.2126396668E-04 -0.2423139042E-03 0.3495997455E-04 -0.2337980813E-03 0.3793902295E-04 -0.2252822584E-03 0.3711492144E-04 -0.2167664355E-03 0.3729542841E-04 -0.2082506126E-03 0.4003391866E-04 -0.1997347897E-03 0.4574674699E-04 -0.1912189668E-03 0.4371515112E-04 -0.1827031439E-03 0.4207415069E-04 -0.1741873210E-03 0.3260208806E-04 -0.1656714981E-03 0.3691460366E-04 -0.1571556753E-03 0.4233073195E-04 -0.1486398524E-03 0.4243762296E-04 -0.1401240295E-03 0.3929847365E-04 -0.1316082066E-03 0.3921919490E-04 -0.1230923837E-03 0.4578034846E-04 -0.1145765608E-03 0.4433950319E-04 -0.1060607379E-03 0.3645092144E-04 -0.9754491500E-04 0.3985250307E-04 -0.8902909211E-04 0.3676068238E-04 -0.8051326922E-04 0.3330928005E-04 -0.7199744632E-04 0.4316879303E-04 -0.6348162343E-04 0.4751826954E-04 -0.5496580054E-04 0.6621092222E-04 -0.4644997765E-04 0.4237328809E-04 -0.3793415475E-04 0.3448314657E-04 -0.2941833186E-04 0.1162928641E-04 -0.2090250897E-04 0.1022175605E-04 -0.1238668607E-04 0.7157473079E-05 -0.3870863180E-05 0.3959810787E-05 0.4644959713E-05 0.3714245423E-05 0.1316078261E-04 0.4160786944E-05 0.2167660550E-04 0.9434628288E-05 0.3019242839E-04 0.2897411389E-04 0.3870825128E-04 0.4781322638E-04 0.4722407418E-04 0.4975957576E-04 0.5573989707E-04 0.3615425293E-04 0.6425571996E-04 0.2540047426E-04 0.7277154286E-04 0.3514451851E-04 0.8128736575E-04 0.5190804998E-04 0.8980318864E-04 0.5054348123E-04 0.9831901154E-04 0.5815834168E-04 0.1068348344E-03 0.6366240531E-04 0.1153506573E-03 0.8541454641E-04 0.1238664802E-03 0.8095585572E-04 0.1323823031E-03 0.7269124689E-04 0.1408981260E-03 0.7113915108E-04 0.1494139489E-03 0.8947524649E-04 0.1579297718E-03 0.1051438486E-03 0.1664455947E-03 0.1094584464E-03 0.1749614176E-03 0.1168046899E-03 0.1834772405E-03 0.1260344412E-03 0.1919930634E-03 0.1299588608E-03 0.2005088863E-03 0.1460466735E-03 0.2090247091E-03 0.1527159196E-03 0.2175405320E-03 0.1663827477E-03 0.2260563549E-03 0.1742249189E-03 0.2345721778E-03 0.1976130193E-03 0.2430880007E-03 0.2233578679E-03 0.2516038236E-03 0.2440054010E-03 0.2601196465E-03 0.2676280269E-03 0.2686354694E-03 0.2925301059E-03 0.2771512923E-03 0.3035844449E-03 0.2856671152E-03 0.3130748931E-03 0.2941829381E-03 0.3458329047E-03 0.3026987610E-03 0.3731796074E-03 0.3112145839E-03 0.4042166195E-03 0.3197304068E-03 0.4218692204E-03 0.3282462296E-03 0.4586647326E-03 0.3367620525E-03 0.5417414507E-03 0.3452778754E-03 0.6037452099E-03 0.3537936983E-03 0.6472323733E-03 0.3623095212E-03 0.6781854067E-03 0.3708253441E-03 0.7296601380E-03 0.3793411670E-03 0.7800011512E-03 0.3878569899E-03 0.8345553816E-03 0.3963728128E-03 0.9179537293E-03 0.4048886357E-03 0.1013208721E-02 0.4134044586E-03 0.1084112203E-02 0.4219202815E-03 0.1164961282E-02 0.4304361044E-03 0.1284052081E-02 0.4389519273E-03 0.1383270068E-02 0.4474677502E-03 0.1462073207E-02 0.4559835730E-03 0.1528691695E-02 0.4644993959E-03 0.1603630508E-02 0.4730152188E-03 0.1777485379E-02 0.4815310417E-03 0.1989093141E-02 0.4900468646E-03 0.2170460045E-02 0.4985626875E-03 0.2220265489E-02 0.5070785104E-03 0.2384222846E-02 0.5155943333E-03 0.2603548970E-02 0.5241101562E-03 0.2870988631E-02 0.5326259791E-03 0.2879623099E-02 0.5411418020E-03 0.3039080415E-02 0.5496576249E-03 0.3281625062E-02 0.5581734478E-03 0.3746582008E-02 0.5666892707E-03 0.4018655840E-02 0.5752050935E-03 0.4069232594E-02 0.5837209164E-03 0.4249902186E-02 0.5922367393E-03 0.4516999124E-02 0.6007525622E-03 0.4962008861E-02 0.6092683851E-03 0.5229125260E-02 0.6177842080E-03 0.5421319684E-02 0.6263000309E-03 0.5880075780E-02 0.6348158538E-03 0.6299046188E-02 0.6433316767E-03 0.6831632351E-02 0.6518474996E-03 0.6910877479E-02 0.6603633225E-03 0.7166716657E-02 0.6688791454E-03 0.7738482881E-02 0.6773949683E-03 0.8412408587E-02 0.6859107912E-03 0.9014280348E-02 0.6944266141E-03 0.9172913255E-02 0.7029424369E-03 0.9695816007E-02 0.7114582598E-03 0.1028327363E-01 0.7199740827E-03 0.1075435230E-01 0.7284899056E-03 0.1124022513E-01 0.7370057285E-03 0.1182229792E-01 0.7455215514E-03 0.1259124515E-01 0.7540373743E-03 0.1321390564E-01 0.7625531972E-03 0.1390560137E-01 0.7710690201E-03 0.1458026100E-01 0.7795848430E-03 0.1491550399E-01 0.7881006659E-03 0.1587705986E-01 0.7966164888E-03 0.1656771816E-01 0.8051323117E-03 0.1791246418E-01 0.8136481346E-03 0.1817758921E-01 0.8221639574E-03 0.1915718922E-01 0.8306797803E-03 0.1987948675E-01 0.8391956032E-03 0.2131553260E-01 0.8477114261E-03 0.2204237507E-01 0.8562272490E-03 0.2294211570E-01 0.8647430719E-03 0.2374482847E-01 0.8732588948E-03 0.2563529023E-01 0.8817747177E-03 0.2642646966E-01 0.8902905406E-03 0.2713053217E-01 0.8988063635E-03 0.2759118253E-01 0.9073221864E-03 0.2907747974E-01 0.9158380093E-03 0.2972294788E-01 0.9243538322E-03 0.2990021202E-01 0.9328696551E-03 0.3089201941E-01 0.9413854779E-03 0.3233749531E-01 0.9499013008E-03 0.3350875909E-01 0.9584171237E-03 0.3347087208E-01 0.9669329466E-03 0.3492546701E-01 0.9754487695E-03 0.3648436563E-01 0.9839645924E-03 0.3801272302E-01 0.9924804153E-03 0.3769124586E-01 0.1000996238E-02 0.3944629781E-01 0.1009512061E-02 0.4121898143E-01 0.1018027884E-02 0.4288741113E-01 0.1026543707E-02 0.4275275099E-01 0.1035059530E-02 0.4466774620E-01 0.1043575353E-02 0.4635823065E-01 0.1052091176E-02 0.4738019746E-01 0.1060606998E-02 0.4824492080E-01 0.1069122821E-02 0.5115700569E-01 0.1077638644E-02 0.5362737555E-01 0.1086154467E-02 0.5608884533E-01 0.1094670290E-02 0.5844187391E-01 0.1103186113E-02 0.6132717926E-01 0.1111701936E-02 0.6236118727E-01 0.1120217759E-02 0.6352241811E-01 0.1128733582E-02 0.6614760676E-01 0.1137249404E-02 0.6795729286E-01 0.1145765227E-02 0.6683864325E-01 0.1154281050E-02 0.6615672339E-01 0.1162796873E-02 0.6639212223E-01 0.1171312696E-02 0.6730655173E-01 0.1179828519E-02 0.6788790744E-01 0.1188344342E-02 0.6826713723E-01 0.1196860165E-02 0.6835006012E-01 0.1205375988E-02 0.6858231815E-01 0.1213891811E-02 0.6933365915E-01 0.1222407633E-02 0.7024098799E-01 0.1230923456E-02 0.7153066951E-01 0.1239439279E-02 0.7541074847E-01 0.1247955102E-02 0.7903445071E-01 0.1256470925E-02 0.8391093399E-01 0.1264986748E-02 0.8828817208E-01 0.1273502571E-02 0.9517372705E-01 0.1282018394E-02 0.1037362896 0.1290534217E-02 0.1154023308 0.1299050039E-02 0.1316799798 0.1307565862E-02 0.1525455656 0.1316081685E-02 0.1728544807 0.1324597508E-02 0.1721139501 0.1333113331E-02 0.1560162578 0.1341629154E-02 0.1364399428 0.1350144977E-02 0.1310108839 0.1358660800E-02 0.1303800827 0.1367176623E-02 0.1286077010 0.1375692445E-02 0.1330842076 0.1384208268E-02 0.1542946816 0.1392724091E-02 0.2044801863 0.1401239914E-02 0.2783848375 0.1409755737E-02 0.3409359625 0.1418271560E-02 0.3487598574 0.1426787383E-02 0.2862614274 0.1435303206E-02 0.2139858114 0.1443819029E-02 0.1671050995 0.1452334852E-02 0.1684172780 0.1460850674E-02 0.1756516822 0.1469366497E-02 0.1919581860 0.1477882320E-02 0.2181614392 0.1486398143E-02 0.2527359288 0.1494913966E-02 0.2788798513 0.1503429789E-02 0.2823533708 0.1511945612E-02 0.2762530908 0.1520461435E-02 0.2643032028 0.1528977258E-02 0.2585920582 0.1537493080E-02 0.2356193576 0.1546008903E-02 0.2108442322 0.1554524726E-02 0.1751479759 0.1563040549E-02 0.1580357486 0.1571556372E-02 0.1396238187 0.1580072195E-02 0.1326221418 0.1588588018E-02 0.1183948326 0.1597103841E-02 0.1130659294 0.1605619664E-02 0.1095998971 0.1614135487E-02 0.1229649629 0.1622651309E-02 0.1406945963 0.1631167132E-02 0.1563090538 0.1639682955E-02 0.1643724950 0.1648198778E-02 0.1708341022 0.1656714601E-02 0.1793803617 0.1665230424E-02 0.1860226135 0.1673746247E-02 0.1901626095 0.1682262070E-02 0.1957180506 0.1690777893E-02 0.2067676642 0.1699293715E-02 0.2165923021 0.1707809538E-02 0.2210479527 0.1716325361E-02 0.2216654080 0.1724841184E-02 0.2211173614 0.1733357007E-02 0.2233693742 0.1741872830E-02 0.2302514243 0.1750388653E-02 0.2412091263 0.1758904476E-02 0.2509122989 0.1767420299E-02 0.2587762461 0.1775936121E-02 0.2729433882 0.1784451944E-02 0.3044428189 0.1792967767E-02 0.3360622734 0.1801483590E-02 0.3605027030 0.1809999413E-02 0.3470256162 0.1818515236E-02 0.3221323563 0.1827031059E-02 0.2970480501 0.1835546882E-02 0.2913494959 0.1844062705E-02 0.3023405801 0.1852578528E-02 0.3118422008 0.1861094350E-02 0.3227241673 0.1869610173E-02 0.3198752321 0.1878125996E-02 0.3164991615 0.1886641819E-02 0.3164169541 0.1895157642E-02 0.3227842776 0.1903673465E-02 0.3255045253 0.1912189288E-02 0.3219235393 0.1920705111E-02 0.3180594032 0.1929220934E-02 0.3196080064 0.1937736756E-02 0.3189155450 0.1946252579E-02 0.3129121050 0.1954768402E-02 0.3066326076 0.1963284225E-02 0.3080327715 0.1971800048E-02 0.3063464979 0.1980315871E-02 0.3000942248 0.1988831694E-02 0.2931609434 0.1997347517E-02 0.2865369998 0.2005863340E-02 0.2798329137 0.2014379162E-02 0.2774260755 0.2022894985E-02 0.2688251843 0.2031410808E-02 0.2708530405 0.2039926631E-02 0.2578443616 0.2048442454E-02 0.2586618257 0.2056958277E-02 0.2532156472 0.2065474100E-02 0.2477795621 0.2073989923E-02 0.2435969297 0.2082505746E-02 0.2374958437 0.2091021569E-02 0.2424324387 0.2099537391E-02 0.2351888325 0.2108053214E-02 0.2276134614 0.2116569037E-02 0.2112542380 0.2125084860E-02 0.2076653905 0.2133600683E-02 0.1971062380 0.2142116506E-02 0.1959564968 0.2150632329E-02 0.1823642201 0.2159148152E-02 0.1730895968 0.2167663975E-02 0.1593251068 0.2176179797E-02 0.1490470281 0.2184695620E-02 0.1424185642 0.2193211443E-02 0.1341749613 0.2201727266E-02 0.1289294551 0.2210243089E-02 0.1284159644 0.2218758912E-02 0.1271402371 0.2227274735E-02 0.1315632800 0.2235790558E-02 0.1294524547 0.2244306381E-02 0.1325070452 0.2252822203E-02 0.1343762908 0.2261338026E-02 0.1381334192 0.2269853849E-02 0.1459209365 0.2278369672E-02 0.1548559111 0.2286885495E-02 0.1703612017 0.2295401318E-02 0.1889128743 0.2303917141E-02 0.2060183289 0.2312432964E-02 0.2236250427 0.2320948787E-02 0.2588276622 0.2329464610E-02 0.3135874112 0.2337980432E-02 0.3676100192 0.2346496255E-02 0.3993322113 0.2355012078E-02 0.3959386483 0.2363527901E-02 0.3869764964 0.2372043724E-02 0.3805098966 0.2380559547E-02 0.3970319785 0.2389075370E-02 0.3863643300 0.2397591193E-02 0.3648554032 0.2406107016E-02 0.3249261009 0.2414622838E-02 0.3107991468 0.2423138661E-02 0.2931665530 0.2431654484E-02 0.2946639119 0.2440170307E-02 0.3116384939 0.2448686130E-02 0.3267001644 0.2457201953E-02 0.3552210968 0.2465717776E-02 0.3550014806 0.2474233599E-02 0.3771001954 0.2482749422E-02 0.3774364092 0.2491265244E-02 0.3840251447 0.2499781067E-02 0.3920443014 0.2508296890E-02 0.3871493862 0.2516812713E-02 0.3969108932 0.2525328536E-02 0.4013240962 0.2533844359E-02 0.4227918775 0.2542360182E-02 0.4333973092 0.2550876005E-02 0.4383283681 0.2559391828E-02 0.4416782429 0.2567907651E-02 0.4405639215 0.2576423473E-02 0.4472614550 0.2584939296E-02 0.4445130379 0.2593455119E-02 0.4639818817 0.2601970942E-02 0.4829262939 0.2610486765E-02 0.5038409744 0.2619002588E-02 0.5296902885 0.2627518411E-02 0.5527127069 0.2636034234E-02 0.5764264727 0.2644550057E-02 0.5846414045 0.2653065879E-02 0.5888602520 0.2661581702E-02 0.5963027491 0.2670097525E-02 0.6144885540 0.2678613348E-02 0.6274275020 0.2687129171E-02 0.6367956261 0.2695644994E-02 0.6384686209 0.2704160817E-02 0.6644331634 0.2712676640E-02 0.6749804293 0.2721192463E-02 0.6885988138 0.2729708285E-02 0.6923001683 0.2738224108E-02 0.7038030517 0.2746739931E-02 0.7256743820 0.2755255754E-02 0.7228726682 0.2763771577E-02 0.7434925455 0.2772287400E-02 0.7575594663 0.2780803223E-02 0.7609726024 0.2789319046E-02 0.7753751621 0.2797834869E-02 0.7832900076 0.2806350692E-02 0.8043724376 0.2814866514E-02 0.8073706528 0.2823382337E-02 0.8094642698 0.2831898160E-02 0.8349863595 0.2840413983E-02 0.8473351411 0.2848929806E-02 0.8782200895 0.2857445629E-02 0.8926814983 0.2865961452E-02 0.9074557820 0.2874477275E-02 0.9066315560 0.2882993098E-02 0.9176869272 0.2891508920E-02 0.9294644195 0.2900024743E-02 0.9395267425 0.2908540566E-02 0.9432999845 0.2917056389E-02 0.9605225802 0.2925572212E-02 0.9841721576 0.2934088035E-02 1.019802362 0.2942603858E-02 1.066323265 0.2951119681E-02 1.119876945 0.2959635504E-02 1.213778671 0.2968151326E-02 1.324497470 0.2976667149E-02 1.397863203 0.2985182972E-02 1.404990085 0.2993698795E-02 1.300204957 0.3002214618E-02 1.192166504 0.3010730441E-02 1.077209105 0.3019246264E-02 0.9940508298 0.3027762087E-02 0.8884931769 0.3036277910E-02 0.7690221814 0.3044793733E-02 0.6726232263 0.3053309555E-02 0.6016772557 0.3061825378E-02 0.5516392988 0.3070341201E-02 0.5201909841 0.3078857024E-02 0.4956499669 0.3087372847E-02 0.4905071571 0.3095888670E-02 0.4861987913 0.3104404493E-02 0.4943106643 0.3112920316E-02 0.5016903866 0.3121436139E-02 0.5238198791 0.3129951961E-02 0.5448885895 0.3138467784E-02 0.5477029162 0.3146983607E-02 0.5198854484 0.3155499430E-02 0.4866469471 0.3164015253E-02 0.4579157408 0.3172531076E-02 0.4364791992 0.3181046899E-02 0.4193587335 0.3189562722E-02 0.4021437340 0.3198078545E-02 0.3886312091 0.3206594368E-02 0.3671907442 0.3215110190E-02 0.3508011931 0.3223626013E-02 0.3366078903 0.3232141836E-02 0.3292113330 0.3240657659E-02 0.3194072698 0.3249173482E-02 0.3156012044 0.3257689305E-02 0.3092245497 0.3266205128E-02 0.3088409411 0.3274720951E-02 0.2998143582 0.3283236774E-02 0.2963922647 0.3291752596E-02 0.2856516531 0.3300268419E-02 0.2766276362 0.3308784242E-02 0.2624449771 0.3317300065E-02 0.2506619781 0.3325815888E-02 0.2392323806 0.3334331711E-02 0.2335521887 0.3342847534E-02 0.2248600604 0.3351363357E-02 0.2166615265 0.3359879180E-02 0.2031390009 0.3368395002E-02 0.1932051637 0.3376910825E-02 0.1855695933 0.3385426648E-02 0.1788149295 0.3393942471E-02 0.1724642756 0.3402458294E-02 0.1656740259 0.3410974117E-02 0.1610655043 0.3419489940E-02 0.1523605302 0.3428005763E-02 0.1446331764 0.3436521586E-02 0.1314604694 0.3445037409E-02 0.1230870322 0.3453553231E-02 0.1149522803 0.3462069054E-02 0.1124619886 0.3470584877E-02 0.1089146554 0.3479100700E-02 0.1057206218 0.3487616523E-02 0.1006082534 0.3496132346E-02 0.9581145711E-01 0.3504648169E-02 0.8689982202E-01 0.3513163992E-02 0.7324239065E-01 0.3521679815E-02 0.5606891768E-01 0.3530195637E-02 0.4115827124E-01 0.3538711460E-02 0.2803166148E-01 0.3547227283E-02 0.1534203724E-01 0.3555743106E-02 0.5557455435E-02 0.3564258929E-02 0.4528437425E-03 0.3572774752E-02 0.000000000 0.3581290575E-02 0.000000000 0.3589806398E-02 0.000000000 0.3598322221E-02 0.000000000 0.3606838043E-02 0.000000000 0.3615353866E-02 0.000000000 0.3623869689E-02 0.000000000 0.3632385512E-02 0.000000000 0.3640901335E-02 0.000000000 0.3649417158E-02 0.000000000 0.3657932981E-02 0.000000000 0.3666448804E-02 0.000000000 0.3674964627E-02 0.000000000 0.3683480450E-02 0.000000000 0.3691996272E-02 0.000000000 0.3700512095E-02 0.000000000 0.3709027918E-02 0.000000000 0.3717543741E-02 0.000000000 0.3726059564E-02 0.000000000 0.3734575387E-02 0.000000000 0.3743091210E-02 0.000000000 0.3751607033E-02 0.000000000 0.3760122856E-02 0.000000000 0.3768638678E-02 0.000000000 0.3777154501E-02 0.000000000 0.3785670324E-02 0.000000000 0.3794186147E-02 0.000000000 0.3802701970E-02 0.000000000 0.3811217793E-02 0.000000000 0.3819733616E-02 0.000000000 0.3828249439E-02 0.000000000 0.3836765262E-02 0.000000000 0.3845281084E-02 0.000000000 0.3853796907E-02 0.000000000 0.3862312730E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/MCMILLAN.OUT0000644000000000000000000000012714061636520024305 xustar0029 mtime=1623670096.37210114 29 atime=1623670096.37210114 29 ctime=1623670096.37210114 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/MCMILLAN.OUT0000644002504400250440000000052614061636520026341 0ustar00dewhurstdewhurst00000000000000 Electron-phonon coupling constant, λ : 0.7517516009 Logarithmic average frequency : 0.2228044595E-02 RMS average frequency : 0.2443047380E-02 Coulomb pseudopotential, μ* : 0.1500000000 McMillan-Allen-Dynes superconducting critical temperature [Eq. 34, Phys. Rev. B 12, 905 (1975)] (kelvin) : 19.67328712 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000013214061636520024074 xustar0030 mtime=1623670096.377101135 30 atime=1623670096.373101139 30 ctime=1623670096.377101135 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PHDISP.OUT0000644002504400250440000121233214061636520026135 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.1061101723E-09 0.2347351854E-02 0.2982571869E-05 0.4694703708E-02 0.5978634816E-05 0.7042055561E-02 0.9001551456E-05 0.9389407415E-02 0.1206443158E-04 0.1173675927E-01 0.1518001570E-04 0.1408411112E-01 0.1836056976E-04 0.1643146298E-01 0.2161779360E-04 0.1877881483E-01 0.2496274484E-04 0.2112616668E-01 0.2840577914E-04 0.2347351854E-01 0.3195650673E-04 0.2582087039E-01 0.3562376471E-04 0.2816822225E-01 0.3941560370E-04 0.3051557410E-01 0.4333928745E-04 0.3286292595E-01 0.4740130332E-04 0.3521027781E-01 0.5160738186E-04 0.3755762966E-01 0.5596252345E-04 0.3990498151E-01 0.6047103031E-04 0.4225233337E-01 0.6513654212E-04 0.4459968522E-01 0.6996207402E-04 0.4694703708E-01 0.7495005570E-04 0.4929438893E-01 0.8010237059E-04 0.5164174078E-01 0.8542039454E-04 0.5398909264E-01 0.9090503336E-04 0.5633644449E-01 0.9655675871E-04 0.5868379634E-01 0.1023756423E-03 0.6103114820E-01 0.1083613879E-03 0.6337850005E-01 0.1145133618E-03 0.6572585191E-01 0.1208306202E-03 0.6807320376E-01 0.1273119357E-03 0.7042055561E-01 0.1339558212E-03 0.7276790747E-01 0.1407605518E-03 0.7511525932E-01 0.1477241854E-03 0.7746261117E-01 0.1548445812E-03 0.7980996303E-01 0.1621194171E-03 0.8215731488E-01 0.1695462051E-03 0.8450466674E-01 0.1771223059E-03 0.8685201859E-01 0.1848449424E-03 0.8919937044E-01 0.1927112110E-03 0.9154672230E-01 0.2007180936E-03 0.9389407415E-01 0.2088624671E-03 0.9624142601E-01 0.2171411131E-03 0.9858877786E-01 0.2255507262E-03 0.1009361297 0.2340879218E-03 0.1032834816 0.2427492435E-03 0.1056308334 0.2515311693E-03 0.1079781853 0.2602384399E-03 0.1103255371 0.2660724437E-03 0.1126728890 0.2719167242E-03 0.1150202408 0.2777713891E-03 0.1173675927 0.2836365405E-03 0.1197149445 0.2895122744E-03 0.1220622964 0.2953986807E-03 0.1244096483 0.3012958437E-03 0.1267570001 0.3072038415E-03 0.1291043520 0.3131227463E-03 0.1314517038 0.3190526242E-03 0.1337990557 0.3249935354E-03 0.1361464075 0.3309455339E-03 0.1384937594 0.3369086680E-03 0.1408411112 0.3428829798E-03 0.1431884631 0.3488685052E-03 0.1455358149 0.3548652744E-03 0.1478831668 0.3608733115E-03 0.1502305186 0.3668926345E-03 0.1525778705 0.3729232554E-03 0.1549252223 0.3789651803E-03 0.1572725742 0.3850184094E-03 0.1596199261 0.3910829366E-03 0.1619672779 0.3971587502E-03 0.1643146298 0.4032458323E-03 0.1666619816 0.4093441592E-03 0.1690093335 0.4154537012E-03 0.1713566853 0.4215744227E-03 0.1737040372 0.4277062821E-03 0.1760513890 0.4338492319E-03 0.1783987409 0.4400032190E-03 0.1807460927 0.4461681839E-03 0.1830934446 0.4523440616E-03 0.1854407964 0.4585307809E-03 0.1877881483 0.4647282650E-03 0.1901355002 0.4709364311E-03 0.1924828520 0.4771551903E-03 0.1948302039 0.4833844480E-03 0.1971775557 0.4896241036E-03 0.1995249076 0.4958740506E-03 0.2018722594 0.5021341765E-03 0.2042196113 0.5084043629E-03 0.2065669631 0.5146844852E-03 0.2089143150 0.5209744129E-03 0.2112616668 0.5272740095E-03 0.2136090187 0.5335831322E-03 0.2159563705 0.5399016322E-03 0.2183037224 0.5462293545E-03 0.2206510743 0.5525661376E-03 0.2229984261 0.5589118140E-03 0.2253457780 0.5652662097E-03 0.2276931298 0.5716291441E-03 0.2300404817 0.5780004302E-03 0.2323878335 0.5843798743E-03 0.2347351854 0.5907672761E-03 0.2370825372 0.5971624284E-03 0.2394298891 0.6035651171E-03 0.2417772409 0.6099751210E-03 0.2441245928 0.6163922118E-03 0.2464719446 0.6228161540E-03 0.2488192965 0.6292467043E-03 0.2511666484 0.6356836124E-03 0.2535140002 0.6421266198E-03 0.2558613521 0.6485754603E-03 0.2582087039 0.6550298596E-03 0.2605560558 0.6614895352E-03 0.2629034076 0.6679541960E-03 0.2652507595 0.6744235425E-03 0.2675981113 0.6808972661E-03 0.2699454632 0.6873750492E-03 0.2722928150 0.6938565651E-03 0.2746401669 0.7003414771E-03 0.2769875187 0.7068294392E-03 0.2793348706 0.7133200949E-03 0.2816822225 0.7198130777E-03 0.2840295743 0.7263080102E-03 0.2863769262 0.7328045042E-03 0.2887242780 0.7393021603E-03 0.2910716299 0.7458005674E-03 0.2934189817 0.7522993028E-03 0.2957663336 0.7587979312E-03 0.2981136854 0.7652960051E-03 0.3004610373 0.7717930638E-03 0.3028083891 0.7782886334E-03 0.3051557410 0.7847822264E-03 0.3075030928 0.7912733410E-03 0.3098504447 0.7977614611E-03 0.3121977966 0.8042460557E-03 0.3145451484 0.8107265785E-03 0.3168925003 0.8172024672E-03 0.3192398521 0.8236731438E-03 0.3215872040 0.8301380132E-03 0.3239345558 0.8365964636E-03 0.3262819077 0.8430478655E-03 0.3286292595 0.8494915715E-03 0.3309766114 0.8559269157E-03 0.3333239632 0.8623532134E-03 0.3356713151 0.8687697605E-03 0.3380186669 0.8751758331E-03 0.3403660188 0.8815706870E-03 0.3427133707 0.8879535573E-03 0.3450607225 0.8943236580E-03 0.3474080744 0.9006801816E-03 0.3497554262 0.9070222985E-03 0.3521027781 0.9133491566E-03 0.3544501299 0.9196598814E-03 0.3567974818 0.9259535748E-03 0.3591448336 0.9322293158E-03 0.3614921855 0.9384861592E-03 0.3638395373 0.9447231360E-03 0.3661868892 0.9509392530E-03 0.3685342410 0.9571334927E-03 0.3708815929 0.9633048129E-03 0.3732289448 0.9694521469E-03 0.3755762966 0.9755744034E-03 0.3779236485 0.9816704668E-03 0.3802710003 0.9877391967E-03 0.3826183522 0.9937794290E-03 0.3849657040 0.9997899755E-03 0.3873130559 0.1005769625E-02 0.3896604077 0.1011717142E-02 0.3920077596 0.1017631270E-02 0.3943551114 0.1023510731E-02 0.3967024633 0.1029354226E-02 0.3990498151 0.1035160435E-02 0.4013971670 0.1040928021E-02 0.4037445189 0.1046655630E-02 0.4060918707 0.1052341890E-02 0.4084392226 0.1057985416E-02 0.4107865744 0.1063584811E-02 0.4131339263 0.1069138666E-02 0.4154812781 0.1074645564E-02 0.4178286300 0.1080104081E-02 0.4201759818 0.1085512789E-02 0.4225233337 0.1090870261E-02 0.4248706855 0.1096175067E-02 0.4272180374 0.1101425785E-02 0.4295653892 0.1106620998E-02 0.4319127411 0.1111759301E-02 0.4342600929 0.1116839301E-02 0.4366074448 0.1121859624E-02 0.4389547967 0.1126818917E-02 0.4413021485 0.1131715849E-02 0.4436495004 0.1136549120E-02 0.4459968522 0.1141317460E-02 0.4483442041 0.1146019637E-02 0.4506915559 0.1150654457E-02 0.4530389078 0.1155220770E-02 0.4553862596 0.1159717473E-02 0.4577336115 0.1164143514E-02 0.4600809633 0.1168497894E-02 0.4624283152 0.1172779675E-02 0.4647756670 0.1176987978E-02 0.4671230189 0.1181121986E-02 0.4694703708 0.1185180953E-02 0.4718177226 0.1189164200E-02 0.4741650745 0.1193071118E-02 0.4765124263 0.1196901175E-02 0.4788597782 0.1200653911E-02 0.4812071300 0.1204328945E-02 0.4835544819 0.1207925970E-02 0.4859018337 0.1211444759E-02 0.4882491856 0.1214885162E-02 0.4905965374 0.1218247107E-02 0.4929438893 0.1221530599E-02 0.4952912411 0.1224735718E-02 0.4976385930 0.1227862618E-02 0.4999859449 0.1230911529E-02 0.5023332967 0.1233882748E-02 0.5046806486 0.1236776643E-02 0.5070280004 0.1239593645E-02 0.5093753523 0.1242334251E-02 0.5117227041 0.1244999015E-02 0.5140700560 0.1247588549E-02 0.5164174078 0.1250103516E-02 0.5187647597 0.1252544630E-02 0.5211121115 0.1254912647E-02 0.5234594634 0.1257208367E-02 0.5258068152 0.1259432626E-02 0.5281541671 0.1261586294E-02 0.5305015190 0.1263670268E-02 0.5328488708 0.1265685473E-02 0.5351962227 0.1267632853E-02 0.5375435745 0.1269513369E-02 0.5398909264 0.1271327998E-02 0.5422382782 0.1273077725E-02 0.5445856301 0.1274763539E-02 0.5469329819 0.1276386435E-02 0.5492803338 0.1277120857E-02 0.5516276856 0.1277767984E-02 0.5539750375 0.1278394631E-02 0.5563223893 0.1279000764E-02 0.5586697412 0.1279586341E-02 0.5610170931 0.1280151321E-02 0.5633644449 0.1280695654E-02 0.5657117968 0.1281219290E-02 0.5680591486 0.1281722175E-02 0.5704065005 0.1282204254E-02 0.5727538523 0.1282665468E-02 0.5751012042 0.1283105757E-02 0.5774485560 0.1283525061E-02 0.5797959079 0.1283923320E-02 0.5821432597 0.1284300473E-02 0.5844906116 0.1284656458E-02 0.5868379634 0.1284991216E-02 0.5891853153 0.1285304690E-02 0.5915326672 0.1285596821E-02 0.5938800190 0.1285867555E-02 0.5962273709 0.1286116840E-02 0.5985747227 0.1286344626E-02 0.6009220746 0.1286550867E-02 0.6032694264 0.1286735519E-02 0.6056167783 0.1286898544E-02 0.6079641301 0.1287039906E-02 0.6103114820 0.1287159574E-02 0.6126588338 0.1287257521E-02 0.6150061857 0.1287333725E-02 0.6173535375 0.1287388169E-02 0.6197008894 0.1287420840E-02 0.6220482413 0.1287431732E-02 0.6243952716 0.1287359478E-02 0.6267423020 0.1287290472E-02 0.6290893324 0.1287224808E-02 0.6314363628 0.1287162578E-02 0.6337833932 0.1287103872E-02 0.6361304236 0.1287048779E-02 0.6384774540 0.1286997384E-02 0.6408244844 0.1286949772E-02 0.6431715148 0.1286906023E-02 0.6455185452 0.1286866215E-02 0.6478655756 0.1286830426E-02 0.6502126060 0.1286798727E-02 0.6525596364 0.1286771189E-02 0.6549066668 0.1286747878E-02 0.6572536971 0.1286728858E-02 0.6596007275 0.1286714190E-02 0.6619477579 0.1286703932E-02 0.6642947883 0.1286698136E-02 0.6666418187 0.1286696853E-02 0.6689888491 0.1286700129E-02 0.6713358795 0.1286708009E-02 0.6736829099 0.1286720530E-02 0.6760299403 0.1286737729E-02 0.6783769707 0.1286759638E-02 0.6807240011 0.1286786284E-02 0.6830710315 0.1286817692E-02 0.6854180619 0.1286853881E-02 0.6877650922 0.1286894869E-02 0.6901121226 0.1286940668E-02 0.6924591530 0.1286991286E-02 0.6948061834 0.1287046728E-02 0.6971532138 0.1287106994E-02 0.6995002442 0.1287172082E-02 0.7018472746 0.1287241984E-02 0.7041943050 0.1287316689E-02 0.7065413354 0.1287396183E-02 0.7088883658 0.1287480447E-02 0.7112353962 0.1287569459E-02 0.7135824266 0.1287663192E-02 0.7159294570 0.1287761616E-02 0.7182764874 0.1287864700E-02 0.7206235177 0.1287972406E-02 0.7229705481 0.1288084693E-02 0.7253175785 0.1288201518E-02 0.7276646089 0.1288322834E-02 0.7300116393 0.1288448591E-02 0.7323586697 0.1288578736E-02 0.7347057001 0.1288713212E-02 0.7370527305 0.1288851961E-02 0.7393997609 0.1288994919E-02 0.7417467913 0.1289142023E-02 0.7440938217 0.1289293204E-02 0.7464408521 0.1289448394E-02 0.7487878825 0.1289607519E-02 0.7511349128 0.1289770504E-02 0.7534819432 0.1289937274E-02 0.7558289736 0.1290107749E-02 0.7581760040 0.1290281848E-02 0.7605230344 0.1290459489E-02 0.7628700648 0.1290640587E-02 0.7652170952 0.1290825057E-02 0.7675641256 0.1291012811E-02 0.7699111560 0.1291203760E-02 0.7722581864 0.1291397816E-02 0.7746052168 0.1291594886E-02 0.7769522472 0.1291794880E-02 0.7792992776 0.1291997704E-02 0.7816463080 0.1292203266E-02 0.7839933383 0.1292411472E-02 0.7863403687 0.1292622227E-02 0.7886873991 0.1292835437E-02 0.7910344295 0.1293051008E-02 0.7933814599 0.1293268844E-02 0.7957284903 0.1293488851E-02 0.7980755207 0.1293710935E-02 0.8004225511 0.1293935000E-02 0.8027695815 0.1294160955E-02 0.8051166119 0.1294388704E-02 0.8074636423 0.1294618155E-02 0.8098106727 0.1294849216E-02 0.8121577031 0.1295081796E-02 0.8145047335 0.1295315804E-02 0.8168517638 0.1295551151E-02 0.8191987942 0.1295787748E-02 0.8215458246 0.1296025507E-02 0.8238928550 0.1296264344E-02 0.8262398854 0.1296504172E-02 0.8285869158 0.1296744907E-02 0.8309339462 0.1296986469E-02 0.8332809766 0.1297228775E-02 0.8356280070 0.1297471746E-02 0.8379750374 0.1297715305E-02 0.8403220678 0.1297959375E-02 0.8426690982 0.1298203882E-02 0.8450161286 0.1298448751E-02 0.8473631589 0.1298693913E-02 0.8497101893 0.1298939296E-02 0.8520572197 0.1299184832E-02 0.8544042501 0.1299430455E-02 0.8567512805 0.1299676101E-02 0.8590983109 0.1299921705E-02 0.8614453413 0.1300167206E-02 0.8637923717 0.1300412545E-02 0.8661394021 0.1300657662E-02 0.8684864325 0.1300902502E-02 0.8708334629 0.1301147009E-02 0.8731804933 0.1301391129E-02 0.8755275237 0.1301634810E-02 0.8778745541 0.1301878002E-02 0.8802215844 0.1302120656E-02 0.8825686148 0.1302362723E-02 0.8849156452 0.1302604157E-02 0.8872626756 0.1302844914E-02 0.8896097060 0.1303084947E-02 0.8919567364 0.1303324216E-02 0.8943037668 0.1303562678E-02 0.8966507972 0.1303800292E-02 0.8989978276 0.1304037019E-02 0.9013448580 0.1304272819E-02 0.9036918884 0.1304507654E-02 0.9060389188 0.1304741487E-02 0.9083859492 0.1304974281E-02 0.9107329796 0.1305206000E-02 0.9130800099 0.1305436608E-02 0.9154270403 0.1305666071E-02 0.9177740707 0.1305894352E-02 0.9201211011 0.1306121417E-02 0.9224681315 0.1306347233E-02 0.9248151619 0.1306571763E-02 0.9271621923 0.1306794975E-02 0.9295092227 0.1307016834E-02 0.9318562531 0.1307237305E-02 0.9342032835 0.1307456354E-02 0.9365503139 0.1307673945E-02 0.9388973443 0.1307890043E-02 0.9412443747 0.1308104612E-02 0.9435914050 0.1308317617E-02 0.9459384354 0.1308529021E-02 0.9482854658 0.1308738785E-02 0.9506324962 0.1308946872E-02 0.9529795266 0.1309153244E-02 0.9553265570 0.1309357860E-02 0.9576735874 0.1309560680E-02 0.9600206178 0.1309761664E-02 0.9623676482 0.1309960768E-02 0.9647146786 0.1310157950E-02 0.9670617090 0.1310353165E-02 0.9694087394 0.1310546369E-02 0.9717557698 0.1310737514E-02 0.9741028002 0.1310926555E-02 0.9764498305 0.1311113442E-02 0.9787968609 0.1311298126E-02 0.9811438913 0.1311480557E-02 0.9834909217 0.1311660682E-02 0.9858379521 0.1311838449E-02 0.9881849825 0.1312013804E-02 0.9905320129 0.1312186692E-02 0.9928790433 0.1312357057E-02 0.9952260737 0.1312524841E-02 0.9975731041 0.1312689986E-02 0.9999201345 0.1312852434E-02 1.002267165 0.1313012124E-02 1.004614195 0.1313168994E-02 1.006961226 0.1313322983E-02 1.009308256 0.1313474027E-02 1.011655286 0.1313622064E-02 1.014002317 0.1313767028E-02 1.016349347 0.1313908854E-02 1.018696378 0.1314047478E-02 1.021043408 0.1314182832E-02 1.023390438 0.1314314849E-02 1.025737469 0.1314443463E-02 1.028084499 0.1314568607E-02 1.030431530 0.1314690212E-02 1.032778560 0.1314808211E-02 1.035125590 0.1314922536E-02 1.037472621 0.1315033119E-02 1.039819651 0.1315139893E-02 1.042166682 0.1315242790E-02 1.044513712 0.1315341744E-02 1.046860742 0.1315436688E-02 1.049207773 0.1315527556E-02 1.051554803 0.1315614283E-02 1.053901834 0.1315696805E-02 1.056248864 0.1315775057E-02 1.058595894 0.1315848979E-02 1.060942925 0.1315918508E-02 1.063289955 0.1315983584E-02 1.065636985 0.1316044150E-02 1.067984016 0.1316100148E-02 1.070331046 0.1316151522E-02 1.072678077 0.1316198219E-02 1.075025107 0.1316240188E-02 1.077372137 0.1316277377E-02 1.079719168 0.1316309741E-02 1.082066198 0.1316337234E-02 1.084413229 0.1316359811E-02 1.086760259 0.1316377434E-02 1.089107289 0.1316390064E-02 1.091454320 0.1316397665E-02 1.093801350 0.1316400206E-02 1.096152861 0.1316397008E-02 1.098504372 0.1316387417E-02 1.100855883 0.1316371437E-02 1.103207394 0.1316349070E-02 1.105558905 0.1316320315E-02 1.107910415 0.1316285172E-02 1.110261926 0.1316243637E-02 1.112613437 0.1316195704E-02 1.114964948 0.1316141366E-02 1.117316459 0.1316080615E-02 1.119667970 0.1316013439E-02 1.122019481 0.1315939828E-02 1.124370992 0.1315859766E-02 1.126722503 0.1315773238E-02 1.129074013 0.1315680228E-02 1.131425524 0.1315580716E-02 1.133777035 0.1315474682E-02 1.136128546 0.1315362104E-02 1.138480057 0.1315242960E-02 1.140831568 0.1315117224E-02 1.143183079 0.1314984870E-02 1.145534590 0.1314845870E-02 1.147886101 0.1314700196E-02 1.150237611 0.1314547817E-02 1.152589122 0.1314388700E-02 1.154940633 0.1314222813E-02 1.157292144 0.1314050120E-02 1.159643655 0.1313870586E-02 1.161995166 0.1313684174E-02 1.164346677 0.1313490843E-02 1.166698188 0.1313290555E-02 1.169049699 0.1313083267E-02 1.171401209 0.1312868935E-02 1.173752720 0.1312647516E-02 1.176104231 0.1312418963E-02 1.178455742 0.1312183228E-02 1.180807253 0.1311940262E-02 1.183158764 0.1311690013E-02 1.185510275 0.1311432430E-02 1.187861786 0.1311167457E-02 1.190213296 0.1310895038E-02 1.192564807 0.1310615115E-02 1.194916318 0.1310327628E-02 1.197267829 0.1310032514E-02 1.199619340 0.1309729709E-02 1.201970851 0.1309419148E-02 1.204322362 0.1309100760E-02 1.206673873 0.1308774475E-02 1.209025384 0.1308440219E-02 1.211376894 0.1308097916E-02 1.213728405 0.1307747487E-02 1.216079916 0.1307388850E-02 1.218431427 0.1307021921E-02 1.220782938 0.1306646611E-02 1.223134449 0.1306262830E-02 1.225485960 0.1305870484E-02 1.227837471 0.1305469475E-02 1.230188982 0.1305059702E-02 1.232540492 0.1304641060E-02 1.234892003 0.1304213440E-02 1.237243514 0.1303776730E-02 1.239595025 0.1303330812E-02 1.241946536 0.1302875565E-02 1.244298047 0.1302410865E-02 1.246649558 0.1301936579E-02 1.249001069 0.1301452574E-02 1.251352580 0.1300958709E-02 1.253704090 0.1300454839E-02 1.256055601 0.1299940813E-02 1.258407112 0.1299416475E-02 1.260758623 0.1298881663E-02 1.263110134 0.1298336210E-02 1.265461645 0.1297779942E-02 1.267813156 0.1297212678E-02 1.270164667 0.1296634232E-02 1.272516177 0.1296044411E-02 1.274867688 0.1295443015E-02 1.277219199 0.1294829835E-02 1.279570710 0.1294204658E-02 1.281922221 0.1293567262E-02 1.284273732 0.1292917415E-02 1.286625243 0.1292254882E-02 1.288976754 0.1291579415E-02 1.291328265 0.1290890760E-02 1.293679775 0.1290188653E-02 1.296031286 0.1289472824E-02 1.298382797 0.1288742990E-02 1.300734308 0.1287998861E-02 1.303085819 0.1287240137E-02 1.305437330 0.1286466509E-02 1.307788841 0.1285677657E-02 1.310140352 0.1284873251E-02 1.312491863 0.1284052950E-02 1.314843373 0.1283216404E-02 1.317194884 0.1282363250E-02 1.319546395 0.1281493116E-02 1.321897906 0.1280605618E-02 1.324249417 0.1279700360E-02 1.326600928 0.1278776936E-02 1.328952439 0.1277834925E-02 1.331303950 0.1276873897E-02 1.333655461 0.1275893409E-02 1.336006971 0.1274893005E-02 1.338358482 0.1273872218E-02 1.340709993 0.1272830568E-02 1.343061504 0.1271767561E-02 1.345413015 0.1270682692E-02 1.347764526 0.1269575443E-02 1.350116037 0.1268445281E-02 1.352467548 0.1267291663E-02 1.354819059 0.1266114032E-02 1.357170569 0.1264911817E-02 1.359522080 0.1263684436E-02 1.361873591 0.1262431293E-02 1.364225102 0.1261151780E-02 1.366576613 0.1259845274E-02 1.368928124 0.1258511143E-02 1.371279635 0.1257148740E-02 1.373631146 0.1255757408E-02 1.375982656 0.1254336475E-02 1.378334167 0.1252885259E-02 1.380685678 0.1251403068E-02 1.383037189 0.1249889195E-02 1.385388700 0.1248342926E-02 1.387740211 0.1246763533E-02 1.390091722 0.1244752787E-02 1.392443233 0.1241543554E-02 1.394794744 0.1238289615E-02 1.397146254 0.1234991289E-02 1.399497765 0.1231648894E-02 1.401849276 0.1228262748E-02 1.404200787 0.1224833168E-02 1.406552298 0.1221360469E-02 1.408903809 0.1217844965E-02 1.411255320 0.1214286970E-02 1.413606831 0.1210686796E-02 1.415958342 0.1207044755E-02 1.418309852 0.1203361156E-02 1.420661363 0.1199636309E-02 1.423012874 0.1195870521E-02 1.425364385 0.1192064100E-02 1.427715896 0.1188217352E-02 1.430067407 0.1184330581E-02 1.432418918 0.1180404091E-02 1.434770429 0.1176438184E-02 1.437121940 0.1172433162E-02 1.439473450 0.1168389324E-02 1.441824961 0.1164306968E-02 1.444176472 0.1160186391E-02 1.446527983 0.1156027889E-02 1.448879494 0.1151831755E-02 1.451231005 0.1147598280E-02 1.453582516 0.1143327753E-02 1.455934027 0.1139020463E-02 1.458285537 0.1134676694E-02 1.460637048 0.1130296730E-02 1.462988559 0.1125880849E-02 1.465340070 0.1121429330E-02 1.467691581 0.1116942447E-02 1.470043092 0.1112420471E-02 1.472394603 0.1107863671E-02 1.474746114 0.1103272311E-02 1.477097625 0.1098646653E-02 1.479449135 0.1093986954E-02 1.481800646 0.1089293468E-02 1.484152157 0.1084566446E-02 1.486503668 0.1079806133E-02 1.488855179 0.1075012770E-02 1.491206690 0.1070186597E-02 1.493558201 0.1065327844E-02 1.495909712 0.1060436742E-02 1.498261223 0.1055513513E-02 1.500612733 0.1050558379E-02 1.502964244 0.1045571553E-02 1.505315755 0.1040553246E-02 1.507667266 0.1035503663E-02 1.510018777 0.1030423006E-02 1.512370288 0.1025311469E-02 1.514721799 0.1020169245E-02 1.517073310 0.1014996521E-02 1.519424821 0.1009793477E-02 1.521776331 0.1004560292E-02 1.524127842 0.9992971389E-03 1.526479353 0.9940041857E-03 1.528830864 0.9886815966E-03 1.531182375 0.9833295314E-03 1.533533886 0.9779481457E-03 1.535885397 0.9725375912E-03 1.538236908 0.9670980154E-03 1.540588418 0.9616295623E-03 1.542939929 0.9561323718E-03 1.545291440 0.9506065808E-03 1.547642951 0.9450523224E-03 1.549994462 0.9394697268E-03 1.552345973 0.9338589209E-03 1.554697484 0.9282200289E-03 1.557048995 0.9225531722E-03 1.559400506 0.9168584697E-03 1.561752016 0.9111360379E-03 1.564103527 0.9053859913E-03 1.566455038 0.8996084422E-03 1.568806549 0.8938035011E-03 1.571158060 0.8879712769E-03 1.573509571 0.8821118773E-03 1.575861082 0.8762254083E-03 1.578212593 0.8703119752E-03 1.580564104 0.8643716821E-03 1.582915614 0.8584046327E-03 1.585267125 0.8524109298E-03 1.587618636 0.8463906762E-03 1.589970147 0.8403439742E-03 1.592321658 0.8342709262E-03 1.594673169 0.8281716348E-03 1.597024680 0.8220462028E-03 1.599376191 0.8158947336E-03 1.601727702 0.8097173312E-03 1.604079212 0.8035141002E-03 1.606430723 0.7972851465E-03 1.608782234 0.7910305766E-03 1.611133745 0.7847504987E-03 1.613485256 0.7784450221E-03 1.615836767 0.7721142577E-03 1.618188278 0.7657583180E-03 1.620539789 0.7593773173E-03 1.622891299 0.7529713717E-03 1.625242810 0.7465405994E-03 1.627594321 0.7400851207E-03 1.629945832 0.7336050581E-03 1.632297343 0.7271005365E-03 1.634648854 0.7205716832E-03 1.637000365 0.7140186280E-03 1.639351876 0.7074415036E-03 1.641703387 0.7008404451E-03 1.644054897 0.6942155905E-03 1.646406408 0.6875670809E-03 1.648757919 0.6808950601E-03 1.651109430 0.6741996751E-03 1.653460941 0.6674810761E-03 1.655812452 0.6607394163E-03 1.658163963 0.6539748522E-03 1.660515474 0.6471875437E-03 1.662866985 0.6403776539E-03 1.665218495 0.6335453496E-03 1.667570006 0.6266908005E-03 1.669921517 0.6198141804E-03 1.672273028 0.6129156661E-03 1.674624539 0.6050658907E-03 1.676976050 0.5958106671E-03 1.679327561 0.5865236957E-03 1.681679072 0.5772068659E-03 1.684030583 0.5678620971E-03 1.686382093 0.5584913386E-03 1.688733604 0.5490965693E-03 1.691085115 0.5396797973E-03 1.693436626 0.5302430598E-03 1.695788137 0.5207884229E-03 1.698139648 0.5113179810E-03 1.700491159 0.5018338565E-03 1.702842670 0.4923381999E-03 1.705194180 0.4828331884E-03 1.707545691 0.4733210262E-03 1.709897202 0.4638039437E-03 1.712248713 0.4542841964E-03 1.714600224 0.4447640646E-03 1.716951735 0.4352458521E-03 1.719303246 0.4257318852E-03 1.721654757 0.4162245115E-03 1.724006268 0.4067260984E-03 1.726357778 0.3972390313E-03 1.728709289 0.3877657115E-03 1.731060800 0.3783085545E-03 1.733412311 0.3688699867E-03 1.735763822 0.3594524428E-03 1.738115333 0.3500583622E-03 1.740466844 0.3406901854E-03 1.742818355 0.3313503487E-03 1.745169866 0.3220412798E-03 1.747521376 0.3127653913E-03 1.749872887 0.3035250740E-03 1.752224398 0.2943226892E-03 1.754575909 0.2851605588E-03 1.756927420 0.2760409559E-03 1.759278931 0.2669660913E-03 1.761630442 0.2579381004E-03 1.763981953 0.2489590257E-03 1.766333464 0.2400307981E-03 1.768684974 0.2311552132E-03 1.771036485 0.2223339046E-03 1.773387996 0.2135683115E-03 1.775739507 0.2048596394E-03 1.778091018 0.1962088129E-03 1.780442529 0.1876164180E-03 1.782794040 0.1790826307E-03 1.785145551 0.1706071274E-03 1.787497061 0.1621889722E-03 1.789848572 0.1538264716E-03 1.792200083 0.1455169858E-03 1.794551594 0.1372566778E-03 1.796903105 0.1290401747E-03 1.799254616 0.1208600998E-03 1.801606127 0.1127064105E-03 1.803957638 0.1045654324E-03 1.806309149 0.9641840600E-04 1.808660659 0.8823920761E-04 1.811012170 0.7999060098E-04 1.813363681 0.7161768826E-04 1.815715192 0.6303554121E-04 1.818066703 0.5410324531E-04 1.820418214 0.4456046322E-04 1.822769725 0.3382901437E-04 1.825121236 0.1997461009E-04 1.827472747 -0.1597055913E-04 1.829824257 -0.2867262659E-04 1.832175768 -0.3614581045E-04 1.834527279 -0.4138233122E-04 1.836878790 -0.4521272674E-04 1.839230301 -0.4801688336E-04 1.841581812 -0.5000677643E-04 1.843933323 -0.5131375412E-04 1.846284834 -0.5202373950E-04 1.848636345 -0.5219368690E-04 1.850987855 -0.5185982993E-04 1.853339366 -0.5104167116E-04 1.855690877 -0.4974326064E-04 1.858042388 -0.4795216572E-04 1.860393899 -0.4563565676E-04 1.862745410 -0.4273235964E-04 1.865096921 -0.3913472126E-04 1.867448432 -0.3464897269E-04 1.869799942 -0.2888556485E-04 1.872151453 -0.2083183572E-04 1.874502964 -0.1061101723E-09 1.876849995 -0.2656754926E-04 1.879197025 -0.3652754358E-04 1.881544055 -0.4341020791E-04 1.883891086 -0.4853430490E-04 1.886238116 -0.5241063227E-04 1.888585147 -0.5529533788E-04 1.890932177 -0.5733190596E-04 1.893279207 -0.5860281917E-04 1.895626238 -0.5915174895E-04 1.897973268 -0.5899339465E-04 1.900320299 -0.5811670352E-04 1.902667329 -0.5648309711E-04 1.905014359 -0.5401887926E-04 1.907361390 -0.5059776053E-04 1.909708420 -0.4600153753E-04 1.912055451 -0.3981981083E-04 1.914402481 -0.3111511080E-04 1.916749511 -0.1622851966E-04 1.919096542 0.2300167332E-04 1.921443572 0.3754300083E-04 1.923790603 0.4876575764E-04 1.926137633 0.5861032306E-04 1.928484663 0.6768218147E-04 1.930831694 0.7625858674E-04 1.933178724 0.8449120730E-04 1.935525754 0.9247229848E-04 1.937872785 0.1002621099E-03 1.940219815 0.1079020480E-03 1.942566846 0.1154216803E-03 1.944913876 0.1228427560E-03 1.947260906 0.1301816535E-03 1.949607937 0.1374509414E-03 1.951954967 0.1446604127E-03 1.954301998 0.1518177924E-03 1.956649028 0.1589292348E-03 1.958996058 0.1659996810E-03 1.961343089 0.1730331220E-03 1.963690119 0.1800327944E-03 1.966037150 0.1870013296E-03 1.968384180 0.1939408681E-03 1.970731210 0.2008531495E-03 1.973078241 0.2077395821E-03 1.975425271 0.2146012999E-03 1.977772302 0.2214392071E-03 1.980119332 0.2282540153E-03 1.982466362 0.2350462731E-03 1.984813393 0.2418163912E-03 1.987160423 0.2485646626E-03 1.989507454 0.2552912798E-03 1.991854484 0.2619963497E-03 1.994201514 0.2686799051E-03 1.996548545 0.2753419158E-03 1.998895575 0.2819822969E-03 2.001242605 0.2886009167E-03 2.003589636 0.2951976035E-03 2.005936666 0.3017721509E-03 2.008283697 0.3083243229E-03 2.010630727 0.3148538586E-03 2.012977757 0.3213604754E-03 2.015324788 0.3278438731E-03 2.017671818 0.3343037364E-03 2.020018849 0.3407397374E-03 2.022365879 0.3471515386E-03 2.024712909 0.3535387943E-03 2.027059940 0.3599011531E-03 2.029406970 0.3662382592E-03 2.031754001 0.3725497540E-03 2.034101031 0.3788352776E-03 2.036448061 0.3850944699E-03 2.038795092 0.3913269719E-03 2.041142122 0.3975324266E-03 2.043489153 0.4037104800E-03 2.045836183 0.4098607821E-03 2.048183213 0.4159829874E-03 2.050530244 0.4220767557E-03 2.052877274 0.4281417531E-03 2.055224304 0.4341776520E-03 2.057571335 0.4401841324E-03 2.059918365 0.4461608816E-03 2.062265396 0.4521075953E-03 2.064612426 0.4580239778E-03 2.066959456 0.4639097423E-03 2.069306487 0.4697646115E-03 2.071653517 0.4755883178E-03 2.074000548 0.4813806034E-03 2.076347578 0.4871412210E-03 2.078694608 0.4928699336E-03 2.081041639 0.4985665151E-03 2.083388669 0.5042307504E-03 2.085735700 0.5098624352E-03 2.088082730 0.5154613767E-03 2.090429760 0.5210273934E-03 2.092776791 0.5265603154E-03 2.095123821 0.5320599842E-03 2.097470852 0.5375262530E-03 2.099817882 0.5429589868E-03 2.102164912 0.5483580621E-03 2.104511943 0.5537233672E-03 2.106858973 0.5590548020E-03 2.109206004 0.5643522783E-03 2.111553034 0.5696157191E-03 2.113900064 0.5748450591E-03 2.116247095 0.5800402444E-03 2.118594125 0.5852012322E-03 2.120941155 0.5903279909E-03 2.123288186 0.5954204999E-03 2.125635216 0.6004787491E-03 2.127982247 0.6055027390E-03 2.130329277 0.6104924804E-03 2.132676307 0.6154479940E-03 2.135023338 0.6203693101E-03 2.137370368 0.6252564685E-03 2.139717399 0.6301095177E-03 2.142064429 0.6349285151E-03 2.144411459 0.6397135260E-03 2.146758490 0.6444646235E-03 2.149105520 0.6491818879E-03 2.151452551 0.6538654063E-03 2.153799581 0.6585152718E-03 2.156146611 0.6631315831E-03 2.158493642 0.6677144440E-03 2.160840672 0.6722639623E-03 2.163187703 0.6767802496E-03 2.165534733 0.6812634203E-03 2.167881763 0.6857135907E-03 2.170228794 0.6901308785E-03 2.172575824 0.6945154015E-03 2.174922855 0.6988672772E-03 2.177269885 0.7031866212E-03 2.179616915 0.7074735469E-03 2.181963946 0.7117281637E-03 2.184310976 0.7159505763E-03 2.186658006 0.7201408835E-03 2.189005037 0.7242991769E-03 2.191352067 0.7284255393E-03 2.193699098 0.7325200439E-03 2.196046128 0.7365827523E-03 2.198393158 0.7406137136E-03 2.200740189 0.7446129620E-03 2.203087219 0.7485805162E-03 2.205434250 0.7525163765E-03 2.207781280 0.7564205242E-03 2.210128310 0.7602929187E-03 2.212475341 0.7641334963E-03 2.214822371 0.7679421678E-03 2.217169402 0.7717188162E-03 2.219516432 0.7754632949E-03 2.221863462 0.7791754252E-03 2.224210493 0.7828549939E-03 2.226557523 0.7865017506E-03 2.228904554 0.7901154056E-03 2.231251584 0.7936956267E-03 2.233598614 0.7972420368E-03 2.235945645 0.8007542109E-03 2.238292675 0.8042316727E-03 2.240639706 0.8076738925E-03 2.242986736 0.8110802831E-03 2.245333766 0.8144501970E-03 2.247680797 0.8177829231E-03 2.250027827 0.8210776833E-03 2.252374857 0.8243336289E-03 2.254721888 0.8275498373E-03 2.257068918 0.8307253086E-03 2.259415949 0.8338589618E-03 2.261762979 0.8369496315E-03 2.264110009 0.8399960647E-03 2.266457040 0.8429969172E-03 2.268804070 0.8459507503E-03 2.271151101 0.8488560283E-03 2.273498131 0.8517111152E-03 2.275845161 0.8545142725E-03 2.278192192 0.8572636573E-03 2.280539222 0.8599573202E-03 2.282886253 0.8625932045E-03 2.285233283 0.8651691460E-03 2.287580313 0.8676828727E-03 2.289927344 0.8701320065E-03 2.292274374 0.8725140651E-03 2.294621405 0.8748264655E-03 2.296968435 0.8770665283E-03 2.299315465 0.8792314836E-03 2.301662496 0.8813184786E-03 2.304009526 0.8833245864E-03 2.306356557 0.8852468167E-03 2.308703587 0.8870821286E-03 2.311050617 0.8888274446E-03 2.313397648 0.8904796670E-03 2.315744678 0.8920356960E-03 2.318091708 0.8934924494E-03 2.320438739 0.8948468841E-03 2.322785769 0.8960960191E-03 2.325132800 0.8972369594E-03 2.327479830 0.8982669212E-03 2.329826860 0.8991832573E-03 2.332173891 0.8999834821E-03 2.334520921 0.9006652976E-03 2.336867952 0.9012266164E-03 2.339214982 0.9016655854E-03 2.341562012 0.9019806053E-03 2.343909043 0.9021703496E-03 2.346256073 0.9022337791E-03 0.000000000 -0.7090382357E-10 0.2347351854E-02 0.5565410707E-05 0.4694703708E-02 0.1113110086E-04 0.7042055561E-02 0.1669734973E-04 0.9389407415E-02 0.2226443620E-04 0.1173675927E-01 0.2783263860E-04 0.1408411112E-01 0.3340223452E-04 0.1643146298E-01 0.3897350062E-04 0.1877881483E-01 0.4454671246E-04 0.2112616668E-01 0.5012214428E-04 0.2347351854E-01 0.5570006888E-04 0.2582087039E-01 0.6128075740E-04 0.2816822225E-01 0.6686447912E-04 0.3051557410E-01 0.7245150137E-04 0.3286292595E-01 0.7804208926E-04 0.3521027781E-01 0.8363650558E-04 0.3755762966E-01 0.8923501061E-04 0.3990498151E-01 0.9483786192E-04 0.4225233337E-01 0.1004453143E-03 0.4459968522E-01 0.1060576194E-03 0.4694703708E-01 0.1116750260E-03 0.4929438893E-01 0.1172977793E-03 0.5164174078E-01 0.1229261211E-03 0.5398909264E-01 0.1285602897E-03 0.5633644449E-01 0.1342005197E-03 0.5868379634E-01 0.1398470416E-03 0.6103114820E-01 0.1455000821E-03 0.6337850005E-01 0.1511598637E-03 0.6572585191E-01 0.1568266046E-03 0.6807320376E-01 0.1625005187E-03 0.7042055561E-01 0.1681818153E-03 0.7276790747E-01 0.1738706993E-03 0.7511525932E-01 0.1795673705E-03 0.7746261117E-01 0.1852720243E-03 0.7980996303E-01 0.1909848509E-03 0.8215731488E-01 0.1967060357E-03 0.8450466674E-01 0.2024357588E-03 0.8685201859E-01 0.2081741952E-03 0.8919937044E-01 0.2139215148E-03 0.9154672230E-01 0.2196778818E-03 0.9389407415E-01 0.2254434554E-03 0.9624142601E-01 0.2312183890E-03 0.9858877786E-01 0.2370028306E-03 0.1009361297 0.2427969226E-03 0.1032834816 0.2486008017E-03 0.1056308334 0.2544145991E-03 0.1079781853 0.2604301180E-03 0.1103255371 0.2694424542E-03 0.1126728890 0.2785644940E-03 0.1150202408 0.2877925087E-03 0.1173675927 0.2971227298E-03 0.1197149445 0.3065513526E-03 0.1220622964 0.3160745392E-03 0.1244096483 0.3256884225E-03 0.1267570001 0.3353891084E-03 0.1291043520 0.3451726788E-03 0.1314517038 0.3550351937E-03 0.1337990557 0.3649726936E-03 0.1361464075 0.3749812015E-03 0.1384937594 0.3850567244E-03 0.1408411112 0.3951952550E-03 0.1431884631 0.4053927734E-03 0.1455358149 0.4156452479E-03 0.1478831668 0.4259486368E-03 0.1502305186 0.4362988891E-03 0.1525778705 0.4466919457E-03 0.1549252223 0.4571237403E-03 0.1572725742 0.4675902005E-03 0.1596199261 0.4780872482E-03 0.1619672779 0.4886108011E-03 0.1643146298 0.4991567731E-03 0.1666619816 0.5097210755E-03 0.1690093335 0.5202996175E-03 0.1713566853 0.5308883078E-03 0.1737040372 0.5414830549E-03 0.1760513890 0.5520797688E-03 0.1783987409 0.5626743621E-03 0.1807460927 0.5732627512E-03 0.1830934446 0.5838408578E-03 0.1854407964 0.5944046107E-03 0.1877881483 0.6049499476E-03 0.1901355002 0.6154728168E-03 0.1924828520 0.6259691798E-03 0.1948302039 0.6364350136E-03 0.1971775557 0.6468663129E-03 0.1995249076 0.6572590938E-03 0.2018722594 0.6676093963E-03 0.2042196113 0.6779132880E-03 0.2065669631 0.6881668676E-03 0.2089143150 0.6983662691E-03 0.2112616668 0.7085076657E-03 0.2136090187 0.7185872747E-03 0.2159563705 0.7286013619E-03 0.2183037224 0.7385462470E-03 0.2206510743 0.7484183086E-03 0.2229984261 0.7582139899E-03 0.2253457780 0.7679298047E-03 0.2276931298 0.7775623427E-03 0.2300404817 0.7871082765E-03 0.2323878335 0.7965643672E-03 0.2347351854 0.8059274712E-03 0.2370825372 0.8151945465E-03 0.2394298891 0.8243626590E-03 0.2417772409 0.8334289893E-03 0.2441245928 0.8423908388E-03 0.2464719446 0.8512456358E-03 0.2488192965 0.8599909418E-03 0.2511666484 0.8686244573E-03 0.2535140002 0.8771440267E-03 0.2558613521 0.8855476441E-03 0.2582087039 0.8938334574E-03 0.2605560558 0.9019997727E-03 0.2629034076 0.9100450578E-03 0.2652507595 0.9179679456E-03 0.2675981113 0.9257672359E-03 0.2699454632 0.9334418977E-03 0.2722928150 0.9409910701E-03 0.2746401669 0.9484140623E-03 0.2769875187 0.9557103539E-03 0.2793348706 0.9628795932E-03 0.2816822225 0.9699215958E-03 0.2840295743 0.9768363417E-03 0.2863769262 0.9836239722E-03 0.2887242780 0.9902847862E-03 0.2910716299 0.9968192351E-03 0.2934189817 0.1003227918E-02 0.2957663336 0.1009511577E-02 0.2981136854 0.1015671088E-02 0.3004610373 0.1021707459E-02 0.3028083891 0.1027621818E-02 0.3051557410 0.1033415408E-02 0.3075030928 0.1039089580E-02 0.3098504447 0.1044645786E-02 0.3121977966 0.1050085569E-02 0.3145451484 0.1055410554E-02 0.3168925003 0.1060622444E-02 0.3192398521 0.1065723012E-02 0.3215872040 0.1070714087E-02 0.3239345558 0.1075597555E-02 0.3262819077 0.1080375344E-02 0.3286292595 0.1085049424E-02 0.3309766114 0.1089621793E-02 0.3333239632 0.1094094476E-02 0.3356713151 0.1098469514E-02 0.3380186669 0.1102748964E-02 0.3403660188 0.1106934885E-02 0.3427133707 0.1111029342E-02 0.3450607225 0.1115034393E-02 0.3474080744 0.1118952090E-02 0.3497554262 0.1122784471E-02 0.3521027781 0.1126533559E-02 0.3544501299 0.1130201357E-02 0.3567974818 0.1133789844E-02 0.3591448336 0.1137300974E-02 0.3614921855 0.1140736671E-02 0.3638395373 0.1144098830E-02 0.3661868892 0.1147389313E-02 0.3685342410 0.1150609946E-02 0.3708815929 0.1153762519E-02 0.3732289448 0.1156848787E-02 0.3755762966 0.1159870463E-02 0.3779236485 0.1162829224E-02 0.3802710003 0.1165726705E-02 0.3826183522 0.1168564503E-02 0.3849657040 0.1171344170E-02 0.3873130559 0.1174067223E-02 0.3896604077 0.1176735133E-02 0.3920077596 0.1179349332E-02 0.3943551114 0.1181911213E-02 0.3967024633 0.1184422126E-02 0.3990498151 0.1186883383E-02 0.4013971670 0.1189296256E-02 0.4037445189 0.1191661975E-02 0.4060918707 0.1193981737E-02 0.4084392226 0.1196256696E-02 0.4107865744 0.1198487971E-02 0.4131339263 0.1200676644E-02 0.4154812781 0.1202823762E-02 0.4178286300 0.1204930334E-02 0.4201759818 0.1206997338E-02 0.4225233337 0.1209025716E-02 0.4248706855 0.1211016378E-02 0.4272180374 0.1212970200E-02 0.4295653892 0.1214888029E-02 0.4319127411 0.1216770680E-02 0.4342600929 0.1218618937E-02 0.4366074448 0.1220433558E-02 0.4389547967 0.1222215269E-02 0.4413021485 0.1223964771E-02 0.4436495004 0.1225682735E-02 0.4459968522 0.1227369808E-02 0.4483442041 0.1229026611E-02 0.4506915559 0.1230653740E-02 0.4530389078 0.1232251765E-02 0.4553862596 0.1233821235E-02 0.4577336115 0.1235362674E-02 0.4600809633 0.1236876585E-02 0.4624283152 0.1238363447E-02 0.4647756670 0.1239823720E-02 0.4671230189 0.1241257841E-02 0.4694703708 0.1242666230E-02 0.4718177226 0.1244049284E-02 0.4741650745 0.1245407382E-02 0.4765124263 0.1246740886E-02 0.4788597782 0.1248050137E-02 0.4812071300 0.1249335461E-02 0.4835544819 0.1250597164E-02 0.4859018337 0.1251835537E-02 0.4882491856 0.1253050854E-02 0.4905965374 0.1254243374E-02 0.4929438893 0.1255413339E-02 0.4952912411 0.1256560976E-02 0.4976385930 0.1257686499E-02 0.4999859449 0.1258790105E-02 0.5023332967 0.1259871979E-02 0.5046806486 0.1260932292E-02 0.5070280004 0.1261971199E-02 0.5093753523 0.1262988847E-02 0.5117227041 0.1263985367E-02 0.5140700560 0.1264960879E-02 0.5164174078 0.1265915490E-02 0.5187647597 0.1266849297E-02 0.5211121115 0.1267762384E-02 0.5234594634 0.1268654828E-02 0.5258068152 0.1269526691E-02 0.5281541671 0.1270378028E-02 0.5305015190 0.1271208883E-02 0.5328488708 0.1272019292E-02 0.5351962227 0.1272809281E-02 0.5375435745 0.1273578869E-02 0.5398909264 0.1274328063E-02 0.5422382782 0.1275056868E-02 0.5445856301 0.1275765278E-02 0.5469329819 0.1276453280E-02 0.5492803338 0.1277947406E-02 0.5516276856 0.1279447440E-02 0.5539750375 0.1280887519E-02 0.5563223893 0.1282268615E-02 0.5586697412 0.1283591687E-02 0.5610170931 0.1284857678E-02 0.5633644449 0.1286067514E-02 0.5657117968 0.1287222101E-02 0.5680591486 0.1288322324E-02 0.5704065005 0.1289369041E-02 0.5727538523 0.1290363087E-02 0.5751012042 0.1291305267E-02 0.5774485560 0.1292196358E-02 0.5797959079 0.1293037107E-02 0.5821432597 0.1293828228E-02 0.5844906116 0.1294570403E-02 0.5868379634 0.1295264278E-02 0.5891853153 0.1295910466E-02 0.5915326672 0.1296509543E-02 0.5938800190 0.1297062048E-02 0.5962273709 0.1297568483E-02 0.5985747227 0.1298029311E-02 0.6009220746 0.1298444959E-02 0.6032694264 0.1298815810E-02 0.6056167783 0.1299142213E-02 0.6079641301 0.1299424473E-02 0.6103114820 0.1299662857E-02 0.6126588338 0.1299857589E-02 0.6150061857 0.1300008856E-02 0.6173535375 0.1300116801E-02 0.6197008894 0.1300181526E-02 0.6220482413 0.1300203095E-02 0.6243952716 0.1300119459E-02 0.6267423020 0.1300041761E-02 0.6290893324 0.1299970121E-02 0.6314363628 0.1299904654E-02 0.6337833932 0.1299845473E-02 0.6361304236 0.1299792691E-02 0.6384774540 0.1299746416E-02 0.6408244844 0.1299706753E-02 0.6431715148 0.1299673805E-02 0.6455185452 0.1299647672E-02 0.6478655756 0.1299628448E-02 0.6502126060 0.1299616225E-02 0.6525596364 0.1299611093E-02 0.6549066668 0.1299613135E-02 0.6572536971 0.1299622430E-02 0.6596007275 0.1299639054E-02 0.6619477579 0.1299663079E-02 0.6642947883 0.1299694571E-02 0.6666418187 0.1299733591E-02 0.6689888491 0.1299780196E-02 0.6713358795 0.1299834438E-02 0.6736829099 0.1299896365E-02 0.6760299403 0.1299966017E-02 0.6783769707 0.1300043431E-02 0.6807240011 0.1300128639E-02 0.6830710315 0.1300221666E-02 0.6854180619 0.1300322532E-02 0.6877650922 0.1300431253E-02 0.6901121226 0.1300547838E-02 0.6924591530 0.1300672292E-02 0.6948061834 0.1300804612E-02 0.6971532138 0.1300944791E-02 0.6995002442 0.1301092817E-02 0.7018472746 0.1301248672E-02 0.7041943050 0.1301412332E-02 0.7065413354 0.1301583768E-02 0.7088883658 0.1301762946E-02 0.7112353962 0.1301949825E-02 0.7135824266 0.1302144360E-02 0.7159294570 0.1302346500E-02 0.7182764874 0.1302556190E-02 0.7206235177 0.1302773369E-02 0.7229705481 0.1302997969E-02 0.7253175785 0.1303229921E-02 0.7276646089 0.1303469149E-02 0.7300116393 0.1303715570E-02 0.7323586697 0.1303969100E-02 0.7347057001 0.1304229648E-02 0.7370527305 0.1304497119E-02 0.7393997609 0.1304771415E-02 0.7417467913 0.1305052431E-02 0.7440938217 0.1305340061E-02 0.7464408521 0.1305634192E-02 0.7487878825 0.1305934708E-02 0.7511349128 0.1306241492E-02 0.7534819432 0.1306554419E-02 0.7558289736 0.1306873363E-02 0.7581760040 0.1307198194E-02 0.7605230344 0.1307528780E-02 0.7628700648 0.1307864984E-02 0.7652170952 0.1308206668E-02 0.7675641256 0.1308553689E-02 0.7699111560 0.1308905903E-02 0.7722581864 0.1309263164E-02 0.7746052168 0.1309625323E-02 0.7769522472 0.1309992227E-02 0.7792992776 0.1310363725E-02 0.7816463080 0.1310739661E-02 0.7839933383 0.1311119878E-02 0.7863403687 0.1311504219E-02 0.7886873991 0.1311892523E-02 0.7910344295 0.1312284630E-02 0.7933814599 0.1312680378E-02 0.7957284903 0.1313079605E-02 0.7980755207 0.1313482146E-02 0.8004225511 0.1313887838E-02 0.8027695815 0.1314296515E-02 0.8051166119 0.1314708014E-02 0.8074636423 0.1315122169E-02 0.8098106727 0.1315538816E-02 0.8121577031 0.1315957788E-02 0.8145047335 0.1316378922E-02 0.8168517638 0.1316802052E-02 0.8191987942 0.1317227017E-02 0.8215458246 0.1317653651E-02 0.8238928550 0.1318081793E-02 0.8262398854 0.1318511282E-02 0.8285869158 0.1318941957E-02 0.8309339462 0.1319373659E-02 0.8332809766 0.1319806229E-02 0.8356280070 0.1320239512E-02 0.8379750374 0.1320673352E-02 0.8403220678 0.1321107595E-02 0.8426690982 0.1321542091E-02 0.8450161286 0.1321976688E-02 0.8473631589 0.1322411239E-02 0.8497101893 0.1322845597E-02 0.8520572197 0.1323279619E-02 0.8544042501 0.1323713162E-02 0.8567512805 0.1324146087E-02 0.8590983109 0.1324578256E-02 0.8614453413 0.1325009535E-02 0.8637923717 0.1325439790E-02 0.8661394021 0.1325868891E-02 0.8684864325 0.1326296711E-02 0.8708334629 0.1326723124E-02 0.8731804933 0.1327148009E-02 0.8755275237 0.1327571245E-02 0.8778745541 0.1327992715E-02 0.8802215844 0.1328412305E-02 0.8825686148 0.1328829904E-02 0.8849156452 0.1329245403E-02 0.8872626756 0.1329658696E-02 0.8896097060 0.1330069679E-02 0.8919567364 0.1330478252E-02 0.8943037668 0.1330884319E-02 0.8966507972 0.1331287783E-02 0.8989978276 0.1331688554E-02 0.9013448580 0.1332086542E-02 0.9036918884 0.1332481660E-02 0.9060389188 0.1332873826E-02 0.9083859492 0.1333262959E-02 0.9107329796 0.1333648979E-02 0.9130800099 0.1334031812E-02 0.9154270403 0.1334411386E-02 0.9177740707 0.1334787629E-02 0.9201211011 0.1335160473E-02 0.9224681315 0.1335529855E-02 0.9248151619 0.1335895710E-02 0.9271621923 0.1336257977E-02 0.9295092227 0.1336616600E-02 0.9318562531 0.1336971522E-02 0.9342032835 0.1337322688E-02 0.9365503139 0.1337670047E-02 0.9388973443 0.1338013550E-02 0.9412443747 0.1338353147E-02 0.9435914050 0.1338688794E-02 0.9459384354 0.1339020445E-02 0.9482854658 0.1339348058E-02 0.9506324962 0.1339671592E-02 0.9529795266 0.1339991007E-02 0.9553265570 0.1340306265E-02 0.9576735874 0.1340617329E-02 0.9600206178 0.1340924162E-02 0.9623676482 0.1341226730E-02 0.9647146786 0.1341524999E-02 0.9670617090 0.1341818937E-02 0.9694087394 0.1342108510E-02 0.9717557698 0.1342393688E-02 0.9741028002 0.1342674441E-02 0.9764498305 0.1342950736E-02 0.9787968609 0.1343222546E-02 0.9811438913 0.1343489839E-02 0.9834909217 0.1343752587E-02 0.9858379521 0.1344010761E-02 0.9881849825 0.1344264331E-02 0.9905320129 0.1344513268E-02 0.9928790433 0.1344757543E-02 0.9952260737 0.1344997125E-02 0.9975731041 0.1345231987E-02 0.9999201345 0.1345462096E-02 1.002267165 0.1345687424E-02 1.004614195 0.1345907938E-02 1.006961226 0.1346123607E-02 1.009308256 0.1346334399E-02 1.011655286 0.1346540281E-02 1.014002317 0.1346741221E-02 1.016349347 0.1346937183E-02 1.018696378 0.1347128133E-02 1.021043408 0.1347314034E-02 1.023390438 0.1347494852E-02 1.025737469 0.1347670548E-02 1.028084499 0.1347841083E-02 1.030431530 0.1348006421E-02 1.032778560 0.1348166519E-02 1.035125590 0.1348321338E-02 1.037472621 0.1348470837E-02 1.039819651 0.1348614973E-02 1.042166682 0.1348753703E-02 1.044513712 0.1348886983E-02 1.046860742 0.1349014770E-02 1.049207773 0.1349137017E-02 1.051554803 0.1349253680E-02 1.053901834 0.1349364712E-02 1.056248864 0.1349470067E-02 1.058595894 0.1349569698E-02 1.060942925 0.1349663557E-02 1.063289955 0.1349751596E-02 1.065636985 0.1349833769E-02 1.067984016 0.1349910027E-02 1.070331046 0.1349980322E-02 1.072678077 0.1350044608E-02 1.075025107 0.1350102836E-02 1.077372137 0.1350154959E-02 1.079719168 0.1350200932E-02 1.082066198 0.1350240707E-02 1.084413229 0.1350274241E-02 1.086760259 0.1350301488E-02 1.089107289 0.1350322405E-02 1.091454320 0.1350336951E-02 1.093801350 0.1350345083E-02 1.096152861 0.1350344551E-02 1.098504372 0.1350348899E-02 1.100855883 0.1350358106E-02 1.103207394 0.1350372136E-02 1.105558905 0.1350390937E-02 1.107910415 0.1350414444E-02 1.110261926 0.1350442573E-02 1.112613437 0.1350475228E-02 1.114964948 0.1350512296E-02 1.117316459 0.1350553649E-02 1.119667970 0.1350599145E-02 1.122019481 0.1350648626E-02 1.124370992 0.1350701920E-02 1.126722503 0.1350758838E-02 1.129074013 0.1350819179E-02 1.131425524 0.1350882726E-02 1.133777035 0.1350949246E-02 1.136128546 0.1351018493E-02 1.138480057 0.1351090207E-02 1.140831568 0.1351164111E-02 1.143183079 0.1351239915E-02 1.145534590 0.1351317315E-02 1.147886101 0.1351395991E-02 1.150237611 0.1351475608E-02 1.152589122 0.1351555819E-02 1.154940633 0.1351636259E-02 1.157292144 0.1351716551E-02 1.159643655 0.1351796300E-02 1.161995166 0.1351875100E-02 1.164346677 0.1351952527E-02 1.166698188 0.1352028142E-02 1.169049699 0.1352101491E-02 1.171401209 0.1352172105E-02 1.173752720 0.1352239498E-02 1.176104231 0.1352303168E-02 1.178455742 0.1352362599E-02 1.180807253 0.1352417255E-02 1.183158764 0.1352466585E-02 1.185510275 0.1352510021E-02 1.187861786 0.1352546976E-02 1.190213296 0.1352576849E-02 1.192564807 0.1352599015E-02 1.194916318 0.1352612836E-02 1.197267829 0.1352617653E-02 1.199619340 0.1352612787E-02 1.201970851 0.1352597541E-02 1.204322362 0.1352571199E-02 1.206673873 0.1352533023E-02 1.209025384 0.1352482256E-02 1.211376894 0.1352418121E-02 1.213728405 0.1352339819E-02 1.216079916 0.1352246533E-02 1.218431427 0.1352137423E-02 1.220782938 0.1352011629E-02 1.223134449 0.1351868271E-02 1.225485960 0.1351706449E-02 1.227837471 0.1351525242E-02 1.230188982 0.1351323711E-02 1.232540492 0.1351100897E-02 1.234892003 0.1350855824E-02 1.237243514 0.1350587499E-02 1.239595025 0.1350294913E-02 1.241946536 0.1349977040E-02 1.244298047 0.1349632845E-02 1.246649558 0.1349261277E-02 1.249001069 0.1348861278E-02 1.251352580 0.1348431782E-02 1.253704090 0.1347971716E-02 1.256055601 0.1347480005E-02 1.258407112 0.1346955573E-02 1.260758623 0.1346397347E-02 1.263110134 0.1345804259E-02 1.265461645 0.1345175250E-02 1.267813156 0.1344509269E-02 1.270164667 0.1343805285E-02 1.272516177 0.1343062281E-02 1.274867688 0.1342279264E-02 1.277219199 0.1341455263E-02 1.279570710 0.1340589338E-02 1.281922221 0.1339680579E-02 1.284273732 0.1338728110E-02 1.286625243 0.1337731093E-02 1.288976754 0.1336688729E-02 1.291328265 0.1335600261E-02 1.293679775 0.1334464979E-02 1.296031286 0.1333282217E-02 1.298382797 0.1332051356E-02 1.300734308 0.1330771830E-02 1.303085819 0.1329443118E-02 1.305437330 0.1328064753E-02 1.307788841 0.1326636316E-02 1.310140352 0.1325157441E-02 1.312491863 0.1323627808E-02 1.314843373 0.1322047149E-02 1.317194884 0.1320415242E-02 1.319546395 0.1318731910E-02 1.321897906 0.1316997023E-02 1.324249417 0.1315210491E-02 1.326600928 0.1313372267E-02 1.328952439 0.1311482339E-02 1.331303950 0.1309540735E-02 1.333655461 0.1307547512E-02 1.336006971 0.1305502762E-02 1.338358482 0.1303406604E-02 1.340709993 0.1301259183E-02 1.343061504 0.1299060669E-02 1.345413015 0.1296811254E-02 1.347764526 0.1294511148E-02 1.350116037 0.1292160581E-02 1.352467548 0.1289759796E-02 1.354819059 0.1287309051E-02 1.357170569 0.1284808615E-02 1.359522080 0.1282258769E-02 1.361873591 0.1279659801E-02 1.364225102 0.1277012006E-02 1.366576613 0.1274315688E-02 1.368928124 0.1271571154E-02 1.371279635 0.1268778715E-02 1.373631146 0.1265938686E-02 1.375982656 0.1263051385E-02 1.378334167 0.1260117130E-02 1.380685678 0.1257136242E-02 1.383037189 0.1254109042E-02 1.385388700 0.1251035852E-02 1.387740211 0.1247916993E-02 1.390091722 0.1245150282E-02 1.392443233 0.1243502424E-02 1.394794744 0.1241819204E-02 1.397146254 0.1240099859E-02 1.399497765 0.1238343614E-02 1.401849276 0.1236549690E-02 1.404200787 0.1234717297E-02 1.406552298 0.1232845640E-02 1.408903809 0.1230933918E-02 1.411255320 0.1228981324E-02 1.413606831 0.1226987046E-02 1.415958342 0.1224950265E-02 1.418309852 0.1222870162E-02 1.420661363 0.1220745912E-02 1.423012874 0.1218576689E-02 1.425364385 0.1216361663E-02 1.427715896 0.1214100003E-02 1.430067407 0.1211790879E-02 1.432418918 0.1209433458E-02 1.434770429 0.1207026909E-02 1.437121940 0.1204570402E-02 1.439473450 0.1202063107E-02 1.441824961 0.1199504198E-02 1.444176472 0.1196892850E-02 1.446527983 0.1194228241E-02 1.448879494 0.1191509554E-02 1.451231005 0.1188735974E-02 1.453582516 0.1185906692E-02 1.455934027 0.1183020903E-02 1.458285537 0.1180077808E-02 1.460637048 0.1177076613E-02 1.462988559 0.1174016530E-02 1.465340070 0.1170896779E-02 1.467691581 0.1167716584E-02 1.470043092 0.1164475179E-02 1.472394603 0.1161171802E-02 1.474746114 0.1157805703E-02 1.477097625 0.1154376136E-02 1.479449135 0.1150882366E-02 1.481800646 0.1147323665E-02 1.484152157 0.1143699316E-02 1.486503668 0.1140008609E-02 1.488855179 0.1136250844E-02 1.491206690 0.1132425334E-02 1.493558201 0.1128531399E-02 1.495909712 0.1124568372E-02 1.498261223 0.1120535597E-02 1.500612733 0.1116432430E-02 1.502964244 0.1112258238E-02 1.505315755 0.1108012404E-02 1.507667266 0.1103694322E-02 1.510018777 0.1099303401E-02 1.512370288 0.1094839067E-02 1.514721799 0.1090300759E-02 1.517073310 0.1085687935E-02 1.519424821 0.1081000068E-02 1.521776331 0.1076236651E-02 1.524127842 0.1071397197E-02 1.526479353 0.1066481237E-02 1.528830864 0.1061488325E-02 1.531182375 0.1056418035E-02 1.533533886 0.1051269967E-02 1.535885397 0.1046043742E-02 1.538236908 0.1040739010E-02 1.540588418 0.1035355444E-02 1.542939929 0.1029892747E-02 1.545291440 0.1024350648E-02 1.547642951 0.1018728908E-02 1.549994462 0.1013027317E-02 1.552345973 0.1007245697E-02 1.554697484 0.1001383903E-02 1.557048995 0.9954418235E-03 1.559400506 0.9894193823E-03 1.561752016 0.9833165376E-03 1.564103527 0.9771332849E-03 1.566455038 0.9708696564E-03 1.568806549 0.9645257228E-03 1.571158060 0.9581015932E-03 1.573509571 0.9515974164E-03 1.575861082 0.9450133812E-03 1.578212593 0.9383497169E-03 1.580564104 0.9316066940E-03 1.582915614 0.9247846246E-03 1.585267125 0.9178838626E-03 1.587618636 0.9109048041E-03 1.589970147 0.9038478876E-03 1.592321658 0.8967135944E-03 1.594673169 0.8895024483E-03 1.597024680 0.8822150161E-03 1.599376191 0.8748519073E-03 1.601727702 0.8674137739E-03 1.604079212 0.8599013109E-03 1.606430723 0.8523152556E-03 1.608782234 0.8446563874E-03 1.611133745 0.8369255278E-03 1.613485256 0.8291235402E-03 1.615836767 0.8212513290E-03 1.618188278 0.8133098399E-03 1.620539789 0.8053000593E-03 1.622891299 0.7972230134E-03 1.625242810 0.7890797687E-03 1.627594321 0.7808714307E-03 1.629945832 0.7725991438E-03 1.632297343 0.7642640909E-03 1.634648854 0.7558674928E-03 1.637000365 0.7474106077E-03 1.639351876 0.7388947306E-03 1.641703387 0.7303211931E-03 1.644054897 0.7216913629E-03 1.646406408 0.7130066428E-03 1.648757919 0.7042684711E-03 1.651109430 0.6954783204E-03 1.653460941 0.6866376977E-03 1.655812452 0.6777481435E-03 1.658163963 0.6688112318E-03 1.660515474 0.6598285695E-03 1.662866985 0.6508017963E-03 1.665218495 0.6417325839E-03 1.667570006 0.6326226362E-03 1.669921517 0.6234736884E-03 1.672273028 0.6142875073E-03 1.674624539 0.6059954382E-03 1.676976050 0.5990536809E-03 1.679327561 0.5920905817E-03 1.681679072 0.5851063319E-03 1.684030583 0.5781011263E-03 1.686382093 0.5710751635E-03 1.688733604 0.5640286453E-03 1.691085115 0.5569617772E-03 1.693436626 0.5498747685E-03 1.695788137 0.5427678316E-03 1.698139648 0.5356411827E-03 1.700491159 0.5284950411E-03 1.702842670 0.5213296299E-03 1.705194180 0.5141451750E-03 1.707545691 0.5069419060E-03 1.709897202 0.4997200555E-03 1.712248713 0.4924798589E-03 1.714600224 0.4852215549E-03 1.716951735 0.4779453850E-03 1.719303246 0.4706515932E-03 1.721654757 0.4633404262E-03 1.724006268 0.4560121331E-03 1.726357778 0.4486669653E-03 1.728709289 0.4413051760E-03 1.731060800 0.4339270203E-03 1.733412311 0.4265327550E-03 1.735763822 0.4191226381E-03 1.738115333 0.4116969284E-03 1.740466844 0.4042558856E-03 1.742818355 0.3967997697E-03 1.745169866 0.3893288404E-03 1.747521376 0.3818433570E-03 1.749872887 0.3743435776E-03 1.752224398 0.3668297590E-03 1.754575909 0.3593021554E-03 1.756927420 0.3517610182E-03 1.759278931 0.3442065951E-03 1.761630442 0.3366391292E-03 1.763981953 0.3290588580E-03 1.766333464 0.3214660122E-03 1.768684974 0.3138608145E-03 1.771036485 0.3062434784E-03 1.773387996 0.2986142058E-03 1.775739507 0.2909731858E-03 1.778091018 0.2833205923E-03 1.780442529 0.2756565810E-03 1.782794040 0.2679812869E-03 1.785145551 0.2602948207E-03 1.787497061 0.2525972643E-03 1.789848572 0.2448886663E-03 1.792200083 0.2371690358E-03 1.794551594 0.2294383359E-03 1.796903105 0.2216964743E-03 1.799254616 0.2139432941E-03 1.801606127 0.2061785604E-03 1.803957638 0.1984019447E-03 1.806309149 0.1906130062E-03 1.808660659 0.1828111663E-03 1.811012170 0.1749956785E-03 1.813363681 0.1671655877E-03 1.815715192 0.1593196790E-03 1.818066703 0.1514564089E-03 1.820418214 0.1435738141E-03 1.822769725 0.1356693876E-03 1.825121236 0.1277399072E-03 1.827472747 0.1197811939E-03 1.829824257 0.1117877626E-03 1.832175768 0.1037523050E-03 1.834527279 0.9566489919E-04 1.836878790 0.8751175573E-04 1.839230301 0.7927314109E-04 1.841581812 0.7091974395E-04 1.843933323 0.6240586284E-04 1.846284834 0.5365540982E-04 1.848636345 0.4452922468E-04 1.850987855 0.3473222089E-04 1.853339366 0.2343713188E-04 1.855690877 0.3423387189E-05 1.858042388 -0.2016129656E-04 1.860393899 -0.2655894124E-04 1.862745410 -0.2975030149E-04 1.865096921 -0.3075232742E-04 1.867448432 -0.2978905049E-04 1.869799942 -0.2665096627E-04 1.872151453 -0.2035957783E-04 1.874502964 -0.7090382357E-10 1.876849995 -0.2656754926E-04 1.879197025 -0.3652754358E-04 1.881544055 -0.4341020791E-04 1.883891086 -0.4853430490E-04 1.886238116 -0.5241063226E-04 1.888585147 -0.5529533788E-04 1.890932177 -0.5733190596E-04 1.893279207 -0.5860281917E-04 1.895626238 -0.5915174894E-04 1.897973268 -0.5899339464E-04 1.900320299 -0.5811670352E-04 1.902667329 -0.5648309711E-04 1.905014359 -0.5401887925E-04 1.907361390 -0.5059776052E-04 1.909708420 -0.4600153753E-04 1.912055451 -0.3981981083E-04 1.914402481 -0.3111511079E-04 1.916749511 -0.1622851966E-04 1.919096542 0.2300167332E-04 1.921443572 0.3754300083E-04 1.923790603 0.4876575764E-04 1.926137633 0.5861032306E-04 1.928484663 0.6768218147E-04 1.930831694 0.7625858674E-04 1.933178724 0.8449120730E-04 1.935525754 0.9247229848E-04 1.937872785 0.1002621099E-03 1.940219815 0.1079020480E-03 1.942566846 0.1154216803E-03 1.944913876 0.1228427560E-03 1.947260906 0.1301816535E-03 1.949607937 0.1374509414E-03 1.951954967 0.1446604127E-03 1.954301998 0.1518177924E-03 1.956649028 0.1589292348E-03 1.958996058 0.1659996810E-03 1.961343089 0.1730331220E-03 1.963690119 0.1800327944E-03 1.966037150 0.1870013296E-03 1.968384180 0.1939408682E-03 1.970731210 0.2008531495E-03 1.973078241 0.2077395821E-03 1.975425271 0.2146012999E-03 1.977772302 0.2214392071E-03 1.980119332 0.2282540153E-03 1.982466362 0.2350462732E-03 1.984813393 0.2418163912E-03 1.987160423 0.2485646626E-03 1.989507454 0.2552912798E-03 1.991854484 0.2619963497E-03 1.994201514 0.2686799051E-03 1.996548545 0.2753419158E-03 1.998895575 0.2819822969E-03 2.001242605 0.2886009168E-03 2.003589636 0.2951976036E-03 2.005936666 0.3017721509E-03 2.008283697 0.3083243229E-03 2.010630727 0.3148538586E-03 2.012977757 0.3213604754E-03 2.015324788 0.3278438732E-03 2.017671818 0.3343037364E-03 2.020018849 0.3407397374E-03 2.022365879 0.3471515386E-03 2.024712909 0.3535387943E-03 2.027059940 0.3599011532E-03 2.029406970 0.3662382593E-03 2.031754001 0.3725497541E-03 2.034101031 0.3788352776E-03 2.036448061 0.3850944699E-03 2.038795092 0.3913269719E-03 2.041142122 0.3975324266E-03 2.043489153 0.4037104800E-03 2.045836183 0.4098607821E-03 2.048183213 0.4159829874E-03 2.050530244 0.4220767557E-03 2.052877274 0.4281417531E-03 2.055224304 0.4341776521E-03 2.057571335 0.4401841324E-03 2.059918365 0.4461608816E-03 2.062265396 0.4521075953E-03 2.064612426 0.4580239778E-03 2.066959456 0.4639097423E-03 2.069306487 0.4697646116E-03 2.071653517 0.4755883178E-03 2.074000548 0.4813806034E-03 2.076347578 0.4871412210E-03 2.078694608 0.4928699336E-03 2.081041639 0.4985665152E-03 2.083388669 0.5042307504E-03 2.085735700 0.5098624352E-03 2.088082730 0.5154613767E-03 2.090429760 0.5210273934E-03 2.092776791 0.5265603154E-03 2.095123821 0.5320599842E-03 2.097470852 0.5375262530E-03 2.099817882 0.5429589868E-03 2.102164912 0.5483580621E-03 2.104511943 0.5537233672E-03 2.106858973 0.5590548020E-03 2.109206004 0.5643522783E-03 2.111553034 0.5696157191E-03 2.113900064 0.5748450591E-03 2.116247095 0.5800402444E-03 2.118594125 0.5852012322E-03 2.120941155 0.5903279910E-03 2.123288186 0.5954204999E-03 2.125635216 0.6004787491E-03 2.127982247 0.6055027390E-03 2.130329277 0.6104924804E-03 2.132676307 0.6154479940E-03 2.135023338 0.6203693102E-03 2.137370368 0.6252564685E-03 2.139717399 0.6301095178E-03 2.142064429 0.6349285152E-03 2.144411459 0.6397135260E-03 2.146758490 0.6444646235E-03 2.149105520 0.6491818880E-03 2.151452551 0.6538654063E-03 2.153799581 0.6585152718E-03 2.156146611 0.6631315831E-03 2.158493642 0.6677144440E-03 2.160840672 0.6722639623E-03 2.163187703 0.6767802497E-03 2.165534733 0.6812634203E-03 2.167881763 0.6857135908E-03 2.170228794 0.6901308785E-03 2.172575824 0.6945154016E-03 2.174922855 0.6988672772E-03 2.177269885 0.7031866213E-03 2.179616915 0.7074735469E-03 2.181963946 0.7117281637E-03 2.184310976 0.7159505763E-03 2.186658006 0.7201408836E-03 2.189005037 0.7242991769E-03 2.191352067 0.7284255393E-03 2.193699098 0.7325200439E-03 2.196046128 0.7365827524E-03 2.198393158 0.7406137136E-03 2.200740189 0.7446129621E-03 2.203087219 0.7485805162E-03 2.205434250 0.7525163765E-03 2.207781280 0.7564205242E-03 2.210128310 0.7602929188E-03 2.212475341 0.7641334964E-03 2.214822371 0.7679421678E-03 2.217169402 0.7717188162E-03 2.219516432 0.7754632949E-03 2.221863462 0.7791754253E-03 2.224210493 0.7828549939E-03 2.226557523 0.7865017506E-03 2.228904554 0.7901154056E-03 2.231251584 0.7936956268E-03 2.233598614 0.7972420369E-03 2.235945645 0.8007542109E-03 2.238292675 0.8042316728E-03 2.240639706 0.8076738926E-03 2.242986736 0.8110802831E-03 2.245333766 0.8144501970E-03 2.247680797 0.8177829232E-03 2.250027827 0.8210776833E-03 2.252374857 0.8243336289E-03 2.254721888 0.8275498374E-03 2.257068918 0.8307253086E-03 2.259415949 0.8338589618E-03 2.261762979 0.8369496316E-03 2.264110009 0.8399960648E-03 2.266457040 0.8429969172E-03 2.268804070 0.8459507504E-03 2.271151101 0.8488560283E-03 2.273498131 0.8517111152E-03 2.275845161 0.8545142726E-03 2.278192192 0.8572636573E-03 2.280539222 0.8599573202E-03 2.282886253 0.8625932046E-03 2.285233283 0.8651691460E-03 2.287580313 0.8676828727E-03 2.289927344 0.8701320065E-03 2.292274374 0.8725140652E-03 2.294621405 0.8748264656E-03 2.296968435 0.8770665284E-03 2.299315465 0.8792314837E-03 2.301662496 0.8813184787E-03 2.304009526 0.8833245864E-03 2.306356557 0.8852468168E-03 2.308703587 0.8870821287E-03 2.311050617 0.8888274447E-03 2.313397648 0.8904796671E-03 2.315744678 0.8920356961E-03 2.318091708 0.8934924494E-03 2.320438739 0.8948468841E-03 2.322785769 0.8960960191E-03 2.325132800 0.8972369594E-03 2.327479830 0.8982669213E-03 2.329826860 0.8991832573E-03 2.332173891 0.8999834822E-03 2.334520921 0.9006652976E-03 2.336867952 0.9012266165E-03 2.339214982 0.9016655854E-03 2.341562012 0.9019806054E-03 2.343909043 0.9021703497E-03 2.346256073 0.9022337791E-03 0.000000000 -0.7013009195E-10 0.2347351854E-02 0.1265861216E-04 0.4694703708E-02 0.2531787432E-04 0.7042055561E-02 0.3797843223E-04 0.9389407415E-02 0.5064092329E-04 0.1173675927E-01 0.6330597227E-04 0.1408411112E-01 0.7597418727E-04 0.1643146298E-01 0.8864615563E-04 0.1877881483E-01 0.1013224399E-03 0.2112616668E-01 0.1140035740E-03 0.2347351854E-01 0.1266900594E-03 0.2582087039E-01 0.1393823613E-03 0.2816822225E-01 0.1520809052E-03 0.3051557410E-01 0.1647860735E-03 0.3286292595E-01 0.1774982019E-03 0.3521027781E-01 0.1902175764E-03 0.3755762966E-01 0.2029444305E-03 0.3990498151E-01 0.2156789421E-03 0.4225233337E-01 0.2284212306E-03 0.4459968522E-01 0.2411713550E-03 0.4694703708E-01 0.2539293110E-03 0.4929438893E-01 0.2666950289E-03 0.5164174078E-01 0.2794683719E-03 0.5398909264E-01 0.2922491341E-03 0.5633644449E-01 0.3050370386E-03 0.5868379634E-01 0.3178317363E-03 0.6103114820E-01 0.3306328045E-03 0.6337850005E-01 0.3434397457E-03 0.6572585191E-01 0.3562519867E-03 0.6807320376E-01 0.3690688776E-03 0.7042055561E-01 0.3818896910E-03 0.7276790747E-01 0.3947136220E-03 0.7511525932E-01 0.4075397871E-03 0.7746261117E-01 0.4203672243E-03 0.7980996303E-01 0.4331948931E-03 0.8215731488E-01 0.4460216741E-03 0.8450466674E-01 0.4588463692E-03 0.8685201859E-01 0.4716677022E-03 0.8919937044E-01 0.4844843187E-03 0.9154672230E-01 0.4972947867E-03 0.9389407415E-01 0.5100975973E-03 0.9624142601E-01 0.5228911653E-03 0.9858877786E-01 0.5356738296E-03 0.1009361297 0.5484438548E-03 0.1032834816 0.5611994317E-03 0.1056308334 0.5739386782E-03 0.1079781853 0.5866596412E-03 0.1103255371 0.5993602973E-03 0.1126728890 0.6120385544E-03 0.1150202408 0.6246922534E-03 0.1173675927 0.6373191697E-03 0.1197149445 0.6499170150E-03 0.1220622964 0.6624834395E-03 0.1244096483 0.6750160337E-03 0.1267570001 0.6875123308E-03 0.1291043520 0.6999698093E-03 0.1314517038 0.7123858953E-03 0.1337990557 0.7247579655E-03 0.1361464075 0.7370833502E-03 0.1384937594 0.7493593364E-03 0.1408411112 0.7615831715E-03 0.1431884631 0.7737520669E-03 0.1455358149 0.7858632018E-03 0.1478831668 0.7979137275E-03 0.1502305186 0.8099007719E-03 0.1525778705 0.8218214445E-03 0.1549252223 0.8336728407E-03 0.1572725742 0.8454520479E-03 0.1596199261 0.8571561506E-03 0.1619672779 0.8687822367E-03 0.1643146298 0.8803274030E-03 0.1666619816 0.8917887623E-03 0.1690093335 0.9031634497E-03 0.1713566853 0.9144486294E-03 0.1737040372 0.9256415023E-03 0.1760513890 0.9367393127E-03 0.1783987409 0.9477393561E-03 0.1807460927 0.9586389867E-03 0.1830934446 0.9694356250E-03 0.1854407964 0.9801267654E-03 0.1877881483 0.9907099841E-03 0.1901355002 0.1001182946E-02 0.1924828520 0.1011543414E-02 0.1948302039 0.1021789252E-02 0.1971775557 0.1031918438E-02 0.1995249076 0.1041929065E-02 0.2018722594 0.1051819352E-02 0.2042196113 0.1061587644E-02 0.2065669631 0.1071232425E-02 0.2089143150 0.1080752315E-02 0.2112616668 0.1090146081E-02 0.2136090187 0.1099412634E-02 0.2159563705 0.1108551038E-02 0.2183037224 0.1117560508E-02 0.2206510743 0.1126440412E-02 0.2229984261 0.1135190272E-02 0.2253457780 0.1143809765E-02 0.2276931298 0.1152298719E-02 0.2300404817 0.1160657115E-02 0.2323878335 0.1168885081E-02 0.2347351854 0.1176982890E-02 0.2370825372 0.1184950958E-02 0.2394298891 0.1192789837E-02 0.2417772409 0.1200500210E-02 0.2441245928 0.1208082889E-02 0.2464719446 0.1215538803E-02 0.2488192965 0.1222868996E-02 0.2511666484 0.1230074619E-02 0.2535140002 0.1237156923E-02 0.2558613521 0.1244117250E-02 0.2582087039 0.1250957029E-02 0.2605560558 0.1257677766E-02 0.2629034076 0.1264281038E-02 0.2652507595 0.1270768482E-02 0.2675981113 0.1277141794E-02 0.2699454632 0.1283402715E-02 0.2722928150 0.1289553031E-02 0.2746401669 0.1295594558E-02 0.2769875187 0.1301529143E-02 0.2793348706 0.1307358655E-02 0.2816822225 0.1313084976E-02 0.2840295743 0.1318710002E-02 0.2863769262 0.1324235629E-02 0.2887242780 0.1329663759E-02 0.2910716299 0.1334996283E-02 0.2934189817 0.1340235089E-02 0.2957663336 0.1345382049E-02 0.2981136854 0.1350439020E-02 0.3004610373 0.1355407838E-02 0.3028083891 0.1360290318E-02 0.3051557410 0.1365088251E-02 0.3075030928 0.1369803400E-02 0.3098504447 0.1374437497E-02 0.3121977966 0.1378992247E-02 0.3145451484 0.1383469320E-02 0.3168925003 0.1387870352E-02 0.3192398521 0.1392196946E-02 0.3215872040 0.1396450670E-02 0.3239345558 0.1400633054E-02 0.3262819077 0.1404745593E-02 0.3286292595 0.1408789745E-02 0.3309766114 0.1412766932E-02 0.3333239632 0.1416678537E-02 0.3356713151 0.1420525909E-02 0.3380186669 0.1424310358E-02 0.3403660188 0.1428033159E-02 0.3427133707 0.1431695551E-02 0.3450607225 0.1435298738E-02 0.3474080744 0.1438843888E-02 0.3497554262 0.1442332137E-02 0.3521027781 0.1445764586E-02 0.3544501299 0.1449142302E-02 0.3567974818 0.1452466322E-02 0.3591448336 0.1455737650E-02 0.3614921855 0.1458957260E-02 0.3638395373 0.1462126096E-02 0.3661868892 0.1465245072E-02 0.3685342410 0.1468315076E-02 0.3708815929 0.1471336965E-02 0.3732289448 0.1474311573E-02 0.3755762966 0.1477239705E-02 0.3779236485 0.1480122141E-02 0.3802710003 0.1482959640E-02 0.3826183522 0.1485752933E-02 0.3849657040 0.1488502730E-02 0.3873130559 0.1491209720E-02 0.3896604077 0.1493874569E-02 0.3920077596 0.1496497923E-02 0.3943551114 0.1499080407E-02 0.3967024633 0.1501622629E-02 0.3990498151 0.1504125176E-02 0.4013971670 0.1506588618E-02 0.4037445189 0.1509013508E-02 0.4060918707 0.1511400381E-02 0.4084392226 0.1513749758E-02 0.4107865744 0.1516062143E-02 0.4131339263 0.1518338024E-02 0.4154812781 0.1520577877E-02 0.4178286300 0.1522782162E-02 0.4201759818 0.1524951326E-02 0.4225233337 0.1527085804E-02 0.4248706855 0.1529186017E-02 0.4272180374 0.1531252376E-02 0.4295653892 0.1533285278E-02 0.4319127411 0.1535285111E-02 0.4342600929 0.1537252249E-02 0.4366074448 0.1539187060E-02 0.4389547967 0.1541089899E-02 0.4413021485 0.1542961111E-02 0.4436495004 0.1544801034E-02 0.4459968522 0.1546609994E-02 0.4483442041 0.1548388311E-02 0.4506915559 0.1550136295E-02 0.4530389078 0.1551854247E-02 0.4553862596 0.1553542464E-02 0.4577336115 0.1555201230E-02 0.4600809633 0.1556830826E-02 0.4624283152 0.1558431524E-02 0.4647756670 0.1560003588E-02 0.4671230189 0.1561547279E-02 0.4694703708 0.1563062848E-02 0.4718177226 0.1564550540E-02 0.4741650745 0.1566010596E-02 0.4765124263 0.1567443249E-02 0.4788597782 0.1568848728E-02 0.4812071300 0.1570227255E-02 0.4835544819 0.1571579048E-02 0.4859018337 0.1572904317E-02 0.4882491856 0.1574203270E-02 0.4905965374 0.1575476108E-02 0.4929438893 0.1576723028E-02 0.4952912411 0.1577944222E-02 0.4976385930 0.1579139878E-02 0.4999859449 0.1580310177E-02 0.5023332967 0.1581455297E-02 0.5046806486 0.1582575414E-02 0.5070280004 0.1583670696E-02 0.5093753523 0.1584741309E-02 0.5117227041 0.1585787414E-02 0.5140700560 0.1586809168E-02 0.5164174078 0.1587806724E-02 0.5187647597 0.1588780231E-02 0.5211121115 0.1589729836E-02 0.5234594634 0.1590655679E-02 0.5258068152 0.1591557898E-02 0.5281541671 0.1592436628E-02 0.5305015190 0.1593291998E-02 0.5328488708 0.1594124137E-02 0.5351962227 0.1594933166E-02 0.5375435745 0.1595719207E-02 0.5398909264 0.1596482375E-02 0.5422382782 0.1597222783E-02 0.5445856301 0.1597940541E-02 0.5469329819 0.1598635755E-02 0.5492803338 0.1599308527E-02 0.5516276856 0.1599958957E-02 0.5539750375 0.1600587140E-02 0.5563223893 0.1601193171E-02 0.5586697412 0.1601777137E-02 0.5610170931 0.1602339125E-02 0.5633644449 0.1602879219E-02 0.5657117968 0.1603397497E-02 0.5680591486 0.1603894037E-02 0.5704065005 0.1604368912E-02 0.5727538523 0.1604822191E-02 0.5751012042 0.1605253943E-02 0.5774485560 0.1605664230E-02 0.5797959079 0.1606053113E-02 0.5821432597 0.1606420651E-02 0.5844906116 0.1606766896E-02 0.5868379634 0.1607091900E-02 0.5891853153 0.1607395713E-02 0.5915326672 0.1607678377E-02 0.5938800190 0.1607939936E-02 0.5962273709 0.1608180427E-02 0.5985747227 0.1608399887E-02 0.6009220746 0.1608598349E-02 0.6032694264 0.1608775840E-02 0.6056167783 0.1608932389E-02 0.6079641301 0.1609068017E-02 0.6103114820 0.1609182746E-02 0.6126588338 0.1609276591E-02 0.6150061857 0.1609349568E-02 0.6173535375 0.1609401686E-02 0.6197008894 0.1609432954E-02 0.6220482413 0.1609443376E-02 0.6243952716 0.1609469693E-02 0.6267423020 0.1609480351E-02 0.6290893324 0.1609475326E-02 0.6314363628 0.1609454604E-02 0.6337833932 0.1609418183E-02 0.6361304236 0.1609366074E-02 0.6384774540 0.1609298297E-02 0.6408244844 0.1609214885E-02 0.6431715148 0.1609115880E-02 0.6455185452 0.1609001338E-02 0.6478655756 0.1608871322E-02 0.6502126060 0.1608725910E-02 0.6525596364 0.1608565187E-02 0.6549066668 0.1608389250E-02 0.6572536971 0.1608198206E-02 0.6596007275 0.1607992170E-02 0.6619477579 0.1607771269E-02 0.6642947883 0.1607535637E-02 0.6666418187 0.1607285419E-02 0.6689888491 0.1607020766E-02 0.6713358795 0.1606741839E-02 0.6736829099 0.1606448807E-02 0.6760299403 0.1606141846E-02 0.6783769707 0.1605821137E-02 0.6807240011 0.1605486872E-02 0.6830710315 0.1605139247E-02 0.6854180619 0.1604778464E-02 0.6877650922 0.1604404730E-02 0.6901121226 0.1604018260E-02 0.6924591530 0.1603619270E-02 0.6948061834 0.1603207986E-02 0.6971532138 0.1602784632E-02 0.6995002442 0.1602349440E-02 0.7018472746 0.1601902645E-02 0.7041943050 0.1601444483E-02 0.7065413354 0.1600975196E-02 0.7088883658 0.1600495025E-02 0.7112353962 0.1600004215E-02 0.7135824266 0.1599503014E-02 0.7159294570 0.1598991670E-02 0.7182764874 0.1598470431E-02 0.7206235177 0.1597939548E-02 0.7229705481 0.1597399273E-02 0.7253175785 0.1596849857E-02 0.7276646089 0.1596291550E-02 0.7300116393 0.1595724606E-02 0.7323586697 0.1595149274E-02 0.7347057001 0.1594565806E-02 0.7370527305 0.1593974451E-02 0.7393997609 0.1593375459E-02 0.7417467913 0.1592769077E-02 0.7440938217 0.1592155553E-02 0.7464408521 0.1591535130E-02 0.7487878825 0.1590908053E-02 0.7511349128 0.1590274563E-02 0.7534819432 0.1589634901E-02 0.7558289736 0.1588989304E-02 0.7581760040 0.1588338009E-02 0.7605230344 0.1587681249E-02 0.7628700648 0.1587019255E-02 0.7652170952 0.1586352257E-02 0.7675641256 0.1585680482E-02 0.7699111560 0.1585004153E-02 0.7722581864 0.1584323493E-02 0.7746052168 0.1583638720E-02 0.7769522472 0.1582950051E-02 0.7792992776 0.1582257700E-02 0.7816463080 0.1581561877E-02 0.7839933383 0.1580862792E-02 0.7863403687 0.1580160649E-02 0.7886873991 0.1579455652E-02 0.7910344295 0.1578748001E-02 0.7933814599 0.1578037894E-02 0.7957284903 0.1577325524E-02 0.7980755207 0.1576611084E-02 0.8004225511 0.1575894764E-02 0.8027695815 0.1575176749E-02 0.8051166119 0.1574457223E-02 0.8074636423 0.1573736368E-02 0.8098106727 0.1573014363E-02 0.8121577031 0.1572291382E-02 0.8145047335 0.1571567600E-02 0.8168517638 0.1570843188E-02 0.8191987942 0.1570118313E-02 0.8215458246 0.1569393141E-02 0.8238928550 0.1568667837E-02 0.8262398854 0.1567942560E-02 0.8285869158 0.1567217470E-02 0.8309339462 0.1566492724E-02 0.8332809766 0.1565768475E-02 0.8356280070 0.1565044875E-02 0.8379750374 0.1564322075E-02 0.8403220678 0.1563600222E-02 0.8426690982 0.1562879461E-02 0.8450161286 0.1562159938E-02 0.8473631589 0.1561441793E-02 0.8497101893 0.1560725167E-02 0.8520572197 0.1560010197E-02 0.8544042501 0.1559297020E-02 0.8567512805 0.1558585771E-02 0.8590983109 0.1557876582E-02 0.8614453413 0.1557169586E-02 0.8637923717 0.1556464911E-02 0.8661394021 0.1555762687E-02 0.8684864325 0.1555063039E-02 0.8708334629 0.1554366093E-02 0.8731804933 0.1553671974E-02 0.8755275237 0.1552980805E-02 0.8778745541 0.1552292706E-02 0.8802215844 0.1551607798E-02 0.8825686148 0.1550926200E-02 0.8849156452 0.1550248031E-02 0.8872626756 0.1549573407E-02 0.8896097060 0.1548902444E-02 0.8919567364 0.1548235258E-02 0.8943037668 0.1547571962E-02 0.8966507972 0.1546912670E-02 0.8989978276 0.1546257495E-02 0.9013448580 0.1545606547E-02 0.9036918884 0.1544959938E-02 0.9060389188 0.1544317777E-02 0.9083859492 0.1543680175E-02 0.9107329796 0.1543047240E-02 0.9130800099 0.1542419080E-02 0.9154270403 0.1541795803E-02 0.9177740707 0.1541177516E-02 0.9201211011 0.1540564325E-02 0.9224681315 0.1539956336E-02 0.9248151619 0.1539353655E-02 0.9271621923 0.1538756387E-02 0.9295092227 0.1538164636E-02 0.9318562531 0.1537578506E-02 0.9342032835 0.1536998101E-02 0.9365503139 0.1536423525E-02 0.9388973443 0.1535854879E-02 0.9412443747 0.1535292267E-02 0.9435914050 0.1534735791E-02 0.9459384354 0.1534185552E-02 0.9482854658 0.1533641652E-02 0.9506324962 0.1533104191E-02 0.9529795266 0.1532573271E-02 0.9553265570 0.1532048990E-02 0.9576735874 0.1531531449E-02 0.9600206178 0.1531020747E-02 0.9623676482 0.1530516982E-02 0.9647146786 0.1530020254E-02 0.9670617090 0.1529530659E-02 0.9694087394 0.1529048296E-02 0.9717557698 0.1528573260E-02 0.9741028002 0.1528105649E-02 0.9764498305 0.1527645557E-02 0.9787968609 0.1527193080E-02 0.9811438913 0.1526748312E-02 0.9834909217 0.1526311346E-02 0.9858379521 0.1525882277E-02 0.9881849825 0.1525461194E-02 0.9905320129 0.1525048191E-02 0.9928790433 0.1524643356E-02 0.9952260737 0.1524246781E-02 0.9975731041 0.1523858552E-02 0.9999201345 0.1523478758E-02 1.002267165 0.1523107486E-02 1.004614195 0.1522744819E-02 1.006961226 0.1522390843E-02 1.009308256 0.1522045640E-02 1.011655286 0.1521709291E-02 1.014002317 0.1521381877E-02 1.016349347 0.1521063476E-02 1.018696378 0.1520754166E-02 1.021043408 0.1520454022E-02 1.023390438 0.1520163118E-02 1.025737469 0.1519881527E-02 1.028084499 0.1519609318E-02 1.030431530 0.1519346561E-02 1.032778560 0.1519093323E-02 1.035125590 0.1518849667E-02 1.037472621 0.1518615658E-02 1.039819651 0.1518391355E-02 1.042166682 0.1518176817E-02 1.044513712 0.1517972101E-02 1.046860742 0.1517777261E-02 1.049207773 0.1517592347E-02 1.051554803 0.1517417411E-02 1.053901834 0.1517252497E-02 1.056248864 0.1517097651E-02 1.058595894 0.1516952913E-02 1.060942925 0.1516818324E-02 1.063289955 0.1516693919E-02 1.065636985 0.1516579731E-02 1.067984016 0.1516475792E-02 1.070331046 0.1516382129E-02 1.072678077 0.1516298767E-02 1.075025107 0.1516225728E-02 1.077372137 0.1516163031E-02 1.079719168 0.1516110691E-02 1.082066198 0.1516068721E-02 1.084413229 0.1516037132E-02 1.086760259 0.1516015929E-02 1.089107289 0.1516005117E-02 1.091454320 0.1516004694E-02 1.093801350 0.1516014659E-02 1.096152861 0.1515995770E-02 1.098504372 0.1515957470E-02 1.100855883 0.1515899785E-02 1.103207394 0.1515822751E-02 1.105558905 0.1515726411E-02 1.107910415 0.1515610819E-02 1.110261926 0.1515476037E-02 1.112613437 0.1515322133E-02 1.114964948 0.1515149187E-02 1.117316459 0.1514957287E-02 1.119667970 0.1514746528E-02 1.122019481 0.1514517015E-02 1.124370992 0.1514268863E-02 1.126722503 0.1514002192E-02 1.129074013 0.1513717136E-02 1.131425524 0.1513413833E-02 1.133777035 0.1513092434E-02 1.136128546 0.1512753097E-02 1.138480057 0.1512395989E-02 1.140831568 0.1512021290E-02 1.143183079 0.1511629185E-02 1.145534590 0.1511219870E-02 1.147886101 0.1510793554E-02 1.150237611 0.1510350452E-02 1.152589122 0.1509890791E-02 1.154940633 0.1509414810E-02 1.157292144 0.1508922757E-02 1.159643655 0.1508414890E-02 1.161995166 0.1507891482E-02 1.164346677 0.1507352813E-02 1.166698188 0.1506799179E-02 1.169049699 0.1506230886E-02 1.171401209 0.1505648252E-02 1.173752720 0.1505051611E-02 1.176104231 0.1504441305E-02 1.178455742 0.1503817695E-02 1.180807253 0.1503181153E-02 1.183158764 0.1502532066E-02 1.185510275 0.1501870835E-02 1.187861786 0.1501197877E-02 1.190213296 0.1500513625E-02 1.192564807 0.1499818526E-02 1.194916318 0.1499113046E-02 1.197267829 0.1498397665E-02 1.199619340 0.1497672882E-02 1.201970851 0.1496939212E-02 1.204322362 0.1496197187E-02 1.206673873 0.1495447361E-02 1.209025384 0.1494690300E-02 1.211376894 0.1493926594E-02 1.213728405 0.1493156848E-02 1.216079916 0.1492381686E-02 1.218431427 0.1491601752E-02 1.220782938 0.1490817707E-02 1.223134449 0.1490030231E-02 1.225485960 0.1489240020E-02 1.227837471 0.1488447790E-02 1.230188982 0.1487654272E-02 1.232540492 0.1486860215E-02 1.234892003 0.1486066380E-02 1.237243514 0.1485273545E-02 1.239595025 0.1484482500E-02 1.241946536 0.1483694047E-02 1.244298047 0.1482908996E-02 1.246649558 0.1482128169E-02 1.249001069 0.1481352390E-02 1.251352580 0.1480582490E-02 1.253704090 0.1479819299E-02 1.256055601 0.1479063648E-02 1.258407112 0.1478316362E-02 1.260758623 0.1477578261E-02 1.263110134 0.1476850154E-02 1.265461645 0.1476132836E-02 1.267813156 0.1475427086E-02 1.270164667 0.1474733663E-02 1.272516177 0.1474053301E-02 1.274867688 0.1473386707E-02 1.277219199 0.1472734557E-02 1.279570710 0.1472097492E-02 1.281922221 0.1471476115E-02 1.284273732 0.1470870986E-02 1.286625243 0.1470282624E-02 1.288976754 0.1469711495E-02 1.291328265 0.1469158019E-02 1.293679775 0.1468622561E-02 1.296031286 0.1468105432E-02 1.298382797 0.1467606884E-02 1.300734308 0.1467127111E-02 1.303085819 0.1466666250E-02 1.305437330 0.1466224374E-02 1.307788841 0.1465801496E-02 1.310140352 0.1465397568E-02 1.312491863 0.1465012481E-02 1.314843373 0.1464646065E-02 1.317194884 0.1464298091E-02 1.319546395 0.1463968270E-02 1.321897906 0.1463656257E-02 1.324249417 0.1463361648E-02 1.326600928 0.1463083988E-02 1.328952439 0.1462822766E-02 1.331303950 0.1462577422E-02 1.333655461 0.1462347346E-02 1.336006971 0.1462131880E-02 1.338358482 0.1461930321E-02 1.340709993 0.1461741923E-02 1.343061504 0.1461565896E-02 1.345413015 0.1461401411E-02 1.347764526 0.1461247601E-02 1.350116037 0.1461103561E-02 1.352467548 0.1460968349E-02 1.354819059 0.1460840989E-02 1.357170569 0.1460720473E-02 1.359522080 0.1460605758E-02 1.361873591 0.1460495770E-02 1.364225102 0.1460389405E-02 1.366576613 0.1460285525E-02 1.368928124 0.1460182965E-02 1.371279635 0.1460080529E-02 1.373631146 0.1459976990E-02 1.375982656 0.1459871094E-02 1.378334167 0.1459761554E-02 1.380685678 0.1459647056E-02 1.383037189 0.1459526254E-02 1.385388700 0.1459397773E-02 1.387740211 0.1459260208E-02 1.390091722 0.1459112124E-02 1.392443233 0.1458952053E-02 1.394794744 0.1458778498E-02 1.397146254 0.1458589931E-02 1.399497765 0.1458384793E-02 1.401849276 0.1458161492E-02 1.404200787 0.1457918407E-02 1.406552298 0.1457653885E-02 1.408903809 0.1457366243E-02 1.411255320 0.1457053766E-02 1.413606831 0.1456714711E-02 1.415958342 0.1456347306E-02 1.418309852 0.1455949749E-02 1.420661363 0.1455520212E-02 1.423012874 0.1455056842E-02 1.425364385 0.1454557761E-02 1.427715896 0.1454021067E-02 1.430067407 0.1453444839E-02 1.432418918 0.1452827137E-02 1.434770429 0.1452166006E-02 1.437121940 0.1451459477E-02 1.439473450 0.1450705569E-02 1.441824961 0.1449902296E-02 1.444176472 0.1449047667E-02 1.446527983 0.1448139690E-02 1.448879494 0.1447176377E-02 1.451231005 0.1446155746E-02 1.453582516 0.1445075829E-02 1.455934027 0.1443934669E-02 1.458285537 0.1442730330E-02 1.460637048 0.1441460900E-02 1.462988559 0.1440124493E-02 1.465340070 0.1438719254E-02 1.467691581 0.1437243365E-02 1.470043092 0.1435695046E-02 1.472394603 0.1434072557E-02 1.474746114 0.1432374208E-02 1.477097625 0.1430598353E-02 1.479449135 0.1428743400E-02 1.481800646 0.1426807810E-02 1.484152157 0.1424790097E-02 1.486503668 0.1422688834E-02 1.488855179 0.1420502651E-02 1.491206690 0.1418230235E-02 1.493558201 0.1415870332E-02 1.495909712 0.1413421746E-02 1.498261223 0.1410883339E-02 1.500612733 0.1408254028E-02 1.502964244 0.1405532784E-02 1.505315755 0.1402718633E-02 1.507667266 0.1399810650E-02 1.510018777 0.1396807961E-02 1.512370288 0.1393709735E-02 1.514721799 0.1390515186E-02 1.517073310 0.1387223569E-02 1.519424821 0.1383834175E-02 1.521776331 0.1380346334E-02 1.524127842 0.1376759403E-02 1.526479353 0.1373072773E-02 1.528830864 0.1369285860E-02 1.531182375 0.1365398105E-02 1.533533886 0.1361408972E-02 1.535885397 0.1357317946E-02 1.538236908 0.1353124531E-02 1.540588418 0.1348828248E-02 1.542939929 0.1344428635E-02 1.545291440 0.1339925245E-02 1.547642951 0.1335317649E-02 1.549994462 0.1330605430E-02 1.552345973 0.1325788188E-02 1.554697484 0.1320865538E-02 1.557048995 0.1315837111E-02 1.559400506 0.1310702557E-02 1.561752016 0.1305461542E-02 1.564103527 0.1300113754E-02 1.566455038 0.1294658903E-02 1.568806549 0.1289096719E-02 1.571158060 0.1283426960E-02 1.573509571 0.1277649412E-02 1.575861082 0.1271763888E-02 1.578212593 0.1265770234E-02 1.580564104 0.1259668332E-02 1.582915614 0.1253458097E-02 1.585267125 0.1247139484E-02 1.587618636 0.1240712488E-02 1.589970147 0.1234177149E-02 1.592321658 0.1227533548E-02 1.594673169 0.1220781818E-02 1.597024680 0.1213922134E-02 1.599376191 0.1206954727E-02 1.601727702 0.1199879876E-02 1.604079212 0.1192697913E-02 1.606430723 0.1185409225E-02 1.608782234 0.1178014253E-02 1.611133745 0.1170513491E-02 1.613485256 0.1162907491E-02 1.615836767 0.1155196861E-02 1.618188278 0.1147382261E-02 1.620539789 0.1139464409E-02 1.622891299 0.1131444079E-02 1.625242810 0.1123322095E-02 1.627594321 0.1115099337E-02 1.629945832 0.1106776736E-02 1.632297343 0.1098355277E-02 1.634648854 0.1089835989E-02 1.637000365 0.1081219955E-02 1.639351876 0.1072508301E-02 1.641703387 0.1063702198E-02 1.644054897 0.1054802863E-02 1.646406408 0.1045811551E-02 1.648757919 0.1036729558E-02 1.651109430 0.1027558217E-02 1.653460941 0.1018298898E-02 1.655812452 0.1008953004E-02 1.658163963 0.9995219672E-03 1.660515474 0.9900072533E-03 1.662866985 0.9804103537E-03 1.665218495 0.9707327866E-03 1.667570006 0.9609760940E-03 1.669921517 0.9511418406E-03 1.672273028 0.9412316117E-03 1.674624539 0.9312470118E-03 1.676976050 0.9211896628E-03 1.679327561 0.9110612027E-03 1.681679072 0.9008632839E-03 1.684030583 0.8905975723E-03 1.686382093 0.8802657455E-03 1.688733604 0.8698694919E-03 1.691085115 0.8594105093E-03 1.693436626 0.8488905042E-03 1.695788137 0.8383111904E-03 1.698139648 0.8276742881E-03 1.700491159 0.8169815232E-03 1.702842670 0.8062346263E-03 1.705194180 0.7954353318E-03 1.707545691 0.7845853774E-03 1.709897202 0.7736865028E-03 1.712248713 0.7627404498E-03 1.714600224 0.7517489607E-03 1.716951735 0.7407137784E-03 1.719303246 0.7296366452E-03 1.721654757 0.7185193023E-03 1.724006268 0.7073634889E-03 1.726357778 0.6961709419E-03 1.728709289 0.6849433947E-03 1.731060800 0.6736825767E-03 1.733412311 0.6623902125E-03 1.735763822 0.6510680207E-03 1.738115333 0.6397177134E-03 1.740466844 0.6283409949E-03 1.742818355 0.6169395609E-03 1.745169866 0.6055150970E-03 1.747521376 0.5940692780E-03 1.749872887 0.5826037661E-03 1.752224398 0.5711202098E-03 1.754575909 0.5596202423E-03 1.756927420 0.5481054799E-03 1.759278931 0.5365775202E-03 1.761630442 0.5250379405E-03 1.763981953 0.5134882954E-03 1.766333464 0.5019301152E-03 1.768684974 0.4903649034E-03 1.771036485 0.4787941342E-03 1.773387996 0.4672192503E-03 1.775739507 0.4556416603E-03 1.778091018 0.4440627355E-03 1.780442529 0.4324838072E-03 1.782794040 0.4209061639E-03 1.785145551 0.4093310473E-03 1.787497061 0.3977596496E-03 1.789848572 0.3861931095E-03 1.792200083 0.3746325083E-03 1.794551594 0.3630788660E-03 1.796903105 0.3515331370E-03 1.799254616 0.3399962054E-03 1.801606127 0.3284688800E-03 1.803957638 0.3169518889E-03 1.806309149 0.3054458735E-03 1.808660659 0.2939513822E-03 1.811012170 0.2824688622E-03 1.813363681 0.2709986517E-03 1.815715192 0.2595409690E-03 1.818066703 0.2480959005E-03 1.820418214 0.2366633859E-03 1.822769725 0.2252431993E-03 1.825121236 0.2138349253E-03 1.827472747 0.2024379274E-03 1.829824257 0.1910513062E-03 1.832175768 0.1796738420E-03 1.834527279 0.1683039149E-03 1.836878790 0.1569393898E-03 1.839230301 0.1455774488E-03 1.841581812 0.1342143364E-03 1.843933323 0.1228449639E-03 1.846284834 0.1114622674E-03 1.848636345 0.1000561213E-03 1.850987855 0.8861139681E-04 1.853339366 0.7710424641E-04 1.855690877 0.6549434520E-04 1.858042388 0.5370662500E-04 1.860393899 0.4158003248E-04 1.862745410 0.2867461800E-04 1.865096921 0.1279518726E-04 1.867448432 -0.1572440195E-04 1.869799942 -0.2027825643E-04 1.872151453 -0.1812683746E-04 1.874502964 -0.7013009195E-10 1.876849995 -0.2597002625E-04 1.879197025 -0.3360005076E-04 1.881544055 -0.3691439561E-04 1.883891086 -0.3707729365E-04 1.886238116 -0.3412223129E-04 1.888585147 -0.2703199757E-04 1.890932177 -0.8557834238E-05 1.893279207 0.2843930835E-04 1.895626238 0.4377161241E-04 1.897973268 0.5699806151E-04 1.900320299 0.6933793884E-04 1.902667329 0.8119907804E-04 1.905014359 0.9276727263E-04 1.907361390 0.1041416691E-03 1.909708420 0.1153806723E-03 1.912055451 0.1265211107E-03 1.914402481 0.1375873885E-03 1.916749511 0.1485962926E-03 1.919096542 0.1595597046E-03 1.921443572 0.1704862210E-03 1.923790603 0.1813821643E-03 1.926137633 0.1922522393E-03 1.928484663 0.2030999729E-03 1.930831694 0.2139280166E-03 1.933178724 0.2247383591E-03 1.935525754 0.2355324801E-03 1.937872785 0.2463114625E-03 1.940219815 0.2570760761E-03 1.942566846 0.2678268408E-03 1.944913876 0.2785640752E-03 1.947260906 0.2892879343E-03 1.949607937 0.2999984386E-03 1.951954967 0.3106954981E-03 1.954301998 0.3213789307E-03 1.956649028 0.3320484772E-03 1.958996058 0.3427038143E-03 1.961343089 0.3533445640E-03 1.963690119 0.3639703022E-03 1.966037150 0.3745805662E-03 1.968384180 0.3851748599E-03 1.970731210 0.3957526592E-03 1.973078241 0.4063134161E-03 1.975425271 0.4168565623E-03 1.977772302 0.4273815125E-03 1.980119332 0.4378876668E-03 1.982466362 0.4483744134E-03 1.984813393 0.4588411304E-03 1.987160423 0.4692871877E-03 1.989507454 0.4797119485E-03 1.991854484 0.4901147711E-03 1.994201514 0.5004950097E-03 1.996548545 0.5108520159E-03 1.998895575 0.5211851394E-03 2.001242605 0.5314937293E-03 2.003589636 0.5417771346E-03 2.005936666 0.5520347052E-03 2.008283697 0.5622657925E-03 2.010630727 0.5724697501E-03 2.012977757 0.5826459344E-03 2.015324788 0.5927937049E-03 2.017671818 0.6029124252E-03 2.020018849 0.6130014629E-03 2.022365879 0.6230601905E-03 2.024712909 0.6330879856E-03 2.027059940 0.6430842311E-03 2.029406970 0.6530483162E-03 2.031754001 0.6629796358E-03 2.034101031 0.6728775915E-03 2.036448061 0.6827415919E-03 2.038795092 0.6925710524E-03 2.041142122 0.7023653958E-03 2.043489153 0.7121240526E-03 2.045836183 0.7218464609E-03 2.048183213 0.7315320673E-03 2.050530244 0.7411803261E-03 2.052877274 0.7507907006E-03 2.055224304 0.7603626623E-03 2.057571335 0.7698956918E-03 2.059918365 0.7793892788E-03 2.062265396 0.7888429219E-03 2.064612426 0.7982561294E-03 2.066959456 0.8076284189E-03 2.069306487 0.8169593176E-03 2.071653517 0.8262483626E-03 2.074000548 0.8354951011E-03 2.076347578 0.8446990900E-03 2.078694608 0.8538598966E-03 2.081041639 0.8629770987E-03 2.083388669 0.8720502841E-03 2.085735700 0.8810790516E-03 2.088082730 0.8900630102E-03 2.090429760 0.8990017802E-03 2.092776791 0.9078949922E-03 2.095123821 0.9167422882E-03 2.097470852 0.9255433210E-03 2.099817882 0.9342977546E-03 2.102164912 0.9430052644E-03 2.104511943 0.9516655369E-03 2.106858973 0.9602782700E-03 2.109206004 0.9688431733E-03 2.111553034 0.9773599678E-03 2.113900064 0.9858283860E-03 2.116247095 0.9942481725E-03 2.118594125 0.1002619083E-02 2.120941155 0.1010940886E-02 2.123288186 0.1019213361E-02 2.125635216 0.1027436299E-02 2.127982247 0.1035609505E-02 2.130329277 0.1043732794E-02 2.132676307 0.1051805994E-02 2.135023338 0.1059828945E-02 2.137370368 0.1067801500E-02 2.139717399 0.1075723521E-02 2.142064429 0.1083594887E-02 2.144411459 0.1091415485E-02 2.146758490 0.1099185218E-02 2.149105520 0.1106903997E-02 2.151452551 0.1114571750E-02 2.153799581 0.1122188413E-02 2.156146611 0.1129753936E-02 2.158493642 0.1137268283E-02 2.160840672 0.1144731429E-02 2.163187703 0.1152143359E-02 2.165534733 0.1159504074E-02 2.167881763 0.1166813584E-02 2.170228794 0.1174071913E-02 2.172575824 0.1181279097E-02 2.174922855 0.1188435184E-02 2.177269885 0.1195540233E-02 2.179616915 0.1202594315E-02 2.181963946 0.1209597514E-02 2.184310976 0.1216549925E-02 2.186658006 0.1223451655E-02 2.189005037 0.1230302822E-02 2.191352067 0.1237103556E-02 2.193699098 0.1243853997E-02 2.196046128 0.1250554297E-02 2.198393158 0.1257204620E-02 2.200740189 0.1263805139E-02 2.203087219 0.1270356038E-02 2.205434250 0.1276857514E-02 2.207781280 0.1283309770E-02 2.210128310 0.1289713022E-02 2.212475341 0.1296067496E-02 2.214822371 0.1302373425E-02 2.217169402 0.1306778646E-02 2.219516432 0.1303862381E-02 2.221863462 0.1300951400E-02 2.224210493 0.1298046588E-02 2.226557523 0.1295148858E-02 2.228904554 0.1292259155E-02 2.231251584 0.1289378459E-02 2.233598614 0.1286507784E-02 2.235945645 0.1283648187E-02 2.238292675 0.1280800761E-02 2.240639706 0.1277966647E-02 2.242986736 0.1275147028E-02 2.245333766 0.1272343138E-02 2.247680797 0.1269556264E-02 2.250027827 0.1266787743E-02 2.252374857 0.1264038974E-02 2.254721888 0.1261311414E-02 2.257068918 0.1258606582E-02 2.259415949 0.1255926067E-02 2.261762979 0.1253271523E-02 2.264110009 0.1250644682E-02 2.266457040 0.1248047345E-02 2.268804070 0.1245481397E-02 2.271151101 0.1242948800E-02 2.273498131 0.1240451601E-02 2.275845161 0.1237991932E-02 2.278192192 0.1235572012E-02 2.280539222 0.1233194150E-02 2.282886253 0.1230860743E-02 2.285233283 0.1228574279E-02 2.287580313 0.1226337335E-02 2.289927344 0.1224152576E-02 2.292274374 0.1222022752E-02 2.294621405 0.1219950698E-02 2.296968435 0.1217939323E-02 2.299315465 0.1215991611E-02 2.301662496 0.1214110610E-02 2.304009526 0.1212299422E-02 2.306356557 0.1210561196E-02 2.308703587 0.1208899112E-02 2.311050617 0.1207316368E-02 2.313397648 0.1205816166E-02 2.315744678 0.1204401690E-02 2.318091708 0.1203076090E-02 2.320438739 0.1201842459E-02 2.322785769 0.1200703810E-02 2.325132800 0.1199663054E-02 2.327479830 0.1198722973E-02 2.329826860 0.1197886196E-02 2.332173891 0.1197155175E-02 2.334520921 0.1196532157E-02 2.336867952 0.1196019164E-02 2.339214982 0.1195617968E-02 2.341562012 0.1195330074E-02 2.343909043 0.1195156697E-02 2.346256073 0.1195098753E-02 0.000000000 0.1545687920E-02 0.2347351854E-02 0.1545667686E-02 0.4694703708E-02 0.1545607073E-02 0.7042055561E-02 0.1545506352E-02 0.9389407415E-02 0.1545365972E-02 0.1173675927E-01 0.1545186558E-02 0.1408411112E-01 0.1544968905E-02 0.1643146298E-01 0.1544713977E-02 0.1877881483E-01 0.1544422895E-02 0.2112616668E-01 0.1544096935E-02 0.2347351854E-01 0.1543737518E-02 0.2582087039E-01 0.1543346199E-02 0.2816822225E-01 0.1542924665E-02 0.3051557410E-01 0.1542474716E-02 0.3286292595E-01 0.1541998263E-02 0.3521027781E-01 0.1541497311E-02 0.3755762966E-01 0.1540973953E-02 0.3990498151E-01 0.1540430358E-02 0.4225233337E-01 0.1539868761E-02 0.4459968522E-01 0.1539291451E-02 0.4694703708E-01 0.1538700760E-02 0.4929438893E-01 0.1538099057E-02 0.5164174078E-01 0.1537488738E-02 0.5398909264E-01 0.1536872210E-02 0.5633644449E-01 0.1536251893E-02 0.5868379634E-01 0.1535630203E-02 0.6103114820E-01 0.1535009550E-02 0.6337850005E-01 0.1534392330E-02 0.6572585191E-01 0.1533780916E-02 0.6807320376E-01 0.1533177655E-02 0.7042055561E-01 0.1532584864E-02 0.7276790747E-01 0.1532004822E-02 0.7511525932E-01 0.1531439769E-02 0.7746261117E-01 0.1530891901E-02 0.7980996303E-01 0.1530363371E-02 0.8215731488E-01 0.1529856279E-02 0.8450466674E-01 0.1529372681E-02 0.8685201859E-01 0.1528914578E-02 0.8919937044E-01 0.1528483921E-02 0.9154672230E-01 0.1528082609E-02 0.9389407415E-01 0.1527712490E-02 0.9624142601E-01 0.1527375359E-02 0.9858877786E-01 0.1527072961E-02 0.1009361297 0.1526806994E-02 0.1032834816 0.1526579103E-02 0.1056308334 0.1526390890E-02 0.1079781853 0.1526243910E-02 0.1103255371 0.1526139676E-02 0.1126728890 0.1526079660E-02 0.1150202408 0.1526065294E-02 0.1173675927 0.1526097975E-02 0.1197149445 0.1526179063E-02 0.1220622964 0.1526309888E-02 0.1244096483 0.1526491751E-02 0.1267570001 0.1526725925E-02 0.1291043520 0.1527013659E-02 0.1314517038 0.1527356178E-02 0.1337990557 0.1527754690E-02 0.1361464075 0.1528210384E-02 0.1384937594 0.1528724433E-02 0.1408411112 0.1529298001E-02 0.1431884631 0.1529932236E-02 0.1455358149 0.1530628283E-02 0.1478831668 0.1531387276E-02 0.1502305186 0.1532210347E-02 0.1525778705 0.1533098624E-02 0.1549252223 0.1534053235E-02 0.1572725742 0.1535075305E-02 0.1596199261 0.1536165965E-02 0.1619672779 0.1537326346E-02 0.1643146298 0.1538557583E-02 0.1666619816 0.1539860816E-02 0.1690093335 0.1541237192E-02 0.1713566853 0.1542687861E-02 0.1737040372 0.1544213981E-02 0.1760513890 0.1545816715E-02 0.1783987409 0.1547497232E-02 0.1807460927 0.1549256709E-02 0.1830934446 0.1551096323E-02 0.1854407964 0.1553017260E-02 0.1877881483 0.1555020706E-02 0.1901355002 0.1557107848E-02 0.1924828520 0.1559279874E-02 0.1948302039 0.1561537967E-02 0.1971775557 0.1563883309E-02 0.1995249076 0.1566317070E-02 0.2018722594 0.1568840411E-02 0.2042196113 0.1571454480E-02 0.2065669631 0.1574160406E-02 0.2089143150 0.1576959297E-02 0.2112616668 0.1579852233E-02 0.2136090187 0.1582840266E-02 0.2159563705 0.1585924409E-02 0.2183037224 0.1589105638E-02 0.2206510743 0.1592384878E-02 0.2229984261 0.1595763005E-02 0.2253457780 0.1599240834E-02 0.2276931298 0.1602819115E-02 0.2300404817 0.1606498528E-02 0.2323878335 0.1610279673E-02 0.2347351854 0.1614163066E-02 0.2370825372 0.1618149132E-02 0.2394298891 0.1622238193E-02 0.2417772409 0.1626430469E-02 0.2441245928 0.1630726065E-02 0.2464719446 0.1635124968E-02 0.2488192965 0.1639627038E-02 0.2511666484 0.1644232002E-02 0.2535140002 0.1648939450E-02 0.2558613521 0.1653748827E-02 0.2582087039 0.1658659429E-02 0.2605560558 0.1663670399E-02 0.2629034076 0.1668780720E-02 0.2652507595 0.1673989217E-02 0.2675981113 0.1679294546E-02 0.2699454632 0.1684695199E-02 0.2722928150 0.1690189500E-02 0.2746401669 0.1691268974E-02 0.2769875187 0.1690529736E-02 0.2793348706 0.1689802439E-02 0.2816822225 0.1689087565E-02 0.2840295743 0.1688385607E-02 0.2863769262 0.1687697066E-02 0.2887242780 0.1687022454E-02 0.2910716299 0.1686362288E-02 0.2934189817 0.1685717099E-02 0.2957663336 0.1685087426E-02 0.2981136854 0.1684473818E-02 0.3004610373 0.1683876835E-02 0.3028083891 0.1683297049E-02 0.3051557410 0.1682735041E-02 0.3075030928 0.1682191405E-02 0.3098504447 0.1681666748E-02 0.3121977966 0.1681161687E-02 0.3145451484 0.1680676853E-02 0.3168925003 0.1680212890E-02 0.3192398521 0.1679770456E-02 0.3215872040 0.1679350220E-02 0.3239345558 0.1678952868E-02 0.3262819077 0.1678579100E-02 0.3286292595 0.1678229629E-02 0.3309766114 0.1677905187E-02 0.3333239632 0.1677606517E-02 0.3356713151 0.1677334381E-02 0.3380186669 0.1677089557E-02 0.3403660188 0.1676872839E-02 0.3427133707 0.1676685037E-02 0.3450607225 0.1676526981E-02 0.3474080744 0.1676399516E-02 0.3497554262 0.1676303506E-02 0.3521027781 0.1676239834E-02 0.3544501299 0.1676209399E-02 0.3567974818 0.1676213121E-02 0.3591448336 0.1676251938E-02 0.3614921855 0.1676326807E-02 0.3638395373 0.1676438702E-02 0.3661868892 0.1676588620E-02 0.3685342410 0.1676777574E-02 0.3708815929 0.1677006597E-02 0.3732289448 0.1677276740E-02 0.3755762966 0.1677589075E-02 0.3779236485 0.1677944691E-02 0.3802710003 0.1678344693E-02 0.3826183522 0.1678790208E-02 0.3849657040 0.1679282377E-02 0.3873130559 0.1679822358E-02 0.3896604077 0.1680411326E-02 0.3920077596 0.1681050469E-02 0.3943551114 0.1681740991E-02 0.3967024633 0.1682484106E-02 0.3990498151 0.1683281044E-02 0.4013971670 0.1684133040E-02 0.4037445189 0.1685041341E-02 0.4060918707 0.1686007199E-02 0.4084392226 0.1687031873E-02 0.4107865744 0.1688116622E-02 0.4131339263 0.1689262707E-02 0.4154812781 0.1690471389E-02 0.4178286300 0.1691743921E-02 0.4201759818 0.1693081552E-02 0.4225233337 0.1694485518E-02 0.4248706855 0.1695957044E-02 0.4272180374 0.1697497335E-02 0.4295653892 0.1699107580E-02 0.4319127411 0.1700788941E-02 0.4342600929 0.1702542552E-02 0.4366074448 0.1704369516E-02 0.4389547967 0.1706270900E-02 0.4413021485 0.1708247730E-02 0.4436495004 0.1710300987E-02 0.4459968522 0.1712431604E-02 0.4483442041 0.1714640459E-02 0.4506915559 0.1716928372E-02 0.4530389078 0.1719296098E-02 0.4553862596 0.1721744328E-02 0.4577336115 0.1724273678E-02 0.4600809633 0.1726884688E-02 0.4624283152 0.1729577816E-02 0.4647756670 0.1732353434E-02 0.4671230189 0.1735211827E-02 0.4694703708 0.1738153182E-02 0.4718177226 0.1741177590E-02 0.4741650745 0.1744285040E-02 0.4765124263 0.1747475416E-02 0.4788597782 0.1750748492E-02 0.4812071300 0.1754103931E-02 0.4835544819 0.1757541283E-02 0.4859018337 0.1761059977E-02 0.4882491856 0.1764659326E-02 0.4905965374 0.1768338516E-02 0.4929438893 0.1772096613E-02 0.4952912411 0.1775932555E-02 0.4976385930 0.1779845149E-02 0.4999859449 0.1783833076E-02 0.5023332967 0.1787894883E-02 0.5046806486 0.1792028981E-02 0.5070280004 0.1796233648E-02 0.5093753523 0.1800507022E-02 0.5117227041 0.1804847102E-02 0.5140700560 0.1809251743E-02 0.5164174078 0.1813718653E-02 0.5187647597 0.1818245392E-02 0.5211121115 0.1822829365E-02 0.5234594634 0.1827467820E-02 0.5258068152 0.1832157837E-02 0.5281541671 0.1836896330E-02 0.5305015190 0.1841680033E-02 0.5328488708 0.1846505491E-02 0.5351962227 0.1851369057E-02 0.5375435745 0.1856266871E-02 0.5398909264 0.1861194856E-02 0.5422382782 0.1866148696E-02 0.5445856301 0.1871123826E-02 0.5469329819 0.1876115407E-02 0.5492803338 0.1881118311E-02 0.5516276856 0.1886127094E-02 0.5539750375 0.1891135971E-02 0.5563223893 0.1896138789E-02 0.5586697412 0.1901128994E-02 0.5610170931 0.1906099602E-02 0.5633644449 0.1911043156E-02 0.5657117968 0.1915951692E-02 0.5680591486 0.1920816700E-02 0.5704065005 0.1925629077E-02 0.5727538523 0.1930379089E-02 0.5751012042 0.1935056324E-02 0.5774485560 0.1939649658E-02 0.5797959079 0.1944147215E-02 0.5821432597 0.1948536336E-02 0.5844906116 0.1952803568E-02 0.5868379634 0.1956934650E-02 0.5891853153 0.1960914535E-02 0.5915326672 0.1964727425E-02 0.5938800190 0.1968356845E-02 0.5962273709 0.1971785744E-02 0.5985747227 0.1974996653E-02 0.6009220746 0.1977971876E-02 0.6032694264 0.1980693745E-02 0.6056167783 0.1983144916E-02 0.6079641301 0.1985308718E-02 0.6103114820 0.1987169534E-02 0.6126588338 0.1988713212E-02 0.6150061857 0.1989927469E-02 0.6173535375 0.1990802281E-02 0.6197008894 0.1991330218E-02 0.6220482413 0.1991506712E-02 0.6243952716 0.1991522662E-02 0.6267423020 0.1991570502E-02 0.6290893324 0.1991650201E-02 0.6314363628 0.1991761708E-02 0.6337833932 0.1991904957E-02 0.6361304236 0.1992079860E-02 0.6384774540 0.1992286313E-02 0.6408244844 0.1992524195E-02 0.6431715148 0.1992793365E-02 0.6455185452 0.1993093665E-02 0.6478655756 0.1993424922E-02 0.6502126060 0.1993786942E-02 0.6525596364 0.1994179519E-02 0.6549066668 0.1994602428E-02 0.6572536971 0.1995055428E-02 0.6596007275 0.1995538264E-02 0.6619477579 0.1996050665E-02 0.6642947883 0.1996592345E-02 0.6666418187 0.1997163005E-02 0.6689888491 0.1997762331E-02 0.6713358795 0.1998389996E-02 0.6736829099 0.1999045662E-02 0.6760299403 0.1999728976E-02 0.6783769707 0.2000439574E-02 0.6807240011 0.2001177083E-02 0.6830710315 0.2001941115E-02 0.6854180619 0.2002731277E-02 0.6877650922 0.2003547161E-02 0.6901121226 0.2004388354E-02 0.6924591530 0.2005254431E-02 0.6948061834 0.2006144961E-02 0.6971532138 0.2007059506E-02 0.6995002442 0.2007997618E-02 0.7018472746 0.2008958844E-02 0.7041943050 0.2009942726E-02 0.7065413354 0.2010948798E-02 0.7088883658 0.2011976591E-02 0.7112353962 0.2013025629E-02 0.7135824266 0.2014095434E-02 0.7159294570 0.2015185522E-02 0.7182764874 0.2016295407E-02 0.7206235177 0.2017424601E-02 0.7229705481 0.2018572611E-02 0.7253175785 0.2019738944E-02 0.7276646089 0.2020923103E-02 0.7300116393 0.2022124591E-02 0.7323586697 0.2023342912E-02 0.7347057001 0.2024577564E-02 0.7370527305 0.2025828051E-02 0.7393997609 0.2027093871E-02 0.7417467913 0.2028374527E-02 0.7440938217 0.2029669519E-02 0.7464408521 0.2030978351E-02 0.7487878825 0.2032300526E-02 0.7511349128 0.2033635548E-02 0.7534819432 0.2034982924E-02 0.7558289736 0.2036342162E-02 0.7581760040 0.2037712773E-02 0.7605230344 0.2039094269E-02 0.7628700648 0.2040486165E-02 0.7652170952 0.2041887979E-02 0.7675641256 0.2043299232E-02 0.7699111560 0.2044719446E-02 0.7722581864 0.2046148148E-02 0.7746052168 0.2047584868E-02 0.7769522472 0.2049029139E-02 0.7792992776 0.2050480497E-02 0.7816463080 0.2051938484E-02 0.7839933383 0.2053402643E-02 0.7863403687 0.2054872522E-02 0.7886873991 0.2056347673E-02 0.7910344295 0.2057827653E-02 0.7933814599 0.2059312020E-02 0.7957284903 0.2060800339E-02 0.7980755207 0.2062292179E-02 0.8004225511 0.2063787113E-02 0.8027695815 0.2065284719E-02 0.8051166119 0.2066784576E-02 0.8074636423 0.2068286273E-02 0.8098106727 0.2069789400E-02 0.8121577031 0.2071293551E-02 0.8145047335 0.2072798328E-02 0.8168517638 0.2074303334E-02 0.8191987942 0.2075808180E-02 0.8215458246 0.2077312479E-02 0.8238928550 0.2078815849E-02 0.8262398854 0.2080317915E-02 0.8285869158 0.2081818305E-02 0.8309339462 0.2083316651E-02 0.8332809766 0.2084812592E-02 0.8356280070 0.2086305771E-02 0.8379750374 0.2087795834E-02 0.8403220678 0.2089282435E-02 0.8426690982 0.2090765230E-02 0.8450161286 0.2092243881E-02 0.8473631589 0.2093718055E-02 0.8497101893 0.2094475669E-02 0.8520572197 0.2094546678E-02 0.8544042501 0.2094618744E-02 0.8567512805 0.2094691850E-02 0.8590983109 0.2094765980E-02 0.8614453413 0.2094841115E-02 0.8637923717 0.2094917235E-02 0.8661394021 0.2094994321E-02 0.8684864325 0.2095072351E-02 0.8708334629 0.2095151304E-02 0.8731804933 0.2095231156E-02 0.8755275237 0.2095311882E-02 0.8778745541 0.2095393459E-02 0.8802215844 0.2095475861E-02 0.8825686148 0.2095559059E-02 0.8849156452 0.2095643028E-02 0.8872626756 0.2095727737E-02 0.8896097060 0.2095813157E-02 0.8919567364 0.2095899259E-02 0.8943037668 0.2095986011E-02 0.8966507972 0.2096073380E-02 0.8989978276 0.2096161335E-02 0.9013448580 0.2096249841E-02 0.9036918884 0.2096338864E-02 0.9060389188 0.2096428368E-02 0.9083859492 0.2096518319E-02 0.9107329796 0.2096608679E-02 0.9130800099 0.2096699411E-02 0.9154270403 0.2096790478E-02 0.9177740707 0.2096881840E-02 0.9201211011 0.2096973459E-02 0.9224681315 0.2097065295E-02 0.9248151619 0.2097157308E-02 0.9271621923 0.2097249456E-02 0.9295092227 0.2097341699E-02 0.9318562531 0.2097433995E-02 0.9342032835 0.2097526301E-02 0.9365503139 0.2097618576E-02 0.9388973443 0.2097710776E-02 0.9412443747 0.2097802857E-02 0.9435914050 0.2097894777E-02 0.9459384354 0.2097986491E-02 0.9482854658 0.2098077956E-02 0.9506324962 0.2098169126E-02 0.9529795266 0.2098259957E-02 0.9553265570 0.2098350405E-02 0.9576735874 0.2098440424E-02 0.9600206178 0.2098529970E-02 0.9623676482 0.2098618997E-02 0.9647146786 0.2098707462E-02 0.9670617090 0.2098795318E-02 0.9694087394 0.2098882520E-02 0.9717557698 0.2098969024E-02 0.9741028002 0.2099054786E-02 0.9764498305 0.2099139759E-02 0.9787968609 0.2099223901E-02 0.9811438913 0.2099307166E-02 0.9834909217 0.2099389511E-02 0.9858379521 0.2099470893E-02 0.9881849825 0.2099551266E-02 0.9905320129 0.2099630589E-02 0.9928790433 0.2099708820E-02 0.9952260737 0.2099785915E-02 0.9975731041 0.2099861832E-02 0.9999201345 0.2099936532E-02 1.002267165 0.2100009972E-02 1.004614195 0.2100082112E-02 1.006961226 0.2100152914E-02 1.009308256 0.2100222337E-02 1.011655286 0.2100290344E-02 1.014002317 0.2100356896E-02 1.016349347 0.2100421957E-02 1.018696378 0.2100485490E-02 1.021043408 0.2100547459E-02 1.023390438 0.2100607831E-02 1.025737469 0.2100666570E-02 1.028084499 0.2100723643E-02 1.030431530 0.2100779019E-02 1.032778560 0.2100832666E-02 1.035125590 0.2100884554E-02 1.037472621 0.2100934652E-02 1.039819651 0.2100982933E-02 1.042166682 0.2101029368E-02 1.044513712 0.2101073932E-02 1.046860742 0.2101116598E-02 1.049207773 0.2101157342E-02 1.051554803 0.2101196141E-02 1.053901834 0.2101232972E-02 1.056248864 0.2101267814E-02 1.058595894 0.2101300647E-02 1.060942925 0.2101331452E-02 1.063289955 0.2101360211E-02 1.065636985 0.2101386907E-02 1.067984016 0.2101411525E-02 1.070331046 0.2101434050E-02 1.072678077 0.2101454471E-02 1.075025107 0.2101472773E-02 1.077372137 0.2101488948E-02 1.079719168 0.2101502985E-02 1.082066198 0.2101514876E-02 1.084413229 0.2101524615E-02 1.086760259 0.2101532196E-02 1.089107289 0.2101537614E-02 1.091454320 0.2101540865E-02 1.093801350 0.2101541950E-02 1.096152861 0.2101576387E-02 1.098504372 0.2101679612E-02 1.100855883 0.2101851362E-02 1.103207394 0.2102091203E-02 1.105558905 0.2102398524E-02 1.107910415 0.2102772546E-02 1.110261926 0.2103212318E-02 1.112613437 0.2103716720E-02 1.114964948 0.2104284467E-02 1.117316459 0.2104914111E-02 1.119667970 0.2105604042E-02 1.122019481 0.2106352494E-02 1.124370992 0.2107157547E-02 1.126722503 0.2108017131E-02 1.129074013 0.2108929031E-02 1.131425524 0.2109890890E-02 1.133777035 0.2110900215E-02 1.136128546 0.2111954381E-02 1.138480057 0.2113050639E-02 1.140831568 0.2114186116E-02 1.143183079 0.2115357826E-02 1.145534590 0.2116562675E-02 1.147886101 0.2117797465E-02 1.150237611 0.2119058899E-02 1.152589122 0.2120343595E-02 1.154940633 0.2121648084E-02 1.157292144 0.2122968821E-02 1.159643655 0.2124302192E-02 1.161995166 0.2125644522E-02 1.164346677 0.2125930696E-02 1.166698188 0.2123137374E-02 1.169049699 0.2120323289E-02 1.171401209 0.2117490001E-02 1.173752720 0.2114638911E-02 1.176104231 0.2111771282E-02 1.178455742 0.2108888246E-02 1.180807253 0.2105990816E-02 1.183158764 0.2103079902E-02 1.185510275 0.2100156315E-02 1.187861786 0.2097220781E-02 1.190213296 0.2094273945E-02 1.192564807 0.2091316380E-02 1.194916318 0.2088348597E-02 1.197267829 0.2085371045E-02 1.199619340 0.2082384123E-02 1.201970851 0.2079388182E-02 1.204322362 0.2076383530E-02 1.206673873 0.2073370436E-02 1.209025384 0.2070349138E-02 1.211376894 0.2067319840E-02 1.213728405 0.2064282723E-02 1.216079916 0.2061237941E-02 1.218431427 0.2058185630E-02 1.220782938 0.2055125906E-02 1.223134449 0.2052058870E-02 1.225485960 0.2048984612E-02 1.227837471 0.2045903208E-02 1.230188982 0.2042814726E-02 1.232540492 0.2039719230E-02 1.234892003 0.2036616773E-02 1.237243514 0.2033507410E-02 1.239595025 0.2030391189E-02 1.241946536 0.2027268160E-02 1.244298047 0.2024138373E-02 1.246649558 0.2021001880E-02 1.249001069 0.2017858734E-02 1.251352580 0.2014708995E-02 1.253704090 0.2011552725E-02 1.256055601 0.2008389992E-02 1.258407112 0.2005220874E-02 1.260758623 0.2002045453E-02 1.263110134 0.1998863821E-02 1.265461645 0.1995676078E-02 1.267813156 0.1992482334E-02 1.270164667 0.1989282710E-02 1.272516177 0.1986077337E-02 1.274867688 0.1982866358E-02 1.277219199 0.1979649928E-02 1.279570710 0.1976428212E-02 1.281922221 0.1973201392E-02 1.284273732 0.1969969661E-02 1.286625243 0.1966733223E-02 1.288976754 0.1963492301E-02 1.291328265 0.1960247129E-02 1.293679775 0.1956997956E-02 1.296031286 0.1953745046E-02 1.298382797 0.1950488678E-02 1.300734308 0.1947229146E-02 1.303085819 0.1943966762E-02 1.305437330 0.1940701849E-02 1.307788841 0.1937434749E-02 1.310140352 0.1934165821E-02 1.312491863 0.1930895436E-02 1.314843373 0.1927623986E-02 1.317194884 0.1924351876E-02 1.319546395 0.1921079530E-02 1.321897906 0.1917807386E-02 1.324249417 0.1914535900E-02 1.326600928 0.1911265545E-02 1.328952439 0.1907996811E-02 1.331303950 0.1904730204E-02 1.333655461 0.1901466247E-02 1.336006971 0.1898205481E-02 1.338358482 0.1894948463E-02 1.340709993 0.1891695767E-02 1.343061504 0.1888447985E-02 1.345413015 0.1885205726E-02 1.347764526 0.1881969615E-02 1.350116037 0.1878740296E-02 1.352467548 0.1875518428E-02 1.354819059 0.1872304690E-02 1.357170569 0.1869099777E-02 1.359522080 0.1865904399E-02 1.361873591 0.1862719288E-02 1.364225102 0.1859545191E-02 1.366576613 0.1856382870E-02 1.368928124 0.1853233109E-02 1.371279635 0.1850096707E-02 1.373631146 0.1846974479E-02 1.375982656 0.1843867260E-02 1.378334167 0.1840775900E-02 1.380685678 0.1837701269E-02 1.383037189 0.1834644250E-02 1.385388700 0.1831605746E-02 1.387740211 0.1828586676E-02 1.390091722 0.1825587974E-02 1.392443233 0.1822610592E-02 1.394794744 0.1819655498E-02 1.397146254 0.1816723672E-02 1.399497765 0.1813816112E-02 1.401849276 0.1810933829E-02 1.404200787 0.1808077847E-02 1.406552298 0.1805249204E-02 1.408903809 0.1802448948E-02 1.411255320 0.1799678137E-02 1.413606831 0.1796937841E-02 1.415958342 0.1794229135E-02 1.418309852 0.1791553101E-02 1.420661363 0.1788910826E-02 1.423012874 0.1786303399E-02 1.425364385 0.1783731910E-02 1.427715896 0.1781197445E-02 1.430067407 0.1778701087E-02 1.432418918 0.1776243912E-02 1.434770429 0.1773826984E-02 1.437121940 0.1771451355E-02 1.439473450 0.1769118058E-02 1.441824961 0.1766828108E-02 1.444176472 0.1764582493E-02 1.446527983 0.1762382173E-02 1.448879494 0.1760228078E-02 1.451231005 0.1758121099E-02 1.453582516 0.1756062086E-02 1.455934027 0.1754051843E-02 1.458285537 0.1752091128E-02 1.460637048 0.1750180640E-02 1.462988559 0.1748321022E-02 1.465340070 0.1746512856E-02 1.467691581 0.1744756653E-02 1.470043092 0.1743052858E-02 1.472394603 0.1741401838E-02 1.474746114 0.1739803887E-02 1.477097625 0.1738259213E-02 1.479449135 0.1736767946E-02 1.481800646 0.1735330127E-02 1.484152157 0.1733945713E-02 1.486503668 0.1732384184E-02 1.488855179 0.1728449004E-02 1.491206690 0.1724560085E-02 1.493558201 0.1720717323E-02 1.495909712 0.1716920586E-02 1.498261223 0.1713169711E-02 1.500612733 0.1709464516E-02 1.502964244 0.1705804793E-02 1.505315755 0.1702190318E-02 1.507667266 0.1698620849E-02 1.510018777 0.1695096129E-02 1.512370288 0.1691615892E-02 1.514721799 0.1688179860E-02 1.517073310 0.1684787748E-02 1.519424821 0.1681439265E-02 1.521776331 0.1678134118E-02 1.524127842 0.1674872011E-02 1.526479353 0.1671652645E-02 1.528830864 0.1668475727E-02 1.531182375 0.1665340961E-02 1.533533886 0.1662248058E-02 1.535885397 0.1659196732E-02 1.538236908 0.1656186702E-02 1.540588418 0.1653217694E-02 1.542939929 0.1650289439E-02 1.545291440 0.1647401678E-02 1.547642951 0.1644554156E-02 1.549994462 0.1641746629E-02 1.552345973 0.1638978860E-02 1.554697484 0.1636250618E-02 1.557048995 0.1633561683E-02 1.559400506 0.1630911843E-02 1.561752016 0.1628300892E-02 1.564103527 0.1625728632E-02 1.566455038 0.1623194874E-02 1.568806549 0.1620699435E-02 1.571158060 0.1618242137E-02 1.573509571 0.1615822813E-02 1.575861082 0.1613441297E-02 1.578212593 0.1611097431E-02 1.580564104 0.1608791061E-02 1.582915614 0.1606522038E-02 1.585267125 0.1604290217E-02 1.587618636 0.1602095456E-02 1.589970147 0.1599937617E-02 1.592321658 0.1597816565E-02 1.594673169 0.1595732166E-02 1.597024680 0.1593684287E-02 1.599376191 0.1591672799E-02 1.601727702 0.1589697573E-02 1.604079212 0.1587758480E-02 1.606430723 0.1585855392E-02 1.608782234 0.1583988182E-02 1.611133745 0.1582156720E-02 1.613485256 0.1580360879E-02 1.615836767 0.1578600530E-02 1.618188278 0.1576875542E-02 1.620539789 0.1575185786E-02 1.622891299 0.1573531130E-02 1.625242810 0.1571911442E-02 1.627594321 0.1570326587E-02 1.629945832 0.1568776432E-02 1.632297343 0.1567260839E-02 1.634648854 0.1565779673E-02 1.637000365 0.1564332793E-02 1.639351876 0.1562920063E-02 1.641703387 0.1561541340E-02 1.644054897 0.1560196483E-02 1.646406408 0.1558885351E-02 1.648757919 0.1557607800E-02 1.651109430 0.1556363686E-02 1.653460941 0.1555152865E-02 1.655812452 0.1553975192E-02 1.658163963 0.1552830520E-02 1.660515474 0.1551718705E-02 1.662866985 0.1550639599E-02 1.665218495 0.1549593056E-02 1.667570006 0.1548578931E-02 1.669921517 0.1547597074E-02 1.672273028 0.1546647340E-02 1.674624539 0.1545729582E-02 1.676976050 0.1544843652E-02 1.679327561 0.1543989402E-02 1.681679072 0.1543166685E-02 1.684030583 0.1542375353E-02 1.686382093 0.1541615258E-02 1.688733604 0.1540886251E-02 1.691085115 0.1540188181E-02 1.693436626 0.1539520898E-02 1.695788137 0.1538884251E-02 1.698139648 0.1538278086E-02 1.700491159 0.1537702247E-02 1.702842670 0.1537156578E-02 1.705194180 0.1536640917E-02 1.707545691 0.1536155103E-02 1.709897202 0.1535698968E-02 1.712248713 0.1535272340E-02 1.714600224 0.1534875044E-02 1.716951735 0.1534506898E-02 1.719303246 0.1534167714E-02 1.721654757 0.1533857296E-02 1.724006268 0.1533575442E-02 1.726357778 0.1533321938E-02 1.728709289 0.1533096561E-02 1.731060800 0.1532899079E-02 1.733412311 0.1532729244E-02 1.735763822 0.1532586795E-02 1.738115333 0.1532471459E-02 1.740466844 0.1532382943E-02 1.742818355 0.1532320938E-02 1.745169866 0.1532285113E-02 1.747521376 0.1532275119E-02 1.749872887 0.1532290583E-02 1.752224398 0.1532331105E-02 1.754575909 0.1532396262E-02 1.756927420 0.1532485600E-02 1.759278931 0.1532598637E-02 1.761630442 0.1532734855E-02 1.763981953 0.1532893705E-02 1.766333464 0.1533074600E-02 1.768684974 0.1533276915E-02 1.771036485 0.1533499983E-02 1.773387996 0.1533743097E-02 1.775739507 0.1534005502E-02 1.778091018 0.1534286400E-02 1.780442529 0.1534584942E-02 1.782794040 0.1534900231E-02 1.785145551 0.1535231315E-02 1.787497061 0.1535577193E-02 1.789848572 0.1535936807E-02 1.792200083 0.1536309045E-02 1.794551594 0.1536692737E-02 1.796903105 0.1537086659E-02 1.799254616 0.1537489530E-02 1.801606127 0.1537900013E-02 1.803957638 0.1538316714E-02 1.806309149 0.1538738188E-02 1.808660659 0.1539162936E-02 1.811012170 0.1539589410E-02 1.813363681 0.1540016014E-02 1.815715192 0.1540441111E-02 1.818066703 0.1540863022E-02 1.820418214 0.1541280036E-02 1.822769725 0.1541690412E-02 1.825121236 0.1542092388E-02 1.827472747 0.1542484186E-02 1.829824257 0.1542864017E-02 1.832175768 0.1543230097E-02 1.834527279 0.1543580647E-02 1.836878790 0.1543913908E-02 1.839230301 0.1544228149E-02 1.841581812 0.1544521677E-02 1.843933323 0.1544792847E-02 1.846284834 0.1545040074E-02 1.848636345 0.1545261841E-02 1.850987855 0.1545456715E-02 1.853339366 0.1545623352E-02 1.855690877 0.1545760509E-02 1.858042388 0.1545867055E-02 1.860393899 0.1545941980E-02 1.862745410 0.1545984401E-02 1.865096921 0.1545993571E-02 1.867448432 0.1545968887E-02 1.869799942 0.1545909893E-02 1.872151453 0.1545816287E-02 1.874502964 0.1545687920E-02 1.876849995 0.1545918203E-02 1.879197025 0.1546127367E-02 1.881544055 0.1546315138E-02 1.883891086 0.1546481242E-02 1.886238116 0.1546625403E-02 1.888585147 0.1546747347E-02 1.890932177 0.1546846798E-02 1.893279207 0.1546923480E-02 1.895626238 0.1546977120E-02 1.897973268 0.1547007443E-02 1.900320299 0.1547014177E-02 1.902667329 0.1546997051E-02 1.905014359 0.1546955796E-02 1.907361390 0.1546890145E-02 1.909708420 0.1546799833E-02 1.912055451 0.1546684600E-02 1.914402481 0.1546544186E-02 1.916749511 0.1546378337E-02 1.919096542 0.1546186800E-02 1.921443572 0.1545969327E-02 1.923790603 0.1545725675E-02 1.926137633 0.1545455605E-02 1.928484663 0.1545158881E-02 1.930831694 0.1544835274E-02 1.933178724 0.1544484559E-02 1.935525754 0.1544106516E-02 1.937872785 0.1543700932E-02 1.940219815 0.1543267598E-02 1.942566846 0.1542806312E-02 1.944913876 0.1542316878E-02 1.947260906 0.1541799106E-02 1.949607937 0.1541252814E-02 1.951954967 0.1540677825E-02 1.954301998 0.1540073969E-02 1.956649028 0.1539441084E-02 1.958996058 0.1538779015E-02 1.961343089 0.1538087615E-02 1.963690119 0.1537366742E-02 1.966037150 0.1536616265E-02 1.968384180 0.1535836060E-02 1.970731210 0.1535026008E-02 1.973078241 0.1534186002E-02 1.975425271 0.1533315942E-02 1.977772302 0.1532415735E-02 1.980119332 0.1531485297E-02 1.982466362 0.1530524554E-02 1.984813393 0.1529533439E-02 1.987160423 0.1528511894E-02 1.989507454 0.1527459870E-02 1.991854484 0.1526377326E-02 1.994201514 0.1525264232E-02 1.996548545 0.1524120565E-02 1.998895575 0.1522946312E-02 2.001242605 0.1521741468E-02 2.003589636 0.1520506038E-02 2.005936666 0.1519240036E-02 2.008283697 0.1517943486E-02 2.010630727 0.1516616420E-02 2.012977757 0.1515258879E-02 2.015324788 0.1513870915E-02 2.017671818 0.1512452587E-02 2.020018849 0.1511003965E-02 2.022365879 0.1509525127E-02 2.024712909 0.1508016162E-02 2.027059940 0.1506477166E-02 2.029406970 0.1504908247E-02 2.031754001 0.1503309519E-02 2.034101031 0.1501681107E-02 2.036448061 0.1500023146E-02 2.038795092 0.1498335778E-02 2.041142122 0.1496619155E-02 2.043489153 0.1494873439E-02 2.045836183 0.1493098799E-02 2.048183213 0.1491295414E-02 2.050530244 0.1489463473E-02 2.052877274 0.1487603171E-02 2.055224304 0.1485714715E-02 2.057571335 0.1483798318E-02 2.059918365 0.1481854202E-02 2.062265396 0.1479882598E-02 2.064612426 0.1477883747E-02 2.066959456 0.1475857894E-02 2.069306487 0.1473805298E-02 2.071653517 0.1471726220E-02 2.074000548 0.1469620934E-02 2.076347578 0.1467489719E-02 2.078694608 0.1465332863E-02 2.081041639 0.1463150662E-02 2.083388669 0.1460943418E-02 2.085735700 0.1458711441E-02 2.088082730 0.1456455051E-02 2.090429760 0.1454174572E-02 2.092776791 0.1451870335E-02 2.095123821 0.1449542682E-02 2.097470852 0.1447191957E-02 2.099817882 0.1444818513E-02 2.102164912 0.1442422712E-02 2.104511943 0.1440004918E-02 2.106858973 0.1437565504E-02 2.109206004 0.1435104850E-02 2.111553034 0.1432623341E-02 2.113900064 0.1430121369E-02 2.116247095 0.1427599331E-02 2.118594125 0.1425057630E-02 2.120941155 0.1422496677E-02 2.123288186 0.1419916886E-02 2.125635216 0.1417318678E-02 2.127982247 0.1414702479E-02 2.130329277 0.1412068723E-02 2.132676307 0.1409417846E-02 2.135023338 0.1406750292E-02 2.137370368 0.1404066510E-02 2.139717399 0.1401366954E-02 2.142064429 0.1398652083E-02 2.144411459 0.1395922363E-02 2.146758490 0.1393178264E-02 2.149105520 0.1390420263E-02 2.151452551 0.1387648841E-02 2.153799581 0.1384864487E-02 2.156146611 0.1382067693E-02 2.158493642 0.1379258960E-02 2.160840672 0.1376438792E-02 2.163187703 0.1373607702E-02 2.165534733 0.1370766209E-02 2.167881763 0.1367914837E-02 2.170228794 0.1365054119E-02 2.172575824 0.1362184595E-02 2.174922855 0.1359306812E-02 2.177269885 0.1356421325E-02 2.179616915 0.1353528700E-02 2.181963946 0.1350629509E-02 2.184310976 0.1347724335E-02 2.186658006 0.1344813771E-02 2.189005037 0.1341898420E-02 2.191352067 0.1338978897E-02 2.193699098 0.1336055830E-02 2.196046128 0.1333129858E-02 2.198393158 0.1330201636E-02 2.200740189 0.1327271832E-02 2.203087219 0.1324341130E-02 2.205434250 0.1321410232E-02 2.207781280 0.1318479855E-02 2.210128310 0.1315550739E-02 2.212475341 0.1312623642E-02 2.214822371 0.1309699343E-02 2.217169402 0.1306778646E-02 2.219516432 0.1303862381E-02 2.221863462 0.1300951400E-02 2.224210493 0.1298046588E-02 2.226557523 0.1295148858E-02 2.228904554 0.1292259155E-02 2.231251584 0.1289378459E-02 2.233598614 0.1286507785E-02 2.235945645 0.1283648187E-02 2.238292675 0.1280800761E-02 2.240639706 0.1277966647E-02 2.242986736 0.1275147028E-02 2.245333766 0.1272343139E-02 2.247680797 0.1269556264E-02 2.250027827 0.1266787744E-02 2.252374857 0.1264038974E-02 2.254721888 0.1261311414E-02 2.257068918 0.1258606582E-02 2.259415949 0.1255926067E-02 2.261762979 0.1253271524E-02 2.264110009 0.1250644682E-02 2.266457040 0.1248047345E-02 2.268804070 0.1245481397E-02 2.271151101 0.1242948800E-02 2.273498131 0.1240451601E-02 2.275845161 0.1237991932E-02 2.278192192 0.1235572012E-02 2.280539222 0.1233194150E-02 2.282886253 0.1230860743E-02 2.285233283 0.1228574279E-02 2.287580313 0.1226337335E-02 2.289927344 0.1224152576E-02 2.292274374 0.1222022752E-02 2.294621405 0.1219950698E-02 2.296968435 0.1217939323E-02 2.299315465 0.1215991611E-02 2.301662496 0.1214110610E-02 2.304009526 0.1212299422E-02 2.306356557 0.1210561196E-02 2.308703587 0.1208899112E-02 2.311050617 0.1207316368E-02 2.313397648 0.1205816166E-02 2.315744678 0.1204401690E-02 2.318091708 0.1203076090E-02 2.320438739 0.1201842459E-02 2.322785769 0.1200703810E-02 2.325132800 0.1199663054E-02 2.327479830 0.1198722973E-02 2.329826860 0.1197886196E-02 2.332173891 0.1197155175E-02 2.334520921 0.1196532157E-02 2.336867952 0.1196019164E-02 2.339214982 0.1195617968E-02 2.341562012 0.1195330074E-02 2.343909043 0.1195156697E-02 2.346256073 0.1195098753E-02 0.000000000 0.1545687920E-02 0.2347351854E-02 0.1545716805E-02 0.4694703708E-02 0.1545803472E-02 0.7042055561E-02 0.1545947951E-02 0.9389407415E-02 0.1546150299E-02 0.1173675927E-01 0.1546410590E-02 0.1408411112E-01 0.1546728922E-02 0.1643146298E-01 0.1547105413E-02 0.1877881483E-01 0.1547540205E-02 0.2112616668E-01 0.1548033459E-02 0.2347351854E-01 0.1548585358E-02 0.2582087039E-01 0.1549196104E-02 0.2816822225E-01 0.1549865924E-02 0.3051557410E-01 0.1550595062E-02 0.3286292595E-01 0.1551383785E-02 0.3521027781E-01 0.1552232380E-02 0.3755762966E-01 0.1553141155E-02 0.3990498151E-01 0.1554110437E-02 0.4225233337E-01 0.1555140574E-02 0.4459968522E-01 0.1556231935E-02 0.4694703708E-01 0.1557384909E-02 0.4929438893E-01 0.1558599905E-02 0.5164174078E-01 0.1559877352E-02 0.5398909264E-01 0.1561217701E-02 0.5633644449E-01 0.1562621421E-02 0.5868379634E-01 0.1564089004E-02 0.6103114820E-01 0.1565620960E-02 0.6337850005E-01 0.1567217823E-02 0.6572585191E-01 0.1568880147E-02 0.6807320376E-01 0.1570608506E-02 0.7042055561E-01 0.1572403497E-02 0.7276790747E-01 0.1574265740E-02 0.7511525932E-01 0.1576195875E-02 0.7746261117E-01 0.1578194566E-02 0.7980996303E-01 0.1580262501E-02 0.8215731488E-01 0.1582400390E-02 0.8450466674E-01 0.1584608968E-02 0.8685201859E-01 0.1586888995E-02 0.8919937044E-01 0.1589241253E-02 0.9154672230E-01 0.1591666554E-02 0.9389407415E-01 0.1594165731E-02 0.9624142601E-01 0.1596739646E-02 0.9858877786E-01 0.1599389188E-02 0.1009361297 0.1602115271E-02 0.1032834816 0.1604918837E-02 0.1056308334 0.1607800857E-02 0.1079781853 0.1610762328E-02 0.1103255371 0.1613804276E-02 0.1126728890 0.1616927754E-02 0.1150202408 0.1620133845E-02 0.1173675927 0.1623423658E-02 0.1197149445 0.1626798330E-02 0.1220622964 0.1630259027E-02 0.1244096483 0.1633806938E-02 0.1267570001 0.1637443282E-02 0.1291043520 0.1641169300E-02 0.1314517038 0.1644986260E-02 0.1337990557 0.1648895451E-02 0.1361464075 0.1652898182E-02 0.1384937594 0.1656995785E-02 0.1408411112 0.1661189606E-02 0.1431884631 0.1665481009E-02 0.1455358149 0.1669871370E-02 0.1478831668 0.1674362073E-02 0.1502305186 0.1678954511E-02 0.1525778705 0.1683650080E-02 0.1549252223 0.1688450175E-02 0.1572725742 0.1693356187E-02 0.1596199261 0.1698369497E-02 0.1619672779 0.1703491474E-02 0.1643146298 0.1708723466E-02 0.1666619816 0.1714066800E-02 0.1690093335 0.1719522772E-02 0.1713566853 0.1725092640E-02 0.1737040372 0.1728525496E-02 0.1760513890 0.1727645219E-02 0.1783987409 0.1726761252E-02 0.1807460927 0.1725873884E-02 0.1830934446 0.1724983405E-02 0.1854407964 0.1724090110E-02 0.1877881483 0.1723194293E-02 0.1901355002 0.1722296255E-02 0.1924828520 0.1721396295E-02 0.1948302039 0.1720494720E-02 0.1971775557 0.1719591834E-02 0.1995249076 0.1718687949E-02 0.2018722594 0.1717783376E-02 0.2042196113 0.1716878432E-02 0.2065669631 0.1715973434E-02 0.2089143150 0.1715068705E-02 0.2112616668 0.1714164568E-02 0.2136090187 0.1713261353E-02 0.2159563705 0.1712359391E-02 0.2183037224 0.1711459016E-02 0.2206510743 0.1710560567E-02 0.2229984261 0.1709664386E-02 0.2253457780 0.1708770818E-02 0.2276931298 0.1707880214E-02 0.2300404817 0.1706992927E-02 0.2323878335 0.1706109314E-02 0.2347351854 0.1705229737E-02 0.2370825372 0.1704354564E-02 0.2394298891 0.1703484165E-02 0.2417772409 0.1702618915E-02 0.2441245928 0.1701759194E-02 0.2464719446 0.1700905389E-02 0.2488192965 0.1700057890E-02 0.2511666484 0.1699217092E-02 0.2535140002 0.1698383397E-02 0.2558613521 0.1697557212E-02 0.2582087039 0.1696738949E-02 0.2605560558 0.1695929029E-02 0.2629034076 0.1695127876E-02 0.2652507595 0.1694335922E-02 0.2675981113 0.1693553605E-02 0.2699454632 0.1692781372E-02 0.2722928150 0.1692019675E-02 0.2746401669 0.1695775601E-02 0.2769875187 0.1701451489E-02 0.2793348706 0.1707214978E-02 0.2816822225 0.1713063718E-02 0.2840295743 0.1718995192E-02 0.2863769262 0.1725006723E-02 0.2887242780 0.1731095472E-02 0.2910716299 0.1737258449E-02 0.2934189817 0.1743492512E-02 0.2957663336 0.1749794377E-02 0.2981136854 0.1756160621E-02 0.3004610373 0.1762587689E-02 0.3028083891 0.1769071901E-02 0.3051557410 0.1775609460E-02 0.3075030928 0.1782196460E-02 0.3098504447 0.1788828890E-02 0.3121977966 0.1795502648E-02 0.3145451484 0.1802213542E-02 0.3168925003 0.1808957306E-02 0.3192398521 0.1815729601E-02 0.3215872040 0.1822526028E-02 0.3239345558 0.1829342134E-02 0.3262819077 0.1836173419E-02 0.3286292595 0.1843015348E-02 0.3309766114 0.1849863353E-02 0.3333239632 0.1856712846E-02 0.3356713151 0.1863559223E-02 0.3380186669 0.1870397870E-02 0.3403660188 0.1877224175E-02 0.3427133707 0.1884033530E-02 0.3450607225 0.1890821339E-02 0.3474080744 0.1897583025E-02 0.3497554262 0.1904314033E-02 0.3521027781 0.1911009841E-02 0.3544501299 0.1917665962E-02 0.3567974818 0.1924277950E-02 0.3591448336 0.1930841404E-02 0.3614921855 0.1937351977E-02 0.3638395373 0.1943805377E-02 0.3661868892 0.1950197377E-02 0.3685342410 0.1956523811E-02 0.3708815929 0.1962780590E-02 0.3732289448 0.1968963696E-02 0.3755762966 0.1975069195E-02 0.3779236485 0.1981093236E-02 0.3802710003 0.1987032059E-02 0.3826183522 0.1992881996E-02 0.3849657040 0.1998639480E-02 0.3873130559 0.2004301045E-02 0.3896604077 0.2009863334E-02 0.3920077596 0.2015323101E-02 0.3943551114 0.2020677217E-02 0.3967024633 0.2025922672E-02 0.3990498151 0.2031056584E-02 0.4013971670 0.2036076197E-02 0.4037445189 0.2040978891E-02 0.4060918707 0.2045762184E-02 0.4084392226 0.2050423734E-02 0.4107865744 0.2054961347E-02 0.4131339263 0.2059372978E-02 0.4154812781 0.2063656735E-02 0.4178286300 0.2067810884E-02 0.4201759818 0.2071833852E-02 0.4225233337 0.2075724230E-02 0.4248706855 0.2079480774E-02 0.4272180374 0.2083102412E-02 0.4295653892 0.2086588241E-02 0.4319127411 0.2089937535E-02 0.4342600929 0.2093149742E-02 0.4366074448 0.2096224487E-02 0.4389547967 0.2099161575E-02 0.4413021485 0.2101960987E-02 0.4436495004 0.2104622885E-02 0.4459968522 0.2107147612E-02 0.4483442041 0.2109535685E-02 0.4506915559 0.2111787803E-02 0.4530389078 0.2113904837E-02 0.4553862596 0.2115887835E-02 0.4577336115 0.2117738017E-02 0.4600809633 0.2119456770E-02 0.4624283152 0.2121045649E-02 0.4647756670 0.2122506372E-02 0.4671230189 0.2123840813E-02 0.4694703708 0.2125051004E-02 0.4718177226 0.2126139123E-02 0.4741650745 0.2127107497E-02 0.4765124263 0.2127958588E-02 0.4788597782 0.2128694995E-02 0.4812071300 0.2129319444E-02 0.4835544819 0.2129834782E-02 0.4859018337 0.2130243975E-02 0.4882491856 0.2130550095E-02 0.4905965374 0.2130756317E-02 0.4929438893 0.2130865914E-02 0.4952912411 0.2130882245E-02 0.4976385930 0.2130808753E-02 0.4999859449 0.2130648956E-02 0.5023332967 0.2130406440E-02 0.5046806486 0.2130084852E-02 0.5070280004 0.2129687892E-02 0.5093753523 0.2129219309E-02 0.5117227041 0.2128682890E-02 0.5140700560 0.2128082457E-02 0.5164174078 0.2127421858E-02 0.5187647597 0.2126704960E-02 0.5211121115 0.2125935644E-02 0.5234594634 0.2125117799E-02 0.5258068152 0.2124255311E-02 0.5281541671 0.2123352063E-02 0.5305015190 0.2122411926E-02 0.5328488708 0.2121438751E-02 0.5351962227 0.2120436367E-02 0.5375435745 0.2119408574E-02 0.5398909264 0.2118359136E-02 0.5422382782 0.2117291777E-02 0.5445856301 0.2116210176E-02 0.5469329819 0.2115117963E-02 0.5492803338 0.2114018709E-02 0.5516276856 0.2112915928E-02 0.5539750375 0.2111813068E-02 0.5563223893 0.2110713508E-02 0.5586697412 0.2109620553E-02 0.5610170931 0.2108537433E-02 0.5633644449 0.2107467291E-02 0.5657117968 0.2106413190E-02 0.5680591486 0.2105378099E-02 0.5704065005 0.2104364898E-02 0.5727538523 0.2103376368E-02 0.5751012042 0.2102415191E-02 0.5774485560 0.2101483946E-02 0.5797959079 0.2100585105E-02 0.5821432597 0.2099721034E-02 0.5844906116 0.2098893983E-02 0.5868379634 0.2098106091E-02 0.5891853153 0.2097359379E-02 0.5915326672 0.2096655750E-02 0.5938800190 0.2095996983E-02 0.5962273709 0.2095384735E-02 0.5985747227 0.2094820539E-02 0.6009220746 0.2094305798E-02 0.6032694264 0.2093841788E-02 0.6056167783 0.2093429654E-02 0.6079641301 0.2093070411E-02 0.6103114820 0.2092764939E-02 0.6126588338 0.2092513986E-02 0.6150061857 0.2092318163E-02 0.6173535375 0.2092177949E-02 0.6197008894 0.2092093683E-02 0.6220482413 0.2092065572E-02 0.6243952716 0.2092065643E-02 0.6267423020 0.2092065857E-02 0.6290893324 0.2092066213E-02 0.6314363628 0.2092066715E-02 0.6337833932 0.2092067365E-02 0.6361304236 0.2092068165E-02 0.6384774540 0.2092069120E-02 0.6408244844 0.2092070234E-02 0.6431715148 0.2092071513E-02 0.6455185452 0.2092072963E-02 0.6478655756 0.2092074590E-02 0.6502126060 0.2092076401E-02 0.6525596364 0.2092078404E-02 0.6549066668 0.2092080609E-02 0.6572536971 0.2092083024E-02 0.6596007275 0.2092085659E-02 0.6619477579 0.2092088524E-02 0.6642947883 0.2092091631E-02 0.6666418187 0.2092094992E-02 0.6689888491 0.2092098618E-02 0.6713358795 0.2092102522E-02 0.6736829099 0.2092106718E-02 0.6760299403 0.2092111220E-02 0.6783769707 0.2092116041E-02 0.6807240011 0.2092121197E-02 0.6830710315 0.2092126702E-02 0.6854180619 0.2092132574E-02 0.6877650922 0.2092138827E-02 0.6901121226 0.2092145478E-02 0.6924591530 0.2092152545E-02 0.6948061834 0.2092160045E-02 0.6971532138 0.2092167994E-02 0.6995002442 0.2092176412E-02 0.7018472746 0.2092185315E-02 0.7041943050 0.2092194724E-02 0.7065413354 0.2092204656E-02 0.7088883658 0.2092215131E-02 0.7112353962 0.2092226167E-02 0.7135824266 0.2092237785E-02 0.7159294570 0.2092250002E-02 0.7182764874 0.2092262840E-02 0.7206235177 0.2092276317E-02 0.7229705481 0.2092290453E-02 0.7253175785 0.2092305268E-02 0.7276646089 0.2092320781E-02 0.7300116393 0.2092337013E-02 0.7323586697 0.2092353983E-02 0.7347057001 0.2092371710E-02 0.7370527305 0.2092390214E-02 0.7393997609 0.2092409514E-02 0.7417467913 0.2092429629E-02 0.7440938217 0.2092450578E-02 0.7464408521 0.2092472380E-02 0.7487878825 0.2092495054E-02 0.7511349128 0.2092518617E-02 0.7534819432 0.2092543087E-02 0.7558289736 0.2092568483E-02 0.7581760040 0.2092594820E-02 0.7605230344 0.2092622116E-02 0.7628700648 0.2092650388E-02 0.7652170952 0.2092679650E-02 0.7675641256 0.2092709919E-02 0.7699111560 0.2092741210E-02 0.7722581864 0.2092773536E-02 0.7746052168 0.2092806913E-02 0.7769522472 0.2092841353E-02 0.7792992776 0.2092876868E-02 0.7816463080 0.2092913472E-02 0.7839933383 0.2092951175E-02 0.7863403687 0.2092989989E-02 0.7886873991 0.2093029923E-02 0.7910344295 0.2093070987E-02 0.7933814599 0.2093113190E-02 0.7957284903 0.2093156539E-02 0.7980755207 0.2093201042E-02 0.8004225511 0.2093246705E-02 0.8027695815 0.2093293533E-02 0.8051166119 0.2093341532E-02 0.8074636423 0.2093390705E-02 0.8098106727 0.2093441056E-02 0.8121577031 0.2093492586E-02 0.8145047335 0.2093545296E-02 0.8168517638 0.2093599188E-02 0.8191987942 0.2093654261E-02 0.8215458246 0.2093710512E-02 0.8238928550 0.2093767941E-02 0.8262398854 0.2093826543E-02 0.8285869158 0.2093886314E-02 0.8309339462 0.2093947249E-02 0.8332809766 0.2094009341E-02 0.8356280070 0.2094072584E-02 0.8379750374 0.2094136969E-02 0.8403220678 0.2094202487E-02 0.8426690982 0.2094269127E-02 0.8450161286 0.2094336880E-02 0.8473631589 0.2094405731E-02 0.8497101893 0.2095187424E-02 0.8520572197 0.2096651665E-02 0.8544042501 0.2098110458E-02 0.8567512805 0.2099563489E-02 0.8590983109 0.2101010450E-02 0.8614453413 0.2102451036E-02 0.8637923717 0.2103884948E-02 0.8661394021 0.2105311890E-02 0.8684864325 0.2106731574E-02 0.8708334629 0.2108143713E-02 0.8731804933 0.2109548027E-02 0.8755275237 0.2110944240E-02 0.8778745541 0.2112332081E-02 0.8802215844 0.2113711284E-02 0.8825686148 0.2115081588E-02 0.8849156452 0.2116442734E-02 0.8872626756 0.2117794471E-02 0.8896097060 0.2119136551E-02 0.8919567364 0.2120468730E-02 0.8943037668 0.2121790770E-02 0.8966507972 0.2123102437E-02 0.8989978276 0.2124403502E-02 0.9013448580 0.2125693739E-02 0.9036918884 0.2126972927E-02 0.9060389188 0.2128240852E-02 0.9083859492 0.2129497300E-02 0.9107329796 0.2130742066E-02 0.9130800099 0.2131974945E-02 0.9154270403 0.2133195740E-02 0.9177740707 0.2134404256E-02 0.9201211011 0.2135600305E-02 0.9224681315 0.2136783699E-02 0.9248151619 0.2137954258E-02 0.9271621923 0.2139111805E-02 0.9295092227 0.2140256167E-02 0.9318562531 0.2141387174E-02 0.9342032835 0.2142504664E-02 0.9365503139 0.2143608474E-02 0.9388973443 0.2144698449E-02 0.9412443747 0.2145774437E-02 0.9435914050 0.2146836288E-02 0.9459384354 0.2147883858E-02 0.9482854658 0.2148917007E-02 0.9506324962 0.2149935598E-02 0.9529795266 0.2150939499E-02 0.9553265570 0.2151928580E-02 0.9576735874 0.2152902716E-02 0.9600206178 0.2153861785E-02 0.9623676482 0.2154805670E-02 0.9647146786 0.2155734256E-02 0.9670617090 0.2156647434E-02 0.9694087394 0.2157545095E-02 0.9717557698 0.2158427137E-02 0.9741028002 0.2159293460E-02 0.9764498305 0.2160143966E-02 0.9787968609 0.2160978563E-02 0.9811438913 0.2161797161E-02 0.9834909217 0.2162599674E-02 0.9858379521 0.2163386017E-02 0.9881849825 0.2164156112E-02 0.9905320129 0.2164909881E-02 0.9928790433 0.2165647250E-02 0.9952260737 0.2166368148E-02 0.9975731041 0.2167072508E-02 0.9999201345 0.2167760265E-02 1.002267165 0.2168431358E-02 1.004614195 0.2169085726E-02 1.006961226 0.2169723314E-02 1.009308256 0.2170344069E-02 1.011655286 0.2170947939E-02 1.014002317 0.2171534877E-02 1.016349347 0.2172104837E-02 1.018696378 0.2172657776E-02 1.021043408 0.2173193654E-02 1.023390438 0.2173712432E-02 1.025737469 0.2174214075E-02 1.028084499 0.2174698550E-02 1.030431530 0.2175165825E-02 1.032778560 0.2175615873E-02 1.035125590 0.2176048665E-02 1.037472621 0.2176464179E-02 1.039819651 0.2176862391E-02 1.042166682 0.2177243280E-02 1.044513712 0.2177606830E-02 1.046860742 0.2177953023E-02 1.049207773 0.2178281844E-02 1.051554803 0.2178593281E-02 1.053901834 0.2178887323E-02 1.056248864 0.2179163960E-02 1.058595894 0.2179423186E-02 1.060942925 0.2179664993E-02 1.063289955 0.2179889377E-02 1.065636985 0.2180096337E-02 1.067984016 0.2180285870E-02 1.070331046 0.2180457976E-02 1.072678077 0.2180612657E-02 1.075025107 0.2180749916E-02 1.077372137 0.2180869758E-02 1.079719168 0.2180972186E-02 1.082066198 0.2181057210E-02 1.084413229 0.2181124835E-02 1.086760259 0.2181175072E-02 1.089107289 0.2181207931E-02 1.091454320 0.2181223424E-02 1.093801350 0.2181221562E-02 1.096152861 0.2181137902E-02 1.098504372 0.2180874918E-02 1.100855883 0.2180434875E-02 1.103207394 0.2179821467E-02 1.105558905 0.2179039680E-02 1.107910415 0.2178095610E-02 1.110261926 0.2176996254E-02 1.112613437 0.2175749297E-02 1.114964948 0.2174362895E-02 1.117316459 0.2172845473E-02 1.119667970 0.2171205550E-02 1.122019481 0.2169451581E-02 1.124370992 0.2167591833E-02 1.126722503 0.2165634289E-02 1.129074013 0.2163586571E-02 1.131425524 0.2161455895E-02 1.133777035 0.2159249040E-02 1.136128546 0.2156972328E-02 1.138480057 0.2154631632E-02 1.140831568 0.2152232373E-02 1.143183079 0.2149779542E-02 1.145534590 0.2147277714E-02 1.147886101 0.2144731077E-02 1.150237611 0.2142143447E-02 1.152589122 0.2139518303E-02 1.154940633 0.2136858803E-02 1.157292144 0.2134167816E-02 1.159643655 0.2131447939E-02 1.161995166 0.2128701524E-02 1.164346677 0.2126992077E-02 1.166698188 0.2128341078E-02 1.169049699 0.2129687704E-02 1.171401209 0.2131028101E-02 1.173752720 0.2132358390E-02 1.176104231 0.2133674673E-02 1.178455742 0.2134973040E-02 1.180807253 0.2136249580E-02 1.183158764 0.2137500384E-02 1.185510275 0.2138721557E-02 1.187861786 0.2139909220E-02 1.190213296 0.2141059522E-02 1.192564807 0.2142168647E-02 1.194916318 0.2143232819E-02 1.197267829 0.2144248307E-02 1.199619340 0.2145211440E-02 1.201970851 0.2146118604E-02 1.204322362 0.2146966256E-02 1.206673873 0.2147750927E-02 1.209025384 0.2148469229E-02 1.211376894 0.2149117860E-02 1.213728405 0.2149693613E-02 1.216079916 0.2150193378E-02 1.218431427 0.2150614148E-02 1.220782938 0.2150953027E-02 1.223134449 0.2151207231E-02 1.225485960 0.2151374095E-02 1.227837471 0.2151451077E-02 1.230188982 0.2151435759E-02 1.232540492 0.2151325854E-02 1.234892003 0.2151119210E-02 1.237243514 0.2150813809E-02 1.239595025 0.2150407772E-02 1.241946536 0.2149899360E-02 1.244298047 0.2149286978E-02 1.246649558 0.2148569175E-02 1.249001069 0.2147744645E-02 1.251352580 0.2146812229E-02 1.253704090 0.2145770914E-02 1.256055601 0.2144619833E-02 1.258407112 0.2143358269E-02 1.260758623 0.2141985649E-02 1.263110134 0.2140501544E-02 1.265461645 0.2138905674E-02 1.267813156 0.2137197897E-02 1.270164667 0.2135378217E-02 1.272516177 0.2133446773E-02 1.274867688 0.2131403846E-02 1.277219199 0.2129249847E-02 1.279570710 0.2126985323E-02 1.281922221 0.2124610950E-02 1.284273732 0.2122127527E-02 1.286625243 0.2119535982E-02 1.288976754 0.2116837357E-02 1.291328265 0.2114032814E-02 1.293679775 0.2111123627E-02 1.296031286 0.2108111179E-02 1.298382797 0.2104996957E-02 1.300734308 0.2101782551E-02 1.303085819 0.2098469647E-02 1.305437330 0.2095060026E-02 1.307788841 0.2091555556E-02 1.310140352 0.2087958192E-02 1.312491863 0.2084269968E-02 1.314843373 0.2080492997E-02 1.317194884 0.2076629463E-02 1.319546395 0.2072681620E-02 1.321897906 0.2068651784E-02 1.324249417 0.2064542334E-02 1.326600928 0.2060355703E-02 1.328952439 0.2056094378E-02 1.331303950 0.2051760892E-02 1.333655461 0.2047357823E-02 1.336006971 0.2042887789E-02 1.338358482 0.2038353444E-02 1.340709993 0.2033757474E-02 1.343061504 0.2029102594E-02 1.345413015 0.2024391543E-02 1.347764526 0.2019627080E-02 1.350116037 0.2014811982E-02 1.352467548 0.2009949040E-02 1.354819059 0.2005041052E-02 1.357170569 0.2000090825E-02 1.359522080 0.1995101166E-02 1.361873591 0.1990074883E-02 1.364225102 0.1985014777E-02 1.366576613 0.1979923645E-02 1.368928124 0.1974804269E-02 1.371279635 0.1969659417E-02 1.373631146 0.1964491842E-02 1.375982656 0.1959304271E-02 1.378334167 0.1954099410E-02 1.380685678 0.1948879937E-02 1.383037189 0.1943648500E-02 1.385388700 0.1938407711E-02 1.387740211 0.1933160147E-02 1.390091722 0.1927908347E-02 1.392443233 0.1922654807E-02 1.394794744 0.1917401975E-02 1.397146254 0.1912152256E-02 1.399497765 0.1906908003E-02 1.401849276 0.1901671515E-02 1.404200787 0.1896445039E-02 1.406552298 0.1891230762E-02 1.408903809 0.1886030813E-02 1.411255320 0.1880847260E-02 1.413606831 0.1875682107E-02 1.415958342 0.1870537294E-02 1.418309852 0.1865414693E-02 1.420661363 0.1860316108E-02 1.423012874 0.1855243276E-02 1.425364385 0.1850197861E-02 1.427715896 0.1845181456E-02 1.430067407 0.1840195582E-02 1.432418918 0.1835241686E-02 1.434770429 0.1830321144E-02 1.437121940 0.1825435255E-02 1.439473450 0.1820585246E-02 1.441824961 0.1815772271E-02 1.444176472 0.1810997410E-02 1.446527983 0.1806261667E-02 1.448879494 0.1801565979E-02 1.451231005 0.1796911207E-02 1.453582516 0.1792298145E-02 1.455934027 0.1787727514E-02 1.458285537 0.1783199971E-02 1.460637048 0.1778716104E-02 1.462988559 0.1774276439E-02 1.465340070 0.1769881435E-02 1.467691581 0.1765531496E-02 1.470043092 0.1761226963E-02 1.472394603 0.1756968122E-02 1.474746114 0.1752755206E-02 1.477097625 0.1748588396E-02 1.479449135 0.1744467824E-02 1.481800646 0.1740393577E-02 1.484152157 0.1736365696E-02 1.486503668 0.1732614569E-02 1.488855179 0.1731336473E-02 1.491206690 0.1730111113E-02 1.493558201 0.1728938086E-02 1.495909712 0.1727816899E-02 1.498261223 0.1726746974E-02 1.500612733 0.1725727641E-02 1.502964244 0.1724758147E-02 1.505315755 0.1723837657E-02 1.507667266 0.1722965254E-02 1.510018777 0.1722139941E-02 1.512370288 0.1721360647E-02 1.514721799 0.1720626232E-02 1.517073310 0.1719935481E-02 1.519424821 0.1719287120E-02 1.521776331 0.1718679809E-02 1.524127842 0.1718112149E-02 1.526479353 0.1717582689E-02 1.528830864 0.1717089923E-02 1.531182375 0.1716632297E-02 1.533533886 0.1716208210E-02 1.535885397 0.1715816019E-02 1.538236908 0.1715454039E-02 1.540588418 0.1715120545E-02 1.542939929 0.1714813776E-02 1.545291440 0.1714531933E-02 1.547642951 0.1714273184E-02 1.549994462 0.1714035663E-02 1.552345973 0.1713817467E-02 1.554697484 0.1713616662E-02 1.557048995 0.1713431275E-02 1.559400506 0.1713259302E-02 1.561752016 0.1713098696E-02 1.564103527 0.1712947375E-02 1.566455038 0.1712803211E-02 1.568806549 0.1712664035E-02 1.571158060 0.1712527627E-02 1.573509571 0.1712391716E-02 1.575861082 0.1712253975E-02 1.578212593 0.1712112018E-02 1.580564104 0.1711963393E-02 1.582915614 0.1711805579E-02 1.585267125 0.1711635980E-02 1.587618636 0.1711451921E-02 1.589970147 0.1711250644E-02 1.592321658 0.1711029301E-02 1.594673169 0.1710784955E-02 1.597024680 0.1710514572E-02 1.599376191 0.1710215023E-02 1.601727702 0.1709883086E-02 1.604079212 0.1709515444E-02 1.606430723 0.1709108696E-02 1.608782234 0.1708659362E-02 1.611133745 0.1708163896E-02 1.613485256 0.1707618709E-02 1.615836767 0.1707020184E-02 1.618188278 0.1706364715E-02 1.620539789 0.1705648734E-02 1.622891299 0.1704868762E-02 1.625242810 0.1704021451E-02 1.627594321 0.1703103646E-02 1.629945832 0.1702112441E-02 1.632297343 0.1701045248E-02 1.634648854 0.1699899859E-02 1.637000365 0.1698674518E-02 1.639351876 0.1697367973E-02 1.641703387 0.1695979537E-02 1.644054897 0.1694509128E-02 1.646406408 0.1692957300E-02 1.648757919 0.1691325252E-02 1.651109430 0.1689614825E-02 1.653460941 0.1687828482E-02 1.655812452 0.1685969261E-02 1.658163963 0.1684040728E-02 1.660515474 0.1682046901E-02 1.662866985 0.1679992180E-02 1.665218495 0.1677881260E-02 1.667570006 0.1675719050E-02 1.669921517 0.1673510592E-02 1.672273028 0.1671260984E-02 1.674624539 0.1668975312E-02 1.676976050 0.1666658587E-02 1.679327561 0.1664315696E-02 1.681679072 0.1661951362E-02 1.684030583 0.1659570107E-02 1.686382093 0.1657176232E-02 1.688733604 0.1654773802E-02 1.691085115 0.1652366632E-02 1.693436626 0.1649958289E-02 1.695788137 0.1647552091E-02 1.698139648 0.1645151109E-02 1.700491159 0.1642758179E-02 1.702842670 0.1640375910E-02 1.705194180 0.1638006695E-02 1.707545691 0.1635652724E-02 1.709897202 0.1633315993E-02 1.712248713 0.1630998322E-02 1.714600224 0.1628701365E-02 1.716951735 0.1626426621E-02 1.719303246 0.1624175450E-02 1.721654757 0.1621949077E-02 1.724006268 0.1619748611E-02 1.726357778 0.1617575049E-02 1.728709289 0.1615429290E-02 1.731060800 0.1613312137E-02 1.733412311 0.1611224313E-02 1.735763822 0.1609166463E-02 1.738115333 0.1607139161E-02 1.740466844 0.1605142920E-02 1.742818355 0.1603178193E-02 1.745169866 0.1601245381E-02 1.747521376 0.1599344838E-02 1.749872887 0.1597476873E-02 1.752224398 0.1595641755E-02 1.754575909 0.1593839718E-02 1.756927420 0.1592070961E-02 1.759278931 0.1590335654E-02 1.761630442 0.1588633939E-02 1.763981953 0.1586965931E-02 1.766333464 0.1585331724E-02 1.768684974 0.1583731389E-02 1.771036485 0.1582164977E-02 1.773387996 0.1580632520E-02 1.775739507 0.1579134035E-02 1.778091018 0.1577669522E-02 1.780442529 0.1576238965E-02 1.782794040 0.1574842336E-02 1.785145551 0.1573479593E-02 1.787497061 0.1572150684E-02 1.789848572 0.1570855542E-02 1.792200083 0.1569594092E-02 1.794551594 0.1568366250E-02 1.796903105 0.1567171920E-02 1.799254616 0.1566010998E-02 1.801606127 0.1564883373E-02 1.803957638 0.1563788926E-02 1.806309149 0.1562727530E-02 1.808660659 0.1561699054E-02 1.811012170 0.1560703359E-02 1.813363681 0.1559740302E-02 1.815715192 0.1558809735E-02 1.818066703 0.1557911508E-02 1.820418214 0.1557045466E-02 1.822769725 0.1556211454E-02 1.825121236 0.1555409314E-02 1.827472747 0.1554638890E-02 1.829824257 0.1553900024E-02 1.832175768 0.1553192560E-02 1.834527279 0.1552516348E-02 1.836878790 0.1551871237E-02 1.839230301 0.1551257083E-02 1.841581812 0.1550673747E-02 1.843933323 0.1550121099E-02 1.846284834 0.1549599014E-02 1.848636345 0.1549107376E-02 1.850987855 0.1548646082E-02 1.853339366 0.1548215037E-02 1.855690877 0.1547814159E-02 1.858042388 0.1547443380E-02 1.860393899 0.1547102643E-02 1.862745410 0.1546791908E-02 1.865096921 0.1546511150E-02 1.867448432 0.1546260357E-02 1.869799942 0.1546039537E-02 1.872151453 0.1545848711E-02 1.874502964 0.1545687920E-02 1.876849995 0.1545918203E-02 1.879197025 0.1546127367E-02 1.881544055 0.1546315138E-02 1.883891086 0.1546481242E-02 1.886238116 0.1546625403E-02 1.888585147 0.1546747347E-02 1.890932177 0.1546846798E-02 1.893279207 0.1546923481E-02 1.895626238 0.1546977120E-02 1.897973268 0.1547007443E-02 1.900320299 0.1547014177E-02 1.902667329 0.1546997051E-02 1.905014359 0.1546955796E-02 1.907361390 0.1546890145E-02 1.909708420 0.1546799833E-02 1.912055451 0.1546684600E-02 1.914402481 0.1546544187E-02 1.916749511 0.1546378337E-02 1.919096542 0.1546186800E-02 1.921443572 0.1545969327E-02 1.923790603 0.1545725675E-02 1.926137633 0.1545455605E-02 1.928484663 0.1545158881E-02 1.930831694 0.1544835274E-02 1.933178724 0.1544484559E-02 1.935525754 0.1544106516E-02 1.937872785 0.1543700932E-02 1.940219815 0.1543267598E-02 1.942566846 0.1542806312E-02 1.944913876 0.1542316878E-02 1.947260906 0.1541799107E-02 1.949607937 0.1541252814E-02 1.951954967 0.1540677825E-02 1.954301998 0.1540073969E-02 1.956649028 0.1539441084E-02 1.958996058 0.1538779015E-02 1.961343089 0.1538087615E-02 1.963690119 0.1537366742E-02 1.966037150 0.1536616266E-02 1.968384180 0.1535836060E-02 1.970731210 0.1535026008E-02 1.973078241 0.1534186002E-02 1.975425271 0.1533315942E-02 1.977772302 0.1532415735E-02 1.980119332 0.1531485297E-02 1.982466362 0.1530524554E-02 1.984813393 0.1529533439E-02 1.987160423 0.1528511894E-02 1.989507454 0.1527459870E-02 1.991854484 0.1526377326E-02 1.994201514 0.1525264232E-02 1.996548545 0.1524120565E-02 1.998895575 0.1522946312E-02 2.001242605 0.1521741468E-02 2.003589636 0.1520506038E-02 2.005936666 0.1519240037E-02 2.008283697 0.1517943486E-02 2.010630727 0.1516616420E-02 2.012977757 0.1515258879E-02 2.015324788 0.1513870915E-02 2.017671818 0.1512452587E-02 2.020018849 0.1511003965E-02 2.022365879 0.1509525127E-02 2.024712909 0.1508016162E-02 2.027059940 0.1506477167E-02 2.029406970 0.1504908247E-02 2.031754001 0.1503309519E-02 2.034101031 0.1501681107E-02 2.036448061 0.1500023146E-02 2.038795092 0.1498335778E-02 2.041142122 0.1496619155E-02 2.043489153 0.1494873439E-02 2.045836183 0.1493098799E-02 2.048183213 0.1491295414E-02 2.050530244 0.1489463473E-02 2.052877274 0.1487603172E-02 2.055224304 0.1485714715E-02 2.057571335 0.1483798318E-02 2.059918365 0.1481854202E-02 2.062265396 0.1479882598E-02 2.064612426 0.1477883747E-02 2.066959456 0.1475857894E-02 2.069306487 0.1473805298E-02 2.071653517 0.1471726220E-02 2.074000548 0.1469620934E-02 2.076347578 0.1467489719E-02 2.078694608 0.1465332863E-02 2.081041639 0.1463150662E-02 2.083388669 0.1460943418E-02 2.085735700 0.1458711441E-02 2.088082730 0.1456455051E-02 2.090429760 0.1454174572E-02 2.092776791 0.1451870335E-02 2.095123821 0.1449542682E-02 2.097470852 0.1447191957E-02 2.099817882 0.1444818513E-02 2.102164912 0.1442422712E-02 2.104511943 0.1440004918E-02 2.106858973 0.1437565504E-02 2.109206004 0.1435104850E-02 2.111553034 0.1432623342E-02 2.113900064 0.1430121369E-02 2.116247095 0.1427599331E-02 2.118594125 0.1425057630E-02 2.120941155 0.1422496677E-02 2.123288186 0.1419916886E-02 2.125635216 0.1417318678E-02 2.127982247 0.1414702479E-02 2.130329277 0.1412068723E-02 2.132676307 0.1409417846E-02 2.135023338 0.1406750292E-02 2.137370368 0.1404066510E-02 2.139717399 0.1401366954E-02 2.142064429 0.1398652083E-02 2.144411459 0.1395922363E-02 2.146758490 0.1393178264E-02 2.149105520 0.1390420263E-02 2.151452551 0.1387648841E-02 2.153799581 0.1384864487E-02 2.156146611 0.1382067693E-02 2.158493642 0.1379258960E-02 2.160840672 0.1376438792E-02 2.163187703 0.1373607702E-02 2.165534733 0.1370766209E-02 2.167881763 0.1367914837E-02 2.170228794 0.1365054119E-02 2.172575824 0.1362184595E-02 2.174922855 0.1359306812E-02 2.177269885 0.1356421325E-02 2.179616915 0.1353528700E-02 2.181963946 0.1350629509E-02 2.184310976 0.1347724335E-02 2.186658006 0.1344813771E-02 2.189005037 0.1341898420E-02 2.191352067 0.1338978897E-02 2.193699098 0.1336055830E-02 2.196046128 0.1333129859E-02 2.198393158 0.1330201636E-02 2.200740189 0.1327271832E-02 2.203087219 0.1324341131E-02 2.205434250 0.1321410232E-02 2.207781280 0.1318479856E-02 2.210128310 0.1315550739E-02 2.212475341 0.1312623642E-02 2.214822371 0.1309699343E-02 2.217169402 0.1308631055E-02 2.219516432 0.1314840638E-02 2.221863462 0.1321002435E-02 2.224210493 0.1327116719E-02 2.226557523 0.1333183768E-02 2.228904554 0.1339203868E-02 2.231251584 0.1345177315E-02 2.233598614 0.1351104410E-02 2.235945645 0.1356985462E-02 2.238292675 0.1362820787E-02 2.240639706 0.1368610706E-02 2.242986736 0.1374355547E-02 2.245333766 0.1380055643E-02 2.247680797 0.1385711333E-02 2.250027827 0.1391322960E-02 2.252374857 0.1396890871E-02 2.254721888 0.1402415417E-02 2.257068918 0.1407896953E-02 2.259415949 0.1413335836E-02 2.261762979 0.1418732426E-02 2.264110009 0.1424087086E-02 2.266457040 0.1429400179E-02 2.268804070 0.1434672070E-02 2.271151101 0.1439903123E-02 2.273498131 0.1445093705E-02 2.275845161 0.1450244181E-02 2.278192192 0.1455354913E-02 2.280539222 0.1460426266E-02 2.282886253 0.1465458598E-02 2.285233283 0.1470452270E-02 2.287580313 0.1475407634E-02 2.289927344 0.1480325044E-02 2.292274374 0.1485204846E-02 2.294621405 0.1490047383E-02 2.296968435 0.1494852993E-02 2.299315465 0.1499622007E-02 2.301662496 0.1504354750E-02 2.304009526 0.1509051542E-02 2.306356557 0.1513712692E-02 2.308703587 0.1518338503E-02 2.311050617 0.1522929268E-02 2.313397648 0.1527485271E-02 2.315744678 0.1532006784E-02 2.318091708 0.1536494066E-02 2.320438739 0.1540947362E-02 2.322785769 0.1545366900E-02 2.325132800 0.1549752887E-02 2.327479830 0.1554105498E-02 2.329826860 0.1558424869E-02 2.332173891 0.1562711063E-02 2.334520921 0.1566964020E-02 2.336867952 0.1571183405E-02 2.339214982 0.1575368184E-02 2.341562012 0.1579514910E-02 2.343909043 0.1583605986E-02 2.346256073 0.1587002619E-02 0.000000000 0.1766814039E-02 0.2347351854E-02 0.1766805900E-02 0.4694703708E-02 0.1766781486E-02 0.7042055561E-02 0.1766740805E-02 0.9389407415E-02 0.1766683871E-02 0.1173675927E-01 0.1766610703E-02 0.1408411112E-01 0.1766521326E-02 0.1643146298E-01 0.1766415771E-02 0.1877881483E-01 0.1766294072E-02 0.2112616668E-01 0.1766156272E-02 0.2347351854E-01 0.1766002416E-02 0.2582087039E-01 0.1765832557E-02 0.2816822225E-01 0.1765646751E-02 0.3051557410E-01 0.1765445063E-02 0.3286292595E-01 0.1765227559E-02 0.3521027781E-01 0.1764994312E-02 0.3755762966E-01 0.1764745402E-02 0.3990498151E-01 0.1764480911E-02 0.4225233337E-01 0.1764200928E-02 0.4459968522E-01 0.1763905547E-02 0.4694703708E-01 0.1763594867E-02 0.4929438893E-01 0.1763268991E-02 0.5164174078E-01 0.1762928028E-02 0.5398909264E-01 0.1762572091E-02 0.5633644449E-01 0.1762201299E-02 0.5868379634E-01 0.1761815774E-02 0.6103114820E-01 0.1761415645E-02 0.6337850005E-01 0.1761001042E-02 0.6572585191E-01 0.1760572104E-02 0.6807320376E-01 0.1760128970E-02 0.7042055561E-01 0.1759671788E-02 0.7276790747E-01 0.1759200706E-02 0.7511525932E-01 0.1758715878E-02 0.7746261117E-01 0.1758217465E-02 0.7980996303E-01 0.1757705626E-02 0.8215731488E-01 0.1757180530E-02 0.8450466674E-01 0.1756642347E-02 0.8685201859E-01 0.1756091251E-02 0.8919937044E-01 0.1755527420E-02 0.9154672230E-01 0.1754951037E-02 0.9389407415E-01 0.1754362287E-02 0.9624142601E-01 0.1753761360E-02 0.9858877786E-01 0.1753148448E-02 0.1009361297 0.1752523747E-02 0.1032834816 0.1751887459E-02 0.1056308334 0.1751239785E-02 0.1079781853 0.1750580933E-02 0.1103255371 0.1749911111E-02 0.1126728890 0.1749230534E-02 0.1150202408 0.1748539416E-02 0.1173675927 0.1747837978E-02 0.1197149445 0.1747126440E-02 0.1220622964 0.1746405028E-02 0.1244096483 0.1745673970E-02 0.1267570001 0.1744933497E-02 0.1291043520 0.1744183841E-02 0.1314517038 0.1743425240E-02 0.1337990557 0.1742657932E-02 0.1361464075 0.1741882158E-02 0.1384937594 0.1741098164E-02 0.1408411112 0.1740306195E-02 0.1431884631 0.1739506502E-02 0.1455358149 0.1738699335E-02 0.1478831668 0.1737884950E-02 0.1502305186 0.1737063604E-02 0.1525778705 0.1736235555E-02 0.1549252223 0.1735401065E-02 0.1572725742 0.1734560399E-02 0.1596199261 0.1733713823E-02 0.1619672779 0.1732861607E-02 0.1643146298 0.1732004021E-02 0.1666619816 0.1731141339E-02 0.1690093335 0.1730273838E-02 0.1713566853 0.1729401797E-02 0.1737040372 0.1730777625E-02 0.1760513890 0.1736578897E-02 0.1783987409 0.1742497571E-02 0.1807460927 0.1748534703E-02 0.1830934446 0.1754691278E-02 0.1854407964 0.1760968209E-02 0.1877881483 0.1767366324E-02 0.1901355002 0.1773886364E-02 0.1924828520 0.1780528975E-02 0.1948302039 0.1787294700E-02 0.1971775557 0.1794183973E-02 0.1995249076 0.1801197114E-02 0.2018722594 0.1808334325E-02 0.2042196113 0.1815595678E-02 0.2065669631 0.1822981118E-02 0.2089143150 0.1830490454E-02 0.2112616668 0.1838123358E-02 0.2136090187 0.1845879359E-02 0.2159563705 0.1853757843E-02 0.2183037224 0.1861758051E-02 0.2206510743 0.1869879076E-02 0.2229984261 0.1878119867E-02 0.2253457780 0.1886479223E-02 0.2276931298 0.1894955803E-02 0.2300404817 0.1903548119E-02 0.2323878335 0.1912254545E-02 0.2347351854 0.1921073319E-02 0.2370825372 0.1930002546E-02 0.2394298891 0.1939040203E-02 0.2417772409 0.1948184146E-02 0.2441245928 0.1957432112E-02 0.2464719446 0.1966781730E-02 0.2488192965 0.1976230525E-02 0.2511666484 0.1985775925E-02 0.2535140002 0.1995415269E-02 0.2558613521 0.2005145812E-02 0.2582087039 0.2014964737E-02 0.2605560558 0.2024869160E-02 0.2629034076 0.2034856137E-02 0.2652507595 0.2044922671E-02 0.2675981113 0.2055065723E-02 0.2699454632 0.2065282215E-02 0.2722928150 0.2075569042E-02 0.2746401669 0.2085923072E-02 0.2769875187 0.2096341160E-02 0.2793348706 0.2106820148E-02 0.2816822225 0.2117356877E-02 0.2840295743 0.2127948188E-02 0.2863769262 0.2138590927E-02 0.2887242780 0.2149281954E-02 0.2910716299 0.2160018147E-02 0.2934189817 0.2170796401E-02 0.2957663336 0.2181613638E-02 0.2981136854 0.2192466808E-02 0.3004610373 0.2203352893E-02 0.3028083891 0.2214268908E-02 0.3051557410 0.2225211906E-02 0.3075030928 0.2236178980E-02 0.3098504447 0.2247167264E-02 0.3121977966 0.2258173935E-02 0.3145451484 0.2269196214E-02 0.3168925003 0.2280231369E-02 0.3192398521 0.2291276715E-02 0.3215872040 0.2302329615E-02 0.3239345558 0.2313387480E-02 0.3262819077 0.2324447770E-02 0.3286292595 0.2335507994E-02 0.3309766114 0.2346565713E-02 0.3333239632 0.2357618535E-02 0.3356713151 0.2368664117E-02 0.3380186669 0.2379700168E-02 0.3403660188 0.2390724445E-02 0.3427133707 0.2401734752E-02 0.3450607225 0.2412728943E-02 0.3474080744 0.2423704920E-02 0.3497554262 0.2434660631E-02 0.3521027781 0.2445594072E-02 0.3544501299 0.2456503284E-02 0.3567974818 0.2467386354E-02 0.3591448336 0.2478241414E-02 0.3614921855 0.2489066638E-02 0.3638395373 0.2499860246E-02 0.3661868892 0.2510620499E-02 0.3685342410 0.2521345700E-02 0.3708815929 0.2532034193E-02 0.3732289448 0.2542684362E-02 0.3755762966 0.2553294631E-02 0.3779236485 0.2563863464E-02 0.3802710003 0.2574389361E-02 0.3826183522 0.2584870861E-02 0.3849657040 0.2595306539E-02 0.3873130559 0.2605695006E-02 0.3896604077 0.2616034909E-02 0.3920077596 0.2626324930E-02 0.3943551114 0.2636563782E-02 0.3967024633 0.2646750217E-02 0.3990498151 0.2656883015E-02 0.4013971670 0.2666960991E-02 0.4037445189 0.2676982991E-02 0.4060918707 0.2686947891E-02 0.4084392226 0.2696854601E-02 0.4107865744 0.2706702057E-02 0.4131339263 0.2716489227E-02 0.4154812781 0.2726215109E-02 0.4178286300 0.2735878729E-02 0.4201759818 0.2745479140E-02 0.4225233337 0.2755015424E-02 0.4248706855 0.2753739840E-02 0.4272180374 0.2747912525E-02 0.4295653892 0.2742048355E-02 0.4319127411 0.2736147873E-02 0.4342600929 0.2730211637E-02 0.4366074448 0.2724240221E-02 0.4389547967 0.2718234218E-02 0.4413021485 0.2712194237E-02 0.4436495004 0.2706120902E-02 0.4459968522 0.2700014859E-02 0.4483442041 0.2693876770E-02 0.4506915559 0.2687707317E-02 0.4530389078 0.2681507204E-02 0.4553862596 0.2675277153E-02 0.4577336115 0.2669017909E-02 0.4600809633 0.2662730239E-02 0.4624283152 0.2656414933E-02 0.4647756670 0.2650072806E-02 0.4671230189 0.2643704698E-02 0.4694703708 0.2637311475E-02 0.4718177226 0.2630894032E-02 0.4741650745 0.2624453293E-02 0.4765124263 0.2617990211E-02 0.4788597782 0.2611505773E-02 0.4812071300 0.2605000999E-02 0.4835544819 0.2598476946E-02 0.4859018337 0.2591934708E-02 0.4882491856 0.2585375419E-02 0.4905965374 0.2578800258E-02 0.4929438893 0.2572210445E-02 0.4952912411 0.2565607252E-02 0.4976385930 0.2558992000E-02 0.4999859449 0.2552366067E-02 0.5023332967 0.2545730888E-02 0.5046806486 0.2539087961E-02 0.5070280004 0.2532438852E-02 0.5093753523 0.2525785197E-02 0.5117227041 0.2519128711E-02 0.5140700560 0.2512471193E-02 0.5164174078 0.2505814532E-02 0.5187647597 0.2499160713E-02 0.5211121115 0.2492511826E-02 0.5234594634 0.2485870074E-02 0.5258068152 0.2479237786E-02 0.5281541671 0.2472617419E-02 0.5305015190 0.2466011580E-02 0.5328488708 0.2459423031E-02 0.5351962227 0.2452854703E-02 0.5375435745 0.2446309717E-02 0.5398909264 0.2439791395E-02 0.5422382782 0.2433303279E-02 0.5445856301 0.2426849155E-02 0.5469329819 0.2420433070E-02 0.5492803338 0.2414059359E-02 0.5516276856 0.2407732672E-02 0.5539750375 0.2401457999E-02 0.5563223893 0.2395240705E-02 0.5586697412 0.2389086562E-02 0.5610170931 0.2383001784E-02 0.5633644449 0.2376993067E-02 0.5657117968 0.2371067629E-02 0.5680591486 0.2365233253E-02 0.5704065005 0.2359498330E-02 0.5727538523 0.2353871907E-02 0.5751012042 0.2348363723E-02 0.5774485560 0.2342984259E-02 0.5797959079 0.2337744770E-02 0.5821432597 0.2332657318E-02 0.5844906116 0.2327734791E-02 0.5868379634 0.2322990906E-02 0.5891853153 0.2318440202E-02 0.5915326672 0.2314097992E-02 0.5938800190 0.2309980303E-02 0.5962273709 0.2306103763E-02 0.5985747227 0.2302485455E-02 0.6009220746 0.2299142716E-02 0.6032694264 0.2296092893E-02 0.6056167783 0.2293353038E-02 0.6079641301 0.2290939567E-02 0.6103114820 0.2288867870E-02 0.6126588338 0.2287151913E-02 0.6150061857 0.2285803822E-02 0.6173535375 0.2284833501E-02 0.6197008894 0.2284248293E-02 0.6220482413 0.2284052716E-02 0.6243952716 0.2284109988E-02 0.6267423020 0.2284183198E-02 0.6290893324 0.2284272263E-02 0.6314363628 0.2284377086E-02 0.6337833932 0.2284497559E-02 0.6361304236 0.2284633565E-02 0.6384774540 0.2284784974E-02 0.6408244844 0.2284951646E-02 0.6431715148 0.2285133430E-02 0.6455185452 0.2285330165E-02 0.6478655756 0.2285541680E-02 0.6502126060 0.2285767793E-02 0.6525596364 0.2286008314E-02 0.6549066668 0.2286263041E-02 0.6572536971 0.2286531764E-02 0.6596007275 0.2286814264E-02 0.6619477579 0.2287110313E-02 0.6642947883 0.2287419674E-02 0.6666418187 0.2287742101E-02 0.6689888491 0.2288077340E-02 0.6713358795 0.2288425131E-02 0.6736829099 0.2288785204E-02 0.6760299403 0.2289157282E-02 0.6783769707 0.2289541082E-02 0.6807240011 0.2289936312E-02 0.6830710315 0.2290342675E-02 0.6854180619 0.2290759867E-02 0.6877650922 0.2291187579E-02 0.6901121226 0.2291625494E-02 0.6924591530 0.2292073291E-02 0.6948061834 0.2292530645E-02 0.6971532138 0.2292997222E-02 0.6995002442 0.2293472688E-02 0.7018472746 0.2293956701E-02 0.7041943050 0.2294448917E-02 0.7065413354 0.2294948987E-02 0.7088883658 0.2295456560E-02 0.7112353962 0.2295971279E-02 0.7135824266 0.2296492787E-02 0.7159294570 0.2297020723E-02 0.7182764874 0.2297554723E-02 0.7206235177 0.2298094422E-02 0.7229705481 0.2298639453E-02 0.7253175785 0.2299189448E-02 0.7276646089 0.2299744036E-02 0.7300116393 0.2300302848E-02 0.7323586697 0.2300865511E-02 0.7347057001 0.2301431654E-02 0.7370527305 0.2302000905E-02 0.7393997609 0.2302572893E-02 0.7417467913 0.2303147248E-02 0.7440938217 0.2303723599E-02 0.7464408521 0.2304301576E-02 0.7487878825 0.2304880814E-02 0.7511349128 0.2305460945E-02 0.7534819432 0.2306041605E-02 0.7558289736 0.2306622433E-02 0.7581760040 0.2307203070E-02 0.7605230344 0.2307783159E-02 0.7628700648 0.2308362346E-02 0.7652170952 0.2308940281E-02 0.7675641256 0.2309516617E-02 0.7699111560 0.2310091010E-02 0.7722581864 0.2310663123E-02 0.7746052168 0.2311232619E-02 0.7769522472 0.2311799169E-02 0.7792992776 0.2312362446E-02 0.7816463080 0.2312922130E-02 0.7839933383 0.2313477906E-02 0.7863403687 0.2314029462E-02 0.7886873991 0.2314576495E-02 0.7910344295 0.2315118706E-02 0.7933814599 0.2315655801E-02 0.7957284903 0.2316187494E-02 0.7980755207 0.2316713505E-02 0.8004225511 0.2317233560E-02 0.8027695815 0.2317747392E-02 0.8051166119 0.2318254741E-02 0.8074636423 0.2318755355E-02 0.8098106727 0.2319248986E-02 0.8121577031 0.2319735399E-02 0.8145047335 0.2320214360E-02 0.8168517638 0.2320685649E-02 0.8191987942 0.2321149049E-02 0.8215458246 0.2321604353E-02 0.8238928550 0.2322051362E-02 0.8262398854 0.2322489885E-02 0.8285869158 0.2322919740E-02 0.8309339462 0.2323340752E-02 0.8332809766 0.2323752757E-02 0.8356280070 0.2324155595E-02 0.8379750374 0.2324549120E-02 0.8403220678 0.2324933191E-02 0.8426690982 0.2325307678E-02 0.8450161286 0.2325672457E-02 0.8473631589 0.2326027418E-02 0.8497101893 0.2326372454E-02 0.8520572197 0.2326707471E-02 0.8544042501 0.2327032382E-02 0.8567512805 0.2327347111E-02 0.8590983109 0.2327651589E-02 0.8614453413 0.2327945758E-02 0.8637923717 0.2328229566E-02 0.8661394021 0.2328502974E-02 0.8684864325 0.2328765948E-02 0.8708334629 0.2329018467E-02 0.8731804933 0.2329260517E-02 0.8755275237 0.2329492091E-02 0.8778745541 0.2329713195E-02 0.8802215844 0.2329923840E-02 0.8825686148 0.2330124049E-02 0.8849156452 0.2330313851E-02 0.8872626756 0.2330493286E-02 0.8896097060 0.2330662401E-02 0.8919567364 0.2330821252E-02 0.8943037668 0.2330969904E-02 0.8966507972 0.2331108429E-02 0.8989978276 0.2331236907E-02 0.9013448580 0.2331355429E-02 0.9036918884 0.2331464091E-02 0.9060389188 0.2331562999E-02 0.9083859492 0.2331652264E-02 0.9107329796 0.2331732007E-02 0.9130800099 0.2331802356E-02 0.9154270403 0.2331863446E-02 0.9177740707 0.2331915418E-02 0.9201211011 0.2331958424E-02 0.9224681315 0.2331992618E-02 0.9248151619 0.2332018163E-02 0.9271621923 0.2332035229E-02 0.9295092227 0.2332043992E-02 0.9318562531 0.2332044633E-02 0.9342032835 0.2332037341E-02 0.9365503139 0.2332022309E-02 0.9388973443 0.2331999737E-02 0.9412443747 0.2331969829E-02 0.9435914050 0.2331932795E-02 0.9459384354 0.2331888850E-02 0.9482854658 0.2331838214E-02 0.9506324962 0.2331781112E-02 0.9529795266 0.2331717771E-02 0.9553265570 0.2331648426E-02 0.9576735874 0.2331573312E-02 0.9600206178 0.2331492669E-02 0.9623676482 0.2331406743E-02 0.9647146786 0.2331315779E-02 0.9670617090 0.2331220029E-02 0.9694087394 0.2331119743E-02 0.9717557698 0.2331015179E-02 0.9741028002 0.2330906592E-02 0.9764498305 0.2330794244E-02 0.9787968609 0.2330678394E-02 0.9811438913 0.2330559305E-02 0.9834909217 0.2330437242E-02 0.9858379521 0.2330312468E-02 0.9881849825 0.2330185250E-02 0.9905320129 0.2330055852E-02 0.9928790433 0.2329924542E-02 0.9952260737 0.2329791585E-02 0.9975731041 0.2329657247E-02 0.9999201345 0.2329521792E-02 1.002267165 0.2329385484E-02 1.004614195 0.2329248586E-02 1.006961226 0.2329111360E-02 1.009308256 0.2328974065E-02 1.011655286 0.2328836958E-02 1.014002317 0.2328700295E-02 1.016349347 0.2328564328E-02 1.018696378 0.2328429308E-02 1.021043408 0.2328295481E-02 1.023390438 0.2328163091E-02 1.025737469 0.2328032377E-02 1.028084499 0.2327903575E-02 1.030431530 0.2327776918E-02 1.032778560 0.2327652632E-02 1.035125590 0.2327530941E-02 1.037472621 0.2327412061E-02 1.039819651 0.2327296207E-02 1.042166682 0.2327183584E-02 1.044513712 0.2327074394E-02 1.046860742 0.2326968833E-02 1.049207773 0.2326867091E-02 1.051554803 0.2326769349E-02 1.053901834 0.2326675785E-02 1.056248864 0.2326586568E-02 1.058595894 0.2326501861E-02 1.060942925 0.2326421818E-02 1.063289955 0.2326346587E-02 1.065636985 0.2326276308E-02 1.067984016 0.2326211114E-02 1.070331046 0.2326151127E-02 1.072678077 0.2326096464E-02 1.075025107 0.2326047231E-02 1.077372137 0.2326003528E-02 1.079719168 0.2325965445E-02 1.082066198 0.2325933061E-02 1.084413229 0.2325906449E-02 1.086760259 0.2325885672E-02 1.089107289 0.2325870782E-02 1.091454320 0.2325861824E-02 1.093801350 0.2325858832E-02 1.096152861 0.2325963995E-02 1.098504372 0.2326278705E-02 1.100855883 0.2326800633E-02 1.103207394 0.2327525985E-02 1.105558905 0.2328449646E-02 1.107910415 0.2329565356E-02 1.110261926 0.2330865921E-02 1.112613437 0.2332343430E-02 1.114964948 0.2333989467E-02 1.117316459 0.2335795315E-02 1.119667970 0.2337752136E-02 1.122019481 0.2339851121E-02 1.124370992 0.2342083621E-02 1.126722503 0.2344441245E-02 1.129074013 0.2346915928E-02 1.131425524 0.2349499987E-02 1.133777035 0.2352186151E-02 1.136128546 0.2354967573E-02 1.138480057 0.2357837837E-02 1.140831568 0.2360790949E-02 1.143183079 0.2363821322E-02 1.145534590 0.2366923762E-02 1.147886101 0.2370093443E-02 1.150237611 0.2373325883E-02 1.152589122 0.2376616924E-02 1.154940633 0.2379962705E-02 1.157292144 0.2383359639E-02 1.159643655 0.2386804390E-02 1.161995166 0.2390293856E-02 1.164346677 0.2393825142E-02 1.166698188 0.2397395548E-02 1.169049699 0.2401002549E-02 1.171401209 0.2404643781E-02 1.173752720 0.2408317024E-02 1.176104231 0.2412020191E-02 1.178455742 0.2415751316E-02 1.180807253 0.2419508544E-02 1.183158764 0.2423290120E-02 1.185510275 0.2427094381E-02 1.187861786 0.2430919746E-02 1.190213296 0.2434764713E-02 1.192564807 0.2438627851E-02 1.194916318 0.2442507791E-02 1.197267829 0.2446403226E-02 1.199619340 0.2450312902E-02 1.201970851 0.2454235616E-02 1.204322362 0.2458170214E-02 1.206673873 0.2462115583E-02 1.209025384 0.2466070651E-02 1.211376894 0.2470034386E-02 1.213728405 0.2474005789E-02 1.216079916 0.2477983895E-02 1.218431427 0.2481967771E-02 1.220782938 0.2485956513E-02 1.223134449 0.2489949245E-02 1.225485960 0.2493945116E-02 1.227837471 0.2497943304E-02 1.230188982 0.2501943007E-02 1.232540492 0.2505943449E-02 1.234892003 0.2509943873E-02 1.237243514 0.2513943547E-02 1.239595025 0.2517941755E-02 1.241946536 0.2521937805E-02 1.244298047 0.2525931020E-02 1.246649558 0.2529920743E-02 1.249001069 0.2533906335E-02 1.251352580 0.2537887172E-02 1.253704090 0.2541862649E-02 1.256055601 0.2545832173E-02 1.258407112 0.2549795170E-02 1.260758623 0.2553751076E-02 1.263110134 0.2557699345E-02 1.265461645 0.2561639441E-02 1.267813156 0.2565570841E-02 1.270164667 0.2569493032E-02 1.272516177 0.2573405514E-02 1.274867688 0.2577307792E-02 1.277219199 0.2581199383E-02 1.279570710 0.2585079807E-02 1.281922221 0.2588948591E-02 1.284273732 0.2592805263E-02 1.286625243 0.2596649353E-02 1.288976754 0.2600480387E-02 1.291328265 0.2604297889E-02 1.293679775 0.2608101371E-02 1.296031286 0.2611890332E-02 1.298382797 0.2615664253E-02 1.300734308 0.2619422590E-02 1.303085819 0.2623164765E-02 1.305437330 0.2626890156E-02 1.307788841 0.2630598087E-02 1.310140352 0.2634287810E-02 1.312491863 0.2637958486E-02 1.314843373 0.2641609162E-02 1.317194884 0.2645238735E-02 1.319546395 0.2648845915E-02 1.321897906 0.2652429161E-02 1.324249417 0.2655986616E-02 1.326600928 0.2659515996E-02 1.328952439 0.2663014452E-02 1.331303950 0.2666478374E-02 1.333655461 0.2669903098E-02 1.336006971 0.2673282495E-02 1.338358482 0.2676608340E-02 1.340709993 0.2679869349E-02 1.343061504 0.2683049657E-02 1.345413015 0.2686126345E-02 1.347764526 0.2689065307E-02 1.350116037 0.2691814139E-02 1.352467548 0.2694289760E-02 1.354819059 0.2696357081E-02 1.357170569 0.2697795669E-02 1.359522080 0.2698264312E-02 1.361873591 0.2697322906E-02 1.364225102 0.2694620827E-02 1.366576613 0.2690169270E-02 1.368928124 0.2684329094E-02 1.371279635 0.2677534348E-02 1.373631146 0.2670116532E-02 1.375982656 0.2662289235E-02 1.378334167 0.2654183904E-02 1.380685678 0.2645882092E-02 1.383037189 0.2637435889E-02 1.385388700 0.2628879780E-02 1.387740211 0.2620237453E-02 1.390091722 0.2611525768E-02 1.392443233 0.2602757135E-02 1.394794744 0.2593940987E-02 1.397146254 0.2585084703E-02 1.399497765 0.2576194219E-02 1.401849276 0.2567274434E-02 1.404200787 0.2558329481E-02 1.406552298 0.2549362924E-02 1.408903809 0.2540377895E-02 1.411255320 0.2531377189E-02 1.413606831 0.2522363338E-02 1.415958342 0.2513338668E-02 1.418309852 0.2504305332E-02 1.420661363 0.2495265350E-02 1.423012874 0.2486220622E-02 1.425364385 0.2477172957E-02 1.427715896 0.2468124081E-02 1.430067407 0.2459075647E-02 1.432418918 0.2450029251E-02 1.434770429 0.2440986434E-02 1.437121940 0.2431948688E-02 1.439473450 0.2422917466E-02 1.441824961 0.2413894178E-02 1.444176472 0.2404880205E-02 1.446527983 0.2395876892E-02 1.448879494 0.2386885556E-02 1.451231005 0.2377907490E-02 1.453582516 0.2368943961E-02 1.455934027 0.2359996215E-02 1.458285537 0.2351065475E-02 1.460637048 0.2342152950E-02 1.462988559 0.2333259829E-02 1.465340070 0.2324387289E-02 1.467691581 0.2315536493E-02 1.470043092 0.2306708590E-02 1.472394603 0.2297904725E-02 1.474746114 0.2289126030E-02 1.477097625 0.2280373633E-02 1.479449135 0.2271648657E-02 1.481800646 0.2262952224E-02 1.484152157 0.2254285453E-02 1.486503668 0.2245649463E-02 1.488855179 0.2237045378E-02 1.491206690 0.2228474324E-02 1.493558201 0.2219937435E-02 1.495909712 0.2211435850E-02 1.498261223 0.2202970719E-02 1.500612733 0.2194543202E-02 1.502964244 0.2186154472E-02 1.505315755 0.2177805716E-02 1.507667266 0.2169498136E-02 1.510018777 0.2161232952E-02 1.512370288 0.2153011400E-02 1.514721799 0.2144834739E-02 1.517073310 0.2136704247E-02 1.519424821 0.2128621223E-02 1.521776331 0.2120586993E-02 1.524127842 0.2112602904E-02 1.526479353 0.2104670329E-02 1.528830864 0.2096790668E-02 1.531182375 0.2088965349E-02 1.533533886 0.2081195824E-02 1.535885397 0.2073483579E-02 1.538236908 0.2065830124E-02 1.540588418 0.2058237003E-02 1.542939929 0.2050705788E-02 1.545291440 0.2043238083E-02 1.547642951 0.2035835524E-02 1.549994462 0.2028499779E-02 1.552345973 0.2021232550E-02 1.554697484 0.2014035573E-02 1.557048995 0.2006910616E-02 1.559400506 0.1999859486E-02 1.561752016 0.1992884026E-02 1.564103527 0.1985986117E-02 1.566455038 0.1979167681E-02 1.568806549 0.1972430678E-02 1.571158060 0.1965777116E-02 1.573509571 0.1959209046E-02 1.575861082 0.1952728566E-02 1.578212593 0.1946337827E-02 1.580564104 0.1940039032E-02 1.582915614 0.1933834440E-02 1.585267125 0.1927726371E-02 1.587618636 0.1921717205E-02 1.589970147 0.1915809388E-02 1.592321658 0.1910005436E-02 1.594673169 0.1904307930E-02 1.597024680 0.1898719525E-02 1.599376191 0.1893242945E-02 1.601727702 0.1887880985E-02 1.604079212 0.1882636502E-02 1.606430723 0.1877512413E-02 1.608782234 0.1872511684E-02 1.611133745 0.1867637316E-02 1.613485256 0.1862892328E-02 1.615836767 0.1858279733E-02 1.618188278 0.1853802506E-02 1.620539789 0.1849463553E-02 1.622891299 0.1845265667E-02 1.625242810 0.1841211478E-02 1.627594321 0.1837303398E-02 1.629945832 0.1833543565E-02 1.632297343 0.1829933774E-02 1.634648854 0.1826475415E-02 1.637000365 0.1823169411E-02 1.639351876 0.1820016154E-02 1.641703387 0.1817015457E-02 1.644054897 0.1814166511E-02 1.646406408 0.1811467858E-02 1.648757919 0.1808917380E-02 1.651109430 0.1806512309E-02 1.653460941 0.1804249245E-02 1.655812452 0.1802124207E-02 1.658163963 0.1800132683E-02 1.660515474 0.1798269705E-02 1.662866985 0.1796529922E-02 1.665218495 0.1794907691E-02 1.667570006 0.1793397156E-02 1.669921517 0.1791992336E-02 1.672273028 0.1790687196E-02 1.674624539 0.1789475727E-02 1.676976050 0.1788352000E-02 1.679327561 0.1787310221E-02 1.681679072 0.1786344777E-02 1.684030583 0.1785450267E-02 1.686382093 0.1784621523E-02 1.688733604 0.1783853635E-02 1.691085115 0.1783141955E-02 1.693436626 0.1782482104E-02 1.695788137 0.1781869970E-02 1.698139648 0.1781301706E-02 1.700491159 0.1780773721E-02 1.702842670 0.1780282672E-02 1.705194180 0.1779825452E-02 1.707545691 0.1779399180E-02 1.709897202 0.1779001187E-02 1.712248713 0.1778629006E-02 1.714600224 0.1778280355E-02 1.716951735 0.1777953130E-02 1.719303246 0.1777645390E-02 1.721654757 0.1777355345E-02 1.724006268 0.1777081349E-02 1.726357778 0.1776821885E-02 1.728709289 0.1776575559E-02 1.731060800 0.1776341090E-02 1.733412311 0.1776117300E-02 1.735763822 0.1775903110E-02 1.738115333 0.1775697528E-02 1.740466844 0.1775499645E-02 1.742818355 0.1775308630E-02 1.745169866 0.1775123722E-02 1.747521376 0.1774944225E-02 1.749872887 0.1774769504E-02 1.752224398 0.1774598980E-02 1.754575909 0.1774432126E-02 1.756927420 0.1774268464E-02 1.759278931 0.1774107558E-02 1.761630442 0.1773949016E-02 1.763981953 0.1773792483E-02 1.766333464 0.1773637640E-02 1.768684974 0.1773484200E-02 1.771036485 0.1773331906E-02 1.773387996 0.1773180532E-02 1.775739507 0.1773029876E-02 1.778091018 0.1772879760E-02 1.780442529 0.1772730029E-02 1.782794040 0.1772580549E-02 1.785145551 0.1772431206E-02 1.787497061 0.1772281902E-02 1.789848572 0.1772132557E-02 1.792200083 0.1771983106E-02 1.794551594 0.1771833497E-02 1.796903105 0.1771683694E-02 1.799254616 0.1771533668E-02 1.801606127 0.1771383406E-02 1.803957638 0.1771232902E-02 1.806309149 0.1771082160E-02 1.808660659 0.1770931193E-02 1.811012170 0.1770780021E-02 1.813363681 0.1770628672E-02 1.815715192 0.1770477180E-02 1.818066703 0.1770325583E-02 1.820418214 0.1770173928E-02 1.822769725 0.1770022262E-02 1.825121236 0.1769870640E-02 1.827472747 0.1769719118E-02 1.829824257 0.1769567757E-02 1.832175768 0.1769416620E-02 1.834527279 0.1769265771E-02 1.836878790 0.1769115280E-02 1.839230301 0.1768965214E-02 1.841581812 0.1768815644E-02 1.843933323 0.1768666642E-02 1.846284834 0.1768518278E-02 1.848636345 0.1768370627E-02 1.850987855 0.1768223761E-02 1.853339366 0.1768077752E-02 1.855690877 0.1767932673E-02 1.858042388 0.1767788597E-02 1.860393899 0.1767645595E-02 1.862745410 0.1767503737E-02 1.865096921 0.1767363095E-02 1.867448432 0.1767223737E-02 1.869799942 0.1767085730E-02 1.872151453 0.1766949142E-02 1.874502964 0.1766814039E-02 1.876849995 0.1767048999E-02 1.879197025 0.1767309890E-02 1.881544055 0.1767596392E-02 1.883891086 0.1767908159E-02 1.886238116 0.1768244823E-02 1.888585147 0.1768605989E-02 1.890932177 0.1768991240E-02 1.893279207 0.1769400136E-02 1.895626238 0.1769832213E-02 1.897973268 0.1770286988E-02 1.900320299 0.1770763955E-02 1.902667329 0.1771262588E-02 1.905014359 0.1771782340E-02 1.907361390 0.1772322646E-02 1.909708420 0.1772882922E-02 1.912055451 0.1773462566E-02 1.914402481 0.1774060958E-02 1.916749511 0.1774677464E-02 1.919096542 0.1775311430E-02 1.921443572 0.1775962191E-02 1.923790603 0.1776629064E-02 1.926137633 0.1777311355E-02 1.928484663 0.1778008353E-02 1.930831694 0.1778719340E-02 1.933178724 0.1779443581E-02 1.935525754 0.1780180333E-02 1.937872785 0.1780928841E-02 1.940219815 0.1781688342E-02 1.942566846 0.1782458062E-02 1.944913876 0.1783237219E-02 1.947260906 0.1784025025E-02 1.949607937 0.1784820683E-02 1.951954967 0.1785623390E-02 1.954301998 0.1786432339E-02 1.956649028 0.1787246716E-02 1.958996058 0.1788065703E-02 1.961343089 0.1788888479E-02 1.963690119 0.1789714219E-02 1.966037150 0.1790542095E-02 1.968384180 0.1791371279E-02 1.970731210 0.1792200941E-02 1.973078241 0.1793030248E-02 1.975425271 0.1793858370E-02 1.977772302 0.1794684476E-02 1.980119332 0.1795507737E-02 1.982466362 0.1796327323E-02 1.984813393 0.1797142409E-02 1.987160423 0.1797952171E-02 1.989507454 0.1798755790E-02 1.991854484 0.1799552448E-02 1.994201514 0.1800341334E-02 1.996548545 0.1801121640E-02 1.998895575 0.1801892562E-02 2.001242605 0.1802653306E-02 2.003589636 0.1803403079E-02 2.005936666 0.1804141098E-02 2.008283697 0.1804866586E-02 2.010630727 0.1805578773E-02 2.012977757 0.1806276897E-02 2.015324788 0.1806960205E-02 2.017671818 0.1807627952E-02 2.020018849 0.1808279402E-02 2.022365879 0.1808913829E-02 2.024712909 0.1809530515E-02 2.027059940 0.1810128754E-02 2.029406970 0.1810707849E-02 2.031754001 0.1811267116E-02 2.034101031 0.1811805879E-02 2.036448061 0.1812323476E-02 2.038795092 0.1812819254E-02 2.041142122 0.1813292573E-02 2.043489153 0.1813742807E-02 2.045836183 0.1814169339E-02 2.048183213 0.1814571567E-02 2.050530244 0.1814948901E-02 2.052877274 0.1815300764E-02 2.055224304 0.1815626591E-02 2.057571335 0.1815925833E-02 2.059918365 0.1816197951E-02 2.062265396 0.1816442424E-02 2.064612426 0.1816658742E-02 2.066959456 0.1816846408E-02 2.069306487 0.1817004941E-02 2.071653517 0.1817133873E-02 2.074000548 0.1817232752E-02 2.076347578 0.1817301138E-02 2.078694608 0.1817338606E-02 2.081041639 0.1817344746E-02 2.083388669 0.1817319162E-02 2.085735700 0.1817261472E-02 2.088082730 0.1817171309E-02 2.090429760 0.1817048320E-02 2.092776791 0.1816892167E-02 2.095123821 0.1816702525E-02 2.097470852 0.1816479084E-02 2.099817882 0.1816221548E-02 2.102164912 0.1815929636E-02 2.104511943 0.1815603080E-02 2.106858973 0.1815241627E-02 2.109206004 0.1814845036E-02 2.111553034 0.1814413080E-02 2.113900064 0.1813945548E-02 2.116247095 0.1813442239E-02 2.118594125 0.1812902967E-02 2.120941155 0.1812327559E-02 2.123288186 0.1811715853E-02 2.125635216 0.1811067703E-02 2.127982247 0.1810382972E-02 2.130329277 0.1809661537E-02 2.132676307 0.1808903285E-02 2.135023338 0.1808108118E-02 2.137370368 0.1807275945E-02 2.139717399 0.1806406690E-02 2.142064429 0.1805500284E-02 2.144411459 0.1804556673E-02 2.146758490 0.1803575809E-02 2.149105520 0.1802557656E-02 2.151452551 0.1801502186E-02 2.153799581 0.1800409383E-02 2.156146611 0.1799279236E-02 2.158493642 0.1798111746E-02 2.160840672 0.1796906921E-02 2.163187703 0.1795664774E-02 2.165534733 0.1794385329E-02 2.167881763 0.1793068616E-02 2.170228794 0.1791714670E-02 2.172575824 0.1790323535E-02 2.174922855 0.1788895258E-02 2.177269885 0.1787429893E-02 2.179616915 0.1785927499E-02 2.181963946 0.1784388138E-02 2.184310976 0.1782811878E-02 2.186658006 0.1781198791E-02 2.189005037 0.1779548949E-02 2.191352067 0.1777862432E-02 2.193699098 0.1776139319E-02 2.196046128 0.1774379691E-02 2.198393158 0.1772583633E-02 2.200740189 0.1770751229E-02 2.203087219 0.1768882566E-02 2.205434250 0.1766977729E-02 2.207781280 0.1765036806E-02 2.210128310 0.1763059881E-02 2.212475341 0.1761047042E-02 2.214822371 0.1758998371E-02 2.217169402 0.1756913952E-02 2.219516432 0.1754793866E-02 2.221863462 0.1752638192E-02 2.224210493 0.1750447007E-02 2.226557523 0.1748220384E-02 2.228904554 0.1745958393E-02 2.231251584 0.1743661101E-02 2.233598614 0.1741328572E-02 2.235945645 0.1738960864E-02 2.238292675 0.1736558033E-02 2.240639706 0.1734120129E-02 2.242986736 0.1731647196E-02 2.245333766 0.1729139275E-02 2.247680797 0.1726596401E-02 2.250027827 0.1724018603E-02 2.252374857 0.1721405905E-02 2.254721888 0.1718758324E-02 2.257068918 0.1716075873E-02 2.259415949 0.1713358556E-02 2.261762979 0.1710606374E-02 2.264110009 0.1707819319E-02 2.266457040 0.1704997377E-02 2.268804070 0.1702140528E-02 2.271151101 0.1699248747E-02 2.273498131 0.1696321999E-02 2.275845161 0.1693360244E-02 2.278192192 0.1690363437E-02 2.280539222 0.1687331523E-02 2.282886253 0.1684264445E-02 2.285233283 0.1681162135E-02 2.287580313 0.1678024521E-02 2.289927344 0.1674851525E-02 2.292274374 0.1671643062E-02 2.294621405 0.1668399042E-02 2.296968435 0.1665119367E-02 2.299315465 0.1661803937E-02 2.301662496 0.1658452645E-02 2.304009526 0.1655065377E-02 2.306356557 0.1651642018E-02 2.308703587 0.1648182447E-02 2.311050617 0.1644686539E-02 2.313397648 0.1641154167E-02 2.315744678 0.1637585203E-02 2.318091708 0.1633979514E-02 2.320438739 0.1630336974E-02 2.322785769 0.1626657455E-02 2.325132800 0.1622940842E-02 2.327479830 0.1619187031E-02 2.329826860 0.1615395949E-02 2.332173891 0.1611567580E-02 2.334520921 0.1607702018E-02 2.336867952 0.1603799615E-02 2.339214982 0.1599861412E-02 2.341562012 0.1595890847E-02 2.343909043 0.1591905496E-02 2.346256073 0.1588544114E-02 0.000000000 0.2436086047E-02 0.2347351854E-02 0.2436189210E-02 0.4694703708E-02 0.2436498619E-02 0.7042055561E-02 0.2437014035E-02 0.9389407415E-02 0.2437735059E-02 0.1173675927E-01 0.2438661136E-02 0.1408411112E-01 0.2439791553E-02 0.1643146298E-01 0.2441125442E-02 0.1877881483E-01 0.2442661783E-02 0.2112616668E-01 0.2444399403E-02 0.2347351854E-01 0.2446336983E-02 0.2582087039E-01 0.2448473058E-02 0.2816822225E-01 0.2450806019E-02 0.3051557410E-01 0.2453334122E-02 0.3286292595E-01 0.2456055484E-02 0.3521027781E-01 0.2458968094E-02 0.3755762966E-01 0.2462069812E-02 0.3990498151E-01 0.2465358377E-02 0.4225233337E-01 0.2468831410E-02 0.4459968522E-01 0.2472486416E-02 0.4694703708E-01 0.2476320796E-02 0.4929438893E-01 0.2480331842E-02 0.5164174078E-01 0.2484516753E-02 0.5398909264E-01 0.2488872630E-02 0.5633644449E-01 0.2493396488E-02 0.5868379634E-01 0.2498085257E-02 0.6103114820E-01 0.2502935792E-02 0.6337850005E-01 0.2507944872E-02 0.6572585191E-01 0.2513109209E-02 0.6807320376E-01 0.2518425453E-02 0.7042055561E-01 0.2523890196E-02 0.7276790747E-01 0.2529499979E-02 0.7511525932E-01 0.2535251292E-02 0.7746261117E-01 0.2541140585E-02 0.7980996303E-01 0.2547164270E-02 0.8215731488E-01 0.2553318723E-02 0.8450466674E-01 0.2559600293E-02 0.8685201859E-01 0.2566005304E-02 0.8919937044E-01 0.2572530060E-02 0.9154672230E-01 0.2579170848E-02 0.9389407415E-01 0.2585923944E-02 0.9624142601E-01 0.2592785613E-02 0.9858877786E-01 0.2599752118E-02 0.1009361297 0.2606819720E-02 0.1032834816 0.2613984680E-02 0.1056308334 0.2621243269E-02 0.1079781853 0.2628591761E-02 0.1103255371 0.2636026445E-02 0.1126728890 0.2643543623E-02 0.1150202408 0.2651139615E-02 0.1173675927 0.2658810759E-02 0.1197149445 0.2666454242E-02 0.1220622964 0.2673617850E-02 0.1244096483 0.2680803436E-02 0.1267570001 0.2688007164E-02 0.1291043520 0.2695225271E-02 0.1314517038 0.2702454072E-02 0.1337990557 0.2709689958E-02 0.1361464075 0.2716929396E-02 0.1384937594 0.2724168928E-02 0.1408411112 0.2731405171E-02 0.1431884631 0.2738634818E-02 0.1455358149 0.2745854635E-02 0.1478831668 0.2753061464E-02 0.1502305186 0.2760252218E-02 0.1525778705 0.2767423884E-02 0.1549252223 0.2774573522E-02 0.1572725742 0.2781698263E-02 0.1596199261 0.2788795309E-02 0.1619672779 0.2795861934E-02 0.1643146298 0.2802895479E-02 0.1666619816 0.2809893357E-02 0.1690093335 0.2816853049E-02 0.1713566853 0.2823772103E-02 0.1737040372 0.2830648138E-02 0.1760513890 0.2837478836E-02 0.1783987409 0.2844261948E-02 0.1807460927 0.2850995289E-02 0.1830934446 0.2857676742E-02 0.1854407964 0.2864304254E-02 0.1877881483 0.2870875834E-02 0.1901355002 0.2877389560E-02 0.1924828520 0.2883843568E-02 0.1948302039 0.2890236062E-02 0.1971775557 0.2896565305E-02 0.1995249076 0.2902829625E-02 0.2018722594 0.2909027410E-02 0.2042196113 0.2915157113E-02 0.2065669631 0.2921217245E-02 0.2089143150 0.2927206378E-02 0.2112616668 0.2933123149E-02 0.2136090187 0.2938966251E-02 0.2159563705 0.2944734440E-02 0.2183037224 0.2950426531E-02 0.2206510743 0.2956041400E-02 0.2229984261 0.2961577983E-02 0.2253457780 0.2967035274E-02 0.2276931298 0.2972412329E-02 0.2300404817 0.2977708262E-02 0.2323878335 0.2982922247E-02 0.2347351854 0.2988053517E-02 0.2370825372 0.2993101365E-02 0.2394298891 0.2998065142E-02 0.2417772409 0.3002944261E-02 0.2441245928 0.3007738190E-02 0.2464719446 0.3012446462E-02 0.2488192965 0.3017068664E-02 0.2511666484 0.3021604444E-02 0.2535140002 0.3026053512E-02 0.2558613521 0.3030415635E-02 0.2582087039 0.3034690639E-02 0.2605560558 0.3038878410E-02 0.2629034076 0.3042978896E-02 0.2652507595 0.3046338683E-02 0.2675981113 0.3043605659E-02 0.2699454632 0.3040827021E-02 0.2722928150 0.3038002556E-02 0.2746401669 0.3035132058E-02 0.2769875187 0.3032215330E-02 0.2793348706 0.3029252187E-02 0.2816822225 0.3026242449E-02 0.2840295743 0.3023185947E-02 0.2863769262 0.3020082522E-02 0.2887242780 0.3016932024E-02 0.2910716299 0.3013734310E-02 0.2934189817 0.3010489250E-02 0.2957663336 0.3007196721E-02 0.2981136854 0.3003856611E-02 0.3004610373 0.3000468817E-02 0.3028083891 0.2997033244E-02 0.3051557410 0.2993549811E-02 0.3075030928 0.2990018443E-02 0.3098504447 0.2986439076E-02 0.3121977966 0.2982811656E-02 0.3145451484 0.2979136140E-02 0.3168925003 0.2975412493E-02 0.3192398521 0.2971640692E-02 0.3215872040 0.2967820723E-02 0.3239345558 0.2963952582E-02 0.3262819077 0.2960036277E-02 0.3286292595 0.2956071824E-02 0.3309766114 0.2952059250E-02 0.3333239632 0.2947998594E-02 0.3356713151 0.2943889902E-02 0.3380186669 0.2939733235E-02 0.3403660188 0.2935528660E-02 0.3427133707 0.2931276258E-02 0.3450607225 0.2926976119E-02 0.3474080744 0.2922628343E-02 0.3497554262 0.2918233042E-02 0.3521027781 0.2913790339E-02 0.3544501299 0.2909300366E-02 0.3567974818 0.2904763268E-02 0.3591448336 0.2900179199E-02 0.3614921855 0.2895548324E-02 0.3638395373 0.2890870822E-02 0.3661868892 0.2886146878E-02 0.3685342410 0.2881376693E-02 0.3708815929 0.2876560477E-02 0.3732289448 0.2871698450E-02 0.3755762966 0.2866790846E-02 0.3779236485 0.2861837908E-02 0.3802710003 0.2856839892E-02 0.3826183522 0.2851797065E-02 0.3849657040 0.2846709706E-02 0.3873130559 0.2841578105E-02 0.3896604077 0.2836402564E-02 0.3920077596 0.2831183398E-02 0.3943551114 0.2825920932E-02 0.3967024633 0.2820615505E-02 0.3990498151 0.2815267468E-02 0.4013971670 0.2809877184E-02 0.4037445189 0.2804445029E-02 0.4060918707 0.2798971390E-02 0.4084392226 0.2793456669E-02 0.4107865744 0.2787901281E-02 0.4131339263 0.2782305653E-02 0.4154812781 0.2776670227E-02 0.4178286300 0.2770995456E-02 0.4201759818 0.2765281811E-02 0.4225233337 0.2759529773E-02 0.4248706855 0.2764486692E-02 0.4272180374 0.2773892079E-02 0.4295653892 0.2783230749E-02 0.4319127411 0.2792501893E-02 0.4342600929 0.2801704725E-02 0.4366074448 0.2810838488E-02 0.4389547967 0.2819902449E-02 0.4413021485 0.2828895899E-02 0.4436495004 0.2837818156E-02 0.4459968522 0.2846668561E-02 0.4483442041 0.2855446479E-02 0.4506915559 0.2864151299E-02 0.4530389078 0.2872782436E-02 0.4553862596 0.2881339323E-02 0.4577336115 0.2889821422E-02 0.4600809633 0.2898228214E-02 0.4624283152 0.2906559202E-02 0.4647756670 0.2914813914E-02 0.4671230189 0.2922991897E-02 0.4694703708 0.2931092721E-02 0.4718177226 0.2939115977E-02 0.4741650745 0.2947061275E-02 0.4765124263 0.2954928249E-02 0.4788597782 0.2962716549E-02 0.4812071300 0.2970425846E-02 0.4835544819 0.2978055832E-02 0.4859018337 0.2985606214E-02 0.4882491856 0.2993076720E-02 0.4905965374 0.3000467093E-02 0.4929438893 0.3007777095E-02 0.4952912411 0.3015006502E-02 0.4976385930 0.3022155108E-02 0.4999859449 0.3029222717E-02 0.5023332967 0.3036209151E-02 0.5046806486 0.3043114242E-02 0.5070280004 0.3049937833E-02 0.5093753523 0.3056679777E-02 0.5117227041 0.3063339937E-02 0.5140700560 0.3069918180E-02 0.5164174078 0.3076414381E-02 0.5187647597 0.3082828416E-02 0.5211121115 0.3089160162E-02 0.5234594634 0.3095409494E-02 0.5258068152 0.3101576283E-02 0.5281541671 0.3107660390E-02 0.5305015190 0.3113661668E-02 0.5328488708 0.3119579950E-02 0.5351962227 0.3125415051E-02 0.5375435745 0.3131166758E-02 0.5398909264 0.3136834828E-02 0.5422382782 0.3142418977E-02 0.5445856301 0.3147918873E-02 0.5469329819 0.3153334130E-02 0.5492803338 0.3158664293E-02 0.5516276856 0.3163908827E-02 0.5539750375 0.3169067102E-02 0.5563223893 0.3174138378E-02 0.5586697412 0.3179121784E-02 0.5610170931 0.3184016297E-02 0.5633644449 0.3188820710E-02 0.5657117968 0.3193533608E-02 0.5680591486 0.3198153323E-02 0.5704065005 0.3202677896E-02 0.5727538523 0.3207105022E-02 0.5751012042 0.3211431988E-02 0.5774485560 0.3215655604E-02 0.5797959079 0.3219772110E-02 0.5821432597 0.3223777080E-02 0.5844906116 0.3227665301E-02 0.5868379634 0.3231430633E-02 0.5891853153 0.3235065847E-02 0.5915326672 0.3238562447E-02 0.5938800190 0.3241910469E-02 0.5962273709 0.3245098267E-02 0.5985747227 0.3248112305E-02 0.6009220746 0.3250936977E-02 0.6032694264 0.3253554491E-02 0.6056167783 0.3255944878E-02 0.6079641301 0.3258086206E-02 0.6103114820 0.3259955081E-02 0.6126588338 0.3261527515E-02 0.6150061857 0.3262780211E-02 0.6173535375 0.3263692208E-02 0.6197008894 0.3264246710E-02 0.6220482413 0.3264432806E-02 0.6243952716 0.3264434723E-02 0.6267423020 0.3264440475E-02 0.6290893324 0.3264450063E-02 0.6314363628 0.3264463492E-02 0.6337833932 0.3264480768E-02 0.6361304236 0.3264501901E-02 0.6384774540 0.3264526901E-02 0.6408244844 0.3264555782E-02 0.6431715148 0.3264588558E-02 0.6455185452 0.3264625250E-02 0.6478655756 0.3264665875E-02 0.6502126060 0.3264710457E-02 0.6525596364 0.3264759019E-02 0.6549066668 0.3264811589E-02 0.6572536971 0.3264868195E-02 0.6596007275 0.3264928867E-02 0.6619477579 0.3264993638E-02 0.6642947883 0.3265062542E-02 0.6666418187 0.3265135616E-02 0.6689888491 0.3265212898E-02 0.6713358795 0.3265294427E-02 0.6736829099 0.3265380246E-02 0.6760299403 0.3265470397E-02 0.6783769707 0.3265564926E-02 0.6807240011 0.3265663879E-02 0.6830710315 0.3265767303E-02 0.6854180619 0.3265875248E-02 0.6877650922 0.3265987765E-02 0.6901121226 0.3266104904E-02 0.6924591530 0.3266226718E-02 0.6948061834 0.3266353262E-02 0.6971532138 0.3266099582E-02 0.6995002442 0.3265552624E-02 0.7018472746 0.3264991865E-02 0.7041943050 0.3264417658E-02 0.7065413354 0.3263830369E-02 0.7088883658 0.3263230366E-02 0.7112353962 0.3262618031E-02 0.7135824266 0.3261993748E-02 0.7159294570 0.3261357912E-02 0.7182764874 0.3260710923E-02 0.7206235177 0.3260053188E-02 0.7229705481 0.3259385119E-02 0.7253175785 0.3258707135E-02 0.7276646089 0.3258019660E-02 0.7300116393 0.3257323122E-02 0.7323586697 0.3256617955E-02 0.7347057001 0.3255904597E-02 0.7370527305 0.3255183489E-02 0.7393997609 0.3254455075E-02 0.7417467913 0.3253719805E-02 0.7440938217 0.3252978129E-02 0.7464408521 0.3252230499E-02 0.7487878825 0.3251477372E-02 0.7511349128 0.3250719202E-02 0.7534819432 0.3249956449E-02 0.7558289736 0.3249189570E-02 0.7581760040 0.3248419023E-02 0.7605230344 0.3247645268E-02 0.7628700648 0.3246868763E-02 0.7652170952 0.3246089964E-02 0.7675641256 0.3245309327E-02 0.7699111560 0.3244527306E-02 0.7722581864 0.3243744355E-02 0.7746052168 0.3242960922E-02 0.7769522472 0.3242177454E-02 0.7792992776 0.3241394394E-02 0.7816463080 0.3240612183E-02 0.7839933383 0.3239831257E-02 0.7863403687 0.3239052046E-02 0.7886873991 0.3238274979E-02 0.7910344295 0.3237500475E-02 0.7933814599 0.3236728953E-02 0.7957284903 0.3235960822E-02 0.7980755207 0.3235196485E-02 0.8004225511 0.3234436342E-02 0.8027695815 0.3233680783E-02 0.8051166119 0.3232930192E-02 0.8074636423 0.3232184944E-02 0.8098106727 0.3231445409E-02 0.8121577031 0.3230711946E-02 0.8145047335 0.3229984908E-02 0.8168517638 0.3229264639E-02 0.8191987942 0.3228551472E-02 0.8215458246 0.3227845733E-02 0.8238928550 0.3227147738E-02 0.8262398854 0.3226457794E-02 0.8285869158 0.3225776195E-02 0.8309339462 0.3225103230E-02 0.8332809766 0.3224439174E-02 0.8356280070 0.3223784291E-02 0.8379750374 0.3223138838E-02 0.8403220678 0.3222503058E-02 0.8426690982 0.3221877184E-02 0.8450161286 0.3221261438E-02 0.8473631589 0.3220656031E-02 0.8497101893 0.3220061161E-02 0.8520572197 0.3219477017E-02 0.8544042501 0.3218903775E-02 0.8567512805 0.3218341598E-02 0.8590983109 0.3217790641E-02 0.8614453413 0.3217251044E-02 0.8637923717 0.3216722936E-02 0.8661394021 0.3216206435E-02 0.8684864325 0.3215701646E-02 0.8708334629 0.3215208664E-02 0.8731804933 0.3214727569E-02 0.8755275237 0.3214258433E-02 0.8778745541 0.3213801313E-02 0.8802215844 0.3213356257E-02 0.8825686148 0.3212923299E-02 0.8849156452 0.3212502462E-02 0.8872626756 0.3212093760E-02 0.8896097060 0.3211697193E-02 0.8919567364 0.3211312750E-02 0.8943037668 0.3210940410E-02 0.8966507972 0.3210580141E-02 0.8989978276 0.3210231898E-02 0.9013448580 0.3209895629E-02 0.9036918884 0.3209571268E-02 0.9060389188 0.3209258741E-02 0.9083859492 0.3208957963E-02 0.9107329796 0.3208668840E-02 0.9130800099 0.3208391268E-02 0.9154270403 0.3208125132E-02 0.9177740707 0.3207870310E-02 0.9201211011 0.3207626670E-02 0.9224681315 0.3207394072E-02 0.9248151619 0.3207172366E-02 0.9271621923 0.3206961395E-02 0.9295092227 0.3206760995E-02 0.9318562531 0.3206570993E-02 0.9342032835 0.3206391210E-02 0.9365503139 0.3206221457E-02 0.9388973443 0.3206061542E-02 0.9412443747 0.3205911264E-02 0.9435914050 0.3205770419E-02 0.9459384354 0.3205638792E-02 0.9482854658 0.3205516169E-02 0.9506324962 0.3205402325E-02 0.9529795266 0.3205297034E-02 0.9553265570 0.3205200065E-02 0.9576735874 0.3205111181E-02 0.9600206178 0.3205030143E-02 0.9623676482 0.3204956707E-02 0.9647146786 0.3204890629E-02 0.9670617090 0.3204831658E-02 0.9694087394 0.3204779545E-02 0.9717557698 0.3204734034E-02 0.9741028002 0.3204694872E-02 0.9764498305 0.3204661801E-02 0.9787968609 0.3204634565E-02 0.9811438913 0.3204612905E-02 0.9834909217 0.3204596561E-02 0.9858379521 0.3204585277E-02 0.9881849825 0.3204578792E-02 0.9905320129 0.3204576849E-02 0.9928790433 0.3204579192E-02 0.9952260737 0.3204585565E-02 0.9975731041 0.3204595713E-02 0.9999201345 0.3204609384E-02 1.002267165 0.3204626329E-02 1.004614195 0.3204646300E-02 1.006961226 0.3204669052E-02 1.009308256 0.3204694343E-02 1.011655286 0.3204721936E-02 1.014002317 0.3204751596E-02 1.016349347 0.3204783091E-02 1.018696378 0.3204816196E-02 1.021043408 0.3204850689E-02 1.023390438 0.3204886352E-02 1.025737469 0.3204922973E-02 1.028084499 0.3204960344E-02 1.030431530 0.3204998265E-02 1.032778560 0.3205036538E-02 1.035125590 0.3205074974E-02 1.037472621 0.3205113388E-02 1.039819651 0.3205151602E-02 1.042166682 0.3205189445E-02 1.044513712 0.3205226753E-02 1.046860742 0.3205263366E-02 1.049207773 0.3205299134E-02 1.051554803 0.3205333913E-02 1.053901834 0.3205367567E-02 1.056248864 0.3205399965E-02 1.058595894 0.3205430986E-02 1.060942925 0.3205460515E-02 1.063289955 0.3205488447E-02 1.065636985 0.3205514683E-02 1.067984016 0.3205539131E-02 1.070331046 0.3205561710E-02 1.072678077 0.3205582344E-02 1.075025107 0.3205600967E-02 1.077372137 0.3205617520E-02 1.079719168 0.3205631953E-02 1.082066198 0.3205644225E-02 1.084413229 0.3205654302E-02 1.086760259 0.3205662157E-02 1.089107289 0.3205667774E-02 1.091454320 0.3205671144E-02 1.093801350 0.3205672266E-02 1.096152861 0.3205659453E-02 1.098504372 0.3205621027E-02 1.100855883 0.3205557041E-02 1.103207394 0.3205467582E-02 1.105558905 0.3205352773E-02 1.107910415 0.3205212774E-02 1.110261926 0.3205047778E-02 1.112613437 0.3204858014E-02 1.114964948 0.3204643746E-02 1.117316459 0.3204405274E-02 1.119667970 0.3204142928E-02 1.122019481 0.3203857073E-02 1.124370992 0.3203548108E-02 1.126722503 0.3203216462E-02 1.129074013 0.3202862596E-02 1.131425524 0.3202487000E-02 1.133777035 0.3202090196E-02 1.136128546 0.3201672733E-02 1.138480057 0.3201235186E-02 1.140831568 0.3200778159E-02 1.143183079 0.3200302280E-02 1.145534590 0.3199808200E-02 1.147886101 0.3199296595E-02 1.150237611 0.3198768160E-02 1.152589122 0.3198223611E-02 1.154940633 0.3197663681E-02 1.157292144 0.3197089122E-02 1.159643655 0.3196500699E-02 1.161995166 0.3195899191E-02 1.164346677 0.3195285387E-02 1.166698188 0.3194660088E-02 1.169049699 0.3194024100E-02 1.171401209 0.3193378236E-02 1.173752720 0.3192723312E-02 1.176104231 0.3192060146E-02 1.178455742 0.3191389553E-02 1.180807253 0.3190712348E-02 1.183158764 0.3190029339E-02 1.185510275 0.3189341326E-02 1.187861786 0.3188649099E-02 1.190213296 0.3187953437E-02 1.192564807 0.3187255104E-02 1.194916318 0.3186554847E-02 1.197267829 0.3185853392E-02 1.199619340 0.3185151447E-02 1.201970851 0.3183992524E-02 1.204322362 0.3179300473E-02 1.206673873 0.3174547589E-02 1.209025384 0.3169733362E-02 1.211376894 0.3164857307E-02 1.213728405 0.3159918958E-02 1.216079916 0.3154917873E-02 1.218431427 0.3149853634E-02 1.220782938 0.3144725850E-02 1.223134449 0.3139534151E-02 1.225485960 0.3134278195E-02 1.227837471 0.3128957666E-02 1.230188982 0.3123572275E-02 1.232540492 0.3118121761E-02 1.234892003 0.3112605889E-02 1.237243514 0.3107024454E-02 1.239595025 0.3101377279E-02 1.241946536 0.3095664217E-02 1.244298047 0.3089885149E-02 1.246649558 0.3084039988E-02 1.249001069 0.3078128677E-02 1.251352580 0.3072151190E-02 1.253704090 0.3066107535E-02 1.256055601 0.3059997748E-02 1.258407112 0.3053821902E-02 1.260758623 0.3047580101E-02 1.263110134 0.3041272485E-02 1.265461645 0.3034899227E-02 1.267813156 0.3028460538E-02 1.270164667 0.3021956663E-02 1.272516177 0.3015387889E-02 1.274867688 0.3008754536E-02 1.277219199 0.3002056969E-02 1.279570710 0.2995295591E-02 1.281922221 0.2988470850E-02 1.284273732 0.2981583240E-02 1.286625243 0.2974633298E-02 1.288976754 0.2967621615E-02 1.291328265 0.2960548832E-02 1.293679775 0.2953415649E-02 1.296031286 0.2946222823E-02 1.298382797 0.2938971179E-02 1.300734308 0.2931661615E-02 1.303085819 0.2924295107E-02 1.305437330 0.2916872722E-02 1.307788841 0.2909395629E-02 1.310140352 0.2901865110E-02 1.312491863 0.2894282588E-02 1.314843373 0.2886649644E-02 1.317194884 0.2878968049E-02 1.319546395 0.2871239813E-02 1.321897906 0.2863467231E-02 1.324249417 0.2855652965E-02 1.326600928 0.2847800142E-02 1.328952439 0.2839912493E-02 1.331303950 0.2831994557E-02 1.333655461 0.2824051962E-02 1.336006971 0.2816091842E-02 1.338358482 0.2808123464E-02 1.340709993 0.2800159192E-02 1.343061504 0.2792216009E-02 1.345413015 0.2784317984E-02 1.347764526 0.2776500409E-02 1.350116037 0.2768816907E-02 1.352467548 0.2761351809E-02 1.354819059 0.2754241487E-02 1.357170569 0.2747707683E-02 1.359522080 0.2742092949E-02 1.361873591 0.2737838754E-02 1.364225102 0.2735297113E-02 1.366576613 0.2734458247E-02 1.368928124 0.2734962734E-02 1.371279635 0.2736377985E-02 1.373631146 0.2738373976E-02 1.375982656 0.2740738617E-02 1.378334167 0.2743341972E-02 1.380685678 0.2746104018E-02 1.383037189 0.2748974205E-02 1.385388700 0.2751919600E-02 1.387740211 0.2754918081E-02 1.390091722 0.2757954358E-02 1.392443233 0.2761017599E-02 1.394794744 0.2764099958E-02 1.397146254 0.2767195643E-02 1.399497765 0.2770300306E-02 1.401849276 0.2773410643E-02 1.404200787 0.2776524109E-02 1.406552298 0.2779638729E-02 1.408903809 0.2782752955E-02 1.411255320 0.2785865571E-02 1.413606831 0.2788975617E-02 1.415958342 0.2792082334E-02 1.418309852 0.2795185123E-02 1.420661363 0.2798283511E-02 1.423012874 0.2801377129E-02 1.425364385 0.2804465693E-02 1.427715896 0.2807548984E-02 1.430067407 0.2810626840E-02 1.432418918 0.2813699146E-02 1.434770429 0.2816765821E-02 1.437121940 0.2819826817E-02 1.439473450 0.2822882110E-02 1.441824961 0.2825931696E-02 1.444176472 0.2828975587E-02 1.446527983 0.2832013807E-02 1.448879494 0.2835046391E-02 1.451231005 0.2838073377E-02 1.453582516 0.2841094810E-02 1.455934027 0.2844110738E-02 1.458285537 0.2847121205E-02 1.460637048 0.2850126258E-02 1.462988559 0.2853125936E-02 1.465340070 0.2856120277E-02 1.467691581 0.2859109311E-02 1.470043092 0.2862093058E-02 1.472394603 0.2865071532E-02 1.474746114 0.2868044734E-02 1.477097625 0.2871012656E-02 1.479449135 0.2873975274E-02 1.481800646 0.2876932552E-02 1.484152157 0.2879884438E-02 1.486503668 0.2882830862E-02 1.488855179 0.2885771739E-02 1.491206690 0.2888706962E-02 1.493558201 0.2891636408E-02 1.495909712 0.2894559929E-02 1.498261223 0.2897477357E-02 1.500612733 0.2900388502E-02 1.502964244 0.2903293146E-02 1.505315755 0.2906191049E-02 1.507667266 0.2909081942E-02 1.510018777 0.2911965530E-02 1.512370288 0.2914841489E-02 1.514721799 0.2917709464E-02 1.517073310 0.2920569070E-02 1.519424821 0.2923419889E-02 1.521776331 0.2926261469E-02 1.524127842 0.2929093326E-02 1.526479353 0.2931914935E-02 1.528830864 0.2934725740E-02 1.531182375 0.2937525139E-02 1.533533886 0.2940312495E-02 1.535885397 0.2943087126E-02 1.538236908 0.2945848307E-02 1.540588418 0.2948595266E-02 1.542939929 0.2951327183E-02 1.545291440 0.2954043189E-02 1.547642951 0.2956742358E-02 1.549994462 0.2959423712E-02 1.552345973 0.2962086209E-02 1.554697484 0.2964728747E-02 1.557048995 0.2967350152E-02 1.559400506 0.2969949181E-02 1.561752016 0.2972524510E-02 1.564103527 0.2975074730E-02 1.566455038 0.2977598343E-02 1.568806549 0.2980093747E-02 1.571158060 0.2982559232E-02 1.573509571 0.2984992967E-02 1.575861082 0.2987392989E-02 1.578212593 0.2989757186E-02 1.580564104 0.2992083285E-02 1.582915614 0.2994368831E-02 1.585267125 0.2996611166E-02 1.587618636 0.2998807403E-02 1.589970147 0.3000954404E-02 1.592321658 0.3003048744E-02 1.594673169 0.3005086673E-02 1.597024680 0.3007064084E-02 1.599376191 0.3008976458E-02 1.601727702 0.3010818819E-02 1.604079212 0.3012585673E-02 1.606430723 0.3014270946E-02 1.608782234 0.3015867916E-02 1.611133745 0.3017369139E-02 1.613485256 0.3018766371E-02 1.615836767 0.3020050490E-02 1.618188278 0.3021211422E-02 1.620539789 0.3022238077E-02 1.622891299 0.3023118300E-02 1.625242810 0.3023838847E-02 1.627594321 0.3024385414E-02 1.629945832 0.3024742706E-02 1.632297343 0.3024894597E-02 1.634648854 0.3024824365E-02 1.637000365 0.3024515037E-02 1.639351876 0.3023949833E-02 1.641703387 0.3022171674E-02 1.644054897 0.3018434031E-02 1.646406408 0.3014575719E-02 1.648757919 0.3010595892E-02 1.651109430 0.3006493816E-02 1.653460941 0.3002268872E-02 1.655812452 0.2997920561E-02 1.658163963 0.2993448504E-02 1.660515474 0.2988852444E-02 1.662866985 0.2984132249E-02 1.665218495 0.2979287914E-02 1.667570006 0.2974319564E-02 1.669921517 0.2969227454E-02 1.672273028 0.2964011970E-02 1.674624539 0.2958673634E-02 1.676976050 0.2953213104E-02 1.679327561 0.2947631176E-02 1.681679072 0.2941928783E-02 1.684030583 0.2936107000E-02 1.686382093 0.2930167045E-02 1.688733604 0.2924110276E-02 1.691085115 0.2917938198E-02 1.693436626 0.2911652461E-02 1.695788137 0.2905254861E-02 1.698139648 0.2898747342E-02 1.700491159 0.2892131996E-02 1.702842670 0.2885411064E-02 1.705194180 0.2878586939E-02 1.707545691 0.2871662162E-02 1.709897202 0.2864639428E-02 1.712248713 0.2857521583E-02 1.714600224 0.2850311624E-02 1.716951735 0.2843012703E-02 1.719303246 0.2835628125E-02 1.721654757 0.2828161346E-02 1.724006268 0.2820615977E-02 1.726357778 0.2812995784E-02 1.728709289 0.2805304684E-02 1.731060800 0.2797546748E-02 1.733412311 0.2789726201E-02 1.735763822 0.2781847420E-02 1.738115333 0.2773914934E-02 1.740466844 0.2765933423E-02 1.742818355 0.2757907720E-02 1.745169866 0.2749842806E-02 1.747521376 0.2741743811E-02 1.749872887 0.2733616014E-02 1.752224398 0.2725464839E-02 1.754575909 0.2717295855E-02 1.756927420 0.2709114775E-02 1.759278931 0.2700927452E-02 1.761630442 0.2692739878E-02 1.763981953 0.2684558181E-02 1.766333464 0.2676388624E-02 1.768684974 0.2668237598E-02 1.771036485 0.2660111623E-02 1.773387996 0.2652017342E-02 1.775739507 0.2643961518E-02 1.778091018 0.2635951027E-02 1.780442529 0.2627992857E-02 1.782794040 0.2620094099E-02 1.785145551 0.2612261944E-02 1.787497061 0.2604503673E-02 1.789848572 0.2596826656E-02 1.792200083 0.2589238338E-02 1.794551594 0.2581746235E-02 1.796903105 0.2574357923E-02 1.799254616 0.2567081030E-02 1.801606127 0.2559923227E-02 1.803957638 0.2552892211E-02 1.806309149 0.2545995703E-02 1.808660659 0.2539241425E-02 1.811012170 0.2532619374E-02 1.813363681 0.2526086064E-02 1.815715192 0.2519731683E-02 1.818066703 0.2513563153E-02 1.820418214 0.2507587279E-02 1.822769725 0.2501810735E-02 1.825121236 0.2496240049E-02 1.827472747 0.2490881590E-02 1.829824257 0.2485741552E-02 1.832175768 0.2480825941E-02 1.834527279 0.2476140561E-02 1.836878790 0.2471690999E-02 1.839230301 0.2467482611E-02 1.841581812 0.2463520508E-02 1.843933323 0.2459809543E-02 1.846284834 0.2456354300E-02 1.848636345 0.2453159076E-02 1.850987855 0.2450227875E-02 1.853339366 0.2447564393E-02 1.855690877 0.2445172009E-02 1.858042388 0.2443053773E-02 1.860393899 0.2441212401E-02 1.862745410 0.2439650262E-02 1.865096921 0.2438369373E-02 1.867448432 0.2437371395E-02 1.869799942 0.2436657624E-02 1.872151453 0.2436228988E-02 1.874502964 0.2436086047E-02 1.876849995 0.2436220886E-02 1.879197025 0.2436625232E-02 1.881544055 0.2437298579E-02 1.883891086 0.2438240085E-02 1.886238116 0.2439448574E-02 1.888585147 0.2440922536E-02 1.890932177 0.2442660136E-02 1.893279207 0.2444659214E-02 1.895626238 0.2446917292E-02 1.897973268 0.2449431578E-02 1.900320299 0.2452198974E-02 1.902667329 0.2455216083E-02 1.905014359 0.2458479216E-02 1.907361390 0.2461984398E-02 1.909708420 0.2465727381E-02 1.912055451 0.2469703652E-02 1.914402481 0.2473908439E-02 1.916749511 0.2478336724E-02 1.919096542 0.2482983256E-02 1.921443572 0.2487842554E-02 1.923790603 0.2492908927E-02 1.926137633 0.2498176478E-02 1.928484663 0.2503639119E-02 1.930831694 0.2509290580E-02 1.933178724 0.2515124424E-02 1.935525754 0.2521134056E-02 1.937872785 0.2527312734E-02 1.940219815 0.2533653583E-02 1.942566846 0.2540149604E-02 1.944913876 0.2546793689E-02 1.947260906 0.2553578628E-02 1.949607937 0.2560497122E-02 1.951954967 0.2567541794E-02 1.954301998 0.2574705203E-02 1.956649028 0.2581979848E-02 1.958996058 0.2589358182E-02 1.961343089 0.2596832625E-02 1.963690119 0.2604395567E-02 1.966037150 0.2612039385E-02 1.968384180 0.2619756445E-02 1.970731210 0.2627539117E-02 1.973078241 0.2635379780E-02 1.975425271 0.2643270832E-02 1.977772302 0.2651204699E-02 1.980119332 0.2659173839E-02 1.982466362 0.2667170752E-02 1.984813393 0.2675187990E-02 1.987160423 0.2683218157E-02 1.989507454 0.2691253920E-02 1.991854484 0.2699288017E-02 1.994201514 0.2707313258E-02 1.996548545 0.2715322533E-02 1.998895575 0.2723308818E-02 2.001242605 0.2731265180E-02 2.003589636 0.2739184781E-02 2.005936666 0.2747060881E-02 2.008283697 0.2754886847E-02 2.010630727 0.2762656151E-02 2.012977757 0.2770362380E-02 2.015324788 0.2777999235E-02 2.017671818 0.2785560536E-02 2.020018849 0.2793040225E-02 2.022365879 0.2800432371E-02 2.024712909 0.2807731168E-02 2.027059940 0.2814930943E-02 2.029406970 0.2822026155E-02 2.031754001 0.2829011397E-02 2.034101031 0.2835881403E-02 2.036448061 0.2842631043E-02 2.038795092 0.2849255329E-02 2.041142122 0.2855749417E-02 2.043489153 0.2862108607E-02 2.045836183 0.2868328345E-02 2.048183213 0.2874404224E-02 2.050530244 0.2880331985E-02 2.052877274 0.2886107520E-02 2.055224304 0.2891726871E-02 2.057571335 0.2897186233E-02 2.059918365 0.2902481951E-02 2.062265396 0.2907610526E-02 2.064612426 0.2912568612E-02 2.066959456 0.2917353017E-02 2.069306487 0.2921960705E-02 2.071653517 0.2926388796E-02 2.074000548 0.2930634567E-02 2.076347578 0.2934695450E-02 2.078694608 0.2938569036E-02 2.081041639 0.2942253071E-02 2.083388669 0.2945745461E-02 2.085735700 0.2949044267E-02 2.088082730 0.2952147712E-02 2.090429760 0.2955054174E-02 2.092776791 0.2957762189E-02 2.095123821 0.2960270454E-02 2.097470852 0.2962577821E-02 2.099817882 0.2964683303E-02 2.102164912 0.2966586069E-02 2.104511943 0.2968285448E-02 2.106858973 0.2969780925E-02 2.109206004 0.2971072144E-02 2.111553034 0.2972158908E-02 2.113900064 0.2973041174E-02 2.116247095 0.2973719059E-02 2.118594125 0.2974192835E-02 2.120941155 0.2974462932E-02 2.123288186 0.2974529936E-02 2.125635216 0.2974394588E-02 2.127982247 0.2974057785E-02 2.130329277 0.2973520578E-02 2.132676307 0.2972784175E-02 2.135023338 0.2971849935E-02 2.137370368 0.2970719371E-02 2.139717399 0.2969394151E-02 2.142064429 0.2967876093E-02 2.144411459 0.2966167166E-02 2.146758490 0.2964269491E-02 2.149105520 0.2962185338E-02 2.151452551 0.2959917128E-02 2.153799581 0.2957467426E-02 2.156146611 0.2954838949E-02 2.158493642 0.2952034557E-02 2.160840672 0.2949057255E-02 2.163187703 0.2945910194E-02 2.165534733 0.2942596667E-02 2.167881763 0.2939120106E-02 2.170228794 0.2935484087E-02 2.172575824 0.2931692321E-02 2.174922855 0.2927748659E-02 2.177269885 0.2923657085E-02 2.179616915 0.2919421719E-02 2.181963946 0.2915046810E-02 2.184310976 0.2910536740E-02 2.186658006 0.2905896016E-02 2.189005037 0.2901129274E-02 2.191352067 0.2896241270E-02 2.193699098 0.2891236885E-02 2.196046128 0.2886121114E-02 2.198393158 0.2880899073E-02 2.200740189 0.2875575987E-02 2.203087219 0.2870157194E-02 2.205434250 0.2864648137E-02 2.207781280 0.2859054364E-02 2.210128310 0.2853381524E-02 2.212475341 0.2847635363E-02 2.214822371 0.2841821718E-02 2.217169402 0.2835946517E-02 2.219516432 0.2830015774E-02 2.221863462 0.2824035582E-02 2.224210493 0.2818012111E-02 2.226557523 0.2811951604E-02 2.228904554 0.2805860370E-02 2.231251584 0.2799744778E-02 2.233598614 0.2793611256E-02 2.235945645 0.2787466283E-02 2.238292675 0.2781316381E-02 2.240639706 0.2775168113E-02 2.242986736 0.2769028076E-02 2.245333766 0.2762902892E-02 2.247680797 0.2756799205E-02 2.250027827 0.2750723673E-02 2.252374857 0.2744682958E-02 2.254721888 0.2738683724E-02 2.257068918 0.2732732627E-02 2.259415949 0.2726836306E-02 2.261762979 0.2721001380E-02 2.264110009 0.2715234433E-02 2.266457040 0.2709542012E-02 2.268804070 0.2703930618E-02 2.271151101 0.2698406693E-02 2.273498131 0.2692976617E-02 2.275845161 0.2687646697E-02 2.278192192 0.2682423158E-02 2.280539222 0.2677312134E-02 2.282886253 0.2672319660E-02 2.285233283 0.2667451664E-02 2.287580313 0.2662713954E-02 2.289927344 0.2658112215E-02 2.292274374 0.2653651995E-02 2.294621405 0.2649338697E-02 2.296968435 0.2645177574E-02 2.299315465 0.2641173716E-02 2.301662496 0.2637332041E-02 2.304009526 0.2633657291E-02 2.306356557 0.2630154020E-02 2.308703587 0.2626826587E-02 2.311050617 0.2623679148E-02 2.313397648 0.2620715650E-02 2.315744678 0.2617939819E-02 2.318091708 0.2615355160E-02 2.320438739 0.2612964945E-02 2.322785769 0.2610772208E-02 2.325132800 0.2608779740E-02 2.327479830 0.2606990084E-02 2.329826860 0.2605405528E-02 2.332173891 0.2604028103E-02 2.334520921 0.2602859576E-02 2.336867952 0.2601901450E-02 2.339214982 0.2601154957E-02 2.341562012 0.2600621060E-02 2.343909043 0.2600300445E-02 2.346256073 0.2600193528E-02 0.000000000 0.2436086048E-02 0.2347351854E-02 0.2436199115E-02 0.4694703708E-02 0.2436538162E-02 0.7042055561E-02 0.2437102726E-02 0.9389407415E-02 0.2437892038E-02 0.1173675927E-01 0.2438905024E-02 0.1408411112E-01 0.2440140315E-02 0.1643146298E-01 0.2441596251E-02 0.1877881483E-01 0.2443270885E-02 0.2112616668E-01 0.2445161997E-02 0.2347351854E-01 0.2447267103E-02 0.2582087039E-01 0.2449583462E-02 0.2816822225E-01 0.2452108092E-02 0.3051557410E-01 0.2454837780E-02 0.3286292595E-01 0.2457769095E-02 0.3521027781E-01 0.2460898404E-02 0.3755762966E-01 0.2464221882E-02 0.3990498151E-01 0.2467735527E-02 0.4225233337E-01 0.2471435177E-02 0.4459968522E-01 0.2475316522E-02 0.4694703708E-01 0.2479375116E-02 0.4929438893E-01 0.2483606395E-02 0.5164174078E-01 0.2488005689E-02 0.5398909264E-01 0.2492568234E-02 0.5633644449E-01 0.2497289187E-02 0.5868379634E-01 0.2502163637E-02 0.6103114820E-01 0.2507186616E-02 0.6337850005E-01 0.2512353116E-02 0.6572585191E-01 0.2517658091E-02 0.6807320376E-01 0.2523096476E-02 0.7042055561E-01 0.2528663189E-02 0.7276790747E-01 0.2534353148E-02 0.7511525932E-01 0.2540161273E-02 0.7746261117E-01 0.2546082495E-02 0.7980996303E-01 0.2552111768E-02 0.8215731488E-01 0.2558244069E-02 0.8450466674E-01 0.2564474410E-02 0.8685201859E-01 0.2570797839E-02 0.8919937044E-01 0.2577209450E-02 0.9154672230E-01 0.2583704382E-02 0.9389407415E-01 0.2590277828E-02 0.9624142601E-01 0.2596925036E-02 0.9858877786E-01 0.2603641314E-02 0.1009361297 0.2610422032E-02 0.1032834816 0.2617262624E-02 0.1056308334 0.2624158591E-02 0.1079781853 0.2631105505E-02 0.1103255371 0.2638099005E-02 0.1126728890 0.2645134806E-02 0.1150202408 0.2652208693E-02 0.1173675927 0.2659316526E-02 0.1197149445 0.2666553414E-02 0.1220622964 0.2674363966E-02 0.1244096483 0.2682238824E-02 0.1267570001 0.2690174426E-02 0.1291043520 0.2698167240E-02 0.1314517038 0.2706213766E-02 0.1337990557 0.2714310536E-02 0.1361464075 0.2722454117E-02 0.1384937594 0.2730641114E-02 0.1408411112 0.2738868166E-02 0.1431884631 0.2747131953E-02 0.1455358149 0.2755429194E-02 0.1478831668 0.2763756647E-02 0.1502305186 0.2772111114E-02 0.1525778705 0.2780489437E-02 0.1549252223 0.2788888503E-02 0.1572725742 0.2797305240E-02 0.1596199261 0.2805736624E-02 0.1619672779 0.2814179672E-02 0.1643146298 0.2822631449E-02 0.1666619816 0.2831089065E-02 0.1690093335 0.2839549675E-02 0.1713566853 0.2848010482E-02 0.1737040372 0.2856468733E-02 0.1760513890 0.2864921724E-02 0.1783987409 0.2873366799E-02 0.1807460927 0.2881801345E-02 0.1830934446 0.2890222800E-02 0.1854407964 0.2898628646E-02 0.1877881483 0.2907016416E-02 0.1901355002 0.2915383687E-02 0.1924828520 0.2923728084E-02 0.1948302039 0.2932047280E-02 0.1971775557 0.2940338993E-02 0.1995249076 0.2948600990E-02 0.2018722594 0.2956831083E-02 0.2042196113 0.2965027132E-02 0.2065669631 0.2973187041E-02 0.2089143150 0.2981308764E-02 0.2112616668 0.2989390297E-02 0.2136090187 0.2997429684E-02 0.2159563705 0.3005425015E-02 0.2183037224 0.3013374423E-02 0.2206510743 0.3021276088E-02 0.2229984261 0.3029128234E-02 0.2253457780 0.3036929130E-02 0.2276931298 0.3044677088E-02 0.2300404817 0.3052370465E-02 0.2323878335 0.3060007662E-02 0.2347351854 0.3067587123E-02 0.2370825372 0.3075107334E-02 0.2394298891 0.3073461157E-02 0.2417772409 0.3071213340E-02 0.2441245928 0.3068922817E-02 0.2464719446 0.3066589283E-02 0.2488192965 0.3064212441E-02 0.2511666484 0.3061792003E-02 0.2535140002 0.3059327687E-02 0.2558613521 0.3056819222E-02 0.2582087039 0.3054266341E-02 0.2605560558 0.3051668788E-02 0.2629034076 0.3049026315E-02 0.2652507595 0.3046992102E-02 0.2675981113 0.3050918093E-02 0.2699454632 0.3054756996E-02 0.2722928150 0.3058508995E-02 0.2746401669 0.3062174337E-02 0.2769875187 0.3065753327E-02 0.2793348706 0.3069246330E-02 0.2816822225 0.3072653772E-02 0.2840295743 0.3075976140E-02 0.2863769262 0.3079213979E-02 0.2887242780 0.3082367897E-02 0.2910716299 0.3085438560E-02 0.2934189817 0.3088426695E-02 0.2957663336 0.3091333088E-02 0.2981136854 0.3094158587E-02 0.3004610373 0.3096904098E-02 0.3028083891 0.3099570587E-02 0.3051557410 0.3102159081E-02 0.3075030928 0.3104670664E-02 0.3098504447 0.3107106480E-02 0.3121977966 0.3109467731E-02 0.3145451484 0.3111755678E-02 0.3168925003 0.3113971638E-02 0.3192398521 0.3116116987E-02 0.3215872040 0.3118193156E-02 0.3239345558 0.3120201631E-02 0.3262819077 0.3122143956E-02 0.3286292595 0.3124021725E-02 0.3309766114 0.3125836587E-02 0.3333239632 0.3127590245E-02 0.3356713151 0.3129284448E-02 0.3380186669 0.3130920998E-02 0.3403660188 0.3132501745E-02 0.3427133707 0.3134028583E-02 0.3450607225 0.3135503454E-02 0.3474080744 0.3136928340E-02 0.3497554262 0.3138305265E-02 0.3521027781 0.3139636294E-02 0.3544501299 0.3140923525E-02 0.3567974818 0.3142169093E-02 0.3591448336 0.3143375164E-02 0.3614921855 0.3144543932E-02 0.3638395373 0.3145677617E-02 0.3661868892 0.3146778463E-02 0.3685342410 0.3147848733E-02 0.3708815929 0.3148890706E-02 0.3732289448 0.3149906675E-02 0.3755762966 0.3150898940E-02 0.3779236485 0.3151869806E-02 0.3802710003 0.3152821581E-02 0.3826183522 0.3153756568E-02 0.3849657040 0.3154677061E-02 0.3873130559 0.3155585345E-02 0.3896604077 0.3156483686E-02 0.3920077596 0.3157374328E-02 0.3943551114 0.3158259490E-02 0.3967024633 0.3159141358E-02 0.3990498151 0.3160022083E-02 0.4013971670 0.3160903774E-02 0.4037445189 0.3161788492E-02 0.4060918707 0.3162678248E-02 0.4084392226 0.3163574996E-02 0.4107865744 0.3164480629E-02 0.4131339263 0.3165396971E-02 0.4154812781 0.3166325776E-02 0.4178286300 0.3167268723E-02 0.4201759818 0.3168227408E-02 0.4225233337 0.3169203343E-02 0.4248706855 0.3170197950E-02 0.4272180374 0.3171212557E-02 0.4295653892 0.3172248397E-02 0.4319127411 0.3173306601E-02 0.4342600929 0.3174388196E-02 0.4366074448 0.3175494104E-02 0.4389547967 0.3176625137E-02 0.4413021485 0.3177781997E-02 0.4436495004 0.3178965273E-02 0.4459968522 0.3180175441E-02 0.4483442041 0.3181412861E-02 0.4506915559 0.3182677777E-02 0.4530389078 0.3183970322E-02 0.4553862596 0.3185290508E-02 0.4577336115 0.3186638239E-02 0.4600809633 0.3188013301E-02 0.4624283152 0.3189415372E-02 0.4647756670 0.3190844019E-02 0.4671230189 0.3192298702E-02 0.4694703708 0.3193778777E-02 0.4718177226 0.3195283499E-02 0.4741650745 0.3196812022E-02 0.4765124263 0.3198363409E-02 0.4788597782 0.3199936630E-02 0.4812071300 0.3201530570E-02 0.4835544819 0.3203144031E-02 0.4859018337 0.3204775737E-02 0.4882491856 0.3206424338E-02 0.4905965374 0.3208088417E-02 0.4929438893 0.3209766493E-02 0.4952912411 0.3211457026E-02 0.4976385930 0.3213158422E-02 0.4999859449 0.3214869039E-02 0.5023332967 0.3216587191E-02 0.5046806486 0.3218311154E-02 0.5070280004 0.3220039167E-02 0.5093753523 0.3221769445E-02 0.5117227041 0.3223500174E-02 0.5140700560 0.3225229524E-02 0.5164174078 0.3226955647E-02 0.5187647597 0.3228676687E-02 0.5211121115 0.3230390780E-02 0.5234594634 0.3232096060E-02 0.5258068152 0.3233790663E-02 0.5281541671 0.3235472731E-02 0.5305015190 0.3237140416E-02 0.5328488708 0.3238791880E-02 0.5351962227 0.3240425303E-02 0.5375435745 0.3242038885E-02 0.5398909264 0.3243630848E-02 0.5422382782 0.3245199437E-02 0.5445856301 0.3246742927E-02 0.5469329819 0.3248259623E-02 0.5492803338 0.3249747862E-02 0.5516276856 0.3251206017E-02 0.5539750375 0.3252632495E-02 0.5563223893 0.3254025746E-02 0.5586697412 0.3255384256E-02 0.5610170931 0.3256706558E-02 0.5633644449 0.3257991226E-02 0.5657117968 0.3259236878E-02 0.5680591486 0.3260442181E-02 0.5704065005 0.3261605849E-02 0.5727538523 0.3262726644E-02 0.5751012042 0.3263803377E-02 0.5774485560 0.3264834911E-02 0.5797959079 0.3265820161E-02 0.5821432597 0.3266758092E-02 0.5844906116 0.3267647723E-02 0.5868379634 0.3268488126E-02 0.5891853153 0.3269278429E-02 0.5915326672 0.3270017810E-02 0.5938800190 0.3270705507E-02 0.5962273709 0.3271340811E-02 0.5985747227 0.3271923066E-02 0.6009220746 0.3272451677E-02 0.6032694264 0.3272926102E-02 0.6056167783 0.3273345856E-02 0.6079641301 0.3273710510E-02 0.6103114820 0.3274019692E-02 0.6126588338 0.3274273090E-02 0.6150061857 0.3274470444E-02 0.6173535375 0.3274611554E-02 0.6197008894 0.3274696278E-02 0.6220482413 0.3274724528E-02 0.6243952716 0.3274743875E-02 0.6267423020 0.3274743833E-02 0.6290893324 0.3274724385E-02 0.6314363628 0.3274685525E-02 0.6337833932 0.3274627262E-02 0.6361304236 0.3274549617E-02 0.6384774540 0.3274452623E-02 0.6408244844 0.3274336329E-02 0.6431715148 0.3274200793E-02 0.6455185452 0.3274046090E-02 0.6478655756 0.3273872305E-02 0.6502126060 0.3273679537E-02 0.6525596364 0.3273467897E-02 0.6549066668 0.3273237510E-02 0.6572536971 0.3272988513E-02 0.6596007275 0.3272721055E-02 0.6619477579 0.3272435298E-02 0.6642947883 0.3272131417E-02 0.6666418187 0.3271809598E-02 0.6689888491 0.3271470040E-02 0.6713358795 0.3271112952E-02 0.6736829099 0.3270738558E-02 0.6760299403 0.3270347090E-02 0.6783769707 0.3269938793E-02 0.6807240011 0.3269513924E-02 0.6830710315 0.3269072750E-02 0.6854180619 0.3268615549E-02 0.6877650922 0.3268142609E-02 0.6901121226 0.3267654229E-02 0.6924591530 0.3267150717E-02 0.6948061834 0.3266632392E-02 0.6971532138 0.3266484589E-02 0.6995002442 0.3266620755E-02 0.7018472746 0.3266761817E-02 0.7041943050 0.3266907831E-02 0.7065413354 0.3267058855E-02 0.7088883658 0.3267214946E-02 0.7112353962 0.3267376163E-02 0.7135824266 0.3267542564E-02 0.7159294570 0.3267714207E-02 0.7182764874 0.3267891151E-02 0.7206235177 0.3268073454E-02 0.7229705481 0.3268261175E-02 0.7253175785 0.3268454372E-02 0.7276646089 0.3268653101E-02 0.7300116393 0.3268857421E-02 0.7323586697 0.3269067386E-02 0.7347057001 0.3269283053E-02 0.7370527305 0.3269504476E-02 0.7393997609 0.3269731708E-02 0.7417467913 0.3269964803E-02 0.7440938217 0.3270203810E-02 0.7464408521 0.3270448780E-02 0.7487878825 0.3270699762E-02 0.7511349128 0.3270956801E-02 0.7534819432 0.3271219942E-02 0.7558289736 0.3271489229E-02 0.7581760040 0.3271764703E-02 0.7605230344 0.3272046403E-02 0.7628700648 0.3272334366E-02 0.7652170952 0.3272628625E-02 0.7675641256 0.3272929213E-02 0.7699111560 0.3273236160E-02 0.7722581864 0.3273549493E-02 0.7746052168 0.3273869235E-02 0.7769522472 0.3274195408E-02 0.7792992776 0.3274528030E-02 0.7816463080 0.3274867117E-02 0.7839933383 0.3275212680E-02 0.7863403687 0.3275564728E-02 0.7886873991 0.3275923267E-02 0.7910344295 0.3276288298E-02 0.7933814599 0.3276659820E-02 0.7957284903 0.3277037827E-02 0.7980755207 0.3277422311E-02 0.8004225511 0.3277813259E-02 0.8027695815 0.3278210654E-02 0.8051166119 0.3278614475E-02 0.8074636423 0.3279024697E-02 0.8098106727 0.3279441293E-02 0.8121577031 0.3279864228E-02 0.8145047335 0.3280293465E-02 0.8168517638 0.3280728964E-02 0.8191987942 0.3281170678E-02 0.8215458246 0.3281618556E-02 0.8238928550 0.3282072544E-02 0.8262398854 0.3282532583E-02 0.8285869158 0.3282998608E-02 0.8309339462 0.3283470553E-02 0.8332809766 0.3283948342E-02 0.8356280070 0.3284431900E-02 0.8379750374 0.3284921143E-02 0.8403220678 0.3285415986E-02 0.8426690982 0.3285916335E-02 0.8450161286 0.3286422095E-02 0.8473631589 0.3286933165E-02 0.8497101893 0.3287449439E-02 0.8520572197 0.3287970808E-02 0.8544042501 0.3288497155E-02 0.8567512805 0.3289028361E-02 0.8590983109 0.3289564302E-02 0.8614453413 0.3290104849E-02 0.8637923717 0.3290649869E-02 0.8661394021 0.3291199222E-02 0.8684864325 0.3291752767E-02 0.8708334629 0.3292310357E-02 0.8731804933 0.3292871839E-02 0.8755275237 0.3293437058E-02 0.8778745541 0.3294005854E-02 0.8802215844 0.3294578062E-02 0.8825686148 0.3295153513E-02 0.8849156452 0.3295732034E-02 0.8872626756 0.3296313449E-02 0.8896097060 0.3296897576E-02 0.8919567364 0.3297484230E-02 0.8943037668 0.3298073223E-02 0.8966507972 0.3298664362E-02 0.8989978276 0.3299257452E-02 0.9013448580 0.3299852292E-02 0.9036918884 0.3300448679E-02 0.9060389188 0.3301046408E-02 0.9083859492 0.3301645268E-02 0.9107329796 0.3302245046E-02 0.9130800099 0.3302845528E-02 0.9154270403 0.3303446493E-02 0.9177740707 0.3304047722E-02 0.9201211011 0.3304648989E-02 0.9224681315 0.3305250068E-02 0.9248151619 0.3305850731E-02 0.9271621923 0.3306450746E-02 0.9295092227 0.3307049880E-02 0.9318562531 0.3307647898E-02 0.9342032835 0.3308244562E-02 0.9365503139 0.3308839635E-02 0.9388973443 0.3309432876E-02 0.9412443747 0.3310024044E-02 0.9435914050 0.3310612896E-02 0.9459384354 0.3311199187E-02 0.9482854658 0.3311782675E-02 0.9506324962 0.3312363112E-02 0.9529795266 0.3312940254E-02 0.9553265570 0.3313513853E-02 0.9576735874 0.3314083664E-02 0.9600206178 0.3314649440E-02 0.9623676482 0.3315210933E-02 0.9647146786 0.3315767899E-02 0.9670617090 0.3316320090E-02 0.9694087394 0.3316867262E-02 0.9717557698 0.3317409170E-02 0.9741028002 0.3317945571E-02 0.9764498305 0.3318476221E-02 0.9787968609 0.3319000880E-02 0.9811438913 0.3319519309E-02 0.9834909217 0.3320031268E-02 0.9858379521 0.3320536522E-02 0.9881849825 0.3321034836E-02 0.9905320129 0.3321525978E-02 0.9928790433 0.3322009717E-02 0.9952260737 0.3322485827E-02 0.9975731041 0.3322954083E-02 0.9999201345 0.3323414261E-02 1.002267165 0.3323866144E-02 1.004614195 0.3324309515E-02 1.006961226 0.3324744161E-02 1.009308256 0.3325169872E-02 1.011655286 0.3325586444E-02 1.014002317 0.3325993673E-02 1.016349347 0.3326391362E-02 1.018696378 0.3326779316E-02 1.021043408 0.3327157346E-02 1.023390438 0.3327525265E-02 1.025737469 0.3327882893E-02 1.028084499 0.3328230054E-02 1.030431530 0.3328566574E-02 1.032778560 0.3328892287E-02 1.035125590 0.3329207031E-02 1.037472621 0.3329510648E-02 1.039819651 0.3329802989E-02 1.042166682 0.3330083905E-02 1.044513712 0.3330353256E-02 1.046860742 0.3330610906E-02 1.049207773 0.3330856727E-02 1.051554803 0.3331090594E-02 1.053901834 0.3331312389E-02 1.056248864 0.3331521999E-02 1.058595894 0.3331719320E-02 1.060942925 0.3331904250E-02 1.063289955 0.3332076697E-02 1.065636985 0.3332236573E-02 1.067984016 0.3332383797E-02 1.070331046 0.3332518293E-02 1.072678077 0.3332639995E-02 1.075025107 0.3332748840E-02 1.077372137 0.3332844773E-02 1.079719168 0.3332927745E-02 1.082066198 0.3332997716E-02 1.084413229 0.3333054649E-02 1.086760259 0.3333098516E-02 1.089107289 0.3333129295E-02 1.091454320 0.3333146972E-02 1.093801350 0.3333151539E-02 1.096152861 0.3332926437E-02 1.098504372 0.3332262420E-02 1.100855883 0.3331196578E-02 1.103207394 0.3329779738E-02 1.105558905 0.3328066243E-02 1.107910415 0.3326106726E-02 1.110261926 0.3323944587E-02 1.112613437 0.3321615191E-02 1.114964948 0.3319146515E-02 1.117316459 0.3316560325E-02 1.119667970 0.3313873418E-02 1.122019481 0.3311098714E-02 1.124370992 0.3308246135E-02 1.126722503 0.3305323304E-02 1.129074013 0.3302336068E-02 1.131425524 0.3299288908E-02 1.133777035 0.3296185240E-02 1.136128546 0.3293027647E-02 1.138480057 0.3289818060E-02 1.140831568 0.3286557889E-02 1.143183079 0.3283248130E-02 1.145534590 0.3279889450E-02 1.147886101 0.3276482248E-02 1.150237611 0.3273026706E-02 1.152589122 0.3269522834E-02 1.154940633 0.3265970498E-02 1.157292144 0.3262369448E-02 1.159643655 0.3258719343E-02 1.161995166 0.3255019763E-02 1.164346677 0.3251270229E-02 1.166698188 0.3247470214E-02 1.169049699 0.3243619150E-02 1.171401209 0.3239716444E-02 1.173752720 0.3235761476E-02 1.176104231 0.3231753615E-02 1.178455742 0.3227692216E-02 1.180807253 0.3223576630E-02 1.183158764 0.3219406208E-02 1.185510275 0.3215180299E-02 1.187861786 0.3210898261E-02 1.190213296 0.3206559458E-02 1.192564807 0.3202163264E-02 1.194916318 0.3197709065E-02 1.197267829 0.3193196262E-02 1.199619340 0.3188624271E-02 1.201970851 0.3184449693E-02 1.204322362 0.3183748787E-02 1.206673873 0.3183049358E-02 1.209025384 0.3182352003E-02 1.211376894 0.3181657289E-02 1.213728405 0.3180965748E-02 1.216079916 0.3180277877E-02 1.218431427 0.3179594133E-02 1.220782938 0.3178914937E-02 1.223134449 0.3178240667E-02 1.225485960 0.3177571663E-02 1.227837471 0.3176908218E-02 1.230188982 0.3176250585E-02 1.232540492 0.3175598969E-02 1.234892003 0.3174953533E-02 1.237243514 0.3174314394E-02 1.239595025 0.3173681624E-02 1.241946536 0.3173055247E-02 1.244298047 0.3172435245E-02 1.246649558 0.3171821554E-02 1.249001069 0.3171214066E-02 1.251352580 0.3170612631E-02 1.253704090 0.3170017056E-02 1.256055601 0.3169427107E-02 1.258407112 0.3168842511E-02 1.260758623 0.3168262958E-02 1.263110134 0.3167688101E-02 1.265461645 0.3167117561E-02 1.267813156 0.3166550926E-02 1.270164667 0.3165987755E-02 1.272516177 0.3165427580E-02 1.274867688 0.3164869909E-02 1.277219199 0.3164314228E-02 1.279570710 0.3163760004E-02 1.281922221 0.3163206689E-02 1.284273732 0.3162653720E-02 1.286625243 0.3162100525E-02 1.288976754 0.3161546524E-02 1.291328265 0.3160991134E-02 1.293679775 0.3160433768E-02 1.296031286 0.3159873843E-02 1.298382797 0.3159310779E-02 1.300734308 0.3158744005E-02 1.303085819 0.3158172958E-02 1.305437330 0.3157597091E-02 1.307788841 0.3157015869E-02 1.310140352 0.3156428778E-02 1.312491863 0.3155835324E-02 1.314843373 0.3155235036E-02 1.317194884 0.3154627469E-02 1.319546395 0.3154012204E-02 1.321897906 0.3153388854E-02 1.324249417 0.3152757061E-02 1.326600928 0.3152116502E-02 1.328952439 0.3151466888E-02 1.331303950 0.3150807965E-02 1.333655461 0.3150139519E-02 1.336006971 0.3149461372E-02 1.338358482 0.3148773388E-02 1.340709993 0.3148075470E-02 1.343061504 0.3147367562E-02 1.345413015 0.3146649650E-02 1.347764526 0.3145921761E-02 1.350116037 0.3145183965E-02 1.352467548 0.3144436375E-02 1.354819059 0.3143679143E-02 1.357170569 0.3142912465E-02 1.359522080 0.3142136580E-02 1.361873591 0.3141351763E-02 1.364225102 0.3140558335E-02 1.366576613 0.3139756651E-02 1.368928124 0.3138947108E-02 1.371279635 0.3138130139E-02 1.373631146 0.3137306213E-02 1.375982656 0.3136475834E-02 1.378334167 0.3135639541E-02 1.380685678 0.3134797902E-02 1.383037189 0.3133951517E-02 1.385388700 0.3133101015E-02 1.387740211 0.3132247050E-02 1.390091722 0.3131390301E-02 1.392443233 0.3130531472E-02 1.394794744 0.3129671284E-02 1.397146254 0.3128810479E-02 1.399497765 0.3127949814E-02 1.401849276 0.3127090058E-02 1.404200787 0.3126231994E-02 1.406552298 0.3125376413E-02 1.408903809 0.3124524111E-02 1.411255320 0.3123675887E-02 1.413606831 0.3122832543E-02 1.415958342 0.3121994877E-02 1.418309852 0.3121163684E-02 1.420661363 0.3120339751E-02 1.423012874 0.3119523852E-02 1.425364385 0.3118716751E-02 1.427715896 0.3117919195E-02 1.430067407 0.3117131911E-02 1.432418918 0.3116355605E-02 1.434770429 0.3115590957E-02 1.437121940 0.3114838619E-02 1.439473450 0.3114099213E-02 1.441824961 0.3113373328E-02 1.444176472 0.3112661513E-02 1.446527983 0.3111964280E-02 1.448879494 0.3111282098E-02 1.451231005 0.3110615392E-02 1.453582516 0.3109964537E-02 1.455934027 0.3109329857E-02 1.458285537 0.3108711625E-02 1.460637048 0.3108110056E-02 1.462988559 0.3107525309E-02 1.465340070 0.3106957479E-02 1.467691581 0.3106406600E-02 1.470043092 0.3105872641E-02 1.472394603 0.3105355502E-02 1.474746114 0.3104855015E-02 1.477097625 0.3104370940E-02 1.479449135 0.3103902965E-02 1.481800646 0.3103450703E-02 1.484152157 0.3103013691E-02 1.486503668 0.3102591388E-02 1.488855179 0.3102183176E-02 1.491206690 0.3101788356E-02 1.493558201 0.3101406152E-02 1.495909712 0.3101035703E-02 1.498261223 0.3100676071E-02 1.500612733 0.3100326233E-02 1.502964244 0.3099985086E-02 1.505315755 0.3099651446E-02 1.507667266 0.3099324048E-02 1.510018777 0.3099001544E-02 1.512370288 0.3098682509E-02 1.514721799 0.3098365436E-02 1.517073310 0.3098048743E-02 1.519424821 0.3097730768E-02 1.521776331 0.3097409776E-02 1.524127842 0.3097083957E-02 1.526479353 0.3096751429E-02 1.528830864 0.3096410239E-02 1.531182375 0.3096058368E-02 1.533533886 0.3095693730E-02 1.535885397 0.3095314177E-02 1.538236908 0.3094917498E-02 1.540588418 0.3094501427E-02 1.542939929 0.3094063642E-02 1.545291440 0.3093601769E-02 1.547642951 0.3093113387E-02 1.549994462 0.3092596026E-02 1.552345973 0.3092047179E-02 1.554697484 0.3091464299E-02 1.557048995 0.3090844802E-02 1.559400506 0.3090186076E-02 1.561752016 0.3089485481E-02 1.564103527 0.3088740355E-02 1.566455038 0.3087948016E-02 1.568806549 0.3087105766E-02 1.571158060 0.3086210897E-02 1.573509571 0.3085260696E-02 1.575861082 0.3084252443E-02 1.578212593 0.3083183423E-02 1.580564104 0.3082050925E-02 1.582915614 0.3080852250E-02 1.585267125 0.3079584710E-02 1.587618636 0.3078245638E-02 1.589970147 0.3076832388E-02 1.592321658 0.3075342342E-02 1.594673169 0.3073772911E-02 1.597024680 0.3072121543E-02 1.599376191 0.3070385724E-02 1.601727702 0.3068562984E-02 1.604079212 0.3066650899E-02 1.606430723 0.3064647098E-02 1.608782234 0.3062549264E-02 1.611133745 0.3060355139E-02 1.613485256 0.3058062528E-02 1.615836767 0.3055669301E-02 1.618188278 0.3053173402E-02 1.620539789 0.3050572845E-02 1.622891299 0.3047865722E-02 1.625242810 0.3045050208E-02 1.627594321 0.3042124559E-02 1.629945832 0.3039087121E-02 1.632297343 0.3035936328E-02 1.634648854 0.3032670711E-02 1.637000365 0.3029288896E-02 1.639351876 0.3025789607E-02 1.641703387 0.3023112703E-02 1.644054897 0.3021988922E-02 1.646406408 0.3020565705E-02 1.648757919 0.3018832779E-02 1.651109430 0.3016782833E-02 1.653460941 0.3014411817E-02 1.655812452 0.3011719021E-02 1.658163963 0.3008706952E-02 1.660515474 0.3005381024E-02 1.662866985 0.3001749109E-02 1.665218495 0.2997821008E-02 1.667570006 0.2993607905E-02 1.669921517 0.2989121858E-02 1.672273028 0.2984375346E-02 1.674624539 0.2979380909E-02 1.676976050 0.2974150870E-02 1.679327561 0.2968697141E-02 1.681679072 0.2963031098E-02 1.684030583 0.2957163516E-02 1.686382093 0.2951104545E-02 1.688733604 0.2944863719E-02 1.691085115 0.2938449983E-02 1.693436626 0.2931871743E-02 1.695788137 0.2925136911E-02 1.698139648 0.2918252961E-02 1.700491159 0.2911226985E-02 1.702842670 0.2904065744E-02 1.705194180 0.2896775718E-02 1.707545691 0.2889363155E-02 1.709897202 0.2881834105E-02 1.712248713 0.2874194469E-02 1.714600224 0.2866450025E-02 1.716951735 0.2858606462E-02 1.719303246 0.2850669404E-02 1.721654757 0.2842644438E-02 1.724006268 0.2834537132E-02 1.726357778 0.2826353055E-02 1.728709289 0.2818097790E-02 1.731060800 0.2809776954E-02 1.733412311 0.2801396201E-02 1.735763822 0.2792961241E-02 1.738115333 0.2784477843E-02 1.740466844 0.2775951847E-02 1.742818355 0.2767389163E-02 1.745169866 0.2758795785E-02 1.747521376 0.2750177789E-02 1.749872887 0.2741541334E-02 1.752224398 0.2732892673E-02 1.754575909 0.2724238144E-02 1.756927420 0.2715584177E-02 1.759278931 0.2706937290E-02 1.761630442 0.2698304093E-02 1.763981953 0.2689691279E-02 1.766333464 0.2681105629E-02 1.768684974 0.2672554004E-02 1.771036485 0.2664043343E-02 1.773387996 0.2655580660E-02 1.775739507 0.2647173039E-02 1.778091018 0.2638827626E-02 1.780442529 0.2630551629E-02 1.782794040 0.2622352305E-02 1.785145551 0.2614236956E-02 1.787497061 0.2606212924E-02 1.789848572 0.2598287579E-02 1.792200083 0.2590468313E-02 1.794551594 0.2582762529E-02 1.796903105 0.2575177634E-02 1.799254616 0.2567721026E-02 1.801606127 0.2560400087E-02 1.803957638 0.2553222168E-02 1.806309149 0.2546194581E-02 1.808660659 0.2539324585E-02 1.811012170 0.2532637095E-02 1.813363681 0.2526190409E-02 1.815715192 0.2519909026E-02 1.818066703 0.2513800553E-02 1.820418214 0.2507872527E-02 1.822769725 0.2502132402E-02 1.825121236 0.2496587525E-02 1.827472747 0.2491245121E-02 1.829824257 0.2486112270E-02 1.832175768 0.2481195894E-02 1.834527279 0.2476502726E-02 1.836878790 0.2472039300E-02 1.839230301 0.2467811920E-02 1.841581812 0.2463826646E-02 1.843933323 0.2460089269E-02 1.846284834 0.2456605292E-02 1.848636345 0.2453379905E-02 1.850987855 0.2450417970E-02 1.853339366 0.2447724000E-02 1.855690877 0.2445302136E-02 1.858042388 0.2443156137E-02 1.860393899 0.2441289356E-02 1.862745410 0.2439704732E-02 1.865096921 0.2438404771E-02 1.867448432 0.2437391539E-02 1.869799942 0.2436666648E-02 1.872151453 0.2436231254E-02 1.874502964 0.2436086048E-02 1.876849995 0.2436220886E-02 1.879197025 0.2436625232E-02 1.881544055 0.2437298579E-02 1.883891086 0.2438240086E-02 1.886238116 0.2439448574E-02 1.888585147 0.2440922536E-02 1.890932177 0.2442660136E-02 1.893279207 0.2444659214E-02 1.895626238 0.2446917292E-02 1.897973268 0.2449431578E-02 1.900320299 0.2452198974E-02 1.902667329 0.2455216083E-02 1.905014359 0.2458479216E-02 1.907361390 0.2461984398E-02 1.909708420 0.2465727381E-02 1.912055451 0.2469703652E-02 1.914402481 0.2473908439E-02 1.916749511 0.2478336724E-02 1.919096542 0.2482983256E-02 1.921443572 0.2487842555E-02 1.923790603 0.2492908928E-02 1.926137633 0.2498176478E-02 1.928484663 0.2503639119E-02 1.930831694 0.2509290580E-02 1.933178724 0.2515124424E-02 1.935525754 0.2521134056E-02 1.937872785 0.2527312734E-02 1.940219815 0.2533653583E-02 1.942566846 0.2540149604E-02 1.944913876 0.2546793689E-02 1.947260906 0.2553578628E-02 1.949607937 0.2560497122E-02 1.951954967 0.2567541795E-02 1.954301998 0.2574705203E-02 1.956649028 0.2581979848E-02 1.958996058 0.2589358182E-02 1.961343089 0.2596832625E-02 1.963690119 0.2604395568E-02 1.966037150 0.2612039385E-02 1.968384180 0.2619756445E-02 1.970731210 0.2627539117E-02 1.973078241 0.2635379780E-02 1.975425271 0.2643270832E-02 1.977772302 0.2651204699E-02 1.980119332 0.2659173839E-02 1.982466362 0.2667170753E-02 1.984813393 0.2675187990E-02 1.987160423 0.2683218157E-02 1.989507454 0.2691253920E-02 1.991854484 0.2699288017E-02 1.994201514 0.2707313258E-02 1.996548545 0.2715322533E-02 1.998895575 0.2723308818E-02 2.001242605 0.2731265181E-02 2.003589636 0.2739184781E-02 2.005936666 0.2747060881E-02 2.008283697 0.2754886847E-02 2.010630727 0.2762656151E-02 2.012977757 0.2770362380E-02 2.015324788 0.2777999235E-02 2.017671818 0.2785560536E-02 2.020018849 0.2793040226E-02 2.022365879 0.2800432371E-02 2.024712909 0.2807731168E-02 2.027059940 0.2814930943E-02 2.029406970 0.2822026155E-02 2.031754001 0.2829011398E-02 2.034101031 0.2835881403E-02 2.036448061 0.2842631043E-02 2.038795092 0.2849255329E-02 2.041142122 0.2855749418E-02 2.043489153 0.2862108608E-02 2.045836183 0.2868328345E-02 2.048183213 0.2874404224E-02 2.050530244 0.2880331985E-02 2.052877274 0.2886107520E-02 2.055224304 0.2891726871E-02 2.057571335 0.2897186233E-02 2.059918365 0.2902481951E-02 2.062265396 0.2907610526E-02 2.064612426 0.2912568612E-02 2.066959456 0.2917353017E-02 2.069306487 0.2921960705E-02 2.071653517 0.2926388797E-02 2.074000548 0.2930634567E-02 2.076347578 0.2934695451E-02 2.078694608 0.2938569036E-02 2.081041639 0.2942253071E-02 2.083388669 0.2945745461E-02 2.085735700 0.2949044267E-02 2.088082730 0.2952147712E-02 2.090429760 0.2955054174E-02 2.092776791 0.2957762189E-02 2.095123821 0.2960270454E-02 2.097470852 0.2962577821E-02 2.099817882 0.2964683303E-02 2.102164912 0.2966586069E-02 2.104511943 0.2968285448E-02 2.106858973 0.2969780925E-02 2.109206004 0.2971072145E-02 2.111553034 0.2972158908E-02 2.113900064 0.2973041174E-02 2.116247095 0.2973719059E-02 2.118594125 0.2974192835E-02 2.120941155 0.2974462932E-02 2.123288186 0.2974529936E-02 2.125635216 0.2974394588E-02 2.127982247 0.2974057785E-02 2.130329277 0.2973520578E-02 2.132676307 0.2972784175E-02 2.135023338 0.2971849935E-02 2.137370368 0.2970719372E-02 2.139717399 0.2969394152E-02 2.142064429 0.2967876093E-02 2.144411459 0.2966167166E-02 2.146758490 0.2964269491E-02 2.149105520 0.2962185339E-02 2.151452551 0.2959917128E-02 2.153799581 0.2957467426E-02 2.156146611 0.2954838949E-02 2.158493642 0.2952034557E-02 2.160840672 0.2949057255E-02 2.163187703 0.2945910194E-02 2.165534733 0.2942596667E-02 2.167881763 0.2939120106E-02 2.170228794 0.2935484087E-02 2.172575824 0.2931692321E-02 2.174922855 0.2927748659E-02 2.177269885 0.2923657086E-02 2.179616915 0.2919421719E-02 2.181963946 0.2915046810E-02 2.184310976 0.2910536740E-02 2.186658006 0.2905896016E-02 2.189005037 0.2901129274E-02 2.191352067 0.2896241270E-02 2.193699098 0.2891236885E-02 2.196046128 0.2886121115E-02 2.198393158 0.2880899073E-02 2.200740189 0.2875575987E-02 2.203087219 0.2870157194E-02 2.205434250 0.2864648137E-02 2.207781280 0.2859054364E-02 2.210128310 0.2853381525E-02 2.212475341 0.2847635363E-02 2.214822371 0.2841821718E-02 2.217169402 0.2835946517E-02 2.219516432 0.2830015774E-02 2.221863462 0.2824035582E-02 2.224210493 0.2818012111E-02 2.226557523 0.2811951604E-02 2.228904554 0.2805860370E-02 2.231251584 0.2799744778E-02 2.233598614 0.2793611256E-02 2.235945645 0.2787466283E-02 2.238292675 0.2781316381E-02 2.240639706 0.2775168113E-02 2.242986736 0.2769028076E-02 2.245333766 0.2762902892E-02 2.247680797 0.2756799205E-02 2.250027827 0.2750723673E-02 2.252374857 0.2744682958E-02 2.254721888 0.2738683724E-02 2.257068918 0.2732732627E-02 2.259415949 0.2726836307E-02 2.261762979 0.2721001380E-02 2.264110009 0.2715234433E-02 2.266457040 0.2709542012E-02 2.268804070 0.2703930618E-02 2.271151101 0.2698406693E-02 2.273498131 0.2692976617E-02 2.275845161 0.2687646697E-02 2.278192192 0.2682423158E-02 2.280539222 0.2677312134E-02 2.282886253 0.2672319661E-02 2.285233283 0.2667451664E-02 2.287580313 0.2662713955E-02 2.289927344 0.2658112215E-02 2.292274374 0.2653651995E-02 2.294621405 0.2649338698E-02 2.296968435 0.2645177575E-02 2.299315465 0.2641173716E-02 2.301662496 0.2637332041E-02 2.304009526 0.2633657291E-02 2.306356557 0.2630154020E-02 2.308703587 0.2626826587E-02 2.311050617 0.2623679149E-02 2.313397648 0.2620715650E-02 2.315744678 0.2617939819E-02 2.318091708 0.2615355160E-02 2.320438739 0.2612964945E-02 2.322785769 0.2610772208E-02 2.325132800 0.2608779740E-02 2.327479830 0.2606990084E-02 2.329826860 0.2605405528E-02 2.332173891 0.2604028103E-02 2.334520921 0.2602859577E-02 2.336867952 0.2601901450E-02 2.339214982 0.2601154957E-02 2.341562012 0.2600621060E-02 2.343909043 0.2600300445E-02 2.346256073 0.2600193528E-02 0.000000000 0.3152590182E-02 0.2347351854E-02 0.3152586778E-02 0.4694703708E-02 0.3152576560E-02 0.7042055561E-02 0.3152559510E-02 0.9389407415E-02 0.3152535597E-02 0.1173675927E-01 0.3152504779E-02 0.1408411112E-01 0.3152467000E-02 0.1643146298E-01 0.3152422195E-02 0.1877881483E-01 0.3152370283E-02 0.2112616668E-01 0.3152311175E-02 0.2347351854E-01 0.3152244766E-02 0.2582087039E-01 0.3152170943E-02 0.2816822225E-01 0.3152089580E-02 0.3051557410E-01 0.3152000537E-02 0.3286292595E-01 0.3151903665E-02 0.3521027781E-01 0.3151798804E-02 0.3755762966E-01 0.3151685780E-02 0.3990498151E-01 0.3151564410E-02 0.4225233337E-01 0.3151434498E-02 0.4459968522E-01 0.3151295840E-02 0.4694703708E-01 0.3151148219E-02 0.4929438893E-01 0.3150991407E-02 0.5164174078E-01 0.3150825166E-02 0.5398909264E-01 0.3150649249E-02 0.5633644449E-01 0.3150463397E-02 0.5868379634E-01 0.3150267341E-02 0.6103114820E-01 0.3150060805E-02 0.6337850005E-01 0.3149843500E-02 0.6572585191E-01 0.3149615129E-02 0.6807320376E-01 0.3149375386E-02 0.7042055561E-01 0.3149123957E-02 0.7276790747E-01 0.3148860515E-02 0.7511525932E-01 0.3148584731E-02 0.7746261117E-01 0.3148296261E-02 0.7980996303E-01 0.3147994758E-02 0.8215731488E-01 0.3147679865E-02 0.8450466674E-01 0.3147351216E-02 0.8685201859E-01 0.3147008441E-02 0.8919937044E-01 0.3146651160E-02 0.9154672230E-01 0.3146278987E-02 0.9389407415E-01 0.3145891530E-02 0.9624142601E-01 0.3145488389E-02 0.9858877786E-01 0.3145069159E-02 0.1009361297 0.3144633430E-02 0.1032834816 0.3144180784E-02 0.1056308334 0.3143710800E-02 0.1079781853 0.3143223049E-02 0.1103255371 0.3142717101E-02 0.1126728890 0.3142192518E-02 0.1150202408 0.3141648859E-02 0.1173675927 0.3141085679E-02 0.1197149445 0.3140502530E-02 0.1220622964 0.3139898959E-02 0.1244096483 0.3139274510E-02 0.1267570001 0.3138628725E-02 0.1291043520 0.3137961142E-02 0.1314517038 0.3137271297E-02 0.1337990557 0.3136558725E-02 0.1361464075 0.3135822957E-02 0.1384937594 0.3135063523E-02 0.1408411112 0.3134279953E-02 0.1431884631 0.3133471774E-02 0.1455358149 0.3132638513E-02 0.1478831668 0.3131779697E-02 0.1502305186 0.3130894851E-02 0.1525778705 0.3129983500E-02 0.1549252223 0.3129045171E-02 0.1572725742 0.3128079390E-02 0.1596199261 0.3127085684E-02 0.1619672779 0.3126063579E-02 0.1643146298 0.3125012606E-02 0.1666619816 0.3123932295E-02 0.1690093335 0.3122822176E-02 0.1713566853 0.3121681783E-02 0.1737040372 0.3120510653E-02 0.1760513890 0.3119308322E-02 0.1783987409 0.3118074332E-02 0.1807460927 0.3116808225E-02 0.1830934446 0.3115509547E-02 0.1854407964 0.3114177848E-02 0.1877881483 0.3112812679E-02 0.1901355002 0.3111413597E-02 0.1924828520 0.3109980163E-02 0.1948302039 0.3108511939E-02 0.1971775557 0.3107008494E-02 0.1995249076 0.3105469400E-02 0.2018722594 0.3103894234E-02 0.2042196113 0.3102282578E-02 0.2065669631 0.3100634019E-02 0.2089143150 0.3098948149E-02 0.2112616668 0.3097224564E-02 0.2136090187 0.3095462868E-02 0.2159563705 0.3093662668E-02 0.2183037224 0.3091823578E-02 0.2206510743 0.3089945220E-02 0.2229984261 0.3088027218E-02 0.2253457780 0.3086069205E-02 0.2276931298 0.3084070821E-02 0.2300404817 0.3082031711E-02 0.2323878335 0.3079951526E-02 0.2347351854 0.3077829927E-02 0.2370825372 0.3075666580E-02 0.2394298891 0.3082566825E-02 0.2417772409 0.3089964168E-02 0.2441245928 0.3097297978E-02 0.2464719446 0.3104566910E-02 0.2488192965 0.3111769662E-02 0.2511666484 0.3118904973E-02 0.2535140002 0.3125971623E-02 0.2558613521 0.3132968431E-02 0.2582087039 0.3139894259E-02 0.2605560558 0.3146748005E-02 0.2629034076 0.3153528611E-02 0.2652507595 0.3160235056E-02 0.2675981113 0.3166866357E-02 0.2699454632 0.3173421571E-02 0.2722928150 0.3179899793E-02 0.2746401669 0.3186300155E-02 0.2769875187 0.3192621828E-02 0.2793348706 0.3198864019E-02 0.2816822225 0.3205025973E-02 0.2840295743 0.3211106970E-02 0.2863769262 0.3217106328E-02 0.2887242780 0.3223023399E-02 0.2910716299 0.3228857572E-02 0.2934189817 0.3234608270E-02 0.2957663336 0.3240274951E-02 0.2981136854 0.3245857109E-02 0.3004610373 0.3251354270E-02 0.3028083891 0.3256765995E-02 0.3051557410 0.3262091878E-02 0.3075030928 0.3267331544E-02 0.3098504447 0.3272484655E-02 0.3121977966 0.3277550901E-02 0.3145451484 0.3282530007E-02 0.3168925003 0.3287421727E-02 0.3192398521 0.3292225847E-02 0.3215872040 0.3296942185E-02 0.3239345558 0.3301570587E-02 0.3262819077 0.3306110932E-02 0.3286292595 0.3310563125E-02 0.3309766114 0.3314927103E-02 0.3333239632 0.3319202831E-02 0.3356713151 0.3323390300E-02 0.3380186669 0.3327489534E-02 0.3403660188 0.3331500579E-02 0.3427133707 0.3335423511E-02 0.3450607225 0.3339258433E-02 0.3474080744 0.3343005472E-02 0.3497554262 0.3346664784E-02 0.3521027781 0.3350236547E-02 0.3544501299 0.3353720966E-02 0.3567974818 0.3357118269E-02 0.3591448336 0.3360428710E-02 0.3614921855 0.3363652564E-02 0.3638395373 0.3366790131E-02 0.3661868892 0.3369841732E-02 0.3685342410 0.3372807710E-02 0.3708815929 0.3375688432E-02 0.3732289448 0.3378484284E-02 0.3755762966 0.3381195671E-02 0.3779236485 0.3383823022E-02 0.3802710003 0.3386366781E-02 0.3826183522 0.3388827416E-02 0.3849657040 0.3391205408E-02 0.3873130559 0.3393501259E-02 0.3896604077 0.3395715488E-02 0.3920077596 0.3397848632E-02 0.3943551114 0.3399901240E-02 0.3967024633 0.3401873881E-02 0.3990498151 0.3403767137E-02 0.4013971670 0.3405581605E-02 0.4037445189 0.3407317896E-02 0.4060918707 0.3408976633E-02 0.4084392226 0.3410558452E-02 0.4107865744 0.3412064004E-02 0.4131339263 0.3413493947E-02 0.4154812781 0.3414848953E-02 0.4178286300 0.3416129702E-02 0.4201759818 0.3417336886E-02 0.4225233337 0.3418471204E-02 0.4248706855 0.3419533363E-02 0.4272180374 0.3420524080E-02 0.4295653892 0.3421444077E-02 0.4319127411 0.3422294083E-02 0.4342600929 0.3423074832E-02 0.4366074448 0.3423787064E-02 0.4389547967 0.3424431524E-02 0.4413021485 0.3425008958E-02 0.4436495004 0.3425520119E-02 0.4459968522 0.3425965759E-02 0.4483442041 0.3426346634E-02 0.4506915559 0.3426663500E-02 0.4530389078 0.3426917115E-02 0.4553862596 0.3427108235E-02 0.4577336115 0.3427237617E-02 0.4600809633 0.3427306015E-02 0.4624283152 0.3427314183E-02 0.4647756670 0.3427262872E-02 0.4671230189 0.3427152829E-02 0.4694703708 0.3426984799E-02 0.4718177226 0.3426759521E-02 0.4741650745 0.3426477732E-02 0.4765124263 0.3426140161E-02 0.4788597782 0.3425747534E-02 0.4812071300 0.3425300570E-02 0.4835544819 0.3424799982E-02 0.4859018337 0.3424246476E-02 0.4882491856 0.3423640753E-02 0.4905965374 0.3422983504E-02 0.4929438893 0.3422275415E-02 0.4952912411 0.3421517165E-02 0.4976385930 0.3420709423E-02 0.4999859449 0.3419852855E-02 0.5023332967 0.3418948117E-02 0.5046806486 0.3417995858E-02 0.5070280004 0.3416996724E-02 0.5093753523 0.3415951351E-02 0.5117227041 0.3414860374E-02 0.5140700560 0.3413724421E-02 0.5164174078 0.3412544118E-02 0.5187647597 0.3411320090E-02 0.5211121115 0.3410052961E-02 0.5234594634 0.3408743356E-02 0.5258068152 0.3407391906E-02 0.5281541671 0.3405999247E-02 0.5305015190 0.3404566025E-02 0.5328488708 0.3403092899E-02 0.5351962227 0.3401580544E-02 0.5375435745 0.3400029659E-02 0.5398909264 0.3398440969E-02 0.5422382782 0.3396815233E-02 0.5445856301 0.3395153251E-02 0.5469329819 0.3393455875E-02 0.5492803338 0.3391724014E-02 0.5516276856 0.3389958652E-02 0.5539750375 0.3388160858E-02 0.5563223893 0.3386331802E-02 0.5586697412 0.3384472777E-02 0.5610170931 0.3382585219E-02 0.5633644449 0.3380670734E-02 0.5657117968 0.3378731128E-02 0.5680591486 0.3376768448E-02 0.5704065005 0.3374785019E-02 0.5727538523 0.3372783501E-02 0.5751012042 0.3370766949E-02 0.5774485560 0.3368738882E-02 0.5797959079 0.3366703375E-02 0.5821432597 0.3364665155E-02 0.5844906116 0.3362629723E-02 0.5868379634 0.3360603492E-02 0.5891853153 0.3358593948E-02 0.5915326672 0.3356609828E-02 0.5938800190 0.3354661326E-02 0.5962273709 0.3352760298E-02 0.5985747227 0.3350920475E-02 0.6009220746 0.3349157642E-02 0.6032694264 0.3347489755E-02 0.6056167783 0.3345936928E-02 0.6079641301 0.3344521222E-02 0.6103114820 0.3343266144E-02 0.6126588338 0.3342195777E-02 0.6150061857 0.3341333497E-02 0.6173535375 0.3340700325E-02 0.6197008894 0.3340313101E-02 0.6220482413 0.3340182760E-02 0.6243952716 0.3340172891E-02 0.6267423020 0.3340176188E-02 0.6290893324 0.3340192660E-02 0.6314363628 0.3340222303E-02 0.6337833932 0.3340265105E-02 0.6361304236 0.3340321041E-02 0.6384774540 0.3340390079E-02 0.6408244844 0.3340472174E-02 0.6431715148 0.3340567272E-02 0.6455185452 0.3340675310E-02 0.6478655756 0.3340796212E-02 0.6502126060 0.3340929895E-02 0.6525596364 0.3341076264E-02 0.6549066668 0.3341235213E-02 0.6572536971 0.3341406630E-02 0.6596007275 0.3341590390E-02 0.6619477579 0.3341786359E-02 0.6642947883 0.3341994394E-02 0.6666418187 0.3342214342E-02 0.6689888491 0.3342446041E-02 0.6713358795 0.3342689320E-02 0.6736829099 0.3342943998E-02 0.6760299403 0.3343209887E-02 0.6783769707 0.3343486788E-02 0.6807240011 0.3343774496E-02 0.6830710315 0.3344072796E-02 0.6854180619 0.3344381466E-02 0.6877650922 0.3344700273E-02 0.6901121226 0.3345028981E-02 0.6924591530 0.3345367344E-02 0.6948061834 0.3345715107E-02 0.6971532138 0.3346072013E-02 0.6995002442 0.3346437792E-02 0.7018472746 0.3346812173E-02 0.7041943050 0.3347194875E-02 0.7065413354 0.3347585612E-02 0.7088883658 0.3347984094E-02 0.7112353962 0.3348390023E-02 0.7135824266 0.3348803097E-02 0.7159294570 0.3349223010E-02 0.7182764874 0.3349649449E-02 0.7206235177 0.3350082099E-02 0.7229705481 0.3350520639E-02 0.7253175785 0.3350964747E-02 0.7276646089 0.3351414094E-02 0.7300116393 0.3351868351E-02 0.7323586697 0.3352327185E-02 0.7347057001 0.3352790260E-02 0.7370527305 0.3353257238E-02 0.7393997609 0.3353727781E-02 0.7417467913 0.3354201547E-02 0.7440938217 0.3354678194E-02 0.7464408521 0.3355157378E-02 0.7487878825 0.3355638757E-02 0.7511349128 0.3356121986E-02 0.7534819432 0.3356606721E-02 0.7558289736 0.3357092620E-02 0.7581760040 0.3357579339E-02 0.7605230344 0.3358066537E-02 0.7628700648 0.3358553874E-02 0.7652170952 0.3359041011E-02 0.7675641256 0.3359527611E-02 0.7699111560 0.3360013342E-02 0.7722581864 0.3360497870E-02 0.7746052168 0.3360980867E-02 0.7769522472 0.3361462008E-02 0.7792992776 0.3361940971E-02 0.7816463080 0.3362417438E-02 0.7839933383 0.3362891095E-02 0.7863403687 0.3363361632E-02 0.7886873991 0.3363828744E-02 0.7910344295 0.3364292132E-02 0.7933814599 0.3364751500E-02 0.7957284903 0.3365206559E-02 0.7980755207 0.3365657025E-02 0.8004225511 0.3366102622E-02 0.8027695815 0.3366543076E-02 0.8051166119 0.3366978124E-02 0.8074636423 0.3367407507E-02 0.8098106727 0.3367830974E-02 0.8121577031 0.3368248280E-02 0.8145047335 0.3368659187E-02 0.8168517638 0.3369063468E-02 0.8191987942 0.3369460898E-02 0.8215458246 0.3369851265E-02 0.8238928550 0.3370234363E-02 0.8262398854 0.3370609993E-02 0.8285869158 0.3370977967E-02 0.8309339462 0.3371338102E-02 0.8332809766 0.3371690227E-02 0.8356280070 0.3372034178E-02 0.8379750374 0.3372369801E-02 0.8403220678 0.3372696948E-02 0.8426690982 0.3373015484E-02 0.8450161286 0.3373325281E-02 0.8473631589 0.3373626220E-02 0.8497101893 0.3373918193E-02 0.8520572197 0.3374201098E-02 0.8544042501 0.3374474847E-02 0.8567512805 0.3374739357E-02 0.8590983109 0.3374994558E-02 0.8614453413 0.3375240387E-02 0.8637923717 0.3375476791E-02 0.8661394021 0.3375703728E-02 0.8684864325 0.3375921163E-02 0.8708334629 0.3376129072E-02 0.8731804933 0.3376327441E-02 0.8755275237 0.3376516263E-02 0.8778745541 0.3376695543E-02 0.8802215844 0.3376865294E-02 0.8825686148 0.3377025537E-02 0.8849156452 0.3377176305E-02 0.8872626756 0.3377317637E-02 0.8896097060 0.3377449582E-02 0.8919567364 0.3377572200E-02 0.8943037668 0.3377685555E-02 0.8966507972 0.3377789725E-02 0.8989978276 0.3377884791E-02 0.9013448580 0.3377970848E-02 0.9036918884 0.3378047993E-02 0.9060389188 0.3378116337E-02 0.9083859492 0.3378175994E-02 0.9107329796 0.3378227088E-02 0.9130800099 0.3378269751E-02 0.9154270403 0.3378304121E-02 0.9177740707 0.3378330343E-02 0.9201211011 0.3378348569E-02 0.9224681315 0.3378358960E-02 0.9248151619 0.3378361679E-02 0.9271621923 0.3378356900E-02 0.9295092227 0.3378344799E-02 0.9318562531 0.3378325561E-02 0.9342032835 0.3378299374E-02 0.9365503139 0.3378266433E-02 0.9388973443 0.3378226938E-02 0.9412443747 0.3378181093E-02 0.9435914050 0.3378129108E-02 0.9459384354 0.3378071194E-02 0.9482854658 0.3378007570E-02 0.9506324962 0.3377938457E-02 0.9529795266 0.3377864080E-02 0.9553265570 0.3377784666E-02 0.9576735874 0.3377700447E-02 0.9600206178 0.3377611656E-02 0.9623676482 0.3377518529E-02 0.9647146786 0.3377421305E-02 0.9670617090 0.3377320223E-02 0.9694087394 0.3377215525E-02 0.9717557698 0.3377107455E-02 0.9741028002 0.3376996257E-02 0.9764498305 0.3376882175E-02 0.9787968609 0.3376765455E-02 0.9811438913 0.3376646342E-02 0.9834909217 0.3376525083E-02 0.9858379521 0.3376401921E-02 0.9881849825 0.3376277102E-02 0.9905320129 0.3376150870E-02 0.9928790433 0.3376023466E-02 0.9952260737 0.3375895133E-02 0.9975731041 0.3375766109E-02 0.9999201345 0.3375636632E-02 1.002267165 0.3375506936E-02 1.004614195 0.3375377256E-02 1.006961226 0.3375247821E-02 1.009308256 0.3375118857E-02 1.011655286 0.3374990590E-02 1.014002317 0.3374863239E-02 1.016349347 0.3374737020E-02 1.018696378 0.3374612148E-02 1.021043408 0.3374488830E-02 1.023390438 0.3374367271E-02 1.025737469 0.3374247670E-02 1.028084499 0.3374130223E-02 1.030431530 0.3374015120E-02 1.032778560 0.3373902545E-02 1.035125590 0.3373792678E-02 1.037472621 0.3373685693E-02 1.039819651 0.3373581758E-02 1.042166682 0.3373481036E-02 1.044513712 0.3373383682E-02 1.046860742 0.3373289847E-02 1.049207773 0.3373199675E-02 1.051554803 0.3373113303E-02 1.053901834 0.3373030861E-02 1.056248864 0.3372952474E-02 1.058595894 0.3372878258E-02 1.060942925 0.3372808324E-02 1.063289955 0.3372742774E-02 1.065636985 0.3372681705E-02 1.067984016 0.3372625206E-02 1.070331046 0.3372573356E-02 1.072678077 0.3372526231E-02 1.075025107 0.3372483897E-02 1.077372137 0.3372446413E-02 1.079719168 0.3372413829E-02 1.082066198 0.3372386191E-02 1.084413229 0.3372363534E-02 1.086760259 0.3372345886E-02 1.089107289 0.3372333268E-02 1.091454320 0.3372325695E-02 1.093801350 0.3372323170E-02 1.096152861 0.3372532649E-02 1.098504372 0.3373147345E-02 1.100855883 0.3374130037E-02 1.103207394 0.3375429675E-02 1.105558905 0.3376991606E-02 1.107910415 0.3378764797E-02 1.110261926 0.3380705362E-02 1.112613437 0.3382777358E-02 1.114964948 0.3384952151E-02 1.117316459 0.3387207227E-02 1.119667970 0.3389524958E-02 1.122019481 0.3391891514E-02 1.124370992 0.3394295978E-02 1.126722503 0.3396729656E-02 1.129074013 0.3399185548E-02 1.131425524 0.3401657950E-02 1.133777035 0.3404142147E-02 1.136128546 0.3406634183E-02 1.138480057 0.3409130692E-02 1.140831568 0.3411628755E-02 1.143183079 0.3414125807E-02 1.145534590 0.3416619549E-02 1.147886101 0.3419107894E-02 1.150237611 0.3421588911E-02 1.152589122 0.3424060793E-02 1.154940633 0.3426521826E-02 1.157292144 0.3428970362E-02 1.159643655 0.3431404804E-02 1.161995166 0.3433823590E-02 1.164346677 0.3436225182E-02 1.166698188 0.3438608057E-02 1.169049699 0.3440970697E-02 1.171401209 0.3443311590E-02 1.173752720 0.3445629219E-02 1.176104231 0.3447922064E-02 1.178455742 0.3450188599E-02 1.180807253 0.3452427288E-02 1.183158764 0.3454636591E-02 1.185510275 0.3456814956E-02 1.187861786 0.3458960825E-02 1.190213296 0.3461072634E-02 1.192564807 0.3463148814E-02 1.194916318 0.3465187791E-02 1.197267829 0.3467187989E-02 1.199619340 0.3469147833E-02 1.201970851 0.3471065750E-02 1.204322362 0.3472940169E-02 1.206673873 0.3474769529E-02 1.209025384 0.3476552274E-02 1.211376894 0.3478286862E-02 1.213728405 0.3479971766E-02 1.216079916 0.3481605471E-02 1.218431427 0.3483186485E-02 1.220782938 0.3484713336E-02 1.223134449 0.3486184577E-02 1.225485960 0.3487598785E-02 1.227837471 0.3488954570E-02 1.230188982 0.3490250569E-02 1.232540492 0.3491485458E-02 1.234892003 0.3492657944E-02 1.237243514 0.3493766778E-02 1.239595025 0.3494810747E-02 1.241946536 0.3495788685E-02 1.244298047 0.3496699468E-02 1.246649558 0.3497542021E-02 1.249001069 0.3498315317E-02 1.251352580 0.3499018383E-02 1.253704090 0.3499650294E-02 1.256055601 0.3500210183E-02 1.258407112 0.3500697237E-02 1.260758623 0.3501110703E-02 1.263110134 0.3501449884E-02 1.265461645 0.3501714145E-02 1.267813156 0.3501902913E-02 1.270164667 0.3502015676E-02 1.272516177 0.3502051987E-02 1.274867688 0.3502011462E-02 1.277219199 0.3501893784E-02 1.279570710 0.3501698700E-02 1.281922221 0.3501426027E-02 1.284273732 0.3501075644E-02 1.286625243 0.3500647504E-02 1.288976754 0.3500141622E-02 1.291328265 0.3499558084E-02 1.293679775 0.3498897044E-02 1.296031286 0.3498158724E-02 1.298382797 0.3497343414E-02 1.300734308 0.3496451472E-02 1.303085819 0.3495483323E-02 1.305437330 0.3494439460E-02 1.307788841 0.3493320444E-02 1.310140352 0.3492126899E-02 1.312491863 0.3490859518E-02 1.314843373 0.3489519057E-02 1.317194884 0.3488106336E-02 1.319546395 0.3486622239E-02 1.321897906 0.3485067712E-02 1.324249417 0.3483443761E-02 1.326600928 0.3481751454E-02 1.328952439 0.3479991917E-02 1.331303950 0.3478166330E-02 1.333655461 0.3476275935E-02 1.336006971 0.3474322024E-02 1.338358482 0.3472305943E-02 1.340709993 0.3470229091E-02 1.343061504 0.3468092914E-02 1.345413015 0.3465898908E-02 1.347764526 0.3463648614E-02 1.350116037 0.3461343619E-02 1.352467548 0.3458985550E-02 1.354819059 0.3456576075E-02 1.357170569 0.3454116902E-02 1.359522080 0.3451609772E-02 1.361873591 0.3449056462E-02 1.364225102 0.3446458781E-02 1.366576613 0.3443818566E-02 1.368928124 0.3441137681E-02 1.371279635 0.3438418015E-02 1.373631146 0.3435661481E-02 1.375982656 0.3432870009E-02 1.378334167 0.3430045546E-02 1.380685678 0.3427190055E-02 1.383037189 0.3424305511E-02 1.385388700 0.3421393897E-02 1.387740211 0.3418457203E-02 1.390091722 0.3415497423E-02 1.392443233 0.3412516550E-02 1.394794744 0.3409516578E-02 1.397146254 0.3406499493E-02 1.399497765 0.3403467276E-02 1.401849276 0.3400421897E-02 1.404200787 0.3397365309E-02 1.406552298 0.3394299453E-02 1.408903809 0.3391226247E-02 1.411255320 0.3388147590E-02 1.413606831 0.3385065351E-02 1.415958342 0.3381981373E-02 1.418309852 0.3378897468E-02 1.420661363 0.3375815412E-02 1.423012874 0.3372736944E-02 1.425364385 0.3369663761E-02 1.427715896 0.3366597520E-02 1.430067407 0.3363539827E-02 1.432418918 0.3360492241E-02 1.434770429 0.3357456269E-02 1.437121940 0.3354433362E-02 1.439473450 0.3351424913E-02 1.441824961 0.3348432255E-02 1.444176472 0.3345456657E-02 1.446527983 0.3342499321E-02 1.448879494 0.3339561384E-02 1.451231005 0.3336643909E-02 1.453582516 0.3333747887E-02 1.455934027 0.3330874233E-02 1.458285537 0.3328023786E-02 1.460637048 0.3325197303E-02 1.462988559 0.3322395462E-02 1.465340070 0.3319618857E-02 1.467691581 0.3316867996E-02 1.470043092 0.3314143303E-02 1.472394603 0.3311445113E-02 1.474746114 0.3308773673E-02 1.477097625 0.3306129141E-02 1.479449135 0.3303511583E-02 1.481800646 0.3300920976E-02 1.484152157 0.3298357206E-02 1.486503668 0.3295820064E-02 1.488855179 0.3293309253E-02 1.491206690 0.3290824384E-02 1.493558201 0.3288364976E-02 1.495909712 0.3285930459E-02 1.498261223 0.3283520171E-02 1.500612733 0.3281133366E-02 1.502964244 0.3278769207E-02 1.505315755 0.3276426773E-02 1.507667266 0.3274105058E-02 1.510018777 0.3271802976E-02 1.512370288 0.3269519361E-02 1.514721799 0.3267252967E-02 1.517073310 0.3265002478E-02 1.519424821 0.3262766503E-02 1.521776331 0.3260543583E-02 1.524127842 0.3258332196E-02 1.526479353 0.3256130758E-02 1.528830864 0.3253937628E-02 1.531182375 0.3251751111E-02 1.533533886 0.3249569466E-02 1.535885397 0.3247390907E-02 1.538236908 0.3245213610E-02 1.540588418 0.3243035720E-02 1.542939929 0.3240855354E-02 1.545291440 0.3238670611E-02 1.547642951 0.3236479573E-02 1.549994462 0.3234280320E-02 1.552345973 0.3232070930E-02 1.554697484 0.3229849495E-02 1.557048995 0.3227614121E-02 1.559400506 0.3225362946E-02 1.561752016 0.3223094146E-02 1.564103527 0.3220805946E-02 1.566455038 0.3218496636E-02 1.568806549 0.3216164579E-02 1.571158060 0.3213808229E-02 1.573509571 0.3211426145E-02 1.575861082 0.3209017012E-02 1.578212593 0.3206579656E-02 1.580564104 0.3204113068E-02 1.582915614 0.3201616427E-02 1.585267125 0.3199089126E-02 1.587618636 0.3196530802E-02 1.589970147 0.3193941370E-02 1.592321658 0.3191321057E-02 1.594673169 0.3188670445E-02 1.597024680 0.3185990517E-02 1.599376191 0.3183282706E-02 1.601727702 0.3180548951E-02 1.604079212 0.3177791765E-02 1.606430723 0.3175014295E-02 1.608782234 0.3172220403E-02 1.611133745 0.3169414739E-02 1.613485256 0.3166602827E-02 1.615836767 0.3163791145E-02 1.618188278 0.3160987205E-02 1.620539789 0.3158199623E-02 1.622891299 0.3155438173E-02 1.625242810 0.3152713808E-02 1.627594321 0.3150038648E-02 1.629945832 0.3147425901E-02 1.632297343 0.3144889718E-02 1.634648854 0.3142444959E-02 1.637000365 0.3140106847E-02 1.639351876 0.3137890535E-02 1.641703387 0.3135810569E-02 1.644054897 0.3133880295E-02 1.646406408 0.3132111251E-02 1.648757919 0.3130512596E-02 1.651109430 0.3129090664E-02 1.653460941 0.3127848669E-02 1.655812452 0.3126786626E-02 1.658163963 0.3125901479E-02 1.660515474 0.3125187415E-02 1.662866985 0.3124636313E-02 1.665218495 0.3124238278E-02 1.667570006 0.3123982186E-02 1.669921517 0.3123856199E-02 1.672273028 0.3123848218E-02 1.674624539 0.3123946243E-02 1.676976050 0.3124138661E-02 1.679327561 0.3124414431E-02 1.681679072 0.3124763217E-02 1.684030583 0.3125175456E-02 1.686382093 0.3125642377E-02 1.688733604 0.3126156001E-02 1.691085115 0.3126709106E-02 1.693436626 0.3127295187E-02 1.695788137 0.3127908408E-02 1.698139648 0.3128543544E-02 1.700491159 0.3129195932E-02 1.702842670 0.3129861413E-02 1.705194180 0.3130536289E-02 1.707545691 0.3131217272E-02 1.709897202 0.3131901445E-02 1.712248713 0.3132586221E-02 1.714600224 0.3133269312E-02 1.716951735 0.3133948695E-02 1.719303246 0.3134622587E-02 1.721654757 0.3135289419E-02 1.724006268 0.3135947812E-02 1.726357778 0.3136596563E-02 1.728709289 0.3137234622E-02 1.731060800 0.3137861080E-02 1.733412311 0.3138475152E-02 1.735763822 0.3139076171E-02 1.738115333 0.3139663569E-02 1.740466844 0.3140236872E-02 1.742818355 0.3140795692E-02 1.745169866 0.3141339717E-02 1.747521376 0.3141868703E-02 1.749872887 0.3142382470E-02 1.752224398 0.3142880896E-02 1.754575909 0.3143363909E-02 1.756927420 0.3143831488E-02 1.759278931 0.3144283650E-02 1.761630442 0.3144720456E-02 1.763981953 0.3145141999E-02 1.766333464 0.3145548405E-02 1.768684974 0.3145939829E-02 1.771036485 0.3146316454E-02 1.773387996 0.3146678484E-02 1.775739507 0.3147026144E-02 1.778091018 0.3147359681E-02 1.780442529 0.3147679355E-02 1.782794040 0.3147985443E-02 1.785145551 0.3148278235E-02 1.787497061 0.3148558029E-02 1.789848572 0.3148825137E-02 1.792200083 0.3149079876E-02 1.794551594 0.3149322570E-02 1.796903105 0.3149553547E-02 1.799254616 0.3149773141E-02 1.801606127 0.3149981687E-02 1.803957638 0.3150179521E-02 1.806309149 0.3150366979E-02 1.808660659 0.3150544396E-02 1.811012170 0.3150712106E-02 1.813363681 0.3150870438E-02 1.815715192 0.3151019719E-02 1.818066703 0.3151160269E-02 1.820418214 0.3151292403E-02 1.822769725 0.3151416431E-02 1.825121236 0.3151532652E-02 1.827472747 0.3151641361E-02 1.829824257 0.3151742839E-02 1.832175768 0.3151837363E-02 1.834527279 0.3151925195E-02 1.836878790 0.3152006590E-02 1.839230301 0.3152081788E-02 1.841581812 0.3152151019E-02 1.843933323 0.3152214501E-02 1.846284834 0.3152272438E-02 1.848636345 0.3152325021E-02 1.850987855 0.3152372427E-02 1.853339366 0.3152414818E-02 1.855690877 0.3152452344E-02 1.858042388 0.3152485138E-02 1.860393899 0.3152513317E-02 1.862745410 0.3152536987E-02 1.865096921 0.3152556233E-02 1.867448432 0.3152571127E-02 1.869799942 0.3152581726E-02 1.872151453 0.3152588070E-02 1.874502964 0.3152590182E-02 1.876849995 0.3152584354E-02 1.879197025 0.3152566862E-02 1.881544055 0.3152537688E-02 1.883891086 0.3152496798E-02 1.886238116 0.3152444150E-02 1.888585147 0.3152379684E-02 1.890932177 0.3152303331E-02 1.893279207 0.3152215008E-02 1.895626238 0.3152114620E-02 1.897973268 0.3152002058E-02 1.900320299 0.3151877205E-02 1.902667329 0.3151739927E-02 1.905014359 0.3151590082E-02 1.907361390 0.3151427515E-02 1.909708420 0.3151252058E-02 1.912055451 0.3151063536E-02 1.914402481 0.3150861758E-02 1.916749511 0.3150646527E-02 1.919096542 0.3150417632E-02 1.921443572 0.3150174854E-02 1.923790603 0.3149917964E-02 1.926137633 0.3149646722E-02 1.928484663 0.3149360881E-02 1.930831694 0.3149060185E-02 1.933178724 0.3148744367E-02 1.935525754 0.3148413155E-02 1.937872785 0.3148066268E-02 1.940219815 0.3147703417E-02 1.942566846 0.3147324309E-02 1.944913876 0.3146928641E-02 1.947260906 0.3146516106E-02 1.949607937 0.3146086392E-02 1.951954967 0.3145639180E-02 1.954301998 0.3145174147E-02 1.956649028 0.3144690967E-02 1.958996058 0.3144189309E-02 1.961343089 0.3143668840E-02 1.963690119 0.3143129223E-02 1.966037150 0.3142570120E-02 1.968384180 0.3141991189E-02 1.970731210 0.3141392090E-02 1.973078241 0.3140772481E-02 1.975425271 0.3140132019E-02 1.977772302 0.3139470362E-02 1.980119332 0.3138787169E-02 1.982466362 0.3138082101E-02 1.984813393 0.3137354819E-02 1.987160423 0.3136604990E-02 1.989507454 0.3135832281E-02 1.991854484 0.3135036364E-02 1.994201514 0.3134216914E-02 1.996548545 0.3133373612E-02 1.998895575 0.3132506145E-02 2.001242605 0.3131614203E-02 2.003589636 0.3130697484E-02 2.005936666 0.3129755694E-02 2.008283697 0.3128788544E-02 2.010630727 0.3127795755E-02 2.012977757 0.3126777056E-02 2.015324788 0.3125732184E-02 2.017671818 0.3124660888E-02 2.020018849 0.3123562923E-02 2.022365879 0.3122438058E-02 2.024712909 0.3121286073E-02 2.027059940 0.3120106757E-02 2.029406970 0.3118899915E-02 2.031754001 0.3117665360E-02 2.034101031 0.3116402922E-02 2.036448061 0.3115112443E-02 2.038795092 0.3113793779E-02 2.041142122 0.3112446799E-02 2.043489153 0.3111071391E-02 2.045836183 0.3109667454E-02 2.048183213 0.3108234905E-02 2.050530244 0.3106773677E-02 2.052877274 0.3105283719E-02 2.055224304 0.3103764998E-02 2.057571335 0.3102217498E-02 2.059918365 0.3100641220E-02 2.062265396 0.3099036184E-02 2.064612426 0.3097402428E-02 2.066959456 0.3095740009E-02 2.069306487 0.3094049004E-02 2.071653517 0.3092329508E-02 2.074000548 0.3090581636E-02 2.076347578 0.3088805523E-02 2.078694608 0.3087001326E-02 2.081041639 0.3085169220E-02 2.083388669 0.3083309402E-02 2.085735700 0.3081422090E-02 2.088082730 0.3079507522E-02 2.090429760 0.3077565961E-02 2.092776791 0.3075597686E-02 2.095123821 0.3073603002E-02 2.097470852 0.3071582234E-02 2.099817882 0.3069535728E-02 2.102164912 0.3067463856E-02 2.104511943 0.3065367007E-02 2.106858973 0.3063245595E-02 2.109206004 0.3061100055E-02 2.111553034 0.3058930847E-02 2.113900064 0.3056738449E-02 2.116247095 0.3054523364E-02 2.118594125 0.3052286116E-02 2.120941155 0.3050027253E-02 2.123288186 0.3047747342E-02 2.125635216 0.3045446975E-02 2.127982247 0.3043126763E-02 2.130329277 0.3040787341E-02 2.132676307 0.3038429365E-02 2.135023338 0.3036053511E-02 2.137370368 0.3033660478E-02 2.139717399 0.3031250986E-02 2.142064429 0.3028825773E-02 2.144411459 0.3026385602E-02 2.146758490 0.3023931252E-02 2.149105520 0.3021463524E-02 2.151452551 0.3018983238E-02 2.153799581 0.3016491234E-02 2.156146611 0.3013988371E-02 2.158493642 0.3011475525E-02 2.160840672 0.3008953592E-02 2.163187703 0.3006423484E-02 2.165534733 0.3003886131E-02 2.167881763 0.3001342480E-02 2.170228794 0.2998793496E-02 2.172575824 0.2996240155E-02 2.174922855 0.2993683454E-02 2.177269885 0.2991124401E-02 2.179616915 0.2988564019E-02 2.181963946 0.2986003346E-02 2.184310976 0.2983443432E-02 2.186658006 0.2980885338E-02 2.189005037 0.2978330140E-02 2.191352067 0.2975778923E-02 2.193699098 0.2973232782E-02 2.196046128 0.2970692823E-02 2.198393158 0.2968160161E-02 2.200740189 0.2965635919E-02 2.203087219 0.2963121228E-02 2.205434250 0.2960617224E-02 2.207781280 0.2958125051E-02 2.210128310 0.2955645859E-02 2.212475341 0.2953180801E-02 2.214822371 0.2950731033E-02 2.217169402 0.2948297715E-02 2.219516432 0.2945882010E-02 2.221863462 0.2943485081E-02 2.224210493 0.2941108091E-02 2.226557523 0.2938752202E-02 2.228904554 0.2936418577E-02 2.231251584 0.2934108374E-02 2.233598614 0.2931822750E-02 2.235945645 0.2929562856E-02 2.238292675 0.2927329839E-02 2.240639706 0.2925124841E-02 2.242986736 0.2922948994E-02 2.245333766 0.2920803426E-02 2.247680797 0.2918689254E-02 2.250027827 0.2916607587E-02 2.252374857 0.2914559521E-02 2.254721888 0.2912546144E-02 2.257068918 0.2910568528E-02 2.259415949 0.2908627734E-02 2.261762979 0.2906724809E-02 2.264110009 0.2904860784E-02 2.266457040 0.2903036674E-02 2.268804070 0.2901253478E-02 2.271151101 0.2899512175E-02 2.273498131 0.2897813729E-02 2.275845161 0.2896159081E-02 2.278192192 0.2894549154E-02 2.280539222 0.2892984848E-02 2.282886253 0.2891467043E-02 2.285233283 0.2889996594E-02 2.287580313 0.2888574334E-02 2.289927344 0.2887201072E-02 2.292274374 0.2885877589E-02 2.294621405 0.2884604643E-02 2.296968435 0.2883382965E-02 2.299315465 0.2882213257E-02 2.301662496 0.2881096194E-02 2.304009526 0.2880032424E-02 2.306356557 0.2879022563E-02 2.308703587 0.2878067199E-02 2.311050617 0.2877166888E-02 2.313397648 0.2876322158E-02 2.315744678 0.2875533502E-02 2.318091708 0.2874801383E-02 2.320438739 0.2874126232E-02 2.322785769 0.2873508445E-02 2.325132800 0.2872948388E-02 2.327479830 0.2872446390E-02 2.329826860 0.2872002749E-02 2.332173891 0.2871617727E-02 2.334520921 0.2871291551E-02 2.336867952 0.2871024416E-02 2.339214982 0.2870816480E-02 2.341562012 0.2870667866E-02 2.343909043 0.2870578662E-02 2.346256073 0.2870548921E-02 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000013214061636520024313 xustar0030 mtime=1623670096.379101133 30 atime=1623670096.379101133 30 ctime=1623670096.379101133 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PHDLINES.OUT0000644002504400250440000000057414061636520026356 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.2730054551E-02 0.000000000 0.5282653855E-02 0.6220482413 -0.2730054551E-02 0.6220482413 0.5282653855E-02 1.093801350 -0.2730054551E-02 1.093801350 0.5282653855E-02 1.874502964 -0.2730054551E-02 1.874502964 0.5282653855E-02 2.346256073 -0.2730054551E-02 2.346256073 0.5282653855E-02 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/PHDOS.OUT0000644000000000000000000000013214061636520023762 xustar0030 mtime=1623670096.381101131 30 atime=1623670096.380101132 30 ctime=1623670096.381101131 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PHDOS.OUT0000644002504400250440000004410414061636520026022 0ustar00dewhurstdewhurst00000000000000 -0.3870828934E-03 0.000000000 -0.3785670705E-03 0.000000000 -0.3700512476E-03 0.000000000 -0.3615354247E-03 0.000000000 -0.3530196018E-03 0.000000000 -0.3445037789E-03 0.000000000 -0.3359879560E-03 0.000000000 -0.3274721331E-03 0.000000000 -0.3189563102E-03 0.000000000 -0.3104404873E-03 0.000000000 -0.3019246644E-03 0.000000000 -0.2934088415E-03 0.000000000 -0.2848930187E-03 0.000000000 -0.2763771958E-03 0.000000000 -0.2678613729E-03 0.000000000 -0.2593455500E-03 2.661711845 -0.2508297271E-03 6.341137043 -0.2423139042E-03 9.863990956 -0.2337980813E-03 10.41199045 -0.2252822584E-03 10.02056224 -0.2167664355E-03 10.56856174 -0.2082506126E-03 11.11656124 -0.1997347897E-03 11.66456073 -0.1912189668E-03 11.82113202 -0.1827031439E-03 11.50798945 -0.1741873210E-03 10.33370481 -0.1656714981E-03 10.09884788 -0.1571556753E-03 11.74284638 -0.1486398524E-03 11.82113202 -0.1401240295E-03 11.19484688 -0.1316082066E-03 11.03827559 -0.1230923837E-03 13.38684487 -0.1145765608E-03 13.38684487 -0.1060607379E-03 12.05598895 -0.9754491500E-04 10.72513302 -0.8902909211E-04 10.09884788 -0.8051326922E-04 9.237705816 -0.7199744632E-04 9.081134531 -0.6348162343E-04 9.081134531 -0.5496580054E-04 7.828564251 -0.4644997765E-04 5.675709082 -0.3793415475E-04 4.423138802 -0.2941833186E-04 4.344853159 -0.2090250897E-04 3.522853913 -0.1238668607E-04 2.622569024 -0.3870863180E-05 1.213427459 0.4644959713E-05 1.604855671 0.1316078261E-04 2.113712348 0.2167660550E-04 4.266567517 0.3019242839E-04 6.184565758 0.3870825128E-04 7.397993217 0.4722407418E-04 8.885420425 0.5573989707E-04 10.02056224 0.6425571996E-04 12.21256023 0.7277154286E-04 13.38684487 0.8128736575E-04 14.95255772 0.8980318864E-04 15.50055722 0.9831901154E-04 18.82769702 0.1068348344E-03 20.62826680 0.1153506573E-03 24.22940636 0.1238664802E-03 25.83426203 0.1323823031E-03 28.69168798 0.1408981260E-03 29.00483055 0.1494139489E-03 31.39254265 0.1579297718E-03 34.36739706 0.1664455947E-03 38.75139304 0.1749614176E-03 38.98624997 0.1834772405E-03 42.03939003 0.1919930634E-03 44.77938751 0.2005088863E-03 49.63309735 0.2090247091E-03 50.10281121 0.2175405320E-03 52.17738073 0.2260563549E-03 55.19137797 0.2345721778E-03 57.85308981 0.2430880007E-03 61.57165783 0.2516038236E-03 65.56422560 0.2601196465E-03 72.49250496 0.2686354694E-03 74.56707449 0.2771512923E-03 77.11135787 0.2856671152E-03 77.18964351 0.2941829381E-03 82.94363824 0.3026987610E-03 84.47020827 0.3112145839E-03 86.34906369 0.3197304068E-03 91.59420173 0.3282462296E-03 95.89991207 0.3367620525E-03 104.0024761 0.3452778754E-03 106.1553312 0.3537936983E-03 110.5001844 0.3623095212E-03 113.9838955 0.3708253441E-03 119.3464620 0.3793411670E-03 122.9476016 0.3878569899E-03 126.6270268 0.3963728128E-03 131.4415938 0.4048886357E-03 137.1564457 0.4134044586E-03 141.5404417 0.4219202815E-03 144.9458671 0.4304361044E-03 154.7315724 0.4389519273E-03 159.7418535 0.4474677502E-03 165.6132767 0.4559835730E-03 166.1612762 0.4644993959E-03 169.0578450 0.4730152188E-03 177.7084085 0.4815310417E-03 185.3412586 0.4900468646E-03 194.5398216 0.4985626875E-03 198.8455320 0.5070785104E-03 206.4392393 0.5155943333E-03 214.1112323 0.5241101562E-03 219.6695129 0.5326259791E-03 221.7832252 0.5411418020E-03 231.1775023 0.5496576249E-03 238.2232102 0.5581734478E-03 250.7880558 0.5666892707E-03 258.6557628 0.5752050935E-03 263.3920442 0.5837209164E-03 273.8431775 0.5922367393E-03 276.8963176 0.6007525622E-03 285.5468810 0.6092683851E-03 291.2617330 0.6177842080E-03 305.0008632 0.6263000309E-03 320.7362774 0.6348158538E-03 328.3691275 0.6433316767E-03 337.0979766 0.6518474996E-03 340.5816877 0.6603633225E-03 351.0328210 0.6688791454E-03 361.4839543 0.6773949683E-03 381.9556498 0.6859107912E-03 395.8904942 0.6944266141E-03 406.7330556 0.7029424369E-03 412.9176214 0.7114582598E-03 426.7741801 0.7199740827E-03 436.4424570 0.7284899056E-03 452.7650134 0.7370057285E-03 467.4827142 0.7455215514E-03 491.6729778 0.7540373743E-03 506.1166788 0.7625531972E-03 525.8446607 0.7710690201E-03 534.2995101 0.7795848430E-03 557.7069172 0.7881006659E-03 576.3389001 0.7966164888E-03 603.7780178 0.8051323117E-03 629.4557086 0.8136481346E-03 649.3402618 0.8221639574E-03 675.2919523 0.8306797803E-03 696.7813611 0.8391956032E-03 728.8784746 0.8477114261E-03 756.7481633 0.8562272490E-03 787.5144208 0.8647430719E-03 817.4586791 0.8732588948E-03 843.1363698 0.8817747177E-03 868.7357749 0.8902905406E-03 900.0891747 0.8988063635E-03 917.5468730 0.9073221864E-03 929.3288622 0.9158380093E-03 931.9905741 0.9243538322E-03 948.0782736 0.9328696551E-03 971.2508238 0.9413854779E-03 984.4028117 0.9499013008E-03 1010.471931 0.9584171237E-03 1028.790771 0.9669329466E-03 1059.791885 0.9754487695E-03 1083.708149 0.9839645924E-03 1107.154699 0.9924804153E-03 1132.284390 0.1000996238E-02 1165.360074 0.1009512061E-02 1197.418045 0.1018027884E-02 1237.226294 0.1026543707E-02 1268.149123 0.1035059530E-02 1307.135373 0.1043575353E-02 1351.014476 0.1052091176E-02 1386.360443 0.1060606998E-02 1428.243262 0.1069122821E-02 1488.053493 0.1077638644E-02 1542.540300 0.1086154467E-02 1609.474524 0.1094670290E-02 1660.790763 0.1103186113E-02 1735.357837 0.1111701936E-02 1807.967771 0.1120217759E-02 1894.355977 0.1128733582E-02 1981.213898 0.1137249404E-02 2089.404656 0.1145765227E-02 2176.536576 0.1154281050E-02 2303.124460 0.1162796873E-02 2426.737489 0.1171312696E-02 2588.397341 0.1179828519E-02 2745.281769 0.1188344342E-02 2975.519843 0.1196860165E-02 3292.380981 0.1205375988E-02 3683.652623 0.1213891811E-02 4037.112298 0.1222407633E-02 4354.678007 0.1230923456E-02 4664.062867 0.1239439279E-02 5023.511394 0.1247955102E-02 5405.701901 0.1256470925E-02 5863.946909 0.1264986748E-02 6413.864405 0.1273502571E-02 7157.382295 0.1282018394E-02 8194.784486 0.1290534217E-02 9479.647594 0.1299050039E-02 10786.74382 0.1307565862E-02 11783.16348 0.1316081685E-02 12101.47290 0.1324597508E-02 11837.72857 0.1333113331E-02 11906.85480 0.1341629154E-02 11896.44281 0.1350144977E-02 10494.38609 0.1358660800E-02 7868.959642 0.1367176623E-02 5231.085775 0.1375692445E-02 4199.829006 0.1384208268E-02 4046.780575 0.1392724091E-02 4459.776482 0.1401239914E-02 5149.668707 0.1409755737E-02 5748.201587 0.1418271560E-02 5967.244815 0.1426787383E-02 5608.187715 0.1435303206E-02 5083.165054 0.1443819029E-02 4638.659176 0.1452334852E-02 4519.234428 0.1460850674E-02 4500.759016 0.1469366497E-02 4745.205935 0.1477882320E-02 5572.920033 0.1486398143E-02 6789.400632 0.1494913966E-02 7889.470481 0.1503429789E-02 8318.749801 0.1511945612E-02 7936.207009 0.1520461435E-02 7177.540848 0.1528977258E-02 6315.889923 0.1537493080E-02 5528.140646 0.1546008903E-02 4748.219932 0.1554524726E-02 3961.684082 0.1563040549E-02 3395.718029 0.1571556372E-02 2933.128168 0.1580072195E-02 2574.423354 0.1588588018E-02 2201.548839 0.1597103841E-02 1836.737745 0.1605619664E-02 1445.074675 0.1614135487E-02 1325.884784 0.1622651309E-02 1433.018686 0.1631167132E-02 1698.093872 0.1639682955E-02 1857.209440 0.1648198778E-02 1999.102167 0.1656714601E-02 2151.172028 0.1665230424E-02 2345.790135 0.1673746247E-02 2570.156786 0.1682262070E-02 2860.635663 0.1690777893E-02 3313.870390 0.1699293715E-02 3949.001808 0.1707809538E-02 4469.209902 0.1716325361E-02 4442.553641 0.1724841184E-02 3972.291786 0.1733357007E-02 3444.724842 0.1741872830E-02 3278.798422 0.1750388653E-02 3267.486147 0.1758904476E-02 3320.328956 0.1767420299E-02 3296.256121 0.1775936121E-02 3347.180931 0.1784451944E-02 3465.901108 0.1792967767E-02 3596.168417 0.1801483590E-02 3625.956104 0.1809999413E-02 3409.457160 0.1818515236E-02 3163.718528 0.1827031059E-02 2916.609897 0.1835546882E-02 2814.681991 0.1844062705E-02 2772.212030 0.1852578528E-02 2764.187751 0.1861094350E-02 2765.831750 0.1869610173E-02 2738.157775 0.1878125996E-02 2699.602096 0.1886641819E-02 2696.431528 0.1895157642E-02 2714.789511 0.1903673465E-02 2734.400064 0.1912189288E-02 2718.703793 0.1920705111E-02 2710.053230 0.1929220934E-02 2724.849216 0.1937736756E-02 2734.830635 0.1946252579E-02 2727.236928 0.1954768402E-02 2718.116651 0.1963284225E-02 2743.402913 0.1971800048E-02 2747.082338 0.1980315871E-02 2747.082338 0.1988831694E-02 2738.940632 0.1997347517E-02 2744.655484 0.2005863340E-02 2714.711225 0.2014379162E-02 2719.643221 0.2022894985E-02 2720.034649 0.2031410808E-02 2774.169171 0.2039926631E-02 2737.727204 0.2048442454E-02 2773.816885 0.2056958277E-02 2812.920564 0.2065474100E-02 2880.715930 0.2073989923E-02 2925.417032 0.2082505746E-02 3023.508942 0.2091021569E-02 3215.113052 0.2099537391E-02 3276.567282 0.2108053214E-02 3190.961931 0.2116569037E-02 2976.615842 0.2125084860E-02 2831.317690 0.2133600683E-02 2653.178710 0.2142116506E-02 2494.650284 0.2150632329E-02 2290.872757 0.2159148152E-02 2146.279175 0.2167663975E-02 1979.021900 0.2176179797E-02 1813.408623 0.2184695620E-02 1665.566187 0.2193211443E-02 1572.954272 0.2201727266E-02 1514.396611 0.2210243089E-02 1489.423492 0.2218758912E-02 1422.724124 0.2227274735E-02 1408.162995 0.2235790558E-02 1419.670984 0.2244306381E-02 1431.531259 0.2252822203E-02 1430.904974 0.2261338026E-02 1432.862115 0.2269853849E-02 1492.085203 0.2278369672E-02 1587.084831 0.2286885495E-02 1677.035034 0.2295401318E-02 1779.589225 0.2303917141E-02 1916.393386 0.2312432964E-02 2054.215259 0.2320948787E-02 2242.570515 0.2329464610E-02 2515.278551 0.2337980432E-02 2787.477730 0.2346496255E-02 3019.046660 0.2355012078E-02 3021.121230 0.2363527901E-02 2971.488133 0.2372043724E-02 2886.900496 0.2380559547E-02 3028.871509 0.2389075370E-02 2965.225281 0.2397591193E-02 2865.254516 0.2406107016E-02 2591.567910 0.2414622838E-02 2524.124829 0.2423138661E-02 2456.681748 0.2431654484E-02 2443.647188 0.2440170307E-02 2373.150967 0.2448686130E-02 2304.611887 0.2457201953E-02 2314.162735 0.2465717776E-02 2285.471047 0.2474233599E-02 2331.346434 0.2482749422E-02 2181.977428 0.2491265244E-02 2230.436241 0.2499781067E-02 2163.736873 0.2508296890E-02 2136.102041 0.2516812713E-02 2046.464981 0.2525328536E-02 2096.763506 0.2533844359E-02 2136.571755 0.2542360182E-02 2209.690545 0.2550876005E-02 2225.347674 0.2559391828E-02 2211.960829 0.2567907651E-02 2162.562589 0.2576423473E-02 2132.109474 0.2584939296E-02 2161.936303 0.2593455119E-02 2184.247712 0.2601970942E-02 2166.907442 0.2610486765E-02 2141.660322 0.2619002588E-02 2170.939152 0.2627518411E-02 2226.991672 0.2636034234E-02 2265.625637 0.2644550057E-02 2252.434506 0.2653065879E-02 2171.643723 0.2661581702E-02 2168.786297 0.2670097525E-02 2131.326617 0.2678613348E-02 2144.322034 0.2687129171E-02 2134.379757 0.2695644994E-02 2176.888861 0.2704160817E-02 2175.714577 0.2712676640E-02 2196.695129 0.2721192463E-02 2207.733404 0.2729708285E-02 2275.567914 0.2738224108E-02 2340.427568 0.2746739931E-02 2395.697232 0.2755255754E-02 2386.929240 0.2763771577E-02 2437.814908 0.2772287400E-02 2455.742320 0.2780803223E-02 2467.367738 0.2789319046E-02 2496.685711 0.2797834869E-02 2498.329709 0.2806350692E-02 2591.567910 0.2814866514E-02 2567.416789 0.2823382337E-02 2631.728444 0.2831898160E-02 2669.696981 0.2840413983E-02 2725.397215 0.2848929806E-02 2763.718037 0.2857445629E-02 2789.121728 0.2865961452E-02 2903.340481 0.2874477275E-02 2980.882410 0.2882993098E-02 3135.770553 0.2891508920E-02 3155.263678 0.2900024743E-02 3201.334779 0.2908540566E-02 3184.346795 0.2917056389E-02 3169.589951 0.2925572212E-02 3066.096332 0.2934088035E-02 2909.564189 0.2942603858E-02 2839.498539 0.2951119681E-02 2823.215126 0.2959635504E-02 2885.021641 0.2968151326E-02 2932.423597 0.2976667149E-02 3033.451219 0.2985182972E-02 3079.013463 0.2993698795E-02 2981.430409 0.3002214618E-02 2867.485657 0.3010730441E-02 2818.165702 0.3019246264E-02 2854.803383 0.3027762087E-02 2862.044804 0.3036277910E-02 2831.983118 0.3044793733E-02 2856.408238 0.3053309555E-02 2884.865069 0.3061825378E-02 2960.371571 0.3070341201E-02 3097.019160 0.3078857024E-02 3284.121846 0.3087372847E-02 3449.891694 0.3095888670E-02 3649.598368 0.3104404493E-02 3932.248680 0.3112920316E-02 4292.675778 0.3121436139E-02 4630.086898 0.3129951961E-02 4875.199244 0.3138467784E-02 5109.273315 0.3146983607E-02 5254.532325 0.3155499430E-02 5307.570848 0.3164015253E-02 5292.305148 0.3172531076E-02 5094.829614 0.3181046899E-02 4963.662020 0.3189562722E-02 4800.201599 0.3198078545E-02 4764.699060 0.3206594368E-02 4538.844981 0.3215110190E-02 4281.989788 0.3223626013E-02 4047.837432 0.3232141836E-02 3990.454056 0.3240657659E-02 4029.831734 0.3249173482E-02 4116.259083 0.3257689305E-02 4231.926120 0.3266205128E-02 4325.046892 0.3274720951E-02 4359.336003 0.3283236774E-02 4507.609010 0.3291752596E-02 4650.715164 0.3300268419E-02 4694.281125 0.3308784242E-02 4551.057542 0.3317300065E-02 4368.925994 0.3325815888E-02 4270.129513 0.3334331711E-02 4284.181786 0.3342847534E-02 4362.271715 0.3351363357E-02 4508.431009 0.3359879180E-02 4657.173730 0.3368395002E-02 4978.536292 0.3376910825E-02 5250.735471 0.3385426648E-02 5367.733364 0.3393942471E-02 5151.821562 0.3402458294E-02 5004.683697 0.3410974117E-02 4937.514616 0.3419489940E-02 4953.876315 0.3428005763E-02 4848.738697 0.3436521586E-02 4601.904066 0.3445037409E-02 4331.662028 0.3453553231E-02 4059.423707 0.3462069054E-02 3979.924637 0.3470584877E-02 3848.678757 0.3479100700E-02 3775.246824 0.3487616523E-02 3565.793588 0.3496132346E-02 3432.473139 0.3504648169E-02 3126.180562 0.3513163992E-02 2704.808091 0.3521679815E-02 2151.798313 0.3530195637E-02 1668.423613 0.3538711460E-02 1221.804023 0.3547227283E-02 693.6890783 0.3555743106E-02 271.6511795 0.3564258929E-02 20.35426705 0.3572774752E-02 0.000000000 0.3581290575E-02 0.000000000 0.3589806398E-02 0.000000000 0.3598322221E-02 0.000000000 0.3606838043E-02 0.000000000 0.3615353866E-02 0.000000000 0.3623869689E-02 0.000000000 0.3632385512E-02 0.000000000 0.3640901335E-02 0.000000000 0.3649417158E-02 0.000000000 0.3657932981E-02 0.000000000 0.3666448804E-02 0.000000000 0.3674964627E-02 0.000000000 0.3683480450E-02 0.000000000 0.3691996272E-02 0.000000000 0.3700512095E-02 0.000000000 0.3709027918E-02 0.000000000 0.3717543741E-02 0.000000000 0.3726059564E-02 0.000000000 0.3734575387E-02 0.000000000 0.3743091210E-02 0.000000000 0.3751607033E-02 0.000000000 0.3760122856E-02 0.000000000 0.3768638678E-02 0.000000000 0.3777154501E-02 0.000000000 0.3785670324E-02 0.000000000 0.3794186147E-02 0.000000000 0.3802701970E-02 0.000000000 0.3811217793E-02 0.000000000 0.3819733616E-02 0.000000000 0.3828249439E-02 0.000000000 0.3836765262E-02 0.000000000 0.3845281084E-02 0.000000000 0.3853796907E-02 0.000000000 0.3862312730E-02 0.000000000 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/PHLWIDTH.OUT0000644000000000000000000000013114061636520024327 xustar0030 mtime=1623670096.385101128 29 atime=1623670096.38210113 30 ctime=1623670096.385101128 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PHLWIDTH.OUT0000644002504400250440000121233214061636520026371 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.2102677135E-11 0.2347351854E-02 0.1897946235E-11 0.4694703708E-02 0.1286806037E-11 0.7042055561E-02 0.4189900392E-12 0.9389407415E-02 0.2674875088E-13 0.1173675927E-01 0.1763864666E-11 0.1408411112E-01 0.8026212026E-11 0.1643146298E-01 0.2169518187E-10 0.1877881483E-01 0.4606825740E-10 0.2112616668E-01 0.8485803328E-10 0.2347351854E-01 0.1421902942E-09 0.2582087039E-01 0.2225926672E-09 0.2816822225E-01 0.3309765305E-09 0.3051557410E-01 0.4726145000E-09 0.3286292595E-01 0.6531147525E-09 0.3521027781E-01 0.8783928452E-09 0.3755762966E-01 0.1154641410E-08 0.3990498151E-01 0.1488297972E-08 0.4225233337E-01 0.1886011073E-08 0.4459968522E-01 0.2354604873E-08 0.4694703708E-01 0.2901042366E-08 0.4929438893E-01 0.3532387367E-08 0.5164174078E-01 0.4255765408E-08 0.5398909264E-01 0.5078323694E-08 0.5633644449E-01 0.6007190276E-08 0.5868379634E-01 0.7049432575E-08 0.6103114820E-01 0.8212015435E-08 0.6337850005E-01 0.9501758851E-08 0.6572585191E-01 0.1092529553E-07 0.6807320376E-01 0.1248902846E-07 0.7042055561E-01 0.1419908863E-07 0.7276790747E-01 0.1606129312E-07 0.7511525932E-01 0.1808110361E-07 0.7746261117E-01 0.2026358563E-07 0.7980996303E-01 0.2261336857E-07 0.8215731488E-01 0.2513460675E-07 0.8450466674E-01 0.2783094160E-07 0.8685201859E-01 0.3070546510E-07 0.8919937044E-01 0.3376068485E-07 0.9154672230E-01 0.3699849062E-07 0.9389407415E-01 0.4042012274E-07 0.9624142601E-01 0.4402614243E-07 0.9858877786E-01 0.4781640423E-07 0.1009361297 0.5179003058E-07 0.1032834816 0.5594538882E-07 0.1056308334 0.6028007064E-07 0.1079781853 0.6479087416E-07 0.1103255371 0.6947378869E-07 0.1126728890 0.7432398241E-07 0.1150202408 0.7933579290E-07 0.1173675927 0.8450272077E-07 0.1197149445 0.8981742638E-07 0.1220622964 0.9527172979E-07 0.1244096483 0.1008566140E-06 0.1267570001 0.1065622313E-06 0.1291043520 0.1123779136E-06 0.1314517038 0.1182921856E-06 0.1337990557 0.1242927816E-06 0.1361464075 0.1303666658E-06 0.1384937594 0.1365000564E-06 0.1408411112 0.1426784531E-06 0.1431884631 0.1488866675E-06 0.1455358149 0.1551088579E-06 0.1478831668 0.1613285674E-06 0.1502305186 0.1675287646E-06 0.1525778705 0.1736918889E-06 0.1549252223 0.1797998983E-06 0.1572725742 0.1858343209E-06 0.1596199261 0.1917763092E-06 0.1619672779 0.1976066982E-06 0.1643146298 0.2033060655E-06 0.1666619816 0.2088547952E-06 0.1690093335 0.2142331444E-06 0.1713566853 0.2194213120E-06 0.1737040372 0.2243995101E-06 0.1760513890 0.2291480384E-06 0.1783987409 0.2336473601E-06 0.1807460927 0.2378781800E-06 0.1830934446 0.2418215249E-06 0.1854407964 0.2454588254E-06 0.1877881483 0.2487719991E-06 0.1901355002 0.2517435357E-06 0.1924828520 0.2543565823E-06 0.1948302039 0.2565950310E-06 0.1971775557 0.2584436055E-06 0.1995249076 0.2598879499E-06 0.2018722594 0.2609147166E-06 0.2042196113 0.2615116549E-06 0.2065669631 0.2616676990E-06 0.2089143150 0.2613730558E-06 0.2112616668 0.2606192923E-06 0.2136090187 0.2593994217E-06 0.2159563705 0.2577079881E-06 0.2183037224 0.2555411511E-06 0.2206510743 0.2528967674E-06 0.2229984261 0.2497744709E-06 0.2253457780 0.2461757516E-06 0.2276931298 0.2421040308E-06 0.2300404817 0.2375647344E-06 0.2323878335 0.2325653638E-06 0.2347351854 0.2271155629E-06 0.2370825372 0.2212271823E-06 0.2394298891 0.2149143398E-06 0.2417772409 0.2081934773E-06 0.2441245928 0.2010834136E-06 0.2464719446 0.1936053931E-06 0.2488192965 0.1857831300E-06 0.2511666484 0.1776428482E-06 0.2535140002 0.1692133156E-06 0.2558613521 0.1605258746E-06 0.2582087039 0.1516144661E-06 0.2605560558 0.1425156492E-06 0.2629034076 0.1332686145E-06 0.2652507595 0.1239151919E-06 0.2675981113 0.1144998521E-06 0.2699454632 0.1050697026E-06 0.2722928150 0.9567447565E-07 0.2746401669 0.8636651081E-07 0.2769875187 0.7720072880E-07 0.2793348706 0.6823459787E-07 0.2816822225 0.5952809084E-07 0.2840295743 0.5114363155E-07 0.2863769262 0.4314602814E-07 0.2887242780 0.3560238954E-07 0.2910716299 0.2858201807E-07 0.2934189817 0.2215626659E-07 0.2957663336 0.1639833805E-07 0.2981136854 0.1138298548E-07 0.3004610373 0.7186027644E-08 0.3028083891 0.3883502426E-08 0.3051557410 0.1550067609E-08 0.3075030928 0.2557792250E-09 0.3098504447 0.5939634676E-10 0.3121977966 0.4284253736E-09 0.3145451484 0.5170614498E-09 0.3168925003 0.6156657041E-09 0.3192398521 0.7249497510E-09 0.3215872040 0.8454704362E-09 0.3239345558 0.9777541717E-09 0.3262819077 0.1122318373E-08 0.3286292595 0.1279677049E-08 0.3309766114 0.1450342309E-08 0.3333239632 0.1634824495E-08 0.3356713151 0.1833631782E-08 0.3380186669 0.2047269523E-08 0.3403660188 0.2276239469E-08 0.3427133707 0.2521038924E-08 0.3450607225 0.2782159847E-08 0.3474080744 0.3060087927E-08 0.3497554262 0.3355301649E-08 0.3521027781 0.8824923847E-09 0.3544501299 0.5236764394E-08 0.3567974818 0.2962033538E-07 0.3591448336 0.7252332177E-07 0.3614921855 0.1323471660E-06 0.3638395373 0.2074525062E-06 0.3661868892 0.2961925335E-06 0.3685342410 0.3969365719E-06 0.3708815929 0.5080869580E-06 0.3732289448 0.6280912431E-06 0.3755762966 0.7554510664E-06 0.3779236485 0.8887286131E-06 0.3802710003 0.1026551286E-05 0.3826183522 0.1167615025E-05 0.3849657040 0.1310686600E-05 0.3873130559 0.1454605074E-05 0.3896604077 0.1598282638E-05 0.3920077596 0.1740704905E-05 0.3943551114 0.1880930774E-05 0.3967024633 0.2018091939E-05 0.3990498151 0.2151392077E-05 0.4013971670 0.2280105787E-05 0.4037445189 0.2403577291E-05 0.4060918707 0.2521218941E-05 0.4084392226 0.2632509555E-05 0.4107865744 0.2736992599E-05 0.4131339263 0.2834274229E-05 0.4154812781 0.2924021232E-05 0.4178286300 0.3005958843E-05 0.4201759818 0.3079868491E-05 0.4225233337 0.3145585458E-05 0.4248706855 0.3202996473E-05 0.4272180374 0.3252037252E-05 0.4295653892 0.3292689998E-05 0.4319127411 0.3324980855E-05 0.4342600929 0.3348977341E-05 0.4366074448 0.3364785770E-05 0.4389547967 0.3372548652E-05 0.4413021485 0.3372442100E-05 0.4436495004 0.3364673242E-05 0.4459968522 0.3349477645E-05 0.4483442041 0.3327116764E-05 0.4506915559 0.3297875412E-05 0.4530389078 0.3262059274E-05 0.4553862596 0.3219992448E-05 0.4577336115 0.3172015047E-05 0.4600809633 0.3118480846E-05 0.4624283152 0.3059754982E-05 0.4647756670 0.2996211725E-05 0.4671230189 0.2928232315E-05 0.4694703708 0.2856202863E-05 0.4718177226 0.2780512335E-05 0.4741650745 0.2701550617E-05 0.4765124263 0.2619706655E-05 0.4788597782 0.2535366688E-05 0.4812071300 0.2448912570E-05 0.4835544819 0.2360720177E-05 0.4859018337 0.2271157919E-05 0.4882491856 0.2180585334E-05 0.4905965374 0.2089351790E-05 0.4929438893 0.1997795285E-05 0.4952912411 0.1906241334E-05 0.4976385930 0.1815001974E-05 0.4999859449 0.1724374856E-05 0.5023332967 0.1634642439E-05 0.5046806486 0.1546071291E-05 0.5070280004 0.1458911480E-05 0.5093753523 0.1373396070E-05 0.5117227041 0.1289740708E-05 0.5140700560 0.1208143314E-05 0.5164174078 0.1128783857E-05 0.5187647597 0.1051824226E-05 0.5211121115 0.9774081929E-06 0.5234594634 0.9056614592E-06 0.5258068152 0.8366917855E-06 0.5281541671 0.7705892056E-06 0.5305015190 0.7074263170E-06 0.5328488708 0.6472586456E-06 0.5351962227 0.5901250822E-06 0.5375435745 0.5360483853E-06 0.5398909264 0.4850357486E-06 0.5422382782 0.4370794261E-06 0.5445856301 0.3921574140E-06 0.5469329819 0.3502341820E-06 0.5492803338 0.3112614518E-06 0.5516276856 0.2751790163E-06 0.5539750375 0.2419155967E-06 0.5563223893 0.2113897311E-06 0.5586697412 0.1835106906E-06 0.5610170931 0.1581794167E-06 0.5633644449 0.1352894766E-06 0.5657117968 0.1147280288E-06 0.5680591486 0.9637679478E-07 0.5704065005 0.8011303068E-07 0.5727538523 0.6581049213E-07 0.5751012042 0.5334038649E-07 0.5774485560 0.4257230529E-07 0.5797959079 0.3337512933E-07 0.5821432597 0.2561789903E-07 0.5844906116 0.1917064167E-07 0.5868379634 0.1390514727E-07 0.5891853153 0.9695685036E-08 0.5915326672 0.6419653203E-08 0.5938800190 0.3958157227E-08 0.5962273709 0.2196515520E-08 0.5985747227 0.1024698755E-08 0.6009220746 0.3377197295E-09 0.6032694264 0.3600633379E-10 0.6056167783 0.2581020364E-10 0.6079641301 0.2197255201E-09 0.6103114820 0.5374092214E-09 0.6126588338 0.9065930717E-09 0.6150061857 0.1264442769E-08 0.6173535375 0.1559236034E-08 0.6197008894 0.1752204972E-08 0.6220482413 0.1819255391E-08 0.6243952716 0.1819985410E-08 0.6267423020 0.1822176676E-08 0.6290893324 0.1825832818E-08 0.6314363628 0.1830959890E-08 0.6337833932 0.1837566378E-08 0.6361304236 0.1845663207E-08 0.6384774540 0.1855263758E-08 0.6408244844 0.1866383879E-08 0.6431715148 0.1879041906E-08 0.6455185452 0.1893258684E-08 0.6478655756 0.1909057587E-08 0.6502126060 0.1926464545E-08 0.6525596364 0.1945508076E-08 0.6549066668 0.1966219309E-08 0.6572536971 0.1988632024E-08 0.6596007275 0.2012782683E-08 0.6619477579 0.2038710468E-08 0.6642947883 0.2066457319E-08 0.6666418187 0.2096067976E-08 0.6689888491 0.2127590020E-08 0.6713358795 0.2161073919E-08 0.6736829099 0.2196573071E-08 0.6760299403 0.2234143851E-08 0.6783769707 0.2273845660E-08 0.6807240011 0.2315740970E-08 0.6830710315 0.2359895376E-08 0.6854180619 0.2406377643E-08 0.6877650922 0.2455259759E-08 0.6901121226 0.2506616977E-08 0.6924591530 0.2560527873E-08 0.6948061834 0.2617074389E-08 0.6971532138 0.2676341881E-08 0.6995002442 0.2738419167E-08 0.7018472746 0.2803398572E-08 0.7041943050 0.2871375972E-08 0.7065413354 0.2942450832E-08 0.7088883658 0.3016726251E-08 0.7112353962 0.3094308993E-08 0.7135824266 0.3175309524E-08 0.7159294570 0.3259842041E-08 0.7182764874 0.3348024499E-08 0.7206235177 0.3439978632E-08 0.7229705481 0.3535829974E-08 0.7253175785 0.3635707869E-08 0.7276646089 0.3739745481E-08 0.7300116393 0.3848079798E-08 0.7323586697 0.3960851625E-08 0.7347057001 0.4078205577E-08 0.7370527305 0.4200290064E-08 0.7393997609 0.4327257262E-08 0.7417467913 0.4459263089E-08 0.7440938217 0.4596467162E-08 0.7464408521 0.4739032751E-08 0.7487878825 0.4887126723E-08 0.7511349128 0.5040919478E-08 0.7534819432 0.5200584876E-08 0.7558289736 0.5366300151E-08 0.7581760040 0.5538245817E-08 0.7605230344 0.5716605567E-08 0.7628700648 0.5901566156E-08 0.7652170952 0.6093317275E-08 0.7675641256 0.6292051414E-08 0.7699111560 0.6497963714E-08 0.7722581864 0.6711251805E-08 0.7746052168 0.6932115636E-08 0.7769522472 0.7160757285E-08 0.7792992776 0.7397380767E-08 0.7816463080 0.7642191823E-08 0.7839933383 0.7895397695E-08 0.7863403687 0.8157206891E-08 0.7886873991 0.8427828939E-08 0.7910344295 0.8707474124E-08 0.7933814599 0.8996353212E-08 0.7957284903 0.9294677168E-08 0.7980755207 0.9602656851E-08 0.8004225511 0.9920502703E-08 0.8027695815 0.1024842442E-07 0.8051166119 0.1058663063E-07 0.8074636423 0.1093532852E-07 0.8098106727 0.1129472349E-07 0.8121577031 0.1166501876E-07 0.8145047335 0.1204641503E-07 0.8168517638 0.1243911003E-07 0.8191987942 0.1284329814E-07 0.8215458246 0.1325916999E-07 0.8238928550 0.1368691198E-07 0.8262398854 0.1412670591E-07 0.8285869158 0.1457872850E-07 0.8309339462 0.1504315094E-07 0.8332809766 0.1552013844E-07 0.8356280070 0.1600984977E-07 0.8379750374 0.1651243677E-07 0.8403220678 0.1702804391E-07 0.8426690982 0.1755680775E-07 0.8450161286 0.1809885654E-07 0.8473631589 0.1865430966E-07 0.8497101893 0.1922327717E-07 0.8520572197 0.1980585935E-07 0.8544042501 0.2040214614E-07 0.8567512805 0.2101221674E-07 0.8590983109 0.2163613905E-07 0.8614453413 0.2227396927E-07 0.8637923717 0.2292575137E-07 0.8661394021 0.2359151665E-07 0.8684864325 0.2427128327E-07 0.8708334629 0.2496505580E-07 0.8731804933 0.2567282480E-07 0.8755275237 0.2639456636E-07 0.8778745541 0.2713024170E-07 0.8802215844 0.2787979675E-07 0.8825686148 0.2864316177E-07 0.8849156452 0.2942025097E-07 0.8872626756 0.3021096217E-07 0.8896097060 0.3101517642E-07 0.8919567364 0.3183275771E-07 0.8943037668 0.3266355265E-07 0.8966507972 0.3350739019E-07 0.8989978276 0.3436408138E-07 0.9013448580 0.3523341911E-07 0.9036918884 0.3611517793E-07 0.9060389188 0.3700911382E-07 0.9083859492 0.3791496407E-07 0.9107329796 0.3883244713E-07 0.9130800099 0.3976126250E-07 0.9154270403 0.4070109070E-07 0.9177740707 0.4165159316E-07 0.9201211011 0.4261241225E-07 0.9224681315 0.4358317130E-07 0.9248151619 0.4456347462E-07 0.9271621923 0.4555290760E-07 0.9295092227 0.4655103684E-07 0.9318562531 0.4755741028E-07 0.9342032835 0.4857155738E-07 0.9365503139 0.4959298936E-07 0.9388973443 0.5062119943E-07 0.9412443747 0.5165566308E-07 0.9435914050 0.5269583843E-07 0.9459384354 0.5374116655E-07 0.9482854658 0.5479107186E-07 0.9506324962 0.5584496258E-07 0.9529795266 0.5690223117E-07 0.9553265570 0.5796225482E-07 0.9576735874 0.5902439600E-07 0.9600206178 0.6008800300E-07 0.9623676482 0.6115241055E-07 0.9647146786 0.6221694042E-07 0.9670617090 0.6328090211E-07 0.9694087394 0.6434359351E-07 0.9717557698 0.6540430164E-07 0.9741028002 0.6646230339E-07 0.9764498305 0.6751686630E-07 0.9787968609 0.6856724937E-07 0.9811438913 0.6961270387E-07 0.9834909217 0.7065247423E-07 0.9858379521 0.7168579887E-07 0.9881849825 0.7271191114E-07 0.9905320129 0.7373004024E-07 0.9928790433 0.7473941211E-07 0.9952260737 0.7573925045E-07 0.9975731041 0.7672877765E-07 0.9999201345 0.7770721580E-07 1.002267165 0.7867378769E-07 1.004614195 0.7962771778E-07 1.006961226 0.8056823327E-07 1.009308256 0.8149456512E-07 1.011655286 0.8240594904E-07 1.014002317 0.8330162657E-07 1.016349347 0.8375840541E-07 1.018696378 0.8171552954E-07 1.021043408 0.7973958405E-07 1.023390438 0.7783071220E-07 1.025737469 0.7598898264E-07 1.028084499 0.7421439321E-07 1.030431530 0.7250687521E-07 1.032778560 0.7086629777E-07 1.035125590 0.6929247246E-07 1.037472621 0.6778515811E-07 1.039819651 0.6634406579E-07 1.042166682 0.6496886385E-07 1.044513712 0.6365918316E-07 1.046860742 0.6241462239E-07 1.049207773 0.6123475325E-07 1.051554803 0.6011912586E-07 1.053901834 0.5906727401E-07 1.056248864 0.5807872040E-07 1.058595894 0.5715298179E-07 1.060942925 0.5628957398E-07 1.063289955 0.5548801675E-07 1.065636985 0.5474783854E-07 1.067984016 0.5406858093E-07 1.070331046 0.5344980292E-07 1.072678077 0.5289108494E-07 1.075025107 0.5239203261E-07 1.077372137 0.5195228016E-07 1.079719168 0.5157149356E-07 1.082066198 0.5124937329E-07 1.084413229 0.5098565681E-07 1.086760259 0.5078012063E-07 1.089107289 0.5063258199E-07 1.091454320 0.5054290019E-07 1.093801350 0.5051097756E-07 1.096152861 0.5059721813E-07 1.098504372 0.5085253419E-07 1.100855883 0.5127781539E-07 1.103207394 0.5187451750E-07 1.105558905 0.5264464448E-07 1.107910415 0.5359072323E-07 1.110261926 0.5471577083E-07 1.112613437 0.5602325424E-07 1.114964948 0.5751704221E-07 1.117316459 0.5578480093E-07 1.119667970 0.4848219038E-07 1.122019481 0.4117626204E-07 1.124370992 0.3401664992E-07 1.126722503 0.2715429752E-07 1.129074013 0.2074044684E-07 1.131425524 0.1492581555E-07 1.133777035 0.9859923291E-08 1.136128546 0.5690530115E-08 1.138480057 0.2563155004E-08 1.140831568 0.6206473840E-09 1.143183079 0.2790334262E-11 1.145534590 0.8459192976E-09 1.147886101 0.3282544666E-08 1.150237611 0.7440970487E-08 1.152589122 0.1344490468E-07 1.154940633 0.2141305865E-07 1.157292144 0.3145873606E-07 1.159643655 0.4368941206E-07 1.161995166 0.5820630522E-07 1.164346677 0.7510394521E-07 1.166698188 0.9446973974E-07 1.169049699 0.1163835445E-06 1.171401209 0.1409172403E-06 1.173752720 0.1681343207E-06 1.176104231 0.1980894954E-06 1.178455742 0.2308283112E-06 1.180807253 0.2663867964E-06 1.183158764 0.3047911300E-06 1.185510275 0.3460573405E-06 1.187861786 0.3901910363E-06 1.190213296 0.4371871705E-06 1.192564807 0.4870298429E-06 1.194916318 0.5396921407E-06 1.197267829 0.5951360206E-06 1.199619340 0.6533122329E-06 1.201970851 0.7141602891E-06 1.204322362 0.7776084749E-06 1.206673873 0.8435739078E-06 1.209025384 0.9119626410E-06 1.211376894 0.9826698128E-06 1.213728405 0.1055579843E-05 1.216079916 0.1130566672E-05 1.218431427 0.1207494049E-05 1.220782938 0.1286215862E-05 1.223134449 0.1366576508E-05 1.225485960 0.1448411310E-05 1.227837471 0.1531546972E-05 1.230188982 0.1615802073E-05 1.232540492 0.1700987594E-05 1.234892003 0.1786907487E-05 1.237243514 0.1873359270E-05 1.239595025 0.1960134654E-05 1.241946536 0.2047020198E-05 1.244298047 0.2133797992E-05 1.246649558 0.2220246356E-05 1.249001069 0.2306140562E-05 1.251352580 0.2391253575E-05 1.253704090 0.2475356806E-05 1.256055601 0.2558220873E-05 1.258407112 0.2639616374E-05 1.260758623 0.2719314662E-05 1.263110134 0.2797088629E-05 1.265461645 0.2872713476E-05 1.267813156 0.2945967494E-05 1.270164667 0.3016632825E-05 1.272516177 0.3084496226E-05 1.274867688 0.3149349808E-05 1.277219199 0.3210991772E-05 1.279570710 0.3269227120E-05 1.281922221 0.3323868348E-05 1.284273732 0.3374736117E-05 1.286625243 0.3421659900E-05 1.288976754 0.3464478605E-05 1.291328265 0.3503041159E-05 1.293679775 0.3537207080E-05 1.296031286 0.3566846999E-05 1.298382797 0.3591843160E-05 1.300734308 0.3612089881E-05 1.303085819 0.3627493984E-05 1.305437330 0.3637975179E-05 1.307788841 0.3643466423E-05 1.310140352 0.3643914233E-05 1.312491863 0.3639278963E-05 1.314843373 0.3629535040E-05 1.317194884 0.3614671169E-05 1.319546395 0.3594690492E-05 1.321897906 0.3569610713E-05 1.324249417 0.3539464183E-05 1.326600928 0.3504297949E-05 1.328952439 0.3464173769E-05 1.331303950 0.3419168091E-05 1.333655461 0.3369371995E-05 1.336006971 0.3314891101E-05 1.338358482 0.3255845455E-05 1.340709993 0.3192369374E-05 1.343061504 0.3124611266E-05 1.345413015 0.3052733423E-05 1.347764526 0.2976911794E-05 1.350116037 0.2897335720E-05 1.352467548 0.2814207663E-05 1.354819059 0.2727742907E-05 1.357170569 0.2638169239E-05 1.359522080 0.2545726620E-05 1.361873591 0.2450666836E-05 1.364225102 0.2353253138E-05 1.366576613 0.2253759872E-05 1.368928124 0.2152472099E-05 1.371279635 0.2049685206E-05 1.373631146 0.1945704515E-05 1.375982656 0.1840844882E-05 1.378334167 0.1735430296E-05 1.380685678 0.1629793473E-05 1.383037189 0.1524275452E-05 1.385388700 0.1419225182E-05 1.387740211 0.1314999120E-05 1.390091722 0.1211960813E-05 1.392443233 0.1110480488E-05 1.394794744 0.1010934640E-05 1.397146254 0.9137056002E-06 1.399497765 0.8191811170E-06 1.401849276 0.7277539087E-06 1.404200787 0.6398212081E-06 1.406552298 0.5557842833E-06 1.408903809 0.4760479290E-06 1.411255320 0.4010199177E-06 1.413606831 0.3311104001E-06 1.415958342 0.2667312379E-06 1.418309852 0.2082952494E-06 1.420661363 0.1562153435E-06 1.423012874 0.1109035084E-06 1.425364385 0.7276961327E-07 1.427715896 0.4221996607E-07 1.430067407 0.1965555298E-07 1.432418918 0.5469855676E-08 1.434770429 0.4610302716E-10 1.437121940 0.3753751264E-08 1.439473450 0.1694389020E-07 1.441824961 0.3994311695E-07 1.444176472 0.7304515886E-07 1.446527983 0.1164990783E-06 1.448879494 0.1704920875E-06 1.451231005 0.2351235019E-06 1.453582516 0.3103634578E-06 1.455934027 0.3959841869E-06 1.458285537 0.4914396331E-06 1.460637048 0.5956445343E-06 1.462988559 0.7065581050E-06 1.465340070 0.8204276069E-06 1.467691581 0.9307141595E-06 1.470043092 0.1027957609E-05 1.472394603 0.1103817654E-05 1.474746114 0.1157388690E-05 1.477097625 0.1194108748E-05 1.479449135 0.1219929204E-05 1.481800646 0.1238888399E-05 1.484152157 0.1253370799E-05 1.486503668 0.1264760905E-05 1.488855179 0.1273883533E-05 1.491206690 0.1281248766E-05 1.493558201 0.1287184250E-05 1.495909712 0.1291907959E-05 1.498261223 0.1295569550E-05 1.500612733 0.1298274740E-05 1.502964244 0.1300100167E-05 1.505315755 0.1301102772E-05 1.507667266 0.1301325880E-05 1.510018777 0.1300803255E-05 1.512370288 0.1299561864E-05 1.514721799 0.1297623816E-05 1.517073310 0.1295007722E-05 1.519424821 0.1291729694E-05 1.521776331 0.1287804066E-05 1.524127842 0.1283243938E-05 1.526479353 0.1242369970E-05 1.528830864 0.1192781597E-05 1.531182375 0.1142913732E-05 1.533533886 0.1093001354E-05 1.535885397 0.1043242299E-05 1.538236908 0.9938063040E-06 1.540588418 0.9448414125E-06 1.542939929 0.8964785154E-06 1.545291440 0.8488345799E-06 1.547642951 0.8020149566E-06 1.549994462 0.7561150366E-06 1.552345973 0.7112214466E-06 1.554697484 0.6674129161E-06 1.557048995 0.6247609087E-06 1.559400506 0.5833300847E-06 1.561752016 0.5431786431E-06 1.564103527 0.5043585770E-06 1.566455038 0.4669158681E-06 1.568806549 0.4308906392E-06 1.571158060 0.3963172794E-06 1.573509571 0.3632245508E-06 1.575861082 0.3316356867E-06 1.578212593 0.3015684856E-06 1.580564104 0.2730354071E-06 1.582915614 0.2460436718E-06 1.585267125 0.2205953694E-06 1.587618636 0.1966875746E-06 1.589970147 0.1743124751E-06 1.592321658 0.1534575100E-06 1.594673169 0.1341055211E-06 1.597024680 0.1162349165E-06 1.599376191 0.9981984599E-07 1.601727702 0.8483039021E-07 1.604079212 0.7123276047E-07 1.606430723 0.5898951093E-07 1.608782234 0.4805976143E-07 1.611133745 0.3839943057E-07 1.613485256 0.2996147814E-07 1.615836767 0.2269615601E-07 1.618188278 0.1655126645E-07 1.620539789 0.1147242694E-07 1.622891299 0.7403340107E-08 1.625242810 0.4286068001E-08 1.627594321 0.2061309164E-08 1.629945832 0.6686775428E-09 1.632297343 0.4698188318E-10 1.634648854 0.1345044247E-09 1.637000365 0.8692776384E-09 1.639351876 0.2189357787E-08 1.641703387 0.4033094091E-08 1.644054897 0.6339392301E-08 1.646406408 0.9047971515E-08 1.648757919 0.1209961311E-07 1.651109430 0.1543640070E-07 1.653460941 0.1900195003E-07 1.655812452 0.2274162790E-07 1.658163963 0.2660275915E-07 1.660515474 0.3053482070E-07 1.662866985 0.3448962213E-07 1.665218495 0.3842147173E-07 1.667570006 0.4228732766E-07 1.669921517 0.4604693338E-07 1.672273028 0.4966293710E-07 1.674624539 0.5310099454E-07 1.676976050 0.5632985501E-07 1.679327561 0.5932143027E-07 1.681679072 0.6205084620E-07 1.684030583 0.6449647706E-07 1.686382093 0.6663996257E-07 1.688733604 0.6846620773E-07 1.691085115 0.6996336563E-07 1.693436626 0.7112280360E-07 1.695788137 0.7193905302E-07 1.698139648 0.7240974319E-07 1.700491159 0.7253551992E-07 1.702842670 0.7231994932E-07 1.705194180 0.7176940751E-07 1.707545691 0.7089295708E-07 1.709897202 0.6970221095E-07 1.712248713 0.6821118471E-07 1.714600224 0.6643613814E-07 1.716951735 0.6439540711E-07 1.719303246 0.6210922669E-07 1.721654757 0.5959954672E-07 1.724006268 0.5688984079E-07 1.726357778 0.5400490977E-07 1.728709289 0.5097068114E-07 1.731060800 0.4781400518E-07 1.733412311 0.4456244919E-07 1.735763822 0.4124409094E-07 1.738115333 0.3788731255E-07 1.740466844 0.3452059585E-07 1.742818355 0.3117232045E-07 1.745169866 0.2787056559E-07 1.747521376 0.2464291685E-07 1.749872887 0.2151627877E-07 1.752224398 0.1851669444E-07 1.754575909 0.1566917294E-07 1.756927420 0.1299752553E-07 1.759278931 0.1052421156E-07 1.761630442 0.8270194762E-08 1.763981953 0.6254810677E-08 1.766333464 0.4495645886E-08 1.768684974 0.3008429587E-08 1.771036485 0.1806937989E-08 1.773387996 0.9029119008E-09 1.775739507 0.3059877584E-09 1.778091018 0.2364219463E-10 1.780442529 0.6115002486E-10 1.782794040 0.4215551944E-09 1.785145551 0.1105653618E-08 1.787497061 0.2111985590E-08 1.789848572 0.3436832511E-08 1.792200083 0.5074204815E-08 1.794551594 0.7015782958E-08 1.796903105 0.9250674819E-08 1.799254616 0.1065030419E-07 1.801606127 0.9606627859E-08 1.803957638 0.8646330093E-08 1.806309149 0.7764606958E-08 1.808660659 0.6956810745E-08 1.811012170 0.6218450102E-08 1.813363681 0.5545189793E-08 1.815715192 0.4932850141E-08 1.818066703 0.4377406239E-08 1.820418214 0.3874987000E-08 1.822769725 0.3421874110E-08 1.825121236 0.3014500965E-08 1.827472747 0.2649451658E-08 1.829824257 0.2323460084E-08 1.832175768 0.2033409218E-08 1.834527279 0.1776330631E-08 1.836878790 0.1549404267E-08 1.839230301 0.1289266707E-08 1.841581812 0.1000665103E-08 1.843933323 0.7640508841E-09 1.846284834 0.5727608148E-09 1.848636345 0.4205553972E-09 1.850987855 0.3016326786E-09 1.853339366 0.2106410688E-09 1.855690877 0.1426908741E-09 1.858042388 0.9336410096E-10 1.860393899 0.5872204372E-10 1.862745410 0.3531077621E-10 1.865096921 0.2016817964E-10 1.867448432 0.1084949671E-10 1.869799942 0.5501363283E-11 1.872151453 0.2876497883E-11 1.874502964 0.2102677135E-11 1.876849995 0.4676626375E-11 1.879197025 0.1823481556E-10 1.881544055 0.6120827696E-10 1.883891086 0.1653773880E-09 1.886238116 0.3757614241E-09 1.888585147 0.4080945310E-09 1.890932177 0.4478956647E-09 1.893279207 0.4959590121E-09 1.895626238 0.5531884146E-09 1.897973268 0.6205925028E-09 1.900320299 0.6992792940E-09 1.902667329 0.7904502929E-09 1.905014359 0.8953941402E-09 1.907361390 0.1015479858E-08 1.909708420 0.1152149742E-08 1.912055451 0.1306911964E-08 1.914402481 0.1481332933E-08 1.916749511 0.1677029485E-08 1.919096542 0.1895660967E-08 1.921443572 0.2138921277E-08 1.923790603 0.2408530930E-08 1.926137633 0.2706229216E-08 1.928484663 0.3033766527E-08 1.930831694 0.3392896912E-08 1.933178724 0.3785370926E-08 1.935525754 0.4212928841E-08 1.937872785 0.4677294278E-08 1.940219815 0.5180168311E-08 1.942566846 0.5723224097E-08 1.944913876 0.6308102066E-08 1.947260906 0.6936405724E-08 1.949607937 0.7609698077E-08 1.951954967 0.8329498701E-08 1.954301998 0.9097281475E-08 1.956649028 0.9914472960E-08 1.958996058 0.1078245142E-07 1.961343089 0.1170254650E-07 1.963690119 0.1267603939E-07 1.966037150 0.1370416371E-07 1.968384180 0.1478810672E-07 1.970731210 0.1592901109E-07 1.973078241 0.1712797701E-07 1.975425271 0.1838606463E-07 1.977772302 0.1970429676E-07 1.980119332 0.2108366169E-07 1.982466362 0.2252511620E-07 1.984813393 0.2402958857E-07 1.987160423 0.2559798154E-07 1.989507454 0.2723117521E-07 1.991854484 0.2893002977E-07 1.994201514 0.3069538810E-07 1.996548545 0.3252807802E-07 1.998895575 0.3247559820E-07 2.001242605 0.3122646621E-07 2.003589636 0.3003687560E-07 2.005936666 0.2890715551E-07 2.008283697 0.2783749872E-07 2.010630727 0.2682797655E-07 2.012977757 0.2587855473E-07 2.015324788 0.2498911038E-07 2.017671818 0.2415944980E-07 2.020018849 0.2338932717E-07 2.022365879 0.2267846394E-07 2.024712909 0.2202656893E-07 2.027059940 0.2143335895E-07 2.029406970 0.2089857992E-07 2.031754001 0.2042202830E-07 2.034101031 0.2000357286E-07 2.036448061 0.1964317647E-07 2.038795092 0.1934091810E-07 2.041142122 0.1909701454E-07 2.043489153 0.1891184212E-07 2.045836183 0.1878595799E-07 2.048183213 0.1872012106E-07 2.050530244 0.1871531238E-07 2.052877274 0.1877275486E-07 2.055224304 0.1889393226E-07 2.057571335 0.1908060728E-07 2.059918365 0.1933483869E-07 2.062265396 0.1965899738E-07 2.064612426 0.2005578117E-07 2.066959456 0.2052822841E-07 2.069306487 0.2107973011E-07 2.071653517 0.2171404069E-07 2.074000548 0.2243528705E-07 2.076347578 0.2324797608E-07 2.078694608 0.2415700046E-07 2.081041639 0.2516764259E-07 2.083388669 0.2628557673E-07 2.085735700 0.2751686925E-07 2.088082730 0.2886797685E-07 2.090429760 0.3034574284E-07 2.092776791 0.3195739137E-07 2.095123821 0.3371051961E-07 2.097470852 0.3561308782E-07 2.099817882 0.3767340739E-07 2.102164912 0.3990012677E-07 2.104511943 0.4230221525E-07 2.106858973 0.4488894481E-07 2.109206004 0.4766986983E-07 2.111553034 0.5065480480E-07 2.113900064 0.5385380011E-07 2.116247095 0.5727711589E-07 2.118594125 0.6093519402E-07 2.120941155 0.6483862830E-07 2.123288186 0.6899813295E-07 2.125635216 0.7342450946E-07 2.127982247 0.7812861192E-07 2.130329277 0.8312131087E-07 2.132676307 0.8841345583E-07 2.135023338 0.9401583658E-07 2.137370368 0.9993914342E-07 2.139717399 0.1061939263E-06 2.142064429 0.1127905532E-06 2.144411459 0.1197391679E-06 2.146758490 0.1270496467E-06 2.149105520 0.1347315554E-06 2.151452551 0.1427941056E-06 2.153799581 0.1512461107E-06 2.156146611 0.1600959423E-06 2.158493642 0.1693514866E-06 2.160840672 0.1790201011E-06 2.163187703 0.1840975021E-06 2.165534733 0.1816241451E-06 2.167881763 0.1790672292E-06 2.170228794 0.1764316069E-06 2.172575824 0.1737222171E-06 2.174922855 0.1709440736E-06 2.177269885 0.1681022525E-06 2.179616915 0.1652018798E-06 2.181963946 0.1622481182E-06 2.184310976 0.1592461540E-06 2.186658006 0.1562011841E-06 2.189005037 0.1531184026E-06 2.191352067 0.1500029879E-06 2.193699098 0.1468600894E-06 2.196046128 0.1436948153E-06 2.198393158 0.1405122196E-06 2.200740189 0.1373172904E-06 2.203087219 0.1341149377E-06 2.205434250 0.1309099825E-06 2.207781280 0.1277071456E-06 2.210128310 0.1245110370E-06 2.212475341 0.1213261467E-06 2.214822371 0.1181568349E-06 2.217169402 0.1150073234E-06 2.219516432 0.1118816877E-06 2.221863462 0.1087838492E-06 2.224210493 0.1057175692E-06 2.226557523 0.1026864420E-06 2.228904554 0.9969389013E-07 2.231251584 0.9674315971E-07 2.233598614 0.9383731632E-07 2.235945645 0.9097924204E-07 2.238292675 0.8817163301E-07 2.240639706 0.8541699776E-07 2.242986736 0.8271765629E-07 2.245333766 0.8007573990E-07 2.247680797 0.7749319168E-07 2.250027827 0.7497176780E-07 2.252374857 0.7251303942E-07 2.254721888 0.7011839532E-07 2.257068918 0.6778904517E-07 2.259415949 0.6552602346E-07 2.261762979 0.6333019401E-07 2.264110009 0.6120225510E-07 2.266457040 0.5914274514E-07 2.268804070 0.5715204883E-07 2.271151101 0.5523040389E-07 2.273498131 0.5337790814E-07 2.275845161 0.5159452711E-07 2.278192192 0.4988010192E-07 2.280539222 0.4823435759E-07 2.282886253 0.4665691158E-07 2.285233283 0.4514728265E-07 2.287580313 0.4370489983E-07 2.289927344 0.4232911171E-07 2.292274374 0.4101919567E-07 2.294621405 0.3977436739E-07 2.296968435 0.3859379023E-07 2.299315465 0.3747658466E-07 2.301662496 0.3642183769E-07 2.304009526 0.3542861212E-07 2.306356557 0.3449595570E-07 2.308703587 0.3362291009E-07 2.311050617 0.3280851960E-07 2.313397648 0.3205183968E-07 2.315744678 0.3135194509E-07 2.318091708 0.3070793773E-07 2.320438739 0.3011895410E-07 2.322785769 0.2958417238E-07 2.325132800 0.2910281903E-07 2.327479830 0.2867417492E-07 2.329826860 0.2829758097E-07 2.332173891 0.2797244332E-07 2.334520921 0.2769823785E-07 2.336867952 0.2747451420E-07 2.339214982 0.2730089920E-07 2.341562012 0.2717709971E-07 2.343909043 0.2710290479E-07 2.346256073 0.2707818729E-07 0.000000000 0.1291668591E-10 0.2347351854E-02 0.1232772350E-10 0.4694703708E-02 0.1081516424E-10 0.7042055561E-02 0.9000142028E-11 0.9389407415E-02 0.7430943093E-11 0.1173675927E-01 0.6237643086E-11 0.1408411112E-01 0.5302691200E-11 0.1643146298E-01 0.4506151637E-11 0.1877881483E-01 0.3781356915E-11 0.2112616668E-01 0.3099727435E-11 0.2347351854E-01 0.2454198561E-11 0.2582087039E-01 0.1849805306E-11 0.2816822225E-01 0.1298815006E-11 0.3051557410E-01 0.8181669453E-12 0.3286292595E-01 0.4280492819E-12 0.3521027781E-01 0.1510481115E-12 0.3755762966E-01 0.1159380789E-13 0.3990498151E-01 0.3556688317E-13 0.4225233337E-01 0.2499918004E-12 0.4459968522E-01 0.6827802679E-12 0.4694703708E-01 0.1362502707E-11 0.4929438893E-01 0.2318175816E-11 0.5164174078E-01 0.3579059305E-11 0.5398909264E-01 0.5174457805E-11 0.5633644449E-01 0.7133525740E-11 0.5868379634E-01 0.9485073984E-11 0.6103114820E-01 0.1225737782E-10 0.6337850005E-01 0.1547798609E-10 0.6572585191E-01 0.1917353183E-10 0.6807320376E-01 0.2336954467E-10 0.7042055561E-01 0.2809026559E-10 0.7276790747E-01 0.3335846467E-10 0.7511525932E-01 0.3919526243E-10 0.7746261117E-01 0.4561995560E-10 0.7980996303E-01 0.5264984801E-10 0.8215731488E-01 0.6030008745E-10 0.8450466674E-01 0.6858350945E-10 0.8685201859E-01 0.7751048885E-10 0.8919937044E-01 0.8708880036E-10 0.9154672230E-01 0.9732348934E-10 0.9389407415E-01 0.1082167546E-09 0.9624142601E-01 0.1197678453E-09 0.9858877786E-01 0.1319729763E-09 0.1009361297 0.1448252675E-09 0.1032834816 0.1583147187E-09 0.1056308334 0.1724282440E-09 0.1079781853 0.1871498180E-09 0.1103255371 0.2024608625E-09 0.1126728890 0.2183412427E-09 0.1150202408 0.2347721180E-09 0.1173675927 0.2517461535E-09 0.1197149445 0.2693233696E-09 0.1220622964 0.2886481145E-09 0.1244096483 0.5823810965E-09 0.1267570001 0.1202328700E-08 0.1291043520 0.2043188076E-08 0.1314517038 0.3101498447E-08 0.1337990557 0.4373223148E-08 0.1361464075 0.5853454662E-08 0.1384937594 0.7536393107E-08 0.1408411112 0.9415351679E-08 0.1431884631 0.1148277002E-07 0.1455358149 0.1373023227E-07 0.1478831668 0.1614848889E-07 0.1502305186 0.1872748214E-07 0.1525778705 0.2145637492E-07 0.1549252223 0.2432358302E-07 0.1572725742 0.2731681067E-07 0.1596199261 0.3042308936E-07 0.1619672779 0.3362881978E-07 0.1643146298 0.3691981696E-07 0.1666619816 0.4028135836E-07 0.1690093335 0.4369823494E-07 0.1713566853 0.4715480505E-07 0.1737040372 0.5063505104E-07 0.1760513890 0.5412263851E-07 0.1783987409 0.5760097802E-07 0.1807460927 0.6105328917E-07 0.1830934446 0.6446266689E-07 0.1854407964 0.6781214980E-07 0.1877881483 0.7108479046E-07 0.1901355002 0.7426372739E-07 0.1924828520 0.7733225866E-07 0.1948302039 0.8027391689E-07 0.1971775557 0.8307254544E-07 0.1995249076 0.8571237567E-07 0.2018722594 0.8817810499E-07 0.2042196113 0.9045497564E-07 0.2065669631 0.9252885385E-07 0.2089143150 0.9438630919E-07 0.2112616668 0.9601469409E-07 0.2136090187 0.9740222305E-07 0.2159563705 0.9853805153E-07 0.2183037224 0.9941235419E-07 0.2206510743 0.1000164023E-06 0.2229984261 0.1003426403E-06 0.2253457780 0.1003847606E-06 0.2276931298 0.1001377776E-06 0.2300404817 0.9959809944E-07 0.2323878335 0.9876359821E-07 0.2347351854 0.9763367779E-07 0.2370825372 0.9620933958E-07 0.2394298891 0.9449324557E-07 0.2417772409 0.9248977874E-07 0.2441245928 0.9020510053E-07 0.2464719446 0.8764720518E-07 0.2488192965 0.8482597083E-07 0.2511666484 0.8175320705E-07 0.2535140002 0.7844269889E-07 0.2558613521 0.7491024698E-07 0.2582087039 0.7117370381E-07 0.2605560558 0.6725300596E-07 0.2629034076 0.6317020213E-07 0.2652507595 0.5894947698E-07 0.2675981113 0.5461717066E-07 0.2699454632 0.5020179415E-07 0.2722928150 0.4573404031E-07 0.2746401669 0.4124679101E-07 0.2769875187 0.3677512041E-07 0.2793348706 0.3235629514E-07 0.2816822225 0.2802977205E-07 0.2840295743 0.2383719502E-07 0.2863769262 0.1982239310E-07 0.2887242780 0.1603138374E-07 0.2910716299 0.1251238798E-07 0.2934189817 0.9315869020E-08 0.2957663336 0.6494616106E-08 0.2981136854 0.4103914845E-08 0.3004610373 0.2201885995E-08 0.3028083891 0.8501592145E-09 0.3051557410 0.1151970498E-09 0.3075030928 0.6981398417E-10 0.3098504447 0.3479834419E-09 0.3121977966 0.9957650617E-09 0.3145451484 0.3057505040E-08 0.3168925003 0.6197235283E-08 0.3192398521 0.1037430164E-07 0.3215872040 0.1560059832E-07 0.3239345558 0.2193086389E-07 0.3262819077 0.2943646651E-07 0.3286292595 0.3819258268E-07 0.3309766114 0.4827466406E-07 0.3333239632 0.5975784407E-07 0.3356713151 0.7271697146E-07 0.3380186669 0.8722669435E-07 0.3403660188 0.1033614895E-06 0.3427133707 0.1211956362E-06 0.3450607225 0.1200496293E-06 0.3474080744 0.5740636066E-07 0.3497554262 0.1790899735E-07 0.3521027781 0.3668271327E-08 0.3544501299 0.3999458144E-08 0.3567974818 0.4349313176E-08 0.3591448336 0.4718276411E-08 0.3614921855 0.5106775775E-08 0.3638395373 0.5515226148E-08 0.3661868892 0.5944028388E-08 0.3685342410 0.6393568363E-08 0.3708815929 0.6864215980E-08 0.3732289448 0.7356324232E-08 0.3755762966 0.7870228254E-08 0.3779236485 0.8406244384E-08 0.3802710003 0.8964669250E-08 0.3826183522 0.9545778865E-08 0.3849657040 0.1014982774E-07 0.3873130559 0.1077704804E-07 0.3896604077 0.1142764870E-07 0.3920077596 0.1210181466E-07 0.3943551114 0.1279970604E-07 0.3967024633 0.1352145738E-07 0.3990498151 0.1426717691E-07 0.4013971670 0.1503694585E-07 0.4037445189 0.1583081773E-07 0.4060918707 0.1664881777E-07 0.4084392226 0.1749094226E-07 0.4107865744 0.1835715802E-07 0.4131339263 0.1924740182E-07 0.4154812781 0.2016158000E-07 0.4178286300 0.2109956790E-07 0.4201759818 0.2206120959E-07 0.4225233337 0.2304631740E-07 0.4248706855 0.2405467169E-07 0.4272180374 0.2508602056E-07 0.4295653892 0.2614007962E-07 0.4319127411 0.2721653184E-07 0.4342600929 0.2831502743E-07 0.4366074448 0.2943518379E-07 0.4389547967 0.3057658544E-07 0.4413021485 0.3173878410E-07 0.4436495004 0.3292129878E-07 0.4459968522 0.3412361587E-07 0.4483442041 0.3534518938E-07 0.4506915559 0.3658544116E-07 0.4530389078 0.3784376120E-07 0.4553862596 0.3911950797E-07 0.4577336115 0.4041200883E-07 0.4600809633 0.4172056048E-07 0.4624283152 0.4304442949E-07 0.4647756670 0.4438285279E-07 0.4671230189 0.4573503838E-07 0.4694703708 0.4710016590E-07 0.4718177226 0.4847738738E-07 0.4741650745 0.4986582802E-07 0.4765124263 0.5126458695E-07 0.4788597782 0.5267273814E-07 0.4812071300 0.5408933126E-07 0.4835544819 0.5551339266E-07 0.4859018337 0.5694392636E-07 0.4882491856 0.5837991507E-07 0.4905965374 0.5982032128E-07 0.4929438893 0.6126408839E-07 0.4952912411 0.6271014187E-07 0.4976385930 0.6415739043E-07 0.4999859449 0.6560472727E-07 0.5023332967 0.6705103137E-07 0.5046806486 0.6849516874E-07 0.5070280004 0.6993599379E-07 0.5093753523 0.7137235064E-07 0.5117227041 0.7280307458E-07 0.5140700560 0.7422699339E-07 0.5164174078 0.7564292882E-07 0.5187647597 0.7704969803E-07 0.5211121115 0.7844611504E-07 0.5234594634 0.7983099224E-07 0.5258068152 0.8120314186E-07 0.5281541671 0.8256137749E-07 0.5305015190 0.8390451557E-07 0.5328488708 0.8523137694E-07 0.5351962227 0.8654078835E-07 0.5375435745 0.8783158397E-07 0.5398909264 0.8910260694E-07 0.5422382782 0.9035271086E-07 0.5445856301 0.9158076132E-07 0.5469329819 0.9278563739E-07 0.5492803338 0.9396623314E-07 0.5516276856 0.9512145908E-07 0.5539750375 0.9625024364E-07 0.5563223893 0.9735153463E-07 0.5586697412 0.9842430064E-07 0.5610170931 0.9946753243E-07 0.5633644449 0.1004802443E-06 0.5657117968 0.1014614756E-06 0.5680591486 0.9381394322E-07 0.5704065005 0.8488441324E-07 0.5727538523 0.7671966018E-07 0.5751012042 0.6927599489E-07 0.5774485560 0.6251036095E-07 0.5797959079 0.5638050359E-07 0.5821432597 0.5084513602E-07 0.5844906116 0.4586410273E-07 0.5868379634 0.4139853972E-07 0.5891853153 0.3741103086E-07 0.5915326672 0.3386576017E-07 0.5938800190 0.3072865916E-07 0.5962273709 0.2796754877E-07 0.5985747227 0.2555227509E-07 0.6009220746 0.2345483807E-07 0.6032694264 0.2164951258E-07 0.6056167783 0.2011296088E-07 0.6079641301 0.1882433582E-07 0.6103114820 0.1776537396E-07 0.6126588338 0.1692047793E-07 0.6150061857 0.1627678729E-07 0.6173535375 0.1582423744E-07 0.6197008894 0.1555560592E-07 0.6220482413 0.1546654582E-07 0.6243952716 0.1551941837E-07 0.6267423020 0.1568290982E-07 0.6290893324 0.1595859546E-07 0.6314363628 0.1634910580E-07 0.6337833932 0.1685811273E-07 0.6361304236 0.1749031016E-07 0.6384774540 0.1825138922E-07 0.6408244844 0.1914800821E-07 0.6431715148 0.2018775724E-07 0.6455185452 0.2137911785E-07 0.6478655756 0.2273141772E-07 0.6502126060 0.2425478058E-07 0.6525596364 0.2596007167E-07 0.6549066668 0.2785883878E-07 0.6572536971 0.2996324923E-07 0.6596007275 0.3228602300E-07 0.6619477579 0.3484036222E-07 0.6642947883 0.3763987738E-07 0.6666418187 0.4069851044E-07 0.6689888491 0.4403045527E-07 0.6713358795 0.4765007555E-07 0.6736829099 0.5157182059E-07 0.6760299403 0.5581013930E-07 0.6783769707 0.6037939261E-07 0.6807240011 0.6529376474E-07 0.6830710315 0.7056717352E-07 0.6854180619 0.7621318008E-07 0.6877650922 0.8224489829E-07 0.6901121226 0.8867490399E-07 0.6924591530 0.9551514451E-07 0.6948061834 0.1027768484E-06 0.6971532138 0.1093298216E-06 0.6995002442 0.1121426207E-06 0.7018472746 0.1150528249E-06 0.7041943050 0.1180604576E-06 0.7065413354 0.1211654259E-06 0.7088883658 0.1243675138E-06 0.7112353962 0.1276663763E-06 0.7135824266 0.1310615334E-06 0.7159294570 0.1345523643E-06 0.7182764874 0.1381381028E-06 0.7206235177 0.1418178319E-06 0.7229705481 0.1455904799E-06 0.7253175785 0.1494548161E-06 0.7276646089 0.1534094479E-06 0.7300116393 0.1574528170E-06 0.7323586697 0.1615831978E-06 0.7347057001 0.1657986946E-06 0.7370527305 0.1700972406E-06 0.7393997609 0.1744765967E-06 0.7417467913 0.1789343514E-06 0.7440938217 0.1834679204E-06 0.7464408521 0.1880745475E-06 0.7487878825 0.1927513060E-06 0.7511349128 0.1974951002E-06 0.7534819432 0.2023026677E-06 0.7558289736 0.2071705824E-06 0.7581760040 0.2115099676E-06 0.7605230344 0.2143997838E-06 0.7628700648 0.2172789009E-06 0.7652170952 0.2201431806E-06 0.7675641256 0.2229884117E-06 0.7699111560 0.2258103168E-06 0.7722581864 0.2286045595E-06 0.7746052168 0.2313667517E-06 0.7769522472 0.2340924620E-06 0.7792992776 0.2367772234E-06 0.7816463080 0.2394165424E-06 0.7839933383 0.2420059079E-06 0.7863403687 0.2445408006E-06 0.7886873991 0.2470167027E-06 0.7910344295 0.2494291079E-06 0.7933814599 0.2517735317E-06 0.7957284903 0.2540455223E-06 0.7980755207 0.2562406708E-06 0.8004225511 0.2583546228E-06 0.8027695815 0.2603830895E-06 0.8051166119 0.2623218592E-06 0.8074636423 0.2641668089E-06 0.8098106727 0.2659139160E-06 0.8121577031 0.2675592702E-06 0.8145047335 0.2690990857E-06 0.8168517638 0.2705297129E-06 0.8191987942 0.2718476504E-06 0.8215458246 0.2730495575E-06 0.8238928550 0.2741322657E-06 0.8262398854 0.2750927906E-06 0.8285869158 0.2759283441E-06 0.8309339462 0.2766363456E-06 0.8332809766 0.2772144333E-06 0.8356280070 0.2776604759E-06 0.8379750374 0.2779725823E-06 0.8403220678 0.2781491131E-06 0.8426690982 0.2781886894E-06 0.8450161286 0.2780902028E-06 0.8473631589 0.2778528236E-06 0.8497101893 0.2774760089E-06 0.8520572197 0.2769595094E-06 0.8544042501 0.2763033759E-06 0.8567512805 0.2755079636E-06 0.8590983109 0.2745739368E-06 0.8614453413 0.2735022707E-06 0.8637923717 0.2722942531E-06 0.8661394021 0.2709514835E-06 0.8684864325 0.2694758718E-06 0.8708334629 0.2678696339E-06 0.8731804933 0.2661352869E-06 0.8755275237 0.2642756412E-06 0.8778745541 0.2622937918E-06 0.8802215844 0.2601931069E-06 0.8825686148 0.2579772150E-06 0.8849156452 0.2556499903E-06 0.8872626756 0.2532155362E-06 0.8896097060 0.2506781668E-06 0.8919567364 0.2480423876E-06 0.8943037668 0.2453128748E-06 0.8966507972 0.2424944528E-06 0.8989978276 0.2395920722E-06 0.9013448580 0.2366107862E-06 0.9036918884 0.2335557269E-06 0.9060389188 0.2304320824E-06 0.9083859492 0.2272450734E-06 0.9107329796 0.2239999309E-06 0.9130800099 0.2207018747E-06 0.9154270403 0.2173560930E-06 0.9177740707 0.2139677237E-06 0.9201211011 0.2105418370E-06 0.9224681315 0.2070834197E-06 0.9248151619 0.2035973613E-06 0.9271621923 0.2000884425E-06 0.9295092227 0.1965613247E-06 0.9318562531 0.1930205424E-06 0.9342032835 0.1894704963E-06 0.9365503139 0.1859154490E-06 0.9388973443 0.1823595217E-06 0.9412443747 0.1788066927E-06 0.9435914050 0.1752607965E-06 0.9459384354 0.1717255250E-06 0.9482854658 0.1682044286E-06 0.9506324962 0.1647009183E-06 0.9529795266 0.1612182684E-06 0.9553265570 0.1577596197E-06 0.9576735874 0.1543279826E-06 0.9600206178 0.1509262402E-06 0.9623676482 0.1475571519E-06 0.9647146786 0.1442233562E-06 0.9670617090 0.1409273740E-06 0.9694087394 0.1376716110E-06 0.9717557698 0.1344583600E-06 0.9741028002 0.1312898036E-06 0.9764498305 0.1281680153E-06 0.9787968609 0.1250949615E-06 0.9811438913 0.1220725030E-06 0.9834909217 0.1191023952E-06 0.9858379521 0.1161862902E-06 0.9881849825 0.1133257366E-06 0.9905320129 0.1105221807E-06 0.9928790433 0.1077769670E-06 0.9952260737 0.1050913390E-06 0.9975731041 0.1024664399E-06 0.9999201345 0.9990331327E-07 1.002267165 0.9740290449E-07 1.004614195 0.9496606151E-07 1.006961226 0.9259353650E-07 1.009308256 0.9028598745E-07 1.011655286 0.8804398006E-07 1.014002317 0.8586799002E-07 1.016349347 0.8418084609E-07 1.018696378 0.8504286388E-07 1.021043408 0.8588694512E-07 1.023390438 0.8671236496E-07 1.025737469 0.8751840952E-07 1.028084499 0.8830437688E-07 1.030431530 0.8906957814E-07 1.032778560 0.8981333839E-07 1.035125590 0.9053499767E-07 1.037472621 0.9123391193E-07 1.039819651 0.9190945402E-07 1.042166682 0.9256101458E-07 1.044513712 0.9318800293E-07 1.046860742 0.9378984798E-07 1.049207773 0.9436599908E-07 1.051554803 0.9491592681E-07 1.053901834 0.9543912383E-07 1.056248864 0.9593510562E-07 1.058595894 0.9640341122E-07 1.060942925 0.9684360392E-07 1.063289955 0.9725527197E-07 1.065636985 0.9763802915E-07 1.067984016 0.9799151542E-07 1.070331046 0.9831539743E-07 1.072678077 0.9860936906E-07 1.075025107 0.9887315191E-07 1.077372137 0.9910649568E-07 1.079719168 0.9930917861E-07 1.082066198 0.9948100779E-07 1.084413229 0.9962181949E-07 1.086760259 0.9973147940E-07 1.089107289 0.9980988282E-07 1.091454320 0.9985695486E-07 1.093801350 0.9987265054E-07 1.096152861 0.9934684571E-07 1.098504372 0.9778073976E-07 1.100855883 0.9520789103E-07 1.103207394 0.9168304170E-07 1.105558905 0.8728045596E-07 1.107910415 0.8209181246E-07 1.110261926 0.7622382456E-07 1.112613437 0.6979575970E-07 1.114964948 0.6293700624E-07 1.117316459 0.5920134914E-07 1.119667970 0.6108067078E-07 1.122019481 0.6315971108E-07 1.124370992 0.6544330008E-07 1.126722503 0.6793630198E-07 1.129074013 0.7064351288E-07 1.131425524 0.7356954717E-07 1.133777035 0.7671871165E-07 1.136128546 0.8009486611E-07 1.138480057 0.8370126880E-07 1.140831568 0.8754040504E-07 1.143183079 0.9161379694E-07 1.145534590 0.9592179163E-07 1.147886101 0.1004633254E-06 1.150237611 0.1052356605E-06 1.152589122 0.1102340904E-06 1.154940633 0.1154516115E-06 1.157292144 0.1208785545E-06 1.159643655 0.1265021748E-06 1.161995166 0.1323061957E-06 1.164346677 0.1382703050E-06 1.166698188 0.1443696038E-06 1.169049699 0.1505740141E-06 1.171401209 0.1568476543E-06 1.173752720 0.1631482071E-06 1.176104231 0.1694263134E-06 1.178455742 0.1756250518E-06 1.180807253 0.1816795864E-06 1.183158764 0.1875171043E-06 1.185510275 0.1930572021E-06 1.187861786 0.1982129181E-06 1.190213296 0.2028926299E-06 1.192564807 0.2070030187E-06 1.194916318 0.2104532142E-06 1.197267829 0.2131600479E-06 1.199619340 0.2150540625E-06 1.201970851 0.2160855972E-06 1.204322362 0.2162300086E-06 1.206673873 0.2154910401E-06 1.209025384 0.2139015994E-06 1.211376894 0.2115217124E-06 1.213728405 0.2084340266E-06 1.216079916 0.2047377044E-06 1.218431427 0.2005417423E-06 1.220782938 0.1959586544E-06 1.223134449 0.1910991682E-06 1.225485960 0.1860682420E-06 1.227837471 0.1809624291E-06 1.230188982 0.1758684252E-06 1.232540492 0.1708625558E-06 1.234892003 0.1660109443E-06 1.237243514 0.1613701330E-06 1.239595025 0.1569879760E-06 1.241946536 0.1529046696E-06 1.244298047 0.1491538286E-06 1.246649558 0.1457635480E-06 1.249001069 0.1427574146E-06 1.251352580 0.1401554474E-06 1.253704090 0.1379749589E-06 1.256055601 0.1362313332E-06 1.258407112 0.1349387229E-06 1.260758623 0.1341106676E-06 1.263110134 0.1337606371E-06 1.265461645 0.1339025050E-06 1.267813156 0.1345509545E-06 1.270164667 0.1357218205E-06 1.272516177 0.1374323704E-06 1.274867688 0.1397015261E-06 1.277219199 0.1425500272E-06 1.279570710 0.1460005384E-06 1.281922221 0.1500776992E-06 1.284273732 0.1548081180E-06 1.286625243 0.1602203087E-06 1.288976754 0.1663445703E-06 1.291328265 0.1732128076E-06 1.293679775 0.1808582929E-06 1.296031286 0.1893153667E-06 1.298382797 0.1986190760E-06 1.300734308 0.2088047499E-06 1.303085819 0.2199075089E-06 1.305437330 0.2319617094E-06 1.307788841 0.2450003199E-06 1.310140352 0.2590542290E-06 1.312491863 0.2741514861E-06 1.314843373 0.2903164732E-06 1.317194884 0.3075690110E-06 1.319546395 0.3259234020E-06 1.321897906 0.3453874143E-06 1.324249417 0.3659612147E-06 1.326600928 0.3876362601E-06 1.328952439 0.4103941605E-06 1.331303950 0.4342055328E-06 1.333655461 0.4590288667E-06 1.336006971 0.4848094335E-06 1.338358482 0.5114782728E-06 1.340709993 0.5389513017E-06 1.343061504 0.5671285994E-06 1.345413015 0.5958939310E-06 1.347764526 0.6171367358E-06 1.350116037 0.6293893477E-06 1.352467548 0.6418588064E-06 1.354819059 0.6545393124E-06 1.357170569 0.6674246208E-06 1.359522080 0.6805080415E-06 1.361873591 0.6937824400E-06 1.364225102 0.7072402410E-06 1.366576613 0.7208734321E-06 1.368928124 0.7346735713E-06 1.371279635 0.7486317941E-06 1.373631146 0.7627388245E-06 1.375982656 0.7769849870E-06 1.378334167 0.7913602214E-06 1.380685678 0.8058540999E-06 1.383037189 0.8204558473E-06 1.385388700 0.8351543634E-06 1.387740211 0.8499382496E-06 1.390091722 0.8647958385E-06 1.392443233 0.8797152283E-06 1.394794744 0.8946843215E-06 1.397146254 0.9096908699E-06 1.399497765 0.9247225251E-06 1.401849276 0.9397668979E-06 1.404200787 0.9548116266E-06 1.406552298 0.9698444568E-06 1.408903809 0.9848533354E-06 1.411255320 0.9998265225E-06 1.413606831 0.1014752725E-05 1.415958342 0.1029621261E-05 1.418309852 0.1044422256E-05 1.420661363 0.1059146897E-05 1.423012874 0.1073787739E-05 1.425364385 0.1088339112E-05 1.427715896 0.1102797636E-05 1.430067407 0.1117162903E-05 1.432418918 0.1131438401E-05 1.434770429 0.1145632755E-05 1.437121940 0.1159761467E-05 1.439473450 0.1173849375E-05 1.441824961 0.1187934222E-05 1.444176472 0.1202071953E-05 1.446527983 0.1216344803E-05 1.448879494 0.1230873999E-05 1.451231005 0.1245840395E-05 1.453582516 0.1261519205E-05 1.455934027 0.1278340821E-05 1.458285537 0.1297001640E-05 1.460637048 0.1318673483E-05 1.462988559 0.1345406110E-05 1.465340070 0.1380867192E-05 1.467691581 0.1431397035E-05 1.470043092 0.1506120993E-05 1.472394603 0.1528409963E-05 1.474746114 0.1542106554E-05 1.477097625 0.1555464226E-05 1.479449135 0.1568377623E-05 1.481800646 0.1580715281E-05 1.484152157 0.1592310895E-05 1.486503668 0.1602951232E-05 1.488855179 0.1612359584E-05 1.491206690 0.1620173801E-05 1.493558201 0.1625919082E-05 1.495909712 0.1628979329E-05 1.498261223 0.1628579734E-05 1.500612733 0.1623808806E-05 1.502964244 0.1613722273E-05 1.505315755 0.1597552962E-05 1.507667266 0.1574965572E-05 1.510018777 0.1546198229E-05 1.512370288 0.1511977277E-05 1.514721799 0.1473275170E-05 1.517073310 0.1431077272E-05 1.519424821 0.1386249936E-05 1.521776331 0.1339501623E-05 1.524127842 0.1291394038E-05 1.526479353 0.1278061579E-05 1.528830864 0.1272268738E-05 1.531182375 0.1265876876E-05 1.533533886 0.1258897351E-05 1.535885397 0.1251341551E-05 1.538236908 0.1243221008E-05 1.540588418 0.1234547479E-05 1.542939929 0.1225333003E-05 1.545291440 0.1215589958E-05 1.547642951 0.1205331084E-05 1.549994462 0.1194569518E-05 1.552345973 0.1183318801E-05 1.554697484 0.1171592892E-05 1.557048995 0.1159406165E-05 1.559400506 0.1146773414E-05 1.561752016 0.1133709839E-05 1.564103527 0.1120231040E-05 1.566455038 0.1106352999E-05 1.568806549 0.1092092068E-05 1.571158060 0.1077464951E-05 1.573509571 0.1062488675E-05 1.575861082 0.1047180577E-05 1.578212593 0.1031558274E-05 1.580564104 0.1015639637E-05 1.582915614 0.9994427686E-06 1.585267125 0.9829859692E-06 1.587618636 0.9662877117E-06 1.589970147 0.9493666105E-06 1.592321658 0.9322413916E-06 1.594673169 0.9149308612E-06 1.597024680 0.8974538750E-06 1.599376191 0.8798293063E-06 1.601727702 0.8620760146E-06 1.604079212 0.8442128135E-06 1.606430723 0.8262584394E-06 1.608782234 0.8082315195E-06 1.611133745 0.7901505408E-06 1.613485256 0.7720338190E-06 1.615836767 0.7538994678E-06 1.618188278 0.7357653688E-06 1.620539789 0.7176491423E-06 1.622891299 0.6995681181E-06 1.625242810 0.6815393075E-06 1.627594321 0.6635793764E-06 1.629945832 0.6457046185E-06 1.632297343 0.6279309304E-06 1.634648854 0.6102737870E-06 1.637000365 0.5927482183E-06 1.639351876 0.5753687879E-06 1.641703387 0.5581495718E-06 1.644054897 0.5411041389E-06 1.646406408 0.5242455335E-06 1.648757919 0.5075862580E-06 1.651109430 0.4911382582E-06 1.653460941 0.4749129091E-06 1.655812452 0.4589210030E-06 1.658163963 0.4431727387E-06 1.660515474 0.4276777126E-06 1.662866985 0.4124449107E-06 1.665218495 0.3974827034E-06 1.667570006 0.3827988408E-06 1.669921517 0.3684004500E-06 1.672273028 0.3542940341E-06 1.674624539 0.3404854730E-06 1.676976050 0.3269800251E-06 1.679327561 0.3137823311E-06 1.681679072 0.3008964195E-06 1.684030583 0.2883257130E-06 1.686382093 0.2760730365E-06 1.688733604 0.2641406271E-06 1.691085115 0.2525301447E-06 1.693436626 0.2412426843E-06 1.695788137 0.2302787894E-06 1.698139648 0.2196384667E-06 1.700491159 0.2093212019E-06 1.702842670 0.1993259760E-06 1.705194180 0.1896512837E-06 1.707545691 0.1802951513E-06 1.709897202 0.1712551566E-06 1.712248713 0.1625284486E-06 1.714600224 0.1541117681E-06 1.716951735 0.1460014694E-06 1.719303246 0.1381935414E-06 1.721654757 0.1306836299E-06 1.724006268 0.1234670596E-06 1.726357778 0.1165388566E-06 1.728709289 0.1098937713E-06 1.731060800 0.1035263003E-06 1.733412311 0.9743070902E-07 1.735763822 0.9160105423E-07 1.738115333 0.8603120583E-07 1.740466844 0.8071486862E-07 1.742818355 0.7564560369E-07 1.745169866 0.7081684931E-07 1.747521376 0.6622194127E-07 1.749872887 0.6185413279E-07 1.752224398 0.5770661365E-07 1.754575909 0.5377252881E-07 1.756927420 0.5004499618E-07 1.759278931 0.4651712371E-07 1.761630442 0.4318202573E-07 1.763981953 0.4003283839E-07 1.766333464 0.3706273432E-07 1.768684974 0.3426493645E-07 1.771036485 0.3163273085E-07 1.773387996 0.2915947882E-07 1.775739507 0.2683862803E-07 1.778091018 0.2466372272E-07 1.780442529 0.2262841312E-07 1.782794040 0.2072646389E-07 1.785145551 0.1895176175E-07 1.787497061 0.1729832220E-07 1.789848572 0.1576029554E-07 1.792200083 0.1433197187E-07 1.794551594 0.1300778554E-07 1.796903105 0.1178231869E-07 1.799254616 0.1176431509E-07 1.801606127 0.1453050673E-07 1.803957638 0.1706067229E-07 1.806309149 0.1535936757E-07 1.808660659 0.1346552082E-07 1.811012170 0.1173746414E-07 1.813363681 0.1017545221E-07 1.815715192 0.8771131214E-08 1.818066703 0.7514820206E-08 1.820418214 0.6396608355E-08 1.822769725 0.5406649109E-08 1.825121236 0.4535272882E-08 1.827472747 0.3773044351E-08 1.829824257 0.3110799052E-08 1.832175768 0.2539670876E-08 1.834527279 0.2051114974E-08 1.836878790 0.1636928013E-08 1.839230301 0.1349958539E-08 1.841581812 0.1175470745E-08 1.843933323 0.1023567829E-08 1.846284834 0.8920274658E-09 1.848636345 0.7787794672E-09 1.850987855 0.6819074728E-09 1.853339366 0.5996508826E-09 1.855690877 0.5304069815E-09 1.858042388 0.4286223108E-09 1.860393899 0.2572115540E-09 1.862745410 0.1462138182E-09 1.865096921 0.7896555101E-10 1.867448432 0.4156110751E-10 1.869799942 0.2293519666E-10 1.872151453 0.1498577437E-10 1.874502964 0.1291668591E-10 1.876849995 0.1954245666E-10 1.879197025 0.4801929533E-10 1.881544055 0.1224831516E-09 1.883891086 0.2819442963E-09 1.886238116 0.3757614241E-09 1.888585147 0.4080945311E-09 1.890932177 0.4478956648E-09 1.893279207 0.4959590122E-09 1.895626238 0.5531884147E-09 1.897973268 0.6205925029E-09 1.900320299 0.6992792941E-09 1.902667329 0.7904502931E-09 1.905014359 0.8953941404E-09 1.907361390 0.1015479858E-08 1.909708420 0.1152149742E-08 1.912055451 0.1306911964E-08 1.914402481 0.1481332933E-08 1.916749511 0.1677029485E-08 1.919096542 0.1895660967E-08 1.921443572 0.2138921278E-08 1.923790603 0.2408530930E-08 1.926137633 0.2706229216E-08 1.928484663 0.3033766528E-08 1.930831694 0.3392896913E-08 1.933178724 0.3785370927E-08 1.935525754 0.4212928842E-08 1.937872785 0.4677294279E-08 1.940219815 0.5180168312E-08 1.942566846 0.5723224098E-08 1.944913876 0.6308102067E-08 1.947260906 0.6936405725E-08 1.949607937 0.7609698078E-08 1.951954967 0.8329498703E-08 1.954301998 0.9097281477E-08 1.956649028 0.9914472962E-08 1.958996058 0.1078245143E-07 1.961343089 0.1170254650E-07 1.963690119 0.1267603939E-07 1.966037150 0.1370416371E-07 1.968384180 0.1478810672E-07 1.970731210 0.1592901109E-07 1.973078241 0.1712797701E-07 1.975425271 0.1838606464E-07 1.977772302 0.1970429676E-07 1.980119332 0.2108366169E-07 1.982466362 0.2252511621E-07 1.984813393 0.2402958858E-07 1.987160423 0.2559798155E-07 1.989507454 0.2723117521E-07 1.991854484 0.2893002978E-07 1.994201514 0.3069538810E-07 1.996548545 0.3252807803E-07 1.998895575 0.3442891440E-07 2.001242605 0.3639870082E-07 2.003589636 0.3843823108E-07 2.005936666 0.4054829020E-07 2.008283697 0.4272965525E-07 2.010630727 0.4498309567E-07 2.012977757 0.4730937341E-07 2.015324788 0.4970924261E-07 2.017671818 0.5218344909E-07 2.020018849 0.5473272940E-07 2.022365879 0.5735780972E-07 2.024712909 0.6005940440E-07 2.027059940 0.6283821431E-07 2.029406970 0.6569492490E-07 2.031754001 0.6863020408E-07 2.034101031 0.7164469990E-07 2.036448061 0.7473903799E-07 2.038795092 0.7791381882E-07 2.041142122 0.8116961476E-07 2.043489153 0.8450696690E-07 2.045836183 0.8792638165E-07 2.048183213 0.9142832700E-07 2.050530244 0.9501322855E-07 2.052877274 0.9868146493E-07 2.055224304 0.1024333628E-06 2.057571335 0.1062691913E-06 2.059918365 0.1101891548E-06 2.062265396 0.1141933854E-06 2.064612426 0.1182819328E-06 2.066959456 0.1224547522E-06 2.069306487 0.1267116878E-06 2.071653517 0.1310524522E-06 2.074000548 0.1354765977E-06 2.076347578 0.1399834757E-06 2.078694608 0.1445721794E-06 2.081041639 0.1492414582E-06 2.083388669 0.1539895872E-06 2.085735700 0.1588141600E-06 2.088082730 0.1637117490E-06 2.090429760 0.1686773190E-06 2.092776791 0.1737031677E-06 2.095123821 0.1787768894E-06 2.097470852 0.1838771921E-06 2.099817882 0.1889646439E-06 2.102164912 0.1939597725E-06 2.104511943 0.1986910247E-06 2.106858973 0.2028040877E-06 2.109206004 0.2058208503E-06 2.111553034 0.2076488036E-06 2.113900064 0.2086604239E-06 2.116247095 0.2091875617E-06 2.118594125 0.2093994208E-06 2.120941155 0.2093755163E-06 2.123288186 0.2091555504E-06 2.125635216 0.2087612372E-06 2.127982247 0.2082056365E-06 2.130329277 0.2074973871E-06 2.132676307 0.2066427664E-06 2.135023338 0.2056467592E-06 2.137370368 0.2045136443E-06 2.139717399 0.2032473305E-06 2.142064429 0.2018515576E-06 2.144411459 0.2003300180E-06 2.146758490 0.1986864329E-06 2.149105520 0.1969245988E-06 2.151452551 0.1950484162E-06 2.153799581 0.1930619058E-06 2.156146611 0.1909692164E-06 2.158493642 0.1887746270E-06 2.160840672 0.1864825452E-06 2.163187703 0.1840975022E-06 2.165534733 0.1816241452E-06 2.167881763 0.1790672292E-06 2.170228794 0.1764316069E-06 2.172575824 0.1737222171E-06 2.174922855 0.1709440736E-06 2.177269885 0.1681022525E-06 2.179616915 0.1652018799E-06 2.181963946 0.1622481182E-06 2.184310976 0.1592461540E-06 2.186658006 0.1562011841E-06 2.189005037 0.1531184026E-06 2.191352067 0.1500029879E-06 2.193699098 0.1468600894E-06 2.196046128 0.1436948153E-06 2.198393158 0.1405122196E-06 2.200740189 0.1373172904E-06 2.203087219 0.1341149378E-06 2.205434250 0.1309099826E-06 2.207781280 0.1277071456E-06 2.210128310 0.1245110370E-06 2.212475341 0.1213261468E-06 2.214822371 0.1181568350E-06 2.217169402 0.1150073235E-06 2.219516432 0.1118816877E-06 2.221863462 0.1087838493E-06 2.224210493 0.1057175692E-06 2.226557523 0.1026864420E-06 2.228904554 0.9969389015E-07 2.231251584 0.9674315973E-07 2.233598614 0.9383731634E-07 2.235945645 0.9097924206E-07 2.238292675 0.8817163303E-07 2.240639706 0.8541699778E-07 2.242986736 0.8271765631E-07 2.245333766 0.8007573991E-07 2.247680797 0.7749319169E-07 2.250027827 0.7497176781E-07 2.252374857 0.7251303943E-07 2.254721888 0.7011839533E-07 2.257068918 0.6778904518E-07 2.259415949 0.6552602347E-07 2.261762979 0.6333019402E-07 2.264110009 0.6120225511E-07 2.266457040 0.5914274515E-07 2.268804070 0.5715204885E-07 2.271151101 0.5523040390E-07 2.273498131 0.5337790815E-07 2.275845161 0.5159452712E-07 2.278192192 0.4988010193E-07 2.280539222 0.4823435760E-07 2.282886253 0.4665691159E-07 2.285233283 0.4514728266E-07 2.287580313 0.4370489984E-07 2.289927344 0.4232911171E-07 2.292274374 0.4101919568E-07 2.294621405 0.3977436740E-07 2.296968435 0.3859379024E-07 2.299315465 0.3747658467E-07 2.301662496 0.3642183770E-07 2.304009526 0.3542861213E-07 2.306356557 0.3449595571E-07 2.308703587 0.3362291009E-07 2.311050617 0.3280851961E-07 2.313397648 0.3205183969E-07 2.315744678 0.3135194510E-07 2.318091708 0.3070793773E-07 2.320438739 0.3011895410E-07 2.322785769 0.2958417239E-07 2.325132800 0.2910281904E-07 2.327479830 0.2867417492E-07 2.329826860 0.2829758098E-07 2.332173891 0.2797244333E-07 2.334520921 0.2769823785E-07 2.336867952 0.2747451420E-07 2.339214982 0.2730089921E-07 2.341562012 0.2717709972E-07 2.343909043 0.2710290479E-07 2.346256073 0.2707818730E-07 0.000000000 0.3064847410E-09 0.2347351854E-02 0.3104374017E-09 0.4694703708E-02 0.3224464917E-09 0.7042055561E-02 0.3429651867E-09 0.9389407415E-02 0.3727482878E-09 0.1173675927E-01 0.4128514946E-09 0.1408411112E-01 0.4646304061E-09 0.1643146298E-01 0.5297392658E-09 0.1877881483E-01 0.6101294711E-09 0.2112616668E-01 0.7080478642E-09 0.2347351854E-01 0.8260348238E-09 0.2582087039E-01 0.9669221723E-09 0.2816822225E-01 0.1133830911E-08 0.3051557410E-01 0.1330168787E-08 0.3286292595E-01 0.1559627708E-08 0.3521027781E-01 0.1826180976E-08 0.3755762966E-01 0.2134080375E-08 0.3990498151E-01 0.2487853060E-08 0.4225233337E-01 0.2892298274E-08 0.4459968522E-01 0.3352483848E-08 0.4694703708E-01 0.3873742491E-08 0.4929438893E-01 0.4461667839E-08 0.5164174078E-01 0.5122110251E-08 0.5398909264E-01 0.5861172333E-08 0.5633644449E-01 0.6685204176E-08 0.5868379634E-01 0.7600798280E-08 0.6103114820E-01 0.8614784160E-08 0.6337850005E-01 0.9734222603E-08 0.6572585191E-01 0.1096639958E-07 0.6807320376E-01 0.1231881976E-07 0.7042055561E-01 0.1379919965E-07 0.7276790747E-01 0.1541546035E-07 0.7511525932E-01 0.1717571982E-07 0.7746261117E-01 0.1908828474E-07 0.7980996303E-01 0.2116164198E-07 0.8215731488E-01 0.2340444946E-07 0.8450466674E-01 0.2241873469E-07 0.8685201859E-01 0.1967182852E-07 0.8919937044E-01 0.1706737883E-07 0.9154672230E-01 0.1461572198E-07 0.9389407415E-01 0.1232664084E-07 0.9624142601E-01 0.1020932432E-07 0.9858877786E-01 0.8272328639E-08 0.1009361297 0.6523540541E-08 0.1032834816 0.4970142518E-08 0.1056308334 0.3618580150E-08 0.1079781853 0.2474531669E-08 0.1103255371 0.1542879731E-08 0.1126728890 0.8276851454E-09 0.1150202408 0.3321614202E-09 0.1173675927 0.5864474248E-10 0.1197149445 0.8521195339E-11 0.1220622964 0.1811958288E-09 0.1244096483 0.3036497267E-09 0.1267570001 0.3228029251E-09 0.1291043520 0.3417647515E-09 0.1314517038 0.3608812178E-09 0.1337990557 0.3801549750E-09 0.1361464075 0.3995456359E-09 0.1384937594 0.4190000216E-09 0.1408411112 0.4384588655E-09 0.1431884631 0.4578590040E-09 0.1455358149 0.4771343363E-09 0.1478831668 0.4962163702E-09 0.1502305186 0.5150346128E-09 0.1525778705 0.5335169008E-09 0.1549252223 0.5515897085E-09 0.1572725742 0.5691784509E-09 0.1596199261 0.5862077918E-09 0.1619672779 0.6026019591E-09 0.1643146298 0.6182850698E-09 0.1666619816 0.6331814667E-09 0.1690093335 0.6472160650E-09 0.1713566853 0.6603147103E-09 0.1737040372 0.6724045470E-09 0.1760513890 0.6834143962E-09 0.1783987409 0.6932751433E-09 0.1807460927 0.7019201332E-09 0.1830934446 0.7092855742E-09 0.1854407964 0.7153109478E-09 0.1877881483 0.7199394243E-09 0.1901355002 0.7231182839E-09 0.1924828520 0.7247993407E-09 0.1948302039 0.7249393704E-09 0.1971775557 0.7235005384E-09 0.1995249076 0.7204508303E-09 0.2018722594 0.7157644801E-09 0.2042196113 0.7094223974E-09 0.2065669631 0.7014125922E-09 0.2089143150 0.6917305951E-09 0.2112616668 0.6803798720E-09 0.2136090187 0.6673722333E-09 0.2159563705 0.6527282344E-09 0.2183037224 0.6364775682E-09 0.2206510743 0.6186594470E-09 0.2229984261 0.5993229732E-09 0.2253457780 0.5785274977E-09 0.2276931298 0.5563429643E-09 0.2300404817 0.5328502398E-09 0.2323878335 0.5081414271E-09 0.2347351854 0.4823201623E-09 0.2370825372 0.4555018923E-09 0.2394298891 0.4278141341E-09 0.2417772409 0.3993967124E-09 0.2441245928 0.3704019769E-09 0.2464719446 0.3409949961E-09 0.2488192965 0.3113537282E-09 0.2511666484 0.2816691669E-09 0.2535140002 0.2521454628E-09 0.2558613521 0.2230000178E-09 0.2582087039 0.1944635532E-09 0.2605560558 0.1667801500E-09 0.2629034076 0.1402072609E-09 0.2652507595 0.1150156942E-09 0.2675981113 0.9148956794E-10 0.2699454632 0.6992623583E-10 0.2722928150 0.5063618330E-10 0.2746401669 0.3394289559E-10 0.2769875187 0.2018269822E-10 0.2793348706 0.9704572288E-11 0.2816822225 0.2869948472E-11 0.2840295743 0.5248683627E-13 0.2863769262 0.1637856011E-11 0.2887242780 0.8023537970E-11 0.2910716299 0.1961871300E-10 0.2934189817 0.3684434680E-10 0.2957663336 0.6013377987E-10 0.2981136854 0.8993465521E-10 0.3004610373 0.1267149447E-09 0.3028083891 0.1709847544E-09 0.3051557410 0.2234089099E-09 0.3075030928 0.2863356034E-09 0.3098504447 0.8154994365E-09 0.3121977966 0.2448853729E-08 0.3145451484 0.5142221862E-08 0.3168925003 0.9098203488E-08 0.3192398521 0.1451613417E-07 0.3215872040 0.2154511869E-07 0.3239345558 0.3029336351E-07 0.3262819077 0.4085411381E-07 0.3286292595 0.5331820382E-07 0.3309766114 0.6777731482E-07 0.3333239632 0.8432428667E-07 0.3356713151 0.1030527952E-06 0.3380186669 0.1240569726E-06 0.3403660188 0.1474310754E-06 0.3427133707 0.1732692027E-06 0.3450607225 0.1408031500E-06 0.3474080744 0.1622576893E-06 0.3497554262 0.1856324433E-06 0.3521027781 0.2110000085E-06 0.3544501299 0.2384322555E-06 0.3567974818 0.2680001915E-06 0.3591448336 0.2997738170E-06 0.3614921855 0.3338219802E-06 0.3638395373 0.3702122299E-06 0.3661868892 0.4090106656E-06 0.3685342410 0.4502817883E-06 0.3708815929 0.4940883500E-06 0.3732289448 0.5404912035E-06 0.3755762966 0.5895491537E-06 0.3779236485 0.6413188081E-06 0.3802710003 0.6958544302E-06 0.3826183522 0.7532077938E-06 0.3849657040 0.8134280392E-06 0.3873130559 0.8765615322E-06 0.3896604077 0.9426517250E-06 0.3920077596 0.1011739021E-05 0.3943551114 0.1083860641E-05 0.3967024633 0.1159050496E-05 0.3990498151 0.1237339062E-05 0.4013971670 0.1318753256E-05 0.4037445189 0.1403316325E-05 0.4060918707 0.1491047727E-05 0.4084392226 0.1565289768E-05 0.4107865744 0.1538758531E-05 0.4131339263 0.1511855001E-05 0.4154812781 0.1484607165E-05 0.4178286300 0.1457044088E-05 0.4201759818 0.1429195717E-05 0.4225233337 0.1401092711E-05 0.4248706855 0.1372766274E-05 0.4272180374 0.1344248014E-05 0.4295653892 0.1315569803E-05 0.4319127411 0.1286763651E-05 0.4342600929 0.1257861594E-05 0.4366074448 0.1228895580E-05 0.4389547967 0.1199897371E-05 0.4413021485 0.1170898449E-05 0.4436495004 0.1141929923E-05 0.4459968522 0.1113022452E-05 0.4483442041 0.1084206164E-05 0.4506915559 0.1055510586E-05 0.4530389078 0.1026964576E-05 0.4553862596 0.9985962591E-06 0.4577336115 0.9704329729E-06 0.4600809633 0.9425012115E-06 0.4624283152 0.9148265770E-06 0.4647756670 0.8874337348E-06 0.4671230189 0.8603463723E-06 0.4694703708 0.8335871621E-06 0.4718177226 0.8071777294E-06 0.4741650745 0.7811386225E-06 0.4765124263 0.7554892877E-06 0.4788597782 0.7302480477E-06 0.4812071300 0.7054320837E-06 0.4835544819 0.6810574215E-06 0.4859018337 0.6571389200E-06 0.4882491856 0.6336902647E-06 0.4905965374 0.6107239632E-06 0.4929438893 0.5882513449E-06 0.4952912411 0.5662825638E-06 0.4976385930 0.5448266037E-06 0.4999859449 0.5238912878E-06 0.5023332967 0.5034832899E-06 0.5046806486 0.4836081494E-06 0.5070280004 0.4642702885E-06 0.5093753523 0.4454730327E-06 0.5117227041 0.4272186329E-06 0.5140700560 0.4095082908E-06 0.5164174078 0.3923421862E-06 0.5187647597 0.3757195067E-06 0.5211121115 0.3596384788E-06 0.5234594634 0.3440964021E-06 0.5258068152 0.3290896842E-06 0.5281541671 0.3146138778E-06 0.5305015190 0.3006637189E-06 0.5328488708 0.2872331673E-06 0.5351962227 0.2743154470E-06 0.5375435745 0.2619030888E-06 0.5398909264 0.2499879736E-06 0.5422382782 0.2385613762E-06 0.5445856301 0.2276140103E-06 0.5469329819 0.2158917134E-06 0.5492803338 0.1980956290E-06 0.5516276856 0.1814568598E-06 0.5539750375 0.1659340582E-06 0.5563223893 0.1514848629E-06 0.5586697412 0.1380660971E-06 0.5610170931 0.1256339618E-06 0.5633644449 0.1141442237E-06 0.5657117968 0.1035524006E-06 0.5680591486 0.1024102917E-06 0.5704065005 0.1033257857E-06 0.5727538523 0.1042070791E-06 0.5751012042 0.1050533238E-06 0.5774485560 0.1058637025E-06 0.5797959079 0.1066374305E-06 0.5821432597 0.1073737561E-06 0.5844906116 0.1040931573E-06 0.5868379634 0.9984070942E-07 0.5891853153 0.9585450027E-07 0.5915326672 0.9212691661E-07 0.5938800190 0.8865175308E-07 0.5962273709 0.8542449741E-07 0.5985747227 0.8244263715E-07 0.6009220746 0.7970596787E-07 0.6032694264 0.7721686730E-07 0.6056167783 0.7498048042E-07 0.6079641301 0.7300473843E-07 0.6103114820 0.7130011825E-07 0.6126588338 0.6987905019E-07 0.6150061857 0.6875491687E-07 0.6173535375 0.6794067007E-07 0.6197008894 0.6744721895E-07 0.6220482413 0.6728187611E-07 0.6243952716 0.6730337017E-07 0.6267423020 0.6740330289E-07 0.6290893324 0.6758176512E-07 0.6314363628 0.6783892085E-07 0.6337833932 0.6817500610E-07 0.6361304236 0.6859032729E-07 0.6384774540 0.6908525915E-07 0.6408244844 0.6966024220E-07 0.6431715148 0.7031577969E-07 0.6455185452 0.7105243414E-07 0.6478655756 0.7187082346E-07 0.6502126060 0.7277161659E-07 0.6525596364 0.7375552880E-07 0.6549066668 0.7482331658E-07 0.6572536971 0.7597577215E-07 0.6596007275 0.7721371765E-07 0.6619477579 0.7853799903E-07 0.6642947883 0.7994947957E-07 0.6666418187 0.8144903321E-07 0.6689888491 0.8303753759E-07 0.6713358795 0.8471586692E-07 0.6736829099 0.8648488457E-07 0.6760299403 0.8834543562E-07 0.6783769707 0.9029833918E-07 0.6807240011 0.9234438069E-07 0.6830710315 0.9448430408E-07 0.6854180619 0.9671880393E-07 0.6877650922 0.9904851766E-07 0.6901121226 0.1014740177E-06 0.6924591530 0.1039958035E-06 0.6948061834 0.1066142945E-06 0.6971532138 0.1104704358E-06 0.6995002442 0.1186054291E-06 0.7018472746 0.1271903642E-06 0.7041943050 0.1362327022E-06 0.7065413354 0.1457387412E-06 0.7088883658 0.1546518463E-06 0.7112353962 0.1569873636E-06 0.7135824266 0.1593750382E-06 0.7159294570 0.1618130379E-06 0.7182764874 0.1642994163E-06 0.7206235177 0.1668321109E-06 0.7229705481 0.1694089415E-06 0.7253175785 0.1720276086E-06 0.7276646089 0.1746856929E-06 0.7300116393 0.1773806547E-06 0.7323586697 0.1801098333E-06 0.7347057001 0.1828704475E-06 0.7370527305 0.1856595964E-06 0.7393997609 0.1884742599E-06 0.7417467913 0.1913113006E-06 0.7440938217 0.1941674651E-06 0.7464408521 0.1970393869E-06 0.7487878825 0.1999235887E-06 0.7511349128 0.2028164858E-06 0.7534819432 0.2057143896E-06 0.7558289736 0.2086135114E-06 0.7581760040 0.2120952577E-06 0.7605230344 0.2170729507E-06 0.7628700648 0.2220997661E-06 0.7652170952 0.2271716619E-06 0.7675641256 0.2322844544E-06 0.7699111560 0.2374338240E-06 0.7722581864 0.2426153223E-06 0.7746052168 0.2478243784E-06 0.7769522472 0.2530563064E-06 0.7792992776 0.2583063134E-06 0.7816463080 0.2635695074E-06 0.7839933383 0.2688409060E-06 0.7863403687 0.2741154451E-06 0.7886873991 0.2793879887E-06 0.7910344295 0.2846533379E-06 0.7933814599 0.2899062409E-06 0.7957284903 0.2951414031E-06 0.7980755207 0.3003534978E-06 0.8004225511 0.3055371760E-06 0.8027695815 0.3106870779E-06 0.8051166119 0.3157978432E-06 0.8074636423 0.3208641222E-06 0.8098106727 0.3258805869E-06 0.8121577031 0.3308419424E-06 0.8145047335 0.3357429373E-06 0.8168517638 0.3346933393E-06 0.8191987942 0.3298018051E-06 0.8215458246 0.3252260203E-06 0.8238928550 0.3209657682E-06 0.8262398854 0.3170206397E-06 0.8285869158 0.3133900900E-06 0.8309339462 0.3100734874E-06 0.8332809766 0.3070701552E-06 0.8356280070 0.3043794098E-06 0.8379750374 0.3020005924E-06 0.8403220678 0.2999330982E-06 0.8426690982 0.2981764014E-06 0.8450161286 0.2967300765E-06 0.8473631589 0.2955938175E-06 0.8497101893 0.2947674529E-06 0.8520572197 0.2942509593E-06 0.8544042501 0.2940444711E-06 0.8567512805 0.2941482880E-06 0.8590983109 0.2945628804E-06 0.8614453413 0.2952888911E-06 0.8637923717 0.2963271359E-06 0.8661394021 0.2976786007E-06 0.8684864325 0.2993444366E-06 0.8708334629 0.3013259528E-06 0.8731804933 0.3036246070E-06 0.8755275237 0.3062419933E-06 0.8778745541 0.3091798284E-06 0.8802215844 0.3124399356E-06 0.8825686148 0.3160242257E-06 0.8849156452 0.3199346773E-06 0.8872626756 0.3241733144E-06 0.8896097060 0.3287421813E-06 0.8919567364 0.3336433168E-06 0.8943037668 0.3388787259E-06 0.8966507972 0.3444503490E-06 0.8989978276 0.3503600305E-06 0.9013448580 0.3566094835E-06 0.9036918884 0.3632002538E-06 0.9060389188 0.3701336807E-06 0.9083859492 0.3774108552E-06 0.9107329796 0.3850325745E-06 0.9130800099 0.3929992931E-06 0.9154270403 0.4013110674E-06 0.9177740707 0.4099674946E-06 0.9201211011 0.4189676415E-06 0.9224681315 0.4283099606E-06 0.9248151619 0.4341033933E-06 0.9271621923 0.4330649494E-06 0.9295092227 0.4319307955E-06 0.9318562531 0.4307055570E-06 0.9342032835 0.4293939440E-06 0.9365503139 0.4280007327E-06 0.9388973443 0.4265307452E-06 0.9412443747 0.4249888295E-06 0.9435914050 0.4233798390E-06 0.9459384354 0.4217086130E-06 0.9482854658 0.4199799564E-06 0.9506324962 0.4181986207E-06 0.9529795266 0.4163692862E-06 0.9553265570 0.4144965441E-06 0.9576735874 0.4125848813E-06 0.9600206178 0.4106386661E-06 0.9623676482 0.4086621354E-06 0.9647146786 0.4066593846E-06 0.9670617090 0.4046343592E-06 0.9694087394 0.4025908479E-06 0.9717557698 0.4005324793E-06 0.9741028002 0.3984627197E-06 0.9764498305 0.3963848731E-06 0.9787968609 0.3943020841E-06 0.9811438913 0.3922173417E-06 0.9834909217 0.3901334855E-06 0.9858379521 0.3880532131E-06 0.9881849825 0.3859790890E-06 0.9905320129 0.3839135540E-06 0.9928790433 0.3818589365E-06 0.9952260737 0.3798174625E-06 0.9975731041 0.3777912678E-06 0.9999201345 0.3757824080E-06 1.002267165 0.3737928703E-06 1.004614195 0.3718245831E-06 1.006961226 0.3698794255E-06 1.009308256 0.3679592364E-06 1.011655286 0.3626264267E-06 1.014002317 0.3520477921E-06 1.016349347 0.3417985104E-06 1.018696378 0.3318814354E-06 1.021043408 0.3222986855E-06 1.023390438 0.3130516972E-06 1.025737469 0.3041412741E-06 1.028084499 0.2955676348E-06 1.030431530 0.2873304590E-06 1.032778560 0.2794289325E-06 1.035125590 0.2718617917E-06 1.037472621 0.2646273677E-06 1.039819651 0.2577236299E-06 1.042166682 0.2511482296E-06 1.044513712 0.2448985423E-06 1.046860742 0.2389717107E-06 1.049207773 0.2333646865E-06 1.051554803 0.2280742714E-06 1.053901834 0.2230971577E-06 1.056248864 0.2184299680E-06 1.058595894 0.2140692930E-06 1.060942925 0.2100117296E-06 1.063289955 0.2062539158E-06 1.065636985 0.2027925657E-06 1.067984016 0.1996245016E-06 1.070331046 0.1967466851E-06 1.072678077 0.1941562458E-06 1.075025107 0.1918505080E-06 1.077372137 0.1898270153E-06 1.079719168 0.1880835529E-06 1.082066198 0.1866181670E-06 1.084413229 0.1854291827E-06 1.086760259 0.1845152181E-06 1.089107289 0.1838751967E-06 1.091454320 0.1835083565E-06 1.093801350 0.1834142564E-06 1.096152861 0.1834611548E-06 1.098504372 0.1836529574E-06 1.100855883 0.1839896969E-06 1.103207394 0.1844714392E-06 1.105558905 0.1850982817E-06 1.107910415 0.1858703510E-06 1.110261926 0.1867878007E-06 1.112613437 0.1878508082E-06 1.114964948 0.1890595715E-06 1.117316459 0.1904143054E-06 1.119667970 0.1919152377E-06 1.122019481 0.1935626047E-06 1.124370992 0.1953566470E-06 1.126722503 0.1972976045E-06 1.129074013 0.1993857117E-06 1.131425524 0.2016211923E-06 1.133777035 0.2040042546E-06 1.136128546 0.2065350851E-06 1.138480057 0.2092138439E-06 1.140831568 0.2120406579E-06 1.143183079 0.2150156154E-06 1.145534590 0.2181387590E-06 1.147886101 0.2214100785E-06 1.150237611 0.2248295029E-06 1.152589122 0.2283968915E-06 1.154940633 0.2321120227E-06 1.157292144 0.2359745820E-06 1.159643655 0.2399841468E-06 1.161995166 0.2441401680E-06 1.164346677 0.2484419488E-06 1.166698188 0.2528886192E-06 1.169049699 0.2574791065E-06 1.171401209 0.2622121036E-06 1.173752720 0.2670860366E-06 1.176104231 0.2720990374E-06 1.178455742 0.2772489269E-06 1.180807253 0.2825332221E-06 1.183158764 0.2879491791E-06 1.185510275 0.2934938866E-06 1.187861786 0.2991644213E-06 1.190213296 0.3006024348E-06 1.192564807 0.3001138202E-06 1.194916318 0.2996936379E-06 1.197267829 0.2993464593E-06 1.199619340 0.2990768536E-06 1.201970851 0.2988893851E-06 1.204322362 0.2987886106E-06 1.206673873 0.2987790770E-06 1.209025384 0.2988653190E-06 1.211376894 0.2990518580E-06 1.213728405 0.2993432000E-06 1.216079916 0.2997438351E-06 1.218431427 0.3002582359E-06 1.220782938 0.3008908570E-06 1.223134449 0.3016461346E-06 1.225485960 0.3025284857E-06 1.227837471 0.3035423076E-06 1.230188982 0.3046919778E-06 1.232540492 0.3059818535E-06 1.234892003 0.3074162710E-06 1.237243514 0.3089995452E-06 1.239595025 0.3107359690E-06 1.241946536 0.3126298120E-06 1.244298047 0.3146853200E-06 1.246649558 0.3169067128E-06 1.249001069 0.3192981830E-06 1.251352580 0.3218638936E-06 1.253704090 0.3246079757E-06 1.256055601 0.3275345251E-06 1.258407112 0.3306475993E-06 1.260758623 0.3339512133E-06 1.263110134 0.3374493350E-06 1.265461645 0.3411458808E-06 1.267813156 0.3450447090E-06 1.270164667 0.3491496144E-06 1.272516177 0.3534643215E-06 1.274867688 0.3579924765E-06 1.277219199 0.3627376399E-06 1.279570710 0.3677032780E-06 1.281922221 0.3728927534E-06 1.284273732 0.3783093152E-06 1.286625243 0.3839560892E-06 1.288976754 0.3898360670E-06 1.291328265 0.3959520943E-06 1.293679775 0.4023068596E-06 1.296031286 0.4089028818E-06 1.298382797 0.4157424976E-06 1.300734308 0.4228278486E-06 1.303085819 0.4301608684E-06 1.305437330 0.4377432684E-06 1.307788841 0.4455765251E-06 1.310140352 0.4536618654E-06 1.312491863 0.4620002535E-06 1.314843373 0.4705923764E-06 1.317194884 0.4794386308E-06 1.319546395 0.4885391089E-06 1.321897906 0.4978935851E-06 1.324249417 0.5075015030E-06 1.326600928 0.5173619622E-06 1.328952439 0.5274737063E-06 1.331303950 0.5378351107E-06 1.333655461 0.5484441714E-06 1.336006971 0.5592984940E-06 1.338358482 0.5703952843E-06 1.340709993 0.5817313383E-06 1.343061504 0.5933030346E-06 1.345413015 0.6051063265E-06 1.347764526 0.6251145894E-06 1.350116037 0.6546416499E-06 1.352467548 0.6843107650E-06 1.354819059 0.7139436639E-06 1.357170569 0.7433505849E-06 1.359522080 0.7723339457E-06 1.361873591 0.8006936317E-06 1.364225102 0.8282342885E-06 1.366576613 0.8547748381E-06 1.368928124 0.8801599279E-06 1.371279635 0.9042721116E-06 1.373631146 0.9270424542E-06 1.375982656 0.9484566063E-06 1.378334167 0.9685539743E-06 1.380685678 0.9874196038E-06 1.383037189 0.1005170852E-05 1.385388700 0.1021942402E-05 1.387740211 0.1037872948E-05 1.390091722 0.1053095462E-05 1.392443233 0.1067731390E-05 1.394794744 0.1081888093E-05 1.397146254 0.1095658514E-05 1.399497765 0.1109122131E-05 1.401849276 0.1122346494E-05 1.404200787 0.1135388928E-05 1.406552298 0.1148298148E-05 1.408903809 0.1161115688E-05 1.411255320 0.1173877114E-05 1.413606831 0.1186613007E-05 1.415958342 0.1199349764E-05 1.418309852 0.1212110220E-05 1.420661363 0.1224914145E-05 1.423012874 0.1237778609E-05 1.425364385 0.1250718269E-05 1.427715896 0.1263745567E-05 1.430067407 0.1276870868E-05 1.432418918 0.1290102544E-05 1.434770429 0.1303447012E-05 1.437121940 0.1316908728E-05 1.439473450 0.1330490145E-05 1.441824961 0.1344191641E-05 1.444176472 0.1358011404E-05 1.446527983 0.1371945286E-05 1.448879494 0.1385986627E-05 1.451231005 0.1400126025E-05 1.453582516 0.1414351073E-05 1.455934027 0.1428646029E-05 1.458285537 0.1442991427E-05 1.460637048 0.1457363587E-05 1.462988559 0.1471734017E-05 1.465340070 0.1486068641E-05 1.467691581 0.1500326806E-05 1.470043092 0.1514459975E-05 1.472394603 0.1612882287E-05 1.474746114 0.1663209593E-05 1.477097625 0.1678415946E-05 1.479449135 0.1693983645E-05 1.481800646 0.1709902650E-05 1.484152157 0.1726158411E-05 1.486503668 0.1742731274E-05 1.488855179 0.1759595524E-05 1.491206690 0.1776717716E-05 1.493558201 0.1794053567E-05 1.495909712 0.1811541841E-05 1.498261223 0.1829091631E-05 1.500612733 0.1846553771E-05 1.502964244 0.1863650540E-05 1.505315755 0.1879786658E-05 1.507667266 0.1893549645E-05 1.510018777 0.1902122775E-05 1.512370288 0.1903982568E-05 1.514721799 0.1902243196E-05 1.517073310 0.1899752828E-05 1.519424821 0.1897309837E-05 1.521776331 0.1894878893E-05 1.524127842 0.1892227886E-05 1.526479353 0.1889123902E-05 1.528830864 0.1885383857E-05 1.531182375 0.1880880575E-05 1.533533886 0.1875535598E-05 1.535885397 0.1869308858E-05 1.538236908 0.1862188665E-05 1.540588418 0.1854183118E-05 1.542939929 0.1845313262E-05 1.545291440 0.1835607889E-05 1.547642951 0.1825099780E-05 1.549994462 0.1813823114E-05 1.552345973 0.1801811770E-05 1.554697484 0.1789098308E-05 1.557048995 0.1775713409E-05 1.559400506 0.1761685645E-05 1.561752016 0.1747041462E-05 1.564103527 0.1731805288E-05 1.566455038 0.1715999722E-05 1.568806549 0.1699645755E-05 1.571158060 0.1682763005E-05 1.573509571 0.1665369950E-05 1.575861082 0.1647484142E-05 1.578212593 0.1629122408E-05 1.580564104 0.1610301032E-05 1.582915614 0.1591035908E-05 1.585267125 0.1571342682E-05 1.587618636 0.1551236867E-05 1.589970147 0.1530733947E-05 1.592321658 0.1509849457E-05 1.594673169 0.1488599057E-05 1.597024680 0.1466998583E-05 1.599376191 0.1445064098E-05 1.601727702 0.1422811920E-05 1.604079212 0.1400258650E-05 1.606430723 0.1377421188E-05 1.608782234 0.1354316738E-05 1.611133745 0.1330962819E-05 1.613485256 0.1307377253E-05 1.615836767 0.1283578162E-05 1.618188278 0.1259583952E-05 1.620539789 0.1235413297E-05 1.622891299 0.1211085122E-05 1.625242810 0.1186618574E-05 1.627594321 0.1162032999E-05 1.629945832 0.1137347915E-05 1.632297343 0.1112582978E-05 1.634648854 0.1087757954E-05 1.637000365 0.1062892683E-05 1.639351876 0.1038007046E-05 1.641703387 0.1013120927E-05 1.644054897 0.9882541836E-06 1.646406408 0.9634266021E-06 1.648757919 0.9386578669E-06 1.651109430 0.9139675219E-06 1.653460941 0.8893749337E-06 1.655812452 0.8648992558E-06 1.658163963 0.8405593921E-06 1.660515474 0.8163739624E-06 1.662866985 0.7923612670E-06 1.665218495 0.7685392533E-06 1.667570006 0.7449254828E-06 1.669921517 0.7215370991E-06 1.672273028 0.6983907975E-06 1.674624539 0.6755027953E-06 1.676976050 0.6528888037E-06 1.679327561 0.6305640010E-06 1.681679072 0.6085430070E-06 1.684030583 0.5868398599E-06 1.686382093 0.5654679932E-06 1.688733604 0.5444402157E-06 1.691085115 0.5237686924E-06 1.693436626 0.5034649271E-06 1.695788137 0.4835397470E-06 1.698139648 0.4640032890E-06 1.700491159 0.4448649877E-06 1.702842670 0.4261335648E-06 1.705194180 0.4078170212E-06 1.707545691 0.3899226300E-06 1.709897202 0.3724569318E-06 1.712248713 0.3554257313E-06 1.714600224 0.3388340963E-06 1.716951735 0.3226863576E-06 1.719303246 0.3069861115E-06 1.721654757 0.2917362231E-06 1.724006268 0.2769388321E-06 1.726357778 0.2625953594E-06 1.728709289 0.2487065156E-06 1.731060800 0.2352723111E-06 1.733412311 0.2222920680E-06 1.735763822 0.2097644320E-06 1.738115333 0.1976873878E-06 1.740466844 0.1860582738E-06 1.742818355 0.1748737993E-06 1.745169866 0.1641300626E-06 1.747521376 0.1538225699E-06 1.749872887 0.1439462553E-06 1.752224398 0.1344955026E-06 1.754575909 0.1254641669E-06 1.756927420 0.1168455980E-06 1.759278931 0.1086326639E-06 1.761630442 0.1008177755E-06 1.763981953 0.9339291216E-07 1.766333464 0.8634964718E-07 1.768684974 0.7967917459E-07 1.771036485 0.7337233614E-07 1.773387996 0.6741964894E-07 1.775739507 0.6181133356E-07 1.778091018 0.5653734283E-07 1.780442529 0.5158739141E-07 1.782794040 0.4695098656E-07 1.785145551 0.4261746098E-07 1.787497061 0.3857600961E-07 1.789848572 0.3481573509E-07 1.792200083 0.3132571373E-07 1.794551594 0.2809511853E-07 1.796903105 0.2511353245E-07 1.799254616 0.2237212047E-07 1.801606127 0.1987164755E-07 1.803957638 0.1807324569E-07 1.806309149 0.2094280209E-07 1.808660659 0.2440927731E-07 1.811012170 0.2807803574E-07 1.813363681 0.3190112387E-07 1.815715192 0.3577415816E-07 1.818066703 0.3783432577E-07 1.820418214 0.3306666608E-07 1.822769725 0.2812090472E-07 1.825121236 0.2368243990E-07 1.827472747 0.1976043297E-07 1.829824257 0.1632676381E-07 1.832175768 0.1334640596E-07 1.834527279 0.1078264645E-07 1.836878790 0.8598633880E-08 1.839230301 0.6758040419E-08 1.841581812 0.5225433034E-08 1.843933323 0.3966524374E-08 1.846284834 0.2948364607E-08 1.848636345 0.2139502211E-08 1.850987855 0.1510130387E-08 1.853339366 0.1032230787E-08 1.855690877 0.6797227354E-09 1.858042388 0.4727331959E-09 1.860393899 0.4253494179E-09 1.862745410 0.3871403269E-09 1.865096921 0.3571576434E-09 1.867448432 0.3346222488E-09 1.869799942 0.3189261121E-09 1.872151453 0.3096339730E-09 1.874502964 0.3064847410E-09 1.876849995 0.3092866820E-09 1.879197025 0.3173590961E-09 1.881544055 0.3308959652E-09 1.883891086 0.3502161037E-09 1.886238116 0.3762735082E-09 1.888585147 0.7531767632E-09 1.890932177 0.1368954109E-08 1.893279207 0.2309821655E-08 1.895626238 0.3675054325E-08 1.897973268 0.5576650080E-08 1.900320299 0.8138951790E-08 1.902667329 0.1149822873E-07 1.905014359 0.1580221932E-07 1.907361390 0.2120963669E-07 1.909708420 0.2788963874E-07 1.912055451 0.3581586767E-07 1.914402481 0.3646902127E-07 1.916749511 0.3716757834E-07 1.919096542 0.3791248431E-07 1.921443572 0.3870471928E-07 1.923790603 0.3954529399E-07 1.926137633 0.4043524549E-07 1.928484663 0.4137563225E-07 1.930831694 0.4236752894E-07 1.933178724 0.4341202071E-07 1.935525754 0.4451019698E-07 1.937872785 0.4566314480E-07 1.940219815 0.4687194168E-07 1.942566846 0.4813764798E-07 1.944913876 0.4946129877E-07 1.947260906 0.5084389532E-07 1.949607937 0.5228639603E-07 1.951954967 0.5378970708E-07 1.954301998 0.5535467264E-07 1.956649028 0.5698206477E-07 1.958996058 0.5867257307E-07 1.961343089 0.5959845763E-07 1.963690119 0.5759106324E-07 1.966037150 0.5561214344E-07 1.968384180 0.5366518773E-07 1.970731210 0.5175348888E-07 1.973078241 0.4988013647E-07 1.975425271 0.4804801165E-07 1.977772302 0.4625978335E-07 1.980119332 0.4451790574E-07 1.982466362 0.4282461721E-07 1.984813393 0.4118194063E-07 1.987160423 0.3959168516E-07 1.989507454 0.3805544935E-07 1.991854484 0.3657462573E-07 1.994201514 0.3515040679E-07 1.996548545 0.3378379235E-07 1.998895575 0.3442891440E-07 2.001242605 0.3639870083E-07 2.003589636 0.3843823108E-07 2.005936666 0.4054829021E-07 2.008283697 0.4272965526E-07 2.010630727 0.4498309568E-07 2.012977757 0.4730937342E-07 2.015324788 0.4970924262E-07 2.017671818 0.5218344910E-07 2.020018849 0.5473272941E-07 2.022365879 0.5735780973E-07 2.024712909 0.6005940441E-07 2.027059940 0.6283821432E-07 2.029406970 0.6569492491E-07 2.031754001 0.6863020409E-07 2.034101031 0.7164469991E-07 2.036448061 0.7473903801E-07 2.038795092 0.7791381884E-07 2.041142122 0.8116961478E-07 2.043489153 0.8450696692E-07 2.045836183 0.8792638166E-07 2.048183213 0.9142832702E-07 2.050530244 0.9501322857E-07 2.052877274 0.9868146495E-07 2.055224304 0.1024333629E-06 2.057571335 0.1062691913E-06 2.059918365 0.1101891548E-06 2.062265396 0.1141933854E-06 2.064612426 0.1182819329E-06 2.066959456 0.1224547522E-06 2.069306487 0.1267116878E-06 2.071653517 0.1310524522E-06 2.074000548 0.1354765977E-06 2.076347578 0.1399834757E-06 2.078694608 0.1445721794E-06 2.081041639 0.1492414582E-06 2.083388669 0.1539895872E-06 2.085735700 0.1588141601E-06 2.088082730 0.1637117490E-06 2.090429760 0.1686773191E-06 2.092776791 0.1737031678E-06 2.095123821 0.1787768894E-06 2.097470852 0.1838771922E-06 2.099817882 0.1889646439E-06 2.102164912 0.1939597725E-06 2.104511943 0.1986910247E-06 2.106858973 0.2028040877E-06 2.109206004 0.2058208504E-06 2.111553034 0.2076488036E-06 2.113900064 0.2086604239E-06 2.116247095 0.2091875618E-06 2.118594125 0.2093994209E-06 2.120941155 0.2093755163E-06 2.123288186 0.2091555505E-06 2.125635216 0.2087612373E-06 2.127982247 0.2082056366E-06 2.130329277 0.2074973872E-06 2.132676307 0.2066427665E-06 2.135023338 0.2056467593E-06 2.137370368 0.2045136443E-06 2.139717399 0.2032473305E-06 2.142064429 0.2018515576E-06 2.144411459 0.2003300181E-06 2.146758490 0.1986864329E-06 2.149105520 0.1969245988E-06 2.151452551 0.1950484163E-06 2.153799581 0.1930619058E-06 2.156146611 0.1909692164E-06 2.158493642 0.1887746270E-06 2.160840672 0.1864825453E-06 2.163187703 0.1891085719E-06 2.165534733 0.1996230716E-06 2.167881763 0.2105691180E-06 2.170228794 0.2219515339E-06 2.172575824 0.2337744080E-06 2.174922855 0.2460410566E-06 2.177269885 0.2587539879E-06 2.179616915 0.2719148665E-06 2.181963946 0.2855244810E-06 2.184310976 0.2995827121E-06 2.186658006 0.3140885042E-06 2.189005037 0.3290398378E-06 2.191352067 0.3444337053E-06 2.193699098 0.3602660885E-06 2.196046128 0.3765319388E-06 2.198393158 0.3932251602E-06 2.200740189 0.4103385950E-06 2.203087219 0.4278640120E-06 2.205434250 0.4457920982E-06 2.207781280 0.4641124531E-06 2.210128310 0.4828135856E-06 2.212475341 0.5018829153E-06 2.214822371 0.5213067757E-06 2.217169402 0.5295564368E-06 2.219516432 0.5366026349E-06 2.221863462 0.5436026763E-06 2.224210493 0.5505528313E-06 2.226557523 0.5574493653E-06 2.228904554 0.5642885429E-06 2.231251584 0.5710666303E-06 2.233598614 0.5777798986E-06 2.235945645 0.5844246273E-06 2.238292675 0.5909971069E-06 2.240639706 0.5974936430E-06 2.242986736 0.6039105586E-06 2.245333766 0.6102441980E-06 2.247680797 0.6164909298E-06 2.250027827 0.6226471501E-06 2.252374857 0.6287092860E-06 2.254721888 0.6346737986E-06 2.257068918 0.6405371862E-06 2.259415949 0.6462959880E-06 2.261762979 0.6519467866E-06 2.264110009 0.6574862117E-06 2.266457040 0.6629109430E-06 2.268804070 0.6682177134E-06 2.271151101 0.6734033123E-06 2.273498131 0.6784645882E-06 2.275845161 0.6833984520E-06 2.278192192 0.6882018800E-06 2.280539222 0.6928719165E-06 2.282886253 0.6974056770E-06 2.285233283 0.7018003509E-06 2.287580313 0.7060532042E-06 2.289927344 0.7101615820E-06 2.292274374 0.7141229113E-06 2.294621405 0.7179347037E-06 2.296968435 0.7215945574E-06 2.299315465 0.7251001598E-06 2.301662496 0.7284492900E-06 2.304009526 0.7316398206E-06 2.306356557 0.7346697203E-06 2.308703587 0.7375370552E-06 2.311050617 0.7402399917E-06 2.313397648 0.7427767975E-06 2.315744678 0.7451458437E-06 2.318091708 0.7473456065E-06 2.320438739 0.7493746686E-06 2.322785769 0.7512317206E-06 2.325132800 0.7529155625E-06 2.327479830 0.7544251047E-06 2.329826860 0.7557593693E-06 2.332173891 0.7569174910E-06 2.334520921 0.7578987179E-06 2.336867952 0.7587024124E-06 2.339214982 0.7593280518E-06 2.341562012 0.7597752288E-06 2.343909043 0.7600436520E-06 2.346256073 0.7601331459E-06 0.000000000 0.3064847411E-09 0.2347351854E-02 0.3240447195E-09 0.4694703708E-02 0.3795480997E-09 0.7042055561E-02 0.4813822817E-09 0.9389407415E-02 0.6432532253E-09 0.1173675927E-01 0.8837881043E-09 0.1408411112E-01 0.1226004413E-08 0.1643146298E-01 0.1696672718E-08 0.1877881483E-01 0.2325609491E-08 0.2112616668E-01 0.3144944988E-08 0.2347351854E-01 0.4188417088E-08 0.2582087039E-01 0.5490743150E-08 0.2816822225E-01 0.7087116413E-08 0.3051557410E-01 0.9012860446E-08 0.3286292595E-01 0.1130325595E-07 0.3521027781E-01 0.1399353192E-07 0.3755762966E-01 0.1711899265E-07 0.3990498151E-01 0.2071523735E-07 0.4225233337E-01 0.2481842335E-07 0.4459968522E-01 0.2946552714E-07 0.4694703708E-01 0.3469456742E-07 0.4929438893E-01 0.4054476732E-07 0.5164174078E-01 0.4705664646E-07 0.5398909264E-01 0.5427204372E-07 0.5633644449E-01 0.6216888751E-07 0.5868379634E-01 0.5865919422E-07 0.6103114820E-01 0.5514120771E-07 0.6337850005E-01 0.5162831994E-07 0.6572585191E-01 0.4813393585E-07 0.6807320376E-01 0.4467142389E-07 0.7042055561E-01 0.4125406655E-07 0.7276790747E-01 0.3789501081E-07 0.7511525932E-01 0.3460721882E-07 0.7746261117E-01 0.3140341894E-07 0.7980996303E-01 0.2829605718E-07 0.8215731488E-01 0.2529724949E-07 0.8450466674E-01 0.2582552666E-07 0.8685201859E-01 0.2843384450E-07 0.8919937044E-01 0.3123851481E-07 0.9154672230E-01 0.3424877921E-07 0.9389407415E-01 0.3747399738E-07 0.9624142601E-01 0.4092363486E-07 0.9858877786E-01 0.4460725021E-07 0.1009361297 0.4853448153E-07 0.1032834816 0.5271503240E-07 0.1056308334 0.5715865718E-07 0.1079781853 0.6187514562E-07 0.1103255371 0.6687430682E-07 0.1126728890 0.7216595250E-07 0.1150202408 0.7775987950E-07 0.1173675927 0.8366585168E-07 0.1197149445 0.8989358097E-07 0.1220622964 0.9645270773E-07 0.1244096483 0.1033527803E-06 0.1267570001 0.1106032339E-06 0.1291043520 0.1182133684E-06 0.1314517038 0.1261923258E-06 0.1337990557 0.1345490668E-06 0.1361464075 0.1432923457E-06 0.1384937594 0.1524306860E-06 0.1408411112 0.1619723541E-06 0.1431884631 0.1719253322E-06 0.1455358149 0.1822972910E-06 0.1478831668 0.1930955612E-06 0.1502305186 0.2043271042E-06 0.1525778705 0.2159984821E-06 0.1549252223 0.2281158268E-06 0.1572725742 0.2406848089E-06 0.1596199261 0.2537106050E-06 0.1619672779 0.2671978648E-06 0.1643146298 0.2811506778E-06 0.1666619816 0.2955725389E-06 0.1690093335 0.3104663136E-06 0.1713566853 0.3258342027E-06 0.1737040372 0.3416777064E-06 0.1760513890 0.3579975885E-06 0.1783987409 0.3747938393E-06 0.1807460927 0.3920656390E-06 0.1830934446 0.4098113206E-06 0.1854407964 0.4280283330E-06 0.1877881483 0.4467132032E-06 0.1901355002 0.4658614997E-06 0.1924828520 0.4854677951E-06 0.1948302039 0.5055256295E-06 0.1971775557 0.5260274740E-06 0.1995249076 0.5469646947E-06 0.2018722594 0.5683275169E-06 0.2042196113 0.5901049906E-06 0.2065669631 0.6122849562E-06 0.2089143150 0.6348540109E-06 0.2112616668 0.6577974763E-06 0.2136090187 0.6810993665E-06 0.2159563705 0.7047423577E-06 0.2183037224 0.7287077575E-06 0.2206510743 0.7529754767E-06 0.2229984261 0.7775240000E-06 0.2253457780 0.8023303591E-06 0.2276931298 0.8273701043E-06 0.2300404817 0.8526172778E-06 0.2323878335 0.8780443854E-06 0.2347351854 0.9036223678E-06 0.2370825372 0.9293205699E-06 0.2394298891 0.9551067077E-06 0.2417772409 0.9809468316E-06 0.2441245928 0.1006805283E-05 0.2464719446 0.1032644647E-05 0.2488192965 0.1058425692E-05 0.2511666484 0.1084107297E-05 0.2535140002 0.1109646370E-05 0.2558613521 0.1134997733E-05 0.2582087039 0.1160113997E-05 0.2605560558 0.1184945388E-05 0.2629034076 0.1209439542E-05 0.2652507595 0.1233541244E-05 0.2675981113 0.1257192092E-05 0.2699454632 0.1280330085E-05 0.2722928150 0.1302889090E-05 0.2746401669 0.1324798168E-05 0.2769875187 0.1345980713E-05 0.2793348706 0.1366353350E-05 0.2816822225 0.1385824513E-05 0.2840295743 0.1404292594E-05 0.2863769262 0.1421643540E-05 0.2887242780 0.1437747674E-05 0.2910716299 0.1452455496E-05 0.2934189817 0.1465592044E-05 0.2957663336 0.1476949278E-05 0.2981136854 0.1486275682E-05 0.3004610373 0.1493261895E-05 0.3028083891 0.1497520701E-05 0.3051557410 0.1498558859E-05 0.3075030928 0.1495737272E-05 0.3098504447 0.1488214618E-05 0.3121977966 0.1474868509E-05 0.3145451484 0.1454188973E-05 0.3168925003 0.1424146603E-05 0.3192398521 0.1382064496E-05 0.3215872040 0.1324593758E-05 0.3239345558 0.1248029538E-05 0.3262819077 0.1149333756E-05 0.3286292595 0.1027988609E-05 0.3309766114 0.8877852715E-06 0.3333239632 0.7367916153E-06 0.3356713151 0.5850458307E-06 0.3380186669 0.4417816567E-06 0.3403660188 0.3139142611E-06 0.3427133707 0.2058693274E-06 0.3450607225 0.2016650479E-06 0.3474080744 0.2327116739E-06 0.3497554262 0.2665013007E-06 0.3521027781 0.3031251027E-06 0.3544501299 0.3426730100E-06 0.3567974818 0.3852335136E-06 0.3591448336 0.4308934725E-06 0.3614921855 0.4797379223E-06 0.3638395373 0.5318498853E-06 0.3661868892 0.5873101812E-06 0.3685342410 0.6461972400E-06 0.3708815929 0.7085869151E-06 0.3732289448 0.7745522995E-06 0.3755762966 0.8441635422E-06 0.3779236485 0.9174876686E-06 0.3802710003 0.9945884021E-06 0.3826183522 0.1075525989E-05 0.3849657040 0.1160357026E-05 0.3873130559 0.1249134294E-05 0.3896604077 0.1341906589E-05 0.3920077596 0.1438718568E-05 0.3943551114 0.1539610588E-05 0.3967024633 0.1644618556E-05 0.3990498151 0.1667182599E-05 0.4013971670 0.1642390735E-05 0.4037445189 0.1617130128E-05 0.4060918707 0.1591422020E-05 0.4084392226 0.1581963033E-05 0.4107865744 0.1676073815E-05 0.4131339263 0.1673231529E-05 0.4154812781 0.1643768320E-05 0.4178286300 0.1619992139E-05 0.4201759818 0.1601586456E-05 0.4225233337 0.1588236846E-05 0.4248706855 0.1579623704E-05 0.4272180374 0.1575412933E-05 0.4295653892 0.1575244260E-05 0.4319127411 0.1578716712E-05 0.4342600929 0.1585370892E-05 0.4366074448 0.1594667866E-05 0.4389547967 0.1605965169E-05 0.4413021485 0.1618491740E-05 0.4436495004 0.1631326107E-05 0.4459968522 0.1643385957E-05 0.4483442041 0.1653441944E-05 0.4506915559 0.1660171517E-05 0.4530389078 0.1662264574E-05 0.4553862596 0.1658575733E-05 0.4577336115 0.1648289675E-05 0.4600809633 0.1631043156E-05 0.4624283152 0.1606954223E-05 0.4647756670 0.1576549947E-05 0.4671230189 0.1540629595E-05 0.4694703708 0.1500117597E-05 0.4718177226 0.1455946050E-05 0.4741650745 0.1408980550E-05 0.4765124263 0.1359984382E-05 0.4788597782 0.1309609010E-05 0.4812071300 0.1258399430E-05 0.4835544819 0.1206806242E-05 0.4859018337 0.1155199635E-05 0.4882491856 0.1103882811E-05 0.4905965374 0.1053103802E-05 0.4929438893 0.1003065405E-05 0.4952912411 0.9539333297E-06 0.4976385930 0.9058427724E-06 0.4999859449 0.8589036970E-06 0.5023332967 0.8132050574E-06 0.5046806486 0.7688181824E-06 0.5070280004 0.7257994955E-06 0.5093753523 0.6841927111E-06 0.5117227041 0.6440306203E-06 0.5140700560 0.6053365511E-06 0.5164174078 0.5681255743E-06 0.5187647597 0.5324055064E-06 0.5211121115 0.4981777521E-06 0.5234594634 0.4654380197E-06 0.5258068152 0.4341769339E-06 0.5281541671 0.4043805666E-06 0.5305015190 0.3760309018E-06 0.5328488708 0.3491062475E-06 0.5351962227 0.3235816036E-06 0.5375435745 0.2994289954E-06 0.5398909264 0.2766177774E-06 0.5422382782 0.2551149144E-06 0.5445856301 0.2348852422E-06 0.5469329819 0.2171360740E-06 0.5492803338 0.2071172963E-06 0.5516276856 0.1975469835E-06 0.5539750375 0.1884140673E-06 0.5563223893 0.1797071528E-06 0.5586697412 0.1714145681E-06 0.5610170931 0.1635244147E-06 0.5633644449 0.1560246202E-06 0.5657117968 0.1489029932E-06 0.5680591486 0.1421472810E-06 0.5704065005 0.1357452326E-06 0.5727538523 0.1296846666E-06 0.5751012042 0.1239535475E-06 0.5774485560 0.1185400719E-06 0.5797959079 0.1134327680E-06 0.5821432597 0.1086206105E-06 0.5844906116 0.1080719622E-06 0.5868379634 0.1087313673E-06 0.5891853153 0.1093513260E-06 0.5915326672 0.1099312302E-06 0.5938800190 0.1104705100E-06 0.5962273709 0.1109686345E-06 0.5985747227 0.1114251123E-06 0.6009220746 0.1118394925E-06 0.6032694264 0.1122113651E-06 0.6056167783 0.1125403618E-06 0.6079641301 0.1128261564E-06 0.6103114820 0.1130684650E-06 0.6126588338 0.1132670470E-06 0.6150061857 0.1134217050E-06 0.6173535375 0.1135322851E-06 0.6197008894 0.1135986772E-06 0.6220482413 0.1136208152E-06 0.6243952716 0.1134810866E-06 0.6267423020 0.1134116714E-06 0.6290893324 0.1134126300E-06 0.6314363628 0.1134840155E-06 0.6337833932 0.1136258731E-06 0.6361304236 0.1138382402E-06 0.6384774540 0.1141211457E-06 0.6408244844 0.1144746092E-06 0.6431715148 0.1148986396E-06 0.6455185452 0.1153932343E-06 0.6478655756 0.1159583771E-06 0.6502126060 0.1165940363E-06 0.6525596364 0.1173001629E-06 0.6549066668 0.1180766879E-06 0.6572536971 0.1189235201E-06 0.6596007275 0.1198405427E-06 0.6619477579 0.1208276110E-06 0.6642947883 0.1218845484E-06 0.6666418187 0.1230111440E-06 0.6689888491 0.1242071480E-06 0.6713358795 0.1254722689E-06 0.6736829099 0.1268061693E-06 0.6760299403 0.1282084620E-06 0.6783769707 0.1296787062E-06 0.6807240011 0.1312164032E-06 0.6830710315 0.1328209925E-06 0.6854180619 0.1344918476E-06 0.6877650922 0.1362282717E-06 0.6901121226 0.1380294941E-06 0.6924591530 0.1398946654E-06 0.6948061834 0.1418228542E-06 0.6971532138 0.1438130425E-06 0.6995002442 0.1458641226E-06 0.7018472746 0.1479748927E-06 0.7041943050 0.1501440538E-06 0.7065413354 0.1523702062E-06 0.7088883658 0.1557135271E-06 0.7112353962 0.1661607633E-06 0.7135824266 0.1770827177E-06 0.7159294570 0.1884801246E-06 0.7182764874 0.2003520800E-06 0.7206235177 0.2126959241E-06 0.7229705481 0.2255071069E-06 0.7253175785 0.2387790277E-06 0.7276646089 0.2525028340E-06 0.7300116393 0.2666671619E-06 0.7323586697 0.2812577855E-06 0.7347057001 0.2962571283E-06 0.7370527305 0.3116435570E-06 0.7393997609 0.3273903284E-06 0.7417467913 0.3434639683E-06 0.7440938217 0.3598216878E-06 0.7464408521 0.3764071195E-06 0.7487878825 0.3931430019E-06 0.7511349128 0.4099181026E-06 0.7534819432 0.4265628499E-06 0.7558289736 0.4428023194E-06 0.7581760040 0.4581649639E-06 0.7605230344 0.4718207363E-06 0.7628700648 0.4824056077E-06 0.7652170952 0.4882784104E-06 0.7675641256 0.4887666700E-06 0.7699111560 0.4849347111E-06 0.7722581864 0.4784465605E-06 0.7746052168 0.4705297798E-06 0.7769522472 0.4618984328E-06 0.7792992776 0.4529495495E-06 0.7816463080 0.4439096604E-06 0.7839933383 0.4349140911E-06 0.7863403687 0.4260476158E-06 0.7886873991 0.4173656708E-06 0.7910344295 0.4089058606E-06 0.7933814599 0.4006944722E-06 0.7957284903 0.3927503225E-06 0.7980755207 0.3850871205E-06 0.8004225511 0.3777149707E-06 0.8027695815 0.3706413632E-06 0.8051166119 0.3638718452E-06 0.8074636423 0.3574104916E-06 0.8098106727 0.3512602423E-06 0.8121577031 0.3454231525E-06 0.8145047335 0.3399005813E-06 0.8168517638 0.3405783755E-06 0.8191987942 0.3453431272E-06 0.8215458246 0.3500321396E-06 0.8238928550 0.3546404482E-06 0.8262398854 0.3591631875E-06 0.8285869158 0.3635956016E-06 0.8309339462 0.3679330551E-06 0.8332809766 0.3721710430E-06 0.8356280070 0.3763052010E-06 0.8379750374 0.3803313156E-06 0.8403220678 0.3842453333E-06 0.8426690982 0.3880433702E-06 0.8450161286 0.3917217211E-06 0.8473631589 0.3952768680E-06 0.8497101893 0.3987054886E-06 0.8520572197 0.4020044641E-06 0.8544042501 0.4051708872E-06 0.8567512805 0.4082020690E-06 0.8590983109 0.4110955457E-06 0.8614453413 0.4138490854E-06 0.8637923717 0.4164606938E-06 0.8661394021 0.4189286194E-06 0.8684864325 0.4212513591E-06 0.8708334629 0.4234276620E-06 0.8731804933 0.4254565339E-06 0.8755275237 0.4273372406E-06 0.8778745541 0.4290693104E-06 0.8802215844 0.4306525371E-06 0.8825686148 0.4320869811E-06 0.8849156452 0.4333729706E-06 0.8872626756 0.4345111022E-06 0.8896097060 0.4355022406E-06 0.8919567364 0.4363475171E-06 0.8943037668 0.4370483286E-06 0.8966507972 0.4376063344E-06 0.8989978276 0.4380234528E-06 0.9013448580 0.4383018572E-06 0.9036918884 0.4384439705E-06 0.9060389188 0.4384524588E-06 0.9083859492 0.4383302246E-06 0.9107329796 0.4380803980E-06 0.9130800099 0.4377063276E-06 0.9154270403 0.4372115699E-06 0.9177740707 0.4365998778E-06 0.9201211011 0.4358751878E-06 0.9224681315 0.4350416060E-06 0.9248151619 0.4379921874E-06 0.9271621923 0.4480112114E-06 0.9295092227 0.4583629080E-06 0.9318562531 0.4690419107E-06 0.9342032835 0.4800412911E-06 0.9365503139 0.4913520921E-06 0.9388973443 0.5029626201E-06 0.9412443747 0.5148573252E-06 0.9435914050 0.5270149505E-06 0.9459384354 0.5394053175E-06 0.9482854658 0.5519834225E-06 0.9506324962 0.5646778629E-06 0.9529795266 0.5773663694E-06 0.9553265570 0.5898194543E-06 0.9576735874 0.6015592601E-06 0.9600206178 0.6114978113E-06 0.9623676482 0.6172746709E-06 0.9647146786 0.6159557045E-06 0.9670617090 0.6079933984E-06 0.9694087394 0.5964212588E-06 0.9717557698 0.5832570996E-06 0.9741028002 0.5694048479E-06 0.9764498305 0.5552722623E-06 0.9787968609 0.5410636945E-06 0.9811438913 0.5268937061E-06 0.9834909217 0.5128332518E-06 0.9858379521 0.4989301362E-06 0.9881849825 0.4852188586E-06 0.9905320129 0.4717257051E-06 0.9928790433 0.4584715507E-06 0.9952260737 0.4454734842E-06 0.9975731041 0.4327457954E-06 0.9999201345 0.4203006006E-06 1.002267165 0.4081482537E-06 1.004614195 0.3962976276E-06 1.006961226 0.3847563135E-06 1.009308256 0.3735307683E-06 1.011655286 0.3660658216E-06 1.014002317 0.3642009604E-06 1.016349347 0.3623664111E-06 1.018696378 0.3605639150E-06 1.021043408 0.3587951994E-06 1.023390438 0.3570619794E-06 1.025737469 0.3553659587E-06 1.028084499 0.3537088295E-06 1.030431530 0.3520922707E-06 1.032778560 0.3505179469E-06 1.035125590 0.3489875045E-06 1.037472621 0.3475025696E-06 1.039819651 0.3460647433E-06 1.042166682 0.3446755979E-06 1.044513712 0.3433366725E-06 1.046860742 0.3420494684E-06 1.049207773 0.3408154439E-06 1.051554803 0.3396360103E-06 1.053901834 0.3385125267E-06 1.056248864 0.3374462954E-06 1.058595894 0.3364385579E-06 1.060942925 0.3354904900E-06 1.063289955 0.3346031985E-06 1.065636985 0.3337777167E-06 1.067984016 0.3330150016E-06 1.070331046 0.3323159302E-06 1.072678077 0.3316812966E-06 1.075025107 0.3311118094E-06 1.077372137 0.3306080895E-06 1.079719168 0.3301706676E-06 1.082066198 0.3297999828E-06 1.084413229 0.3294963809E-06 1.086760259 0.3292601128E-06 1.089107289 0.3290913342E-06 1.091454320 0.3289901042E-06 1.093801350 0.3289563854E-06 1.096152861 0.3289281520E-06 1.098504372 0.3288435403E-06 1.100855883 0.3287028032E-06 1.103207394 0.3285063552E-06 1.105558905 0.3282547759E-06 1.107910415 0.3279488144E-06 1.110261926 0.3275893920E-06 1.112613437 0.3271776059E-06 1.114964948 0.3267147300E-06 1.117316459 0.3262022157E-06 1.119667970 0.3256416901E-06 1.122019481 0.3250349546E-06 1.124370992 0.3243839810E-06 1.126722503 0.3236909087E-06 1.129074013 0.3229580397E-06 1.131425524 0.3221878348E-06 1.133777035 0.3213829085E-06 1.136128546 0.3205460241E-06 1.138480057 0.3196800890E-06 1.140831568 0.3187881487E-06 1.143183079 0.3178733819E-06 1.145534590 0.3169390949E-06 1.147886101 0.3159887154E-06 1.150237611 0.3150257871E-06 1.152589122 0.3140539632E-06 1.154940633 0.3130770003E-06 1.157292144 0.3120987523E-06 1.159643655 0.3111231637E-06 1.161995166 0.3101542630E-06 1.164346677 0.3091961568E-06 1.166698188 0.3082530224E-06 1.169049699 0.3073291022E-06 1.171401209 0.3064286966E-06 1.173752720 0.3055561581E-06 1.176104231 0.3047158851E-06 1.178455742 0.3039123155E-06 1.180807253 0.3031499217E-06 1.183158764 0.3024332042E-06 1.185510275 0.3017666869E-06 1.187861786 0.3011549119E-06 1.190213296 0.3049580639E-06 1.192564807 0.3108725559E-06 1.194916318 0.3169063542E-06 1.197267829 0.3230588219E-06 1.199619340 0.3293302919E-06 1.201970851 0.3357219653E-06 1.204322362 0.3422356519E-06 1.206673873 0.3488734109E-06 1.209025384 0.3556371790E-06 1.211376894 0.3625284661E-06 1.213728405 0.3695481717E-06 1.216079916 0.3766965266E-06 1.218431427 0.3839731381E-06 1.220782938 0.3913770970E-06 1.223134449 0.3989071108E-06 1.225485960 0.4065616326E-06 1.227837471 0.4143389720E-06 1.230188982 0.4222373801E-06 1.232540492 0.4302551101E-06 1.234892003 0.4383904562E-06 1.237243514 0.4466417760E-06 1.239595025 0.4550074998E-06 1.241946536 0.4634861321E-06 1.244298047 0.4720762463E-06 1.246649558 0.4807764761E-06 1.249001069 0.4895855046E-06 1.251352580 0.4985020513E-06 1.253704090 0.5075248596E-06 1.256055601 0.5166526830E-06 1.258407112 0.5258842714E-06 1.260758623 0.5352183586E-06 1.263110134 0.5446536489E-06 1.265461645 0.5541888055E-06 1.267813156 0.5638224386E-06 1.270164667 0.5735530957E-06 1.272516177 0.5833792518E-06 1.274867688 0.5932993018E-06 1.277219199 0.6033115543E-06 1.279570710 0.6134142272E-06 1.281922221 0.6236054454E-06 1.284273732 0.6338832415E-06 1.286625243 0.6442455583E-06 1.288976754 0.6546902560E-06 1.291328265 0.6652151210E-06 1.293679775 0.6758178806E-06 1.296031286 0.6864962208E-06 1.298382797 0.6972478093E-06 1.300734308 0.7080703240E-06 1.303085819 0.7189614875E-06 1.305437330 0.7299191082E-06 1.307788841 0.7409411280E-06 1.310140352 0.7520256797E-06 1.312491863 0.7631711521E-06 1.314843373 0.7743762661E-06 1.317194884 0.7856401631E-06 1.319546395 0.7969625064E-06 1.321897906 0.8083435981E-06 1.324249417 0.8197845155E-06 1.326600928 0.8312872677E-06 1.328952439 0.8428549787E-06 1.331303950 0.8544920995E-06 1.333655461 0.8662046556E-06 1.336006971 0.8780005355E-06 1.338358482 0.8898898255E-06 1.340709993 0.9018851963E-06 1.343061504 0.9140023430E-06 1.345413015 0.9262604749E-06 1.347764526 0.9386828395E-06 1.350116037 0.9512972415E-06 1.352467548 0.9641364824E-06 1.354819059 0.9772385881E-06 1.357170569 0.9906466010E-06 1.359522080 0.1004407607E-05 1.361873591 0.1018570549E-05 1.364225102 0.1033182325E-05 1.366576613 0.1048281797E-05 1.368928124 0.1063891823E-05 1.371279635 0.1080010298E-05 1.373631146 0.1096602323E-05 1.375982656 0.1113596291E-05 1.378334167 0.1130886133E-05 1.380685678 0.1148340065E-05 1.383037189 0.1165813770E-05 1.385388700 0.1183164527E-05 1.387740211 0.1200263098E-05 1.390091722 0.1217001593E-05 1.392443233 0.1233297156E-05 1.394794744 0.1249092269E-05 1.397146254 0.1264352855E-05 1.399497765 0.1279065203E-05 1.401849276 0.1293232484E-05 1.404200787 0.1306871339E-05 1.406552298 0.1320008777E-05 1.408903809 0.1332679498E-05 1.411255320 0.1344923670E-05 1.413606831 0.1356785109E-05 1.415958342 0.1368309835E-05 1.418309852 0.1379544942E-05 1.420661363 0.1390537720E-05 1.423012874 0.1401334991E-05 1.425364385 0.1411982613E-05 1.427715896 0.1422525117E-05 1.430067407 0.1433005444E-05 1.432418918 0.1443464767E-05 1.434770429 0.1453942372E-05 1.437121940 0.1464475585E-05 1.439473450 0.1475099735E-05 1.441824961 0.1485848136E-05 1.444176472 0.1496752091E-05 1.446527983 0.1507840901E-05 1.448879494 0.1519141875E-05 1.451231005 0.1530680337E-05 1.453582516 0.1542479625E-05 1.455934027 0.1554561073E-05 1.458285537 0.1566943969E-05 1.460637048 0.1579645488E-05 1.462988559 0.1592680595E-05 1.465340070 0.1606061916E-05 1.467691581 0.1619799564E-05 1.470043092 0.1633900946E-05 1.472394603 0.1648370530E-05 1.474746114 0.1751898083E-05 1.477097625 0.1916819346E-05 1.479449135 0.2100529687E-05 1.481800646 0.2297543315E-05 1.484152157 0.2288058842E-05 1.486503668 0.2249032624E-05 1.488855179 0.2209318611E-05 1.491206690 0.2169538442E-05 1.493558201 0.2130338311E-05 1.495909712 0.2092467000E-05 1.498261223 0.2056827141E-05 1.500612733 0.2024492626E-05 1.502964244 0.1996681176E-05 1.505315755 0.1974737611E-05 1.507667266 0.1960382251E-05 1.510018777 0.1956160040E-05 1.512370288 0.1962832409E-05 1.514721799 0.1976279702E-05 1.517073310 0.1992643116E-05 1.519424821 0.2010245459E-05 1.521776331 0.2028418284E-05 1.524127842 0.2046856866E-05 1.526479353 0.2065397618E-05 1.528830864 0.2083938404E-05 1.531182375 0.2102406672E-05 1.533533886 0.2120745253E-05 1.535885397 0.2138905454E-05 1.538236908 0.2156843420E-05 1.540588418 0.2174518118E-05 1.542939929 0.2191890155E-05 1.545291440 0.2208921081E-05 1.547642951 0.2225572960E-05 1.549994462 0.2241808122E-05 1.552345973 0.2257589026E-05 1.554697484 0.2272878196E-05 1.557048995 0.2287638207E-05 1.559400506 0.2301831715E-05 1.561752016 0.2315421497E-05 1.564103527 0.2328370525E-05 1.566455038 0.2340642035E-05 1.568806549 0.2352199622E-05 1.571158060 0.2363007325E-05 1.573509571 0.2373029725E-05 1.575861082 0.2382232043E-05 1.578212593 0.2390580240E-05 1.580564104 0.2398041115E-05 1.582915614 0.2404582403E-05 1.585267125 0.2410172878E-05 1.587618636 0.2414782451E-05 1.589970147 0.2418382262E-05 1.592321658 0.2420944780E-05 1.594673169 0.2422443897E-05 1.597024680 0.2422855013E-05 1.599376191 0.2422155134E-05 1.601727702 0.2420322949E-05 1.604079212 0.2417338920E-05 1.606430723 0.2413185357E-05 1.608782234 0.2407846495E-05 1.611133745 0.2401308567E-05 1.613485256 0.2393559870E-05 1.615836767 0.2384590825E-05 1.618188278 0.2374394040E-05 1.620539789 0.2362964360E-05 1.622891299 0.2350298911E-05 1.625242810 0.2336397145E-05 1.627594321 0.2321260873E-05 1.629945832 0.2304894293E-05 1.632297343 0.2287304014E-05 1.634648854 0.2268499067E-05 1.637000365 0.2248490920E-05 1.639351876 0.2227293473E-05 1.641703387 0.2204923056E-05 1.644054897 0.2181398414E-05 1.646406408 0.2155585862E-05 1.648757919 0.2091901154E-05 1.651109430 0.2029141577E-05 1.653460941 0.1967335373E-05 1.655812452 0.1906508572E-05 1.658163963 0.1846685042E-05 1.660515474 0.1787886540E-05 1.662866985 0.1730132758E-05 1.665218495 0.1673441379E-05 1.667570006 0.1617828126E-05 1.669921517 0.1563306815E-05 1.672273028 0.1509889409E-05 1.674624539 0.1457586076E-05 1.676976050 0.1406405235E-05 1.679327561 0.1356353622E-05 1.681679072 0.1307436335E-05 1.684030583 0.1259656897E-05 1.686382093 0.1213017313E-05 1.688733604 0.1167518117E-05 1.691085115 0.1123158440E-05 1.693436626 0.1079936056E-05 1.695788137 0.1037847444E-05 1.698139648 0.9968878419E-06 1.700491159 0.9570512991E-06 1.702842670 0.9183307342E-06 1.705194180 0.8807179877E-06 1.707545691 0.8442038753E-06 1.709897202 0.8087782409E-06 1.712248713 0.7744300082E-06 1.714600224 0.7411472322E-06 1.716951735 0.7089171491E-06 1.719303246 0.6777262260E-06 1.721654757 0.6475602088E-06 1.724006268 0.6184041702E-06 1.726357778 0.5902425555E-06 1.728709289 0.5630592286E-06 1.731060800 0.5368375160E-06 1.733412311 0.5115602500E-06 1.735763822 0.4872098114E-06 1.738115333 0.4637681703E-06 1.740466844 0.4412169264E-06 1.742818355 0.4195373479E-06 1.745169866 0.3987104098E-06 1.747521376 0.3787168309E-06 1.749872887 0.3595371094E-06 1.752224398 0.3411515585E-06 1.754575909 0.3235403398E-06 1.756927420 0.3066834967E-06 1.759278931 0.2905609864E-06 1.761630442 0.2751527109E-06 1.763981953 0.2604385478E-06 1.766333464 0.2463983789E-06 1.768684974 0.2330121194E-06 1.771036485 0.2202597453E-06 1.773387996 0.2081213203E-06 1.775739507 0.1965770222E-06 1.778091018 0.1856071677E-06 1.780442529 0.1751922377E-06 1.782794040 0.1653129007E-06 1.785145551 0.1559500361E-06 1.787497061 0.1470847570E-06 1.789848572 0.1386984317E-06 1.792200083 0.1307727050E-06 1.794551594 0.1232895188E-06 1.796903105 0.1162311320E-06 1.799254616 0.1095801397E-06 1.801606127 0.9881544966E-07 1.803957638 0.8789151854E-07 1.806309149 0.7781274307E-07 1.808660659 0.6855546421E-07 1.811012170 0.6009580092E-07 1.813363681 0.5241734137E-07 1.815715192 0.4556510044E-07 1.818066703 0.4133781122E-07 1.820418214 0.4031870723E-07 1.822769725 0.3465525927E-07 1.825121236 0.2957924322E-07 1.827472747 0.2506237007E-07 1.829824257 0.2107039224E-07 1.832175768 0.1756808274E-07 1.834527279 0.1451966027E-07 1.836878790 0.1188900615E-07 1.839230301 0.9639894591E-08 1.841581812 0.7736263878E-08 1.843933323 0.6142526658E-08 1.846284834 0.4823908964E-08 1.848636345 0.3746803647E-08 1.850987855 0.2879122259E-08 1.853339366 0.2190629721E-08 1.855690877 0.1653248451E-08 1.858042388 0.1241322663E-08 1.860393899 0.9318383793E-09 1.862745410 0.7045992396E-09 1.865096921 0.5423612846E-09 1.867448432 0.4309310050E-09 1.869799942 0.3592306415E-09 1.872151453 0.3193347813E-09 1.874502964 0.3064847411E-09 1.876849995 0.3092866820E-09 1.879197025 0.3173590962E-09 1.881544055 0.3308959652E-09 1.883891086 0.3502161038E-09 1.886238116 0.5796548616E-09 1.888585147 0.1082788914E-08 1.890932177 0.1872191930E-08 1.893279207 0.3042116978E-08 1.895626238 0.4699926097E-08 1.897973268 0.6965751477E-08 1.900320299 0.9972115444E-08 1.902667329 0.1386350966E-07 1.905014359 0.1879593449E-07 1.907361390 0.2493639986E-07 1.909708420 0.3246238893E-07 1.912055451 0.3581586768E-07 1.914402481 0.3646902128E-07 1.916749511 0.3716757835E-07 1.919096542 0.3791248432E-07 1.921443572 0.3870471928E-07 1.923790603 0.3954529400E-07 1.926137633 0.4043524550E-07 1.928484663 0.4137563226E-07 1.930831694 0.4236752895E-07 1.933178724 0.4341202072E-07 1.935525754 0.4451019699E-07 1.937872785 0.4566314481E-07 1.940219815 0.4687194169E-07 1.942566846 0.4813764799E-07 1.944913876 0.4946129878E-07 1.947260906 0.5084389533E-07 1.949607937 0.5228639604E-07 1.951954967 0.5378970709E-07 1.954301998 0.5535467265E-07 1.956649028 0.5698206478E-07 1.958996058 0.5867257309E-07 1.961343089 0.6042679417E-07 1.963690119 0.6224522102E-07 1.966037150 0.6412823219E-07 1.968384180 0.6607608125E-07 1.970731210 0.6808888622E-07 1.973078241 0.7016661930E-07 1.975425271 0.7230909689E-07 1.977772302 0.7451597015E-07 1.980119332 0.7678671594E-07 1.982466362 0.7912062849E-07 1.984813393 0.8151681180E-07 1.987160423 0.8397417273E-07 1.989507454 0.8649141508E-07 1.991854484 0.8906703460E-07 1.994201514 0.9169931491E-07 1.996548545 0.9438632461E-07 1.998895575 0.9712591541E-07 2.001242605 0.9991572134E-07 2.003589636 0.1027531592E-06 2.005936666 0.1056354301E-06 2.008283697 0.1085595222E-06 2.010630727 0.1115222143E-06 2.012977757 0.1145200809E-06 2.015324788 0.1175494986E-06 2.017671818 0.1206066524E-06 2.020018849 0.1236875444E-06 2.022365879 0.1267880024E-06 2.024712909 0.1299036903E-06 2.027059940 0.1330301185E-06 2.029406970 0.1361626560E-06 2.031754001 0.1392965422E-06 2.034101031 0.1424269007E-06 2.036448061 0.1455487529E-06 2.038795092 0.1486570321E-06 2.041142122 0.1517465991E-06 2.043489153 0.1548122573E-06 2.045836183 0.1578487694E-06 2.048183213 0.1608508734E-06 2.050530244 0.1638133003E-06 2.052877274 0.1667307920E-06 2.055224304 0.1695981193E-06 2.057571335 0.1724101014E-06 2.059918365 0.1751616260E-06 2.062265396 0.1778476709E-06 2.064612426 0.1804633271E-06 2.066959456 0.1830038241E-06 2.069306487 0.1854645592E-06 2.071653517 0.1878411309E-06 2.074000548 0.1901293804E-06 2.076347578 0.1923254434E-06 2.078694608 0.1944258201E-06 2.081041639 0.1964274711E-06 2.083388669 0.1983279595E-06 2.085735700 0.2001256676E-06 2.088082730 0.2018201470E-06 2.090429760 0.2034127134E-06 2.092776791 0.2049075157E-06 2.095123821 0.2063135788E-06 2.097470852 0.2076489946E-06 2.099817882 0.2089501822E-06 2.102164912 0.2102937932E-06 2.104511943 0.2118487584E-06 2.106858973 0.2139669699E-06 2.109206004 0.2171243238E-06 2.111553034 0.2214113221E-06 2.113900064 0.2264536915E-06 2.116247095 0.2319179958E-06 2.118594125 0.2376336571E-06 2.120941155 0.2435199971E-06 2.123288186 0.2495363600E-06 2.125635216 0.2556602858E-06 2.127982247 0.2618781738E-06 2.130329277 0.2681810452E-06 2.132676307 0.2745624794E-06 2.135023338 0.2810175401E-06 2.137370368 0.2875421833E-06 2.139717399 0.2941329138E-06 2.142064429 0.3007865783E-06 2.144411459 0.3075002350E-06 2.146758490 0.3142710701E-06 2.149105520 0.3210963412E-06 2.151452551 0.3279733403E-06 2.153799581 0.3348993670E-06 2.156146611 0.3418717107E-06 2.158493642 0.3488876373E-06 2.160840672 0.3559443803E-06 2.163187703 0.3630391339E-06 2.165534733 0.3701690492E-06 2.167881763 0.3773312305E-06 2.170228794 0.3845227334E-06 2.172575824 0.3917405641E-06 2.174922855 0.3989816784E-06 2.177269885 0.4062429820E-06 2.179616915 0.4135213311E-06 2.181963946 0.4208135329E-06 2.184310976 0.4281163469E-06 2.186658006 0.4354264862E-06 2.189005037 0.4427406191E-06 2.191352067 0.4500553707E-06 2.193699098 0.4573673250E-06 2.196046128 0.4646730267E-06 2.198393158 0.4719689837E-06 2.200740189 0.4792516689E-06 2.203087219 0.4865175230E-06 2.205434250 0.4937629567E-06 2.207781280 0.5009843537E-06 2.210128310 0.5081780726E-06 2.212475341 0.5153404504E-06 2.214822371 0.5224678046E-06 2.217169402 0.5295564369E-06 2.219516432 0.5366026350E-06 2.221863462 0.5436026765E-06 2.224210493 0.5505528314E-06 2.226557523 0.5574493654E-06 2.228904554 0.5642885431E-06 2.231251584 0.5710666304E-06 2.233598614 0.5777798987E-06 2.235945645 0.5844246274E-06 2.238292675 0.5909971071E-06 2.240639706 0.5974936431E-06 2.242986736 0.6039105587E-06 2.245333766 0.6102441981E-06 2.247680797 0.6164909299E-06 2.250027827 0.6226471502E-06 2.252374857 0.6287092861E-06 2.254721888 0.6346737987E-06 2.257068918 0.6405371864E-06 2.259415949 0.6462959881E-06 2.261762979 0.6519467867E-06 2.264110009 0.6574862118E-06 2.266457040 0.6629109431E-06 2.268804070 0.6682177136E-06 2.271151101 0.6734033125E-06 2.273498131 0.6784645884E-06 2.275845161 0.6833984522E-06 2.278192192 0.6882018801E-06 2.280539222 0.6928719166E-06 2.282886253 0.6974056771E-06 2.285233283 0.7018003511E-06 2.287580313 0.7060532043E-06 2.289927344 0.7101615821E-06 2.292274374 0.7141229115E-06 2.294621405 0.7179347038E-06 2.296968435 0.7215945575E-06 2.299315465 0.7251001599E-06 2.301662496 0.7284492901E-06 2.304009526 0.7316398208E-06 2.306356557 0.7346697204E-06 2.308703587 0.7375370554E-06 2.311050617 0.7402399919E-06 2.313397648 0.7427767976E-06 2.315744678 0.7451458438E-06 2.318091708 0.7473456066E-06 2.320438739 0.7493746687E-06 2.322785769 0.7512317207E-06 2.325132800 0.7529155626E-06 2.327479830 0.7544251048E-06 2.329826860 0.7557593695E-06 2.332173891 0.7569174911E-06 2.334520921 0.7578987181E-06 2.336867952 0.7587024126E-06 2.339214982 0.7593280520E-06 2.341562012 0.7597752290E-06 2.343909043 0.7600436521E-06 2.346256073 0.7601331461E-06 0.000000000 0.3094723531E-07 0.2347351854E-02 0.3103985100E-07 0.4694703708E-02 0.3131849212E-07 0.7042055561E-02 0.3178553915E-07 0.9389407415E-02 0.3244495389E-07 0.1173675927E-01 0.3330227103E-07 0.1408411112E-01 0.3436458630E-07 0.1643146298E-01 0.3564054128E-07 0.1877881483E-01 0.3714030482E-07 0.2112616668E-01 0.3887555124E-07 0.2347351854E-01 0.4085943508E-07 0.2582087039E-01 0.4310656273E-07 0.2816822225E-01 0.4563296077E-07 0.3051557410E-01 0.4845604128E-07 0.3286292595E-01 0.5159456397E-07 0.3521027781E-01 0.5506859538E-07 0.3755762966E-01 0.5889946529E-07 0.3990498151E-01 0.6310972018E-07 0.4225233337E-01 0.6772307423E-07 0.4459968522E-01 0.7276435764E-07 0.4694703708E-01 0.7586007548E-07 0.4929438893E-01 0.7251550939E-07 0.5164174078E-01 0.6911018514E-07 0.5398909264E-01 0.6565695760E-07 0.5633644449E-01 0.6223407867E-07 0.5868379634E-01 0.7098706298E-07 0.6103114820E-01 0.8057637413E-07 0.6337850005E-01 0.9104830230E-07 0.6572585191E-01 0.1024498799E-06 0.6807320376E-01 0.1148287008E-06 0.7042055561E-01 0.1282327343E-06 0.7276790747E-01 0.1427101381E-06 0.7511525932E-01 0.1583090711E-06 0.7746261117E-01 0.1750775096E-06 0.7980996303E-01 0.1930630658E-06 0.8215731488E-01 0.2123128096E-06 0.8450466674E-01 0.2328730947E-06 0.8685201859E-01 0.2547893879E-06 0.8919937044E-01 0.2781061025E-06 0.9154672230E-01 0.3028664347E-06 0.9389407415E-01 0.3291122047E-06 0.9624142601E-01 0.3523395330E-06 0.9858877786E-01 0.3757224739E-06 0.1009361297 0.4003001247E-06 0.1032834816 0.4261041584E-06 0.1056308334 0.4531656457E-06 0.1079781853 0.4815149963E-06 0.1103255371 0.5111819016E-06 0.1126728890 0.5421952806E-06 0.1150202408 0.5745832268E-06 0.1173675927 0.6083729595E-06 0.1197149445 0.6435907756E-06 0.1220622964 0.6802620065E-06 0.1244096483 0.7184109757E-06 0.1267570001 0.7580609612E-06 0.1291043520 0.7992341600E-06 0.1314517038 0.8419516563E-06 0.1337990557 0.8862333924E-06 0.1361464075 0.9320981440E-06 0.1384937594 0.9795634979E-06 0.1408411112 0.1028645834E-05 0.1431884631 0.1079360310E-05 0.1455358149 0.1131720850E-05 0.1478831668 0.1185740139E-05 0.1502305186 0.1241429614E-05 0.1525778705 0.1298799468E-05 0.1549252223 0.1357858651E-05 0.1572725742 0.1418614878E-05 0.1596199261 0.1481074633E-05 0.1619672779 0.1545243191E-05 0.1643146298 0.1611124626E-05 0.1666619816 0.1678721835E-05 0.1690093335 0.1748036560E-05 0.1713566853 0.1819069410E-05 0.1737040372 0.1891819890E-05 0.1760513890 0.1966286430E-05 0.1783987409 0.2042466418E-05 0.1807460927 0.2120356232E-05 0.1830934446 0.2199951274E-05 0.1854407964 0.2281246004E-05 0.1877881483 0.2364233979E-05 0.1901355002 0.2448907886E-05 0.1924828520 0.2535259578E-05 0.1948302039 0.2623280106E-05 0.1971775557 0.2712959752E-05 0.1995249076 0.2804288055E-05 0.2018722594 0.2897253841E-05 0.2042196113 0.2991845235E-05 0.2065669631 0.3088049681E-05 0.2089143150 0.3185853946E-05 0.2112616668 0.3285244114E-05 0.2136090187 0.3386205574E-05 0.2159563705 0.3488722995E-05 0.2183037224 0.3592780276E-05 0.2206510743 0.3698360489E-05 0.2229984261 0.3805445791E-05 0.2253457780 0.3914017310E-05 0.2276931298 0.4024055007E-05 0.2300404817 0.4135537483E-05 0.2323878335 0.4248441756E-05 0.2347351854 0.4362742972E-05 0.2370825372 0.4478414045E-05 0.2394298891 0.4595425224E-05 0.2417772409 0.4713743541E-05 0.2441245928 0.4833332145E-05 0.2464719446 0.4954149461E-05 0.2488192965 0.5076148161E-05 0.2511666484 0.5158633153E-05 0.2535140002 0.5231337254E-05 0.2558613521 0.5301896182E-05 0.2582087039 0.5370210070E-05 0.2605560558 0.5436180712E-05 0.2629034076 0.5499711650E-05 0.2652507595 0.5560708246E-05 0.2675981113 0.5619077734E-05 0.2699454632 0.5674729256E-05 0.2722928150 0.5727573871E-05 0.2746401669 0.5777524540E-05 0.2769875187 0.5824496080E-05 0.2793348706 0.5868405083E-05 0.2816822225 0.5909169792E-05 0.2840295743 0.5946709930E-05 0.2863769262 0.5980946474E-05 0.2887242780 0.6011801355E-05 0.2910716299 0.6039197086E-05 0.2934189817 0.6063056286E-05 0.2957663336 0.6083301095E-05 0.2981136854 0.6099852440E-05 0.3004610373 0.6112629136E-05 0.3028083891 0.6121546773E-05 0.3051557410 0.6126516344E-05 0.3075030928 0.6127442550E-05 0.3098504447 0.6124221708E-05 0.3121977966 0.5992825633E-05 0.3145451484 0.5463238662E-05 0.3168925003 0.4931080752E-05 0.3192398521 0.4424095592E-05 0.3215872040 0.3960838982E-05 0.3239345558 0.3553524850E-05 0.3262819077 0.3209522150E-05 0.3286292595 0.2931127895E-05 0.3309766114 0.2714765369E-05 0.3333239632 0.2551610074E-05 0.3356713151 0.2430258050E-05 0.3380186669 0.2339726302E-05 0.3403660188 0.2271111270E-05 0.3427133707 0.2217854542E-05 0.3450607225 0.2175340166E-05 0.3474080744 0.2140367416E-05 0.3497554262 0.2110712082E-05 0.3521027781 0.2084811737E-05 0.3544501299 0.2061552746E-05 0.3567974818 0.2040128943E-05 0.3591448336 0.2019947957E-05 0.3614921855 0.2000568595E-05 0.3638395373 0.1981658441E-05 0.3661868892 0.1962964703E-05 0.3685342410 0.1944293855E-05 0.3708815929 0.1925497188E-05 0.3732289448 0.1906460402E-05 0.3755762966 0.1887095989E-05 0.3779236485 0.1867337583E-05 0.3802710003 0.1847135712E-05 0.3826183522 0.1826454557E-05 0.3849657040 0.1805269453E-05 0.3873130559 0.1783564933E-05 0.3896604077 0.1761333188E-05 0.3920077596 0.1738572825E-05 0.3943551114 0.1715287868E-05 0.3967024633 0.1691486944E-05 0.3990498151 0.1753773786E-05 0.4013971670 0.1867102855E-05 0.4037445189 0.1854630490E-05 0.4060918707 0.1799047117E-05 0.4084392226 0.1750527702E-05 0.4107865744 0.1708705992E-05 0.4131339263 0.1773387559E-05 0.4154812781 0.1873907570E-05 0.4178286300 0.1977632887E-05 0.4201759818 0.2084558209E-05 0.4225233337 0.2194673816E-05 0.4248706855 0.2307965511E-05 0.4272180374 0.2424414558E-05 0.4295653892 0.2543997632E-05 0.4319127411 0.2666686770E-05 0.4342600929 0.2792449343E-05 0.4366074448 0.2921248017E-05 0.4389547967 0.3053040737E-05 0.4413021485 0.3187780711E-05 0.4436495004 0.3134679787E-05 0.4459968522 0.3084539379E-05 0.4483442041 0.3043271123E-05 0.4506915559 0.3012295631E-05 0.4530389078 0.2993023202E-05 0.4553862596 0.2986699051E-05 0.4577336115 0.2994235443E-05 0.4600809633 0.3016087111E-05 0.4624283152 0.3052219364E-05 0.4647756670 0.3102177550E-05 0.4671230189 0.3165220819E-05 0.4694703708 0.3240465755E-05 0.4718177226 0.3326999909E-05 0.4741650745 0.3423951168E-05 0.4765124263 0.3530517486E-05 0.4788597782 0.3645968317E-05 0.4812071300 0.3769628034E-05 0.4835544819 0.3900847532E-05 0.4859018337 0.4038965467E-05 0.4882491856 0.4183255600E-05 0.4905965374 0.4332850064E-05 0.4929438893 0.4486617148E-05 0.4952912411 0.4642949585E-05 0.4976385930 0.4799371391E-05 0.4999859449 0.4951769706E-05 0.5023332967 0.5092877434E-05 0.5046806486 0.5209586343E-05 0.5070280004 0.5280480595E-05 0.5093753523 0.5282255798E-05 0.5117227041 0.5210847894E-05 0.5140700560 0.5086572264E-05 0.5164174078 0.4933117485E-05 0.5187647597 0.4765981716E-05 0.5211121115 0.4593691508E-05 0.5234594634 0.4420853234E-05 0.5258068152 0.4250034084E-05 0.5281541671 0.4082721273E-05 0.5305015190 0.3919803575E-05 0.5328488708 0.3761821067E-05 0.5351962227 0.3609100646E-05 0.5375435745 0.3461833051E-05 0.5398909264 0.3320118593E-05 0.5422382782 0.3183995424E-05 0.5445856301 0.3053457680E-05 0.5469329819 0.2928467545E-05 0.5492803338 0.2808963522E-05 0.5516276856 0.2694866313E-05 0.5539750375 0.2586083100E-05 0.5563223893 0.2482510777E-05 0.5586697412 0.2384038448E-05 0.5610170931 0.2290549419E-05 0.5633644449 0.2201922817E-05 0.5657117968 0.2118034949E-05 0.5680591486 0.2038760458E-05 0.5704065005 0.1963973328E-05 0.5727538523 0.1893547771E-05 0.5751012042 0.1827359021E-05 0.5774485560 0.1765284046E-05 0.5797959079 0.1707202202E-05 0.5821432597 0.1652995824E-05 0.5844906116 0.1602550780E-05 0.5868379634 0.1555756968E-05 0.5891853153 0.1512508782E-05 0.5915326672 0.1472705541E-05 0.5938800190 0.1436251879E-05 0.5962273709 0.1403058108E-05 0.5985747227 0.1373040544E-05 0.6009220746 0.1346121812E-05 0.6032694264 0.1322231106E-05 0.6056167783 0.1301304443E-05 0.6079641301 0.1283284867E-05 0.6103114820 0.1268122645E-05 0.6126588338 0.1255775422E-05 0.6150061857 0.1246208363E-05 0.6173535375 0.1239394257E-05 0.6197008894 0.1235313609E-05 0.6220482413 0.1233954697E-05 0.6243952716 0.1233661078E-05 0.6267423020 0.1232741873E-05 0.6290893324 0.1231198733E-05 0.6314363628 0.1229034407E-05 0.6337833932 0.1226252734E-05 0.6361304236 0.1222858632E-05 0.6384774540 0.1218858084E-05 0.6408244844 0.1214258125E-05 0.6431715148 0.1209066823E-05 0.6455185452 0.1203293254E-05 0.6478655756 0.1196947483E-05 0.6502126060 0.1190040534E-05 0.6525596364 0.1182584362E-05 0.6549066668 0.1174591822E-05 0.6572536971 0.1166076636E-05 0.6596007275 0.1157053357E-05 0.6619477579 0.1147537332E-05 0.6642947883 0.1137544660E-05 0.6666418187 0.1127092158E-05 0.6689888491 0.1116197310E-05 0.6713358795 0.1104878229E-05 0.6736829099 0.1093153611E-05 0.6760299403 0.1081042690E-05 0.6783769707 0.1068565189E-05 0.6807240011 0.1055741276E-05 0.6830710315 0.1042591516E-05 0.6854180619 0.1029136822E-05 0.6877650922 0.1015398411E-05 0.6901121226 0.1001397754E-05 0.6924591530 0.9871565355E-06 0.6948061834 0.9726966032E-06 0.6971532138 0.9580399291E-06 0.6995002442 0.9432085674E-06 0.7018472746 0.9282246163E-06 0.7041943050 0.9131101836E-06 0.7065413354 0.8978873556E-06 0.7088883658 0.8825781720E-06 0.7112353962 0.8672046065E-06 0.7135824266 0.8517885563E-06 0.7159294570 0.8363518422E-06 0.7182764874 0.8209162225E-06 0.7206235177 0.8055034254E-06 0.7229705481 0.7901352060E-06 0.7253175785 0.7748334371E-06 0.7276646089 0.7596202484E-06 0.7300116393 0.7445182317E-06 0.7323586697 0.7295507461E-06 0.7347057001 0.7147423696E-06 0.7370527305 0.7001195770E-06 0.7393997609 0.6857117734E-06 0.7417467913 0.6715529053E-06 0.7440938217 0.6576840426E-06 0.7464408521 0.6441576504E-06 0.7487878825 0.6310449217E-06 0.7511349128 0.6184488800E-06 0.7534819432 0.6065287831E-06 0.7558289736 0.5955471802E-06 0.7581760040 0.5859612345E-06 0.7605230344 0.5785846619E-06 0.7628700648 0.5747632821E-06 0.7652170952 0.5761182531E-06 0.7675641256 0.5833003243E-06 0.7699111560 0.5952218229E-06 0.7722581864 0.6101938506E-06 0.7746052168 0.6269625564E-06 0.7769522472 0.6447862812E-06 0.7792992776 0.6632392109E-06 0.7816463080 0.6820649645E-06 0.7839933383 0.7010974262E-06 0.7863403687 0.7202202222E-06 0.7886873991 0.7393456408E-06 0.7910344295 0.7584032627E-06 0.7933814599 0.7773335846E-06 0.7957284903 0.7960843109E-06 0.7980755207 0.8146081317E-06 0.8004225511 0.8328613588E-06 0.8027695815 0.8508030750E-06 0.8051166119 0.8683945990E-06 0.8074636423 0.8855991513E-06 0.8098106727 0.9023816480E-06 0.8121577031 0.9187085809E-06 0.8145047335 0.9345479525E-06 0.8168517638 0.9498692494E-06 0.8191987942 0.9646434407E-06 0.8215458246 0.9788429922E-06 0.8238928550 0.9924418905E-06 0.8262398854 0.1005415674E-05 0.8285869158 0.1017741465E-05 0.8309339462 0.1029398003E-05 0.8332809766 0.1040365678E-05 0.8356280070 0.1050626555E-05 0.8379750374 0.1060164406E-05 0.8403220678 0.1068964724E-05 0.8426690982 0.1077014745E-05 0.8450161286 0.1084303456E-05 0.8473631589 0.1090821601E-05 0.8497101893 0.1096561683E-05 0.8520572197 0.1101517957E-05 0.8544042501 0.1105686420E-05 0.8567512805 0.1109064794E-05 0.8590983109 0.1111652506E-05 0.8614453413 0.1113450664E-05 0.8637923717 0.1114462022E-05 0.8661394021 0.1114690948E-05 0.8684864325 0.1114143383E-05 0.8708334629 0.1112826799E-05 0.8731804933 0.1110750151E-05 0.8755275237 0.1107923832E-05 0.8778745541 0.1104359613E-05 0.8802215844 0.1100070593E-05 0.8825686148 0.1095071142E-05 0.8849156452 0.1089376841E-05 0.8872626756 0.1083004420E-05 0.8896097060 0.1075971701E-05 0.8919567364 0.1068297533E-05 0.8943037668 0.1060001730E-05 0.8966507972 0.1051105009E-05 0.8989978276 0.1041628930E-05 0.9013448580 0.1031595832E-05 0.9036918884 0.1021028775E-05 0.9060389188 0.1009951483E-05 0.9083859492 0.9983882867E-06 0.9107329796 0.9863640749E-06 0.9130800099 0.9739042440E-06 0.9154270403 0.9610346584E-06 0.9177740707 0.9477816163E-06 0.9201211011 0.9341718271E-06 0.9224681315 0.9202324024E-06 0.9248151619 0.9059908671E-06 0.9271621923 0.8914751995E-06 0.9295092227 0.8767139122E-06 0.9318562531 0.8617361950E-06 0.9342032835 0.8465721522E-06 0.9365503139 0.8312531896E-06 0.9388973443 0.8158126459E-06 0.9412443747 0.8002868384E-06 0.9435914050 0.7847168438E-06 0.9459384354 0.7691516451E-06 0.9482854658 0.7536539728E-06 0.9506324962 0.7383118188E-06 0.9529795266 0.7232628489E-06 0.9553265570 0.7087507037E-06 0.9576735874 0.6952661023E-06 0.9600206178 0.6839085495E-06 0.9623676482 0.6770486401E-06 0.9647146786 0.6776292634E-06 0.9670617090 0.6852052556E-06 0.9694087394 0.6967489783E-06 0.9717557698 0.7102470123E-06 0.9741028002 0.7247983399E-06 0.9764498305 0.7399966174E-06 0.9787968609 0.7556374125E-06 0.9811438913 0.7716045897E-06 0.9834909217 0.7878241350E-06 0.9858379521 0.8042437126E-06 0.9881849825 0.8208228395E-06 0.9905320129 0.8375278161E-06 0.9928790433 0.8543289542E-06 0.9952260737 0.8711989857E-06 0.9975731041 0.8881121150E-06 0.9999201345 0.9050434374E-06 1.002267165 0.9219685770E-06 1.004614195 0.9388634587E-06 1.006961226 0.9557041669E-06 1.009308256 0.9724668604E-06 1.011655286 0.9891277263E-06 1.014002317 0.1005662959E-05 1.016349347 0.1022048761E-05 1.018696378 0.1038261354E-05 1.021043408 0.1054276999E-05 1.023390438 0.1050523494E-05 1.025737469 0.1046630288E-05 1.028084499 0.1043083663E-05 1.030431530 0.1039862300E-05 1.032778560 0.1036945523E-05 1.035125590 0.1034313299E-05 1.037472621 0.1031946233E-05 1.039819651 0.1029825573E-05 1.042166682 0.1027933209E-05 1.044513712 0.1026251685E-05 1.046860742 0.1024764203E-05 1.049207773 0.1023454634E-05 1.051554803 0.1022307530E-05 1.053901834 0.1021308136E-05 1.056248864 0.1020442403E-05 1.058595894 0.1019697002E-05 1.060942925 0.1019059338E-05 1.063289955 0.1018517565E-05 1.065636985 0.1018060601E-05 1.067984016 0.1017678142E-05 1.070331046 0.1017360676E-05 1.072678077 0.1017099497E-05 1.075025107 0.1016886718E-05 1.077372137 0.1016715280E-05 1.079719168 0.1016578968E-05 1.082066198 0.1016472417E-05 1.084413229 0.1016391124E-05 1.086760259 0.1016331452E-05 1.089107289 0.1016290638E-05 1.091454320 0.1016266797E-05 1.093801350 0.1016258925E-05 1.096152861 0.1016925648E-05 1.098504372 0.1018918951E-05 1.100855883 0.1022218606E-05 1.103207394 0.1026792016E-05 1.105558905 0.1032595755E-05 1.107910415 0.1039577498E-05 1.110261926 0.1047678178E-05 1.112613437 0.1056834200E-05 1.114964948 0.1066979562E-05 1.117316459 0.1078047774E-05 1.119667970 0.1089973500E-05 1.122019481 0.1102693897E-05 1.124370992 0.1116149636E-05 1.126722503 0.1130285635E-05 1.129074013 0.1145051532E-05 1.131425524 0.1160401942E-05 1.133777035 0.1176296533E-05 1.136128546 0.1192699969E-05 1.138480057 0.1209581752E-05 1.140831568 0.1226915989E-05 1.143183079 0.1239800343E-05 1.145534590 0.1214676535E-05 1.147886101 0.1189068352E-05 1.150237611 0.1163084588E-05 1.152589122 0.1136831443E-05 1.154940633 0.1110413917E-05 1.157292144 0.1083936732E-05 1.159643655 0.1057504971E-05 1.161995166 0.1031224595E-05 1.164346677 0.1005202880E-05 1.166698188 0.9795488411E-06 1.169049699 0.9543736644E-06 1.171401209 0.9297911478E-06 1.173752720 0.9059181455E-06 1.176104231 0.8828749830E-06 1.178455742 0.8607857857E-06 1.180807253 0.8397786285E-06 1.183158764 0.8199853798E-06 1.185510275 0.8015410654E-06 1.187861786 0.7845825498E-06 1.190213296 0.7692463164E-06 1.192564807 0.7556651662E-06 1.194916318 0.7439637668E-06 1.197267829 0.7342531848E-06 1.199619340 0.7266248179E-06 1.201970851 0.7211444456E-06 1.204322362 0.7178473306E-06 1.206673873 0.7167353004E-06 1.209025384 0.7177764618E-06 1.211376894 0.7209076976E-06 1.213728405 0.7260395210E-06 1.216079916 0.7330624392E-06 1.218431427 0.7418538118E-06 1.220782938 0.7522843065E-06 1.223134449 0.7642233369E-06 1.225485960 0.7775432024E-06 1.227837471 0.7921219177E-06 1.230188982 0.8078448997E-06 1.232540492 0.8246057533E-06 1.234892003 0.8423064095E-06 1.237243514 0.8608568362E-06 1.239595025 0.8801744969E-06 1.241946536 0.9001836853E-06 1.244298047 0.9208148218E-06 1.246649558 0.9420037686E-06 1.249001069 0.9636911940E-06 1.251352580 0.9858220046E-06 1.253704090 0.1008344849E-05 1.256055601 0.1031211696E-05 1.258407112 0.1054377481E-05 1.260758623 0.1077799812E-05 1.263110134 0.1101438741E-05 1.265461645 0.1125256578E-05 1.267813156 0.1149217750E-05 1.270164667 0.1173288705E-05 1.272516177 0.1197437843E-05 1.274867688 0.1221635480E-05 1.277219199 0.1245853836E-05 1.279570710 0.1270067047E-05 1.281922221 0.1294251199E-05 1.284273732 0.1318384375E-05 1.286625243 0.1342446723E-05 1.288976754 0.1366420536E-05 1.291328265 0.1390290344E-05 1.293679775 0.1414043024E-05 1.296031286 0.1437667916E-05 1.298382797 0.1461156951E-05 1.300734308 0.1484504792E-05 1.303085819 0.1507708976E-05 1.305437330 0.1530770079E-05 1.307788841 0.1553691868E-05 1.310140352 0.1576481480E-05 1.312491863 0.1599149582E-05 1.314843373 0.1621710555E-05 1.317194884 0.1644182654E-05 1.319546395 0.1666588171E-05 1.321897906 0.1688953582E-05 1.324249417 0.1711309667E-05 1.326600928 0.1733691603E-05 1.328952439 0.1756138997E-05 1.331303950 0.1778695864E-05 1.333655461 0.1801410514E-05 1.336006971 0.1824335329E-05 1.338358482 0.1847526394E-05 1.340709993 0.1871042957E-05 1.343061504 0.1894946679E-05 1.345413015 0.1919300631E-05 1.347764526 0.1944168015E-05 1.350116037 0.1969610573E-05 1.352467548 0.1995686670E-05 1.354819059 0.2022449066E-05 1.357170569 0.2049942394E-05 1.359522080 0.2078200434E-05 1.361873591 0.2107243265E-05 1.364225102 0.2137074466E-05 1.366576613 0.2167678524E-05 1.368928124 0.2199018665E-05 1.371279635 0.2231035302E-05 1.373631146 0.2263645273E-05 1.375982656 0.2296742009E-05 1.378334167 0.2330196675E-05 1.380685678 0.2363860276E-05 1.383037189 0.2397566608E-05 1.385388700 0.2431135884E-05 1.387740211 0.2464378792E-05 1.390091722 0.2497100753E-05 1.392443233 0.2529106102E-05 1.394794744 0.2560201989E-05 1.397146254 0.2590201810E-05 1.399497765 0.2618928038E-05 1.401849276 0.2646214387E-05 1.404200787 0.2671907261E-05 1.406552298 0.2695866489E-05 1.408903809 0.2717965320E-05 1.411255320 0.2738089636E-05 1.413606831 0.2756136180E-05 1.415958342 0.2772009333E-05 1.418309852 0.2785615217E-05 1.420661363 0.2796850050E-05 1.423012874 0.2805574203E-05 1.425364385 0.2811545500E-05 1.427715896 0.2814219069E-05 1.430067407 0.2812096494E-05 1.432418918 0.2801623720E-05 1.434770429 0.2781419306E-05 1.437121940 0.2756643108E-05 1.439473450 0.2730969251E-05 1.441824961 0.2705618216E-05 1.444176472 0.2680982473E-05 1.446527983 0.2657193692E-05 1.448879494 0.2634287334E-05 1.451231005 0.2612256985E-05 1.453582516 0.2591074477E-05 1.455934027 0.2570697201E-05 1.458285537 0.2551069117E-05 1.460637048 0.2532116809E-05 1.462988559 0.2513738935E-05 1.465340070 0.2495783403E-05 1.467691581 0.2477998517E-05 1.470043092 0.2459927331E-05 1.472394603 0.2440696512E-05 1.474746114 0.2418764729E-05 1.477097625 0.2392324217E-05 1.479449135 0.2360901938E-05 1.481800646 0.2325680558E-05 1.484152157 0.2405099805E-05 1.486503668 0.2392859043E-05 1.488855179 0.2381843838E-05 1.491206690 0.2371862513E-05 1.493558201 0.2362822484E-05 1.495909712 0.2354686789E-05 1.498261223 0.2347452788E-05 1.500612733 0.2341141105E-05 1.502964244 0.2335789253E-05 1.505315755 0.2331447278E-05 1.507667266 0.2328174019E-05 1.510018777 0.2326033252E-05 1.512370288 0.2325089331E-05 1.514721799 0.2325402256E-05 1.517073310 0.2327022359E-05 1.519424821 0.2329985064E-05 1.521776331 0.2334306322E-05 1.524127842 0.2339979386E-05 1.526479353 0.2346973378E-05 1.528830864 0.2355233860E-05 1.531182375 0.2364685200E-05 1.533533886 0.2375234271E-05 1.535885397 0.2386774847E-05 1.538236908 0.2399192075E-05 1.540588418 0.2412366556E-05 1.542939929 0.2426177724E-05 1.545291440 0.2440506431E-05 1.547642951 0.2455236760E-05 1.549994462 0.2470257157E-05 1.552345973 0.2485461043E-05 1.554697484 0.2500747029E-05 1.557048995 0.2516018864E-05 1.559400506 0.2531185216E-05 1.561752016 0.2546159358E-05 1.564103527 0.2560858819E-05 1.566455038 0.2575205021E-05 1.568806549 0.2589122946E-05 1.571158060 0.2602540831E-05 1.573509571 0.2615389900E-05 1.575861082 0.2627604143E-05 1.578212593 0.2639120127E-05 1.580564104 0.2649876859E-05 1.582915614 0.2659815673E-05 1.585267125 0.2668880154E-05 1.587618636 0.2677016094E-05 1.589970147 0.2684171464E-05 1.592321658 0.2690296419E-05 1.594673169 0.2695343311E-05 1.597024680 0.2699266723E-05 1.599376191 0.2702023518E-05 1.601727702 0.2703572892E-05 1.604079212 0.2703876439E-05 1.606430723 0.2702898226E-05 1.608782234 0.2700604864E-05 1.611133745 0.2696965592E-05 1.613485256 0.2691952354E-05 1.615836767 0.2685539879E-05 1.618188278 0.2677705767E-05 1.620539789 0.2668430558E-05 1.622891299 0.2657697815E-05 1.625242810 0.2645494189E-05 1.627594321 0.2631809489E-05 1.629945832 0.2616636735E-05 1.632297343 0.2555249821E-05 1.634648854 0.2486737163E-05 1.637000365 0.2418931122E-05 1.639351876 0.2351874188E-05 1.641703387 0.2285606361E-05 1.644054897 0.2220165200E-05 1.646406408 0.2156740686E-05 1.648757919 0.2130973380E-05 1.651109430 0.2104122335E-05 1.653460941 0.2076215679E-05 1.655812452 0.2047283777E-05 1.658163963 0.2017359177E-05 1.660515474 0.1986476544E-05 1.662866985 0.1954672587E-05 1.665218495 0.1921985980E-05 1.667570006 0.1888457280E-05 1.669921517 0.1854128830E-05 1.672273028 0.1819044666E-05 1.674624539 0.1783250408E-05 1.676976050 0.1746793153E-05 1.679327561 0.1709721358E-05 1.681679072 0.1672084721E-05 1.684030583 0.1633934052E-05 1.686382093 0.1595321150E-05 1.688733604 0.1556298664E-05 1.691085115 0.1516919958E-05 1.693436626 0.1477238971E-05 1.695788137 0.1437310075E-05 1.698139648 0.1397187930E-05 1.700491159 0.1356927340E-05 1.702842670 0.1316583103E-05 1.705194180 0.1276209863E-05 1.707545691 0.1235861966E-05 1.709897202 0.1195593311E-05 1.712248713 0.1155457201E-05 1.714600224 0.1115506206E-05 1.716951735 0.1075792009E-05 1.719303246 0.1036365277E-05 1.721654757 0.9972755189E-06 1.724006268 0.9585709514E-06 1.726357778 0.9202983724E-06 1.728709289 0.8825030347E-06 1.731060800 0.8452285272E-06 1.733412311 0.8085166604E-06 1.735763822 0.7724073585E-06 1.738115333 0.7369385578E-06 1.740466844 0.7021461121E-06 1.742818355 0.6680637057E-06 1.745169866 0.6347227747E-06 1.747521376 0.6021524371E-06 1.749872887 0.5703794329E-06 1.752224398 0.5394280755E-06 1.754575909 0.5093202157E-06 1.756927420 0.4800752218E-06 1.759278931 0.4517099769E-06 1.761630442 0.4242388998E-06 1.763981953 0.3976739935E-06 1.766333464 0.3720249285E-06 1.768684974 0.3472991678E-06 1.771036485 0.3235021422E-06 1.773387996 0.3006374776E-06 1.775739507 0.2787072733E-06 1.778091018 0.2577124143E-06 1.780442529 0.2376528841E-06 1.782794040 0.2185280218E-06 1.785145551 0.2003366563E-06 1.787497061 0.1830770513E-06 1.789848572 0.1667466261E-06 1.792200083 0.1513414717E-06 1.794551594 0.1368557415E-06 1.796903105 0.1232810321E-06 1.799254616 0.1106058779E-06 1.801606127 0.1033194921E-06 1.803957638 0.9743251212E-07 1.806309149 0.8870653512E-07 1.808660659 0.7877187267E-07 1.811012170 0.6963022158E-07 1.813363681 0.6124862729E-07 1.815715192 0.5359473067E-07 1.818066703 0.4663956807E-07 1.820418214 0.4471978532E-07 1.822769725 0.4894115271E-07 1.825121236 0.5328778538E-07 1.827472747 0.5574479889E-07 1.829824257 0.5299011785E-07 1.832175768 0.5044368101E-07 1.834527279 0.4809497626E-07 1.836878790 0.4593403896E-07 1.839230301 0.4395145799E-07 1.841581812 0.4213838080E-07 1.843933323 0.4048651766E-07 1.846284834 0.3898814498E-07 1.848636345 0.3763610785E-07 1.850987855 0.3642382184E-07 1.853339366 0.3534527406E-07 1.855690877 0.3439502369E-07 1.858042388 0.3356820191E-07 1.860393899 0.3286051143E-07 1.862745410 0.3226822568E-07 1.865096921 0.3178818768E-07 1.867448432 0.3141780877E-07 1.869799942 0.3115506724E-07 1.872151453 0.3099850682E-07 1.874502964 0.3094723531E-07 1.876849995 0.3096373299E-07 1.879197025 0.3101727306E-07 1.881544055 0.3110794532E-07 1.883891086 0.3123590096E-07 1.886238116 0.3140135223E-07 1.888585147 0.3160457208E-07 1.890932177 0.3184589353E-07 1.893279207 0.3212570900E-07 1.895626238 0.3244446946E-07 1.897973268 0.3280268338E-07 1.900320299 0.3320091557E-07 1.902667329 0.3363978576E-07 1.905014359 0.3411996701E-07 1.907361390 0.3464218390E-07 1.909708420 0.3520721041E-07 1.912055451 0.3602126439E-07 1.914402481 0.4579283769E-07 1.916749511 0.5740134189E-07 1.919096542 0.7105176515E-07 1.921443572 0.8695642016E-07 1.923790603 0.9214267473E-07 1.926137633 0.9027208432E-07 1.928484663 0.8835693497E-07 1.930831694 0.8640212712E-07 1.933178724 0.8441259839E-07 1.935525754 0.8239330487E-07 1.937872785 0.8034920252E-07 1.940219815 0.7828522883E-07 1.942566846 0.7620628477E-07 1.944913876 0.7411721722E-07 1.947260906 0.7202280179E-07 1.949607937 0.6992772641E-07 1.951954967 0.6783657540E-07 1.954301998 0.6575381450E-07 1.956649028 0.6368377653E-07 1.958996058 0.6163064819E-07 1.961343089 0.6042679419E-07 1.963690119 0.6224522103E-07 1.966037150 0.6412823220E-07 1.968384180 0.6607608127E-07 1.970731210 0.6808888624E-07 1.973078241 0.7016661931E-07 1.975425271 0.7230909691E-07 1.977772302 0.7451597017E-07 1.980119332 0.7678671595E-07 1.982466362 0.7912062851E-07 1.984813393 0.8151681181E-07 1.987160423 0.8397417274E-07 1.989507454 0.8649141510E-07 1.991854484 0.8906703461E-07 1.994201514 0.9169931493E-07 1.996548545 0.9438632463E-07 1.998895575 0.9712591543E-07 2.001242605 0.9991572136E-07 2.003589636 0.1027531592E-06 2.005936666 0.1056354302E-06 2.008283697 0.1085595222E-06 2.010630727 0.1115222143E-06 2.012977757 0.1145200810E-06 2.015324788 0.1175494986E-06 2.017671818 0.1206066525E-06 2.020018849 0.1236875444E-06 2.022365879 0.1267880024E-06 2.024712909 0.1299036903E-06 2.027059940 0.1330301186E-06 2.029406970 0.1361626560E-06 2.031754001 0.1392965422E-06 2.034101031 0.1424269008E-06 2.036448061 0.1455487529E-06 2.038795092 0.1486570322E-06 2.041142122 0.1517465991E-06 2.043489153 0.1548122574E-06 2.045836183 0.1578487694E-06 2.048183213 0.1608508734E-06 2.050530244 0.1638133004E-06 2.052877274 0.1667307921E-06 2.055224304 0.1695981194E-06 2.057571335 0.1724101014E-06 2.059918365 0.1751616260E-06 2.062265396 0.1778476710E-06 2.064612426 0.1804633271E-06 2.066959456 0.1830038242E-06 2.069306487 0.1854645592E-06 2.071653517 0.1878411309E-06 2.074000548 0.1901293804E-06 2.076347578 0.1923254435E-06 2.078694608 0.1944258201E-06 2.081041639 0.1964274712E-06 2.083388669 0.1983279596E-06 2.085735700 0.2001256676E-06 2.088082730 0.2018201470E-06 2.090429760 0.2034127135E-06 2.092776791 0.2049075157E-06 2.095123821 0.2063135788E-06 2.097470852 0.2076489946E-06 2.099817882 0.2089501822E-06 2.102164912 0.2102937932E-06 2.104511943 0.2118487585E-06 2.106858973 0.2139669700E-06 2.109206004 0.2171243238E-06 2.111553034 0.2214113221E-06 2.113900064 0.2264536915E-06 2.116247095 0.2319179958E-06 2.118594125 0.2376336571E-06 2.120941155 0.2435199971E-06 2.123288186 0.2495363600E-06 2.125635216 0.2556602859E-06 2.127982247 0.2618781739E-06 2.130329277 0.2681810452E-06 2.132676307 0.2745624794E-06 2.135023338 0.2810175402E-06 2.137370368 0.2875421833E-06 2.139717399 0.2941329139E-06 2.142064429 0.3007865783E-06 2.144411459 0.3075002351E-06 2.146758490 0.3142710701E-06 2.149105520 0.3210963413E-06 2.151452551 0.3279733403E-06 2.153799581 0.3348993671E-06 2.156146611 0.3418717108E-06 2.158493642 0.3488876374E-06 2.160840672 0.3559443803E-06 2.163187703 0.3630391340E-06 2.165534733 0.3701690493E-06 2.167881763 0.3773312306E-06 2.170228794 0.3845227335E-06 2.172575824 0.3917405642E-06 2.174922855 0.3989816785E-06 2.177269885 0.4062429821E-06 2.179616915 0.4135213312E-06 2.181963946 0.4208135330E-06 2.184310976 0.4281163470E-06 2.186658006 0.4354264863E-06 2.189005037 0.4427406192E-06 2.191352067 0.4500553708E-06 2.193699098 0.4573673251E-06 2.196046128 0.4646730268E-06 2.198393158 0.4719689838E-06 2.200740189 0.4792516690E-06 2.203087219 0.4865175230E-06 2.205434250 0.4937629568E-06 2.207781280 0.5009843538E-06 2.210128310 0.5081780727E-06 2.212475341 0.5153404505E-06 2.214822371 0.5224678047E-06 2.217169402 0.5410704210E-06 2.219516432 0.5611580363E-06 2.221863462 0.5815527509E-06 2.224210493 0.6022366549E-06 2.226557523 0.6231908186E-06 2.228904554 0.6443953159E-06 2.231251584 0.6658292499E-06 2.233598614 0.6874707829E-06 2.235945645 0.7092971679E-06 2.238292675 0.7312847846E-06 2.240639706 0.7534091777E-06 2.242986736 0.7756450978E-06 2.245333766 0.7979665456E-06 2.247680797 0.8203468188E-06 2.250027827 0.8427585611E-06 2.252374857 0.8651738140E-06 2.254721888 0.8875640711E-06 2.257068918 0.9099003339E-06 2.259415949 0.9321531707E-06 2.261762979 0.9542927762E-06 2.264110009 0.9762890340E-06 2.266457040 0.9981115796E-06 2.268804070 0.1019729866E-05 2.271151101 0.1041113228E-05 2.273498131 0.1062230952E-05 2.275845161 0.1083052343E-05 2.278192192 0.1103546792E-05 2.280539222 0.1123683846E-05 2.282886253 0.1143433276E-05 2.285233283 0.1162765152E-05 2.287580313 0.1181649902E-05 2.289927344 0.1200058393E-05 2.292274374 0.1217961988E-05 2.294621405 0.1235332622E-05 2.296968435 0.1252142864E-05 2.299315465 0.1268365986E-05 2.301662496 0.1283976022E-05 2.304009526 0.1298947837E-05 2.306356557 0.1313257182E-05 2.308703587 0.1326880758E-05 2.311050617 0.1339796269E-05 2.313397648 0.1351982480E-05 2.315744678 0.1363419265E-05 2.318091708 0.1374087661E-05 2.320438739 0.1383969914E-05 2.322785769 0.1393049519E-05 2.325132800 0.1401311268E-05 2.327479830 0.1408741281E-05 2.329826860 0.1415327047E-05 2.332173891 0.1421057448E-05 2.334520921 0.1425922795E-05 2.336867952 0.1429914846E-05 2.339214982 0.1433026829E-05 2.341562012 0.1435253460E-05 2.343909043 0.1436590955E-05 2.346256073 0.1437037040E-05 0.000000000 0.3094723531E-07 0.2347351854E-02 0.3114210246E-07 0.4694703708E-02 0.3173118691E-07 0.7042055561E-02 0.3272800040E-07 0.9389407415E-02 0.3415526825E-07 0.1173675927E-01 0.3604522589E-07 0.1408411112E-01 0.3844000900E-07 0.1643146298E-01 0.4139211031E-07 0.1877881483E-01 0.4496486708E-07 0.2112616668E-01 0.4923293481E-07 0.2347351854E-01 0.5428269686E-07 0.2582087039E-01 0.6021255858E-07 0.2816822225E-01 0.6713308023E-07 0.3051557410E-01 0.7516691608E-07 0.3286292595E-01 0.8444854624E-07 0.3521027781E-01 0.9124175860E-07 0.3755762966E-01 0.8838342589E-07 0.3990498151E-01 0.8540472789E-07 0.4225233337E-01 0.8231681945E-07 0.4459968522E-01 0.7913128064E-07 0.4694703708E-01 0.7825946263E-07 0.4929438893E-01 0.8423528714E-07 0.5164174078E-01 0.9071967647E-07 0.5398909264E-01 0.9774136285E-07 0.5633644449E-01 0.1053299033E-06 0.5868379634E-01 0.1135156158E-06 0.6103114820E-01 0.1223295139E-06 0.6337850005E-01 0.1318032399E-06 0.6572585191E-01 0.1419689975E-06 0.6807320376E-01 0.1528594822E-06 0.7042055561E-01 0.1645078123E-06 0.7276790747E-01 0.1769474582E-06 0.7511525932E-01 0.1902121716E-06 0.7746261117E-01 0.2043359148E-06 0.7980996303E-01 0.2193527886E-06 0.8215731488E-01 0.2352969622E-06 0.8450466674E-01 0.2522026012E-06 0.8685201859E-01 0.2701037980E-06 0.8919937044E-01 0.2890345010E-06 0.9154672230E-01 0.3090284461E-06 0.9389407415E-01 0.3301190879E-06 0.9624142601E-01 0.3568837011E-06 0.9858877786E-01 0.3862195287E-06 0.1009361297 0.4171564614E-06 0.1032834816 0.4497292985E-06 0.1056308334 0.4839707250E-06 0.1079781853 0.5199111772E-06 0.1103255371 0.5575787129E-06 0.1126728890 0.5969988855E-06 0.1150202408 0.6381946247E-06 0.1173675927 0.6811861218E-06 0.1197149445 0.7259907203E-06 0.1220622964 0.7726228132E-06 0.1244096483 0.8210937460E-06 0.1267570001 0.8714117254E-06 0.1291043520 0.9235817359E-06 0.1314517038 0.9776054614E-06 0.1337990557 0.1033481215E-05 0.1361464075 0.1091203875E-05 0.1384937594 0.1150764830E-05 0.1408411112 0.1212151927E-05 0.1431884631 0.1275349433E-05 0.1455358149 0.1340337999E-05 0.1478831668 0.1407094637E-05 0.1502305186 0.1475592696E-05 0.1525778705 0.1545801858E-05 0.1549252223 0.1617688132E-05 0.1572725742 0.1691213859E-05 0.1596199261 0.1766337728E-05 0.1619672779 0.1843014795E-05 0.1643146298 0.1921196516E-05 0.1666619816 0.2000830780E-05 0.1690093335 0.2081861956E-05 0.1713566853 0.2164230948E-05 0.1737040372 0.2247875252E-05 0.1760513890 0.2332729028E-05 0.1783987409 0.2418723172E-05 0.1807460927 0.2505785402E-05 0.1830934446 0.2593840347E-05 0.1854407964 0.2682809643E-05 0.1877881483 0.2772612038E-05 0.1901355002 0.2863163501E-05 0.1924828520 0.2954377341E-05 0.1948302039 0.3046164326E-05 0.1971775557 0.3138432814E-05 0.1995249076 0.3231088883E-05 0.2018722594 0.3324036474E-05 0.2042196113 0.3417177532E-05 0.2065669631 0.3510412152E-05 0.2089143150 0.3603638737E-05 0.2112616668 0.3696754145E-05 0.2136090187 0.3789653856E-05 0.2159563705 0.3882232128E-05 0.2183037224 0.3974382164E-05 0.2206510743 0.4065996277E-05 0.2229984261 0.4156966059E-05 0.2253457780 0.4247182548E-05 0.2276931298 0.4336536397E-05 0.2300404817 0.4424918044E-05 0.2323878335 0.4512217881E-05 0.2347351854 0.4598326421E-05 0.2370825372 0.4683134461E-05 0.2394298891 0.4766533247E-05 0.2417772409 0.4848414634E-05 0.2441245928 0.4928671241E-05 0.2464719446 0.5007196602E-05 0.2488192965 0.5083885309E-05 0.2511666484 0.5199273859E-05 0.2535140002 0.5323463494E-05 0.2558613521 0.5448643268E-05 0.2582087039 0.5574726035E-05 0.2605560558 0.5701607934E-05 0.2629034076 0.5829164041E-05 0.2652507595 0.5957242656E-05 0.2675981113 0.6085657748E-05 0.2699454632 0.6214178804E-05 0.2722928150 0.6342517025E-05 0.2746401669 0.6470306253E-05 0.2769875187 0.6597076190E-05 0.2793348706 0.6722214137E-05 0.2816822225 0.6844909251E-05 0.2840295743 0.6964069726E-05 0.2863769262 0.7078197096E-05 0.2887242780 0.7185191472E-05 0.2910716299 0.7282043977E-05 0.2934189817 0.7364344638E-05 0.2957663336 0.7425496122E-05 0.2981136854 0.7455502460E-05 0.3004610373 0.7439330159E-05 0.3028083891 0.7355560671E-05 0.3051557410 0.7178151782E-05 0.3075030928 0.6886350358E-05 0.3098504447 0.6481443793E-05 0.3121977966 0.6116739152E-05 0.3145451484 0.6104866011E-05 0.3168925003 0.6088455202E-05 0.3192398521 0.6067336428E-05 0.3215872040 0.6041309951E-05 0.3239345558 0.6010138831E-05 0.3262819077 0.5973539303E-05 0.3286292595 0.5931168942E-05 0.3309766114 0.5882612348E-05 0.3333239632 0.5827364293E-05 0.3356713151 0.5764810891E-05 0.3380186669 0.5694210535E-05 0.3403660188 0.5614678674E-05 0.3427133707 0.5525184473E-05 0.3450607225 0.5424573391E-05 0.3474080744 0.5311636863E-05 0.3497554262 0.5185254349E-05 0.3521027781 0.5044624435E-05 0.3544501299 0.4889567731E-05 0.3567974818 0.4720824035E-05 0.3591448336 0.4540213291E-05 0.3614921855 0.4350546648E-05 0.3638395373 0.4155284250E-05 0.3661868892 0.3958066593E-05 0.3685342410 0.3762289579E-05 0.3708815929 0.3570831333E-05 0.3732289448 0.3385944754E-05 0.3755762966 0.3209271204E-05 0.3779236485 0.3041918972E-05 0.3802710003 0.2884563755E-05 0.3826183522 0.2737546658E-05 0.3849657040 0.2600958954E-05 0.3873130559 0.2474710828E-05 0.3896604077 0.2358585067E-05 0.3920077596 0.2252278053E-05 0.3943551114 0.2155430596E-05 0.3967024633 0.2067650830E-05 0.3990498151 0.1988531036E-05 0.4013971670 0.1917659787E-05 0.4037445189 0.1984627472E-05 0.4060918707 0.2106364347E-05 0.4084392226 0.2232325073E-05 0.4107865744 0.2362516005E-05 0.4131339263 0.2496938159E-05 0.4154812781 0.2635587106E-05 0.4178286300 0.2778452883E-05 0.4201759818 0.2925519906E-05 0.4225233337 0.3076766893E-05 0.4248706855 0.3232166796E-05 0.4272180374 0.3391686739E-05 0.4295653892 0.3555287972E-05 0.4319127411 0.3477747242E-05 0.4342600929 0.3399892927E-05 0.4366074448 0.3325893056E-05 0.4389547967 0.3256440046E-05 0.4413021485 0.3192369558E-05 0.4436495004 0.3325416404E-05 0.4459968522 0.3465891537E-05 0.4483442041 0.3609145101E-05 0.4506915559 0.3755111370E-05 0.4530389078 0.3903719930E-05 0.4553862596 0.4054895710E-05 0.4577336115 0.4208559024E-05 0.4600809633 0.4364625623E-05 0.4624283152 0.4523006753E-05 0.4647756670 0.4683609216E-05 0.4671230189 0.4846335451E-05 0.4694703708 0.5011083611E-05 0.4718177226 0.5177747655E-05 0.4741650745 0.5346217446E-05 0.4765124263 0.5516378855E-05 0.4788597782 0.5688113875E-05 0.4812071300 0.5861300741E-05 0.4835544819 0.6035814058E-05 0.4859018337 0.6211524934E-05 0.4882491856 0.6388301124E-05 0.4905965374 0.6566007177E-05 0.4929438893 0.6744504591E-05 0.4952912411 0.6923651973E-05 0.4976385930 0.7103305209E-05 0.4999859449 0.6978290013E-05 0.5023332967 0.6773578638E-05 0.5046806486 0.6606303071E-05 0.5070280004 0.6497620738E-05 0.5093753523 0.6470556607E-05 0.5117227041 0.6528873093E-05 0.5140700560 0.6651930192E-05 0.5164174078 0.6815691352E-05 0.5187647597 0.7004287013E-05 0.5211121115 0.7208796008E-05 0.5234594634 0.7424194575E-05 0.5258068152 0.7647476002E-05 0.5281541671 0.7876692247E-05 0.5305015190 0.8110473383E-05 0.5328488708 0.8347778971E-05 0.5351962227 0.8587763790E-05 0.5375435745 0.8829702157E-05 0.5398909264 0.9072943659E-05 0.5422382782 0.9316886401E-05 0.5445856301 0.9560960482E-05 0.5469329819 0.9804617597E-05 0.5492803338 0.1004732449E-04 0.5516276856 0.1028855886E-04 0.5539750375 0.1052780688E-04 0.5563223893 0.1076456178E-04 0.5586697412 0.1099832327E-04 0.5610170931 0.1122859735E-04 0.5633644449 0.1145489664E-04 0.5657117968 0.1167674082E-04 0.5680591486 0.1189365741E-04 0.5704065005 0.1207397369E-04 0.5727538523 0.1218777719E-04 0.5751012042 0.1229712232E-04 0.5774485560 0.1240189456E-04 0.5797959079 0.1250198386E-04 0.5821432597 0.1259728476E-04 0.5844906116 0.1268769660E-04 0.5868379634 0.1277312360E-04 0.5891853153 0.1285347506E-04 0.5915326672 0.1292866549E-04 0.5938800190 0.1299861469E-04 0.5962273709 0.1306324795E-04 0.5985747227 0.1312249608E-04 0.6009220746 0.1317629556E-04 0.6032694264 0.1322458864E-04 0.6056167783 0.1326732339E-04 0.6079641301 0.1330445383E-04 0.6103114820 0.1333593996E-04 0.6126588338 0.1336174781E-04 0.6150061857 0.1338184954E-04 0.6173535375 0.1339622346E-04 0.6197008894 0.1340485402E-04 0.6220482413 0.1340773192E-04 0.6243952716 0.1340732784E-04 0.6267423020 0.1340611588E-04 0.6290893324 0.1340409702E-04 0.6314363628 0.1340127292E-04 0.6337833932 0.1339764596E-04 0.6361304236 0.1339321922E-04 0.6384774540 0.1338799647E-04 0.6408244844 0.1338198221E-04 0.6431715148 0.1337518159E-04 0.6455185452 0.1336760049E-04 0.6478655756 0.1335924544E-04 0.6502126060 0.1335012367E-04 0.6525596364 0.1334024305E-04 0.6549066668 0.1332961215E-04 0.6572536971 0.1331824017E-04 0.6596007275 0.1330613695E-04 0.6619477579 0.1329331297E-04 0.6642947883 0.1327977934E-04 0.6666418187 0.1326554778E-04 0.6689888491 0.1325063060E-04 0.6713358795 0.1323504072E-04 0.6736829099 0.1321713251E-04 0.6760299403 0.1309322009E-04 0.6783769707 0.1296512056E-04 0.6807240011 0.1283299090E-04 0.6830710315 0.1269699181E-04 0.6854180619 0.1255728746E-04 0.6877650922 0.1241404512E-04 0.6901121226 0.1226743488E-04 0.6924591530 0.1211762934E-04 0.6948061834 0.1196480324E-04 0.6971532138 0.1180913319E-04 0.6995002442 0.1165079732E-04 0.7018472746 0.1148997494E-04 0.7041943050 0.1132684625E-04 0.7065413354 0.1116159199E-04 0.7088883658 0.1099439313E-04 0.7112353962 0.1082543055E-04 0.7135824266 0.1065488473E-04 0.7159294570 0.1048293544E-04 0.7182764874 0.1030976143E-04 0.7206235177 0.1013554013E-04 0.7229705481 0.9960447373E-05 0.7253175785 0.9784657112E-05 0.7276646089 0.9608341128E-05 0.7300116393 0.9431668779E-05 0.7323586697 0.9254806736E-05 0.7347057001 0.9077918741E-05 0.7370527305 0.8901165368E-05 0.7393997609 0.8724703800E-05 0.7417467913 0.8548687611E-05 0.7440938217 0.8373266567E-05 0.7464408521 0.8198586437E-05 0.7487878825 0.8024788812E-05 0.7511349128 0.7852010941E-05 0.7534819432 0.7680385580E-05 0.7558289736 0.7510040853E-05 0.7581760040 0.7341100123E-05 0.7605230344 0.7173681884E-05 0.7628700648 0.7007899658E-05 0.7652170952 0.6843861911E-05 0.7675641256 0.6681671983E-05 0.7699111560 0.6521428021E-05 0.7722581864 0.6363222944E-05 0.7746052168 0.6207144400E-05 0.7769522472 0.6053274754E-05 0.7792992776 0.5901691076E-05 0.7816463080 0.5752465146E-05 0.7839933383 0.5605663474E-05 0.7863403687 0.5461347330E-05 0.7886873991 0.5319572778E-05 0.7910344295 0.5180390736E-05 0.7933814599 0.5043847031E-05 0.7957284903 0.4909982476E-05 0.7980755207 0.4778832953E-05 0.8004225511 0.4650429499E-05 0.8027695815 0.4524798413E-05 0.8051166119 0.4401961360E-05 0.8074636423 0.4281935490E-05 0.8098106727 0.4164733560E-05 0.8121577031 0.4050364066E-05 0.8145047335 0.3938831375E-05 0.8168517638 0.3830135873E-05 0.8191987942 0.3724274107E-05 0.8215458246 0.3621238937E-05 0.8238928550 0.3521019690E-05 0.8262398854 0.3423602319E-05 0.8285869158 0.3328969563E-05 0.8309339462 0.3237101108E-05 0.8332809766 0.3147973752E-05 0.8356280070 0.3061561569E-05 0.8379750374 0.2977836072E-05 0.8403220678 0.2896766383E-05 0.8426690982 0.2818319392E-05 0.8450161286 0.2742459921E-05 0.8473631589 0.2669150888E-05 0.8497101893 0.2598353463E-05 0.8520572197 0.2530027229E-05 0.8544042501 0.2464130335E-05 0.8567512805 0.2400619645E-05 0.8590983109 0.2339450891E-05 0.8614453413 0.2280578814E-05 0.8637923717 0.2223957307E-05 0.8661394021 0.2169539550E-05 0.8684864325 0.2117278145E-05 0.8708334629 0.2067125243E-05 0.8731804933 0.2019032666E-05 0.8755275237 0.1972952031E-05 0.8778745541 0.1928834857E-05 0.8802215844 0.1886632680E-05 0.8825686148 0.1846297156E-05 0.8849156452 0.1807780156E-05 0.8872626756 0.1771033866E-05 0.8896097060 0.1736010867E-05 0.8919567364 0.1702664224E-05 0.8943037668 0.1670947559E-05 0.8966507972 0.1640815122E-05 0.8989978276 0.1612221855E-05 0.9013448580 0.1585123451E-05 0.9036918884 0.1559476405E-05 0.9060389188 0.1535238056E-05 0.9083859492 0.1512366632E-05 0.9107329796 0.1490821274E-05 0.9130800099 0.1470562067E-05 0.9154270403 0.1451550052E-05 0.9177740707 0.1433747244E-05 0.9201211011 0.1417116631E-05 0.9224681315 0.1401622174E-05 0.9248151619 0.1387228799E-05 0.9271621923 0.1373902384E-05 0.9295092227 0.1361609739E-05 0.9318562531 0.1350318579E-05 0.9342032835 0.1339997496E-05 0.9365503139 0.1330615925E-05 0.9388973443 0.1322144105E-05 0.9412443747 0.1314553041E-05 0.9435914050 0.1307814453E-05 0.9459384354 0.1301900736E-05 0.9482854658 0.1296784911E-05 0.9506324962 0.1292440573E-05 0.9529795266 0.1288841841E-05 0.9553265570 0.1285963311E-05 0.9576735874 0.1283780004E-05 0.9600206178 0.1282267318E-05 0.9623676482 0.1281400977E-05 0.9647146786 0.1281156990E-05 0.9670617090 0.1281511603E-05 0.9694087394 0.1282441256E-05 0.9717557698 0.1276539379E-05 0.9741028002 0.1258024077E-05 0.9764498305 0.1240543323E-05 0.9787968609 0.1224053043E-05 0.9811438913 0.1208510798E-05 0.9834909217 0.1193875716E-05 0.9858379521 0.1180108422E-05 0.9881849825 0.1167170970E-05 0.9905320129 0.1155026777E-05 0.9928790433 0.1143640554E-05 0.9952260737 0.1132978242E-05 0.9975731041 0.1123006948E-05 0.9999201345 0.1113694884E-05 1.002267165 0.1105011310E-05 1.004614195 0.1096926478E-05 1.006961226 0.1089411583E-05 1.009308256 0.1082438711E-05 1.011655286 0.1075980802E-05 1.014002317 0.1070011605E-05 1.016349347 0.1064505647E-05 1.018696378 0.1059438200E-05 1.021043408 0.1054785253E-05 1.023390438 0.1070072033E-05 1.025737469 0.1085622896E-05 1.028084499 0.1100906179E-05 1.030431530 0.1115898660E-05 1.032778560 0.1130577354E-05 1.035125590 0.1144919558E-05 1.037472621 0.1158902900E-05 1.039819651 0.1172505389E-05 1.042166682 0.1185705463E-05 1.044513712 0.1198482040E-05 1.046860742 0.1210814568E-05 1.049207773 0.1222683070E-05 1.051554803 0.1234068200E-05 1.053901834 0.1244951281E-05 1.056248864 0.1255314360E-05 1.058595894 0.1265140244E-05 1.060942925 0.1274412553E-05 1.063289955 0.1283115751E-05 1.065636985 0.1291235195E-05 1.067984016 0.1298757167E-05 1.070331046 0.1305668910E-05 1.072678077 0.1311958662E-05 1.075025107 0.1317615688E-05 1.077372137 0.1322630306E-05 1.079719168 0.1326993911E-05 1.082066198 0.1330699001E-05 1.084413229 0.1333739196E-05 1.086760259 0.1336109251E-05 1.089107289 0.1337805076E-05 1.091454320 0.1338823743E-05 1.093801350 0.1339163493E-05 1.096152861 0.1339988217E-05 1.098504372 0.1342457827E-05 1.100855883 0.1346557244E-05 1.103207394 0.1352256216E-05 1.105558905 0.1359499353E-05 1.107910415 0.1368185841E-05 1.110261926 0.1378127003E-05 1.112613437 0.1388953106E-05 1.114964948 0.1399902776E-05 1.117316459 0.1409390812E-05 1.119667970 0.1414581803E-05 1.122019481 0.1412645197E-05 1.124370992 0.1403657317E-05 1.126722503 0.1389777578E-05 1.129074013 0.1372785522E-05 1.131425524 0.1353678427E-05 1.133777035 0.1333000800E-05 1.136128546 0.1311078502E-05 1.138480057 0.1288131492E-05 1.140831568 0.1264326120E-05 1.143183079 0.1244681116E-05 1.145534590 0.1262859594E-05 1.147886101 0.1281437590E-05 1.150237611 0.1300404661E-05 1.152589122 0.1319753441E-05 1.154940633 0.1339479345E-05 1.157292144 0.1359580281E-05 1.159643655 0.1380056393E-05 1.161995166 0.1400909809E-05 1.164346677 0.1422144418E-05 1.166698188 0.1443765662E-05 1.169049699 0.1465780348E-05 1.171401209 0.1488196478E-05 1.173752720 0.1511023089E-05 1.176104231 0.1534270119E-05 1.178455742 0.1557948276E-05 1.180807253 0.1582068929E-05 1.183158764 0.1606644000E-05 1.185510275 0.1631685875E-05 1.187861786 0.1657207322E-05 1.190213296 0.1683221414E-05 1.192564807 0.1709741463E-05 1.194916318 0.1736780958E-05 1.197267829 0.1764353513E-05 1.199619340 0.1792472810E-05 1.201970851 0.1821152561E-05 1.204322362 0.1850406460E-05 1.206673873 0.1880248147E-05 1.209025384 0.1910691170E-05 1.211376894 0.1941748952E-05 1.213728405 0.1973434759E-05 1.216079916 0.2005761671E-05 1.218431427 0.2038742550E-05 1.220782938 0.2072390015E-05 1.223134449 0.2106716412E-05 1.225485960 0.2141733790E-05 1.227837471 0.2177453875E-05 1.230188982 0.2213888040E-05 1.232540492 0.2251047286E-05 1.234892003 0.2288942208E-05 1.237243514 0.2327582978E-05 1.239595025 0.2366979312E-05 1.241946536 0.2407140446E-05 1.244298047 0.2448075113E-05 1.246649558 0.2489791510E-05 1.249001069 0.2532297276E-05 1.251352580 0.2575599460E-05 1.253704090 0.2619704497E-05 1.256055601 0.2664618180E-05 1.258407112 0.2710345628E-05 1.260758623 0.2756891259E-05 1.263110134 0.2804258762E-05 1.265461645 0.2852451066E-05 1.267813156 0.2901470312E-05 1.270164667 0.2951317823E-05 1.272516177 0.3001994075E-05 1.274867688 0.3053498666E-05 1.277219199 0.3105830289E-05 1.279570710 0.3158986701E-05 1.281922221 0.3212964695E-05 1.284273732 0.3267760073E-05 1.286625243 0.3323367617E-05 1.288976754 0.3379781062E-05 1.291328265 0.3436993069E-05 1.293679775 0.3494995204E-05 1.296031286 0.3553777907E-05 1.298382797 0.3613330475E-05 1.300734308 0.3673641037E-05 1.303085819 0.3734696537E-05 1.305437330 0.3796482709E-05 1.307788841 0.3858984069E-05 1.310140352 0.3922183893E-05 1.312491863 0.3986064210E-05 1.314843373 0.4050605788E-05 1.317194884 0.4115788127E-05 1.319546395 0.4181589455E-05 1.321897906 0.4247986726E-05 1.324249417 0.4314955619E-05 1.326600928 0.4382470546E-05 1.328952439 0.4450504655E-05 1.331303950 0.4519029843E-05 1.333655461 0.4588016775E-05 1.336006971 0.4657434897E-05 1.338358482 0.4727252465E-05 1.340709993 0.4797436570E-05 1.343061504 0.4867953173E-05 1.345413015 0.4938767143E-05 1.347764526 0.5009842299E-05 1.350116037 0.5029771784E-05 1.352467548 0.4943423189E-05 1.354819059 0.4854297604E-05 1.357170569 0.4763789704E-05 1.359522080 0.4672969154E-05 1.361873591 0.4582635111E-05 1.364225102 0.4493375669E-05 1.366576613 0.4405619256E-05 1.368928124 0.4319675054E-05 1.371279635 0.4235763425E-05 1.373631146 0.4154038359E-05 1.375982656 0.4074603966E-05 1.378334167 0.3997526575E-05 1.380685678 0.3922843688E-05 1.383037189 0.3850570643E-05 1.385388700 0.3780705641E-05 1.387740211 0.3713233557E-05 1.390091722 0.3648128885E-05 1.392443233 0.3585358035E-05 1.394794744 0.3524881150E-05 1.397146254 0.3466653573E-05 1.399497765 0.3410627063E-05 1.401849276 0.3356750836E-05 1.404200787 0.3304972503E-05 1.406552298 0.3255238990E-05 1.408903809 0.3207497540E-05 1.411255320 0.3161696959E-05 1.413606831 0.3117789399E-05 1.415958342 0.3075733268E-05 1.418309852 0.3035498571E-05 1.420661363 0.2997077858E-05 1.423012874 0.2960511377E-05 1.425364385 0.2925952970E-05 1.427715896 0.2893869434E-05 1.430067407 0.2865690627E-05 1.432418918 0.2844910900E-05 1.434770429 0.2832860259E-05 1.437121940 0.2824335194E-05 1.439473450 0.2815625302E-05 1.441824961 0.2805480905E-05 1.444176472 0.2793487193E-05 1.446527983 0.2779496891E-05 1.448879494 0.2763465633E-05 1.451231005 0.2745397674E-05 1.453582516 0.2725325907E-05 1.455934027 0.2703304792E-05 1.458285537 0.2679409693E-05 1.460637048 0.2653741300E-05 1.462988559 0.2626436814E-05 1.465340070 0.2597693606E-05 1.467691581 0.2567819174E-05 1.470043092 0.2537338225E-05 1.472394603 0.2507205728E-05 1.474746114 0.2479061082E-05 1.477097625 0.2454830009E-05 1.479449135 0.2435128105E-05 1.481800646 0.2418946364E-05 1.484152157 0.2503725492E-05 1.486503668 0.2715633263E-05 1.488855179 0.2930093409E-05 1.491206690 0.3144008050E-05 1.493558201 0.3354311479E-05 1.495909712 0.3558025083E-05 1.498261223 0.3752372462E-05 1.500612733 0.3934919756E-05 1.502964244 0.4103705892E-05 1.505315755 0.4257331774E-05 1.507667266 0.4394989448E-05 1.510018777 0.4516429056E-05 1.512370288 0.4621876768E-05 1.514721799 0.4711925370E-05 1.517073310 0.4787419442E-05 1.519424821 0.4849351533E-05 1.521776331 0.4898778227E-05 1.524127842 0.4936758470E-05 1.526479353 0.4964312327E-05 1.528830864 0.4982396284E-05 1.531182375 0.4991890841E-05 1.533533886 0.4993596545E-05 1.535885397 0.4988235432E-05 1.538236908 0.4976455631E-05 1.540588418 0.4958837591E-05 1.542939929 0.4935900923E-05 1.545291440 0.4908111242E-05 1.547642951 0.4875886637E-05 1.549994462 0.4839603605E-05 1.552345973 0.4799602364E-05 1.554697484 0.4756191540E-05 1.557048995 0.4709652265E-05 1.559400506 0.4660241720E-05 1.561752016 0.4608196205E-05 1.564103527 0.4553733761E-05 1.566455038 0.4497056430E-05 1.568806549 0.4438352184E-05 1.571158060 0.4377796576E-05 1.573509571 0.4315554150E-05 1.575861082 0.4251779647E-05 1.578212593 0.4186619036E-05 1.580564104 0.4120210392E-05 1.582915614 0.4052684651E-05 1.585267125 0.3984166252E-05 1.587618636 0.3914773690E-05 1.589970147 0.3844619984E-05 1.592321658 0.3773813085E-05 1.594673169 0.3702456220E-05 1.597024680 0.3630648188E-05 1.599376191 0.3558483618E-05 1.601727702 0.3486053186E-05 1.604079212 0.3413443809E-05 1.606430723 0.3340738803E-05 1.608782234 0.3268018029E-05 1.611133745 0.3195358014E-05 1.613485256 0.3122832062E-05 1.615836767 0.3050510347E-05 1.618188278 0.2978459998E-05 1.620539789 0.2906745175E-05 1.622891299 0.2835427136E-05 1.625242810 0.2764564302E-05 1.627594321 0.2694212311E-05 1.629945832 0.2624424072E-05 1.632297343 0.2599972222E-05 1.634648854 0.2581815554E-05 1.637000365 0.2562169695E-05 1.639351876 0.2541040987E-05 1.641703387 0.2518439180E-05 1.644054897 0.2494377442E-05 1.646406408 0.2468872358E-05 1.648757919 0.2441943924E-05 1.651109430 0.2413615529E-05 1.653460941 0.2383913926E-05 1.655812452 0.2352869192E-05 1.658163963 0.2320514677E-05 1.660515474 0.2286886942E-05 1.662866985 0.2252025686E-05 1.665218495 0.2215973664E-05 1.667570006 0.2178776589E-05 1.669921517 0.2140483031E-05 1.672273028 0.2101144295E-05 1.674624539 0.2060814300E-05 1.676976050 0.2019549438E-05 1.679327561 0.1977408432E-05 1.681679072 0.1934452178E-05 1.684030583 0.1890743581E-05 1.686382093 0.1846347384E-05 1.688733604 0.1801329985E-05 1.691085115 0.1755759253E-05 1.693436626 0.1709704333E-05 1.695788137 0.1663235446E-05 1.698139648 0.1616423683E-05 1.700491159 0.1569340801E-05 1.702842670 0.1522059006E-05 1.705194180 0.1474650739E-05 1.707545691 0.1427188461E-05 1.709897202 0.1379744433E-05 1.712248713 0.1332390499E-05 1.714600224 0.1285197870E-05 1.716951735 0.1238236905E-05 1.719303246 0.1191576904E-05 1.721654757 0.1145285893E-05 1.724006268 0.1099430423E-05 1.726357778 0.1054075370E-05 1.728709289 0.1009283739E-05 1.731060800 0.9651164828E-06 1.733412311 0.9216323210E-06 1.735763822 0.8788875710E-06 1.738115333 0.8369359887E-06 1.740466844 0.7958286186E-06 1.742818355 0.7556136551E-06 1.745169866 0.7163363145E-06 1.747521376 0.6780387187E-06 1.749872887 0.6407597899E-06 1.752224398 0.6045351560E-06 1.754575909 0.5693970663E-06 1.756927420 0.5353743155E-06 1.759278931 0.5024921726E-06 1.761630442 0.4707723124E-06 1.763981953 0.4402327437E-06 1.766333464 0.4108877285E-06 1.768684974 0.3827476832E-06 1.771036485 0.3558190572E-06 1.773387996 0.3301041832E-06 1.775739507 0.3056011015E-06 1.778091018 0.2823033758E-06 1.780442529 0.2601999313E-06 1.782794040 0.2392749719E-06 1.785145551 0.2195080415E-06 1.787497061 0.2008742958E-06 1.789848572 0.1833450157E-06 1.792200083 0.1668883425E-06 1.794551594 0.1514701548E-06 1.796903105 0.1370549682E-06 1.799254616 0.1236067385E-06 1.801606127 0.1110894849E-06 1.803957638 0.9946769663E-07 1.806309149 0.9190291290E-07 1.808660659 0.8671481463E-07 1.811012170 0.8185276044E-07 1.813363681 0.7730173173E-07 1.815715192 0.7304716281E-07 1.818066703 0.6907495474E-07 1.820418214 0.6537148842E-07 1.822769725 0.6192363690E-07 1.825121236 0.5871877680E-07 1.827472747 0.5767875011E-07 1.829824257 0.6207529639E-07 1.832175768 0.6644546795E-07 1.834527279 0.7075578131E-07 1.836878790 0.7483145209E-07 1.839230301 0.6964506170E-07 1.841581812 0.6371174458E-07 1.843933323 0.5843785609E-07 1.846284834 0.5377383612E-07 1.848636345 0.4966840423E-07 1.850987855 0.4607414141E-07 1.853339366 0.4294808955E-07 1.855690877 0.4025178824E-07 1.858042388 0.3795119550E-07 1.860393899 0.3601658072E-07 1.862745410 0.3442241543E-07 1.865096921 0.3314727169E-07 1.867448432 0.3217373216E-07 1.869799942 0.3148831417E-07 1.872151453 0.3108140876E-07 1.874502964 0.3094723531E-07 1.876849995 0.3096373300E-07 1.879197025 0.3101727307E-07 1.881544055 0.3110794533E-07 1.883891086 0.3123590096E-07 1.886238116 0.3140135224E-07 1.888585147 0.3160457209E-07 1.890932177 0.3184589353E-07 1.893279207 0.3212570901E-07 1.895626238 0.3244446946E-07 1.897973268 0.3280268339E-07 1.900320299 0.3320091558E-07 1.902667329 0.3363978577E-07 1.905014359 0.3411996702E-07 1.907361390 0.3464218390E-07 1.909708420 0.3520721042E-07 1.912055451 0.4156128638E-07 1.914402481 0.5242977284E-07 1.916749511 0.6527318751E-07 1.919096542 0.8030486079E-07 1.921443572 0.9396386175E-07 1.923790603 0.1053342396E-06 1.926137633 0.1264100496E-06 1.928484663 0.1504138236E-06 1.930831694 0.1775799189E-06 1.933178724 0.2081462974E-06 1.935525754 0.2423537347E-06 1.937872785 0.2804450179E-06 1.940219815 0.3226641359E-06 1.942566846 0.3692554642E-06 1.944913876 0.4204629463E-06 1.947260906 0.4765292752E-06 1.949607937 0.5376950763E-06 1.951954967 0.6041980942E-06 1.954301998 0.6762723876E-06 1.956649028 0.7541475314E-06 1.958996058 0.8380478323E-06 1.961343089 0.9281915564E-06 1.963690119 0.1024790174E-05 1.966037150 0.1128047624E-05 1.968384180 0.1238159592E-05 1.970731210 0.1355312825E-05 1.973078241 0.1479684452E-05 1.975425271 0.1611441347E-05 1.977772302 0.1750739514E-05 1.980119332 0.1897723499E-05 1.982466362 0.2052525840E-05 1.984813393 0.2215266546E-05 1.987160423 0.2386052612E-05 1.989507454 0.2564977572E-05 1.991854484 0.2752121086E-05 1.994201514 0.2947548565E-05 1.996548545 0.3151310844E-05 1.998895575 0.3363443881E-05 2.001242605 0.3583968510E-05 2.003589636 0.3812890226E-05 2.005936666 0.4050199023E-05 2.008283697 0.4295869261E-05 2.010630727 0.4549859587E-05 2.012977757 0.4812112893E-05 2.015324788 0.5082556318E-05 2.017671818 0.5361101293E-05 2.020018849 0.5647643629E-05 2.022365879 0.5942063646E-05 2.024712909 0.6244226341E-05 2.027059940 0.6553981603E-05 2.029406970 0.6871164459E-05 2.031754001 0.7195595369E-05 2.034101031 0.7527080552E-05 2.036448061 0.7865412348E-05 2.038795092 0.8210369624E-05 2.041142122 0.8561718205E-05 2.043489153 0.8919211344E-05 2.045836183 0.9282590221E-05 2.048183213 0.9651584470E-05 2.050530244 0.1002591274E-04 2.052877274 0.1040528328E-04 2.055224304 0.1078939454E-04 2.057571335 0.1117793581E-04 2.059918365 0.1157058789E-04 2.062265396 0.1196702370E-04 2.064612426 0.1236690905E-04 2.066959456 0.1276990329E-04 2.069306487 0.1317566006E-04 2.071653517 0.1358382796E-04 2.074000548 0.1399405136E-04 2.076347578 0.1440597111E-04 2.078694608 0.1481922528E-04 2.081041639 0.1523344990E-04 2.083388669 0.1564827975E-04 2.085735700 0.1606334909E-04 2.088082730 0.1647829240E-04 2.090429760 0.1689274511E-04 2.092776791 0.1730634437E-04 2.095123821 0.1771872973E-04 2.097470852 0.1812954389E-04 2.099817882 0.1853843338E-04 2.102164912 0.1894504923E-04 2.104511943 0.1934904767E-04 2.106858973 0.1975009075E-04 2.109206004 0.2014784700E-04 2.111553034 0.2054199201E-04 2.113900064 0.2093220903E-04 2.116247095 0.2131818953E-04 2.118594125 0.2169963376E-04 2.120941155 0.2207625121E-04 2.123288186 0.2244776114E-04 2.125635216 0.2281389303E-04 2.127982247 0.2317438700E-04 2.130329277 0.2352899418E-04 2.132676307 0.2387747715E-04 2.135023338 0.2421961020E-04 2.137370368 0.2455517968E-04 2.139717399 0.2488398428E-04 2.142064429 0.2520583524E-04 2.144411459 0.2552055657E-04 2.146758490 0.2582798527E-04 2.149105520 0.2612797140E-04 2.151452551 0.2642037829E-04 2.153799581 0.2670508252E-04 2.156146611 0.2698197407E-04 2.158493642 0.2725095628E-04 2.160840672 0.2751194585E-04 2.163187703 0.2776487281E-04 2.165534733 0.2800968048E-04 2.167881763 0.2824632531E-04 2.170228794 0.2847477682E-04 2.172575824 0.2869501741E-04 2.174922855 0.2890704220E-04 2.177269885 0.2911085882E-04 2.179616915 0.2930648719E-04 2.181963946 0.2949395928E-04 2.184310976 0.2967331884E-04 2.186658006 0.2984462107E-04 2.189005037 0.3000793237E-04 2.191352067 0.3016332999E-04 2.193699098 0.3031090166E-04 2.196046128 0.3045074525E-04 2.198393158 0.3058296841E-04 2.200740189 0.3070768816E-04 2.203087219 0.3082503050E-04 2.205434250 0.3093512999E-04 2.207781280 0.3103812933E-04 2.210128310 0.3113417897E-04 2.212475341 0.3122343660E-04 2.214822371 0.3130606679E-04 2.217169402 0.3138224049E-04 2.219516432 0.3145213461E-04 2.221863462 0.3151593154E-04 2.224210493 0.3157381874E-04 2.226557523 0.3162598828E-04 2.228904554 0.3167263634E-04 2.231251584 0.3171396284E-04 2.233598614 0.3175017094E-04 2.235945645 0.3178146662E-04 2.238292675 0.3180805825E-04 2.240639706 0.3183015614E-04 2.242986736 0.3184797216E-04 2.245333766 0.3186171926E-04 2.247680797 0.3187161112E-04 2.250027827 0.3187786174E-04 2.252374857 0.3188068502E-04 2.254721888 0.3188029442E-04 2.257068918 0.3187690256E-04 2.259415949 0.3187072089E-04 2.261762979 0.3186195929E-04 2.264110009 0.3185082582E-04 2.266457040 0.3183752630E-04 2.268804070 0.3182226406E-04 2.271151101 0.3180523959E-04 2.273498131 0.3178665032E-04 2.275845161 0.3176669024E-04 2.278192192 0.3174554973E-04 2.280539222 0.3172341524E-04 2.282886253 0.3170046907E-04 2.285233283 0.3167688915E-04 2.287580313 0.3165284877E-04 2.289927344 0.3162851643E-04 2.292274374 0.3160405559E-04 2.294621405 0.3157962450E-04 2.296968435 0.3155537604E-04 2.299315465 0.3153145751E-04 2.301662496 0.3150801046E-04 2.304009526 0.3148517060E-04 2.306356557 0.3146306758E-04 2.308703587 0.3144182487E-04 2.311050617 0.3142155965E-04 2.313397648 0.3140238263E-04 2.315744678 0.3138439790E-04 2.318091708 0.3136770282E-04 2.320438739 0.3135238783E-04 2.322785769 0.3133853618E-04 2.325132800 0.3132622369E-04 2.327479830 0.3131551828E-04 2.329826860 0.3130647919E-04 2.332173891 0.3129915557E-04 2.334520921 0.3129358360E-04 2.336867952 0.3128977974E-04 2.339214982 0.3128772297E-04 2.341562012 0.3128729893E-04 2.343909043 0.3128809422E-04 2.346256073 0.3128880618E-04 0.000000000 0.1137957376E-06 0.2347351854E-02 0.1136882525E-06 0.4694703708E-02 0.1133661955E-06 0.7042055561E-02 0.1128307597E-06 0.9389407415E-02 0.1120839293E-06 0.1173675927E-01 0.1111284725E-06 0.1408411112E-01 0.1099679316E-06 0.1643146298E-01 0.1086066114E-06 0.1877881483E-01 0.1070495632E-06 0.2112616668E-01 0.1053025681E-06 0.2347351854E-01 0.1033721164E-06 0.2582087039E-01 0.1012653849E-06 0.2816822225E-01 0.9899021194E-07 0.3051557410E-01 0.9655507003E-07 0.3286292595E-01 0.9396903586E-07 0.3521027781E-01 0.9512381028E-07 0.3755762966E-01 0.1073492723E-06 0.3990498151E-01 0.1212914620E-06 0.4225233337E-01 0.1371260412E-06 0.4459968522E-01 0.1550369445E-06 0.4694703708E-01 0.1752155298E-06 0.4929438893E-01 0.1978597632E-06 0.5164174078E-01 0.2231734501E-06 0.5398909264E-01 0.2513655126E-06 0.5633644449E-01 0.2826493057E-06 0.5868379634E-01 0.3172419653E-06 0.6103114820E-01 0.3553637749E-06 0.6337850005E-01 0.3972375433E-06 0.6572585191E-01 0.4430879853E-06 0.6807320376E-01 0.4931410996E-06 0.7042055561E-01 0.5476235419E-06 0.7276790747E-01 0.6067619905E-06 0.7511525932E-01 0.6707825035E-06 0.7746261117E-01 0.7399098701E-06 0.7980996303E-01 0.8143669551E-06 0.8215731488E-01 0.8943740387E-06 0.8450466674E-01 0.9801481551E-06 0.8685201859E-01 0.1071902428E-05 0.8919937044E-01 0.1169845410E-05 0.9154672230E-01 0.1274180424E-05 0.9389407415E-01 0.1385104906E-05 0.9624142601E-01 0.1502809764E-05 0.9858877786E-01 0.1627478736E-05 0.1009361297 0.1759287764E-05 0.1032834816 0.1898404379E-05 0.1056308334 0.2044987099E-05 0.1079781853 0.2199184843E-05 0.1103255371 0.2361136366E-05 0.1126728890 0.2530969703E-05 0.1150202408 0.2708801642E-05 0.1173675927 0.2894737216E-05 0.1197149445 0.3088869212E-05 0.1220622964 0.3291277712E-05 0.1244096483 0.3502029656E-05 0.1267570001 0.3721178423E-05 0.1291043520 0.3948763454E-05 0.1314517038 0.4184809893E-05 0.1337990557 0.4429328254E-05 0.1361464075 0.4682314130E-05 0.1384937594 0.4943747920E-05 0.1408411112 0.5213594596E-05 0.1431884631 0.5491803496E-05 0.1455358149 0.5778308151E-05 0.1478831668 0.6073026150E-05 0.1502305186 0.6375859028E-05 0.1525778705 0.6686692200E-05 0.1549252223 0.7005394915E-05 0.1572725742 0.7331820256E-05 0.1596199261 0.7665805170E-05 0.1619672779 0.8007170526E-05 0.1643146298 0.8355721216E-05 0.1666619816 0.8711246286E-05 0.1690093335 0.9073519096E-05 0.1713566853 0.9442297522E-05 0.1737040372 0.9817324181E-05 0.1760513890 0.1019832669E-04 0.1783987409 0.1058501798E-04 0.1807460927 0.1097709658E-04 0.1830934446 0.1137424701E-04 0.1854407964 0.1177614013E-04 0.1877881483 0.1218243356E-04 0.1901355002 0.1259277214E-04 0.1924828520 0.1300678835E-04 0.1948302039 0.1342410280E-04 0.1971775557 0.1384432476E-04 0.1995249076 0.1426705268E-04 0.2018722594 0.1469187469E-04 0.2042196113 0.1511836920E-04 0.2065669631 0.1554610547E-04 0.2089143150 0.1597464417E-04 0.2112616668 0.1640353796E-04 0.2136090187 0.1683233211E-04 0.2159563705 0.1726056506E-04 0.2183037224 0.1768776902E-04 0.2206510743 0.1811347052E-04 0.2229984261 0.1853719097E-04 0.2253457780 0.1895844721E-04 0.2276931298 0.1937675195E-04 0.2300404817 0.1979161424E-04 0.2323878335 0.2020253984E-04 0.2347351854 0.2060903154E-04 0.2370825372 0.2101058931E-04 0.2394298891 0.2140671040E-04 0.2417772409 0.2179688927E-04 0.2441245928 0.2218061720E-04 0.2464719446 0.2255738180E-04 0.2488192965 0.2292666601E-04 0.2511666484 0.2328794673E-04 0.2535140002 0.2364069282E-04 0.2558613521 0.2398436231E-04 0.2582087039 0.2431839846E-04 0.2605560558 0.2464222441E-04 0.2629034076 0.2495523577E-04 0.2652507595 0.2525679021E-04 0.2675981113 0.2554619307E-04 0.2699454632 0.2582267688E-04 0.2722928150 0.2608537187E-04 0.2746401669 0.2633326299E-04 0.2769875187 0.2656512574E-04 0.2793348706 0.2677942819E-04 0.2816822225 0.2683302738E-04 0.2840295743 0.2476357319E-04 0.2863769262 0.2281875537E-04 0.2887242780 0.2099745541E-04 0.2910716299 0.1929944913E-04 0.2934189817 0.1772591064E-04 0.2957663336 0.1628021243E-04 0.2981136854 0.1496915299E-04 0.3004610373 0.1380461606E-04 0.3028083891 0.1280494395E-04 0.3051557410 0.1199321000E-04 0.3075030928 0.1138735122E-04 0.3098504447 0.1098347857E-04 0.3121977966 0.1074989546E-04 0.3145451484 0.1064196623E-04 0.3168925003 0.1061994707E-04 0.3192398521 0.1065542810E-04 0.3215872040 0.1072989614E-04 0.3239345558 0.1083157700E-04 0.3262819077 0.1095292007E-04 0.3286292595 0.1108897576E-04 0.3309766114 0.1123641240E-04 0.3333239632 0.1139292612E-04 0.3356713151 0.1155688236E-04 0.3380186669 0.1135745479E-04 0.3403660188 0.1069687429E-04 0.3427133707 0.1008670609E-04 0.3450607225 0.9526277895E-05 0.3474080744 0.9014969168E-05 0.3497554262 0.8552086992E-05 0.3521027781 0.8136648232E-05 0.3544501299 0.7767086524E-05 0.3567974818 0.7440962599E-05 0.3591448336 0.7154809020E-05 0.3614921855 0.6904223466E-05 0.3638395373 0.6684214241E-05 0.3661868892 0.6489671391E-05 0.3685342410 0.6315793463E-05 0.3708815929 0.6158361950E-05 0.3732289448 0.6013849545E-05 0.3755762966 0.5879406877E-05 0.3779236485 0.5752784126E-05 0.3802710003 0.5632230335E-05 0.3826183522 0.5516394931E-05 0.3849657040 0.5404242270E-05 0.3873130559 0.5294981972E-05 0.3896604077 0.5188014133E-05 0.3920077596 0.5082887043E-05 0.3943551114 0.4979264936E-05 0.3967024633 0.4876903497E-05 0.3990498151 0.4775631336E-05 0.4013971670 0.4675336012E-05 0.4037445189 0.4575953551E-05 0.4060918707 0.4477460667E-05 0.4084392226 0.4379869150E-05 0.4107865744 0.4283221992E-05 0.4131339263 0.4187591036E-05 0.4154812781 0.4093075961E-05 0.4178286300 0.3999804581E-05 0.4201759818 0.3907934486E-05 0.4225233337 0.3817656143E-05 0.4248706855 0.3729197686E-05 0.4272180374 0.3642831687E-05 0.4295653892 0.3558884303E-05 0.4319127411 0.3722925822E-05 0.4342600929 0.3894549662E-05 0.4366074448 0.4070102891E-05 0.4389547967 0.4249522912E-05 0.4413021485 0.4432741135E-05 0.4436495004 0.4619682973E-05 0.4459968522 0.4810267863E-05 0.4483442041 0.5004409288E-05 0.4506915559 0.5202014810E-05 0.4530389078 0.5402986114E-05 0.4553862596 0.5607219061E-05 0.4577336115 0.5814603755E-05 0.4600809633 0.6025024611E-05 0.4624283152 0.6238360443E-05 0.4647756670 0.6454484555E-05 0.4671230189 0.6673264844E-05 0.4694703708 0.6894563912E-05 0.4718177226 0.7118239189E-05 0.4741650745 0.7344143064E-05 0.4765124263 0.7572123025E-05 0.4788597782 0.7802021808E-05 0.4812071300 0.8033677559E-05 0.4835544819 0.8266923998E-05 0.4859018337 0.8501590594E-05 0.4882491856 0.8268230326E-05 0.4905965374 0.7986543834E-05 0.4929438893 0.7714785620E-05 0.4952912411 0.7454368065E-05 0.4976385930 0.7207568101E-05 0.4999859449 0.7283317636E-05 0.5023332967 0.7463540216E-05 0.5046806486 0.7643821727E-05 0.5070280004 0.7824008947E-05 0.5093753523 0.8003946848E-05 0.5117227041 0.8183478796E-05 0.5140700560 0.8362446749E-05 0.5164174078 0.8540691467E-05 0.5187647597 0.8718052718E-05 0.5211121115 0.8894369490E-05 0.5234594634 0.9069480208E-05 0.5258068152 0.9243222950E-05 0.5281541671 0.9415435664E-05 0.5305015190 0.9585956395E-05 0.5328488708 0.9754623499E-05 0.5351962227 0.9921275872E-05 0.5375435745 0.1008575317E-04 0.5398909264 0.1024789604E-04 0.5422382782 0.1040754633E-04 0.5445856301 0.1056454732E-04 0.5469329819 0.1071874395E-04 0.5492803338 0.1086998303E-04 0.5516276856 0.1101811346E-04 0.5539750375 0.1116298647E-04 0.5563223893 0.1130445577E-04 0.5586697412 0.1144237785E-04 0.5610170931 0.1157661212E-04 0.5633644449 0.1170702113E-04 0.5657117968 0.1183347081E-04 0.5680591486 0.1195583060E-04 0.5704065005 0.1210518257E-04 0.5727538523 0.1231086209E-04 0.5751012042 0.1251025233E-04 0.5774485560 0.1270292131E-04 0.5797959079 0.1288844979E-04 0.5821432597 0.1306643229E-04 0.5844906116 0.1323647824E-04 0.5868379634 0.1339821298E-04 0.5891853153 0.1355127878E-04 0.5915326672 0.1369533590E-04 0.5938800190 0.1383006352E-04 0.5962273709 0.1395516064E-04 0.5985747227 0.1407034697E-04 0.6009220746 0.1417536375E-04 0.6032694264 0.1426997448E-04 0.6056167783 0.1435396564E-04 0.6079641301 0.1442714731E-04 0.6103114820 0.1448935374E-04 0.6126588338 0.1454044383E-04 0.6150061857 0.1458030155E-04 0.6173535375 0.1460883630E-04 0.6197008894 0.1462598317E-04 0.6220482413 0.1463170313E-04 0.6243952716 0.1462861917E-04 0.6267423020 0.1461937145E-04 0.6290893324 0.1460397251E-04 0.6314363628 0.1458244320E-04 0.6337833932 0.1455481262E-04 0.6361304236 0.1452111806E-04 0.6384774540 0.1448140486E-04 0.6408244844 0.1443572632E-04 0.6431715148 0.1438414353E-04 0.6455185452 0.1432672520E-04 0.6478655756 0.1426354753E-04 0.6502126060 0.1419469399E-04 0.6525596364 0.1412025514E-04 0.6549066668 0.1404032840E-04 0.6572536971 0.1395501786E-04 0.6596007275 0.1386443406E-04 0.6619477579 0.1376869373E-04 0.6642947883 0.1366791954E-04 0.6666418187 0.1356223991E-04 0.6689888491 0.1345178868E-04 0.6713358795 0.1333670490E-04 0.6736829099 0.1321879162E-04 0.6760299403 0.1320189733E-04 0.6783769707 0.1318437245E-04 0.6807240011 0.1316623210E-04 0.6830710315 0.1314749192E-04 0.6854180619 0.1312816804E-04 0.6877650922 0.1310827708E-04 0.6901121226 0.1308783611E-04 0.6924591530 0.1306686267E-04 0.6948061834 0.1304537471E-04 0.6971532138 0.1302339057E-04 0.6995002442 0.1300092900E-04 0.7018472746 0.1297800910E-04 0.7041943050 0.1295465031E-04 0.7065413354 0.1293087239E-04 0.7088883658 0.1290669539E-04 0.7112353962 0.1288213962E-04 0.7135824266 0.1285722567E-04 0.7159294570 0.1283197430E-04 0.7182764874 0.1280640648E-04 0.7206235177 0.1278054335E-04 0.7229705481 0.1275440619E-04 0.7253175785 0.1272801635E-04 0.7276646089 0.1270139530E-04 0.7300116393 0.1267456452E-04 0.7323586697 0.1264754553E-04 0.7347057001 0.1262035981E-04 0.7370527305 0.1259302881E-04 0.7393997609 0.1256557387E-04 0.7417467913 0.1253801624E-04 0.7440938217 0.1251037700E-04 0.7464408521 0.1248267705E-04 0.7487878825 0.1245493705E-04 0.7511349128 0.1242717742E-04 0.7534819432 0.1239941828E-04 0.7558289736 0.1237167941E-04 0.7581760040 0.1234398023E-04 0.7605230344 0.1231633973E-04 0.7628700648 0.1228877648E-04 0.7652170952 0.1226130856E-04 0.7675641256 0.1223395354E-04 0.7699111560 0.1220672842E-04 0.7722581864 0.1217964961E-04 0.7746052168 0.1215273291E-04 0.7769522472 0.1212599344E-04 0.7792992776 0.1209944563E-04 0.7816463080 0.1207310320E-04 0.7839933383 0.1204697908E-04 0.7863403687 0.1202108543E-04 0.7886873991 0.1199543361E-04 0.7910344295 0.1189568151E-04 0.7933814599 0.1156447450E-04 0.7957284903 0.1123892271E-04 0.7980755207 0.1091913098E-04 0.8004225511 0.1060519360E-04 0.8027695815 0.1029719442E-04 0.8051166119 0.9995206997E-05 0.8074636423 0.9699294802E-05 0.8098106727 0.9409511393E-05 0.8121577031 0.9125900631E-05 0.8145047335 0.8848496906E-05 0.8168517638 0.8577325374E-05 0.8191987942 0.8312402212E-05 0.8215458246 0.8053734879E-05 0.8238928550 0.7801322395E-05 0.8262398854 0.7555155623E-05 0.8285869158 0.7315217565E-05 0.8309339462 0.7081483669E-05 0.8332809766 0.6853922132E-05 0.8356280070 0.6632494220E-05 0.8379750374 0.6417154589E-05 0.8403220678 0.6207851607E-05 0.8426690982 0.6004527688E-05 0.8450161286 0.5807119613E-05 0.8473631589 0.5615558870E-05 0.8497101893 0.5429771980E-05 0.8520572197 0.5249680829E-05 0.8544042501 0.5075202997E-05 0.8567512805 0.4906252084E-05 0.8590983109 0.4742738033E-05 0.8614453413 0.4584567450E-05 0.8637923717 0.4431643915E-05 0.8661394021 0.4283868294E-05 0.8684864325 0.4141139041E-05 0.8708334629 0.4003352491E-05 0.8731804933 0.3870403149E-05 0.8755275237 0.3742183969E-05 0.8778745541 0.3618586629E-05 0.8802215844 0.3499501789E-05 0.8825686148 0.3384819346E-05 0.8849156452 0.3274428677E-05 0.8872626756 0.3168218872E-05 0.8896097060 0.3066078959E-05 0.8919567364 0.2967898113E-05 0.8943037668 0.2873565862E-05 0.8966507972 0.2782972272E-05 0.8989978276 0.2696008136E-05 0.9013448580 0.2612565136E-05 0.9036918884 0.2532536005E-05 0.9060389188 0.2455814672E-05 0.9083859492 0.2382296405E-05 0.9107329796 0.2311877933E-05 0.9130800099 0.2244457561E-05 0.9154270403 0.2179935281E-05 0.9177740707 0.2118212867E-05 0.9201211011 0.2059193959E-05 0.9224681315 0.2002784143E-05 0.9248151619 0.1948891017E-05 0.9271621923 0.1897424254E-05 0.9295092227 0.1848295650E-05 0.9318562531 0.1801419166E-05 0.9342032835 0.1756710965E-05 0.9365503139 0.1714089439E-05 0.9388973443 0.1673475226E-05 0.9412443747 0.1634791227E-05 0.9435914050 0.1597962605E-05 0.9459384354 0.1562916791E-05 0.9482854658 0.1529583474E-05 0.9506324962 0.1497894585E-05 0.9529795266 0.1467784282E-05 0.9553265570 0.1439188923E-05 0.9576735874 0.1412047032E-05 0.9600206178 0.1386299271E-05 0.9623676482 0.1361888393E-05 0.9647146786 0.1338759198E-05 0.9670617090 0.1316858486E-05 0.9694087394 0.1296135002E-05 0.9717557698 0.1283922547E-05 0.9741028002 0.1285932192E-05 0.9764498305 0.1288446993E-05 0.9787968609 0.1291443806E-05 0.9811438913 0.1294899514E-05 0.9834909217 0.1298791003E-05 0.9858379521 0.1303095142E-05 0.9881849825 0.1307788764E-05 0.9905320129 0.1312848657E-05 0.9928790433 0.1318251549E-05 0.9952260737 0.1323974107E-05 0.9975731041 0.1329992928E-05 0.9999201345 0.1336284550E-05 1.002267165 0.1342825445E-05 1.004614195 0.1349592038E-05 1.006961226 0.1356560710E-05 1.009308256 0.1363707819E-05 1.011655286 0.1371009712E-05 1.014002317 0.1378442752E-05 1.016349347 0.1385983338E-05 1.018696378 0.1393607930E-05 1.021043408 0.1401293084E-05 1.023390438 0.1409015476E-05 1.025737469 0.1416751943E-05 1.028084499 0.1424479511E-05 1.030431530 0.1432175441E-05 1.032778560 0.1439817258E-05 1.035125590 0.1447382802E-05 1.037472621 0.1454850262E-05 1.039819651 0.1462198219E-05 1.042166682 0.1469405696E-05 1.044513712 0.1476452192E-05 1.046860742 0.1483317735E-05 1.049207773 0.1489982920E-05 1.051554803 0.1496428954E-05 1.053901834 0.1502637702E-05 1.056248864 0.1508591728E-05 1.058595894 0.1514274337E-05 1.060942925 0.1519669614E-05 1.063289955 0.1524762467E-05 1.065636985 0.1529538663E-05 1.067984016 0.1533984865E-05 1.070331046 0.1538088665E-05 1.072678077 0.1541838619E-05 1.075025107 0.1545224273E-05 1.077372137 0.1548236196E-05 1.079719168 0.1550866002E-05 1.082066198 0.1553106371E-05 1.084413229 0.1554951074E-05 1.086760259 0.1556394986E-05 1.089107289 0.1557434098E-05 1.091454320 0.1558065536E-05 1.093801350 0.1558287560E-05 1.096152861 0.1557552778E-05 1.098504372 0.1555377929E-05 1.100855883 0.1551791010E-05 1.103207394 0.1546843722E-05 1.105558905 0.1540621365E-05 1.107910415 0.1533263027E-05 1.110261926 0.1525003891E-05 1.112613437 0.1516268278E-05 1.114964948 0.1507880051E-05 1.117316459 0.1501494597E-05 1.119667970 0.1500024983E-05 1.122019481 0.1506386641E-05 1.124370992 0.1520595076E-05 1.126722503 0.1540589381E-05 1.129074013 0.1564694886E-05 1.131425524 0.1592025248E-05 1.133777035 0.1622152638E-05 1.136128546 0.1654873285E-05 1.138480057 0.1690094417E-05 1.140831568 0.1727781627E-05 1.143183079 0.1767933355E-05 1.145534590 0.1810567761E-05 1.147886101 0.1855715573E-05 1.150237611 0.1903415965E-05 1.152589122 0.1953714045E-05 1.154940633 0.2006659258E-05 1.157292144 0.2062304303E-05 1.159643655 0.2120704367E-05 1.161995166 0.2181916554E-05 1.164346677 0.2245999435E-05 1.166698188 0.2313012673E-05 1.169049699 0.2383016694E-05 1.171401209 0.2456072395E-05 1.173752720 0.2532240857E-05 1.176104231 0.2611583075E-05 1.178455742 0.2694159679E-05 1.180807253 0.2780030647E-05 1.183158764 0.2869255012E-05 1.185510275 0.2961890533E-05 1.187861786 0.3057993352E-05 1.190213296 0.3157617601E-05 1.192564807 0.3260814967E-05 1.194916318 0.3367634186E-05 1.197267829 0.3478120456E-05 1.199619340 0.3592314736E-05 1.201970851 0.3710252896E-05 1.204322362 0.3831964657E-05 1.206673873 0.3957472253E-05 1.209025384 0.4086788693E-05 1.211376894 0.4219915438E-05 1.213728405 0.4356839235E-05 1.216079916 0.4497527638E-05 1.218431427 0.4641922503E-05 1.220782938 0.4789930159E-05 1.223134449 0.4941406002E-05 1.225485960 0.5096129234E-05 1.227837471 0.5253759377E-05 1.230188982 0.5413757153E-05 1.232540492 0.5575231448E-05 1.234892003 0.5736623257E-05 1.237243514 0.5895013068E-05 1.239595025 0.6044578106E-05 1.241946536 0.6173705538E-05 1.244298047 0.6264038837E-05 1.246649558 0.6303953600E-05 1.249001069 0.6303871370E-05 1.251352580 0.6281525044E-05 1.253704090 0.6248265556E-05 1.256055601 0.6209781078E-05 1.258407112 0.6168907900E-05 1.260758623 0.6127151160E-05 1.263110134 0.6085369005E-05 1.265461645 0.6044084120E-05 1.267813156 0.6003633765E-05 1.270164667 0.5964246649E-05 1.272516177 0.5926084633E-05 1.274867688 0.5889266515E-05 1.277219199 0.5853882185E-05 1.279570710 0.5820001342E-05 1.281922221 0.5787678999E-05 1.284273732 0.5756959002E-05 1.286625243 0.5727876256E-05 1.288976754 0.5700458065E-05 1.291328265 0.5674724810E-05 1.293679775 0.5650690082E-05 1.296031286 0.5628360323E-05 1.298382797 0.5607733944E-05 1.300734308 0.5588799873E-05 1.303085819 0.5571535380E-05 1.305437330 0.5555902985E-05 1.307788841 0.5541846151E-05 1.310140352 0.5529283310E-05 1.312491863 0.5518099606E-05 1.314843373 0.5508135485E-05 1.317194884 0.5499170893E-05 1.319546395 0.5490903497E-05 1.321897906 0.5482918931E-05 1.324249417 0.5474651058E-05 1.326600928 0.5465331391E-05 1.328952439 0.5453930891E-05 1.331303950 0.5439107805E-05 1.333655461 0.5419195656E-05 1.336006971 0.5392293514E-05 1.338358482 0.5356530107E-05 1.340709993 0.5310506471E-05 1.343061504 0.5253755469E-05 1.345413015 0.5186934628E-05 1.347764526 0.5111607227E-05 1.350116037 0.5081141462E-05 1.352467548 0.5152626505E-05 1.354819059 0.5224258421E-05 1.357170569 0.5295997387E-05 1.359522080 0.5367802837E-05 1.361873591 0.5439633549E-05 1.364225102 0.5511447730E-05 1.366576613 0.5583203119E-05 1.368928124 0.5654857089E-05 1.371279635 0.5726366766E-05 1.373631146 0.5797689156E-05 1.375982656 0.5868781276E-05 1.378334167 0.5939600312E-05 1.380685678 0.6010103771E-05 1.383037189 0.6080249660E-05 1.385388700 0.6149996675E-05 1.387740211 0.6219304403E-05 1.390091722 0.6288133551E-05 1.392443233 0.6356446183E-05 1.394794744 0.6424205990E-05 1.397146254 0.6491378579E-05 1.399497765 0.6557931785E-05 1.401849276 0.6623836029E-05 1.404200787 0.6689064693E-05 1.406552298 0.6753594551E-05 1.408903809 0.6817406237E-05 1.411255320 0.6880484768E-05 1.413606831 0.6942820133E-05 1.415958342 0.7004407945E-05 1.418309852 0.7065250184E-05 1.420661363 0.7125356031E-05 1.423012874 0.7184742820E-05 1.425364385 0.7243437120E-05 1.427715896 0.7301475976E-05 1.430067407 0.7358908339E-05 1.432418918 0.7415796716E-05 1.434770429 0.7472219083E-05 1.437121940 0.7528271123E-05 1.439473450 0.7584068830E-05 1.441824961 0.7639751581E-05 1.444176472 0.7695485752E-05 1.446527983 0.7751468986E-05 1.448879494 0.7807935272E-05 1.451231005 0.7865160972E-05 1.453582516 0.7923472006E-05 1.455934027 0.7983252429E-05 1.458285537 0.8044954663E-05 1.460637048 0.8109111704E-05 1.462988559 0.8176351635E-05 1.465340070 0.8247414826E-05 1.467691581 0.8323174139E-05 1.470043092 0.8404658407E-05 1.472394603 0.8493079251E-05 1.474746114 0.8589860938E-05 1.477097625 0.8696672359E-05 1.479449135 0.8815459252E-05 1.481800646 0.8948473406E-05 1.484152157 0.9098293828E-05 1.486503668 0.9267832860E-05 1.488855179 0.9460318713E-05 1.491206690 0.9679245658E-05 1.493558201 0.9928285629E-05 1.495909712 0.1021116125E-04 1.498261223 0.1053149006E-04 1.500612733 0.1089262049E-04 1.502964244 0.1129748737E-04 1.505315755 0.1174851399E-04 1.507667266 0.1224757747E-04 1.510018777 0.1279603824E-04 1.512370288 0.1339481986E-04 1.514721799 0.1404451700E-04 1.517073310 0.1474550926E-04 1.519424821 0.1549806439E-04 1.521776331 0.1630242182E-04 1.524127842 0.1715885401E-04 1.526479353 0.1806770751E-04 1.528830864 0.1902942746E-04 1.531182375 0.2004456983E-04 1.533533886 0.2111380517E-04 1.535885397 0.2223791695E-04 1.538236908 0.2341779668E-04 1.540588418 0.2465443732E-04 1.542939929 0.2594892605E-04 1.545291440 0.2730243694E-04 1.547642951 0.2821496113E-04 1.549994462 0.2794424034E-04 1.552345973 0.2766222343E-04 1.554697484 0.2736963273E-04 1.557048995 0.2706713012E-04 1.559400506 0.2675532812E-04 1.561752016 0.2643479874E-04 1.564103527 0.2610608052E-04 1.566455038 0.2576968422E-04 1.568806549 0.2542609746E-04 1.571158060 0.2507578831E-04 1.573509571 0.2471920835E-04 1.575861082 0.2435679500E-04 1.578212593 0.2398897347E-04 1.580564104 0.2361615829E-04 1.582915614 0.2323875455E-04 1.585267125 0.2285715885E-04 1.587618636 0.2247176010E-04 1.589970147 0.2208294007E-04 1.592321658 0.2169107386E-04 1.594673169 0.2129653023E-04 1.597024680 0.2089967181E-04 1.599376191 0.2050085527E-04 1.601727702 0.2010043140E-04 1.604079212 0.1969874512E-04 1.606430723 0.1929613549E-04 1.608782234 0.1889293561E-04 1.611133745 0.1848947261E-04 1.613485256 0.1808606744E-04 1.615836767 0.1768303484E-04 1.618188278 0.1728068313E-04 1.620539789 0.1687931408E-04 1.622891299 0.1647922278E-04 1.625242810 0.1608069740E-04 1.627594321 0.1568401910E-04 1.629945832 0.1528946183E-04 1.632297343 0.1489729214E-04 1.634648854 0.1450776907E-04 1.637000365 0.1412114396E-04 1.639351876 0.1373766029E-04 1.641703387 0.1335755357E-04 1.644054897 0.1298105117E-04 1.646406408 0.1260837222E-04 1.648757919 0.1223972747E-04 1.651109430 0.1187531919E-04 1.653460941 0.1151534110E-04 1.655812452 0.1115997823E-04 1.658163963 0.1080940688E-04 1.660515474 0.1046379458E-04 1.662866985 0.1012329997E-04 1.665218495 0.9788072841E-05 1.667570006 0.9458254039E-05 1.669921517 0.9133975494E-05 1.672273028 0.8815360202E-05 1.674624539 0.8502522234E-05 1.676976050 0.8195566758E-05 1.679327561 0.7894590075E-05 1.681679072 0.7599679660E-05 1.684030583 0.7310914223E-05 1.686382093 0.7028363772E-05 1.688733604 0.6752089697E-05 1.691085115 0.6482144856E-05 1.693436626 0.6218573677E-05 1.695788137 0.5961412273E-05 1.698139648 0.5710688556E-05 1.700491159 0.5466422373E-05 1.702842670 0.5228625646E-05 1.705194180 0.4997302517E-05 1.707545691 0.4772449510E-05 1.709897202 0.4554055696E-05 1.712248713 0.4342102865E-05 1.714600224 0.4136565709E-05 1.716951735 0.3937412011E-05 1.719303246 0.3744602837E-05 1.721654757 0.3558092738E-05 1.724006268 0.3377829960E-05 1.726357778 0.3203756650E-05 1.728709289 0.3035809078E-05 1.731060800 0.2873917856E-05 1.733412311 0.2718008164E-05 1.735763822 0.2567999976E-05 1.738115333 0.2423808296E-05 1.740466844 0.2285343390E-05 1.742818355 0.2152511023E-05 1.745169866 0.2025212697E-05 1.747521376 0.1903345891E-05 1.749872887 0.1786804300E-05 1.752224398 0.1675478080E-05 1.754575909 0.1569254084E-05 1.756927420 0.1468016104E-05 1.759278931 0.1371645112E-05 1.761630442 0.1280019497E-05 1.763981953 0.1193015299E-05 1.766333464 0.1110506450E-05 1.768684974 0.1032364999E-05 1.771036485 0.9584613432E-06 1.773387996 0.8886644578E-06 1.775739507 0.8228421146E-06 1.778091018 0.7608611047E-06 1.780442529 0.7025874543E-06 1.782794040 0.6478866391E-06 1.785145551 0.5966237964E-06 1.787497061 0.5486639349E-06 1.789848572 0.5038721452E-06 1.792200083 0.4621138108E-06 1.794551594 0.4232548220E-06 1.796903105 0.3871617951E-06 1.799254616 0.3537023000E-06 1.801606127 0.3227450976E-06 1.803957638 0.2941603904E-06 1.806309149 0.2678200894E-06 1.808660659 0.2435980973E-06 1.811012170 0.2213706098E-06 1.813363681 0.2010164337E-06 1.815715192 0.1824173180E-06 1.818066703 0.1654582943E-06 1.820418214 0.1500280190E-06 1.822769725 0.1360191113E-06 1.825121236 0.1233284814E-06 1.827472747 0.1118576569E-06 1.829824257 0.1015131562E-06 1.832175768 0.9220718771E-07 1.834527279 0.8386098269E-07 1.836878790 0.7654344668E-07 1.839230301 0.7918222675E-07 1.841581812 0.8316848762E-07 1.843933323 0.8700826579E-07 1.846284834 0.9066963281E-07 1.848636345 0.9412851573E-07 1.850987855 0.9736311698E-07 1.853339366 0.1003533045E-06 1.855690877 0.1030805556E-06 1.858042388 0.1055280123E-06 1.860393899 0.1076805619E-06 1.862745410 0.1095249200E-06 1.865096921 0.1110497074E-06 1.867448432 0.1122455181E-06 1.869799942 0.1131049762E-06 1.872151453 0.1136227806E-06 1.874502964 0.1137957376E-06 1.876849995 0.1137411921E-06 1.879197025 0.1135777134E-06 1.881544055 0.1133057739E-06 1.883891086 0.1129261587E-06 1.886238116 0.1124399625E-06 1.888585147 0.1118485851E-06 1.890932177 0.1111537253E-06 1.893279207 0.1103573742E-06 1.895626238 0.1094618068E-06 1.897973268 0.1084695728E-06 1.900320299 0.1073834859E-06 1.902667329 0.1062066123E-06 1.905014359 0.1049422586E-06 1.907361390 0.1035939575E-06 1.909708420 0.1021654541E-06 1.912055451 0.1006606905E-06 1.914402481 0.9908378993E-07 1.916749511 0.9743903995E-07 1.919096542 0.9573087564E-07 1.921443572 0.9774541904E-07 1.923790603 0.1178220637E-06 1.926137633 0.1407678266E-06 1.928484663 0.1668208050E-06 1.930831694 0.1962233762E-06 1.933178724 0.2292213978E-06 1.935525754 0.2660633924E-06 1.937872785 0.3069997219E-06 1.940219815 0.3522817526E-06 1.942566846 0.4021610145E-06 1.944913876 0.4568883563E-06 1.947260906 0.5167131005E-06 1.949607937 0.5818821987E-06 1.951954967 0.6526393926E-06 1.954301998 0.7292243806E-06 1.956649028 0.8118719940E-06 1.958996058 0.9008113860E-06 1.961343089 0.9962652331E-06 1.963690119 0.1098448955E-05 1.966037150 0.1207569954E-05 1.968384180 0.1323826872E-05 1.970731210 0.1447408876E-05 1.973078241 0.1578494966E-05 1.975425271 0.1717253313E-05 1.977772302 0.1863840624E-05 1.980119332 0.2018401540E-05 1.982466362 0.2181068070E-05 1.984813393 0.2351959054E-05 1.987160423 0.2531179668E-05 1.989507454 0.2718820964E-05 1.991854484 0.2914959451E-05 1.994201514 0.3119656715E-05 1.996548545 0.3332959079E-05 1.998895575 0.3554897310E-05 2.001242605 0.3785486365E-05 2.003589636 0.4024725181E-05 2.005936666 0.4272596511E-05 2.008283697 0.4529066807E-05 2.010630727 0.4794086136E-05 2.012977757 0.5067588157E-05 2.015324788 0.5349490135E-05 2.017671818 0.5639692994E-05 2.020018849 0.5938081425E-05 2.022365879 0.6244524032E-05 2.024712909 0.6558873521E-05 2.027059940 0.6880966935E-05 2.029406970 0.7210625925E-05 2.031754001 0.7547657068E-05 2.034101031 0.7891852221E-05 2.036448061 0.8242988915E-05 2.038795092 0.8600830783E-05 2.041142122 0.8965128029E-05 2.043489153 0.9335617928E-05 2.045836183 0.9712025357E-05 2.048183213 0.1009406336E-04 2.050530244 0.1048143375E-04 2.052877274 0.1087382771E-04 2.055224304 0.1127092646E-04 2.057571335 0.1167240192E-04 2.059918365 0.1207791738E-04 2.062265396 0.1248712826E-04 2.064612426 0.1289968278E-04 2.066959456 0.1331522275E-04 2.069306487 0.1373338430E-04 2.071653517 0.1415379866E-04 2.074000548 0.1457609292E-04 2.076347578 0.1499989083E-04 2.078694608 0.1542481358E-04 2.081041639 0.1585048059E-04 2.083388669 0.1627651028E-04 2.085735700 0.1670252089E-04 2.088082730 0.1712813122E-04 2.090429760 0.1755296146E-04 2.092776791 0.1797663391E-04 2.095123821 0.1839877372E-04 2.097470852 0.1881900972E-04 2.099817882 0.1923697504E-04 2.102164912 0.1965230790E-04 2.104511943 0.2006465229E-04 2.106858973 0.2047365861E-04 2.109206004 0.2087898435E-04 2.111553034 0.2128029474E-04 2.113900064 0.2167726331E-04 2.116247095 0.2206957252E-04 2.118594125 0.2245691428E-04 2.120941155 0.2283899047E-04 2.123288186 0.2321551349E-04 2.125635216 0.2358620667E-04 2.127982247 0.2395080472E-04 2.130329277 0.2430905417E-04 2.132676307 0.2466071369E-04 2.135023338 0.2500555448E-04 2.137370368 0.2534336054E-04 2.139717399 0.2567392897E-04 2.142064429 0.2599707017E-04 2.144411459 0.2631260810E-04 2.146758490 0.2662038042E-04 2.149105520 0.2692023864E-04 2.151452551 0.2721204820E-04 2.153799581 0.2749568857E-04 2.156146611 0.2777105329E-04 2.158493642 0.2803804995E-04 2.160840672 0.2829660019E-04 2.163187703 0.2854663963E-04 2.165534733 0.2878811780E-04 2.167881763 0.2902099798E-04 2.170228794 0.2924525710E-04 2.172575824 0.2946088555E-04 2.174922855 0.2966788697E-04 2.177269885 0.2986627803E-04 2.179616915 0.3005608820E-04 2.181963946 0.3023735941E-04 2.184310976 0.3041014582E-04 2.186658006 0.3057451349E-04 2.189005037 0.3073054000E-04 2.191352067 0.3087831411E-04 2.193699098 0.3101793543E-04 2.196046128 0.3114951394E-04 2.198393158 0.3127316968E-04 2.200740189 0.3138903226E-04 2.203087219 0.3149724045E-04 2.205434250 0.3159794175E-04 2.207781280 0.3169129192E-04 2.210128310 0.3177745453E-04 2.212475341 0.3185660050E-04 2.214822371 0.3192890761E-04 2.217169402 0.3199456005E-04 2.219516432 0.3205374792E-04 2.221863462 0.3210666675E-04 2.224210493 0.3215351705E-04 2.226557523 0.3219450377E-04 2.228904554 0.3222983591E-04 2.231251584 0.3225972597E-04 2.233598614 0.3228438950E-04 2.235945645 0.3230404465E-04 2.238292675 0.3231891172E-04 2.240639706 0.3232921266E-04 2.242986736 0.3233517066E-04 2.245333766 0.3233700974E-04 2.247680797 0.3233495424E-04 2.250027827 0.3232922848E-04 2.252374857 0.3232005632E-04 2.254721888 0.3230766078E-04 2.257068918 0.3229226361E-04 2.259415949 0.3227408496E-04 2.261762979 0.3225334302E-04 2.264110009 0.3223025363E-04 2.266457040 0.3220502999E-04 2.268804070 0.3217788230E-04 2.271151101 0.3214901746E-04 2.273498131 0.3211863877E-04 2.275845161 0.3208694568E-04 2.278192192 0.3205413344E-04 2.280539222 0.3202039292E-04 2.282886253 0.3198591032E-04 2.285233283 0.3195086695E-04 2.287580313 0.3191543901E-04 2.289927344 0.3187979738E-04 2.292274374 0.3184410744E-04 2.294621405 0.3180852884E-04 2.296968435 0.3177321542E-04 2.299315465 0.3173831495E-04 2.301662496 0.3170396908E-04 2.304009526 0.3167031312E-04 2.306356557 0.3163747601E-04 2.308703587 0.3160558013E-04 2.311050617 0.3157474127E-04 2.313397648 0.3154506855E-04 2.315744678 0.3151666434E-04 2.318091708 0.3148962425E-04 2.320438739 0.3146403715E-04 2.322785769 0.3143998523E-04 2.325132800 0.3141754419E-04 2.327479830 0.3139678353E-04 2.329826860 0.3137776725E-04 2.332173891 0.3136055516E-04 2.334520921 0.3134520566E-04 2.336867952 0.3133178244E-04 2.339214982 0.3132037219E-04 2.341562012 0.3131114039E-04 2.343909043 0.3130453697E-04 2.346256073 0.3130188653E-04 0.000000000 0.8592837553E-03 0.2347351854E-02 0.8591246041E-03 0.4694703708E-02 0.8586473029E-03 0.7042055561E-02 0.8578523091E-03 0.9389407415E-02 0.8567403846E-03 0.1173675927E-01 0.8553125942E-03 0.1408411112E-01 0.8535703046E-03 0.1643146298E-01 0.8515151824E-03 0.1877881483E-01 0.8491491917E-03 0.2112616668E-01 0.8464745915E-03 0.2347351854E-01 0.8434939324E-03 0.2582087039E-01 0.8402100535E-03 0.2816822225E-01 0.8366260781E-03 0.3051557410E-01 0.8327454096E-03 0.3286292595E-01 0.8285717267E-03 0.3521027781E-01 0.8241089786E-03 0.3755762966E-01 0.8193613794E-03 0.3990498151E-01 0.8143334024E-03 0.4225233337E-01 0.8090297740E-03 0.4459968522E-01 0.8034554674E-03 0.4694703708E-01 0.7976156954E-03 0.4929438893E-01 0.7915159040E-03 0.5164174078E-01 0.7851617646E-03 0.5398909264E-01 0.7785591663E-03 0.5633644449E-01 0.7717142082E-03 0.5868379634E-01 0.7646331911E-03 0.6103114820E-01 0.7573226090E-03 0.6337850005E-01 0.7497891407E-03 0.6572585191E-01 0.7420396403E-03 0.6807320376E-01 0.7340811289E-03 0.7042055561E-01 0.7259207845E-03 0.7276790747E-01 0.7175659331E-03 0.7511525932E-01 0.7090240389E-03 0.7746261117E-01 0.7003026944E-03 0.7980996303E-01 0.6914096106E-03 0.8215731488E-01 0.6823526070E-03 0.8450466674E-01 0.6731396014E-03 0.8685201859E-01 0.6637785997E-03 0.8919937044E-01 0.6542776857E-03 0.9154672230E-01 0.6446450109E-03 0.9389407415E-01 0.6348887836E-03 0.9624142601E-01 0.6250172595E-03 0.9858877786E-01 0.6150387302E-03 0.1009361297 0.6049615139E-03 0.1032834816 0.5947939444E-03 0.1056308334 0.5845443610E-03 0.1079781853 0.5742210985E-03 0.1103255371 0.5638324769E-03 0.1126728890 0.5533867914E-03 0.1150202408 0.5428923024E-03 0.1173675927 0.5323572260E-03 0.1197149445 0.5217897241E-03 0.1220622964 0.5111978949E-03 0.1244096483 0.5005897637E-03 0.1267570001 0.4899732738E-03 0.1291043520 0.4793562773E-03 0.1314517038 0.4687465267E-03 0.1337990557 0.4581516662E-03 0.1361464075 0.4475792233E-03 0.1384937594 0.4370366010E-03 0.1408411112 0.4265310701E-03 0.1431884631 0.4160697611E-03 0.1455358149 0.4056596577E-03 0.1478831668 0.3953075895E-03 0.1502305186 0.3850202250E-03 0.1525778705 0.3748040661E-03 0.1549252223 0.3646654411E-03 0.1572725742 0.3546104996E-03 0.1596199261 0.3446452068E-03 0.1619672779 0.3347753387E-03 0.1643146298 0.3250064769E-03 0.1666619816 0.3153440046E-03 0.1690093335 0.3057931025E-03 0.1713566853 0.2963587447E-03 0.1737040372 0.2870456958E-03 0.1760513890 0.2778585076E-03 0.1783987409 0.2688015167E-03 0.1807460927 0.2598788417E-03 0.1830934446 0.2510943819E-03 0.1854407964 0.2424518151E-03 0.1877881483 0.2339545969E-03 0.1901355002 0.2256059592E-03 0.1924828520 0.2174089102E-03 0.1948302039 0.2093662339E-03 0.1971775557 0.2014804905E-03 0.1995249076 0.1937540166E-03 0.2018722594 0.1861889260E-03 0.2042196113 0.1787871114E-03 0.2065669631 0.1715502452E-03 0.2089143150 0.1644797818E-03 0.2112616668 0.1575769595E-03 0.2136090187 0.1508428031E-03 0.2159563705 0.1442781265E-03 0.2183037224 0.1378835359E-03 0.2206510743 0.1316594330E-03 0.2229984261 0.1256060187E-03 0.2253457780 0.1197232972E-03 0.2276931298 0.1140110800E-03 0.2300404817 0.1084689904E-03 0.2323878335 0.1030964683E-03 0.2347351854 0.9789277541E-04 0.2370825372 0.9285700026E-04 0.2394298891 0.8798806400E-04 0.2417772409 0.8328472624E-04 0.2441245928 0.7874559125E-04 0.2464719446 0.7436911444E-04 0.2488192965 0.7015360930E-04 0.2511666484 0.6609725463E-04 0.2535140002 0.6219810235E-04 0.2558613521 0.5845408576E-04 0.2582087039 0.5486302857E-04 0.2605560558 0.5142265474E-04 0.2629034076 0.4813059947E-04 0.2652507595 0.4498442162E-04 0.2675981113 0.4198161811E-04 0.2699454632 0.3911964100E-04 0.2722928150 0.3639591847E-04 0.2746401669 0.3380788106E-04 0.2769875187 0.3135299591E-04 0.2793348706 0.2902881272E-04 0.2816822225 0.2697417751E-04 0.2840295743 0.2714667240E-04 0.2863769262 0.2729309122E-04 0.2887242780 0.2740778425E-04 0.2910716299 0.2748202203E-04 0.2934189817 0.2750174604E-04 0.2957663336 0.2744362070E-04 0.2981136854 0.2726904794E-04 0.3004610373 0.2691986877E-04 0.3028083891 0.2633230677E-04 0.3051557410 0.2548547548E-04 0.3075030928 0.2443436990E-04 0.3098504447 0.2326857433E-04 0.3121977966 0.2206085157E-04 0.3145451484 0.2085609135E-04 0.3168925003 0.1967937627E-04 0.3192398521 0.1854430745E-04 0.3215872040 0.1745811822E-04 0.3239345558 0.1642447854E-04 0.3262819077 0.1544501940E-04 0.3286292595 0.1452018456E-04 0.3309766114 0.1364972696E-04 0.3333239632 0.1283301259E-04 0.3356713151 0.1206921649E-04 0.3380186669 0.1172709332E-04 0.3403660188 0.1190267665E-04 0.3427133707 0.1208296336E-04 0.3450607225 0.1226743652E-04 0.3474080744 0.1245568946E-04 0.3497554262 0.1264739677E-04 0.3521027781 0.1284229374E-04 0.3544501299 0.1304016155E-04 0.3567974818 0.1324081646E-04 0.3591448336 0.1344410176E-04 0.3614921855 0.1364988173E-04 0.3638395373 0.1385803704E-04 0.3661868892 0.1406846120E-04 0.3685342410 0.1428105781E-04 0.3708815929 0.1449573842E-04 0.3732289448 0.1471242078E-04 0.3755762966 0.1493102750E-04 0.3779236485 0.1515148495E-04 0.3802710003 0.1537372238E-04 0.3826183522 0.1559767118E-04 0.3849657040 0.1582326430E-04 0.3873130559 0.1605043580E-04 0.3896604077 0.1627912039E-04 0.3920077596 0.1650925315E-04 0.3943551114 0.1674076926E-04 0.3967024633 0.1697360375E-04 0.3990498151 0.1720769132E-04 0.4013971670 0.1744296623E-04 0.4037445189 0.1767936210E-04 0.4060918707 0.1791681190E-04 0.4084392226 0.1815524777E-04 0.4107865744 0.1839460104E-04 0.4131339263 0.1863480212E-04 0.4154812781 0.1887578049E-04 0.4178286300 0.1911746468E-04 0.4201759818 0.1889278932E-04 0.4225233337 0.1849111169E-04 0.4248706855 0.1808868010E-04 0.4272180374 0.1768590717E-04 0.4295653892 0.1728319988E-04 0.4319127411 0.1688095898E-04 0.4342600929 0.1647957841E-04 0.4366074448 0.1607944481E-04 0.4389547967 0.1568093697E-04 0.4413021485 0.1528442546E-04 0.4436495004 0.1489027213E-04 0.4459968522 0.1449882987E-04 0.4483442041 0.1411044223E-04 0.4506915559 0.1372544326E-04 0.4530389078 0.1334415739E-04 0.4553862596 0.1296689934E-04 0.4577336115 0.1259397428E-04 0.4600809633 0.1222567806E-04 0.4624283152 0.1186229767E-04 0.4647756670 0.1150411196E-04 0.4671230189 0.1115139271E-04 0.4694703708 0.1080440621E-04 0.4718177226 0.1046341547E-04 0.4741650745 0.1012868341E-04 0.4765124263 0.9800477510E-05 0.4788597782 0.9479076543E-05 0.4812071300 0.9164780592E-05 0.4835544819 0.8857926336E-05 0.4859018337 0.8558910901E-05 0.4882491856 0.8737502752E-05 0.4905965374 0.8974482005E-05 0.4929438893 0.9212346209E-05 0.4952912411 0.9450909758E-05 0.4976385930 0.9689983789E-05 0.4999859449 0.9929376413E-05 0.5023332967 0.1016889294E-04 0.5046806486 0.1040833609E-04 0.5070280004 0.1064750629E-04 0.5093753523 0.1088620186E-04 0.5117227041 0.1112421928E-04 0.5140700560 0.1136135347E-04 0.5164174078 0.1159739802E-04 0.5187647597 0.1183214546E-04 0.5211121115 0.1206538755E-04 0.5234594634 0.1229691551E-04 0.5258068152 0.1252652032E-04 0.5281541671 0.1275399299E-04 0.5305015190 0.1297912483E-04 0.5328488708 0.1320170774E-04 0.5351962227 0.1342153449E-04 0.5375435745 0.1363839895E-04 0.5398909264 0.1385209645E-04 0.5422382782 0.1406242400E-04 0.5445856301 0.1426918059E-04 0.5469329819 0.1447216745E-04 0.5492803338 0.1467118836E-04 0.5516276856 0.1486604986E-04 0.5539750375 0.1505656158E-04 0.5563223893 0.1524253648E-04 0.5586697412 0.1542379111E-04 0.5610170931 0.1560014588E-04 0.5633644449 0.1577142527E-04 0.5657117968 0.1593745816E-04 0.5680591486 0.1609807799E-04 0.5704065005 0.1625312305E-04 0.5727538523 0.1640243668E-04 0.5751012042 0.1654586752E-04 0.5774485560 0.1668326971E-04 0.5797959079 0.1681450309E-04 0.5821432597 0.1693943342E-04 0.5844906116 0.1705793259E-04 0.5868379634 0.1716987874E-04 0.5891853153 0.1727515652E-04 0.5915326672 0.1737365718E-04 0.5938800190 0.1746527881E-04 0.5962273709 0.1754992640E-04 0.5985747227 0.1762751203E-04 0.6009220746 0.1769795501E-04 0.6032694264 0.1776118194E-04 0.6056167783 0.1781712689E-04 0.6079641301 0.1786573144E-04 0.6103114820 0.1790694478E-04 0.6126588338 0.1794072380E-04 0.6150061857 0.1796703314E-04 0.6173535375 0.1798584525E-04 0.6197008894 0.1799714040E-04 0.6220482413 0.1800090677E-04 0.6243952716 0.1800353441E-04 0.6267423020 0.1800701360E-04 0.6290893324 0.1801134178E-04 0.6314363628 0.1801651656E-04 0.6337833932 0.1802253573E-04 0.6361304236 0.1802939732E-04 0.6384774540 0.1803709956E-04 0.6408244844 0.1804564101E-04 0.6431715148 0.1805502051E-04 0.6455185452 0.1806523727E-04 0.6478655756 0.1807629088E-04 0.6502126060 0.1808818135E-04 0.6525596364 0.1810090912E-04 0.6549066668 0.1811447509E-04 0.6572536971 0.1812888063E-04 0.6596007275 0.1814412761E-04 0.6619477579 0.1816021837E-04 0.6642947883 0.1817715575E-04 0.6666418187 0.1819494309E-04 0.6689888491 0.1821358419E-04 0.6713358795 0.1823308336E-04 0.6736829099 0.1825344536E-04 0.6760299403 0.1827467540E-04 0.6783769707 0.1829677913E-04 0.6807240011 0.1831976265E-04 0.6830710315 0.1834363246E-04 0.6854180619 0.1836839545E-04 0.6877650922 0.1839405892E-04 0.6901121226 0.1842063051E-04 0.6924591530 0.1844811822E-04 0.6948061834 0.1847653041E-04 0.6971532138 0.1850587574E-04 0.6995002442 0.1853616317E-04 0.7018472746 0.1856740199E-04 0.7041943050 0.1859960172E-04 0.7065413354 0.1863277217E-04 0.7088883658 0.1866692339E-04 0.7112353962 0.1870206568E-04 0.7135824266 0.1873820952E-04 0.7159294570 0.1877536562E-04 0.7182764874 0.1881354487E-04 0.7206235177 0.1885275833E-04 0.7229705481 0.1889301721E-04 0.7253175785 0.1893433286E-04 0.7276646089 0.1897671677E-04 0.7300116393 0.1902018050E-04 0.7323586697 0.1906473574E-04 0.7347057001 0.1911039424E-04 0.7370527305 0.1915716778E-04 0.7393997609 0.1920506822E-04 0.7417467913 0.1925410740E-04 0.7440938217 0.1930429720E-04 0.7464408521 0.1904437573E-04 0.7487878825 0.1864002159E-04 0.7511349128 0.1823729199E-04 0.7534819432 0.1783649012E-04 0.7558289736 0.1743791021E-04 0.7581760040 0.1704183726E-04 0.7605230344 0.1664854674E-04 0.7628700648 0.1625830433E-04 0.7652170952 0.1587136569E-04 0.7675641256 0.1548797626E-04 0.7699111560 0.1510837106E-04 0.7722581864 0.1473277455E-04 0.7746052168 0.1436140049E-04 0.7769522472 0.1399445183E-04 0.7792992776 0.1363212063E-04 0.7816463080 0.1327458802E-04 0.7839933383 0.1292202413E-04 0.7863403687 0.1257458812E-04 0.7886873991 0.1223242817E-04 0.7910344295 0.1197003409E-04 0.7933814599 0.1194489653E-04 0.7957284903 0.1192002967E-04 0.7980755207 0.1189544135E-04 0.8004225511 0.1187113848E-04 0.8027695815 0.1184712706E-04 0.8051166119 0.1182341212E-04 0.8074636423 0.1179999775E-04 0.8098106727 0.1177688709E-04 0.8121577031 0.1175408232E-04 0.8145047335 0.1173158467E-04 0.8168517638 0.1170939444E-04 0.8191987942 0.1168751099E-04 0.8215458246 0.1166593277E-04 0.8238928550 0.1164465734E-04 0.8262398854 0.1162368141E-04 0.8285869158 0.1160300082E-04 0.8309339462 0.1158261064E-04 0.8332809766 0.1156250513E-04 0.8356280070 0.1154267784E-04 0.8379750374 0.1152312165E-04 0.8403220678 0.1150382875E-04 0.8426690982 0.1148479079E-04 0.8450161286 0.1146599885E-04 0.8473631589 0.1144744353E-04 0.8497101893 0.1142911499E-04 0.8520572197 0.1141100303E-04 0.8544042501 0.1139309714E-04 0.8567512805 0.1137538656E-04 0.8590983109 0.1135786032E-04 0.8614453413 0.1134050733E-04 0.8637923717 0.1132331645E-04 0.8661394021 0.1130627652E-04 0.8684864325 0.1128937642E-04 0.8708334629 0.1127260515E-04 0.8731804933 0.1125595190E-04 0.8755275237 0.1123940604E-04 0.8778745541 0.1122295726E-04 0.8802215844 0.1120659554E-04 0.8825686148 0.1119031127E-04 0.8849156452 0.1117409522E-04 0.8872626756 0.1115793864E-04 0.8896097060 0.1114183327E-04 0.8919567364 0.1112577139E-04 0.8943037668 0.1110974583E-04 0.8966507972 0.1109374999E-04 0.8989978276 0.1107777792E-04 0.9013448580 0.1106182426E-04 0.9036918884 0.1104588431E-04 0.9060389188 0.1102995401E-04 0.9083859492 0.1101402998E-04 0.9107329796 0.1099810949E-04 0.9130800099 0.1098219048E-04 0.9154270403 0.1096627154E-04 0.9177740707 0.1095035193E-04 0.9201211011 0.1093443154E-04 0.9224681315 0.1091851090E-04 0.9248151619 0.1090259116E-04 0.9271621923 0.1088667405E-04 0.9295092227 0.1087076191E-04 0.9318562531 0.1085485762E-04 0.9342032835 0.1083896459E-04 0.9365503139 0.1082308673E-04 0.9388973443 0.1080722847E-04 0.9412443747 0.1079139466E-04 0.9435914050 0.1077559059E-04 0.9459384354 0.1075982193E-04 0.9482854658 0.1074409473E-04 0.9506324962 0.1072841539E-04 0.9529795266 0.1071279059E-04 0.9553265570 0.1069722730E-04 0.9576735874 0.1068173273E-04 0.9600206178 0.1066631431E-04 0.9623676482 0.1065097966E-04 0.9647146786 0.1063573656E-04 0.9670617090 0.1062059290E-04 0.9694087394 0.1060555670E-04 0.9717557698 0.1059063605E-04 0.9741028002 0.1057583909E-04 0.9764498305 0.1056117399E-04 0.9787968609 0.1054664892E-04 0.9811438913 0.1053227206E-04 0.9834909217 0.1051805152E-04 0.9858379521 0.1050399539E-04 0.9881849825 0.1049011166E-04 0.9905320129 0.1047640825E-04 0.9928790433 0.1046289296E-04 0.9952260737 0.1044957349E-04 0.9975731041 0.1043645739E-04 0.9999201345 0.1042355209E-04 1.002267165 0.1041086486E-04 1.004614195 0.1039840279E-04 1.006961226 0.1038617283E-04 1.009308256 0.1037418173E-04 1.011655286 0.1036243606E-04 1.014002317 0.1035094221E-04 1.016349347 0.1033970639E-04 1.018696378 0.1032873457E-04 1.021043408 0.1031803258E-04 1.023390438 0.1030760601E-04 1.025737469 0.1029746025E-04 1.028084499 0.1028760052E-04 1.030431530 0.1027803181E-04 1.032778560 0.1026875892E-04 1.035125590 0.1025978644E-04 1.037472621 0.1025111880E-04 1.039819651 0.1024276018E-04 1.042166682 0.1023471462E-04 1.044513712 0.1022698593E-04 1.046860742 0.1021957776E-04 1.049207773 0.1021249355E-04 1.051554803 0.1020573659E-04 1.053901834 0.1019930998E-04 1.056248864 0.1019321662E-04 1.058595894 0.1018745929E-04 1.060942925 0.1018204056E-04 1.063289955 0.1017696285E-04 1.065636985 0.1017222842E-04 1.067984016 0.1016783939E-04 1.070331046 0.1016379768E-04 1.072678077 0.1016010512E-04 1.075025107 0.1015676333E-04 1.077372137 0.1015377382E-04 1.079719168 0.1015113795E-04 1.082066198 0.1014885694E-04 1.084413229 0.1014693185E-04 1.086760259 0.1014536363E-04 1.089107289 0.1014415306E-04 1.091454320 0.1014330081E-04 1.093801350 0.1014280740E-04 1.096152861 0.1014150214E-04 1.098504372 0.1013720881E-04 1.100855883 0.1012993508E-04 1.103207394 0.1011969381E-04 1.105558905 0.1010650300E-04 1.107910415 0.1009038577E-04 1.110261926 0.1007137028E-04 1.112613437 0.1004948963E-04 1.114964948 0.1002478178E-04 1.117316459 0.9997289427E-05 1.119667970 0.9967059879E-05 1.122019481 0.9934144922E-05 1.124370992 0.9898600665E-05 1.126722503 0.9860487378E-05 1.129074013 0.9819869320E-05 1.131425524 0.9776814558E-05 1.133777035 0.9731394772E-05 1.136128546 0.9683685058E-05 1.138480057 0.9633763719E-05 1.140831568 0.9581712057E-05 1.143183079 0.9527614149E-05 1.145534590 0.9471556632E-05 1.147886101 0.9413628471E-05 1.150237611 0.9353920738E-05 1.152589122 0.9292526381E-05 1.154940633 0.9229539999E-05 1.157292144 0.9165057614E-05 1.159643655 0.9099176449E-05 1.161995166 0.9031994707E-05 1.164346677 0.8963611358E-05 1.166698188 0.8894125930E-05 1.169049699 0.8823638311E-05 1.171401209 0.8752248554E-05 1.173752720 0.8680056701E-05 1.176104231 0.8607162615E-05 1.178455742 0.8533665827E-05 1.180807253 0.8459665407E-05 1.183158764 0.8385259848E-05 1.185510275 0.8310546981E-05 1.187861786 0.8235623917E-05 1.190213296 0.8160587031E-05 1.192564807 0.8085531987E-05 1.194916318 0.8010553825E-05 1.197267829 0.7935747117E-05 1.199619340 0.7861206231E-05 1.201970851 0.7787025717E-05 1.204322362 0.7713300876E-05 1.206673873 0.7640128579E-05 1.209025384 0.7567608446E-05 1.211376894 0.7495844541E-05 1.213728405 0.7424947869E-05 1.216079916 0.7355040067E-05 1.218431427 0.7286259046E-05 1.220782938 0.7218767797E-05 1.223134449 0.7152768616E-05 1.225485960 0.7088526964E-05 1.227837471 0.7026413275E-05 1.230188982 0.6966980047E-05 1.232540492 0.6911112406E-05 1.234892003 0.6860341097E-05 1.237243514 0.6817531296E-05 1.239595025 0.6788420577E-05 1.241946536 0.6784499624E-05 1.244298047 0.6823958087E-05 1.246649558 0.6918198714E-05 1.249001069 0.7056510433E-05 1.251352580 0.7220785769E-05 1.253704090 0.7399191448E-05 1.256055601 0.7585419028E-05 1.258407112 0.7775833792E-05 1.260758623 0.7967900444E-05 1.263110134 0.8159428108E-05 1.265461645 0.8348166793E-05 1.267813156 0.8531542311E-05 1.270164667 0.8706446084E-05 1.272516177 0.8869062962E-05 1.274867688 0.9014773318E-05 1.277219199 0.9138224832E-05 1.279570710 0.9233718499E-05 1.281922221 0.9296021433E-05 1.284273732 0.9321508188E-05 1.286625243 0.9309186316E-05 1.288976754 0.9261019546E-05 1.291328265 0.9181333091E-05 1.293679775 0.9075679857E-05 1.296031286 0.8949760285E-05 1.298382797 0.8808736474E-05 1.300734308 0.8656951315E-05 1.303085819 0.8497911326E-05 1.305437330 0.8334393293E-05 1.307788841 0.8168587192E-05 1.310140352 0.8002234010E-05 1.312491863 0.7836744404E-05 1.314843373 0.7673297182E-05 1.317194884 0.7512921791E-05 1.319546395 0.7356570538E-05 1.321897906 0.7205186373E-05 1.324249417 0.7059771371E-05 1.326600928 0.6921459203E-05 1.328952439 0.6791590144E-05 1.331303950 0.6671776299E-05 1.333655461 0.6563923886E-05 1.336006971 0.6470151156E-05 1.338358482 0.6392530882E-05 1.340709993 0.6332653114E-05 1.343061504 0.6291170111E-05 1.345413015 0.6267607213E-05 1.347764526 0.6260584828E-05 1.350116037 0.6268291510E-05 1.352467548 0.6288924906E-05 1.354819059 0.6320948502E-05 1.357170569 0.6363175620E-05 1.359522080 0.6414753744E-05 1.361873591 0.6475110409E-05 1.364225102 0.6543893723E-05 1.366576613 0.6620920494E-05 1.368928124 0.6706134925E-05 1.371279635 0.6799576878E-05 1.373631146 0.6901357744E-05 1.375982656 0.7011641944E-05 1.378334167 0.7130632547E-05 1.380685678 0.7258559876E-05 1.383037189 0.7395672305E-05 1.385388700 0.7542228745E-05 1.387740211 0.7698492462E-05 1.390091722 0.7864726022E-05 1.392443233 0.8041187215E-05 1.394794744 0.8228125858E-05 1.397146254 0.8425781420E-05 1.399497765 0.8634381370E-05 1.401849276 0.8854140199E-05 1.404200787 0.9085259025E-05 1.406552298 0.9327925684E-05 1.408903809 0.9582315229E-05 1.411255320 0.9848590727E-05 1.413606831 0.1012690427E-04 1.415958342 0.1041739812E-04 1.418309852 0.1072020587E-04 1.420661363 0.1103545357E-04 1.423012874 0.1136326084E-04 1.425364385 0.1170374172E-04 1.427715896 0.1205700541E-04 1.430067407 0.1242315675E-04 1.432418918 0.1280229638E-04 1.434770429 0.1319452067E-04 1.437121940 0.1359992117E-04 1.439473450 0.1401858368E-04 1.441824961 0.1445058684E-04 1.444176472 0.1489600010E-04 1.446527983 0.1535488092E-04 1.448879494 0.1582727121E-04 1.451231005 0.1631319265E-04 1.453582516 0.1681264069E-04 1.455934027 0.1732557690E-04 1.458285537 0.1785191926E-04 1.460637048 0.1839152976E-04 1.462988559 0.1894419864E-04 1.465340070 0.1950962428E-04 1.467691581 0.2008738740E-04 1.470043092 0.2067691805E-04 1.472394603 0.2127745329E-04 1.474746114 0.2188798276E-04 1.477097625 0.2250717929E-04 1.479449135 0.2313331060E-04 1.481800646 0.2376412881E-04 1.484152157 0.2439673552E-04 1.486503668 0.2502742384E-04 1.488855179 0.2565150739E-04 1.491206690 0.2626316211E-04 1.493558201 0.2685533259E-04 1.495909712 0.2741978796E-04 1.498261223 0.2794743813E-04 1.500612733 0.2842900470E-04 1.502964244 0.2885603745E-04 1.505315755 0.2922207595E-04 1.507667266 0.2952357982E-04 1.510018777 0.2976026294E-04 1.512370288 0.2993472291E-04 1.514721799 0.3005158091E-04 1.517073310 0.3011649810E-04 1.519424821 0.3013535775E-04 1.521776331 0.3011372926E-04 1.524127842 0.3005659395E-04 1.526479353 0.2996825633E-04 1.528830864 0.2985236325E-04 1.531182375 0.2971197441E-04 1.533533886 0.2954964969E-04 1.535885397 0.2936753518E-04 1.538236908 0.2916743991E-04 1.540588418 0.2895090088E-04 1.542939929 0.2871923639E-04 1.545291440 0.2847358923E-04 1.547642951 0.2871622390E-04 1.549994462 0.3019161410E-04 1.552345973 0.3173000189E-04 1.554697484 0.3333284330E-04 1.557048995 0.3500165094E-04 1.559400506 0.3673798940E-04 1.561752016 0.3854347104E-04 1.564103527 0.4041975203E-04 1.566455038 0.4236852871E-04 1.568806549 0.4439153409E-04 1.571158060 0.4649053457E-04 1.573509571 0.4866732670E-04 1.575861082 0.5092373408E-04 1.578212593 0.5326160426E-04 1.580564104 0.5568280566E-04 1.582915614 0.5818922446E-04 1.585267125 0.6078276152E-04 1.587618636 0.6346532921E-04 1.589970147 0.6623884814E-04 1.592321658 0.6910524389E-04 1.594673169 0.7206644362E-04 1.597024680 0.7512437258E-04 1.599376191 0.7828095051E-04 1.601727702 0.8153808798E-04 1.604079212 0.8489768258E-04 1.606430723 0.8836161502E-04 1.608782234 0.9193174508E-04 1.611133745 0.9560990751E-04 1.613485256 0.9939790779E-04 1.615836767 0.1032975177E-03 1.618188278 0.1073104710E-03 1.620539789 0.1114384585E-03 1.622891299 0.1156831240E-03 1.625242810 0.1200460589E-03 1.627594321 0.1245287976E-03 1.629945832 0.1291328126E-03 1.632297343 0.1338595094E-03 1.634648854 0.1387102212E-03 1.637000365 0.1436862041E-03 1.639351876 0.1487886317E-03 1.641703387 0.1540185896E-03 1.644054897 0.1593770706E-03 1.646406408 0.1648649687E-03 1.648757919 0.1704830744E-03 1.651109430 0.1762320690E-03 1.653460941 0.1821125192E-03 1.655812452 0.1881248721E-03 1.658163963 0.1942694495E-03 1.660515474 0.2005464430E-03 1.662866985 0.2069559087E-03 1.665218495 0.2134977621E-03 1.667570006 0.2201717730E-03 1.669921517 0.2269775608E-03 1.672273028 0.2339145895E-03 1.674624539 0.2409821632E-03 1.676976050 0.2481794218E-03 1.679327561 0.2555053360E-03 1.681679072 0.2629587039E-03 1.684030583 0.2705381467E-03 1.686382093 0.2782421049E-03 1.688733604 0.2860688352E-03 1.691085115 0.2940164066E-03 1.693436626 0.3020826979E-03 1.695788137 0.3102653949E-03 1.698139648 0.3185619878E-03 1.700491159 0.3269697691E-03 1.702842670 0.3354858318E-03 1.705194180 0.3441070682E-03 1.707545691 0.3528301682E-03 1.709897202 0.3616516188E-03 1.712248713 0.3705677039E-03 1.714600224 0.3795745038E-03 1.716951735 0.3886678959E-03 1.719303246 0.3978435551E-03 1.721654757 0.4070969554E-03 1.724006268 0.4164233708E-03 1.726357778 0.4258178779E-03 1.728709289 0.4352753581E-03 1.731060800 0.4447905002E-03 1.733412311 0.4543578039E-03 1.735763822 0.4639715833E-03 1.738115333 0.4736259713E-03 1.740466844 0.4833149240E-03 1.742818355 0.4930322256E-03 1.745169866 0.5027714942E-03 1.747521376 0.5125261872E-03 1.749872887 0.5222896079E-03 1.752224398 0.5320549124E-03 1.754575909 0.5418151164E-03 1.756927420 0.5515631026E-03 1.759278931 0.5612916294E-03 1.761630442 0.5709933385E-03 1.763981953 0.5806607638E-03 1.766333464 0.5902863408E-03 1.768684974 0.5998624156E-03 1.771036485 0.6093812548E-03 1.773387996 0.6188350559E-03 1.775739507 0.6282159572E-03 1.778091018 0.6375160486E-03 1.780442529 0.6467273828E-03 1.782794040 0.6558419862E-03 1.785145551 0.6648518703E-03 1.787497061 0.6737490434E-03 1.789848572 0.6825255223E-03 1.792200083 0.6911733443E-03 1.794551594 0.6996845791E-03 1.796903105 0.7080513410E-03 1.799254616 0.7162658012E-03 1.801606127 0.7243202000E-03 1.803957638 0.7322068590E-03 1.806309149 0.7399181937E-03 1.808660659 0.7474467253E-03 1.811012170 0.7547850934E-03 1.813363681 0.7619260677E-03 1.815715192 0.7688625602E-03 1.818066703 0.7755876369E-03 1.820418214 0.7820945296E-03 1.822769725 0.7883766477E-03 1.825121236 0.7944275886E-03 1.827472747 0.8002411496E-03 1.829824257 0.8058113380E-03 1.832175768 0.8111323821E-03 1.834527279 0.8161987407E-03 1.836878790 0.8210051132E-03 1.839230301 0.8255464487E-03 1.841581812 0.8298179554E-03 1.843933323 0.8338151087E-03 1.846284834 0.8375336593E-03 1.848636345 0.8409696412E-03 1.850987855 0.8441193784E-03 1.853339366 0.8469794919E-03 1.855690877 0.8495469055E-03 1.858042388 0.8518188516E-03 1.860393899 0.8537928761E-03 1.862745410 0.8554668430E-03 1.865096921 0.8568389382E-03 1.867448432 0.8579076727E-03 1.869799942 0.8586718857E-03 1.872151453 0.8591307463E-03 1.874502964 0.8592837553E-03 1.876849995 0.8591794219E-03 1.879197025 0.8588665400E-03 1.881544055 0.8583454635E-03 1.883891086 0.8576167820E-03 1.886238116 0.8566813193E-03 1.888585147 0.8555401318E-03 1.890932177 0.8541945068E-03 1.893279207 0.8526459601E-03 1.895626238 0.8508962329E-03 1.897973268 0.8489472890E-03 1.900320299 0.8468013109E-03 1.902667329 0.8444606960E-03 1.905014359 0.8419280522E-03 1.907361390 0.8392061931E-03 1.909708420 0.8362981326E-03 1.912055451 0.8332070801E-03 1.914402481 0.8299364343E-03 1.916749511 0.8264897772E-03 1.919096542 0.8228708674E-03 1.921443572 0.8190836342E-03 1.923790603 0.8151321697E-03 1.926137633 0.8110207225E-03 1.928484663 0.8067536896E-03 1.930831694 0.8023356092E-03 1.933178724 0.7977711525E-03 1.935525754 0.7930651162E-03 1.937872785 0.7882224139E-03 1.940219815 0.7832480682E-03 1.942566846 0.7781472017E-03 1.944913876 0.7729250295E-03 1.947260906 0.7675868497E-03 1.949607937 0.7621380352E-03 1.951954967 0.7565840252E-03 1.954301998 0.7509303163E-03 1.956649028 0.7451824539E-03 1.958996058 0.7393460239E-03 1.961343089 0.7334266437E-03 1.963690119 0.7274299539E-03 1.966037150 0.7213616101E-03 1.968384180 0.7152272742E-03 1.970731210 0.7090326068E-03 1.973078241 0.7027832585E-03 1.975425271 0.6964848626E-03 1.977772302 0.6901430271E-03 1.980119332 0.6837633270E-03 1.982466362 0.6773512978E-03 1.984813393 0.6709124273E-03 1.987160423 0.6644521497E-03 1.989507454 0.6579758384E-03 1.991854484 0.6514887997E-03 1.994201514 0.6449962670E-03 1.996548545 0.6385033948E-03 1.998895575 0.6320152529E-03 2.001242605 0.6255368214E-03 2.003589636 0.6190729858E-03 2.005936666 0.6126285321E-03 2.008283697 0.6062081424E-03 2.010630727 0.5998163911E-03 2.012977757 0.5934577410E-03 2.015324788 0.5871365396E-03 2.017671818 0.5808570164E-03 2.020018849 0.5746232799E-03 2.022365879 0.5684393147E-03 2.024712909 0.5623089800E-03 2.027059940 0.5562360072E-03 2.029406970 0.5502239982E-03 2.031754001 0.5442764244E-03 2.034101031 0.5383966256E-03 2.036448061 0.5325878090E-03 2.038795092 0.5268530490E-03 2.041142122 0.5211952869E-03 2.043489153 0.5156173308E-03 2.045836183 0.5101218561E-03 2.048183213 0.5047114059E-03 2.050530244 0.4993883917E-03 2.052877274 0.4941550945E-03 2.055224304 0.4890136660E-03 2.057571335 0.4839661297E-03 2.059918365 0.4790143828E-03 2.062265396 0.4741601976E-03 2.064612426 0.4694052236E-03 2.066959456 0.4647509894E-03 2.069306487 0.4601989049E-03 2.071653517 0.4557502634E-03 2.074000548 0.4514062442E-03 2.076347578 0.4471679149E-03 2.078694608 0.4430362339E-03 2.081041639 0.4390120533E-03 2.083388669 0.4350961211E-03 2.085735700 0.4312890842E-03 2.088082730 0.4275914909E-03 2.090429760 0.4240037939E-03 2.092776791 0.4205263530E-03 2.095123821 0.4171594376E-03 2.097470852 0.4139032294E-03 2.099817882 0.4107578256E-03 2.102164912 0.4077232410E-03 2.104511943 0.4047994108E-03 2.106858973 0.4019861933E-03 2.109206004 0.3992833721E-03 2.111553034 0.3966906588E-03 2.113900064 0.3942076952E-03 2.116247095 0.3918340556E-03 2.118594125 0.3895692490E-03 2.120941155 0.3874127212E-03 2.123288186 0.3853638568E-03 2.125635216 0.3834219808E-03 2.127982247 0.3815863611E-03 2.130329277 0.3798562092E-03 2.132676307 0.3782306828E-03 2.135023338 0.3767088866E-03 2.137370368 0.3752898738E-03 2.139717399 0.3739726476E-03 2.142064429 0.3727561621E-03 2.144411459 0.3716393234E-03 2.146758490 0.3706209909E-03 2.149105520 0.3696999777E-03 2.151452551 0.3688750517E-03 2.153799581 0.3681449361E-03 2.156146611 0.3675083101E-03 2.158493642 0.3669638097E-03 2.160840672 0.3665100277E-03 2.163187703 0.3661455142E-03 2.165534733 0.3658687774E-03 2.167881763 0.3656782835E-03 2.170228794 0.3655724568E-03 2.172575824 0.3655496803E-03 2.174922855 0.3656082960E-03 2.177269885 0.3657466044E-03 2.179616915 0.3659628655E-03 2.181963946 0.3662552982E-03 2.184310976 0.3666220811E-03 2.186658006 0.3670613524E-03 2.189005037 0.3675712100E-03 2.191352067 0.3681497120E-03 2.193699098 0.3687948767E-03 2.196046128 0.3695046830E-03 2.198393158 0.3702770712E-03 2.200740189 0.3711099427E-03 2.203087219 0.3720011609E-03 2.205434250 0.3729485520E-03 2.207781280 0.3739499053E-03 2.210128310 0.3750029739E-03 2.212475341 0.3761054759E-03 2.214822371 0.3772550952E-03 2.217169402 0.3784494824E-03 2.219516432 0.3796862561E-03 2.221863462 0.3809630040E-03 2.224210493 0.3822772847E-03 2.226557523 0.3836266287E-03 2.228904554 0.3850085404E-03 2.231251584 0.3864204995E-03 2.233598614 0.3878599631E-03 2.235945645 0.3893243679E-03 2.238292675 0.3908111316E-03 2.240639706 0.3923176561E-03 2.242986736 0.3938413288E-03 2.245333766 0.3953795261E-03 2.247680797 0.3969296152E-03 2.250027827 0.3984889573E-03 2.252374857 0.4000549100E-03 2.254721888 0.4016248307E-03 2.257068918 0.4031960789E-03 2.259415949 0.4047660203E-03 2.261762979 0.4063320289E-03 2.264110009 0.4078914910E-03 2.266457040 0.4094418086E-03 2.268804070 0.4109804020E-03 2.271151101 0.4125047142E-03 2.273498131 0.4140122140E-03 2.275845161 0.4155003994E-03 2.278192192 0.4169668015E-03 2.280539222 0.4184089878E-03 2.282886253 0.4198245663E-03 2.285233283 0.4212111885E-03 2.287580313 0.4225665534E-03 2.289927344 0.4238884113E-03 2.292274374 0.4251745666E-03 2.294621405 0.4264228823E-03 2.296968435 0.4276312828E-03 2.299315465 0.4287977575E-03 2.301662496 0.4299203643E-03 2.304009526 0.4309972328E-03 2.306356557 0.4320265674E-03 2.308703587 0.4330066504E-03 2.311050617 0.4339358453E-03 2.313397648 0.4348125992E-03 2.315744678 0.4356354459E-03 2.318091708 0.4364030082E-03 2.320438739 0.4371140008E-03 2.322785769 0.4377672322E-03 2.325132800 0.4383616070E-03 2.327479830 0.4388961281E-03 2.329826860 0.4393698982E-03 2.332173891 0.4397821216E-03 2.334520921 0.4401321058E-03 2.336867952 0.4404192626E-03 2.339214982 0.4406431091E-03 2.341562012 0.4408032690E-03 2.343909043 0.4408994728E-03 2.346256073 0.4409315587E-03 0.000000000 0.8592837555E-03 0.2347351854E-02 0.8591346080E-03 0.4694703708E-02 0.8586873050E-03 0.7042055561E-02 0.8579422646E-03 0.9389407415E-02 0.8569001828E-03 0.1173675927E-01 0.8555620328E-03 0.1408411112E-01 0.8539290635E-03 0.1643146298E-01 0.8520027980E-03 0.1877881483E-01 0.8497850311E-03 0.2112616668E-01 0.8472778272E-03 0.2347351854E-01 0.8444835173E-03 0.2582087039E-01 0.8414046958E-03 0.2816822225E-01 0.8380442169E-03 0.3051557410E-01 0.8344051910E-03 0.3286292595E-01 0.8304909798E-03 0.3521027781E-01 0.8263051924E-03 0.3755762966E-01 0.8218516799E-03 0.3990498151E-01 0.8171345305E-03 0.4225233337E-01 0.8121580634E-03 0.4459968522E-01 0.8069268235E-03 0.4694703708E-01 0.8014455751E-03 0.4929438893E-01 0.7957192950E-03 0.5164174078E-01 0.7897531666E-03 0.5398909264E-01 0.7835525720E-03 0.5633644449E-01 0.7771230855E-03 0.5868379634E-01 0.7704704658E-03 0.6103114820E-01 0.7636006481E-03 0.6337850005E-01 0.7565197368E-03 0.6572585191E-01 0.7492339967E-03 0.6807320376E-01 0.7417498452E-03 0.7042055561E-01 0.7340738434E-03 0.7276790747E-01 0.7262126881E-03 0.7511525932E-01 0.7181732022E-03 0.7746261117E-01 0.7099623264E-03 0.7980996303E-01 0.7015871102E-03 0.8215731488E-01 0.6930547021E-03 0.8450466674E-01 0.6843723412E-03 0.8685201859E-01 0.6755473476E-03 0.8919937044E-01 0.6665871127E-03 0.9154672230E-01 0.6574990905E-03 0.9389407415E-01 0.6482907877E-03 0.9624142601E-01 0.6389697544E-03 0.9858877786E-01 0.6295435746E-03 0.1009361297 0.6200198572E-03 0.1032834816 0.6104062260E-03 0.1056308334 0.6007103109E-03 0.1079781853 0.5909397384E-03 0.1103255371 0.5811021226E-03 0.1126728890 0.5712050558E-03 0.1150202408 0.5612560997E-03 0.1173675927 0.5512627768E-03 0.1197149445 0.5412325611E-03 0.1220622964 0.5311728700E-03 0.1244096483 0.5210910556E-03 0.1267570001 0.5109943965E-03 0.1291043520 0.5008900897E-03 0.1314517038 0.4907852428E-03 0.1337990557 0.4806868661E-03 0.1361464075 0.4706018656E-03 0.1384937594 0.4605370351E-03 0.1408411112 0.4504990497E-03 0.1431884631 0.4404944587E-03 0.1455358149 0.4305296794E-03 0.1478831668 0.4206109906E-03 0.1502305186 0.4107445269E-03 0.1525778705 0.4009362725E-03 0.1549252223 0.3911920563E-03 0.1572725742 0.3815175466E-03 0.1596199261 0.3719182462E-03 0.1619672779 0.3623994877E-03 0.1643146298 0.3529664299E-03 0.1666619816 0.3436240531E-03 0.1690093335 0.3343771561E-03 0.1713566853 0.3252303526E-03 0.1737040372 0.3161880684E-03 0.1760513890 0.3072545387E-03 0.1783987409 0.2984338055E-03 0.1807460927 0.2897297164E-03 0.1830934446 0.2811459219E-03 0.1854407964 0.2726858748E-03 0.1877881483 0.2643528290E-03 0.1901355002 0.2561498385E-03 0.1924828520 0.2480797573E-03 0.1948302039 0.2401452394E-03 0.1971775557 0.2323487387E-03 0.1995249076 0.2246925098E-03 0.2018722594 0.2171786087E-03 0.2042196113 0.2098088944E-03 0.2065669631 0.2025850295E-03 0.2089143150 0.1955084830E-03 0.2112616668 0.1885805313E-03 0.2136090187 0.1818022614E-03 0.2159563705 0.1751745729E-03 0.2183037224 0.1686981814E-03 0.2206510743 0.1623736210E-03 0.2229984261 0.1562012484E-03 0.2253457780 0.1501812462E-03 0.2276931298 0.1443136270E-03 0.2300404817 0.1385982375E-03 0.2323878335 0.1330347630E-03 0.2347351854 0.1276227326E-03 0.2370825372 0.1223615234E-03 0.2394298891 0.1172503669E-03 0.2417772409 0.1122883537E-03 0.2441245928 0.1074744403E-03 0.2464719446 0.1028074551E-03 0.2488192965 0.9828610544E-04 0.2511666484 0.9390898534E-04 0.2535140002 0.8967458335E-04 0.2558613521 0.8558129185E-04 0.2582087039 0.8162741729E-04 0.2605560558 0.7781119198E-04 0.2629034076 0.7413078802E-04 0.2652507595 0.7058433416E-04 0.2675981113 0.6716993679E-04 0.2699454632 0.6388570702E-04 0.2722928150 0.6072979668E-04 0.2746401669 0.5770044790E-04 0.2769875187 0.5479606389E-04 0.2793348706 0.5201531343E-04 0.2816822225 0.4935729088E-04 0.2840295743 0.4682177024E-04 0.2863769262 0.4440962354E-04 0.2887242780 0.4212353496E-04 0.2910716299 0.3996925894E-04 0.2934189817 0.3795787589E-04 0.2957663336 0.3610974655E-04 0.2981136854 0.3446050379E-04 0.3004610373 0.3306535750E-04 0.3028083891 0.3198515748E-04 0.3051557410 0.3123789264E-04 0.3075030928 0.3076570619E-04 0.3098504447 0.3047619473E-04 0.3121977966 0.3029382626E-04 0.3145451484 0.3017099942E-04 0.3168925003 0.3007998579E-04 0.3192398521 0.3000461332E-04 0.3215872040 0.2993516263E-04 0.3239345558 0.2986557399E-04 0.3262819077 0.2979193594E-04 0.3286292595 0.2971164853E-04 0.3309766114 0.2962294418E-04 0.3333239632 0.2952460338E-04 0.3356713151 0.2941577997E-04 0.3380186669 0.2929589050E-04 0.3403660188 0.2916454180E-04 0.3427133707 0.2902148255E-04 0.3450607225 0.2886656992E-04 0.3474080744 0.2869974607E-04 0.3497554262 0.2852102138E-04 0.3521027781 0.2833046201E-04 0.3544501299 0.2812818068E-04 0.3567974818 0.2791432962E-04 0.3591448336 0.2768909510E-04 0.3614921855 0.2745269303E-04 0.3638395373 0.2720536551E-04 0.3661868892 0.2694737788E-04 0.3685342410 0.2667901632E-04 0.3708815929 0.2640058577E-04 0.3732289448 0.2611240809E-04 0.3755762966 0.2581482048E-04 0.3779236485 0.2550817401E-04 0.3802710003 0.2519283230E-04 0.3826183522 0.2486917029E-04 0.3849657040 0.2453757311E-04 0.3873130559 0.2419843496E-04 0.3896604077 0.2385215808E-04 0.3920077596 0.2349915177E-04 0.3943551114 0.2313983140E-04 0.3967024633 0.2277461753E-04 0.3990498151 0.2240393493E-04 0.4013971670 0.2202821175E-04 0.4037445189 0.2164787865E-04 0.4060918707 0.2126336794E-04 0.4084392226 0.2087511276E-04 0.4107865744 0.2048354632E-04 0.4131339263 0.2008910103E-04 0.4154812781 0.1969220783E-04 0.4178286300 0.1929329537E-04 0.4201759818 0.1935978221E-04 0.4225233337 0.1960265962E-04 0.4248706855 0.1984602245E-04 0.4272180374 0.2008979523E-04 0.4295653892 0.2033390151E-04 0.4319127411 0.2057826387E-04 0.4342600929 0.2082280392E-04 0.4366074448 0.2106744232E-04 0.4389547967 0.2131209885E-04 0.4413021485 0.2155669236E-04 0.4436495004 0.2180114089E-04 0.4459968522 0.2204536161E-04 0.4483442041 0.2228927094E-04 0.4506915559 0.2253278453E-04 0.4530389078 0.2277581733E-04 0.4553862596 0.2301828364E-04 0.4577336115 0.2326009709E-04 0.4600809633 0.2350117079E-04 0.4624283152 0.2374141727E-04 0.4647756670 0.2398074861E-04 0.4671230189 0.2421907644E-04 0.4694703708 0.2445631201E-04 0.4718177226 0.2469236625E-04 0.4741650745 0.2492714979E-04 0.4765124263 0.2516057305E-04 0.4788597782 0.2539254628E-04 0.4812071300 0.2562297960E-04 0.4835544819 0.2585178308E-04 0.4859018337 0.2607886680E-04 0.4882491856 0.2630414087E-04 0.4905965374 0.2652751552E-04 0.4929438893 0.2674890114E-04 0.4952912411 0.2696820837E-04 0.4976385930 0.2718534811E-04 0.4999859449 0.2740023162E-04 0.5023332967 0.2761277056E-04 0.5046806486 0.2782287703E-04 0.5070280004 0.2803046369E-04 0.5093753523 0.2823544375E-04 0.5117227041 0.2843773106E-04 0.5140700560 0.2863724019E-04 0.5164174078 0.2883388644E-04 0.5187647597 0.2902758594E-04 0.5211121115 0.2921825568E-04 0.5234594634 0.2940581358E-04 0.5258068152 0.2959017858E-04 0.5281541671 0.2977127061E-04 0.5305015190 0.2994901073E-04 0.5328488708 0.3012332117E-04 0.5351962227 0.3029412533E-04 0.5375435745 0.3046134790E-04 0.5398909264 0.3062491489E-04 0.5422382782 0.3078475367E-04 0.5445856301 0.3094079302E-04 0.5469329819 0.3109296323E-04 0.5492803338 0.3124119607E-04 0.5516276856 0.3138542490E-04 0.5539750375 0.3152558469E-04 0.5563223893 0.3166161209E-04 0.5586697412 0.3179344545E-04 0.5610170931 0.3192102486E-04 0.5633644449 0.3204429222E-04 0.5657117968 0.3216319127E-04 0.5680591486 0.3227766762E-04 0.5704065005 0.3238766880E-04 0.5727538523 0.3249314429E-04 0.5751012042 0.3259404557E-04 0.5774485560 0.3269032613E-04 0.5797959079 0.3278194152E-04 0.5821432597 0.3286884939E-04 0.5844906116 0.3295100949E-04 0.5868379634 0.3302838373E-04 0.5891853153 0.3310093619E-04 0.5915326672 0.3316863315E-04 0.5938800190 0.3323144311E-04 0.5962273709 0.3328933681E-04 0.5985747227 0.3334228727E-04 0.6009220746 0.3339026978E-04 0.6032694264 0.3343326192E-04 0.6056167783 0.3347124363E-04 0.6079641301 0.3350419713E-04 0.6103114820 0.3353210701E-04 0.6126588338 0.3355496021E-04 0.6150061857 0.3357274604E-04 0.6173535375 0.3358545615E-04 0.6197008894 0.3359308460E-04 0.6220482413 0.3359562781E-04 0.6243952716 0.3358919914E-04 0.6267423020 0.3356912950E-04 0.6290893324 0.3353544346E-04 0.6314363628 0.3348818221E-04 0.6337833932 0.3342740353E-04 0.6361304236 0.3335318162E-04 0.6384774540 0.3326560700E-04 0.6408244844 0.3316478633E-04 0.6431715148 0.3305084218E-04 0.6455185452 0.3292391281E-04 0.6478655756 0.3278415189E-04 0.6502126060 0.3263172823E-04 0.6525596364 0.3246682542E-04 0.6549066668 0.3228964150E-04 0.6572536971 0.3210038857E-04 0.6596007275 0.3189929239E-04 0.6619477579 0.3168659197E-04 0.6642947883 0.3146253904E-04 0.6666418187 0.3122739769E-04 0.6689888491 0.3098144376E-04 0.6713358795 0.3072496440E-04 0.6736829099 0.3045825749E-04 0.6760299403 0.3018163111E-04 0.6783769707 0.2989540293E-04 0.6807240011 0.2959989970E-04 0.6830710315 0.2929545655E-04 0.6854180619 0.2898241647E-04 0.6877650922 0.2866112963E-04 0.6901121226 0.2833195278E-04 0.6924591530 0.2799524859E-04 0.6948061834 0.2765138503E-04 0.6971532138 0.2730073471E-04 0.6995002442 0.2694367422E-04 0.7018472746 0.2658058348E-04 0.7041943050 0.2621184511E-04 0.7065413354 0.2583784374E-04 0.7088883658 0.2545896541E-04 0.7112353962 0.2507559688E-04 0.7135824266 0.2468812503E-04 0.7159294570 0.2429693620E-04 0.7182764874 0.2390241560E-04 0.7206235177 0.2350494666E-04 0.7229705481 0.2310491048E-04 0.7253175785 0.2270268520E-04 0.7276646089 0.2229864545E-04 0.7300116393 0.2189316179E-04 0.7323586697 0.2148660014E-04 0.7347057001 0.2107932132E-04 0.7370527305 0.2067168048E-04 0.7393997609 0.2026402664E-04 0.7417467913 0.1985670223E-04 0.7440938217 0.1945004262E-04 0.7464408521 0.1935564944E-04 0.7487878825 0.1940817595E-04 0.7511349128 0.1946188846E-04 0.7534819432 0.1951679866E-04 0.7558289736 0.1957291812E-04 0.7581760040 0.1963025831E-04 0.7605230344 0.1968883054E-04 0.7628700648 0.1974864599E-04 0.7652170952 0.1980971564E-04 0.7675641256 0.1987205027E-04 0.7699111560 0.1993566043E-04 0.7722581864 0.2000055643E-04 0.7746052168 0.2006674830E-04 0.7769522472 0.2013424578E-04 0.7792992776 0.2020305828E-04 0.7816463080 0.2027319488E-04 0.7839933383 0.2034466427E-04 0.7863403687 0.2041747476E-04 0.7886873991 0.2049163424E-04 0.7910344295 0.2056715014E-04 0.7933814599 0.2064402943E-04 0.7957284903 0.2072227857E-04 0.7980755207 0.2080190351E-04 0.8004225511 0.2088290963E-04 0.8027695815 0.2096530175E-04 0.8051166119 0.2104908405E-04 0.8074636423 0.2113426011E-04 0.8098106727 0.2122083284E-04 0.8121577031 0.2130880445E-04 0.8145047335 0.2139817644E-04 0.8168517638 0.2148894957E-04 0.8191987942 0.2158112383E-04 0.8215458246 0.2167469840E-04 0.8238928550 0.2176967164E-04 0.8262398854 0.2186604107E-04 0.8285869158 0.2196380331E-04 0.8309339462 0.2206295408E-04 0.8332809766 0.2216348819E-04 0.8356280070 0.2226539946E-04 0.8379750374 0.2236868074E-04 0.8403220678 0.2247332388E-04 0.8426690982 0.2257931970E-04 0.8450161286 0.2268665794E-04 0.8473631589 0.2279532729E-04 0.8497101893 0.2290531532E-04 0.8520572197 0.2301660848E-04 0.8544042501 0.2312919210E-04 0.8567512805 0.2324305031E-04 0.8590983109 0.2335816608E-04 0.8614453413 0.2347452118E-04 0.8637923717 0.2359209616E-04 0.8661394021 0.2371087033E-04 0.8684864325 0.2383082176E-04 0.8708334629 0.2395192727E-04 0.8731804933 0.2407416237E-04 0.8755275237 0.2419750134E-04 0.8778745541 0.2432191712E-04 0.8802215844 0.2444738137E-04 0.8825686148 0.2457386444E-04 0.8849156452 0.2470133535E-04 0.8872626756 0.2482976184E-04 0.8896097060 0.2495911029E-04 0.8919567364 0.2508934578E-04 0.8943037668 0.2522043208E-04 0.8966507972 0.2535233161E-04 0.8989978276 0.2548500552E-04 0.9013448580 0.2561841363E-04 0.9036918884 0.2575251446E-04 0.9060389188 0.2588726526E-04 0.9083859492 0.2602262200E-04 0.9107329796 0.2615853937E-04 0.9130800099 0.2629497084E-04 0.9154270403 0.2643186863E-04 0.9177740707 0.2656918376E-04 0.9201211011 0.2670686605E-04 0.9224681315 0.2684486417E-04 0.9248151619 0.2698312563E-04 0.9271621923 0.2712159684E-04 0.9295092227 0.2726022311E-04 0.9318562531 0.2739894870E-04 0.9342032835 0.2753771684E-04 0.9365503139 0.2767646978E-04 0.9388973443 0.2781514881E-04 0.9412443747 0.2795369430E-04 0.9435914050 0.2809204574E-04 0.9459384354 0.2823014178E-04 0.9482854658 0.2836792030E-04 0.9506324962 0.2850531839E-04 0.9529795266 0.2864227248E-04 0.9553265570 0.2877871831E-04 0.9576735874 0.2891459103E-04 0.9600206178 0.2904982523E-04 0.9623676482 0.2918435499E-04 0.9647146786 0.2931811395E-04 0.9670617090 0.2945103533E-04 0.9694087394 0.2958305205E-04 0.9717557698 0.2971409672E-04 0.9741028002 0.2984410171E-04 0.9764498305 0.2997299926E-04 0.9787968609 0.3010072149E-04 0.9811438913 0.3022720047E-04 0.9834909217 0.3035236828E-04 0.9858379521 0.3047615711E-04 0.9881849825 0.3059849927E-04 0.9905320129 0.3071932729E-04 0.9928790433 0.3083857396E-04 0.9952260737 0.3095617242E-04 0.9975731041 0.3107205620E-04 0.9999201345 0.3118615932E-04 1.002267165 0.3129841632E-04 1.004614195 0.3140876232E-04 1.006961226 0.3151713315E-04 1.009308256 0.3162346532E-04 1.011655286 0.3172769618E-04 1.014002317 0.3182976391E-04 1.016349347 0.3192960762E-04 1.018696378 0.3202716743E-04 1.021043408 0.3212238447E-04 1.023390438 0.3221520102E-04 1.025737469 0.3230556053E-04 1.028084499 0.3239340766E-04 1.030431530 0.3247868841E-04 1.032778560 0.3256135008E-04 1.035125590 0.3264134143E-04 1.037472621 0.3271861266E-04 1.039819651 0.3279311550E-04 1.042166682 0.3286480325E-04 1.044513712 0.3293363084E-04 1.046860742 0.3299955488E-04 1.049207773 0.3306253371E-04 1.051554803 0.3312252741E-04 1.053901834 0.3317949792E-04 1.056248864 0.3323340900E-04 1.058595894 0.3328422633E-04 1.060942925 0.3333191752E-04 1.063289955 0.3337645215E-04 1.065636985 0.3341780180E-04 1.067984016 0.3345594012E-04 1.070331046 0.3349084279E-04 1.072678077 0.3352248760E-04 1.075025107 0.3355085447E-04 1.077372137 0.3357592543E-04 1.079719168 0.3359768472E-04 1.082066198 0.3361611870E-04 1.084413229 0.3363121597E-04 1.086760259 0.3364296731E-04 1.089107289 0.3365136573E-04 1.091454320 0.3365640643E-04 1.093801350 0.3365808686E-04 1.096152861 0.3365198789E-04 1.098504372 0.3363369799E-04 1.100855883 0.3360323855E-04 1.103207394 0.3356064558E-04 1.105558905 0.3350596954E-04 1.107910415 0.3343927532E-04 1.110261926 0.3336064208E-04 1.112613437 0.3327016309E-04 1.114964948 0.3316794559E-04 1.117316459 0.3305411056E-04 1.119667970 0.3292879248E-04 1.122019481 0.3279213912E-04 1.124370992 0.3264431121E-04 1.126722503 0.3248548217E-04 1.129074013 0.3231583779E-04 1.131425524 0.3213557586E-04 1.133777035 0.3194490583E-04 1.136128546 0.3174404840E-04 1.138480057 0.3153323512E-04 1.140831568 0.3131270799E-04 1.143183079 0.3108271899E-04 1.145534590 0.3084352966E-04 1.147886101 0.3059541059E-04 1.150237611 0.3033864098E-04 1.152589122 0.3007350814E-04 1.154940633 0.2980030698E-04 1.157292144 0.2951933949E-04 1.159643655 0.2923091426E-04 1.161995166 0.2893534595E-04 1.164346677 0.2863295474E-04 1.166698188 0.2832406585E-04 1.169049699 0.2800900900E-04 1.171401209 0.2768811785E-04 1.173752720 0.2736172956E-04 1.176104231 0.2703018422E-04 1.178455742 0.2669382438E-04 1.180807253 0.2635299454E-04 1.183158764 0.2600804067E-04 1.185510275 0.2565930980E-04 1.187861786 0.2530714949E-04 1.190213296 0.2495190749E-04 1.192564807 0.2459393130E-04 1.194916318 0.2423356781E-04 1.197267829 0.2387116299E-04 1.199619340 0.2350706156E-04 1.201970851 0.2314160679E-04 1.204322362 0.2277514024E-04 1.206673873 0.2240800168E-04 1.209025384 0.2204052899E-04 1.211376894 0.2167305822E-04 1.213728405 0.2130592362E-04 1.216079916 0.2093945794E-04 1.218431427 0.2057399278E-04 1.220782938 0.2020985910E-04 1.223134449 0.1984738795E-04 1.225485960 0.1948691147E-04 1.227837471 0.1912876418E-04 1.230188982 0.1877328460E-04 1.232540492 0.1842081746E-04 1.234892003 0.1807171638E-04 1.237243514 0.1772634750E-04 1.239595025 0.1738509393E-04 1.241946536 0.1704836172E-04 1.244298047 0.1671658735E-04 1.246649558 0.1639024775E-04 1.249001069 0.1606987315E-04 1.251352580 0.1575606426E-04 1.253704090 0.1544951484E-04 1.256055601 0.1515104189E-04 1.258407112 0.1486162582E-04 1.260758623 0.1458246403E-04 1.263110134 0.1431504184E-04 1.265461645 0.1406122452E-04 1.267813156 0.1382337244E-04 1.270164667 0.1360447447E-04 1.272516177 0.1340827867E-04 1.274867688 0.1323936650E-04 1.277219199 0.1310306712E-04 1.279570710 0.1300506286E-04 1.281922221 0.1295057113E-04 1.284273732 0.1294319989E-04 1.286625243 0.1298392013E-04 1.288976754 0.1307074164E-04 1.291328265 0.1319930743E-04 1.293679775 0.1336402770E-04 1.296031286 0.1355916077E-04 1.298382797 0.1377950030E-04 1.300734308 0.1402065804E-04 1.303085819 0.1427908365E-04 1.305437330 0.1455196173E-04 1.307788841 0.1483707374E-04 1.310140352 0.1513266674E-04 1.312491863 0.1543734370E-04 1.314843373 0.1574997705E-04 1.317194884 0.1606964279E-04 1.319546395 0.1639557079E-04 1.321897906 0.1672710764E-04 1.324249417 0.1706368872E-04 1.326600928 0.1740481732E-04 1.328952439 0.1775004877E-04 1.331303950 0.1809897839E-04 1.333655461 0.1845123229E-04 1.336006971 0.1880646029E-04 1.338358482 0.1916433040E-04 1.340709993 0.1952452456E-04 1.343061504 0.1988673529E-04 1.345413015 0.2025066307E-04 1.347764526 0.2061601428E-04 1.350116037 0.2098249960E-04 1.352467548 0.2134983271E-04 1.354819059 0.2171772936E-04 1.357170569 0.2208590658E-04 1.359522080 0.2245408211E-04 1.361873591 0.2282197403E-04 1.364225102 0.2318930040E-04 1.366576613 0.2355577915E-04 1.368928124 0.2392112794E-04 1.371279635 0.2428506414E-04 1.373631146 0.2464730494E-04 1.375982656 0.2500756739E-04 1.378334167 0.2536556860E-04 1.380685678 0.2572102593E-04 1.383037189 0.2607365725E-04 1.385388700 0.2642318122E-04 1.387740211 0.2676931762E-04 1.390091722 0.2711178770E-04 1.392443233 0.2745031459E-04 1.394794744 0.2778462368E-04 1.397146254 0.2811444312E-04 1.399497765 0.2843950430E-04 1.401849276 0.2875954236E-04 1.404200787 0.2907429677E-04 1.406552298 0.2938351189E-04 1.408903809 0.2968693768E-04 1.411255320 0.2998433031E-04 1.413606831 0.3027545298E-04 1.415958342 0.3056007667E-04 1.418309852 0.3083798101E-04 1.420661363 0.3110895530E-04 1.423012874 0.3137279947E-04 1.425364385 0.3162932530E-04 1.427715896 0.3187835767E-04 1.430067407 0.3211973606E-04 1.432418918 0.3235331613E-04 1.434770429 0.3257897163E-04 1.437121940 0.3279659653E-04 1.439473450 0.3300610749E-04 1.441824961 0.3320744681E-04 1.444176472 0.3340058582E-04 1.446527983 0.3358552896E-04 1.448879494 0.3376231863E-04 1.451231005 0.3393104109E-04 1.453582516 0.3409183360E-04 1.455934027 0.3424489314E-04 1.458285537 0.3439048723E-04 1.460637048 0.3452896735E-04 1.462988559 0.3466078567E-04 1.465340070 0.3478651622E-04 1.467691581 0.3490688153E-04 1.470043092 0.3502278659E-04 1.472394603 0.3513536210E-04 1.474746114 0.3524601970E-04 1.477097625 0.3535652229E-04 1.479449135 0.3546907306E-04 1.481800646 0.3558642678E-04 1.484152157 0.3571202555E-04 1.486503668 0.3585015744E-04 1.488855179 0.3600612820E-04 1.491206690 0.3618642016E-04 1.493558201 0.3639878646E-04 1.495909712 0.3665219590E-04 1.498261223 0.3695651712E-04 1.500612733 0.3732184832E-04 1.502964244 0.3775750122E-04 1.505315755 0.3827083993E-04 1.507667266 0.3886635107E-04 1.510018777 0.3954530994E-04 1.512370288 0.4030615135E-04 1.514721799 0.4114533005E-04 1.517073310 0.4205830455E-04 1.519424821 0.4304035508E-04 1.521776331 0.4408711977E-04 1.524127842 0.4519486881E-04 1.526479353 0.4636059323E-04 1.528830864 0.4758198564E-04 1.531182375 0.4885736953E-04 1.533533886 0.5018561179E-04 1.535885397 0.5156603638E-04 1.538236908 0.5299834714E-04 1.540588418 0.5448256244E-04 1.542939929 0.5601896126E-04 1.545291440 0.5760803942E-04 1.547642951 0.5925047438E-04 1.549994462 0.6094709697E-04 1.552345973 0.6269886862E-04 1.554697484 0.6450686304E-04 1.557048995 0.6637225127E-04 1.559400506 0.6829628950E-04 1.561752016 0.7028030890E-04 1.564103527 0.7232570720E-04 1.566455038 0.7443394151E-04 1.568806549 0.7660652210E-04 1.571158060 0.7884500704E-04 1.573509571 0.8115099732E-04 1.575861082 0.8352613257E-04 1.578212593 0.8597208699E-04 1.580564104 0.8849056562E-04 1.582915614 0.9108330077E-04 1.585267125 0.9375204853E-04 1.587618636 0.9649858546E-04 1.589970147 0.9932470519E-04 1.592321658 0.1022322151E-03 1.594673169 0.1052229331E-03 1.597024680 0.1082986840E-03 1.599376191 0.1114612963E-03 1.601727702 0.1147125985E-03 1.604079212 0.1180544156E-03 1.606430723 0.1214885655E-03 1.608782234 0.1250168550E-03 1.611133745 0.1286410760E-03 1.613485256 0.1323630015E-03 1.615836767 0.1361843815E-03 1.618188278 0.1401069390E-03 1.620539789 0.1441323650E-03 1.622891299 0.1482623150E-03 1.625242810 0.1524984036E-03 1.627594321 0.1568422002E-03 1.629945832 0.1612952244E-03 1.632297343 0.1658589410E-03 1.634648854 0.1705347547E-03 1.637000365 0.1753240057E-03 1.639351876 0.1802279642E-03 1.641703387 0.1852478253E-03 1.644054897 0.1903847036E-03 1.646406408 0.1956396282E-03 1.648757919 0.2010135373E-03 1.651109430 0.2065072725E-03 1.653460941 0.2121215739E-03 1.655812452 0.2178570743E-03 1.658163963 0.2237142941E-03 1.660515474 0.2296936357E-03 1.662866985 0.2357953783E-03 1.665218495 0.2420196726E-03 1.667570006 0.2483665355E-03 1.669921517 0.2548358449E-03 1.672273028 0.2614273348E-03 1.674624539 0.2681405902E-03 1.676976050 0.2749750422E-03 1.679327561 0.2819299636E-03 1.681679072 0.2890044640E-03 1.684030583 0.2961974856E-03 1.686382093 0.3035077990E-03 1.688733604 0.3109339991E-03 1.691085115 0.3184745017E-03 1.693436626 0.3261275393E-03 1.695788137 0.3338911588E-03 1.698139648 0.3417632174E-03 1.700491159 0.3497413809E-03 1.702842670 0.3578231206E-03 1.705194180 0.3660057114E-03 1.707545691 0.3742862303E-03 1.709897202 0.3826615545E-03 1.712248713 0.3911283609E-03 1.714600224 0.3996831248E-03 1.716951735 0.4083221204E-03 1.719303246 0.4170414199E-03 1.721654757 0.4258368949E-03 1.724006268 0.4347042169E-03 1.726357778 0.4436388586E-03 1.728709289 0.4526360957E-03 1.731060800 0.4616910095E-03 1.733412311 0.4707984891E-03 1.735763822 0.4799532346E-03 1.738115333 0.4891497608E-03 1.740466844 0.4983824012E-03 1.742818355 0.5076453124E-03 1.745169866 0.5169324791E-03 1.747521376 0.5262377195E-03 1.749872887 0.5355546911E-03 1.752224398 0.5448768969E-03 1.754575909 0.5541976924E-03 1.756927420 0.5635102926E-03 1.759278931 0.5728077793E-03 1.761630442 0.5820831099E-03 1.763981953 0.5913291248E-03 1.766333464 0.6005385572E-03 1.768684974 0.6097040416E-03 1.771036485 0.6188181236E-03 1.773387996 0.6278732698E-03 1.775739507 0.6368618783E-03 1.778091018 0.6457762886E-03 1.780442529 0.6546087932E-03 1.782794040 0.6633516483E-03 1.785145551 0.6719970852E-03 1.787497061 0.6805373220E-03 1.789848572 0.6889645754E-03 1.792200083 0.6972710727E-03 1.794551594 0.7054490639E-03 1.796903105 0.7134908340E-03 1.799254616 0.7213887154E-03 1.801606127 0.7291351002E-03 1.803957638 0.7367224530E-03 1.806309149 0.7441433232E-03 1.808660659 0.7513903573E-03 1.811012170 0.7584563119E-03 1.813363681 0.7653340655E-03 1.815715192 0.7720166313E-03 1.818066703 0.7784971688E-03 1.820418214 0.7847689963E-03 1.822769725 0.7908256026E-03 1.825121236 0.7966606582E-03 1.827472747 0.8022680271E-03 1.829824257 0.8076417776E-03 1.832175768 0.8127761932E-03 1.834527279 0.8176657829E-03 1.836878790 0.8223052914E-03 1.839230301 0.8266897084E-03 1.841581812 0.8308142786E-03 1.843933323 0.8346745099E-03 1.846284834 0.8382661819E-03 1.848636345 0.8415853540E-03 1.850987855 0.8446283727E-03 1.853339366 0.8473918785E-03 1.855690877 0.8498728122E-03 1.858042388 0.8520684208E-03 1.860393899 0.8539762626E-03 1.862745410 0.8555942119E-03 1.865096921 0.8569204632E-03 1.867448432 0.8579535345E-03 1.869799942 0.8586922700E-03 1.872151453 0.8591358426E-03 1.874502964 0.8592837555E-03 1.876849995 0.8591794221E-03 1.879197025 0.8588665401E-03 1.881544055 0.8583454637E-03 1.883891086 0.8576167822E-03 1.886238116 0.8566813194E-03 1.888585147 0.8555401320E-03 1.890932177 0.8541945070E-03 1.893279207 0.8526459602E-03 1.895626238 0.8508962330E-03 1.897973268 0.8489472891E-03 1.900320299 0.8468013110E-03 1.902667329 0.8444606962E-03 1.905014359 0.8419280524E-03 1.907361390 0.8392061932E-03 1.909708420 0.8362981328E-03 1.912055451 0.8332070803E-03 1.914402481 0.8299364345E-03 1.916749511 0.8264897773E-03 1.919096542 0.8228708676E-03 1.921443572 0.8190836343E-03 1.923790603 0.8151321699E-03 1.926137633 0.8110207227E-03 1.928484663 0.8067536898E-03 1.930831694 0.8023356093E-03 1.933178724 0.7977711527E-03 1.935525754 0.7930651164E-03 1.937872785 0.7882224141E-03 1.940219815 0.7832480683E-03 1.942566846 0.7781472019E-03 1.944913876 0.7729250297E-03 1.947260906 0.7675868498E-03 1.949607937 0.7621380354E-03 1.951954967 0.7565840254E-03 1.954301998 0.7509303164E-03 1.956649028 0.7451824541E-03 1.958996058 0.7393460241E-03 1.961343089 0.7334266438E-03 1.963690119 0.7274299540E-03 1.966037150 0.7213616102E-03 1.968384180 0.7152272744E-03 1.970731210 0.7090326069E-03 1.973078241 0.7027832587E-03 1.975425271 0.6964848628E-03 1.977772302 0.6901430272E-03 1.980119332 0.6837633272E-03 1.982466362 0.6773512979E-03 1.984813393 0.6709124275E-03 1.987160423 0.6644521498E-03 1.989507454 0.6579758385E-03 1.991854484 0.6514887998E-03 1.994201514 0.6449962672E-03 1.996548545 0.6385033949E-03 1.998895575 0.6320152530E-03 2.001242605 0.6255368215E-03 2.003589636 0.6190729859E-03 2.005936666 0.6126285322E-03 2.008283697 0.6062081425E-03 2.010630727 0.5998163913E-03 2.012977757 0.5934577411E-03 2.015324788 0.5871365397E-03 2.017671818 0.5808570165E-03 2.020018849 0.5746232800E-03 2.022365879 0.5684393148E-03 2.024712909 0.5623089801E-03 2.027059940 0.5562360073E-03 2.029406970 0.5502239983E-03 2.031754001 0.5442764245E-03 2.034101031 0.5383966257E-03 2.036448061 0.5325878091E-03 2.038795092 0.5268530491E-03 2.041142122 0.5211952870E-03 2.043489153 0.5156173309E-03 2.045836183 0.5101218562E-03 2.048183213 0.5047114060E-03 2.050530244 0.4993883918E-03 2.052877274 0.4941550946E-03 2.055224304 0.4890136661E-03 2.057571335 0.4839661298E-03 2.059918365 0.4790143829E-03 2.062265396 0.4741601977E-03 2.064612426 0.4694052237E-03 2.066959456 0.4647509895E-03 2.069306487 0.4601989050E-03 2.071653517 0.4557502635E-03 2.074000548 0.4514062443E-03 2.076347578 0.4471679150E-03 2.078694608 0.4430362340E-03 2.081041639 0.4390120534E-03 2.083388669 0.4350961212E-03 2.085735700 0.4312890842E-03 2.088082730 0.4275914910E-03 2.090429760 0.4240037940E-03 2.092776791 0.4205263531E-03 2.095123821 0.4171594376E-03 2.097470852 0.4139032295E-03 2.099817882 0.4107578257E-03 2.102164912 0.4077232411E-03 2.104511943 0.4047994109E-03 2.106858973 0.4019861934E-03 2.109206004 0.3992833721E-03 2.111553034 0.3966906588E-03 2.113900064 0.3942076952E-03 2.116247095 0.3918340557E-03 2.118594125 0.3895692491E-03 2.120941155 0.3874127213E-03 2.123288186 0.3853638568E-03 2.125635216 0.3834219809E-03 2.127982247 0.3815863611E-03 2.130329277 0.3798562093E-03 2.132676307 0.3782306829E-03 2.135023338 0.3767088867E-03 2.137370368 0.3752898739E-03 2.139717399 0.3739726477E-03 2.142064429 0.3727561621E-03 2.144411459 0.3716393235E-03 2.146758490 0.3706209910E-03 2.149105520 0.3696999778E-03 2.151452551 0.3688750517E-03 2.153799581 0.3681449361E-03 2.156146611 0.3675083102E-03 2.158493642 0.3669638098E-03 2.160840672 0.3665100277E-03 2.163187703 0.3661455143E-03 2.165534733 0.3658687775E-03 2.167881763 0.3656782835E-03 2.170228794 0.3655724568E-03 2.172575824 0.3655496804E-03 2.174922855 0.3656082961E-03 2.177269885 0.3657466045E-03 2.179616915 0.3659628655E-03 2.181963946 0.3662552983E-03 2.184310976 0.3666220812E-03 2.186658006 0.3670613525E-03 2.189005037 0.3675712101E-03 2.191352067 0.3681497121E-03 2.193699098 0.3687948767E-03 2.196046128 0.3695046831E-03 2.198393158 0.3702770713E-03 2.200740189 0.3711099427E-03 2.203087219 0.3720011610E-03 2.205434250 0.3729485521E-03 2.207781280 0.3739499054E-03 2.210128310 0.3750029740E-03 2.212475341 0.3761054760E-03 2.214822371 0.3772550953E-03 2.217169402 0.3784494825E-03 2.219516432 0.3796862561E-03 2.221863462 0.3809630041E-03 2.224210493 0.3822772848E-03 2.226557523 0.3836266288E-03 2.228904554 0.3850085405E-03 2.231251584 0.3864204996E-03 2.233598614 0.3878599632E-03 2.235945645 0.3893243680E-03 2.238292675 0.3908111317E-03 2.240639706 0.3923176561E-03 2.242986736 0.3938413289E-03 2.245333766 0.3953795262E-03 2.247680797 0.3969296153E-03 2.250027827 0.3984889574E-03 2.252374857 0.4000549101E-03 2.254721888 0.4016248307E-03 2.257068918 0.4031960790E-03 2.259415949 0.4047660203E-03 2.261762979 0.4063320289E-03 2.264110009 0.4078914911E-03 2.266457040 0.4094418086E-03 2.268804070 0.4109804021E-03 2.271151101 0.4125047143E-03 2.273498131 0.4140122141E-03 2.275845161 0.4155003995E-03 2.278192192 0.4169668016E-03 2.280539222 0.4184089879E-03 2.282886253 0.4198245664E-03 2.285233283 0.4212111886E-03 2.287580313 0.4225665535E-03 2.289927344 0.4238884113E-03 2.292274374 0.4251745667E-03 2.294621405 0.4264228824E-03 2.296968435 0.4276312829E-03 2.299315465 0.4287977576E-03 2.301662496 0.4299203644E-03 2.304009526 0.4309972329E-03 2.306356557 0.4320265674E-03 2.308703587 0.4330066505E-03 2.311050617 0.4339358454E-03 2.313397648 0.4348125993E-03 2.315744678 0.4356354459E-03 2.318091708 0.4364030083E-03 2.320438739 0.4371140009E-03 2.322785769 0.4377672322E-03 2.325132800 0.4383616071E-03 2.327479830 0.4388961282E-03 2.329826860 0.4393698983E-03 2.332173891 0.4397821217E-03 2.334520921 0.4401321059E-03 2.336867952 0.4404192627E-03 2.339214982 0.4406431092E-03 2.341562012 0.4408032691E-03 2.343909043 0.4408994729E-03 2.346256073 0.4409315588E-03 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/PHLWLINES.OUT0000644000000000000000000000013214061636520024452 xustar0030 mtime=1623670096.387101126 30 atime=1623670096.387101126 30 ctime=1623670096.387101126 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PHLWLINES.OUT0000644002504400250440000000057414061636520026515 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.6444628166E-03 0.000000000 0.1288925633E-02 0.6220482413 -0.6444628166E-03 0.6220482413 0.1288925633E-02 1.093801350 -0.6444628166E-03 1.093801350 0.1288925633E-02 1.874502964 -0.6444628166E-03 1.874502964 0.1288925633E-02 2.346256073 -0.6444628166E-03 2.346256073 0.1288925633E-02 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023617 xustar0030 mtime=1623670096.389101124 30 atime=1623670096.389101124 30 ctime=1623670096.389101124 elk-7.2.42/examples/phonons-superconductivity/MgB2-DFPT/elk.in0000644002504400250440000000304014061636520025651 0ustar00dewhurstdewhurst00000000000000 ! This example generates a phonon dispersion for the superconductor MgB2 using ! density functional perturbation theory (DFPT). The superconducting critical ! temperature is also computed using McMillan's formula and by solving the ! Eliashberg equations. tasks 0 : ground state run 205 : compute the dynamical matrices ! number of phonon q-points ngridq 4 4 4 ! the k-point grid has to be commensurate with the q-point grid ngridk 8 8 8 ! larger smearing width required for stable phonon dispersion swidth 0.005 stype 1 ! increase the number of muffin-tin points (for accurate gradients) nrmtscf 2 ! after all the dynamical matrix DYN---.OUT files have been calculated then ! uncomment the following lines and run again !ngridk ! 24 24 24 !tasks ! 1 : ground state with larger k-point set ! 210 : phonon DOS ! 220 : plot the phonon dispersion ! 240 : electron-phonon matrix elements ! 245 : phonon line-widths ! 250 : Eliashberg function, alpha^2F plot1d 5 1000 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.0 0.5 0.0 0.0 0.0 0.0 0.0 0.5 avec 5.83170 0.000000000 0.0000 -2.91585 5.050400347 0.0000 0.00000 0.000000000 6.6594 sppath '../../../species/' atoms 2 : nspecies 'Mg.in' : spfname 1 : natoms; atposl below 0.00000000 0.00000000 0.00000000 'B.in' 2 0.33333333 0.66666667 0.50000000 0.66666667 0.33333333 0.50000000 elk-7.2.42/examples/phonons-superconductivity/PaxHeaders.21776/Pb-DFPT0000644000000000000000000000013214061636520022251 xustar0030 mtime=1623670096.403101111 30 atime=1623670096.390101123 30 ctime=1623670096.403101111 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/0000755002504400250440000000000014061636520024363 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/ALPHA2F.OUT0000644000000000000000000000013214061636520023734 xustar0030 mtime=1623670096.391101122 30 atime=1623670096.391101122 30 ctime=1623670096.391101122 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/ALPHA2F.OUT0000644002504400250440000004410414061636520025774 0ustar00dewhurstdewhurst00000000000000 -0.3676951211E-04 0.000000000 -0.3596058284E-04 0.000000000 -0.3515165358E-04 0.000000000 -0.3434272431E-04 0.000000000 -0.3353379504E-04 0.000000000 -0.3272486578E-04 0.000000000 -0.3191593651E-04 0.000000000 -0.3110700725E-04 0.000000000 -0.3029807798E-04 0.000000000 -0.2948914871E-04 0.000000000 -0.2868021945E-04 0.000000000 -0.2787129018E-04 0.000000000 -0.2706236091E-04 0.000000000 -0.2625343165E-04 0.000000000 -0.2544450238E-04 0.000000000 -0.2463557311E-04 0.000000000 -0.2382664385E-04 0.000000000 -0.2301771458E-04 0.000000000 -0.2220878531E-04 0.000000000 -0.2139985605E-04 0.000000000 -0.2059092678E-04 0.000000000 -0.1978199752E-04 0.000000000 -0.1897306825E-04 0.000000000 -0.1816413898E-04 0.000000000 -0.1735520972E-04 0.000000000 -0.1654628045E-04 0.000000000 -0.1573735118E-04 0.000000000 -0.1492842192E-04 0.000000000 -0.1411949265E-04 0.000000000 -0.1331056338E-04 0.000000000 -0.1250163412E-04 0.000000000 -0.1169270485E-04 0.000000000 -0.1088377558E-04 0.000000000 -0.1007484632E-04 0.000000000 -0.9265917052E-05 0.000000000 -0.8456987785E-05 0.000000000 -0.7648058519E-05 0.000000000 -0.6839129253E-05 0.000000000 -0.6030199986E-05 0.000000000 -0.5221270720E-05 0.000000000 -0.4412341453E-05 0.000000000 -0.3603412187E-05 0.000000000 -0.2794482920E-05 0.000000000 -0.1985553654E-05 0.000000000 -0.1176624388E-05 0.9449296139E-34 -0.3676951211E-06 0.9449296139E-34 0.4412341453E-06 0.9449296139E-34 0.1250163412E-05 0.000000000 0.2059092678E-05 0.000000000 0.2868021945E-05 0.000000000 0.3676951211E-05 0.1271576402E-08 0.4485880477E-05 0.5517778063E-08 0.5294809744E-05 0.5517778063E-08 0.6103739010E-05 0.4246201661E-08 0.6912668277E-05 0.4025466980E-08 0.7721597543E-05 0.1087326668E-07 0.8530526810E-05 0.8513967300E-07 0.9339456076E-05 0.9268436776E-07 0.1014838534E-04 0.1899608995E-06 0.1095731461E-04 0.1754159728E-06 0.1176624388E-04 0.2748928049E-06 0.1257517314E-04 0.4901579966E-06 0.1338410241E-04 0.1096441933E-05 0.1419303167E-04 0.9863410526E-06 0.1500196094E-04 0.1662692145E-05 0.1581089021E-04 0.2106305984E-05 0.1661981947E-04 0.2245755800E-05 0.1742874874E-04 0.3727909640E-05 0.1823767801E-04 0.5955295749E-05 0.1904660727E-04 0.8583947013E-05 0.1985553654E-04 0.7631633101E-05 0.2066446581E-04 0.8955876936E-05 0.2147339507E-04 0.1071157166E-04 0.2228232434E-04 0.1723810392E-04 0.2309125361E-04 0.2228750423E-04 0.2390018287E-04 0.2955175555E-04 0.2470911214E-04 0.2675707063E-04 0.2551804140E-04 0.3159828775E-04 0.2632697067E-04 0.4324746355E-04 0.2713589994E-04 0.5532575357E-04 0.2794482920E-04 0.7113541270E-04 0.2875375847E-04 0.6528271666E-04 0.2956268774E-04 0.6861668660E-04 0.3037161700E-04 0.1050891487E-03 0.3118054627E-04 0.1288490401E-03 0.3198947554E-04 0.1467378254E-03 0.3279840480E-04 0.1396489898E-03 0.3360733407E-04 0.1579001415E-03 0.3441626334E-04 0.2120013225E-03 0.3522519260E-04 0.2621350502E-03 0.3603412187E-04 0.3128960695E-03 0.3684305113E-04 0.3094942356E-03 0.3765198040E-04 0.2933876430E-03 0.3846090967E-04 0.3958837732E-03 0.3926983893E-04 0.4308302977E-03 0.4007876820E-04 0.5788934329E-03 0.4088769747E-04 0.5468781799E-03 0.4169662673E-04 0.6364106668E-03 0.4250555600E-04 0.6809142160E-03 0.4331448527E-04 0.8313043975E-03 0.4412341453E-04 0.8987781261E-03 0.4493234380E-04 0.9469151321E-03 0.4574127307E-04 0.9862481825E-03 0.4655020233E-04 0.1245092070E-02 0.4735913160E-04 0.1328056544E-02 0.4816806086E-04 0.1434312131E-02 0.4897699013E-04 0.1496424196E-02 0.4978591940E-04 0.1711216217E-02 0.5059484866E-04 0.1947372171E-02 0.5140377793E-04 0.2225769023E-02 0.5221270720E-04 0.2272611436E-02 0.5302163646E-04 0.2413440643E-02 0.5383056573E-04 0.2544829691E-02 0.5463949500E-04 0.3105072132E-02 0.5544842426E-04 0.3251424827E-02 0.5625735353E-04 0.3561594167E-02 0.5706628280E-04 0.3683698586E-02 0.5787521206E-04 0.4240093712E-02 0.5868414133E-04 0.4327707962E-02 0.5949307059E-04 0.4939293237E-02 0.6030199986E-04 0.5234904089E-02 0.6111092913E-04 0.5718570073E-02 0.6191985839E-04 0.6073486662E-02 0.6272878766E-04 0.6578062441E-02 0.6353771693E-04 0.7181906107E-02 0.6434664619E-04 0.7596015328E-02 0.6515557546E-04 0.8212095816E-02 0.6596450473E-04 0.8794368801E-02 0.6677343399E-04 0.9732209080E-02 0.6758236326E-04 0.1031309318E-01 0.6839129253E-04 0.1082273332E-01 0.6920022179E-04 0.1167414778E-01 0.7000915106E-04 0.1253894918E-01 0.7081808032E-04 0.1338951226E-01 0.7162700959E-04 0.1450405805E-01 0.7243593886E-04 0.1590981505E-01 0.7324486812E-04 0.1751891830E-01 0.7405379739E-04 0.1719587485E-01 0.7486272666E-04 0.1956057113E-01 0.7567165592E-04 0.2081204687E-01 0.7648058519E-04 0.2323499588E-01 0.7728951446E-04 0.2446333871E-01 0.7809844372E-04 0.2642681748E-01 0.7890737299E-04 0.2821853881E-01 0.7971630226E-04 0.3182467873E-01 0.8052523152E-04 0.3607935352E-01 0.8133416079E-04 0.4577873662E-01 0.8214309005E-04 0.5509802386E-01 0.8295201932E-04 0.6893477683E-01 0.8376094859E-04 0.7693009076E-01 0.8456987785E-04 0.8614821961E-01 0.8537880712E-04 0.9128146082E-01 0.8618773639E-04 0.9469198096E-01 0.8699666565E-04 0.9733108981E-01 0.8780559492E-04 0.9927244134E-01 0.8861452419E-04 0.1051747250 0.8942345345E-04 0.1117489051 0.9023238272E-04 0.1193480664 0.9104131199E-04 0.1269377244 0.9185024125E-04 0.1337025368 0.9265917052E-04 0.1507301424 0.9346809978E-04 0.1642355704 0.9427702905E-04 0.1805405269 0.9508595832E-04 0.1889606022 0.9589488758E-04 0.2007469547 0.9670381685E-04 0.2017099359 0.9751274612E-04 0.2031194906 0.9832167538E-04 0.2056282837 0.9913060465E-04 0.2091154681 0.9993953392E-04 0.2096887846 0.1007484632E-03 0.2094539244 0.1015573924E-03 0.2078197347 0.1023663217E-03 0.2169256989 0.1031752510E-03 0.2170379097 0.1039841802E-03 0.2200753053 0.1047931095E-03 0.2158726498 0.1056020388E-03 0.2161689851 0.1064109680E-03 0.2211723317 0.1072198973E-03 0.2252461614 0.1080288266E-03 0.2261213653 0.1088377558E-03 0.2279599236 0.1096466851E-03 0.2273864489 0.1104556144E-03 0.2317339886 0.1112645436E-03 0.2272272315 0.1120734729E-03 0.2287208682 0.1128824022E-03 0.2354452752 0.1136913314E-03 0.2381509313 0.1145002607E-03 0.2384657850 0.1153091900E-03 0.2335407091 0.1161181192E-03 0.2392655222 0.1169270485E-03 0.2422353363 0.1177359778E-03 0.2406812929 0.1185449070E-03 0.2410989255 0.1193538363E-03 0.2488484853 0.1201627656E-03 0.2553142509 0.1209716948E-03 0.2537758886 0.1217806241E-03 0.2513793487 0.1225895534E-03 0.2466598964 0.1233984826E-03 0.2571989254 0.1242074119E-03 0.2543666375 0.1250163412E-03 0.2652366738 0.1258252704E-03 0.2620330910 0.1266341997E-03 0.2669213102 0.1274431290E-03 0.2664844654 0.1282520582E-03 0.2685757309 0.1290609875E-03 0.2707249797 0.1298699168E-03 0.2708957529 0.1306788460E-03 0.2803272610 0.1314877753E-03 0.2788325665 0.1322967046E-03 0.2885086616 0.1331056338E-03 0.2844860955 0.1339145631E-03 0.2925684122 0.1347234924E-03 0.2936394168 0.1355324216E-03 0.2983179191 0.1363413509E-03 0.2978066228 0.1371502802E-03 0.3063532655 0.1379592094E-03 0.3074891937 0.1387681387E-03 0.3168607071 0.1395770680E-03 0.3163400841 0.1403859972E-03 0.3241651880 0.1411949265E-03 0.3272331741 0.1420038558E-03 0.3301205262 0.1428127850E-03 0.3345344360 0.1436217143E-03 0.3432994502 0.1444306436E-03 0.3531491801 0.1452395728E-03 0.3608297433 0.1460485021E-03 0.3630321815 0.1468574314E-03 0.3695908392 0.1476663606E-03 0.3783542228 0.1484752899E-03 0.3892847653 0.1492842192E-03 0.3971019837 0.1500931484E-03 0.4101594678 0.1509020777E-03 0.4195054863 0.1517110070E-03 0.4347834318 0.1525199362E-03 0.4421819772 0.1533288655E-03 0.4579721063 0.1541377948E-03 0.4657817811 0.1549467240E-03 0.4838887620 0.1557556533E-03 0.4992102502 0.1565645826E-03 0.5088206955 0.1573735118E-03 0.5389646800 0.1581824411E-03 0.5611034459 0.1589913704E-03 0.5890090122 0.1598002996E-03 0.5982304251 0.1606092289E-03 0.6115368184 0.1614181582E-03 0.6251532139 0.1622270874E-03 0.6172376522 0.1630360167E-03 0.6022158278 0.1638449460E-03 0.5976958831 0.1646538752E-03 0.6070006017 0.1654628045E-03 0.6092890139 0.1662717338E-03 0.6133973724 0.1670806630E-03 0.6069582870 0.1678895923E-03 0.6270579339 0.1686985216E-03 0.6318074042 0.1695074508E-03 0.6521783052 0.1703163801E-03 0.6523741595 0.1711253094E-03 0.6731674457 0.1719342386E-03 0.6852639476 0.1727431679E-03 0.7003268297 0.1735520972E-03 0.7128563892 0.1743610264E-03 0.7269569711 0.1751699557E-03 0.7497655786 0.1759788850E-03 0.7758008651 0.1767878142E-03 0.8113629641 0.1775967435E-03 0.8430780740 0.1784056728E-03 0.8600173944 0.1792146020E-03 0.8905065142 0.1800235313E-03 0.9393984971 0.1808324606E-03 1.009805007 0.1816413898E-03 1.069697079 0.1824503191E-03 1.070119450 0.1832592484E-03 1.018669684 0.1840681776E-03 0.9481734469 0.1848771069E-03 0.8956993676 0.1856860362E-03 0.8595506561 0.1864949654E-03 0.8197553573 0.1873038947E-03 0.8011922937 0.1881128240E-03 0.7804988965 0.1889217532E-03 0.7625830712 0.1897306825E-03 0.7450929157 0.1905396118E-03 0.7185628607 0.1913485410E-03 0.7077744818 0.1921574703E-03 0.7024859763 0.1929663996E-03 0.6939562958 0.1937753288E-03 0.6734616348 0.1945842581E-03 0.6435860809 0.1953931874E-03 0.6160179026 0.1962021166E-03 0.6019630772 0.1970110459E-03 0.5771656872 0.1978199752E-03 0.5732652489 0.1986289044E-03 0.5575834135 0.1994378337E-03 0.5417843486 0.2002467630E-03 0.5362717354 0.2010556922E-03 0.5188302861 0.2018646215E-03 0.5126047751 0.2026735508E-03 0.5032504094 0.2034824800E-03 0.5050254403 0.2042914093E-03 0.4970093018 0.2051003386E-03 0.4875411861 0.2059092678E-03 0.4729763157 0.2067181971E-03 0.4823012825 0.2075271264E-03 0.4710261835 0.2083360556E-03 0.4612314292 0.2091449849E-03 0.4515751124 0.2099539141E-03 0.4520572408 0.2107628434E-03 0.4492741854 0.2115717727E-03 0.4538258517 0.2123807019E-03 0.4397849723 0.2131896312E-03 0.4430781053 0.2139985605E-03 0.4329673938 0.2148074897E-03 0.4301490304 0.2156164190E-03 0.4243887542 0.2164253483E-03 0.4192891326 0.2172342775E-03 0.4282612053 0.2180432068E-03 0.4315413334 0.2188521361E-03 0.4214660066 0.2196610653E-03 0.4149111696 0.2204699946E-03 0.4093214054 0.2212789239E-03 0.4128443658 0.2220878531E-03 0.4113176824 0.2228967824E-03 0.4067863591 0.2237057117E-03 0.4084245704 0.2245146409E-03 0.4119081871 0.2253235702E-03 0.4081243973 0.2261324995E-03 0.4006862341 0.2269414287E-03 0.3937236243 0.2277503580E-03 0.3978957377 0.2285592873E-03 0.3988671903 0.2293682165E-03 0.4064580981 0.2301771458E-03 0.4093330390 0.2309860751E-03 0.4069129457 0.2317950043E-03 0.3980422788 0.2326039336E-03 0.4034784345 0.2334128629E-03 0.3978321925 0.2342217921E-03 0.4006889413 0.2350307214E-03 0.3966509954 0.2358396507E-03 0.3979763803 0.2366485799E-03 0.3955581594 0.2374575092E-03 0.3808557256 0.2382664385E-03 0.3853555095 0.2390753677E-03 0.3790739192 0.2398842970E-03 0.3810114425 0.2406932263E-03 0.3728280441 0.2415021555E-03 0.3681570478 0.2423110848E-03 0.3573614826 0.2431200141E-03 0.3484911132 0.2439289433E-03 0.3364580973 0.2447378726E-03 0.3224640029 0.2455468019E-03 0.3037696814 0.2463557311E-03 0.2994910323 0.2471646604E-03 0.2914065836 0.2479735897E-03 0.2861732601 0.2487825189E-03 0.2705403562 0.2495914482E-03 0.2651229503 0.2504003775E-03 0.2617272571 0.2512093067E-03 0.2634887908 0.2520182360E-03 0.2580257504 0.2528271653E-03 0.2525423485 0.2536360945E-03 0.2428373288 0.2544450238E-03 0.2415491484 0.2552539531E-03 0.2406165053 0.2560628823E-03 0.2352367754 0.2568718116E-03 0.2409082874 0.2576807409E-03 0.2385256466 0.2584896701E-03 0.2391426611 0.2592985994E-03 0.2326135047 0.2601075287E-03 0.2345473470 0.2609164579E-03 0.2388492321 0.2617253872E-03 0.2417648563 0.2625343165E-03 0.2516376803 0.2633432457E-03 0.2520047822 0.2641521750E-03 0.2565119510 0.2649611043E-03 0.2531256769 0.2657700335E-03 0.2644044284 0.2665789628E-03 0.2714988152 0.2673878921E-03 0.2877036865 0.2681968213E-03 0.2950527057 0.2690057506E-03 0.3016857321 0.2698146799E-03 0.2992348148 0.2706236091E-03 0.3110723677 0.2714325384E-03 0.3332443073 0.2722414677E-03 0.3538722305 0.2730503969E-03 0.3701378120 0.2738593262E-03 0.3763250261 0.2746682555E-03 0.3925667378 0.2754771847E-03 0.4265792373 0.2762861140E-03 0.4586128276 0.2770950433E-03 0.4808785598 0.2779039725E-03 0.5027697800 0.2787129018E-03 0.5239768129 0.2795218311E-03 0.5624547950 0.2803307603E-03 0.6008511168 0.2811396896E-03 0.6440750100 0.2819486189E-03 0.6787230314 0.2827575481E-03 0.7274283455 0.2835664774E-03 0.7849373165 0.2843754067E-03 0.8612515368 0.2851843359E-03 0.9141126581 0.2859932652E-03 1.003226878 0.2868021945E-03 1.099338908 0.2876111237E-03 1.266370284 0.2884200530E-03 1.460503478 0.2892289823E-03 2.134078970 0.2900379115E-03 2.759348096 0.2908468408E-03 3.203687343 0.2916557701E-03 3.040431620 0.2924646993E-03 2.822502562 0.2932736286E-03 2.628005892 0.2940825579E-03 2.469177030 0.2948914871E-03 2.308066874 0.2957004164E-03 2.173531701 0.2965093457E-03 2.050124485 0.2973182749E-03 1.927531659 0.2981272042E-03 1.782270105 0.2989361335E-03 1.672209971 0.2997450627E-03 1.519697279 0.3005539920E-03 1.438247322 0.3013629213E-03 1.321816300 0.3021718505E-03 1.279704914 0.3029807798E-03 1.203365066 0.3037897091E-03 1.141594746 0.3045986383E-03 1.084912850 0.3054075676E-03 1.036957672 0.3062164969E-03 0.9999361884 0.3070254261E-03 0.9378495113 0.3078343554E-03 0.8850262311 0.3086432847E-03 0.8314826780 0.3094522139E-03 0.7557175435 0.3102611432E-03 0.6971147012 0.3110700725E-03 0.6554919240 0.3118790017E-03 0.6182942604 0.3126879310E-03 0.5939640066 0.3134968603E-03 0.5630067945 0.3143057895E-03 0.5529660783 0.3151147188E-03 0.5193797393 0.3159236481E-03 0.4992096144 0.3167325773E-03 0.4826911358 0.3175415066E-03 0.4713177735 0.3183504359E-03 0.4525876611 0.3191593651E-03 0.4349310679 0.3199682944E-03 0.4303581800 0.3207772236E-03 0.4125294691 0.3215861529E-03 0.4015484102 0.3223950822E-03 0.3781115360 0.3232040114E-03 0.3749209036 0.3240129407E-03 0.3582658375 0.3248218700E-03 0.3557400366 0.3256307992E-03 0.3412728765 0.3264397285E-03 0.3318957281 0.3272486578E-03 0.3210672627 0.3280575870E-03 0.3081564385 0.3288665163E-03 0.3031277172 0.3296754456E-03 0.2852046810 0.3304843748E-03 0.2820795992 0.3312933041E-03 0.2725943620 0.3321022334E-03 0.2676504909 0.3329111626E-03 0.2567534308 0.3337200919E-03 0.2424778086 0.3345290212E-03 0.2208016691 0.3353379504E-03 0.2025876460 0.3361468797E-03 0.1763596631 0.3369558090E-03 0.1613661342 0.3377647382E-03 0.1408896484 0.3385736675E-03 0.1275193012 0.3393825968E-03 0.1164642993 0.3401915260E-03 0.1021756679 0.3410004553E-03 0.9185823400E-01 0.3418093846E-03 0.7601820473E-01 0.3426183138E-03 0.6313615260E-01 0.3434272431E-03 0.4063215072E-01 0.3442361724E-03 0.1939584315E-01 0.3450451016E-03 0.4375550264E-02 0.3458540309E-03 0.000000000 0.3466629602E-03 0.000000000 0.3474718894E-03 0.000000000 0.3482808187E-03 0.000000000 0.3490897480E-03 0.000000000 0.3498986772E-03 0.000000000 0.3507076065E-03 0.000000000 0.3515165358E-03 0.000000000 0.3523254650E-03 0.000000000 0.3531343943E-03 0.000000000 0.3539433236E-03 0.000000000 0.3547522528E-03 0.000000000 0.3555611821E-03 0.000000000 0.3563701114E-03 0.000000000 0.3571790406E-03 0.000000000 0.3579879699E-03 0.000000000 0.3587968992E-03 0.000000000 0.3596058284E-03 0.000000000 0.3604147577E-03 0.000000000 0.3612236870E-03 0.000000000 0.3620326162E-03 0.000000000 0.3628415455E-03 0.000000000 0.3636504748E-03 0.000000000 0.3644594040E-03 0.000000000 0.3652683333E-03 0.000000000 0.3660772626E-03 0.000000000 0.3668861918E-03 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/MCMILLAN.OUT0000644000000000000000000000012714061636520024117 xustar0029 mtime=1623670096.39310112 29 atime=1623670096.39310112 29 ctime=1623670096.39310112 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/MCMILLAN.OUT0000644002504400250440000000053214061636520026150 0ustar00dewhurstdewhurst00000000000000 Electron-phonon coupling constant, lambda : 1.300391767 Logarithmic average frequency : 0.1973053899E-03 RMS average frequency : 0.2216534818E-03 Coulomb pseudopotential, mu* : 0.1500000000 McMillan-Allen-Dynes superconducting critical temperature [Eq. 34, Phys. Rev. B 12, 905 (1975)] (kelvin) : 5.458024982 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/PHDISP.OUT0000644000000000000000000000013214061636520023706 xustar0030 mtime=1623670096.395101118 30 atime=1623670096.394101119 30 ctime=1623670096.395101118 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PHDISP.OUT0000644002504400250440000005331214061636520025747 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.4369966343E-10 0.1815415904E-01 0.1235050197E-04 0.3630831809E-01 0.2452237058E-04 0.5446247713E-01 0.3634506762E-04 0.7261663618E-01 0.4766399921E-04 0.9077079522E-01 0.5834786129E-04 0.1089249543 0.6829519893E-04 0.1270791133 0.7743985703E-04 0.1452332724 0.8575494396E-04 0.1633874314 0.9325486435E-04 0.1815415904 0.9999491923E-04 0.1996957495 0.1060679597E-03 0.2178499085 0.1115976761E-03 0.2360040676 0.1167283845E-03 0.2541582266 0.1216116868E-03 0.2723123857 0.1263911062E-03 0.2904665447 0.1311865587E-03 0.3086207037 0.1360810123E-03 0.3267748628 0.1411116026E-03 0.3449290218 0.1462667096E-03 0.3630831809 0.1514892779E-03 0.3812373399 0.1566854370E-03 0.3993914990 0.1617366657E-03 0.4175456580 0.1665135274E-03 0.4356998171 0.1708892556E-03 0.4538539761 0.1747519526E-03 0.4720081351 0.1780146482E-03 0.4901622942 0.1806228210E-03 0.5083164532 0.1825591862E-03 0.5264706123 0.1838456305E-03 0.5446247713 0.1845421862E-03 0.5627789304 0.1847429368E-03 0.5809330894 0.1845688093E-03 0.5990872485 0.1841573830E-03 0.6172414075 0.1836501843E-03 0.6353955665 0.1831784313E-03 0.6535497256 0.1828487454E-03 0.6717038846 0.1827307766E-03 0.6899718220 0.1832638862E-03 0.7082397594 0.1847374455E-03 0.7265076968 0.1868072062E-03 0.7447756341 0.1889958852E-03 0.7630435715 0.1907995534E-03 0.7813115089 0.1917848387E-03 0.7995794463 0.1916596310E-03 0.8178473836 0.1903122836E-03 0.8361153210 0.1878205529E-03 0.8543832584 0.1844326788E-03 0.8726511958 0.1805223741E-03 0.8909191331 0.1765202360E-03 0.9091870705 0.1728285189E-03 0.9274550079 0.1697344268E-03 0.9457229453 0.1673449250E-03 0.9639908826 0.1655656473E-03 0.9822588200 0.1641330476E-03 1.000526757 0.1626885976E-03 1.018794695 0.1608698550E-03 1.037062632 0.1583930323E-03 1.055330570 0.1551110177E-03 1.073598507 0.1510407869E-03 1.091866444 0.1463597888E-03 1.110134382 0.1413725390E-03 1.128402319 0.1364495383E-03 1.146670256 0.1319445824E-03 1.164938194 0.1281055295E-03 1.183206131 0.1250042097E-03 1.201474069 0.1225131760E-03 1.219742006 0.1203420092E-03 1.238009943 0.1181204174E-03 1.256277881 0.1154980530E-03 1.274545818 0.1122322305E-03 1.292813755 0.1082474075E-03 1.311081693 0.1036613696E-03 1.329349630 0.9877622352E-04 1.347617568 0.9402918117E-04 1.365885505 0.8989597445E-04 1.384153442 0.8675090023E-04 1.402421380 0.8472022791E-04 1.420689317 0.8359883565E-04 1.438957254 0.8288331944E-04 1.457225192 0.8190269178E-04 1.475493129 0.7997363535E-04 1.493761067 0.7652014835E-04 1.512029004 0.7114095681E-04 1.530296941 0.6363527998E-04 1.548564879 0.5400221146E-04 1.566832816 0.4242434540E-04 1.585100753 0.2924141908E-04 1.603368691 0.1491698274E-04 1.621636628 0.4369966343E-10 1.639815148 0.7467044959E-05 1.657993667 0.1488244295E-04 1.676172187 0.2219514851E-04 1.694350707 0.2935531458E-04 1.712529226 0.3631488053E-04 1.730707746 0.4302814663E-04 1.748886266 0.4945233096E-04 1.767064785 0.5554810429E-04 1.785243305 0.6128009929E-04 1.803421824 0.6661738973E-04 1.821600344 0.7153393619E-04 1.839778864 0.7600899401E-04 1.857957383 0.8002747954E-04 1.876135903 0.8358028988E-04 1.894314422 0.8666457049E-04 1.912492942 0.8928392387E-04 1.930671462 0.9144855000E-04 1.948849981 0.9317530684E-04 1.967028501 0.9448767494E-04 1.985207021 0.9541560554E-04 2.003385540 0.9599522589E-04 2.021564060 0.9626836945E-04 2.039742579 0.9628189351E-04 2.057921099 0.9608674436E-04 2.076099619 0.9573673297E-04 2.094278138 0.9528699644E-04 2.112456658 0.9479214470E-04 2.130635178 0.9430413151E-04 2.148813697 0.9386994114E-04 2.166992217 0.9352924086E-04 2.185170736 0.9331220086E-04 2.203349256 0.9323770987E-04 2.221527776 0.9382657966E-04 2.239706295 0.9555823233E-04 2.257884815 0.9833430039E-04 2.276063335 0.1020097964E-03 2.294241854 0.1064139410E-03 2.312420374 0.1113690507E-03 2.330598893 0.1167042660E-03 2.348777413 0.1222637130E-03 2.366955933 0.1279102707E-03 2.385134452 0.1335264911E-03 2.403312972 0.1390139602E-03 2.421491492 0.1442919616E-03 2.439670011 0.1492959367E-03 2.457848531 0.1539759828E-03 2.476027050 0.1582954820E-03 2.494205570 0.1622298733E-03 2.512384090 0.1657655424E-03 2.530562609 0.1688987889E-03 2.548741129 0.1716348294E-03 2.566919649 0.1739867949E-03 2.585098168 0.1759746909E-03 2.603276688 0.1776242939E-03 2.621455207 0.1789659665E-03 2.639633727 0.1800333856E-03 2.657812247 0.1808621869E-03 2.675990766 0.1814885445E-03 2.694169286 0.1819477152E-03 2.712347805 0.1822725907E-03 2.730526325 0.1824923144E-03 2.748704845 0.1826310240E-03 2.766883364 0.1827067846E-03 2.785061884 0.1827307766E-03 2.802738302 0.1832452628E-03 2.820414720 0.1847507815E-03 2.838091138 0.1871389704E-03 2.855767556 0.1902459341E-03 2.873443974 0.1938728303E-03 2.891120392 0.1978077587E-03 2.908796810 0.2018453933E-03 2.926473228 0.2058023007E-03 2.944149646 0.2095272846E-03 2.961826064 0.2129069990E-03 2.979502482 0.2158674697E-03 2.997178900 0.2183722522E-03 3.014855318 0.2204178966E-03 3.032531736 0.2220273345E-03 3.050208154 0.2232417927E-03 3.067884572 0.2241118927E-03 3.085560990 0.2246886833E-03 3.103237408 0.2250154267E-03 3.120913826 0.2251209695E-03 3.138505173 0.2231853456E-03 3.156096520 0.2187632498E-03 3.173687868 0.2133540482E-03 3.191279215 0.2075212692E-03 3.208870562 0.2014674299E-03 3.226461909 0.1952803449E-03 3.244053256 0.1890065859E-03 3.261644603 0.1826760917E-03 3.279235950 0.1763118471E-03 3.296827297 0.1699343235E-03 3.314418644 0.1635638512E-03 3.332009992 0.1572221053E-03 3.349601339 0.1509331933E-03 3.367192686 0.1447245634E-03 3.384784033 0.1386278352E-03 3.402375380 0.1326795923E-03 3.419966727 0.1269221311E-03 3.437558074 0.1214041163E-03 3.455149421 0.1161810432E-03 3.472740768 0.1113153370E-03 3.490332115 0.1068758500E-03 3.507923463 0.1029364574E-03 3.525514810 0.9957344221E-04 3.543106157 0.9686147430E-04 3.560697504 0.9486826774E-04 3.578288851 0.9364845436E-04 3.595880198 0.9323770987E-04 0.000000000 0.4369966343E-10 0.1815415904E-01 0.1235050197E-04 0.3630831809E-01 0.2452237058E-04 0.5446247713E-01 0.3634506762E-04 0.7261663618E-01 0.4766399921E-04 0.9077079522E-01 0.5834786129E-04 0.1089249543 0.6829519893E-04 0.1270791133 0.7743985703E-04 0.1452332724 0.8575494396E-04 0.1633874314 0.9325486435E-04 0.1815415904 0.9999491923E-04 0.1996957495 0.1060679597E-03 0.2178499085 0.1115976761E-03 0.2360040676 0.1167283845E-03 0.2541582266 0.1216116868E-03 0.2723123857 0.1263911062E-03 0.2904665447 0.1311865587E-03 0.3086207037 0.1360810123E-03 0.3267748628 0.1411116026E-03 0.3449290218 0.1462667096E-03 0.3630831809 0.1514892779E-03 0.3812373399 0.1566854370E-03 0.3993914990 0.1617366657E-03 0.4175456580 0.1665135274E-03 0.4356998171 0.1708892556E-03 0.4538539761 0.1747519526E-03 0.4720081351 0.1780146482E-03 0.4901622942 0.1806228210E-03 0.5083164532 0.1825591862E-03 0.5264706123 0.1838456305E-03 0.5446247713 0.1845421862E-03 0.5627789304 0.1847429368E-03 0.5809330894 0.1845688093E-03 0.5990872485 0.1841573830E-03 0.6172414075 0.1836501843E-03 0.6353955665 0.1831784313E-03 0.6535497256 0.1828487454E-03 0.6717038846 0.1827307766E-03 0.6899718220 0.1840116887E-03 0.7082397594 0.1876503446E-03 0.7265076968 0.1931050786E-03 0.7447756341 0.1996664034E-03 0.7630435715 0.2066398883E-03 0.7813115089 0.2134788234E-03 0.7995794463 0.2198494346E-03 0.8178473836 0.2256397227E-03 0.8361153210 0.2309289454E-03 0.8543832584 0.2359309264E-03 0.8726511958 0.2409206034E-03 0.8909191331 0.2461509918E-03 0.9091870705 0.2517528371E-03 0.9274550079 0.2578306036E-03 0.9457229453 0.2606277665E-03 0.9639908826 0.2556461766E-03 0.9822588200 0.2514452140E-03 1.000526757 0.2478364915E-03 1.018794695 0.2445176276E-03 1.037062632 0.2411452192E-03 1.055330570 0.2374052882E-03 1.073598507 0.2330659007E-03 1.091866444 0.2280045960E-03 1.110134382 0.2222102815E-03 1.128402319 0.2157638045E-03 1.146670256 0.2088039636E-03 1.164938194 0.2014872095E-03 1.183206131 0.1939500468E-03 1.201474069 0.1862827882E-03 1.219742006 0.1785210897E-03 1.238009943 0.1706574354E-03 1.256277881 0.1626693818E-03 1.274545818 0.1545566520E-03 1.292813755 0.1463765344E-03 1.311081693 0.1382666913E-03 1.329349630 0.1304456782E-03 1.347617568 0.1231838915E-03 1.365885505 0.1167428238E-03 1.384153442 0.1112913073E-03 1.402421380 0.1068233955E-03 1.420689317 0.1031134454E-03 1.438957254 0.9973425197E-04 1.457225192 0.9613358060E-04 1.475493129 0.9173688032E-04 1.493761067 0.8604068920E-04 1.512029004 0.7867730001E-04 1.530296941 0.6944834078E-04 1.548564879 0.5833334433E-04 1.566832816 0.4548053309E-04 1.585100753 0.3118535554E-04 1.603368691 0.1586050128E-04 1.621636628 0.4369966343E-10 1.639815148 0.7467044959E-05 1.657993667 0.1488244295E-04 1.676172187 0.2219514851E-04 1.694350707 0.2935531458E-04 1.712529226 0.3631488053E-04 1.730707746 0.4302814663E-04 1.748886266 0.4945233096E-04 1.767064785 0.5554810429E-04 1.785243305 0.6128009929E-04 1.803421824 0.6661738973E-04 1.821600344 0.7153393619E-04 1.839778864 0.7600899401E-04 1.857957383 0.8002747954E-04 1.876135903 0.8358028988E-04 1.894314422 0.8666457049E-04 1.912492942 0.8928392387E-04 1.930671462 0.9144855000E-04 1.948849981 0.9317530684E-04 1.967028501 0.9448767494E-04 1.985207021 0.9541560554E-04 2.003385540 0.9599522589E-04 2.021564060 0.9626836945E-04 2.039742579 0.9628189351E-04 2.057921099 0.9608674436E-04 2.076099619 0.9573673297E-04 2.094278138 0.9528699644E-04 2.112456658 0.9479214470E-04 2.130635178 0.9430413151E-04 2.148813697 0.9386994114E-04 2.166992217 0.9352924086E-04 2.185170736 0.9331220086E-04 2.203349256 0.9323770987E-04 2.221527776 0.9476465322E-04 2.239706295 0.9916688724E-04 2.257884815 0.1059822990E-03 2.276063335 0.1146233456E-03 2.294241854 0.1245124229E-03 2.312420374 0.1351493810E-03 2.330598893 0.1461260598E-03 2.348777413 0.1571158560E-03 2.366955933 0.1678564638E-03 2.385134452 0.1781334646E-03 2.403312972 0.1877667952E-03 2.421491492 0.1965999867E-03 2.439670011 0.2044916446E-03 2.457848531 0.2113090824E-03 2.476027050 0.2169250450E-03 2.494205570 0.2212199339E-03 2.512384090 0.2240930415E-03 2.530562609 0.2254846693E-03 2.548741129 0.2254040503E-03 2.566919649 0.2239487273E-03 2.585098168 0.2213010134E-03 2.603276688 0.2177019737E-03 2.621455207 0.2134183642E-03 2.639633727 0.2087175124E-03 2.657812247 0.2038544448E-03 2.675990766 0.1990675932E-03 2.694169286 0.1945777935E-03 2.712347805 0.1905868825E-03 2.730526325 0.1872741901E-03 2.748704845 0.1847907357E-03 2.766883364 0.1832519945E-03 2.785061884 0.1827307766E-03 2.802738302 0.1833678462E-03 2.820414720 0.1852167285E-03 2.838091138 0.1881019245E-03 2.855767556 0.1917654460E-03 2.873443974 0.1959076176E-03 2.891120392 0.2002282496E-03 2.908796810 0.2044613996E-03 2.926473228 0.2084007952E-03 2.944149646 0.2119157336E-03 2.961826064 0.2149584227E-03 2.979502482 0.2175637473E-03 2.997178900 0.2198419985E-03 3.014855318 0.2219647202E-03 3.032531736 0.2241438786E-03 3.050208154 0.2266052550E-03 3.067884572 0.2295582801E-03 3.085560990 0.2331660970E-03 3.103237408 0.2375207114E-03 3.120913826 0.2426278486E-03 3.138505173 0.2422780226E-03 3.156096520 0.2412302553E-03 3.173687868 0.2394896897E-03 3.191279215 0.2370649313E-03 3.208870562 0.2339681029E-03 3.226461909 0.2302149270E-03 3.244053256 0.2258248428E-03 3.261644603 0.2208211688E-03 3.279235950 0.2152313228E-03 3.296827297 0.2090871190E-03 3.314418644 0.2024251668E-03 3.332009992 0.1952874051E-03 3.349601339 0.1877218160E-03 3.367192686 0.1797833787E-03 3.384784033 0.1715353400E-03 3.402375380 0.1630508979E-03 3.419966727 0.1544154142E-03 3.437558074 0.1457292734E-03 3.455149421 0.1371114687E-03 3.472740768 0.1287038610E-03 3.490332115 0.1206757260E-03 3.507923463 0.1132275155E-03 3.525514810 0.1065915654E-03 3.543106157 0.1010258976E-03 3.560697504 0.9679621575E-04 3.578288851 0.9414299364E-04 3.595880198 0.9323770987E-04 0.000000000 0.4369966343E-10 0.1815415904E-01 0.1949397745E-04 0.3630831809E-01 0.3877023166E-04 0.5446247713E-01 0.5762116465E-04 0.7261663618E-01 0.7585898369E-04 0.9077079522E-01 0.9332448163E-04 0.1089249543 0.1098944486E-03 0.1270791133 0.1254872299E-03 0.1452332724 0.1400659423E-03 0.1633874314 0.1536388834E-03 0.1815415904 0.1662567560E-03 0.1996957495 0.1780064975E-03 0.2178499085 0.1890017939E-03 0.2360040676 0.1993707631E-03 0.2541582266 0.2092417772E-03 0.2723123857 0.2187288560E-03 0.2904665447 0.2279183693E-03 0.3086207037 0.2368587962E-03 0.3267748628 0.2455549376E-03 0.3449290218 0.2539673323E-03 0.3630831809 0.2620168347E-03 0.3812373399 0.2695936005E-03 0.3993914990 0.2765692375E-03 0.4175456580 0.2828106898E-03 0.4356998171 0.2881944726E-03 0.4538539761 0.2926200828E-03 0.4720081351 0.2960216580E-03 0.4901622942 0.2983771745E-03 0.5083164532 0.2997146218E-03 0.5264706123 0.3001146723E-03 0.5446247713 0.2997093949E-03 0.5627789304 0.2986766085E-03 0.5809330894 0.2972295996E-03 0.5990872485 0.2956022314E-03 0.6172414075 0.2940300332E-03 0.6353955665 0.2927286644E-03 0.6535497256 0.2918720802E-03 0.6717038846 0.2915734567E-03 0.6899718220 0.2921718228E-03 0.7082397594 0.2938416635E-03 0.7265076968 0.2962315946E-03 0.7447756341 0.2988305485E-03 0.7630435715 0.3010593122E-03 0.7813115089 0.3023670432E-03 0.7995794463 0.3023157608E-03 0.8178473836 0.3006418407E-03 0.8361153210 0.2972894671E-03 0.8543832584 0.2924152378E-03 0.8726511958 0.2863657948E-03 0.8909191331 0.2796340879E-03 0.9091870705 0.2728187891E-03 0.9274550079 0.2664089591E-03 0.9457229453 0.2644914452E-03 0.9639908826 0.2715619079E-03 0.9822588200 0.2787585899E-03 1.000526757 0.2857436724E-03 1.018794695 0.2921821331E-03 1.037062632 0.2977883863E-03 1.055330570 0.3023555564E-03 1.073598507 0.3057655762E-03 1.091866444 0.3079818959E-03 1.110134382 0.3090289487E-03 1.128402319 0.3089640462E-03 1.146670256 0.3078481909E-03 1.164938194 0.3057222115E-03 1.183206131 0.3025933900E-03 1.201474069 0.2984353574E-03 1.219742006 0.2932009432E-03 1.238009943 0.2868446435E-03 1.256277881 0.2793492200E-03 1.274545818 0.2707500541E-03 1.292813755 0.2611512271E-03 1.311081693 0.2507285392E-03 1.329349630 0.2397165416E-03 1.347617568 0.2283790913E-03 1.365885505 0.2169661611E-03 1.384153442 0.2056636590E-03 1.402421380 0.1945470687E-03 1.420689317 0.1835518523E-03 1.438957254 0.1724713637E-03 1.457225192 0.1609857975E-03 1.475493129 0.1487160901E-03 1.493761067 0.1352894610E-03 1.512029004 0.1204017562E-03 1.530296941 0.1038654166E-03 1.548564879 0.8563765910E-04 1.566832816 0.6582840253E-04 1.585100753 0.4469043025E-04 1.603368691 0.2259546411E-04 1.621636628 0.4369966343E-10 1.639815148 0.1951841901E-04 1.657993667 0.3894844965E-04 1.676172187 0.5820266705E-04 1.694350707 0.7719556138E-04 1.712529226 0.9584446544E-04 1.730707746 0.1140704463E-03 1.748886266 0.1317991495E-03 1.767064785 0.1489615833E-03 1.785243305 0.1654948328E-03 1.803421824 0.1813426907E-03 1.821600344 0.1964561953E-03 1.839778864 0.2107940638E-03 1.857957383 0.2243230109E-03 1.876135903 0.2370179435E-03 1.894314422 0.2488620210E-03 1.912492942 0.2598465760E-03 1.930671462 0.2699708859E-03 1.948849981 0.2792417938E-03 1.967028501 0.2876731759E-03 1.985207021 0.2952852553E-03 2.003385540 0.3021037706E-03 2.021564060 0.3081590062E-03 2.039742579 0.3134847012E-03 2.057921099 0.3181168578E-03 2.076099619 0.3220924770E-03 2.094278138 0.3254482536E-03 2.112456658 0.3282192722E-03 2.130635178 0.3304377447E-03 2.148813697 0.3321318372E-03 2.166992217 0.3333246322E-03 2.185170736 0.3340332673E-03 2.203349256 0.3342682919E-03 2.221527776 0.3341499762E-03 2.239706295 0.3337937916E-03 2.257884815 0.3331961748E-03 2.276063335 0.3323516851E-03 2.294241854 0.3312537529E-03 2.312420374 0.3298957358E-03 2.330598893 0.3282722933E-03 2.348777413 0.3263811055E-03 2.366955933 0.3242249714E-03 2.385134452 0.3218143380E-03 2.403312972 0.3191703004E-03 2.421491492 0.3163280610E-03 2.439670011 0.3133406466E-03 2.457848531 0.3102822410E-03 2.476027050 0.3072496067E-03 2.494205570 0.3043587526E-03 2.512384090 0.3017330302E-03 2.530562609 0.2994805578E-03 2.548741129 0.2976658831E-03 2.566919649 0.2962900897E-03 2.585098168 0.2952935865E-03 2.603276688 0.2945809947E-03 2.621455207 0.2940525195E-03 2.639633727 0.2936266008E-03 2.657812247 0.2932492665E-03 2.675990766 0.2928935446E-03 2.694169286 0.2925539217E-03 2.712347805 0.2922393497E-03 2.730526325 0.2919665727E-03 2.748704845 0.2917544807E-03 2.766883364 0.2916197002E-03 2.785061884 0.2915734567E-03 2.802738302 0.2918166565E-03 2.820414720 0.2925060755E-03 2.838091138 0.2935261823E-03 2.855767556 0.2947001494E-03 2.873443974 0.2958103915E-03 2.891120392 0.2966222544E-03 2.908796810 0.2969076694E-03 2.926473228 0.2964663455E-03 2.944149646 0.2951430150E-03 2.961826064 0.2928400630E-03 2.979502482 0.2895253943E-03 2.997178900 0.2852356232E-03 3.014855318 0.2800746851E-03 3.032531736 0.2742078668E-03 3.050208154 0.2678511363E-03 3.067884572 0.2612556580E-03 3.085560990 0.2546876372E-03 3.103237408 0.2484042942E-03 3.120913826 0.2426278486E-03 3.138505173 0.2444847879E-03 3.156096520 0.2486704879E-03 3.173687868 0.2536845903E-03 3.191279215 0.2589620235E-03 3.208870562 0.2642983423E-03 3.226461909 0.2696036479E-03 3.244053256 0.2748294220E-03 3.261644603 0.2799442719E-03 3.279235950 0.2849246669E-03 3.296827297 0.2897509768E-03 3.314418644 0.2944056378E-03 3.332009992 0.2988722695E-03 3.349601339 0.3031352530E-03 3.367192686 0.3071795495E-03 3.384784033 0.3109906507E-03 3.402375380 0.3145546028E-03 3.419966727 0.3178580739E-03 3.437558074 0.3208884427E-03 3.455149421 0.3236338992E-03 3.472740768 0.3260835481E-03 3.490332115 0.3282275095E-03 3.507923463 0.3300570133E-03 3.525514810 0.3315644856E-03 3.543106157 0.3327436234E-03 3.560697504 0.3335894574E-03 3.578288851 0.3340984022E-03 3.595880198 0.3342682919E-03 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/PHDLINES.OUT0000644000000000000000000000013214061636520024125 xustar0030 mtime=1623670096.397101116 30 atime=1623670096.396101117 30 ctime=1623670096.397101116 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PHDLINES.OUT0000644002504400250440000000106014061636520026157 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.2507012189E-03 0.000000000 0.5014024379E-03 0.6717038846 -0.2507012189E-03 0.6717038846 0.5014024379E-03 1.621636628 -0.2507012189E-03 1.621636628 0.5014024379E-03 2.203349256 -0.2507012189E-03 2.203349256 0.5014024379E-03 2.785061884 -0.2507012189E-03 2.785061884 0.5014024379E-03 3.120913826 -0.2507012189E-03 3.120913826 0.5014024379E-03 3.595880198 -0.2507012189E-03 3.595880198 0.5014024379E-03 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/PHDOS.OUT0000644000000000000000000000013214061636520023574 xustar0030 mtime=1623670096.398101115 30 atime=1623670096.398101115 30 ctime=1623670096.398101115 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PHDOS.OUT0000644002504400250440000004410414061636520025634 0ustar00dewhurstdewhurst00000000000000 -0.3676951211E-04 0.000000000 -0.3596058284E-04 0.000000000 -0.3515165358E-04 0.000000000 -0.3434272431E-04 0.000000000 -0.3353379504E-04 0.000000000 -0.3272486578E-04 0.000000000 -0.3191593651E-04 0.000000000 -0.3110700725E-04 0.000000000 -0.3029807798E-04 0.000000000 -0.2948914871E-04 0.000000000 -0.2868021945E-04 0.000000000 -0.2787129018E-04 0.000000000 -0.2706236091E-04 0.000000000 -0.2625343165E-04 0.000000000 -0.2544450238E-04 0.000000000 -0.2463557311E-04 0.000000000 -0.2382664385E-04 0.000000000 -0.2301771458E-04 0.000000000 -0.2220878531E-04 0.000000000 -0.2139985605E-04 0.000000000 -0.2059092678E-04 0.000000000 -0.1978199752E-04 0.000000000 -0.1897306825E-04 0.000000000 -0.1816413898E-04 0.000000000 -0.1735520972E-04 0.000000000 -0.1654628045E-04 0.000000000 -0.1573735118E-04 0.000000000 -0.1492842192E-04 0.000000000 -0.1411949265E-04 0.000000000 -0.1331056338E-04 0.000000000 -0.1250163412E-04 0.000000000 -0.1169270485E-04 0.000000000 -0.1088377558E-04 0.000000000 -0.1007484632E-04 0.000000000 -0.9265917052E-05 0.000000000 -0.8456987785E-05 0.000000000 -0.7648058519E-05 0.000000000 -0.6839129253E-05 0.000000000 -0.6030199986E-05 0.000000000 -0.5221270720E-05 0.000000000 -0.4412341453E-05 0.000000000 -0.3603412187E-05 0.000000000 -0.2794482920E-05 0.000000000 -0.1985553654E-05 0.000000000 -0.1176624388E-05 1.236202028 -0.3676951211E-06 1.236202028 0.4412341453E-06 1.236202028 0.1250163412E-05 0.000000000 0.2059092678E-05 0.000000000 0.2868021945E-05 0.000000000 0.3676951211E-05 4.944808114 0.4485880477E-05 7.417212170 0.5294809744E-05 7.417212170 0.6103739010E-05 2.472404057 0.6912668277E-05 2.472404057 0.7721597543E-05 4.944808114 0.8530526810E-05 19.77923245 0.9339456076E-05 19.77923245 0.1014838534E-04 22.25163651 0.1095731461E-04 17.30682840 0.1176624388E-04 26.37230994 0.1257517314E-04 31.31711805 0.1338410241E-04 46.15154239 0.1419303167E-04 35.43779148 0.1500196094E-04 50.27221582 0.1581089021E-04 47.79981177 0.1661981947E-04 51.92048519 0.1742874874E-04 56.86529331 0.1823767801E-04 64.28250548 0.1904660727E-04 93.95135416 0.1985553654E-04 71.69971765 0.2066446581E-04 74.17212170 0.2147339507E-04 71.69971765 0.2228232434E-04 98.89616227 0.2309125361E-04 120.3236641 0.2390018287E-04 140.1028966 0.2470911214E-04 125.2684722 0.2551804140E-04 111.2581826 0.2632697067E-04 128.5650110 0.2713589994E-04 153.2890515 0.2794482920E-04 187.9027083 0.2875375847E-04 151.6407822 0.2956268774E-04 156.5855903 0.3037161700E-04 181.3096308 0.3118054627E-04 215.0991529 0.3198947554E-04 222.5163651 0.3279840480E-04 195.3199205 0.3360733407E-04 192.8475164 0.3441626334E-04 244.7680016 0.3522519260E-04 273.6127156 0.3603412187E-04 313.1711805 0.3684305113E-04 276.0851197 0.3765198040E-04 259.6024260 0.3846090967E-04 301.6332949 0.3926983893E-04 331.3021436 0.4007876820E-04 390.6398410 0.4088769747E-04 336.2469517 0.4169662673E-04 363.4433964 0.4250555600E-04 361.7951270 0.4331448527E-04 423.6052284 0.4412341453E-04 396.4087838 0.4493234380E-04 400.5294572 0.4574127307E-04 412.0673428 0.4655020233E-04 493.6566767 0.4735913160E-04 506.0186970 0.4816806086E-04 489.5360033 0.4897699013E-04 506.8428317 0.4978591940E-04 558.7633168 0.5059484866E-04 588.4321655 0.5140377793E-04 593.3769736 0.5221270720E-04 573.5977412 0.5302163646E-04 630.4630345 0.5383056573E-04 630.4630345 0.5463949500E-04 677.4387116 0.5544842426E-04 676.6145769 0.5625735353E-04 709.5799643 0.5706628280E-04 736.7764089 0.5787521206E-04 806.8278572 0.5868414133E-04 788.6968941 0.5949307059E-04 843.0897834 0.6030199986E-04 843.0897834 0.6111092913E-04 914.7895010 0.6191985839E-04 919.7343091 0.6272878766E-04 919.7343091 0.6353771693E-04 988.1374880 0.6434664619E-04 1012.861529 0.6515557546E-04 1059.837206 0.6596450473E-04 1050.771724 0.6677343399E-04 1147.195482 0.6758236326E-04 1174.391927 0.6839129253E-04 1194.171159 0.6920022179E-04 1239.498567 0.7000915106E-04 1293.891456 0.7081808032E-04 1352.405019 0.7162700959E-04 1393.611753 0.7243593886E-04 1462.839067 0.7324486812E-04 1515.583687 0.7405379739E-04 1466.135606 0.7486272666E-04 1614.479849 0.7567165592E-04 1696.069183 0.7648058519E-04 1804.030827 0.7728951446E-04 1806.503231 0.7809844372E-04 1897.982181 0.7890737299E-04 2000.174882 0.7971630226E-04 2148.519125 0.8052523152E-04 2326.532217 0.8133416079E-04 2744.368503 0.8214309005E-04 3124.294593 0.8295201932E-04 3709.430220 0.8376094859E-04 4010.239380 0.8456987785E-04 4369.562103 0.8537880712E-04 4517.906347 0.8618773639E-04 4600.319815 0.8699666565E-04 4635.757607 0.8780559492E-04 4621.747317 0.8861452419E-04 4793.991466 0.8942345345E-04 4956.345999 0.9023238272E-04 5228.310446 0.9104131199E-04 5411.268346 0.9185024125E-04 5648.619135 0.9265917052E-04 6159.582640 0.9346809978E-04 6605.439505 0.9427702905E-04 7122.996088 0.9508595832E-04 7368.588224 0.9589488758E-04 7692.473155 0.9670381685E-04 7736.152294 0.9751274612E-04 7807.852011 0.9832167538E-04 7937.241157 0.9913060465E-04 8080.640592 0.9993953392E-04 8033.664915 0.1007484632E-03 8074.871650 0.1015573924E-03 8045.202801 0.1023663217E-03 8416.063409 0.1031752510E-03 8401.228985 0.1039841802E-03 8440.787450 0.1047931095E-03 8331.177537 0.1056020388E-03 8375.680810 0.1064109680E-03 8556.166306 0.1072198973E-03 8717.696704 0.1080288266E-03 8716.872570 0.1088377558E-03 8813.296328 0.1096466851E-03 8850.382389 0.1104556144E-03 9086.084909 0.1112645436E-03 8910.544221 0.1120734729E-03 8930.323453 0.1128824022E-03 9142.950202 0.1136913314E-03 9290.470311 0.1145002607E-03 9330.028776 0.1153091900E-03 9156.960492 0.1161181192E-03 9459.417921 0.1169270485E-03 9501.448790 0.1177359778E-03 9538.534851 0.1185449070E-03 9543.479659 0.1193538363E-03 9877.254207 0.1201627656E-03 10207.73222 0.1209716948E-03 10054.44316 0.1217806241E-03 10004.17095 0.1225895534E-03 9775.885641 0.1233984826E-03 10265.42164 0.1242074119E-03 10271.19059 0.1250163412E-03 10631.33744 0.1258252704E-03 10539.85849 0.1266341997E-03 10714.57505 0.1274431290E-03 10776.38515 0.1282520582E-03 10845.61246 0.1290609875E-03 10942.03622 0.1298699168E-03 10929.67420 0.1306788460E-03 11330.20366 0.1314877753E-03 11329.37952 0.1322967046E-03 11650.79205 0.1331056338E-03 11536.23733 0.1339145631E-03 11898.85659 0.1347234924E-03 12022.47679 0.1355324216E-03 12181.53479 0.1363413509E-03 12104.06613 0.1371502802E-03 12393.33740 0.1379592094E-03 12595.25040 0.1387681387E-03 12875.45619 0.1395770680E-03 12965.28687 0.1403859972E-03 13158.95853 0.1411949265E-03 13354.27845 0.1420038558E-03 13426.80230 0.1428127850E-03 13613.88087 0.1436217143E-03 13984.74148 0.1444306436E-03 14363.84344 0.1452395728E-03 14658.88365 0.1460485021E-03 14817.11751 0.1468574314E-03 15089.90609 0.1476663606E-03 15505.26998 0.1484752899E-03 15956.07165 0.1492842192E-03 16317.04264 0.1500931484E-03 16941.73673 0.1509020777E-03 17343.91446 0.1517110070E-03 17807.90229 0.1525199362E-03 17976.84990 0.1533288655E-03 18182.05943 0.1541377948E-03 18308.15204 0.1549467240E-03 18473.80311 0.1557556533E-03 18735.87794 0.1565645826E-03 19025.14922 0.1573735118E-03 19772.63938 0.1581824411E-03 20482.21934 0.1589913704E-03 21078.06872 0.1598002996E-03 21126.69267 0.1606092289E-03 21322.01259 0.1614181582E-03 21376.40548 0.1622270874E-03 20857.20062 0.1630360167E-03 19895.43545 0.1638449460E-03 19247.66558 0.1646538752E-03 19195.74510 0.1654628045E-03 18748.23996 0.1662717338E-03 18608.13707 0.1670806630E-03 18140.85270 0.1678895923E-03 18563.63379 0.1686985216E-03 18261.17636 0.1695074508E-03 18229.03511 0.1703163801E-03 17969.43269 0.1711253094E-03 18140.02856 0.1719342386E-03 18182.05943 0.1727431679E-03 17974.37749 0.1735520972E-03 17868.06412 0.1743610264E-03 17791.41959 0.1751699557E-03 17814.49536 0.1759788850E-03 17787.29892 0.1767878142E-03 18113.65626 0.1775967435E-03 18229.03511 0.1784056728E-03 17873.00893 0.1792146020E-03 17694.99583 0.1800235313E-03 18177.11463 0.1808324606E-03 18607.31293 0.1816413898E-03 18562.80966 0.1824503191E-03 18031.24279 0.1832592484E-03 17596.09967 0.1840681776E-03 17494.73111 0.1848771069E-03 17013.43645 0.1856860362E-03 16699.44113 0.1864949654E-03 16106.06416 0.1873038947E-03 16164.57772 0.1881128240E-03 16132.43647 0.1889217532E-03 15993.98184 0.1897306825E-03 15679.98653 0.1905396118E-03 15363.51881 0.1913485410E-03 15294.29150 0.1921574703E-03 15430.27372 0.1929663996E-03 15299.23630 0.1937753288E-03 14906.12406 0.1945842581E-03 14459.44306 0.1953931874E-03 14219.61987 0.1962021166E-03 14039.13437 0.1970110459E-03 13615.52914 0.1978199752E-03 13350.98191 0.1986289044E-03 13165.55160 0.1994378337E-03 12994.95572 0.2002467630E-03 12990.01091 0.2010556922E-03 12643.87435 0.2018646215E-03 12485.64049 0.2026735508E-03 12250.76210 0.2034824800E-03 12381.79952 0.2042914093E-03 12246.64143 0.2051003386E-03 12194.72094 0.2059092678E-03 11796.66389 0.2067181971E-03 11919.45996 0.2075271264E-03 11736.50206 0.2083360556E-03 11637.60590 0.2091449849E-03 11420.03434 0.2099539141E-03 11251.91086 0.2107628434E-03 11286.52452 0.2115717727E-03 11424.97915 0.2123807019E-03 11229.65923 0.2131896312E-03 11120.87345 0.2139985605E-03 10926.37766 0.2148074897E-03 10802.75746 0.2156164190E-03 10745.89217 0.2164253483E-03 10656.06148 0.2172342775E-03 10754.95765 0.2180432068E-03 10801.93332 0.2188521361E-03 10532.44128 0.2196610653E-03 10465.68637 0.2204699946E-03 10339.59377 0.2212789239E-03 10290.14568 0.2220878531E-03 10262.94924 0.2228967824E-03 10112.13259 0.2237057117E-03 10147.57038 0.2245146409E-03 10150.04279 0.2253235702E-03 10001.69854 0.2261324995E-03 9790.720065 0.2269414287E-03 9634.958609 0.2277503580E-03 9723.965156 0.2285592873E-03 9857.474975 0.2293682165E-03 9973.677965 0.2301771458E-03 10015.70883 0.2309860751E-03 9919.285076 0.2317950043E-03 9751.161600 0.2326039336E-03 9869.836995 0.2334128629E-03 9742.096119 0.2342217921E-03 9749.513331 0.2350307214E-03 9648.144764 0.2358396507E-03 9573.148508 0.2366485799E-03 9503.921194 0.2374575092E-03 9098.446929 0.2382664385E-03 9115.753758 0.2390753677E-03 8880.875372 0.2398842970E-03 8851.206523 0.2406932263E-03 8655.886603 0.2415021555E-03 8507.542360 0.2423110848E-03 8199.315987 0.2431200141E-03 7850.707015 0.2439289433E-03 7536.711700 0.2447378726E-03 7160.082149 0.2455468019E-03 6727.411439 0.2463557311E-03 6499.950265 0.2471646604E-03 6218.096203 0.2479735897E-03 6064.807151 0.2487825189E-03 5689.001735 0.2495914482E-03 5548.074704 0.2504003775E-03 5362.644399 0.2512093067E-03 5274.461988 0.2520182360E-03 5111.283320 0.2528271653E-03 4975.301097 0.2536360945E-03 4793.991466 0.2544450238E-03 4653.064435 0.2552539531E-03 4544.278656 0.2560628823E-03 4376.155181 0.2568718116E-03 4519.554616 0.2576807409E-03 4450.327302 0.2584896701E-03 4395.934413 0.2592985994E-03 4174.242183 0.2601075287E-03 4196.493819 0.2609164579E-03 4283.027961 0.2617253872E-03 4353.903544 0.2625343165E-03 4509.665000 0.2633432457E-03 4502.247787 0.2641521750E-03 4551.695869 0.2649611043E-03 4489.885767 0.2657700335E-03 4707.457324 0.2665789628E-03 4888.766955 0.2673878921E-03 5163.203805 0.2681968213E-03 5309.075645 0.2690057506E-03 5412.092480 0.2698146799E-03 5389.840844 0.2706236091E-03 5567.853936 0.2714325384E-03 5958.493777 0.2722414677E-03 6307.102749 0.2730503969E-03 6561.760367 0.2738593262E-03 6584.836138 0.2746682555E-03 6794.990483 0.2754771847E-03 7324.084951 0.2762861140E-03 7815.269224 0.2770950433E-03 8126.792135 0.2779039725E-03 8317.167247 0.2787129018E-03 8559.462845 0.2795218311E-03 9019.329999 0.2803307603E-03 9566.555431 0.2811396896E-03 10046.20182 0.2819486189E-03 10426.95204 0.2827575481E-03 10782.15409 0.2835664774E-03 11474.42723 0.2843754067E-03 12248.28970 0.2851843359E-03 12715.57406 0.2859932652E-03 13368.28874 0.2868021945E-03 14056.44120 0.2876111237E-03 15401.42900 0.2884200530E-03 16494.23160 0.2892289823E-03 19786.64967 0.2900379115E-03 22788.14819 0.2908468408E-03 25308.76413 0.2916557701E-03 25605.45261 0.2924646993E-03 25846.09994 0.2932736286E-03 26010.51481 0.2940825579E-03 25795.41566 0.2948914871E-03 25230.88340 0.2957004164E-03 24795.74029 0.2965093457E-03 24283.95265 0.2973182749E-03 23670.79644 0.2981272042E-03 22559.03875 0.2989361335E-03 21592.32876 0.2997450627E-03 20269.59259 0.3005539920E-03 19455.34752 0.3013629213E-03 18439.18946 0.3021718505E-03 18075.74606 0.3029807798E-03 17559.83775 0.3037897091E-03 16986.24001 0.3045986383E-03 16568.40372 0.3054075676E-03 16164.57772 0.3062164969E-03 15900.03049 0.3070254261E-03 15276.98467 0.3078343554E-03 14802.28309 0.3086432847E-03 14249.28871 0.3094522139E-03 13213.35141 0.3102611432E-03 12296.08951 0.3110700725E-03 11610.40945 0.3118790017E-03 11073.89777 0.3126879310E-03 10705.50957 0.3134968603E-03 10273.66299 0.3143057895E-03 10085.76028 0.3151147188E-03 9603.641491 0.3159236481E-03 9278.932425 0.3167325773E-03 9046.526444 0.3175415066E-03 8856.975466 0.3183504359E-03 8597.373040 0.3191593651E-03 8320.463786 0.3199682944E-03 8285.025994 0.3207772236E-03 8000.699528 0.3215861529E-03 7879.551729 0.3223950822E-03 7484.791215 0.3232040114E-03 7420.508709 0.3240129407E-03 7173.268304 0.3248218700E-03 7125.468492 0.3256307992E-03 6953.224342 0.3264397285E-03 6760.376826 0.3272486578E-03 6644.173835 0.3280575870E-03 6396.109295 0.3288665163E-03 6312.047557 0.3296754456E-03 5998.876377 0.3304843748E-03 5969.207528 0.3312933041E-03 5833.225305 0.3321022334E-03 5746.691163 0.3329111626E-03 5571.150475 0.3337200919E-03 5253.034486 0.3345290212E-03 4789.046658 0.3353379504E-03 4313.520944 0.3361468797E-03 3733.330126 0.3369558090E-03 3275.935375 0.3377647382E-03 2777.333891 0.3385736675E-03 2444.383478 0.3393825968E-03 2222.691247 0.3401915260E-03 1945.781993 0.3410004553E-03 1740.572456 0.3418093846E-03 1451.301181 0.3426183138E-03 1209.005584 0.3434272431E-03 781.2796820 0.3442361724E-03 373.3330126 0.3450451016E-03 84.06173793 0.3458540309E-03 0.000000000 0.3466629602E-03 0.000000000 0.3474718894E-03 0.000000000 0.3482808187E-03 0.000000000 0.3490897480E-03 0.000000000 0.3498986772E-03 0.000000000 0.3507076065E-03 0.000000000 0.3515165358E-03 0.000000000 0.3523254650E-03 0.000000000 0.3531343943E-03 0.000000000 0.3539433236E-03 0.000000000 0.3547522528E-03 0.000000000 0.3555611821E-03 0.000000000 0.3563701114E-03 0.000000000 0.3571790406E-03 0.000000000 0.3579879699E-03 0.000000000 0.3587968992E-03 0.000000000 0.3596058284E-03 0.000000000 0.3604147577E-03 0.000000000 0.3612236870E-03 0.000000000 0.3620326162E-03 0.000000000 0.3628415455E-03 0.000000000 0.3636504748E-03 0.000000000 0.3644594040E-03 0.000000000 0.3652683333E-03 0.000000000 0.3660772626E-03 0.000000000 0.3668861918E-03 0.000000000 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/PHLWIDTH.OUT0000644000000000000000000000013214061636520024142 xustar0030 mtime=1623670096.400101113 30 atime=1623670096.400101113 30 ctime=1623670096.400101113 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PHLWIDTH.OUT0000644002504400250440000005331214061636520026203 0ustar00dewhurstdewhurst00000000000000 0.000000000 0.5290416243E-12 0.1815415904E-01 0.2978788816E-10 0.3630831809E-01 0.3728506999E-09 0.5446247713E-01 0.1704853346E-08 0.7261663618E-01 0.4877086012E-08 0.9077079522E-01 0.1059684951E-07 0.1089249543 0.1913157002E-07 0.1270791133 0.3013078114E-07 0.1452332724 0.4262365003E-07 0.1633874314 0.5519640890E-07 0.1815415904 0.6630010576E-07 0.1996957495 0.7460122216E-07 0.2178499085 0.7927735877E-07 0.2360040676 0.8018003602E-07 0.2541582266 0.7782994189E-07 0.2723123857 0.7326278030E-07 0.2904665447 0.6778962830E-07 0.3086207037 0.6276024235E-07 0.3267748628 0.5941361576E-07 0.3449290218 0.5886863367E-07 0.3630831809 0.6225845056E-07 0.3812373399 0.7095997733E-07 0.3993914990 0.8683016104E-07 0.4175456580 0.1123454840E-06 0.4356998171 0.1505553598E-06 0.4538539761 0.2048009044E-06 0.4720081351 0.2782079765E-06 0.4901622942 0.3730233458E-06 0.5083164532 0.4899108095E-06 0.5264706123 0.6273485914E-06 0.5446247713 0.7812645298E-06 0.5627789304 0.9450121104E-06 0.5809330894 0.1109734998E-05 0.5990872485 0.1265101257E-05 0.6172414075 0.1400323506E-05 0.6353955665 0.1505329553E-05 0.6535497256 0.1571918573E-05 0.6717038846 0.1594735234E-05 0.6899718220 0.1547262429E-05 0.7082397594 0.1414104030E-05 0.7265076968 0.1220079341E-05 0.7447756341 0.9979605118E-06 0.7630435715 0.7793805906E-06 0.7813115089 0.5876965695E-06 0.7995794463 0.4349200496E-06 0.8178473836 0.3227604406E-06 0.8361153210 0.2461710552E-06 0.8543832584 0.1972853668E-06 0.8726511958 0.1682452589E-06 0.8909191331 0.1525184627E-06 0.9091870705 0.1451472049E-06 0.9274550079 0.1426000855E-06 0.9457229453 0.1426380325E-06 0.9639908826 0.1442357065E-06 0.9822588200 0.1474229114E-06 1.000526757 0.1529620777E-06 1.018794695 0.1618991572E-06 1.037062632 0.1750688844E-06 1.055330570 0.1926010211E-06 1.073598507 0.2134683072E-06 1.091866444 0.2352031954E-06 1.110134382 0.2540137150E-06 1.128402319 0.2654918670E-06 1.146670256 0.2658535634E-06 1.164938194 0.2532923043E-06 1.183206131 0.2288233750E-06 1.201474069 0.1961418962E-06 1.219742006 0.1604864241E-06 1.238009943 0.1270189798E-06 1.256277881 0.9946971525E-07 1.274545818 0.7959377468E-07 1.292813755 0.6748557925E-07 1.311081693 0.6232510384E-07 1.329349630 0.6298706751E-07 1.347617568 0.6818449133E-07 1.365885505 0.7623873176E-07 1.384153442 0.8486359720E-07 1.402421380 0.9028946620E-07 1.420689317 0.9201616894E-07 1.438957254 0.8846164910E-07 1.457225192 0.7794004514E-07 1.475493129 0.6269492873E-07 1.493761067 0.4557892881E-07 1.512029004 0.2944154295E-07 1.530296941 0.1644738087E-07 1.548564879 0.7585241762E-08 1.566832816 0.2643466086E-08 1.585100753 0.5725370481E-09 1.603368691 0.4393785056E-10 1.621636628 0.5290416243E-12 1.639815148 0.9984275847E-11 1.657993667 0.1079003572E-09 1.676172187 0.4930251722E-09 1.694350707 0.1464893613E-08 1.712529226 0.3380632376E-08 1.730707746 0.6602624936E-08 1.748886266 0.1144384717E-07 1.767064785 0.1811794290E-07 1.785243305 0.2670043610E-07 1.803421824 0.3710597643E-07 1.821600344 0.4908440231E-07 1.839778864 0.6223597681E-07 1.857957383 0.7604373854E-07 1.876135903 0.8991883558E-07 1.894314422 0.1032532419E-06 1.912492942 0.1154735681E-06 1.930671462 0.1260898347E-06 1.948849981 0.1347340125E-06 1.967028501 0.1411846960E-06 1.985207021 0.1453762037E-06 2.003385540 0.1473924166E-06 2.021564060 0.1474474849E-06 2.039742579 0.1458569080E-06 2.057921099 0.1430032694E-06 2.076099619 0.1393010102E-06 2.094278138 0.1351641045E-06 2.112456658 0.1309794797E-06 2.130635178 0.1270877152E-06 2.148813697 0.1237711879E-06 2.166992217 0.1212486393E-06 2.185170736 0.1196743162E-06 2.203349256 0.1191394887E-06 2.221527776 0.1178332358E-06 2.239706295 0.1140761749E-06 2.257884815 0.1083288565E-06 2.276063335 0.1012829754E-06 2.294241854 0.9376701794E-07 2.312420374 0.8664883051E-07 2.330598893 0.8076047772E-07 2.348777413 0.7686651026E-07 2.366955933 0.7568675277E-07 2.385134452 0.7797032089E-07 2.403312972 0.8460107426E-07 2.421491492 0.9669912311E-07 2.439670011 0.1117045343E-06 2.457848531 0.1302614756E-06 2.476027050 0.1560248004E-06 2.494205570 0.1904814737E-06 2.512384090 0.2351730010E-06 2.530562609 0.2915401672E-06 2.548741129 0.3607271001E-06 2.566919649 0.4433644089E-06 2.585098168 0.5393574678E-06 2.603276688 0.6477090848E-06 2.621455207 0.7664050784E-06 2.639633727 0.8923864859E-06 2.657812247 0.1021623643E-05 2.675990766 0.1149296131E-05 2.694169286 0.1270069980E-05 2.712347805 0.1378451175E-05 2.730526325 0.1469184075E-05 2.748704845 0.1537656337E-05 2.766883364 0.1580269321E-05 2.785061884 0.1594735234E-05 2.802738302 0.1567544308E-05 2.820414720 0.1489365187E-05 2.838091138 0.1369685321E-05 2.855767556 0.1222198453E-05 2.873443974 0.1062237708E-05 2.891120392 0.9041958379E-06 2.908796810 0.7595388886E-06 2.926473228 0.6357807437E-06 2.944149646 0.5323552096E-06 2.961826064 0.4354376668E-06 2.979502482 0.3587073608E-06 2.997178900 0.3000716179E-06 3.014855318 0.2567114828E-06 3.032531736 0.2256639805E-06 3.050208154 0.2041899393E-06 3.067884572 0.1899611050E-06 3.085560990 0.1811344252E-06 3.103237408 0.1763774038E-06 3.120913826 0.1748821027E-06 3.138505173 0.1738758331E-06 3.156096520 0.1709793351E-06 3.173687868 0.1665215617E-06 3.191279215 0.1609477729E-06 3.208870562 0.1547244053E-06 3.226461909 0.1482722327E-06 3.244053256 0.1419341196E-06 3.261644603 0.1359681493E-06 3.279235950 0.1305544783E-06 3.296827297 0.1258075553E-06 3.314418644 0.1217890757E-06 3.332009992 0.1185195777E-06 3.349601339 0.1159879733E-06 3.367192686 0.1141589910E-06 3.384784033 0.1129788149E-06 3.402375380 0.1123793298E-06 3.419966727 0.1122814101E-06 3.437558074 0.1125976708E-06 3.455149421 0.1132350296E-06 3.472740768 0.1140973481E-06 3.490332115 0.1150883071E-06 3.507923463 0.1161145626E-06 3.525514810 0.1170891206E-06 3.543106157 0.1179347797E-06 3.560697504 0.1185874270E-06 3.578288851 0.1189989446E-06 3.595880198 0.1191394887E-06 0.000000000 0.5290416243E-12 0.1815415904E-01 0.2978788816E-10 0.3630831809E-01 0.3728506999E-09 0.5446247713E-01 0.1704853346E-08 0.7261663618E-01 0.4877086012E-08 0.9077079522E-01 0.1059684951E-07 0.1089249543 0.1913157002E-07 0.1270791133 0.3013078114E-07 0.1452332724 0.4262365003E-07 0.1633874314 0.5519640890E-07 0.1815415904 0.6630010576E-07 0.1996957495 0.7460122216E-07 0.2178499085 0.7927735877E-07 0.2360040676 0.8018003602E-07 0.2541582266 0.7782994189E-07 0.2723123857 0.7326278030E-07 0.2904665447 0.6778962830E-07 0.3086207037 0.6276024235E-07 0.3267748628 0.5941361576E-07 0.3449290218 0.5886863367E-07 0.3630831809 0.6225845056E-07 0.3812373399 0.7095997733E-07 0.3993914990 0.8683016104E-07 0.4175456580 0.1123454840E-06 0.4356998171 0.1505553598E-06 0.4538539761 0.2048009044E-06 0.4720081351 0.2782079765E-06 0.4901622942 0.3730233458E-06 0.5083164532 0.4899108095E-06 0.5264706123 0.6273485914E-06 0.5446247713 0.7812645298E-06 0.5627789304 0.9450121104E-06 0.5809330894 0.1109734998E-05 0.5990872485 0.1265101257E-05 0.6172414075 0.1400323506E-05 0.6353955665 0.1505329553E-05 0.6535497256 0.1571918573E-05 0.6717038846 0.1594735234E-05 0.6899718220 0.1548691669E-05 0.7082397594 0.1419718463E-05 0.7265076968 0.1232360221E-05 0.7447756341 0.1019024770E-05 0.7630435715 0.8109911985E-06 0.7813115089 0.6313750607E-06 0.7995794463 0.4921783087E-06 0.8178473836 0.3954746128E-06 0.8361153210 0.3370390980E-06 0.8543832584 0.3101190216E-06 0.8726511958 0.3076895761E-06 0.8909191331 0.3229123557E-06 0.9091870705 0.3486895954E-06 0.9274550079 0.3797699817E-06 0.9457229453 0.4131131737E-06 0.9639908826 0.4457406495E-06 0.9822588200 0.4521825500E-06 1.000526757 0.4212629751E-06 1.018794695 0.3906904434E-06 1.037062632 0.3637547193E-06 1.055330570 0.3427155231E-06 1.073598507 0.3282282764E-06 1.091866444 0.3192558221E-06 1.110134382 0.3133092272E-06 1.128402319 0.3069591780E-06 1.146670256 0.2966316529E-06 1.164938194 0.2796048865E-06 1.183206131 0.2549170024E-06 1.201474069 0.2237808825E-06 1.219742006 0.1892463055E-06 1.238009943 0.1552086895E-06 1.256277881 0.1252105910E-06 1.274545818 0.1015738158E-06 1.292813755 0.8516907639E-07 1.311081693 0.7573755029E-07 1.329349630 0.7239264118E-07 1.347617568 0.7392930745E-07 1.365885505 0.7882016846E-07 1.384153442 0.8507753552E-07 1.402421380 0.9133168116E-07 1.420689317 0.9309920350E-07 1.438957254 0.8862279675E-07 1.457225192 0.7910936637E-07 1.475493129 0.6497908976E-07 1.493761067 0.4833730639E-07 1.512029004 0.3196061426E-07 1.530296941 0.1825622810E-07 1.548564879 0.8587967217E-08 1.566832816 0.3041303217E-08 1.585100753 0.6654594928E-09 1.603368691 0.5082743795E-10 1.621636628 0.5290416243E-12 1.639815148 0.9984275847E-11 1.657993667 0.1079003572E-09 1.676172187 0.4930251722E-09 1.694350707 0.1464893613E-08 1.712529226 0.3380632376E-08 1.730707746 0.6602624936E-08 1.748886266 0.1144384717E-07 1.767064785 0.1811794290E-07 1.785243305 0.2670043610E-07 1.803421824 0.3710597643E-07 1.821600344 0.4908440231E-07 1.839778864 0.6223597681E-07 1.857957383 0.7604373854E-07 1.876135903 0.8991883558E-07 1.894314422 0.1032532419E-06 1.912492942 0.1154735681E-06 1.930671462 0.1260898347E-06 1.948849981 0.1347340125E-06 1.967028501 0.1411846960E-06 1.985207021 0.1453762037E-06 2.003385540 0.1473924166E-06 2.021564060 0.1474474849E-06 2.039742579 0.1458569080E-06 2.057921099 0.1430032694E-06 2.076099619 0.1393010102E-06 2.094278138 0.1351641045E-06 2.112456658 0.1309794797E-06 2.130635178 0.1270877152E-06 2.148813697 0.1237711879E-06 2.166992217 0.1212486393E-06 2.185170736 0.1196743162E-06 2.203349256 0.1191394887E-06 2.221527776 0.1182287293E-06 2.239706295 0.1155952128E-06 2.257884815 0.1115231962E-06 2.276063335 0.1064489229E-06 2.294241854 0.1009128611E-06 2.312420374 0.9550814052E-07 2.330598893 0.9083676600E-07 2.348777413 0.8748392038E-07 2.366955933 0.8601714319E-07 2.385134452 0.8701193326E-07 2.403312972 0.9109926785E-07 2.421491492 0.9902473425E-07 2.439670011 0.1156720352E-06 2.457848531 0.1431678782E-06 2.476027050 0.1808971076E-06 2.494205570 0.2303303136E-06 2.512384090 0.2923468522E-06 2.530562609 0.3669792834E-06 2.548741129 0.4533956978E-06 2.566919649 0.5501233772E-06 2.585098168 0.6553337383E-06 2.603276688 0.7669870775E-06 2.621455207 0.8827993136E-06 2.639633727 0.1000137646E-05 2.657812247 0.1115960446E-05 2.675990766 0.1226853412E-05 2.694169286 0.1329160952E-05 2.712347805 0.1419188076E-05 2.730526325 0.1493441696E-05 2.748704845 0.1548880336E-05 2.766883364 0.1583143442E-05 2.785061884 0.1594735234E-05 2.802738302 0.1570240848E-05 2.820414720 0.1499334649E-05 2.838091138 0.1389294264E-05 2.855767556 0.1250847217E-05 2.873443974 0.1096417551E-05 2.891120392 0.9382651622E-06 2.908796810 0.7869031744E-06 2.926473228 0.6500688870E-06 2.944149646 0.5364631976E-06 2.961826064 0.4618965011E-06 2.979502482 0.4102532891E-06 2.997178900 0.3786124965E-06 3.014855318 0.3636913434E-06 3.032531736 0.3622059532E-06 3.050208154 0.3709746323E-06 3.067884572 0.3869571938E-06 3.085560990 0.4073932123E-06 3.103237408 0.4300966901E-06 3.120913826 0.4538486565E-06 3.138505173 0.4523534284E-06 3.156096520 0.4479026507E-06 3.173687868 0.4405997793E-06 3.191279215 0.4306130878E-06 3.208870562 0.4181696446E-06 3.226461909 0.4035472810E-06 3.244053256 0.3870649287E-06 3.261644603 0.3690717726E-06 3.279235950 0.3499357210E-06 3.296827297 0.3300317139E-06 3.314418644 0.3097303903E-06 3.332009992 0.2893876055E-06 3.349601339 0.2693352357E-06 3.367192686 0.2498736284E-06 3.384784033 0.2312659685E-06 3.402375380 0.2137347189E-06 3.419966727 0.1974601851E-06 3.437558074 0.1825811372E-06 3.455149421 0.1691973173E-06 3.472740768 0.1573735612E-06 3.490332115 0.1471451830E-06 3.507923463 0.1385242145E-06 3.525514810 0.1315060505E-06 3.543106157 0.1260760442E-06 3.560697504 0.1222156119E-06 3.578288851 0.1199074443E-06 3.595880198 0.1191394887E-06 0.000000000 0.5290416243E-12 0.1815415904E-01 0.4386461697E-10 0.3630831809E-01 0.5827356268E-09 0.5446247713E-01 0.2784369683E-08 0.7261663618E-01 0.8400346379E-08 0.9077079522E-01 0.1949147714E-07 0.1089249543 0.3807765056E-07 0.1270791133 0.6575406806E-07 0.1452332724 0.1033304936E-06 0.1633874314 0.1505599224E-06 0.1815415904 0.2060213869E-06 0.1996957495 0.2672039909E-06 0.2178499085 0.3308053212E-06 0.2360040676 0.3932124823E-06 0.2541582266 0.4510890275E-06 0.2723123857 0.5019598676E-06 0.2904665447 0.5446811449E-06 0.3086207037 0.5797086924E-06 0.3267748628 0.6091322889E-06 0.3449290218 0.6365078676E-06 0.3630831809 0.6665735912E-06 0.3812373399 0.7049563003E-06 0.3993914990 0.7579497519E-06 0.4175456580 0.8323791105E-06 0.4356998171 0.9354791245E-06 0.4538539761 0.1074640855E-05 0.4720081351 0.1256859722E-05 0.4901622942 0.1487769527E-05 0.5083164532 0.1770272363E-05 0.5264706123 0.2102943993E-05 0.5446247713 0.2478556398E-05 0.5627789304 0.2883154074E-05 0.5809330894 0.3296100843E-05 0.5990872485 0.3691362400E-05 0.6172414075 0.4040030383E-05 0.6353955665 0.4313787866E-05 0.6535497256 0.4488747082E-05 0.6717038846 0.4548938379E-05 0.6899718220 0.4427389382E-05 0.7082397594 0.4085193105E-05 0.7265076968 0.3582782030E-05 0.7447756341 0.3000717734E-05 0.7630435715 0.2418137597E-05 0.7813115089 0.1895460125E-05 0.7995794463 0.1466368503E-05 0.8178473836 0.1139391157E-05 0.8361153210 0.9055623576E-06 0.8543832584 0.7474128406E-06 0.8726511958 0.6458476872E-06 0.8909191331 0.5838420763E-06 0.9091870705 0.5477296689E-06 0.9274550079 0.5247272973E-06 0.9457229453 0.5039732049E-06 0.9639908826 0.4802718441E-06 0.9822588200 0.4766169574E-06 1.000526757 0.5065564807E-06 1.018794695 0.5375564138E-06 1.037062632 0.5718033898E-06 1.055330570 0.6106559975E-06 1.073598507 0.6538361053E-06 1.091866444 0.6990001045E-06 1.110134382 0.7418432493E-06 1.128402319 0.7768364671E-06 1.146670256 0.7985205436E-06 1.164938194 0.8030201304E-06 1.183206131 0.7892487674E-06 1.201474069 0.7593210322E-06 1.219742006 0.7179935776E-06 1.238009943 0.6713655992E-06 1.256277881 0.6253458849E-06 1.274545818 0.5843937778E-06 1.292813755 0.5508099053E-06 1.311081693 0.5245753231E-06 1.329349630 0.5035921850E-06 1.347617568 0.4842053389E-06 1.365885505 0.4619763698E-06 1.384153442 0.4326954929E-06 1.402421380 0.3934997563E-06 1.420689317 0.3438022988E-06 1.438957254 0.2856770052E-06 1.457225192 0.2234780153E-06 1.475493129 0.1627611427E-06 1.493761067 0.1088623384E-06 1.512029004 0.6561971002E-07 1.530296941 0.3463897826E-07 1.548564879 0.1526079753E-07 1.566832816 0.5126519426E-08 1.585100753 0.1074924417E-08 1.603368691 0.7787725621E-10 1.621636628 0.5290416243E-12 1.639815148 0.6522583335E-10 1.657993667 0.8935857227E-09 1.676172187 0.4289662910E-08 1.694350707 0.1294480580E-07 1.712529226 0.3001080994E-07 1.730707746 0.5858816636E-07 1.748886266 0.1012005956E-06 1.767064785 0.1593288612E-06 1.785243305 0.2330685469E-06 1.803421824 0.3209593167E-06 1.821600344 0.4200096692E-06 1.839778864 0.5259147140E-06 1.857957383 0.6334388010E-06 1.876135903 0.7369134939E-06 1.894314422 0.8307872913E-06 1.912492942 0.9101584541E-06 1.930671462 0.9712267579E-06 1.948849981 0.1011613028E-05 1.967028501 0.1030514805E-05 1.985207021 0.1028689414E-05 2.003385540 0.1008278685E-05 2.021564060 0.9725092402E-06 2.039742579 0.9253159754E-06 2.057921099 0.8709423764E-06 2.076099619 0.8135691100E-06 2.094278138 0.7570127379E-06 2.112456658 0.7045212418E-06 2.130635178 0.6586750351E-06 2.148813697 0.6213842627E-06 2.166992217 0.5939583686E-06 2.185170736 0.5772144346E-06 2.203349256 0.5715880252E-06 2.221527776 0.5700686257E-06 2.239706295 0.5656657315E-06 2.257884815 0.5588344154E-06 2.276063335 0.5502989175E-06 2.294241854 0.5410077067E-06 2.312420374 0.5320822337E-06 2.330598893 0.5247687209E-06 2.348777413 0.5204022703E-06 2.366955933 0.5203912784E-06 2.385134452 0.5262280593E-06 2.403312972 0.5395292106E-06 2.421491492 0.5621070387E-06 2.439670011 0.5960710364E-06 2.457848531 0.6439540473E-06 2.476027050 0.7088462326E-06 2.494205570 0.7944929300E-06 2.512384090 0.9052658700E-06 2.530562609 0.1045874423E-05 2.548741129 0.1220715417E-05 2.566919649 0.1432925238E-05 2.585098168 0.1683401129E-05 2.603276688 0.1970089313E-05 2.621455207 0.2287670477E-05 2.639633727 0.2627611773E-05 2.657812247 0.2978517500E-05 2.675990766 0.3326736623E-05 2.694169286 0.3657196726E-05 2.712347805 0.3954417260E-05 2.730526325 0.4203627303E-05 2.748704845 0.4391890268E-05 2.766883364 0.4509127679E-05 2.785061884 0.4548938379E-05 2.802738302 0.4477792022E-05 2.820414720 0.4272005885E-05 2.838091138 0.3953165560E-05 2.855767556 0.3553005403E-05 2.873443974 0.3108121168E-05 2.891120392 0.2654391319E-05 2.908796810 0.2222280582E-05 2.926473228 0.1833851822E-05 2.944149646 0.1501785929E-05 2.961826064 0.1230179116E-05 2.979502482 0.1016510934E-05 2.997178900 0.8540431890E-06 3.014855318 0.7340164692E-06 3.032531736 0.6472740214E-06 3.050208154 0.5852401154E-06 3.067884572 0.5404005782E-06 3.085560990 0.5065173666E-06 3.103237408 0.4787635053E-06 3.120913826 0.4538486565E-06 3.138505173 0.4555160690E-06 3.156096520 0.4603639162E-06 3.173687868 0.4679691788E-06 3.191279215 0.4777368804E-06 3.208870562 0.4890051874E-06 3.226461909 0.5011250282E-06 3.244053256 0.5135068877E-06 3.261644603 0.5256428403E-06 3.279235950 0.5371143052E-06 3.296827297 0.5475928236E-06 3.314418644 0.5568376104E-06 3.332009992 0.5646913647E-06 3.349601339 0.5710747351E-06 3.367192686 0.5759794649E-06 3.384784033 0.5794602198E-06 3.402375380 0.5816252119E-06 3.419966727 0.5826258688E-06 3.437558074 0.5826458977E-06 3.455149421 0.5818901534E-06 3.472740768 0.5805737235E-06 3.490332115 0.5789116099E-06 3.507923463 0.5771093161E-06 3.525514810 0.5753545674E-06 3.543106157 0.5738103016E-06 3.560697504 0.5726089918E-06 3.578288851 0.5718482999E-06 3.595880198 0.5715880252E-06 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/PHLWLINES.OUT0000644000000000000000000000013214061636520024264 xustar0030 mtime=1623670096.402101112 30 atime=1623670096.402101112 30 ctime=1623670096.402101112 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PHLWLINES.OUT0000644002504400250440000000106014061636520026316 0ustar00dewhurstdewhurst00000000000000 0.000000000 -0.3411702858E-05 0.000000000 0.6823407304E-05 0.6717038846 -0.3411702858E-05 0.6717038846 0.6823407304E-05 1.621636628 -0.3411702858E-05 1.621636628 0.6823407304E-05 2.203349256 -0.3411702858E-05 2.203349256 0.6823407304E-05 2.785061884 -0.3411702858E-05 2.785061884 0.6823407304E-05 3.120913826 -0.3411702858E-05 3.120913826 0.6823407304E-05 3.595880198 -0.3411702858E-05 3.595880198 0.6823407304E-05 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023431 xustar0030 mtime=1623670096.403101111 30 atime=1623670096.403101111 30 ctime=1623670096.403101111 elk-7.2.42/examples/phonons-superconductivity/Pb-DFPT/elk.in0000644002504400250440000000232114061636520025464 0ustar00dewhurstdewhurst00000000000000 ! Calculation of electron-phonon coupling and superconductivity in lead using ! density functional perturbation theory (DFPT). tasks 0 : ground-state run 205 : dynamical matrices and density derivatives with DFPT ngridq 4 4 4 ! large number of muffin-tin points required for accurate derivatives nrmtscf 3 ! large cut-off required for lead rgkmax 8.0 ! add extra local-orbitals for accurate electron-phonon coupling nxlo 2 ngridk 12 12 12 ! larger smearing width required for stable phonon dispersion swidth 0.005 stype 1 ! Uncomment the following lines and run to determine the electron-phonon ! coupling and superconducting T_c. !ngridk ! 24 24 24 !tasks ! 1 ! 210 ! 220 ! 240 ! 245 ! 250 avec 0.0 0.5 0.5 0.5 0.0 0.5 0.5 0.5 0.0 scale 9.3541 sppath '../../../species/' atoms 1 : nspecies 'Pb.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 plot1d 7 200 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 elk-7.2.42/examples/PaxHeaders.21776/ultra-long-range0000644000000000000000000000013214061636520017046 xustar0030 mtime=1623670096.406101108 30 atime=1623670096.405101109 30 ctime=1623670096.406101108 elk-7.2.42/examples/ultra-long-range/0000755002504400250440000000000014061636520021160 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ultra-long-range/PaxHeaders.21776/Cr-SDW0000644000000000000000000000013214061636520020045 xustar0030 mtime=1623670096.407101107 30 atime=1623670096.406101108 30 ctime=1623670096.407101107 elk-7.2.42/examples/ultra-long-range/Cr-SDW/0000755002504400250440000000000014061636520022157 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/ultra-long-range/Cr-SDW/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021225 xustar0030 mtime=1623670096.407101107 30 atime=1623670096.407101107 30 ctime=1623670096.407101107 elk-7.2.42/examples/ultra-long-range/Cr-SDW/elk.in0000644002504400250440000000347314061636520023271 0ustar00dewhurstdewhurst00000000000000 ! Ultracell simulation of the spin density wave in bcc Cr. ! See: T. Muller, S. Sharma, E. K. U. Gross, and J. K. Dewhurst, ! Phys. Rev. Lett. 125, 256402 (2020) or arXiv:2008.12573 ! First run a ground state calculation with a single unit cell while keeping ! the moments in each muffin-tin fixed to zero. tasks 0 ngridk 6 6 6 mixtype 1 beta0 0.01 ! Now uncomment the following lines and run the ultracell calculation. !tasks ! 700 ! ultracell ground-state calculation ! 771 ! 1D magnetisation density plot ! !beta0 ! 0.001 ! very small mixing parameter required for ultra long-range calculations ! !ngridk ! 1 6 6 ! reduce k-points to prevent kappa-point overlap maxthd1 -4 nxlo 1 lorbcnd .true. nempty 10 tplotq0 .false. plot1d 2 10000 0.0 0.0 0.0 21.0 0.0 0.0 taufsm 0.001 ! start with a random magnetic field in the ultracell rndbfcu 1.0 ! reduce the magnetic field at each step reducebf 0.85 ! Fix the moment in each muffin-tin to zero. This is done for both the unit cell ! and the Q=0 term of the ultracell. fsmtype 2 mommtfix 1 1 0.0 0.0 0.0 1 2 0.0 0.0 0.0 maxscl 2000 epspot 1.e-8 ! switch on spin-orbit coupling spinorb .true. ! keep the magnetisation collinear along the z-axis cmagz .true. avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale 5.4897 ! ultracell lattice parameters avecu 21.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scaleu 5.4897 ! ultracell Q-point grid (see article for description). ngridq 21 1 1 sppath '../../../species/' ! single antiferromagnetic unit cell atoms 1 : nspecies 'Cr.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.01 : atposl, bfcmt 0.5 0.5 0.5 0.0 0.0 -0.01 elk-7.2.42/examples/PaxHeaders.21776/Wannier900000644000000000000000000000013214061636520015444 xustar0030 mtime=1623670096.412101102 30 atime=1623670096.408101106 30 ctime=1623670096.412101102 elk-7.2.42/examples/Wannier90/0000755002504400250440000000000014061636520017556 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Wannier90/PaxHeaders.21776/Ge0000644000000000000000000000013214061636520015777 xustar0030 mtime=1623670096.410101104 30 atime=1623670096.409101105 30 ctime=1623670096.410101104 elk-7.2.42/examples/Wannier90/Ge/0000755002504400250440000000000014061636520020111 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Wannier90/Ge/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017157 xustar0030 mtime=1623670096.411101103 30 atime=1623670096.411101103 30 ctime=1623670096.411101103 elk-7.2.42/examples/Wannier90/Ge/elk.in0000644002504400250440000000203414061636520021213 0ustar00dewhurstdewhurst00000000000000 ! Interpolation of the Ge band structure using Wannier90. tasks 0 20 550 highq .true. ngridk 4 4 4 plot1d 6 200 : nvp1d, npp1d 0.25 0.75 0.5 : vlvp1d 0.5 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.25 0.75 0.5 0.375 0.75 0.375 ! bands to be used for the Wannier functions idxw90 1-25 ! extra lines to be included in the .win file xlwin bands_plot = true kpath = true kpath_task = bands kpath_num_points = 500 begin kpoint_path W 0.25 0.75 0.5 L 0.5 0.5 0.5 L 0.5 0.5 0.5 G 0.0 0.0 0.0 G 0.0 0.0 0.0 X 0.0 0.5 0.5 X 0.0 0.5 0.5 W 0.25 0.75 0.5 W 0.25 0.75 0.5 K 0.375 0.75 0.375 end kpoint_path avec 5.3460 5.3460 0.0000 5.3460 0.0000 5.3460 0.0000 5.3460 5.3460 sppath '../../../species/' atoms 1 : nspecies 'Ge.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 elk-7.2.42/examples/Wannier90/PaxHeaders.21776/Si-Hartree-Fock0000644000000000000000000000013214061636520020267 xustar0030 mtime=1623670096.413101101 30 atime=1623670096.412101102 30 ctime=1623670096.413101101 elk-7.2.42/examples/Wannier90/Si-Hartree-Fock/0000755002504400250440000000000014061636520022401 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Wannier90/Si-Hartree-Fock/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021447 xustar0030 mtime=1623670096.414101101 30 atime=1623670096.414101101 30 ctime=1623670096.414101101 elk-7.2.42/examples/Wannier90/Si-Hartree-Fock/elk.in0000644002504400250440000000230414061636520023503 0ustar00dewhurstdewhurst00000000000000 ! Interpolation of the Si Hartree-Fock band structure using Wannier90. tasks 0 : LDA ground state 20 : LDA band structure 5 : Hartree-Fock calculation 550 : Wannier90 interpolated band structure ! large number of empty states nempty 10 ngridk 4 4 4 plot1d 6 200 : nvp1d, npp1d 0.25 0.75 0.5 : vlvp1d 0.5 0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.25 0.75 0.5 0.375 0.75 0.375 ! bands to be used for the Wannier functions idxw90 1-16 ! extra lines to be included in the .win file xlwin bands_plot = true kpath = true kpath_task = bands kpath_num_points = 500 begin kpoint_path W 0.25 0.75 0.5 L 0.5 0.5 0.5 L 0.5 0.5 0.5 G 0.0 0.0 0.0 G 0.0 0.0 0.0 X 0.0 0.5 0.5 X 0.0 0.5 0.5 W 0.25 0.75 0.5 W 0.25 0.75 0.5 K 0.375 0.75 0.375 end kpoint_path avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 elk-7.2.42/examples/PaxHeaders.21776/Born-effective-charge0000644000000000000000000000013014061636520017753 xustar0030 mtime=1623670096.416101099 28 atime=1623670096.4151011 30 ctime=1623670096.416101099 elk-7.2.42/examples/Born-effective-charge/0000755002504400250440000000000014061636520022067 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Born-effective-charge/PaxHeaders.21776/GaAs0000644000000000000000000000013214061636520020570 xustar0030 mtime=1623670096.417101098 30 atime=1623670096.416101099 30 ctime=1623670096.417101098 elk-7.2.42/examples/Born-effective-charge/GaAs/0000755002504400250440000000000014061636520022702 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Born-effective-charge/GaAs/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021750 xustar0030 mtime=1623670096.417101098 30 atime=1623670096.417101098 30 ctime=1623670096.417101098 elk-7.2.42/examples/Born-effective-charge/GaAs/elk.in0000644002504400250440000000110714061636520024004 0ustar00dewhurstdewhurst00000000000000 ! Calculation of the Born effective charges for GaAs using the method of ! R. D. King-Smith and David Vanderbilt, Phys. Rev. B 47, 1651(R) (1993). tasks 208 deltaph 0.01 ngridk 4 4 4 ! number of k-point subdivisions for the phase sum along k‖ nkspolar 8 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 10.6826 sppath '../../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 elk-7.2.42/examples/PaxHeaders.21776/Delta-value0000644000000000000000000000013214061636520016033 xustar0030 mtime=1623670096.422101093 30 atime=1623670096.418101097 30 ctime=1623670096.422101093 elk-7.2.42/examples/Delta-value/0000755002504400250440000000000014061636520020145 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Delta-value/PaxHeaders.21776/H0000644000000000000000000000013214061636520016222 xustar0030 mtime=1623670096.421101094 30 atime=1623670096.420101095 30 ctime=1623670096.421101094 elk-7.2.42/examples/Delta-value/H/0000755002504400250440000000000014061636520020334 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Delta-value/H/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017402 xustar0030 mtime=1623670096.421101094 30 atime=1623670096.421101094 30 ctime=1623670096.421101094 elk-7.2.42/examples/Delta-value/H/elk.in0000644002504400250440000000130314061636520021434 0ustar00dewhurstdewhurst00000000000000 ! Dense metallic hydrogen is surprisingly difficult for LAPW codes because the ! muffin-tin radii are so small. This requires that the cut-off rgkmax is also ! small to keep the matrix sizes reasonable. tasks 0 mixtype 3 xctype 20 rgkmax 5.0 autolinengy .true. gmaxvr 24.0 nxlo 3 lorbcnd .true. rmtdelta 0.0 avec 7.57324755 0.00000000 0.00000000 -3.78662378 6.55862477 0.00000000 0.00000000 0.00000000 9.45443212 sppath '../../../species/' atoms 1 'H.in' 4 0.3333333333 0.6666666667 0.17498 0.6666666667 0.3333333333 0.82502 0.6666666667 0.3333333333 0.67498 0.3333333333 0.6666666667 0.32502 ngridk 10 10 8 elk-7.2.42/examples/Delta-value/PaxHeaders.21776/Os0000644000000000000000000000013214061636520016414 xustar0030 mtime=1623670096.423101092 30 atime=1623670096.422101093 30 ctime=1623670096.423101092 elk-7.2.42/examples/Delta-value/Os/0000755002504400250440000000000014061636520020526 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/Delta-value/Os/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017574 xustar0030 mtime=1623670096.424101091 30 atime=1623670096.424101091 30 ctime=1623670096.424101091 elk-7.2.42/examples/Delta-value/Os/elk.in0000644002504400250440000000227214061636520021634 0ustar00dewhurstdewhurst00000000000000 ! Input file for a very well convered hcp osmium calculation. This is the result ! of very careful comparisons with Wien2k to determine the true GGA equilibrium ! volume and bulk modulus. With thanks to Maric Dulak. ! See: https://sourceforge.net/p/elk/discussion/897820/thread/aecdbcf1/#cb4d ! This is also part of the effort to systematically compare solid state codes, ! basis sets and potentials and encapsulate the results in a single number, the ! Delta-value. See https://molmod.ugent.be/deltacodesdft . tasks 0 mixtype 3 xctype 20 ! set very high quality options vhighq .true. ! parameters from Delta-value dataset avec 5.21365989 0.0 0.0 2.60682995 4.51516191 0.0 0.0 0.0 8.23342334 atoms 1 'Os.in' 2 0.0 0.0 0.0 0.33333333333333 0.33333333333333 0.5 ecvcut -3.5 species 76 'Os' 'osmium' 190.23 2.4 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 2 6 0 1 2 elk-7.2.42/examples/PaxHeaders.21776/GW0000644000000000000000000000013114061636520014204 xustar0030 mtime=1623670096.463101055 29 atime=1623670096.42510109 30 ctime=1623670096.463101055 elk-7.2.42/examples/GW/0000755002504400250440000000000014061636520016317 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/PaxHeaders.21776/Si-GW-band-structure0000644000000000000000000000013214061636520020033 xustar0030 mtime=1623670096.438101078 30 atime=1623670096.426101089 30 ctime=1623670096.438101078 elk-7.2.42/examples/GW/Si-GW-band-structure/0000755002504400250440000000000014061636520022145 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/Si-GW-band-structure/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520021213 xustar0030 mtime=1623670096.427101089 30 atime=1623670096.427101089 30 ctime=1623670096.427101089 elk-7.2.42/examples/GW/Si-GW-band-structure/elk.in0000644002504400250440000000205614061636520023253 0ustar00dewhurstdewhurst00000000000000 ! GW spectral function band structure of silicon. ! This is an extremely expensive calculation and requires about 3 days on 200 CPU cores. tasks 0 20 620 ! type of analytic continuation used for the self-energy actype 10 ! use LAPW nxoapwlo 1 ! Matsubara frequency cut-off wmaxgw 5.0 ! response function G-vector cut-off gmaxrf 3.0 ! temperature of many-body system (determines Matsubara frequency spacing) tempk 2000.0 ! large number of empty states required nempty 40 plot1d 7 400 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 0.0 0.0 0.0 0.5 0.0 0.0 0.5 0.5 0.0 0.5 0.25 -0.25 0.5 0.0 0.0 wplot 800 100 0 -1.5 2.0 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 4 4 4 ngridq 4 4 4 elk-7.2.42/examples/GW/Si-GW-band-structure/PaxHeaders.21776/Si-GW.png0000644000000000000000000000013214061636520021504 xustar0030 mtime=1623670096.434101082 30 atime=1623670096.428101087 30 ctime=1623670096.434101082 elk-7.2.42/examples/GW/Si-GW-band-structure/Si-GW.png0000644002504400250440000220654314061636520023555 0ustar00dewhurstdewhurst00000000000000PNG  IHDR3la pHYsT=T=FtIME5Az IDATxɯlۖXEĎOu^/ ih8РB 7M 0)$}{)vkY se"Ќ}{,F} v]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jWծv]jW&Xm(˿՗,x83 )K;r!+ ` xi2ڏE0Ҟԯ YQ% +ɵ=b} DXC {%A;a`i  byεK{ȶoREkQTPʋ=4=*EP,ΐ KD@LM]D0js]N;Tə)P$0 Ơ*>j)RFOkX?Ef FڇTYϤ^-5T)J)d/SOu5Ho)AN~И0yzOQ@,]A]+w\|K%vJ)Vвe>{b &b_Y2+i?9&rG,d@u5ȸϵӡ*&_F1tg'g^!%BBOyp , UZT+XC.~y=YDłDLo"L.h@NZ >EbFK"֒")<()0x ) WW5T%].lZEP.6W\x]2 C'י~…+JR 눑9ެ?DU^o{csF]εSfZR*b Α ) Fz#'s;*6#\?lҁ9 G·y̬ 7My/ۮ`z?wlÁ{~>A ]L3'Ϩl T̅Co1g)[f)̓B\/\E,B̐`)ibpmș4p;0t>=r6#QeUG,s@:rTn<8e]@erw=J( pMQ gF+"3uxَ,'eDZ<'m%P2KiS߱` ,ހiYs<HF?o_SԐ - !2-BF)Yyİq]=O| c4:UWh |efVJ!\s(PrXrRg%'X8@̄+#ǥ%C:#F2pc|OlM!T6@<(xrǥ]b*O< VxeazoM6xgo1G#vow1rw;z߲?w8Cd _fc'X9S\SRX(sF *8C!FR!BD }*%z<G>8@Q!l;y!BEb EfCBexm_c1H.- 1a -!2RG$VsmGVbD`/:KD\l,;otImf D,s", @5QȑOGaӵhkW5񐸵l9vc9L,%0%5noyx2wl1 b=g>-( %EӺ]/:rikʮku`-iFGZ( !rHqp{Cs82b Σ!c^ӯ/s?g$5DlO|}w=+0obdO? 1cE?ffK.nEݞ`ă_NW8z)g2nDžO|wO%f -Av~ؕc)`z2B($ȂWx &ѐ,E]+aU0h oî VOJ9R\kR̅ȎcE,Kc}+шIGwjQ0lj_Wm)T((e6ڼO e\wѯtjaī*'C1h99vc=j+ h!J׺34d(؎<(ɣQ,aD\s ̓M$_)&K>aSH tP( 1rL7 +4 13}O311ebgnBQb _b w8soCoX{u%JXW{8Mi5̹%8 ļ88U: FpU)J8r$9F6ڔVnVnT'3!E1QK$gr&)%0xO lk,r֐31 '־)@lG.gb-+Aɰ5KX|QgA-'N^X+~slOT Q4Da;^︽cI{Ĉ8#% pn jJ.DYWwQ4:\ E3E٬jT}Bul;ib^VoF7CLj%"|񆻞<0z#eb~1bKDoww'eRO9mfQB$Ԓ6VWR"&%2Թ5!/ ~ͷ 7#gIg"fbpΩutJ)MR"SHJ\7\hc3ּ! ٢i% S&gXo̙x@ s> }Y ) q7Bd:G,=1A$4N3f!fC,c83bp#2.63a8WRavxHg'0.xu)'L/Εe&,Ŭy4oЯTD Z8ΤTyN(xYyg(SD`-f+ K$D~4s(H+g'bXkP=[ !pZG ( M2/j'l(w9 PdBc !28|v/Q̢AsیK<t1t =1<>_ߣ`?IJ&=BVm4|8G o.(]YY752U.@ K6ffh`Ȕv O<&HlSPevE*L -/a ix)TVeϺb|湦+?H{%6ȫ/|zq |GdRF)>!P SfkQ8G̑ 펑Ja-w8w܌09v  d7(8mL:kA`A4o?$aX*UAvQQ\*%SV Zo dЛV%S=L/>p1=U!-XVTƜlGv[n8z#OO||&*4&b&,AI!op^MJS_ KBl $3XQd@/\&:J<L":~p& [>Q!o!g/o)q…F g8&FuU*C/8xx}TG/(tWB)Mja,VY20gfff84MÞ9J-]k2tU&(|4,7{sV,J jMSDE NWֲ`hDp*妲腬]AC>8xۼ?x%>ͼ;q>C-o|_ bf̉W}||>?d_3ER"3`vy YzGt%R SAW`65Z1PPI"OLk"*c‡gP|o|R0!gŬ"nbbYY3vw }#zO}YOZuI1-K2MQ(i|'YyϽ_95f0o J!֬* U"9]s?du]@kαIiIωpS{af2si#qDC\H)E &"XP.W_WUSr$3H -ss\5:J&C!~W?apiPDȕH՛P sjk$dV" H-e&Z,c0vDaL- W=Vݯ b0gzK8a "bdb$f'?-;!kxDH/'f&yӑwXstEc3b^" xSHHkIIVq;~7֩z>bDc3g4vOѵ_)쫂# n{\)2vCVHoD.GB6\HևnCLIrT[y:Ef㇔?Y%u.?dHdYX緼c.G* ]/Y?a_/L'%G&,bxs3EjPǩۊoJp@J5X4бxs|:2-+]uUubޭ4J<55^#s[fʶb:k^PzM =ëk)Ħ)Jl<7}5IYGbw?yjPu=+%grJj:XC9.|3͔sD&`_# qb0x7SU9%rfJ8äMeL@7B*pcΕePplf>{z5Hfv??pex SS{:{6voգ|9'V׮S7>ѷ#`ckʝE93hB"!>M3g1Ä 򔸅} ޲K\ݑ G3B M!)KFdT8vXj:JaZ8D0@N̕]ΰq-<;r{z!xyGBc >%:e8FBfIg hf M,e#zr&'kcw~sXqt ]wqdQ HTDl.SaLLXuh!7'b(|daɼ&m3+/d([FvXbiم9"S8kpkZ8t% RUk8Lh?M_8lByn}"ZZưZR{aY nK5v18ļFP{RḴtgy<>豐)y_YGP?+ ʱN:ƾ1' k)ڦ m NQ ,c+Wvp,pi~H(?c{0de۞#gF6t$[w[csҖ&ĵ,UP;-Xg18¦VtRe Nj #'E;Dq<L")~b85[rDRx28Ko8@yZxO{B8y 1k.9\lMmM@"e,C-eyBjccfNXp oHc)FlJӊLOjL*y%O Qɸ:at, Cs9z1iљ`e-FTxeiKjg[VrKkNm:;-%s~v)R`,'+!r+U~5˼` ݈w H:o#fRī P lY*^!AJ*OڎagR: 49~l28JX@6?-mxe3P$-Cop $FLK &ƐӅ:a)c<:K-)SrV5,εQ Kd8F^g ^:5ebYGuF*mjg< mHnfeҪ4 _ ,4֩Dή 13E  RqzQҢ~ ruTSJ`9sLx˭avǼpI5(@. wY+ztTbڴղhC% aO12[[|IYS:2SQ2Z Rx|f'81 ,yC]d g72 mL-ǹ[Bڦ:CZ]acmsԩQAH5Wm2n2zΌ{^m7OuNRq?06D0AZPK{e+X˒VNĶTE$Ö`i V P ݨ"Pf7wT ≣,bX@ʧ#}xD C֣f\g>rTD Zuy"q'o;ƁITu[:I\tf\f2&*#)7slzveeeʈa /[͆O\;{j!$qb uL<6 Bdj%ª:blw(ㄳ67ħ=ϱu}#2M30ydQJkdp9xk pɲdUY8zC6R^ X6ha ]G)9Q;7Rb`MY+OLGƏ_ϾأdKQvCs/}Dba \Q$fJTi8ӈ:˱%c c24 dWHUR-DŽLoq!GL&3,)#7cOq)cP >7ئuq15ױk'L`uE~%*Bw %jvkա)VvlF$5;KL8ëx㷾/&ZRnPZyul‡'ݍu-145Ĝ=oC,dڔڢ s\l oB9|&y>i* bò , ]G> pmSM<9xn5@N|aǵ{wra) 5uNQ\A }z:4gj9n6%5/|an$.D[ZgXYznZ1)FNÞCDֶiimC=;ڳˊ?U3FuM#u?h,p2)Bac^Em'Fhr91tTDvTHx"fw1<_؎A])غ23gT<vyÛ--#kzWX v.,9O}ї9-\23ڵ&{jACh`h]"%r<(}z=mx^S臦XSlC٘El{ĹTo8=\8M)PAlT@YEfm(ժr] vM^r6fm~?kN.U,?Cn sBЉ="m`2v{CgU=F:ž*o7|Gg| \!wHJ*.;j߰P,e{durqd} 0wǩ1K IQ)ER&UiO nY!"3/w]&&e@cwky}S4Q|%@k#n JTޯ9_ߖSSZvzM繐 * ߪʅyn[L *b#!6*2#)|lJ!'bj]#,KcW1:񾵎֌|gaqA6g"miHj.vh.[fD ʁLn nGM&ْ ljEt=sߠ1#TUtB g#ǹk/Qİ ֑ ObY0FRt] X I kw8:S cZ6,R9@]4F.ʳ4 @,YV_Qr#:Z-o!4MjI'4fA&]R u$bqV8L 5Y_gTV:[XF($i32PWo (03PYXD0^[Vq i[_p?afE (̂mcDKQ{.m͓D3ea$\lE9]#7M <[9*F8>voG,Mw13wʬnuinQeX 6`̾GĠwzJ]5pwv,{3KE(32;=Y,5.>e=,+1b2a%FK35Uzk]^u+9WV֝IJ!>2{J"W%bGX7- ]ѡ3+cZbVhge ,?_ih´Q8_p)yV_KVfM5mx&8I)|!׶g,dK:b/"r\EŠ۷fyMqش })U\! o`ߣ4>ٵԅ+ irpSk.2ZB9ZG/*DݣG i \+QRSs}rG_HJWqa"ECY p\0%b FjR乂cwf}-PK?&ն upM=jyQzN_s<ƐN{oY*3gY˃3 #e=X^;d1vôșf@;tIK`<9Rz+W[|zk<_UoVc0hg /Mۥ}DYMX )1_R e#0Pi),aW3{9U#QFʂ͵r|٤Cbl)[+X{b/Wm|G/gWA.pW. @h֍c"At"tgHQV8Pap´{5lmI CmD Jsd%Z;HLIp;SHaoІ Fc jp6 ٳz W繪-RVXi1tm^#v%Uc[=D8> nGLУ TXM2Au(qٔ^ђ4ڔ4V2'{?W_H==a@ 1s^db37sTZ?`"9ZZ-]E(#=$cd[StR=No~KyPN${:pivD 0EF#aq[2_TUPޠ QaaXWc5ǀLN~!V[5XI ^\n>Pk">I/QM~g w=Þ*asE>1O$ hbfJ͞_%T˶8ZStcUpDr[7Оuiz+tݑ,WH9m.#ئ=#Vң6͊C5\GvǛdϗ+JM1Б9UjM QËcc~-~[`x|b!kxuLG ,m\UYo4??DsпHU)#-__%?͕.%5w|u=JLT'FjYY}w\ŮW,3_cf:JIe!jB21ޠ ²jRguD_?wN/WɇZ*ݏl!Om)mPNXېi \am &IFM8NtK:!а,kn8T=W"} "?QVDUPPPE;=9Pwe2r CYdyYZmisYբ1v|@*EQP{HLL+]}ѨYUT^5vMСvchu?Øk ՗;~M*c]l />?_pq!%J#Ƨ̴0oV[W )\[٫DĿhoAkn^TeMK(0:!%6J,AwNq 5SlM^T{vAvU᧼~ŻG@^J,Mrz9!j ̉ʲd'yxG|||%Gƚ kʀqGs  yA7cN9T ,Q-)_^:ӏ'Ov.lrI 98pК)2;G0y:3='cA܇z^]+وvCdJr׵HpiJ2[6B |evHU6Ÿd,D՟g,WϿ$$0t03iRTOҵpI<<6jXmyfPA %9WQ)5خPkӌ[8%q9Q,4$|dcphUz}CdFTrv<]QVQAא MXVϥUFg"C{9H7ni>t+YhEy\<9OjIoN+L=vYU2e숥ᬘ@96M&q-NJvEB贡*hźqZ)ctFBTUEp'_ڽ#DrCmUy4ISbE0:!!{L)!?!p}>\~nZ pw Gօ (5l 50X uZ5ngDЊw~c^xDWFb^I]QWd(`Dg4֡G^psgɑe#%ľe1G>g[8.a֢ C͞!2vN>#__&+q;'̞Ҝ71io4c EIHEYJO̻ n5Jv?| Wk`dDE11g_o!r30,+w#Gy$%Bm5)^YVop%En;&M ;㉠A%V:hz+jOH[5. e~LБ.+\o)ie (PHg-)&KmN-R"Klxg@/k??Ͼ>9 "7իِ;Ԋ3м0{,8G."ʣܵk=MƨXGE`jrq5N֪~ ߜs|ʲl,%5ѷ\KhiklYBoI6~'+)Dr+|6][:P*5A>%9Kqd%:I'|ncQ61pck1h|ˀq:vCY%F >x͵kN)6`YC5`X<͜GS߾Gich5 RW͝ 8ӷ?ͮ_yDEB(0*"\jkE]T!u/hc·Z]'JCF'J!8CKw5v0GƽjΩkU>i#|VOg1<$\z9)e! |ݎq͞/D9{Bd?R kB[ )' -vtm0g΢31^!K5V^9oG=.sWZN2 #SĢ55$˯Vv8F}RWܡĎO={y\slG|yZ/!KQ+@DUwlcXVf c#9њ'chKW %%ē pCO=7cn %n+lC1'YaḠ/[mZ }2"U 䰚Wۓ"He$#woW^/d/ ^}XG TZ9^lS65چe#GgQn;jj0N)%l"-xx{ss#Zۉ4|)YHjVS,E&q I35k"^-uɒj9]G(e3B" vyJ蕬H3RL9]fI/WqdWD.,j0nyX}Ip;l^fU0md@zJ޵P4EU|q(lIҖJްs}x[RL}JIpDʡ!WZ&ʕ\Ql㒮@B~]hϖYc({Fk7B,ԩ?|k/\*GsbV+LH*^[A}ߡ$UOuI2ޫG׉:`8V%0;ݓ{tD b (ȇ+Vqۡ ~OyF./߳Vz)fԂBiQt5 B(_ B7( >uPrDBl!G!%Buh+nCuPW{`;w,:T?V}ۨjk# ҅J)ٯl%DM甀"Uھ |fD!簊'z_Wt?GIxF͸|drcYƫVbhPְ%L_-'r(ë{88,5Uc5ܭO8dYrdRtYƢ4H 4nc&Cgњ-7r կ8d#բ$@^Υω5;~ !~BΊ~#SOsɯaK8tlNCܠF]rmIQhzo1$s/^2+ ߰;\O ] X*~K9 fV-lDJXGQ&Y6t#9\I@nm4wLlRjI},(,HӌzBTҬ `uS~+;"%ea?õ>iEW9~|aHk*v x}qZP=ib^UYͤb#;ox+59-g{fCG? &s+[bY8-838b"*Ĉ W*zt4-j P3F h|aTXDƔ#_?S e @'BaSH!ADJ"V75ZZY2:`WiތH[ao8KJZq ؍sC(V{W~ɺʚ |~P4MEfzKB-nAyҁbJ:(@@'bb| %  ;j3T ^'+2Kk0lA! UkT;?ϒ 5\*_]؃ZoV]) r1 IDAT(^Z34W\W2v:\kez 3P-<ݛ'1G?Sd RΒ<K`'PVDɖ\L%l%($"Ի0aE g=rxT sj(Ŭb*sKr{רW|&C+zWˢɝ?Ͼ:BbA{˚q$`ċ[JizL<7{|b^2Rj9]PYޤ+0}: @ʘ^&[h~a[y<2'PζIn|r;g=Q z1 ;iy&G=V7v#^P^ltϿ)|X6Kxh- )6Q*7phrk/!(`Qpu(yH>`!nKO*.[̅"VbA:[Ș|.#\;O%Z̊*Ibl:5֨$' ?>tf j%٠*&#ΧfG՛ʥn.X /=!2H)Dn+bp 9%]Uu&Ufi[Z HZ1VSՠ;^xu6lYH%eW=vd[>a}LU#(_UjיKi2Y3~#GRjƚR}.fTKU[\:j>DL H~;ܗ'&/ Q vHБ4%IS̑2ԻRyť%ˋ6:+"DVySĄ!l8ғHhw7WUԖ[d^ ~eY-f^wn$vϫvuIWF(ӔL廹:Q,?CX9%Ko _An[¬9c VtY֔fbBZVLpl4$-mUod|L޳ra3@R7U#/y@YɑRceXg`MR(.ߎqZc ƲgZ- HAdSWc9Lէ 텰BU-sml֍s m!o_9^J:x@(YF9-'7^4ʖNEa|V(Bi%HicESR /k$f o''l*O"J1A7_μNh8-b<7& H:a^H`q=ְng^EgyaIp~;ǯF9ůV4O’PV+='),}wcƱGUY[Ԇ_ ~8@;ƞJ 'R)Wn]W[TFΊ0T+ht'AT(*97X;s[^VT=kM, 5aWG#=ΘC5vhWY<ٟnHQj;kw}/c5l%T7$K3w! dD A @6Ro7F AZH @&(X$]122"6Q݈XXDt횛{PdjnXAph^4!S%%EV:P"9(ٶ|qm]Jm9 )yMXI,*8[cKd,tV<񲟧eDhZPUʩ( e-H,@.462)ˉ&\f̨F3kl^<-QBqc\CN)/Xl '4LI #$M.34˓-Nl웖qu^shXf“=sf׼>\,bYD¯ \QU:WQIw8ⓐkLwrs9Tc׳:M\eXvDOlF|OeQAz-,Jt]%YE+L] ߜLas4ݬ-B~ 4%y7'?4+Ra _M06ŧ)BU­M9w!-4ݎ\Z(bP$JQ.+*Ocg80=KЛy0BPz>#%qO><5"kbz"ϊPʝE⢍Ɖ9Q^m1k,P0 LA0-D^`c|"F Puy淍D՞-\^6zT>YmNDK[k5u,dlQ/ƥ!ĸ0'T!jB# ?3eg؆&}nQ'OLn5|Ҥb>Ooؿ_(p0ʹ*20 V0.(JK$aYT. dJq7 p7TaeP߸KR L0~icِio[;׎ȑRCڅ؇ymdw,:g_QI-Xg +u4c346`sZ(,U Pwmˬ8 )"JBgZ{i6p-w~ J3rH(Ӵ L!Z˓e? P%ߖ2#^ӈ%UW#2sˇ80P)6?`Y$ȞuY ;0_?t [G[AG1 !wĔc*ږM[v?qxZT8qgʷ;U;L|K# CbI,~e!kvYYNbؓ-ed9 Gi?|3O.0%6d3+tt_q­\8ʓݒ)\Sf믮[?opW/3#5KzkR"~X?ݒh4W›. M)0 \c&kQp ljq:7y`l{E h-M#ҜS%qYzC0bc-%w9bx&f!Qfum+]ȩƁ_ "h1 axh񩴖Ɛ @y F7בMc8 ' j|cZ$Y*-`?Xbi9nfQinx9}¶ͳY1b'?s/O>z_f1<0N42N9qpf|KÙ\ OR@okXwPWN+"۞_|}i;0m?~yi68K&L3 f-h͜'&ScᳯxudVtY,q8ER5&sNX Q\+aT`d+/ڙ=x9,iBA86AJ!(J0[Ă՗C1K1&`:\Zܤ*WgiflUT ZYZ.F(QXu14dz<\ iNgV%NQQq%3]- _ 7;>?9%XыH|&n|ȯɚgو5 `( u]3-\ۖ(GJqm8N-bjjYeQKof!(rC73!Eu4 1OQ3>x+n2F3CbN>Cљ'-77a'CYQ|rzbզ!B. HF>40ytl;l0 C,q\W$aJPpX/ W4$7˜"Zu [3Nx/mYY7{R 0(L:U%l7^K⻎l&13o;֐Y+d)˰D%(97|LYG#{Uy j@Wܽ&ݦ{s7 i@?qs }!N5z=D6e8ږAfRKӹA)K2ZQ,\pF 2#)"N5ah<(^& pWVK/wvfYo E*'}̸j])U4M`jU AdG-ZNbf}%¦'&|zk&I[S'8hi~_~~dl;Q~Û;nVq^^HK &+ew,P) Zkz3#9Bjv< e ]Ɲ}T x8N:$U6-%'bfh41QdKucS`^52vC+U"nKu~D^iK/IM4:#3YQd/lG) Y&ǯay= Xͼ4IhZ*@H*@8DJ2}?ۦbΕ.qfkg'Ĕd)pbYr LNMj2Oz9uݞQ=*}$nʄ B[PqաKoH@Y9v=>#>ӵ(AϋjH :ŤI,ych!PDI=-^qbҦJL2jA!I.+i^\Ƌrc@c$C-D$S5c|_V63FR?q̼zOtiV*=Q k7f T Ԯ0qc,l q3L 7;vWlzyftdD0N3)nZZ@Wu,dڶe8%H|:C_+$-1/nbUm.a%R-s}/.Hkf֚aQ1"&JƊ]1|^K O{[1r~ J "PsN7{% _,1g-V~+Ҧ-%45a|Xc!^s8M.3c`w1zIˤD4n%i2_ᇼٳq>e(SB%aX103a- f/йV)inh1(%U5HȤɯ-a `fleSr:CfN'I#yc! 5QBBkb *Y-Z/[a@+4T\jV¥Zf[,U]?%Ư3B #9c,On8x}͞0b밸ryeH8pjGՁq4P _-پ{+^>=YV9DKq1BcM bmjE2hͭ1=iVf H{9D0O*H<Ra7XIj.SQ4P40.5%uZ-y%Jz\t:G=k՞ zKgkEY.fxsV5G0sbJZ~dy'PX9A bA+aN< Nl5U 9#T=RiGX/(ܜsm`=00@nў\N0wP "["D6)G^~pHPX6H['|c72Ӥ#)X ̔qbk&|c1#j fd}@ gu۱2M #1ʨV̳4!J{?Zi4 }Lg"8R?p\e&oZn ͈`kZ|YNLALyb$ dkHBJPt,>- O(@'1PRF mo:aYQNt& $C [U?թe(Z֠x!#DBhgwbu Bdt+00Ͱvg-(CuDdU#U!gĄO )=xG&O")n yG{?,c#yUxm^е⵬EtÓp7sȴM}U۷*`vv]p}kUǿqoU=PMk,'gtTn _ZVdLJ򵬰pZ%`-9aSsϪ-Z/eC[+eo-KNtfNePuťުed-u$Z wߵ5ȍұ)SX=+q`2,q7ր*`8/'^YЉQ+gK}&;RS|T0( ?B#DU],," XpE# tG*MH5X kb4r0KOoSogj֙ZYp9E:(ER  pJz`%Pi5l;V3`bYܲqDN+P #yT|'?I ?[ڎqc{`?w ]|ckyr0r@,\P4W%D^a44 ,ɞJ0q]AM -VY zߴ3$ ԀkB%TfKp !qHg02w Q @so11 ESͶ01bP 9Q`gh4b.،a,_$JG!"`gh(+0H` XP7ф s5?uTXDkK3[JTnSwSJtMi!pewܪ1kU:OTH~Λk#q\ہEROK)@d0zb ѶlEwDb\=EP(Gxqϛs k[6lngki;f ,OB*-AḨkc*Bb fm|T8F5 l{f:teJ'*@ʌ4ЊϿ_`=~}^|zF+>{DI3ᪧZdoX8reWg&@e. yyaFA#wt^AO%DQ-}iثaSҶw]G㘃t ۬o?w} L3༰׫0W|M?[*` )m[+K|vAN] +XY5*2Qq$ c13Mi9HnApI .NfA&+K(d%cq^G%81D}N)0e!YY8N93Ͷl9W[yGrW|$$RƉqs(']mzBS(1̫{ĐD!!,u %͑Cax3C!)1ThfQTcBHt"F:æ!~%?{Ó'i:Ku4/b XGwGT.K Z2ゆŹ'f(Z\MiP 2Ls9+bE=D)l;#>8Ci)CXm Q+;&~M6H҄Đ5;# Up{vKLUPw_YѺVY]s@WhT&\Щ@(- 3?8< ?峯iӶgLsF0?y{ψ)͆X kQmWG1U*thB"bh]푭QEZ!gFM#$ۤ@* G5كA7:6  !1 <̪d3{t8p7acN̞::cth1p7E_[KƑ v T/ծ94;^Ł+##RDZGnșcʞѐL*M!'rNFpu%z`D3i'r+.r:) ݈כ)-rԲNj[5k"T,j=bB2&D$FB}PDX@r,,y⥌GDJzl.hmP13-fe9~ɿS_0xl KAmKԊ5$e)sܛhc&߱nO>GkjOMOÏx~xsqd8UV='<{qYov0ahO؈S\ob:jAgd[VrNJ6)4O5C&|M Spç^q8͜fbԨfflx%Meڧ)EHSu̚&?54ERLkkgoO%6+B%]sh-9}\2E4\P)4g`οipOkh4!-F3LY~c>zyumbG߱a$FwV'F!\uZU{vZI#k0G' xnx%ZSȍI]dNx-W@@EJTK!&?NP{f-jiȫU~@'%-OK|w*L!ٶdmZJuei`hfB_mY|t_~ÿ{kUOqXxrk`c)^NU xəbT2~f\wXUT]iRDZ'\g|Vr' (\ >cpUE2sUDESQ;1ӄ1nEc4 9r@LX{HH\όV|^brYCPkd0a4AkJK"ovEJ28KRG= = 8 XõiOke9uX\O(#zsV4\mș1s|ol,55PPqRb$×sYFrZ{ ֡5]Qbz}s}7|1WtuTs+c0GXqأgVU_X5.KC?G{ b3VVB2^o7r ZjuX#R؆9'h+gUbzdd'B.miR8ZWӃ5T=.h !p^>qf"1h>l KzO S͛Cp4|*-cyɋiB?_F.<UŖRQbQqM1wZ%ui^Hpy^ԗ]C/Q7lyώ̊^a4j#֚1jDlPuf%vZIE-`_ZwWdfKqn.5DbӎQN)b"/G|}Ϯki,Y-&e5]=mTPQ  AWPW_)]WZ%3*,3 kwake_>7;6-{ڣm#Xp(ZG|0Knw<{/NjBf eIK!Z !"e̘r(`͢aJKge _+E_%W ?OoUڻswܱRSZ5#ͲRdyUJQ-\@ߩZpeGEm6(Z\P/O<^%Eb`JOpiPgW|q' ,2G,ʦo~$<9zcb$DB/e]6czv(wÜQK^!=\ꖖ%Jhӑ#ȶYH (ѕ;+ cnl 0{fjTi5EL&]P=Ze#/z̙]#8GkpI\ДHWu{:y|$%𑫖'O_d? Ҍ'G}'RbW[ԸF OSOoy wondiZ*Cμ>b4ÌtF֢hRGG9LI$b0*+Z1n[6${L˓k s X3cHܨvBy5bC8b-SH쉥G5jTdӟW{͆q"e\eT.T,ܫ%hz#Fnމբ}N@Tiuή4mK0K)L3XSe [GIe_*YY5cf rNu&U|J4#F~<`vn1H+M< eCԤUWW3uWaw'\N{Uʡ<:T+tF}~zL\nPkR11t!hfY̔)(hޥZjQ XPJFlVJZ z.ڼ4䁯 sҧ.i`F}nD5<”id QATbUiY=C8G c/_*vsU%_eIªGj4&bfl ~|p~h)St |9ZWj3s<'c^W,l_EVu`o\r1 L2'aFB Ugps%Ve!6-MmhI=V:&7il6#Uz">o!@oqvbVəٽ-2;OI yخbtn5= l0`gJ"tF{#1|9CA;r*/=p<?fR_/gC>#! d;BNb>)T$qXeF9/K{M鳔ĮJĬQb>Kh@f9m{چ'Yv*e p'&f0ѷ 9hIc,;#S{?̅#1ﰆ j: ۥH Nkeɞ9ܰ1ƈl\>x2܏ܶ\%}8o=ʰa VC)I>2~ TWGe;:͇'*,>pEiŚdȗa8vյ̫5-9su>*Eqw.))?*( ih@k-Y]n#"AmDYRbʖ%?qېPY_/(GI]\gȺJc`RjVj"]*WLgRg/3L"vo~oB=~wwĮO'&/MJ:֢ _=J(0~-CN9mcœuYA3>bqki Da*)ʔy5]3'>5_PYs P=>A?Ӭ$I^aYVYGQ/-qVϣP4V ar߼~ yÈQ5C^0 +b.*yj\}V! NXBf(b)8'UHdVBc CSvDM" d *?5(%ps+y&Vї2Ek4z8V;;rFp֢5m鱅{_e}`sݿS|t VqeGk mg^57k?Tسs~5b&BwIr$Kd3+dFnR_6Hɕ3AC{LS"'EKe۔5wTF.+f' IN6[Fz{),Omlyv=ƒ%UGh R.48 ^_.Hw^ҷ]>ovJ%k>"*dVDbN&oo ND4GR"GVJU*k*tkܼJ+zU`RjG;czeO;%+D?mkZ|5\NDFĶpeٴXqѴXج9?\W Gb/f̕NAZ)<#>0;JW5?}?c\u<>p@6ly}ϱa ~$R`Кu1૪ESM$q1ppej'WbuFI)L|w5k$Jbyu/?495OYEtMiR C9z6@?Xwc82DHRMadX4ꊂlV =p=)lhJVi\\=Z.$yr@:R˂nP Y6|BVF+/YWI՗B+, $he3ť^,^̅\m #>[.K/+ڌU Z1䁟y<\:>o8r,p 3Ki-Y}r\s۬DU0dt3"(i}q9/Wd2qh@|2}BZVzc(L]!ilQO%SV]M*6= /5 2y݌Dƙ#l 5e|՞cŞ zZh9d>he$G@6|ѳ;"ΰ Vq3ݩlPNscf XSorbL}ѵ/1#9cƛX)YVCQhR7/};U*5m-н?8-o5}"T=/ UxOJ}~{~D)ֿߋCϟė O.ߊI'ZIhb4zr\KRm ep$r;r*/DXKG;t)5$ LؚGܐJ5p;?l[ e/(hv>#Ԭ{2c/+KJl;~ '?!(6xO*%EAȣΤV.Of(Mאciu5Gy3$[=/ 7k#c@DvTCV~`זxUD`ϋ%Ι6ٛ8ls32Ro8;R,-?px0R3pPZ^uS75q z >L2 V&~#X)%]拨#NA߂tSuRi.|.!-.E?mq!|a9sFy.\j2ǽ{2ټq|Шvqz7JK)֏%>g}!ʲ#cج:B50gź,Ex6S?/U:p? ص UuBBq,u/򌦚0Qs6+q5lrxhF\Inz)Z"QeCZ(zBg*v5)~S Y&X֊,|ҕA }WN8MMt;/ƭYqs#q|{qbv ˜K|[p" :>MVwzcWo)!2?G%cGᥠ睖y8P(E`fx~Hiˑ,B O"NNY~Y3 1Q"=Q ٟP⸧fVQiޑ4~_sD "ZN@} I~@轵s8Tyi#+13 lioeEV1B&KFJ|hۆCOy>mG_AK'\$DD!3q gCIB)62)Ji2wX[VR\o:OT"rZ'aQöe>xӰBVvC{P\Uk#>ׄ@=NrZf)kCə!">W$q"[iްxQm˪(|%59źI+bDaoE `˩$ÊQhԹl}v ?6}j\mP9teǩ5MosP yR>UrNN'Z 4 &aǸb#&G^-K!PnP׿!}EZ#A5U+u.wl*<>zN%$,u/[8=`R//bO%(>%R%mNNiP ! m} IAa W+d^HS#C){HKD2*=wޖ"KӒ8@䱆 *m$-Jib тS!4ОůQҀA;dOL4%N!x{Bf s51G3TWYr`cXO6Imk ^rxn6k֨HY 7&wU ^ V 4; *c JO )1 ZνԷw(^3'k b;䧸x">vo$yl`0E'\mrK1SYрKH,yfV 9[a vI[ƌu<>䰑A#RpH۫kűCZ:00J;q2"@ep&Y)ŇMrDKS~@oE6E@_ԂlQUh\3(lˊm5gٗЁdCI$YY4>1IĐ*RinWlפ$|* l:Ա c֑mSew@gZkr:k95jd7NJa&ZAdzˋxOpWJ: 7llWlhw<쉹$K٬X<88g,S^ *.G9 v?.#ꊮGƁGϪ!)GV9RT'zRY7Ȥ„sϷ%:hZ)OV ]$I "{UNduڶQu:Vn4#.$2*ugk#!%K([+dQI*MG|j/DuȁD"?g3q<m{NIϔes3gb{pjYU5&8F27,VD<I3r%OЂπlݓ]a3{41Dlkp~K)4xz놛ce,&f\1U]U f4yC( 7` Q̈́[Ȋ c۰iEh5֠Qhw>5L\m͆sO1ensK=Tf V%V{I˖U.+Ա*^rcb,}gV-7k7*.Ѫ9q5GG!¡Iţ2a`8kU/rREJ ]0S,lo?{gV7'cZ2⬨ˉLO,}n7:]*-A?#s3*-/-h*TFEʤ dhwsm=%Fƞ˶Qɹjuu)&Il,ʏbwwnp \Smj8I!v*4 $~mLB~_y?4у2aե8FLQM,Ȩ&|2j YVb |x`;4pm=X9֡-! g15SʭfG/X<#DzyEx`%DʤPqJ RCb&Nivn@irm#ps#QḭZꊫ ]q=#YXwhErm~'{H1s< a2uO0(3 j|8[;x8FEo*׷RdJS4ŋmN13D0K׆֚%Eh[rB4VIZd髍pEX7À(_+/XEE, S?̡ܬ8)PA`=ePR/)BFt:DGL~_cjE?=RW' +gP4ƲE&5iJYV() /nX5|ؑGUjvԐa]v?;w;eՐɉW|1dz$"qM]]_k0CK䯑1OB5tdOJ#懼W(R#Y`d<*b_s1s!xK\ Uj|CgPp 7{!dҾ8jB=yRysqeQ[1G5*,hжq~6nRc8dSfσJdiKeKxlOtB5` kZDkB ^u9SJh dvl7%X&r1UbqW) m[=<q mzƮl=7zn|JU?ϩf䂚kn~:eckg\^%\rZk^sdfUƑ= [?90$+/Q,c" }9v..џj=kǦD%=fB8c DzFãiVbE,TE/|Xn 6Rt"vŋZzc2ʦQCEjj!\џ](?/qu/fDت kDbH!CΜG(Na2y?: Tمa bj"U i?Қk!ְD2uY{T$n ]bjq6bj)lTg<>W9h/h9& 3sKsZ枴q[K*ibW24U+B:LxT`DI-*˰-FZQJ֨7)eS{%YOJTt*U5@FRSV 7VΊa欼P >15ߢ-C"GFź0JMQ9M `ʞȞIܒ"ړV5wf*z6R ^B+"ύB,p8TYq,k:sÎh-jk9xm9umq Uy`uyAǟ̓rdG8d Q4!0ɤ[KwSEAò:91zoVI.bOʣQƬR7 J{ߐ&czȤ7ʬDLexRVYѧ/FLV*WZ4bЉd8B(E6ha?^: m(c[=j1˭Qd;qD{%*LNMVʕSd u_[~?|öcXw|TWC} z6YO 6UpW)%R+LbҵDP\VN-ycdM Lж(ՖoٷG7zͶ?~˻$p$yi c,f !CKg!D 7m=1r. 1!sk6$a=a> #L'9aHv4AW*zb3,&*B)7R&uUwAs;0TgI mdl-ۆ/gA|)EYA3fb#6v Nז/>3eXWF@9[o#fyFa.'9kB-E%A\_/S3 2{HMiZg|14ұbf} (94C,! ҠD7؀(M6R8)̰l**(Z^F+1FRRuFy$#B<A`4M#PDr62b܁sF&b )<&YFɚu͊u҆ U+GR"uČrL6arNmC'5 źaSK"/rU(VPa*cHqkJUasY:K ~%;lONՙy7^ZDSm"-.4O@݄=[状y8#-? mՒa0o-nCך~$wj!'J=hmo\D\."yAm=d As$'}}g"$hC1HjKJeQ GҶ>"ծ{F ϩ(No!RI8,ш''#Gϧ~㻬7w|ٲu{qV̦{Z%˔r4GEjBƉ>ZF U)tD]/Th-O ['<~'Y->0 #&cyCH,6|ЖmC6 Bj]qLRPGɇJK|޼{|Q]sOC2MEԎ"FA5{&qU~) KMWZׂ~iK)VG;DZ@5yW*sMqXخYw4qTMb¨JEjhxyzi<Vv4SF pMT|9CY(Kx>jo~5/;l~ Tr9 хMP9e6TzgI< åБuMKk*k1%%HHXJ'Pl% lLxƘWe*Mf4d0[XPT>c fn@rګMBrGX]˕*܋~bW|z@SRNq_Z4See̺V0ɨHh 5][;햫5놷w|'y_yiEsﴓظl!O4}3 | 5^We/>MVNhE‹-C1QrQe*r necEP)MyR+:JeB!eT=7H70߻|ULOcYCQxEjQ%-ZZ_7ׯz19hddhUay?#Y7ֹ@prd])#c&B2%5N?r4>i?4]'#OX#'A'^@LdyXLUL۪Qҳ9SzT*-'+0;Es<O'w%]yt+MaZHBH":geԂ ̕d%3` q. ңL{**@=kN %@)EX'Ahf/Oc/| l<^Nq;-G3acЀKi 7jƬOKJϲjBW~fQhr,Dr;nuI4/n/H? Lj/NC*y$NW{)%`&-n8kiBPqtaG #t,SvbgTuq'S_u88 h7)[! JsTl:l͋0r:k٬q1U4MnWM7[kgw`*6%S=GL{,oc=17چñ.\ZPE1Tb|Z.ђ9$QLmΖ9F9M^5\C2=s$ym$39zcl7>tidz9CGT11E-xJ]V.WR˜(ЩZfZAMg'J= NMvu^( i_Sm^#L!E}&6D]ly|2UK_Jg - &a*>~ٶlֈ3W'ffh=ccYXKN9)]g6).0lLX8g4k EwwJyfҌ&䤋&|}@J;Cvn#g҇8mHNÀh[W !5s\4 Q8=M-Ҙyhwm/YNs ө"3fjeHmer6{\+tDU3x=!E@I\ZVM ^>__;_Gqf,NpJ21B_*Ѵ-4=EO`H_'\ՉWW/DǨfb9< >># = K:@Tnڣz7sEc iYr[}ZNWFa0!'3QWn*YƵ(͕W^CK[UoJ0 dF綋QO5}zf6Q}*AjD&&FWZn߲R:4Br՘[='(KgR\oZ| *l,kiLȫk~;t+C+*ys !2SZ<_,m+^]"DAz_#%bRl$WKPh!j^cg*bL'&S3KاZqC%<&lv9+I7|1iSMPWn9Y%3]]NMXOzB ?AZk0*]lH:hV2bkYSN@,XfAEkƮ489hJZ /WM1) F= *^fĔPr'̊'m:iw^byI83 $/"R''N+gU GmhK ,M)GF_m釚_lI:- J}A)Vg"dC\NѺyHG ȇGߡ^qjC˫uNgq~1#_[+Gl ;]iG$&AjX!:Yۥ帿DI $ȑ-+w^/Lqlܠ'햞1Z,; "=:Vj^mUg~aSq1OڑBx*ҕ;T_~C,|GWk/~@D Ӏ(z=Y(P&)& %*T dHgbiWfN1зM֓4]>!etʬɠkU=3e < mÚze?jbKT78k4dA + $/\fcc:tD%05e6)Žj9n#XRq36d`ϴ 3%\p<}O_ aPN3:4XdpZ#HВڬ3*S?#_*ۆFFZ[uhL|B ֜g]Qpr.ƀpwywMCrHMl/q`B^DW?a64múƑOWSdچ βjA1 v[_}#㏹X)ʒ wYg*ќI&@hWT3 b%FRq',hH/If k:7;41 b1NOXzPfejS򆜻\Yz(AeZOH(\X [+?gîcչ5J%ޝ,#2/nN,;}h,13S K@W2tIe@e#mqT^͈dYV2ҰlEL rd]̙ ?UNYaS?9&FVa,(^h8*H$b4ԙ5SNi21mǺnG%#h3Xu ޽Y2MO#[jV:=),뉕e%ܺ\T93zpQX3xsyE6DEث&8IBsi #{=+uH.fڒ)MSUAC/W`Y"SC0Ú2M0z6WILș= }☬fݧ~'&Y'z ]K 8ȧf̊0(j(D`A ڰ:sAG]? 8^Mn*]݇U?8s Y/_dQt""M5t9uR(QEOk,SZ=gA dTBx+ [zMA<"WΖhĒ#l:qѸonjxxxqHo@rxkX[nkq CTME;(7QJGZz7{(̳VqLfΊ럲nOJױ9~ke Ѽ``V%Dsո"e~4-*q[>zQ=E-^FwR'xanȜW!ӬGٛZg^kV>M4tv8vUvQ 0(@0@B & H̑jXB%A.]i۲{3oFĉW5/[9nwЍַy~8cB=] ~r~DvWb&<9a0oٍl '5>6ytJwQ%f#5'yrflj2ˈ[VZY f'[I6W^j2xYH}:!r:e9c k[/&\dA٨2?͍͞ wL IDAT:=ˇ3BZTVKi#'Hs*#)0Fmߎ^?zŦMKip"N[>&| BiٯHK1{t?'wR vj->v2H)7Kӣ1O4|mNbF=#̸ypBt/[P=y-i-Yor#epX.luV\$t MhdƁ62bgw<_ÛYr%~aAjbf` gEƙwݖaFv#!W@Tvb*;r`,LL[5@ԞLPZ}b rE !2-mS<|ኺ6aK`{KOdrtjNd y!'|M>4'S6#R?qx7GL*D77٠yxaCڅzSh+,Cmf=x&G%_a_c.%qԱCK.;3\<ŭKo,ǓKp|edX3.@]n'L?HSӫu[*()C{g@Tlo2/^׀˔3̬\ 2eB` )Z!2ƑaDK |뢞zDh[[gN*6 ̫7`:ʿUؑ!'aTN0c zԄDē;<}Ο¹XK>7w6Lw{$vA JAy2i1ln:O=U%KƘ3\Go^~ \ =H#=Vc]8^U5X gBlH`iF;"̅jCxs/9)!UCZǨ'oTrf.VR-CvSI{]ͷMi8xWrV?VW]9ؓe|'#[~7xAY969%.Þ|A#v@&'緜XnnEzO@0'J9=lNBC*q*)DPɧSE[ \CwWog^Uj 4{5\V~[0dmO=4.5*n_)ty47+ i_i⬜Ӻ"7Wn8"saWE#)ޠk L3Tr.A&[_B= (ILVLI(!Ӈ3.*CJ+VSGeTmvkQp> oq#&[R.7tz+Qk|f;8W 픑q\uZH؀NNOe!oXIk\pЙ,d?aPَhipc1Cc&t(Κ6ߟj*]27Ղz$ $hZ4!ce sQt嘐&o:JfANdTةn (6'AVy.o)u&_z/^c-D*E3!23rUd 81Di,_J|vW%xKVAz]'ıِ*c`J-+oOos"ky -wG\ `|~ h Fk5$eWB=֋"|(/s@2cq֗.boS.aAN4b#v'- C&_ܡ \-yK-ڢ8 >ZρY|TeA/۞Ŵ/{\tm!f`ta+K~FaKSSp\|yM25yv|^):<6sb*HMrt_Őa3v=Sg )m11[=V9L&ܯOAyYY'܈PW}j[tB#^w?s6ڵɤlcZa0^/oTDM@wb{6Lrdgvց2q?Cqj";>)77̑xG2IG̒h u@ E&DILn6ޱϪG*^uy?/VsbJ!3,aIǻؿ?n`eqlHJ5)oS-+sdmgFآwhnZIS!Z7!>@CJr4+E6e%)sFpq [Y} P;.qr>ʽU5e+cU#[It2:uE|&/H#ױ428˛HV2gGɖ٠ aGSȒ+=nsYmI .DDڋv"g0# 곆NUu9[+,~zLÖj|O<y4)Wr{3▇Q,%DBXyjpq\*1ڏQC%f1[xDljw&ZlEg׸a.b3Nf7mIzyA1kBed݂!|W_̾/E97g?1 3=ab'rF ș91E-jO gM6JwlEڅI:g[#K]X5Pќqۜh]GM$r5|1uya.E U¾6-#&ls)0L.'jv7>5=Ue:M8t}33~8(TGSUQ8X5\,lY00.to*l \ysYK$wJ?s.'2J4&W;y>>3Ζ!´uSrxb%a4A`y |/X:/gqPULڒ[1d)X[5βuv>|~4sfE췶7d] d2UBRfu`6̱b0ge2 sff Ӊ%3.G䛅N{\GUb^an ,yE\d=ƙdb@ =e$dFŒ9ǻtn 25XKyOr+*!̼|l?3%a 3 |_q+n&+Wk.́7|;nw|o?4|?c~)S"ˊjP oY 1< rD ^_#d[8=8aƄqn )kѡZrk 0LA y7=["oM= 7yx`fw~jg>۵`rC6dmYHB2PJ+l,TNَ9bRRlYO`@eiT?C&J+V=S5)k PE2Rws~NOrHL\q&&V #9˲|$UdP:Fv1hX*ĔyرCKfI'"[@G-SǨ Rḧ́dRBjz"S` jM(/oqPv$ WmPeߧ*{{ |H[vSjB-/էl6 V]wVag4tLT5i8ř w{J** FBrc,w[bxH#þ5J)83 5xO^*+Wj&. !Ӛ*9\R'5x&ӘVq(n(-'+p:l"wӓt;X"Szǖl%=l2Gq}N짍ns`@;OksRyq9ظ^#dcG3N3_=Z10HUZ$)6-x_m~o?ߤr))xxBJH٭vHB=ytǣzrcF$a X3}Sg1 7R^|ғGKivc̙&, 3| 1 oDp4eżw֢Mn PkR/Yyyg74\焎JNɏoEk"Dpbim!!5Û[9)8&%,7ęgv(4Cm2bNfYH26W,UR].B+<7P؋W ć;{&m FdD;h/pY+ɢ쥩磍sՅɑL8'{w-KAfʳ;7"0~7[#HK>qG_X-(\}9j5!:E2v4I&5k>5*|P AgP~aˑ2l 1"M>77bȁ/Z̘8@0$՘!/_zP`KW΢odvNnܰsuRķ+L#-4# |z2]bnҭfp{Xa\mX bY 5zraE>Вm7L#{;WrOV+3|!~)Y6SaL>N+d-FINϛyЙHi0M䔌5'Ij'j\GQ0ZX,EwjAKp" mcfF3-[9bDqQeku5\6C*"X띕k=7+X!EQ bh='eTk f)Vڅ:klu_13#"bxɚ !DZGaӗoi3\Ezlz2\9%?U5>y{<̴5>a;:Y5 cM5-m\Yadt)X{%%LJoXxww61Շ.?%r/ $3S.y~aF$9jKEY{^G(`VƑ7I'mTvZ=,m%,Iw +o3$?C<Paݞ_ԀB"&"%K;O9|GpSn`VFȢ:S۾)[[`:UzAUXHZ羙{5jtZ;fQYONA0Xf`RζeԈ`V9nB,R#дR$=Hs4Ut߰1Mr]d4~L"oUOY< [lgW[nny*S*6Yv{䂮 oеRVKD *\*7z8D!×w.-sk=/o_gɫ;~o/oAXwl6lV3;?燉/,LjI3+Wn&tr,F-TEKZEjA VXdj *uI\Ad#h:_rv,454~bPle ceU-4Oi1u46evT(v@ v8E[9l(/Ơ#bWh~9qfoc:##Ϛڲ d>m5AN H(HyIF/Np=w+l\P)Pr4#J/=gG~Q H=o]Kkk:סc|%a(QrPOKl9e7GggGt?DPW=,3Jp-6ؙlk4EMBqJ3iWpB4qئ^7=MC XK2kh-y3 + Fe2\Q{/3fomp+̧oPr` B͙ad7V0sdöaPb~=^.56ն˻y`[MȞy,3R?81dߌuT@&bw_ 5*-3)3̈́)ZIq5# b6L xt ְ:&h i R4xW(triq),,D`ZōTc^$0&Qo,|oSRO')5ƺ<2*+OIz&3B4uyP1qu~&A(1ڙi0&0Ul&`p+e{VNxK;@2 p`}]UiޙYԎvܞR {uرf Tj@DOz5!1 ީL˥ ږVrKV]?|x KHQZU"ZyiNT&z^cY|' }`!ɲ cC8w۰nkVZXGֆ!K.y99J>/.Óah^nnL[qdf1+!yHK\Z8vBp;`nW' +LD8:C:Pڂm@V5GfCZgWE~f[JxM*3݄x!X2/K1 3_["``Vf1\W̑P{|)/oq4iKԩyʕ/'JyPW!*;c7" k5noow~c3%5k6=펏o>᳗ #\{\lHjͼ%YISv, Z+yb,oʂ0LABtGLW[ _g\\@XOHQ2]%)eܢL^Nۼp4 6ŃX<:w|y=Mwbo}cW[6|}\ywׯ-V<:^fx~CW_͖_ac;!ԩcZ4-Ԓb.[&II3M}b WKܗa2.G\Y L39tXOb\u:{V]Chɉ!IХ3y&u5vKmEYZ@ L9v+3T_3J5oȁ7Mvf&Eނ! esi?W[PlQ*B]$!&b|pͺg7=7/׮"\4mk3o-͌SFGH4)ҟcOhID݊QdTxAoN'<*zaGll&%!֡4x4\7L9dw|ͥ$6MJcbE?.?ax8gw.(Tj5MXv$%LUXPrsUAޥ\VDۢg߿ß~ƜAl&򒭁̋[ƀT̜s<: UuLfh-V`$Y}eefkUnd.H~qڶty$iB #)OTYjs tZ}\[U< Qbj ZsjQs.@ś]hB/wL#?UW+V|1OR?5~&[?!<0fv<5扻{^s_y~#vF%QR B9vz92QW$4=d*XYlD "l12s"H(ɰ+ls4T \.vГ5abH9Ȟ!rg&Ta7#Z'Ni~erd*f#:5V[O=EԵv bBLʌs)VN MkC^W|\!&]^Uwlw(+\Idš$ܺ$Y͔)vF{}~g?o ʦ+v՚vf>S3_`OëS3{ItיH`S(3Sb|c4&2 H 2SioVZ"s`d{ao%u8E`DHsm  0D.8)k 3GsUFT=O68r`n0N[{%$fCJ0+_]lK3ok}8̬ʪK. zf0_ ƈL0 jn''bv_?)3rP'3N숽}}"̾](k984xVEkݞtoT2{Z|lkҥmN; hn`v\HNdDҭI>zrSB"t:c<ő5Iװ}R `=OG_L%35m ayڨuה9T+UW[ n*y0/)Q4F0yL7# :olQRX Hݣ: P]5wUeofvRj# HE]BrSp䎟0PHEeDW85[!@+a* TN,J¸1cUDpRvJni4l"x%Y(v;y4!_EYͦ &̻<+>SQ۔Lc o,VnCDF i ēfD!3WF[Pdp5U>{5-M6}}0L^;R !ef^*?Q2*tP^~]u CU<["n.ڜYό+#cչ2 6Y ԝ]XΒ8D3+9QQdP;2h+FrnW6ml,AvѴg.Dq ^pI|^s~hj"r mmv-7GGx<mxbX(oo@_Vm>y(>3@Y0$YŲWuE4$Fǔl'Ju :#AŠa 8O 6|`F2#mSdn\&3ԚZU tAlpW]ImԐ^3hN š|YR42Nt#b9Wn8 OW~Z:]Âռ:2&.K.nא]DbZu4=|ǺTz+/ʠ>;aٞw?S2؁8~?.~dwwL;8?w| ؅PXf>- ;àxX&_U'2s1kpuPFkNQ6G)Xf8|K f. ų! ưq9ܜkB9&p}s)RB}UUgY kTݻFI *9< ۾"$X&7HZ䖙Yfd=r3E⩈G!Wp(h,TT f亩PӼP4(f.Ǭ֦u낃 Bury 9oAډO-jle %83֑#91BbgکZ2!SBaM8gDԔLҨϷOn0`]Co^þ s:ɯۤ[rXĶ@vdXnAP9z.wePAqcL@} _HJ.#e|1l?gJίID94e\V32QV\ C-zYg4Trf"<>D{fȩ15B"GNtwXGB`pE{q gZL #5c*TRW`UiJ҆3-%\"f><5ㄫ6݌uXW|<pU6Q`MFg>I:NvÀ6H &!xrךfl1haJ)^Hn29Vms*ޮםpF QY9=#sk+tRs0uW&@2>;(ה71d[eに̿(Iۺ󎂑1q:p;~?yO*8&x0rsx=OSXAq#ag\3c7MmGScT YY-}-- .#_gfKW0ޡ5f09[x@H14v7Qvh9j4^ >J< WZ^FWǥ~Xz ԛm*^b%v@Tͯe˽m(AD%e<n*͍lRqvPƼ%H& qkXsHFl@HmS{6ܘsf~-! +y؈:#$"F|y' ^?]< qH{x1-k=FI!f1ُ\*;Ik@֜oxRoKB KHќm~GȢ3>c>OkdlyB&1\;҈YowP42l3\NΘBÑhŵ%W!OCwpb{=Jфe$r]uzFCuLє>kLFztJ!'blyx|XB"<B^ >7xP5frw6E~ 92M.\&5xuxh%##b"&xOHm*r"*n0 3a?:Yİ<]f] y{Ǘ!zb0WCO6zxBt!KMvjiR,7=^"|I.m]zf,H]EQPp'+EC2f-ĵ;*bMEq,?r?|,}%b[jMq D[l.yUsm 6v&-YY%qC xjl3$6Y 2Fơe`qo>2D3Izԅ, 918p:oyc[ӈ֛#o9]pn<3kѪfQsELwD3)_C;WOQqأ ø/O??ǿƒ,w׼#O %pwx&gxx|\Xgxs<],BHmn(Ԧ]u[) &K^c|{<F6Y<]^,hŹ$E֨C9՝Źֽ~/ IP'q5Wwg1pdjRM*N0A-V7AdsO3Q&A3kGS tdC}|{ZP !qUC((!biVrp; a7L#O'.=o_q/|}¬u [bN#5di(z:X'Řͯ;_cXa|ل]fC_[zQjC6! C+i-hea3>u؇)Kn8tcEbGWX΀)iTF\i!e4istdJ;=Qa;`!O,q[{b旯38GQM̰qVht)1vMS3-Ha>qY!W|\5|LJOXݑ#?[Ζ~BNL J$HqbX1QjBm.fF (Z~x!4j$MsVJĢ=*qNJ(#SE%rIbrQMfIuYf;*JUC Q8S\cQt"hھ(!r/lF%\@+={6GE^hVM4;YJ ® K3{E҂P]b4&&GHLSxkyBCղ^La P bEw/`'**|[io?7۸2/,@<>q[zrvH [DBI0_pK}YNM%&Dng=mUgc7۶YO6$o_|)pz:^eRuj9k4.u&t"1/|\x8#5wUP 2[{iIn5yqU/-\/d[[m~3/jCPAP]Sm̭jkʄ}nHݤQ 9T){P`(K Id H ݎ1Cm,(ُ8-`)!搧"[U#A6<*3o]U>8/ȑ|;N|3_g>o=#ݟ>!LĢM$y)%ܼZYf9f' *wAYQ]+N\WM_K0./#<͈bI0h͕-LjRu`D!4%4ERϺ)z*^h\ b+YweSū04>B, mnoe't+V!Ugy.[נei3XT b5=MZ%Z^p#O84bQ5&S8Q#HTRTNTm{]D8Qs^s{o,4kJ'Q];Pil2xw;R Qx ʙkE+d;NG,vׄb*IG2Ȅ٢/uh TVέ3T#c xpd~R/]@ / 䄔)N梞i"nKOc.(Bp :2$mtD. /@I-i %b-u h@9~WIk9 񞇏iY'VUGq7`-޷iHf@JHMa崴ZUoV +U1s=Q K¨*yR2E8/ݺ~)XC$hZu"ubqG)62u 2Lˠ4IdA4r8Čm}lܖ%[~"ҿx,i_Y;A.'QХgB+p' *a/5PT @F[_B<ʝ>YM'mD*?!NL>Pڵu l*`v'zw\2^뭬ಠ<kW??x7ǚe>S\ѱs, \K+5s[u&iRS Vi8ĐDNJuyS\ ٳtFc};ʤJy+ht O~ӅyOK  t M~rdWݠ͏ld*I!r jĹdNӂؖnĪjQ.V/r߸@(鸃ec%}lU@z O4Rsh<'!Z4 bۯ~ȷ/<|na494.ǫZy)L=k<&%.0 &g0td*j;ng^/WM]ի:so̻BH-VT>"puRkI% D]pYҝ+sӅ2-kQ#A`ojIݲd֠nz\)TIȀwS~m#c 3 IH鶾Y18"2.8^K(u-+Ő7(N6yՖ= 7O[-lmpYmRue"N+ *xu~J6DрbP̅Ln`A__~8b#v& K ` ɩ1䉉 "g - TJ0qe46'>u=?È3vG~{O393;47Huc9|0ptθS[ga_pB+JPݴF\֕镺²C0RdyO`,o O Ktv=ZF XR;}@DMU]EX!ZW=%i~@u`TQ^Yl(vn2y_c)^v|*EA )``G\#5)LLł`P6n; &w^W3|_ "R:Kg<-\"=PEƚ׀J](FթMQ:D[ɇ -}S:֡5v=FSUQŠ40_qt-Yu5E q vźmɀ,6Y ;}/Yr`̯sm^\S61CQPջފ}oyo(a1M]jS-anM`nT{ꃇߢgV|prAsJkhR>kH9ꬬ@)O3Vך@.ϼp 08ʹάnZnI -d5\fPHimo5>k[~K~k9dK0#hbhk@!l3pHdÇG ~o&VկAFs86f*\k]RPWI b*+TNsj0ޢBy?/ бإf"-#%S0Um, ]G/կ Q#?6#~9/ʢ͸̊A̍>L{P- 6G|y=KyYWiH`86 B>/2KgP=7R˝%*!9Zrᴐn1k5)e1LkܚRIy<&2h9tjcR@c!&Tbd\Oj-Jd!$rjwHahniF}R3&4%dUڗg \8 ǟΟ}_qၟo9kPmPR o&&sxi|'}Q"8؛s cp;p*դ *SfqDg番`#,KHjOI畄M`UNw=녳wƨq1X",aۜxf6͕ X:UI_Aכ+sB=mLv}"4=٭6[A5w+OSzU|K<"&P0:/:㿳&3kP[5:. 9RDk.׷rDBV9BXo6uzzҟZ5mG'JyTʅ@VC rUbڞ sFeS*g)Gc۟n~U8o.]Wȣ@j`>b{,*GdfF7%W76eGҁ RV Oיe#7`ⵉzNS"6!b| FG,E^ !DžCh]q< kxbdp ƲMڀι0\5 R@k6,YkP|E9#7A EX<B:78S]Ɖ,&6a0H%LvB̡͝ktRO ᮐ"Gf`F(*0h aNI9`4{/TuZ1jʤC c?9W&nǴ#Gzbgu IDATLrE <4N󤛒+^gJtqJdNbyVܫhTASi_/!79S,)\(}@$@H@mF(Vj]e:Q,(ۧI[nFV-Z6&qXlK 5k!K#[DH՝6A3okZiCnOH[KC.kK)_3$ʱb:<"1Ikv_:Lu&GLVQM_\Z{DϱMTn1~)7Yn$١}oIeC\e悯 e6%|;ބdȦSD<Կ>lx”Ya7yBBgt&f?qp$FbhNOp P$Wy g6 YL?ַ+0D<#A=D=kũ^8^5oJ9wqPEUJ0FCPCFr")( 4{C$܍1q) 5 dF?/f*4UZs#R ,>5_]WI(}К)US\HilNa/SܔҠ9`Mp>uvHΉ,D6 ~{4glp9IQ,pZxckդ9eQ3(.|wlY3^@1#-WpŴ֛ Y!zMQiι̨4j-%bb-(W6qd?`IomԄ_3Lgq%1o^--l,%##IZ(1,nR4#֘0Zy5q19WzXLP'#M0u[K &M959VN[&d@{8|z7{~&E)Li/zL(n2^\Ź?S3[6 Q}n;PCbp *JK &li="ӥEڕO'`L6AjϚ+;rk*5&fO(X$S~!5 %8^H֓Wg[){BR-cAq)DD\Ɣ$.m[a֐ aٺP8=dnG`q1/u~lXl*؜%MQG_fFF|$3,rQh[ q?qJ%$4An>6BRM=AO;( z>ҭ uW:RS; C֕nìJ]Ʊ[%Ěmoge 2T7#=R h绉s/0ƕYezR"gSPc RiIKB2J3ymڤh39a5I8ђ#O'/ДJH 'Da:&+w  1c5ٰSLpJ6a0YSk,ϠُęefVBmEZþ>bTjPJ82'fWHSf&7iB4~QU!d-[t[D*yLs䶫l6GE 6 ^7w/6@bYnV STϦZ O3Z+k^ㅬp|Nc I5Y*:WοZRh: d5vD|B ` ۣn:iZ'Rȩ!TRV})Ss~YcibC># y:OrP=/Ɍk13~;_qiڝpdvxϯ>4j 7:jJi:}S8(f)vY/r4V3NXVY+!+ =U5v%o/!(T&|CܬYB+HHv)yV_ 5z̩]$~*`MI%+ep$X5Vn='S B[UZ*RsH[Ho@ָ+ eѾbt  lZQM2LgQU^ uS h V3*2Y6A µ84A_O_A>CFA#h.k%J1^#Wxz('ww E?Ih$=lW7N]: _wv]nZI2"᪯mHQ/5 Ǒ_Q4cbO(\ ۦ>8nl˜(R¸ L}<䙵g`4sV=Wwכ|8'Dq)I`(0 k(%Yސd%\vvRnH%D hjTQȹ*0"fo&Դ\L(8jQs]emnuY8J5s]c6 TkeUeXhVf08Ӝ֠5i,.Q} d A8H<@ۅ&ZU{䌶(sLQ Ґ`[Wk IsZr$ގ|sogy F ϒt&blǙOH$ )}ħ3q[˭ ])wìW/zYvӳ 4{r빵Fe95ٚ;P4OpЊI7mr!Cr…+m]lsW7WVr5 %]6P>aRZպsvm ؊EQ:P#7]tEAHv}ܵ{$_\ }{=[{&NgY!L@ֈǶW ,《`}ҍW_9cLCwLf=hV$\vJ=vƺxD#.x6XD}h%ɿ@F+b"D⌯Ճ8\4i 9 -^.3j\Zfϛ{ w yye_Wz@Sл5t;*2`eՅdd$FV<=y0|vp`(ac3ƓfYm*cyRW8cJ,J^ j#|u%!kY_oJ )Ы5#Ƶx[OKJ!|&v,Kxa{ե:FtU.ymbJ-PӚUU4Ҵ ٮlYn-3{=lȢ()RIH%xPk@ܣJBD 2##"3f7f֚bik> T}f97ԡ_! ye2xg7 #wƧZR9ϖ[}tgȆCr.¼)'C37'GFIh"HERԨ}I/rq Da!+QZ|u]*apW}DkKt.״ w $ۢXqVFKc4hi^ߖ1̓6) ޮ>deU>sӱ:)roR /V.4Yˬ Zs͇˵ȭXKWu@BVclfjJ''˪ȶrmJv0/>@ Ça[*;np`p)?%o>J#āt3K>o+f !M7 t+f䯇Eh.@u]Iw9T`GG=^nK&3h󮚣FتeUc 4OӌrwڞEKwC-oe}4p&Z\jZgY;cYD̡Q=-RrއmyqÒy7 6XYWÎ~]hͳ ѱJl4' <9^͚)ӈ+o,8e扔q,d!N8(*bY41-R8߻2 +RZ#CVG$r/H7H{t?ۻڪ,%PgÉw3Mlp&f|crySȠ^> |{NGjlwW}u(ͿI7fmCHF g̅k',B_;O*!Bt~@Ie9;bԥw-`V*x M?s:2rF{&FpKl+jP!OD݁8lXzpc#;LR݂ [!{3f =!,!uīq,fл_TQ!8.T aA}EK2O4HU+ hݘf G;wOܫuc֞$rosak<%_@F [KK' 3E۶ӳ쒭ƊP;o Y*)#Py|5B$?eaEFp#x*%iۿUkL6*gUO#D&G#1'_8y yuvoi'QW[__!?_'yGj&Q/ oq3#µǾ]r!IҳqzK|T(k+''.] XElr)Gw7Ky`Nt AwNjWyZ,|YPqt.c$שɓ)q!,1J'zrnBѕqn c זfe[ :. 2k;ZURfodmZ&8t}Bd>\MVéo.􊵱Gi˨3[Y[`XTHKt>S EoJH~~P64ᛯF~}b(˒ݼ|45FNu~F8>w!+3 W{\hK'+͞Y ÿ2&ݱYbCEͪ"UMϴbSu*nv>Vy,y)~2,@B}E?4Ūu+ W(F!r8ӺфDI3OB6l6Mh6q 8J?3""1vNʚ/L=UmcfXD45zvVul'wO%W;X7`Wq7T^ |xzvRu+S\Wf\enZ(-踩5!Gkܳޚl%$qȘ} Hٓp;+/Ѵ8DmϝHs3NM\GHUڭΪUhB^(!SpWuueI0r{C /n4 ]扥yrjGx:tfڧ/ywGREф@G|Rŏ5oWoϘyUG(2Wxn12:tFO`A7Y;usJ׼i%k(-m)d/7O7wddm$Kx4iy!?en#0B!frL_\AG]a;S6( 56Ȏ/֕˔;@=!FW݂/=uY:2VO|22e}c̡ c* ַ˳PKf82uW1X) $"OS6lD v'Qq~hC>ӈOrmimzZun5R#C-KaA]Dgo U~'z„OxE6C'p.v p70 jı PJw{яysNE Ũ<|U՚_7.sg-f]h'ihlj&A(+ %~'rFOΧmsCӗܙLs5:fb4=IX;" Ϛt{cÃ*SOۦzdGviI蜷rJyҙ,@W|$gn{xIN!ѴGzދAX L#y*3/L0c5jiNޓM=JN =JFK?NʙGqrj}˕\bs dhG|`毭4jD3ϩ^=el2ʹnklͷG[¹CJ{7Z=CS"̼gs:#[2sٓވjwLa` Z|,~=y7]nt*xD)ZxzoYI}&rzP Gu]e4}DI:I^ݲ O3on/K`kL0W<.HhNeT) j@- d_e?f/ y8T%[cCqKgzNY̪RlaFЦ;5lVE2 vKqg}Ӿ3{?R?#F,bop l=+00Oq׍ N_tu;ORi3̪AAO x*H!bȹQOz0F%J(f nܿ _̓Y"leO_9A^%\5O2n6iC'6 ׆g$^+7G\ T#ޅM)c &43F@-H5Ⱦ IDAT~*W,; "8Mak܀Npc\]I.cv' OJ>ʘq o?3s(&.DiK#ř,8n=G~gx\|596^Rr&/(of7LQz֬C%v^ߨ$3)pYxVm:&n<NTA!6EH::&bύJS(={Dg1zV(Wc2a2|HƐhDZz\\/[dOgt|bUsn$޸"^p կ!0[Ws{r?VB~K\fc ٌ .R>qV4HXzx@G֮~ $4Q//DO0P )*a+v#o~&EqoaVmH"07>=>AnuSߺLʊ-VljӴaxOAеK_3J 2p| LX^ƑEIO37(j}x:q,'{[JE:BNAeEOvNu[eXkEr(b&7kԽÑڏ~x-ǫ|xX{y/s}nkP:LTdFG:L#mmz}ԽWi |K}GZ(n 7Yjtւbv$m[#+{+^Ońs`Oid Fa1ZG+̆Ֆ~lIs]$NZ#"RlM_*bAP[|?̹(D(i'Cd9InX6dOSswʲ=m\uz GCĞ̶me9e x%Gn}·63Ezham݀8A8 $d:|;~l+7iyP(]GhE~a#WΙ ZDK1m*ΦhyK_hK N=9Og6i G =)"!7 !kD9ug9ݥʼPo%VuwKaH]E4 ]eJ]Ǧ o'5r"zyiG KLҺ9(voϠcL>#9اh!$z=^ Wp 0+tiQaW9v>ѥdq,Xb~t9yƞ1΅d5_#+YGخaGbq4d鯡m*7,YҨbxe- cfqY#'{|W0HdNda/'m\<5cn}M-Aw!m"jΉH- "B<ƠvD)}G] %}w\5B3cj<,9Uw(7Z@;.!Lo0qF)_q3Ov=m''?٩ihŭy!MA.oJ2- +uT珸K\{jO./\Txu4sZ( L;x& h*ifҿvQRi6w1A\uDHvfapjkեN7;]I&~)w^@1;I_):m切^ :uFvH|7dSs+6qu+Asֲ};FcYt{{OR9wGN晧=<̔=5$F>mL/˙ɳQVBl0 ^h7G5op8j"'v+GS"FwD͋G.F~ % lT v=q\V,4w`gtE׆wTGELmdrcЗsjGE5Cd֧ Ke* s_ճ|@w^3Kw4J弰D~;,PrѪapLdgN$5 C!5ά-$faqxϾų&+|zHWfEKHka~zAt3p\hYw8|ۓ>"5kPew~^apGW5xBP~_]ܲaA<cMVZ&Io:m[HPcl!x)@WEi'09vP5,\x}^_$Zϲ}}|<cPaMsm5w,n0.o{̅}PAXF0^$ܫ[n=_?s 6S,Bp9q_~C sm5pфpgvZznn uMZ0[N!VXu's!ϑ"O ]f9$jZl ,ᄯVԨ"-qn] X)8x8֤HCn4 ԃTEȽ9&[00#vc)lVeMer=OVx7}.y47^Lsx* r\B#Xld`޴fՍhR[`5D|[sMmɪy^wm4)P‰mwə|Dg5]wO}mtN3{&=L6DcU&B,{emzaqm`DoZeM2]$-\ snoW߸Vф\A찮z콂c>~k sE{L23W볜!0-𧔗u{ !]O!f?|~"`d\@_.gcInLkU)l67\'w^B]DrR |?-C(^̡1,w41}Z46vy7gΥG >)j嗟ӹ#J܋4:+=eGmX>͸0ojyۺ>/Vo6iߍ0hߜ('tm$FDxZ,ƀ( q_)Gbt{jHE41_q^A\l 0:D/WZY |‡n.l: \mffS Ɨ/W/G$+>!C{7ܼ xRWFƾqHYxrZ^&|t%.y_/RdhzfF[1RVD\z(TLilh_:%xb2jotP C3eHS!6D ZU['GI>r}i{?a!HG^>t|66uy̶.[ՀJ[)^֎эBk83U\Ʊ_~`?_2 qfb5# ֋%_ O_,N Mco)- o*}D*_iHp›&΅"KɅ燋 1V DK\zyWCƊ j5~~4^e ,켃gO2Db'*v`O͎|Q Kg$s`je}-DžwO =s_锩"_vbp:[Egw7phv"|UTTѹ:Ziٹx;NhѤ-"Qv1J[YZꋉi?۔*ݯˆ*scļ!>)cp6VhκmYi:: $<mH,BpLek[EO뛤1"EӎughSQ cMpeΪ22ej#'|5S%';FtE 5vA 0ȋH"^vȇˁst\y 8s]_1K(SXBG4eR=e[H}zMad^-Wі.йh R'nbd+12K{30LWơBO[.8r'<ZB<.oi|@T#ue)LG_̾ZKVʹ*kV E^ݲq>ԸI̕_Ӊ`@ZfR3'IwZ/S{E\MV~UjԿ=usk͖=qz}qH}.Nl sDB}(I@8gyghݝyBU@ڭ vJ sYBg7bhz[;y+:H ;rVjʕS?Hϧ~3ծ;iO븫O'Z^Z9gpi9v#;Ooz`>RaچRqnngQ1vcC̿=,Xzo,%ӪIja/L2z|7R2ٲz bI$O~ h}}L^*iF${cPWa wq,7_ZB۵ǟ 2F'n6vmcD@M bHbeΔl=0$lK<&h{7YP1wVK$q0xbb5@ƹU'ۦԀ4vv`|Q5wqu͕s1!Dٹ"s=KOlkT$R;!…A]1j>?7JN 1H*F=;D5"DxD'8`TXv^ڕ FiWu^>Fm9z=G5M&%|S-'m.X DrJ @DN2j )y\7ר8o7& EB&&g&(9c$]ѩJQI|1N6g~{){B͎ߴ"*} KWC5rdd;usϛfe]l yQ@]LXk[GwaTI3R//o7'!ql_ lpY laa%"=\EoɺAhg䀨ZpTaBo͕5:х d]]PbS"g%QRTRrG#Y֘lq4Ci?F3 JLt_d`\ ̖WiapvK =C7R>v ~^[`[u<βOxMv0y:PNwFPr]gjh5F|Vb0֑/3$"rVf\ҼRw<7N-Y_cUCڈ'8м/(s\#7=NέgfZK`˲\M)N2[l/]#ׁ] <,LLhl7En`:ygǭף33.Y4J􌑐VD@k@6ifMh]Jinxy/BN'z×oY u?GӇ_O_Zp̧M6ݣ%%!rs͎9g؊"-Hc̙{r`)G3D9)]f QT{xsO6V}ɚc:^˽1~ Dbз2AֱGwO骋D zt/y◫grLfSLN7FnsqB:Vbw7 e DzH?S.$hwdM#T.4MDhl"ڿP~&)@,Rg4%7 6oEeA[2) ;ޟ[O|8yD 9n=>Ꮻ4Щl3vhgz #fhQ@,jW7C=svװyRPLcAlg7%_;Ɒ/SRE, ,)Ċ*n4i؟7͉\0uc2Wwk#"+~Lv4)]6f'tr[YXqZQ?j#)\#Ӽ한41Є@ ԙLn>Qۉugǩm f+lX VYgqҕw &v1Zݻx}˻'-w7 Dk'ɚ BUΓE3EI{.nk 6xbecCШ(rΛv6hi#KgЫpsvn͈STU_%PN\!Thu+[2Z UYQʂ Xg:c޵P6֭Q3#/CvV9Nz) IDAT! vͫ;m;|la3!9Bڨ:1t:)ͷ1dηMD^6F-%{?/K!XyQĶ>'ӁDV <NGm@,{aoh~/_{ڈәiyv |?9>M?F'.r Ws8mBǵ{Jm]~EG:&#M|#rЮ iy/~~6v΋,h{d"3|VUVBFVZ@}s42&Rlh9NbњUp6r$!`mXnYo6@+˴(S 0X;'7zϼ}diaF 8>W}C`&eI_]C(=aZPPƷ#c~;.p^j:ono9s4@i)j_?X5#Jޣ5N}zgx:S'88 i㢩p"׈tGxª7Em6aU\.;z+rkGs_͊#,.h}h[}ۃǟ>Ebע\xC:Z#jAD^5s>0!OW,͜R-Wέ}$XךYX8x\=_ܓDBEg,`rD0jL_8ͮyZjԃ{9OFZ2Ac|X͜uWkBl7x&]+wԘe8p2BouG$ЂͤyO7ㄖD$f.2t^mo_JDW@,B@ Hɶs@$ԭ#1D@BFd/AB <G^LWTb߶2S Y\&F<|8Bo䉃%y[yO9uB 50FϮU"!q*jJ7W^Fw!?ED@h$:G+x<)'8Ji!V7V<>q>t<5#zhs8K_SdJBm>1Zp:_rOkTC)=lG P~U 6JK5hVrݐl(Ű:b)Z(7&, QB wv9ⱇ17ɗgI6+fs ‚kT[!;fdE~\ 1<@keuuݙ|zjipRYIF7Gcɝr!cnu>LrC$ :u\|Y{mL}wc%M8ϜO u׊>P4<1/#C⇯,9/N|w2a;^B-j0ೱXkqfWs JHNx֚x.PEc^l}!z(K^ƹBl¢^T=4h[Jra3̐G]hBv]^RFlj|V 0; ¼P XB<E+oX;7_k9l7vZ83iܖ3(.RscV{B-vkJ]Hp ]y<}qi`pbmf4 m3՘j^l>oU AC`7,UUYju i'U׊a`DZb='7cz73](͖&:ѥOiV&G;${^ĆU*Ym6$QyN8yo,#Gh T4**/SheCRKnY5C zțTx& ,H"Plɬv)qGB7' r1C Rf7O7zmӣ$9-Z5c 9wnY`c* #b2[Fo[u̜p;r3/|8A(q J W*35# T7Tɍ"*83CJ4Bؚ~WGPyf;V \a EOvt̍bkͪRl(*\o5-=3FGLD~-"[2YG. 7`~I#RwLy4q9\;"t 1pL,jʫM}s47ı\7ȧ$Nb[rDX/݇ʀT5vdt]NEfkp/ח頢@gjqxC*ά%ׅGڛ4Ygzϙ9T ٓDMfdvZ4 $*+3#~&-l4.BUVĽ|>/Ǟo7gSp+}f]8`[[+f^ؖ6: 4yQ+30:cpp,_nmkY_mYhq'wQf:x`nH$ -k(qхls C.ijMT\%̮Bl\6RgV'K䴵px޿&1yna4c*"[aCdp'vP"}\L@)J;3c]G8R:.32<^}91fN3loA.ǿz ʯ*2 @Jm\PDSBXs #PUdFN}UcJTeI+N!RV*O?tTxJj[<3[C S1ܸB+&o!pRxUݢ( *ND*"œztsQcy4iؼ5'ܼp7tpܼr#j'2zK`/Ie2ͥiu']L$,mPHzUiTdvL#6YLRVhP X$ŻmU q8UgII]"HIR.=}iYm*% 3pw83^泪B[8a±pGzn;n-߳a0)#dհ Ta݊B4:yEG+aH&½H)o>)|ƀIHoS{dW k jݨΘmm4Vٓ.0?aOwеbߘdjg_ÅyN. H*;KgZ%wr*zIڦ[F@F_ 5Q,1MS5>fC BIʅ,s拶m"f[Tx?0 yQ81:׸Zv~=ۂuR |^2ϕ{=zį5[#Dr%m(E%q[سYX]4(ԽU^n3MKb=Zv* nf;L0`ƍyʛr+n3j~\'12'r%{N'ƨ/%aiʺ' ŤDsfVqYxiQ2n~h"}qx{1|Dau_FD-LYMLY݋sA.il^+gd4F$kb *4Kcgf^f}֢_WPDO58khP ܹb7:ki0/Rv~lY#k (pުGҀլ̒jZ7 ƾeUtQh=l/;$ywƆXƺ%H?N+0Cg|OEJkJ[(!ujKaj@}ϑ4Qf|T,1+o˕7櫟r]Nȅq8,kgrGe.>C{)LۤCzv(SaC6InJ PYM\O)\oZCi]2s%/DSY/Z_Z0dLm #@SVe7lJ6m1,n0/qkp AB<)` *Ҵq\W6+ V#sjA>:ه"bn9c 5])n]s_Fbepn=CT˶u9^g5 0g|%&t̓5*s7Zu=)/wV ׼Dd#HG^5r,O;͸m.un{9nm&g,@*$m$Y>4hso>y ]s#iIt-cADz﯅5فmjmHOc(5dҴzWPVܦIt 8qŽ$FZ>/5ke*CkD$$'Uj6ve1M=Xeek+TLnzj'td4w3S\7l)5c&z2R޴O6}ejWKʫV 4 '6Bkڤfw߂58u;bG\4Yp W6P "0MvYmo"iS$\{u,8ut4 z^Ǭޢ8O4Y"]G#cTsmY f2C_Kˈd.mgM廓21x'qdGn7Lm4;zW$( ;hytrV18M3ѩ8?lc|u(Z-hזmSQQ!Wb@LeXx!awNK)jdt(x̉(䰕O*-/)ܚY\`u} ^|Y_{ q WXqL_pLC͉[9kh T.R:UhH-E!fbT:۫m4bxм]s 0X006Z q!]`Wޔ?;(7mEiOUq5WGAŋD(uE779!`ӕl;x( ,Pe6Qk }dR^fQzuuZlk-x噡Uf褳dEQ#FZ+x!3'T<FJ]JSy݉-U42 rs8}=52c-ogN3ӌw Y$e"'nvLJO|~f2F۩sS&8+? |o>xeNHߩkAGAHz/c E֙"R˒ZT:B(Ns0(XGzv5F,qfu&rE`y7Ee V3?fn:Г" 6,w=gR=cNˤ&\GgxURYJkQ *#FJw AqSydœ d35c8P ovz8q g>ܘftԤsnr)LY3/dbdlнm1M_aEXdoefP˦,`99,\FrbIYOzUpfveꌩJ8 7/($S .0U^Fk5Ī-\ca m 8?_mcB ZG;w_iԓ [1p Sgu䊊XBs若+"UzV ̌]QotSTt[ۀpŪW%T28k9? w,WK 0"(LS!/GC6RRyi[:yNqtpw`Q\L;q)("Rm\,u8u<^yOD:Ƹ։5,FJRi 1wfAf92&)#m =ZTeHo/{N 1*˜dQ ,ĦMiZʹ JYLn}r78ϩq1$eB. 3x~% _u:H2NO +Og%R~#* lÚuX+bx 9TZ ˛#e䚫 x^˗e p(o0<>Ӊ~7oӣ) ei"Lz;-\.}Ero8T,,%Ԟ9wmrQxx}nF]thujB&W>W2*Y=R{8 Xu$漺ɹiJ 5R2{<$wO:>u7:MposϡMT@*pQ{oJ(9yM{%7No>0=ӕ˅L<^(.0U3XŔ13_3 OW|D)=ox:Sz.xW*]EKL̅2a'eǥKc4,)v%&OC\3'wO8_iEVjrc-SbNfMάϻyvKU ɋ]`{ _nJUiی4X2lkSmo7K怺WJx7f=z𖧤"I{qDdJVdr\*]$a͍l׍V/蛀3|"iuMIqs[~@|coI>Ȝ@/]S.ӆcf~V- gvJo9ȊWGukc]poYR 0 k|cQD73URDb{Blȹ\ N׉7U3 S?ejQG5 {Wf;`E\#6u5bkۑŒzwPU: })1N:xd1gEsM)[Q[- T۪ȭ%OdRP 競,K#)4U*-^o4 B0j_nbne$ˍsj|W Z:-BxW[@mԙ dz,_jy&WΑI oz <=&,lDp$fn_13*\J5MeTH)n 7;_TnroΑlaSȇ[NpM\ JӄMXX2FZFu(딈+ߠ{r%+Ua݈b -7̯2I2kuѣE \kF0>^t ωkRm^+9R<7xo7;7<Ό]ǡជ{R:g&|s862'#&>=q2Zz4A쭛NWɑV#p)-t3HhAo;r_QSΌNBM$Q*ә~O`?2t>LP)QuN:*O@Hl^@RqSW1%wMV,}XT#y*d}PDk`v\dAb밶|,lΥ)-a ">f2+Jq%J]e1Lc֔fCָYV3wKaMべp=k⅌P2H&ݟJƃlU xCD&&>syKy|ŷ ܲ.cW9I:u$(zQޮr?Q8M >}9jfM٤-6 Y9N\q%m VڼS{iϾ֤5\R_tSd.[` s|#בNrBP~4EuFDoeVl7זj158fJN$FRL-jDU 2CdN%a:G*<84 yNj&5~U{g†ҘQ %Q"ܤL&Ǵ~sn/4bW6M"`zG&=rḨZ@%*`Ϊ:'ZSr?K1nz8&1-}GuΪ\nNT ';>ewKh0[b**>O\%Sn'%bafW@6z"_Tl ~qH y/0ȔҳE2\v}Uj qUJcbN*|~N/o\ tmo(>܈ dNgpfL]'O_ϑぃjc63WMo4P*0qdj=`{B&Ֆ& 28:"@dgc»w]­&#]XsߝH+֭k4`{L#u/jq+`٬Ό(8:"-x6a'(0'tffV7}e#~ (ej#9RSـN\,G2B_*rI&:7\oOS+C p;Rw?˿_a ٜUť%J0s\]2ζ]U3)Txآs>S8 X( ȉq"J9q#ta>kWQ-p󃯹1GnL+)”0Y_+ ،uHÉ;jT▉SD Qre̘5[u~ vy^ U$vޛ3.0SWԍ" ([?F[˝V:)p#TȆCm|mVkRxqɉQᴂ'-a*c2UM3yZXNy?)ҙU^/n1VB]9}\ݑ{ɒ2-!CJfL(I[)"Ov(2J 'WQ:f]_:*Q'R!.&>y ֯gK_c3.(RسCp1N-MPf#h;O)̵Aڦ҂de\{# +k\)Q]kނBN|pVS/<':iM-MW )fp,[Q^s횡3[~]UMM1b/,֍[0*\[mjM;rjR*cIPalDG~IrdضDX|HEA[U$mj,ğu凔][|d1o@9c= ]Fr&8Bx* hC}5W6KfcCh@&Sa8SJ-8:r| _qc{Ht_/]/JU*5) x3)V/%9U{蝢2B\zŤ]ŹWɅ́z2dHW鴶f+-}YEYFWBW&Vyvy&Kʘ@3hވ>{.3yHMloam^-cvMkbn0j0q1TpPS)J3WbN >vA>-EdɛlI!.[MDW $R ]t2Wr[$ǽ3\T`-8K2<=qMw'QT]k>|'uMXmt= ]t֖2 B0zXI~vگ)$J98ܤIԁif%r_d87zx9y$nLߘ v$8-J +1od];+[>_)Zc; s`-wl:폝_(M0d54]ϱ6q0_bԋ C$ f 0Z@ EJfNĤ \?ڮc/RxXQ Oq{ rFBIìP [| sBӰ4y,C/֏R,\ ړV}!e'ۤ5-Y!8xJƼ4;.|zT<9U Joo.|?*̶ *uyۅb IDATJZ2|׆qqwJe[(pr4A2BH/Jѳ,9V3={JUQb.#1s1:v&NQˢ)cSO@͛ Yn?'5RLt^WC h ftU")3Fz7{>}DMm<'zkˮ]V"RLZ߮U\՚ɪnVpwKpmG5wo6Wp0L:sI\cK z{z sO sjQFR zR2EEڧA;]Ri4)Kc/۬Q+s!UQK?U+690PwjX»MR)No0OH9Bc38K[{B%FYP62}h \Rճyك|ۗUF T<àK̉)]7<ވ@3: qM <Ă À7rєCU&1lsٛ`=H]վXT I!W`^k 9n" XΒa:nXY5,}pIc` Y&SW%f 9^~ez͛_о9=;M>ύ>z+y[6^ݿ}CwZ>K/K~WQgDv+ƪ 5u^e'ESJV)F{`QqaEQgrabS+*1SO*f<LLI1sruR}CTNUW,&ze_õ0 S#(%sr$ +`ur#|92x XY\&niN0ׯR$BZǽrHɲ r>_>\>+!R#`s{:`DB T:DS/I"s7A\Tj#&jC ϓFs߄ֺlDT\\罣 4b-}̵ߔ4ICsC eJ/Eݩ`VbiyzKk-mX(" ǀ7@ˊ(Mf  o ϛe&x+i=6usB*\DT;M_:5}[&7ewV)UWgDSU̹r2\zB7L]#%Rߎ5(xBťHmn]80Ĵ$fVBebW' 5qxK<Ǣ;fT?0oVi/Ƽr(d-[ڵI]ܖ$&梕4KR֩K}guˀP*0N/Q҆k^6~pp*йUţZeޒuLTCof_8xޝAwRΨGc H¯rŒc;ax _f g7dxb*-J cNU`oHOU—ajj&ϯ,GBNcf[;0\G +Rc}ibeEU"ҦQ4td+EMr* o{r> L\'>p;~L\ Xe{|xr/C:T)i1{ѺD. g.3S"V]䌳J3TTR;3]pӄy{&I oOemFE#5mhfkw8z,ccѯ`ܮMptl/igN|'u ΑD3LW>>jٺ@:7@=d%aq-xpja>zxS|muBbc*Ŋ\ƦP 7e2Ϥ 9e,'̓:߼oxz^G2]7#VWΪsdCD ͑ 5 h-qk΅ 7BԽĭ^"rpV[oW`~tR<irp}*31Zq-F٥dJ$nk3d[)1 ?g??5%EH@1/̟1}%Zl/Ff=-?G>s~`6CyκߢTEdKZƤZb*V & S2r˽gs2c*Yp:9s1qH͊YH40J= Cog.gx|dNG\{G>?|#;yu&zJWY*13gݫ.QwO%6QvmH㖨M+SHcQ.l8db`(㕿5H ghAU!uflse\mB<&%? d\:Kn-o88䇼o>pJ;Nx߂%-aXl@JEUb>$ɒdɕ|DMJIpG| >"7|J/(ԢbOdu DfDA9z" "X$2#|;+>+0 Λ,RVKAwPOeY91g MSh0|]Xٶa6]#ۧ;Gm.hSb3h;saK(w CWk`ap0%dG=Tq1IAx՝RoK 3&n:?)b\H 8O c+w9Gu#-b3\S]&xe }O9B!lPu bsK&6g:i[oK:R,vŲ˶x'D'R9Ѳr]b59jhL4.m&8LOzwfd*ׄ/4k:i6Cl_hMSnlR\SzêWLaȲx}?X'Q:9s+21~T!g6F)ypd pL;t/gѯnӉS5Ve7@qhY>;BISTK !AvTN6!Fȅ_!^J~cWBƊ%;CHYOt.^5Wܱ;rk]bo - maHyY2<3qp̑YGN=?Cw/OTLJ]gSsO 5B3t ]8YFOgƹڷKuμO8KioG UL-kx!ƪss8pj7᪟wIM;,kF;wK}wqh9Zj{Rb);PGF]d{=(4sC*-gDGYv_-K8{>8īv1rUH udO)F>Dfi&k=t/C%䂫;s{aƷ>q#lvz5&ǯ~ɷ_Q|ޯ#a6;[.uw^6g| ,RjZ3cdҏP9l= mM˱ħux)du~7ڷFP9:tV K5{]eT:wX*FDx<[n,t6~ϸ@Ѽ:c>_SEZF|z7f¹pjHk_a=YOBv#p2y1,L. =?߾}^nGGq1McL4jvT8{\C'K}fیp=VWR+[ѫMDq]#9yds]=R 0n8+8Қ#6vbx'@'ndJv̚0\YTy>S m Jޖ uuBMJGmл]p{X#.ޣ&53exc1xWm|=Ŷ+eE;{ogsi9̼tkjϘuX?ڄkG+\M$H? |O忓 p7'Ryk\Lyk((UUxl)SERoTmsW<=v gg{C,Z :q5)7c*LΦ'LBe- jεo# hzoC\3hSm"[_\'>t7Y:^?kȴ-%2oQJ}Oض׾Ӑ5{=;!\b5XNɕnqe|UĜiy]aθ̨Cļyْ2~װ{ɒ@DžllݍԱl8m5GGiq0VP`S<7)l'BRe1qjd}o؛ꍂUTs۲0F3sa҄dl}e&ic̜ XmI{s^b#yV6d1BAhx:!+>P<3? zxDgN׋]#%T5)ӔDIBӔ=?:;b[;C ^iC-osx-(bgꁳNwze {#/eZ)`qAqFw39"w3l/< iCwq=iZ~ @Gʠ/&*_`Wn.x? X жx/ -ۍ95 jYfvNLݬjR[8ĖКsnJeb"U-.H<*u'@i=qSh!wHG|$ .;*g@xٽweٮZOHuL,ڧi]BR !5HwA;#a\cHo['c,Hgpu=-sft8MWum$U{', -HK)L'o)Ml=B,\Ӟ?\#~8mzݍi_w?A|wX>,̋PUrralLr^] C>LPIvP"T 'yG)a -{;ܢa[7Lr|2~ ;z}; w.Tm3f-ƀˎ6X[MT =dSDL]w&{R4^Lou%ņ=ضqX9z0ql F}0pƸ0f۫jjޒxh7Qv* -'e zR.lCDgO#c^~^+8UZUuI%]"x:CTWstNVRie PTO A cjt㼐(qq^ԲCG+2 m}eg~fs:;m6S8R" Ҙ RMgQ?deS@PY,R皹&”hNRE(CnU¼0-8xD@*CUgis"'X.o-r";sJ_31xn3igȟ}/~N+|r s摿)>7ǜ)_>_35d*u+Hzr3;*x*k4׌T Py}4`M :tTvy^Ξ[6U`š׎tk 9\pJ)ܧJn_6 F=(;564_Oi{: vtQƀrq.' nwfj+ڦVL695xcSq1QSxm~X4MhɅsVHTg$=> &m@O>0gukޢVs&%Go;r,Ī핺[ozTj*{F?KK:ͶȖa*LA|Ș -υ.TO-K!E#Ԍh1\}u]Y(ˆYvx:MZLoح'>aR]e n9<#;3k.4OK̇`s:AE)U&Uȏo9ٚ9n3>rpID5z`$ޫI:iZU:ւMˊވ|ּͣʐP|PEB*96&΍MHILpyK6+dGeAγ 'ԛU !P ɚM֒Q)YSW"h  mu:\oL]PՅ[2+<6uN8BˑGbe|G\Y"_?+/tc!1=^ỏ%W/ĒҺ͌g%ENνLu(&(*IHt:6(hj!,R@+;lHtY 8%nZ$mjgdeEp>e$Ά=5dp@H::әA5!KUSlQh 9DI53zRDrai-:[, fEMM.rE6a(\,5CP xa,RsS0.LV8=ri3x)voL,s~*V!df+)Gƥ[Ah*K7̩ֈR}U;ǔ, %nQb %hSځjdb&HrʮB.@hxr|raMs4XZ NaɈcl ^”j'&lؗT*l*<<(tXIqŖ]q 0-8 |w'~ ?0-,~uWw48ޮ& =;~rtbI%7 6vE9Ez[Ul0W0[i繣,1eAYX*_O,y8qq,~}~k/;)9å!O_o#wHT_[(|4np65*U0^njkf(uئL΄gZIL)/BVv\ raS'ѷfV*\Ex<YmӚ'uaLxh/ wo>M&jvgݶ+tCY&_ Op])U$!"4ǎy3JٵR.Zݒơ-Ccđ:h^HKORO;mTpnG I_3DXH'p'n9Rj5COwI[d̞&Qt"LCCĎݱ쪵)@:o-x;q1Fw]jAF6W$-/J6rU508 EC3z3щsO2M9W^_7s\ 8z'ZϿ/?29 tQ Y6߀%"4-v> KDڍ XА~¸6K2.1< 8>if?&c(NZ#bo0.ǥM"J4#֘wWa Paa _]#s9E eC¶b sӤ!xp\[OSyҡΘ&{V fB}6t˜Lߐ|gѲwx_>)Ѳ(9<3Sz<6t12"nMZo˙60GUP5PmT\S8@N\=4R'@oK&g *l|FV=x$syD7e P>==W>=n)hj\jThSaV!xH8R0uq\"O􋿸O`N e<| dĜt8QN)#058qɊC+iȘ x:}?Agb/9XvGqMhu(b _ 'h[R VNM N$5z4)feAIcA ѳ"Vpby=x|χT >7d!Nǁo> ocT(Mk _),lM44< ?^x576؜F'UJU`&><HKLYGn5q>w;l9K8 ?4{Ǐ$OiHl5J榪j\0d TLvuY,n\ Щj[BY8ׅƔS`:Rb)Z|gu:N:,;_^=rTh% J69\L[OKuˋU`MGeKhRahHS3}e\eø|L)Xwx2ڏ͟*xy\gnQ pSxR9J%9lS|M=uGq9wVW80Y5F}WK-l}}( ?6zP;rTG ߫pGiώ|ymCX*u|hVOlvDxF6Be;SѳvkMH $ .tU4"Eq&R0 3/͸<<&㵰%Q4nBˬײUW_r!Ga cNT?س8^o&r1"s/V@L6|}VwN{cZh=Gri\BGh r`2f3x|t7Q-45C7 =)G;ZܸwvCф8عl/ $!‡HLI54 q!9|.s7[H#,k5vfcd 3h-Ƴ$n3 ֤sSǹ^G뱖~X+RTNeN_j".7]OQ~ 79Rrwkt8ȝf5%g@3/ DOTCp"q?)y0P^6?{,6l6. Kfb3J 5OhRn/2 (v>+lin#"Ř1Y^œ;Gz#deޖ~Jx\m{!l:{N1yG=Y{ >C"&ތ\( ^H߁ IDATj91pӘbGw;5ĘmX_fbPiYe6mM7W?&y}l?3gfάoWLt: .SMO9~6rSd|Zijd{!aZUpni;۪oZ%na)#)z[!H׸]QaVػsb5\*^eGъSGXP4LPxU3m 5d3m"FJ/w>x if ͑*:ն6/,7Ny rX . 2o@5VƁș9x3,uv*^W@xLj{wqw %f] ~y蹌H‰%(ňm]k65,'̑)38 2\\C,^s8X] jnfY[BˌJSU;\ xǘ ?9bk"sKq==Ͽ$~| ĸi iax'?/)WB:tsbo13.$U"k[4E&Sjp*66TK$PU;y熎$dͺ xMj9Z(U35ye}bc--`Sa3n&v~k25.O_!侊l<[:'~Gm<$)mI< .|mJřɺ^#$5je"cd1UYдtGaĹ"0'{Ul);@kk{Z7kjBڊ:q$N6-!SK(2 $3]G) x2 )6쐯uY핅$|J?Hw%cL{_1V*_7GB^{ȝz瓷zKp UH%pp!y׸>- mvrgg\ŷ5G!KS⭢d~Y(;JgnS"b'%r9c$R,dK7ݦZ02$5t%VRb^[SDE${ba!G(~gl cVm-߳M\ČTGDSSN=S֗:[0Ja(DgY><>_1emKo(Wb!0g^[B4,ZN=O'^>GnKQϏeWwYX :OhQ/7|P,84WRh}*㝼¿Q̫:bJc :2XD8\$+JSθ ́. )ИzN΢BҖ/#<$y%{2V9*=>"'#`=.m}0wm@\Tz8 wN,5UYe=5Zk65-T?b&b=t }c1bRYٹ5N @콑Ξ_qQl(\~k}/eTbJ>-O[Y GQ8|Wmvs6#TdT'u0!_%1U qBBϒv֐ :7>C3'-f;Az.qۯ<=NxUd!'ow<4#\}f}'Ù`wИU4@T (]DƝutmN-]K.lOɛ,c݃˅iAq#7#r(nD*S+T6j2wӎsCraLTEs[᥮ufrC xϯ~+5s!;:3 ;nWSO.|hWt+d)]Fx{^lLF>=Y 6B`>y|L EP5Y`>v-M ] U脡3^1 i3.cs?mN}_!FK֊5VZ15"Ϥ @ %yA!e'PӍe_KwP;hZd90qH?$eM*ǖ,e ^>Alm[{Pnm5@N ]cPvg x^{)Gj su5j͔quY nu鼖 2=ڧdq^v !ݗә$9ǘJA@k_J9h%@(GS#0St#nsKۚ0ׂo5&z DAi {|Cx#C+`o t .y{gQ#ObtN 2G3_|pOo&ufƄ,e+jy_<ڎ[ԷT@U.+ZQ2Midn7|FeŮ9-]K͌_/֛i˗ y7*c#!TݴfΆd-ch?IyA6:1gI6t{mS}rT隣O QB ?} |rwx"v{m[Ix% α b.U䱳$O-#H7էÇťbۦ62#YjV{Luպ'A`Ux6~su5lq9UCL m*XɾF)8zthU`ԥȞP5qphX"*M\Ȫ̑;Slo[6YC-bt! 7k'X瑑Ighv9 FsaUR+ Iü@tdϹ{V+y]+vq1#Eзd5ףwU9ЈA/3bRpj [vS7ɔLhE'rqw%ֱ.%$hkx*6էi2S0>Y4Ӆ ]gNՒlrj/o{_ 3]4=}?<=2f+ӕ_.ep Tڽ*ڀSl{-] 4hT9Eu;ضsdoՆ%a*?|Wɹ!6.i!r9o_.[(.Cy= dAju8^o%O֣o@s ['(J ׺*5T3yzqM\mc{iOo{)SC0Yqω[u :842ti5,5\̞9V*!'b?jubb (穾X\%t`H =θ|[ o5xʃm$w=`pѥ$`rj<R9m7eƠ9~[ROOn׹g??&{ng+A(؉c K !*OȎ^v7+?ef645g`57 q۝3!@70M0Cn(6N CaLMghv[(d][穊.3䝭wfY% [pu4.:nR*L:C$MȤ$ -3LTȞָ ~61Ue`dqipn0g9hnA,nB\Zrney3NsΪZkCM6)b 8KҀ}\HA$0 $'e()[EJdܽ{֪<1/cYkm+{kתs{>=`i5担3L;T1Tc)dh.C v^'DJy7w^j fɆl#\}+6W^+'j$bt"08vo%a۱ݐ#㈮0N8rb-Y4 쥲Ogehv1q=3fv<w=)F%T`}0t8K5ȓ Bٻ*)D0`Ca|=i>~=7/W,Ϲc1ifIH#G ӄs̑weQ)vz58MsԊ"+2牉}̫w7NT5F2*\ ,T)!Pՠ> ;u0g:G& @J1p% l|0b<aGV̱~B#4bbw=m5 3@e b)S ŝ;B#•]5,"ЦVcZGRj2+!՝"pZhr;0RM޽,1fRf_7"-кܮd$u>O:繂oʳtp:)pmeTt̉ɴRSqйrU %r{{b8/ԔPY?7jFve9qʜx}B̌#:9Vܑ_yzbTJdÔQ< *)t>ϭ:EwqcIpfɓ&'[3 yXxUե^sܿH?HmxӁ`h4\^[f@> NZ}#E3AO{*Бt*bKfæh 6B+XLWB[RW4# S5 C; z=2BӨaK*n>4[z:ptS;tAߒ3p2IO1AjCҀ- E$sJ}&bxf]WW*>b+2Â1t̒uz+<۰p FwSSC9u*<,de ď_<}r⧯ zK(=b۔}Wf,KǞ({%)SIu v'<x{xf8[+}II;HJV3?̲5:cW2c|K.KYg0d=8W!k7n? ~]lNQW_5'ye IDAT䛰_ֽx9>՟2זBڼcKXS€jgOIKբZPǸ{+y_JrDalvIXb KfÑSlX>ev ~a!@mc>YXC ˮVrccUA/qL+_37݆ea8O nR @!3Qv);v[zϫ?7^%ăAJr8{%3 ݞMӗ) nZM)S]d(k[C7% ]ɥ2]DlW;q4Yw:p9bM#˲z̘j>>ӈCn3(a_^,H)T߀j[Իt]=']1tů,nyһq86? vQS#J*"|gW̌,`ZNn^MH7'g I39"=p[?(kKDMY[c1>9DO;d6e,qz9T-*ꁾ K܃`!#Kcq@cjHx|r;H?3#aHX빳r5磢rhU #ꕰߺK+3Q޼!ut]W0ǥcxou|[޼%F{ Ig\?oj)Jo0`ֳD޽'G. ǾdiX߉Ér)$DNGw|/Vur o_O<]G$U#Ґr}a|^\Y,TD[ uu0-L[3IX^s ,~SoӣtmJ.ĵҭzY`rmf[rRwm< @w%vڋݏT`16q :q;dhC&5UMQʲً4[W}\IA@[my8jjɾMe4SaZϝ߇hV%웠s9<}m+~&ɐScp 2M[+H@;b5dtub^sLQ̡3G<obNӴJinpmm'-jת&qzx7dc˔\Ä́DWv^C}m \Y;RnWJg.ԑwS'U!\G|#39tx:С59%Krɘ4̜r9I,$v ?~"wGī=y: oJl d}xG5c0EQNָHFGNΑJk eQS-lWa\T6݆aC8zUSظ2T-LLo|,^X ؏A\XXA VhOHMUj^q&įx|KTbɁ03ZV)`4F| p,-[.+?V5]wBsq}vN7NԊ 8 XqjHaa)c`ȒӮ̼J'&DfY1_#qDI`gD$ s޿\@sn銉8%$bi?|DF,CL-RBU~}S-;;l/𓟚8p_yw/tO_s}ٿ{i4 ,"Mvwkʤ\n⓽S[=-r5GV:3D.k>ZQM%_ٜVܵkڈB@\.7еrkvвy'6y"\a F0#fsrgXTg\',9j^.3Ϩ۾ }fq ݛ*o\T{y?RJOi5]qxin&Lޓwn'Ķgq4 .p82EGfO1Z$cIm;_1zj,xGqJD-D{'Qn,ڡlÛuZ`VЧgYj_/Κ؞{S<%!Lb #na*yő:R*kE5f,E]izFր4X'Rw3'&e\q:n0p?S3KQt7֘a7u}~U"=^1"/ղ+%ywi#Ɉkm#˥V`";?cL5.hcK*Jێ4B[ jhI@'&cM9Qax d:%s䮌;"UkTͲ@G ޿Zen#sqq!kaQh;>H/jD&g2TpG*1Mw̹>u-6(OvuÔlu}2K|>"Qw )3%c*nn+ר͠}M-n;\0&5r{ &w15|C "{ _q|,`Gd\J6{d DŽS6=!cbCt<}E<D|*%zob." zq.\}3p>40k;O>B*QpkQXlWd4xC8U#Q#x1Oμ3ϮB` y%.! ?7uu+cǶe`:fȶ\#n,<7A:Dp?ӳP\&i6"7F0:m`PC,s *Eƶsl Nk o#!fKx_%UG=I^suA'AB-^$rnTn{P8wy]{$}#nz<,5l6q5 崴!P׌Pcu&F*\l*pNV]r2lEɆCచSw>4={?}ޑi&n݆cXde*sflt0{؜SA5<ݖca;ގW喷G a7k+ԊMS8֠eBr5!wh4n1%\aO0B nozHh*j%`y@3-HOo)qXuK5aMe9b3׳z86JepH$FH,mAF(!!`YSz2DSt:S)0%ʷ۴|Z?"8Z*]W%0eΠ_ jVI4+a_i肱64Ύgɑb^_ƲSPG~ܸȲ'W88$f P!}? Y"K& Pd@ )c cQ4d\>̻)hVlRsB9ŵ곍~%3m.c-x9wはN,"#a!%gpc&33+k ˬ]fBg1,ʈtq;g??r_рd#v= Ca;ƙݛmB7.])-yZ_0\f3,$׀ XZ>|k{K_z2|cw?g{G̨+ 3&\  U]=Ԯu钣j j.uiujFH!*D IDATpgh*]KTטtj9k_ے\Q̏tPe~]%},37$̔!2gffj0v?e dTX<;7} ?7o!9W22}d[ 8j/ bn;:n=;r{1F [@2ˏN?ejأh 2/ԕF^=/E 7G| )0꾠rMOj+*&ea%]W:>+Vfm KR-Erh ,9bIN J" Bml%/f| AdAfHrWb!T;fa */*&Sdl5zoӭ]a+^ :wE%-PYͫQGGi@zG>'u(v !gn.)3go #LI".?Rg_e,ZVh7젴A $` n q$7`,亼JJէفRoNC΀8"=XR&T~BI!N F%jzD_Ooʴ6! X^w>5D0M xaJs MntdpNl|nծ:wXmmzҦd `A PSCYJ?;˩n"ύ#zetl sD1R{ xoj3ܯ :Xc biKt1lXg-TfbMmfD$6YQq2~DrX4RL4Epbgm ]\1;)!eP&ǝeQfT./;v`?W6"TnCUS}b66O 2YY0ʜ^'pjOh]WM%έ^1 :g˷s8Nu+ \LR5q`^1扪2ˋӣo!џek7"3|-: QJF"jۿ[:B|`ͫGΆ ;? 2Eo{\U`urF]MC^hVr"韽3tb6SYM莆+oJ%f<$3]=`+:&hjbTK7b/NV*Vb)=h Y#b'M}_tMG.An`Ziz>6#F@.5yաq}듍E̛=HM]]ND{ i= 80e~ &^` }fp k?]%p q櫷U}?_581\ZeX oWN}ͫ9xE;>y{9mO{ԒZ\Yu:#7ȦǦj=ޡKd#jy sNԓ˭(כ@Y&ɾzkrlɖ.b4GtľVIVF'K8?=Do=s1 mHbf*PPmz[X: [AXˎ#nǷ^/ՃqZX瞩ĉxr)O$E|=b6GT'R3V~0{Zm;ݤD4jYUczx33(QsL?sD\ؒ "07FB83+'YvdB_=FYbAJ|tTݘaTX:[%e @5V]3h!nkc*Kt-LS) G PX\^%R[bфJ3Uu y8`z͆9q,'77̑_g?|{1#"EW'$jvzq_N L= UYJ崱[Iy_l4"RC4g76>1137?y r(䎲 n}vzz׫Kss3Fr`9a"V^\\S|.UwT—Ujm:L> ބ\.:Gȑӂ'6=YlbdhZ]UƝɼk|_C7e~{̬s6٤ٔC2`o Űhltpr=-?UWI7 sPk}ﻼ*+Krbe{6ҒUCǦK7.Qz8;^{0EgZҠV=a"/zq Zς(/mjq2TU:Y&?U$=cGx)1CjkՀHL^W%7kVk;p3p? ?[N#s`sEa92+2~VՄ?VĕF~q,5~ʡ#P4%}C vy f_:a\kLq ExDC# iuE/6+8./y265ܖ>2_?ztBȷ<W%v]]5:ližc]>^f,GAoZ<&PYӣs^9oe O'OS)dB@8-[󤖸\{`7ox?5߀ihY q,pi{>P/Br@\Ӆ(xr=v̇I\2W$#%Slv'_6RSA"JpRr.'lڲ5ŐI޶ !CiuÖ6gJvP Bb&f:hm. 1P#pRcFTyp̈@ڡƦΗ×WZ{h8N tMYn<If|tot|-lv9m,Ȼ{_{)414d>OKYV.fQ9Sb&tUʢ--_ޚyZz2\׋zԎR<`b:P2:BGi]LKBi˧;L'7K߬H3'og;-崨e#. Q]rYP4˝oCb-Kp )gIbY4raNX!]ꇢ )=C*"|sdfeb^Y>4A]MmuL?jbniH3% F 5|Qe)z%Fb"K+EeRʲݕ= Ա϶Ͽ>mݞq(3U=c5!]æڢ\>MWȏ0;Dݣe}5ۉѹdfkaOn*taYט]5Cm13`³o@,S^UxAA2!#0`4 ͣZf1ڋ#ޠL31q|Ϝ0j9.͂0kWLFfpx80kGtG duBn[Ckӥj.$x)W0kai1Ys3x81N0w$me,5t~0+^~zT>~t\QIX=e Oaըm_&}޺wܰ崍?$SLH[tw=UI Y.3 J o3v>Vv[v&L8 HhP_I09sLyMPEfN[xoO3٠-7S& c h4DEQ+y%檸랙_g_<@khθE!bK!MTΓG#Ux< [e)>i7gډc %QM`6`1lv1V^Ŧ[.Y`Y%еP4D,g;o6H,XN\!g677SŕoӮӈl{4u,ec1›;:t!GR#ێYR4RT㩓`\jQMZp:a(6U`D*)Bsp;x%[RRmA96M謴(#Yi5 88k7[hӼWZUٙX%LnliE`YRBJZINRswslJl 4ێWL'c<1$9F}J"l h%C]*JO'¸RLI b_99KV\ux8-ǁAEpAǯrJ_?cyeo7N[oS~utOvswڽߟU -dđ!:!j]jdUIɁlG B-kY,?YnǰIV*#/PِTl8V&g?ΠGIĖ .`;橯w|Ֆs;˭eljJ)RW;fW: =|]zH}B)&ZcAi:n (ȦS/zeU$Zj5FIl.ipYVg+t֛ZBr5qek0ezC.q p#12Xݮ̘.VNUFE)O|PJEm;(#:-#B -ẏ )/Rbd+E!ݑՕݼᱲ0DOw |6/0H{Qr-vU5O IDAT&TABn6:[RDpijCǤ,uQ]n=7dwQ|.ռV>ېKOx)H(<њA*S=3OSZjچE)-ZHyTfíPӗڳ OnMO݀~>vY&&!(]G-HHxʈItr[tD)h[,]$U! JJ%K3/rX5:ƣ!$9>j>Nv-n֚GC)EY˫[\Ghcylkd@$۞g L +_kQK7z;rA Z;A)4I-ѨaP `%qLTs}뮩h4Yl["udGj9[>}ErV4dШqSΒCgLz%f?S_p'oΛ7y[>*9&pG߼rVʘnKǕ`M|xAb0a16 a >ԯibف ﱚ !#թ9 Ky9TO̽'eJ1l$rbjus[VQJ.03^ˈ1Xfao<&8?pHF~ ?^;Ǘ츿q|n*풖+<>b4?1'R=g*BAC) WLəXMPJ8<9(p xiTG;1g:ttdL5HD2=WI\ZlpI)E*^g$_"n -1/ѓ=6p[ӑo4 ڝP[-kKٜ\pGyہ OUe~t+,itD8AESFݗoE:أ݄3EQU4k\A $nBi Er&*?:}st} wk kTk_|6dxoߔ*qQY]5Ьf:gZ,X2MOv]J4߲tePfn@sJtpX(JYI0LfpV%d!Pz_vތwݐ.WNxtPL;$C%\W+. < HiOm;%:̌rzUQh\2G9%6, P3Ĕ"~R&͠\ntI#^ҹI uVXK9IF%RfG]5P\JW65ZB=Wlypлy}>=l|cw[~e(Qi-oIo(S Kk3N;NwX fj_%$RKa?2ӫ/,R'qb, ւdaQ#9wk}Mdt&1Q}&ӂ*󢯔jBdd @!lZ%JnxuUAuہOCǗo=O?{e51tml1lgVbR88֭|;CR1(9BVӌѨRW(n [P[Ԅw҂!Gex{7RŸ~02ffp #HBLQ 73N|<. Єit~ǟĄ3M5HW#R>Sˏ~Q,l;z˘VZ$fHIjsN{MAuiRە5_S˒t\0UXeJujBǶ.4" N0T;Q-X!ְ?Q1wDX,M^OsyѪ<-s>sOSݲGriw.߰ncJ*dd1c_۩F]ц$>OZzdт(U meA]1?(YxnLR?)[rz77)qit֋ ]^Mt:>T̞x߁)bf-Wkx ̝R>q'fVanp%)\ԑ,BG/[~=Ae&P F3FV̂CCX`-YpB*ad]])a@aad0~jz`= ߾cRKqMJ=qa ŒGhj#3j6l],4*$OVWfltxLdy7qV.2`gEI`.o#_ZP- x4Vrp-tUR-[׌,z(EjV5'솟qіPkc:(0s I6kOpAH67+_g;`4c;֘ewTYGN}v4?-Sp٤PDCir *H8OGSVqĂ3h8^4=)19@ji2OJ!NiHӌ38ba+Sɑ6lH0'N#cr\\? 03 BR^JJ\[䈔hk;J~d>W^̵NV:Lq  vF"r*JSAu|@B:oq d;08BdiSG3Q8L ٓ3_^(NL䚽Ēci3cvfCg| s}Yp9BHp};YRv=} \;M\`hAWW~aXzL1Vܫn~<'*"p,xlwqJ:k6 &5A z Pj5[H0%;cYA*jg߼BR_w2.7z"~MJOكX.kBmX˒a6?2k>QvJee|ƵuE}lr873c(3XKJLxQՇb}.niy :w֗|, )W]dR ѭO8;t฻?2ce*&)Z5;.EtVgE_3mQ4)€ɔc@e{9tP#\=V(aA R_(pؑ,J#;lX%=QhN;aw x3,ٹOY|21=`(qt䙭nZ|c#E>9UGb\7!s,̀^F3hD؃npfBXȠ s~nR 81XYF2Oz3'KJ?7_L?`k!XCOD+YY6'dRj-ז$ߓޡ1 V5I~Bzԣ%{,3[Pp10:gy3%nn_1'?ƙ|ƮUES1G>)t`52%K/$P 3F<(K*hE,8r A 5ao?+ DKV<5%jl!4,7;ts.-TUONL3scTږ{t6l ɑWQ+oYCqꉅ'D2c1}0bdJhj^Ȯ jRj޺9/pg<3 ElG?:@M&׉B\Ozz E5Y4jzB Jr԰m} f JG15QL jSff/5:O|A,pe>b_s7HJ3jK,qZ.^oe6]13Fߘ$ˑS"#"0,É9ւt/)QQ21b2SZ?);Wyo|I$ZtZjkٕ~eh96BT?{?/t6g]z| \5WαC.lnp`LM9^eg0jM籦ktH).q$ȑ̉wR!ܢ!hr,'b&+D5jw` Z"ĜQu YPwl4vLm}Z\籷(09"G@z^ݐ! oy}sfǶ绷'ğ|}eѷ-S!waa5@nG7`lߞjWHBIw5# :7'~Mn13TյTAgN:,aYK&>}bm֎ƞk22vopsJB *Іav6[֘`ZbDMc1 61Aܚ08S2> $Beo ݊^aYr% ^򧟢Wo9%V~ǣ6G0ٶNE.}J>a4¼P\InL(V[&MvL̆?[fp&c! j?{%$)C ?O? ?W,ya(E_ʠE˱瘯A 4Ǿe*. ~Ƃ9+&\U`&y/c5p^BgAkkB9;Li9 1aphŨ@J6>1N<f8OY1+L)wR|r; il6RPl0VMn&P2cX(Z|\q35oLG͜t~,NdNb.|җ]?q|)ig)p,6׳M}]LT& 6WgrNH\j{-@ZWuOe0V:\=jQb=Ĭ[sw{z. ,]k0kܵQ_Y:kAB꠻( 3S|7+Q$sr=g35O_*億#hqKp_U3L tG 4J<Ł܄ 1MDA2<2|G%m5|϶#pࠇa9wVNnY0<{Axq$7ha9b8c-^"=RkTϸk($^@JBOwHFuD}Od1&uyRa_޾&YTj:fZd8z!~fQD+rrC5,G~Iw$>EvHJ/Z\P>\qZڴښ=wLa샹VR0+-a<ͫ[:ӞS PW=7bힹ:\FS/`Nw춈0B$fv[oaOAciL4g͖x"Ч{09ӟSnE|wӷ"7jUds ך5ݮ]) T/^Odʶ_ȿR^ @y u\y+ԨTk4Ow[&>ÉJ$uBTH DVBR3Jỏg89~ڼ+`lZS77^g-OvC{Z`fvCy#ݽ1tŘګ[`AkwlMkE#`Y21SV<]VW%3(x:"«-!6)̭s~%_3n}҅ xbp ct@uqc[*q`4LJT jӁ(Ո0ȝ31a,o37TfԶ3]PHMU0̛;ъIgG F= 145ݗ?UPA=Ǥ e+IfQHXSm;3\5r&k~NQF`5P+Y÷ʝeL!Y0skU`5P4z{8gƌ4VΙyA4xi9Δd02)]DE"0THiYnyzB^j@Tx!hL )A}vWv?eL(cfɴ\"k6춌U]Pꆘfl9p$a^`\5\;I(ѡK+JVCT^ei֯s ofmTgؑ-\0C̰[2@F2I)zΧ9&lKCwǟ|^noSGWmg<6٥P3L)6=! ~1f5&3[I"^ ` C% IDAT砯.BWC .+)}+ HP2R*W O7ge߷KI5R8Is>֐tkE#E|U=7dU9%֐E.R<۞۷&>P_o8;rjB6B_ 1,TSd$1-1".uSKT61+zAk=ze E@ 7[,7^ox]#SlS,(nGA7 zgo<< %l]bumpx(TlzJa?)18]݄cv-5֔!΄:NP}*CqCUUx}BСEZzR$1A2Nl 7:#`3ەEUR5 2%c|K($Ǔ4yT'IG'!,0| Wxmq(:vѕlj\_0Jm';,7?OwqYjhe[ez|,!,Gp1Nb,8 Qs@ 3a2R =6_%m-u%"(F{F Db'Tf.qׁ3vmB82hs5C?e% 3V̸r tJSM –4кw$! yɒ;I$DQx S$6P#뽎ytp2LB[zD9f)b5X8^3ǑDZsϻs03EBDim -!& 9xMo3^Dși(5kZNfҠs4U9] ldg>T~5FkfЊ/+$c1Mɪ܌|}7Qh8>=]6D'W66!JyN&#zdϪJ y{Uh*3 Z^onB%f9*Ȝ=w< O:U+\h󈚤'L$WZ}SXkƢ%ei;r!'ÛGR!~{XUʹ9.kfIHr;h܉:|3i1 ZD߾cmOI#Ǚx3fYivu qm&)z˘cÂmzۆ39 Fm"߾ݜ81?wga۷0y&gBZVUE& #m0ȑwZ4gD=-Ŕ4ov|{ݓ˚^X A(K[8Tp߭# ˀ)6&*j*MVG'txe힜^q3KZwސyffP7 c3[\ IBkNv$bXs7 q|yH@4= v`7}F#in*.k0 XRD?9sn?/^/<7|x!tA ɓKr;ۉ~b2#iΥk) da:Ko F{tx rn;dW޷OvpȬ"f9==@Hz]z H3luc>.]m؅B!2+ll` ҨCy}Oeormϧ;⮠& &\۸Z"uQ,U?tل %d*^ݭf oo_QBu]Zf¤PBH6ܠ3 2@"&kѴEj߮PH~ht i*IADAS s!EFZq:i67gw>Y0d |h\Uif3Gq,־VFĪ7t('N33w;Ѭܺ=w6ʆ #:rF RFVks4~m +lv ʋevoW/B\BIr: '?L>nW%G[dϳn۲-kl^f*5D[wm_vz5Be4Sk %5]@6I&ϜFv#ޣ4 #x0/^F8b #s($ ͉)]eׯ_iV+Ҧ2ji.m戰 O+heB!=8t߂۲5R *LCv& }KD؆ #  -NsugG F SdF0v+nƀ<%31ߵ䉅,B2% o9yJk.Dtl@)4K$e= J,Y&N  w;ŘVڛЄ̯ϴGRY5okϯMV(9)TL+,Zg;Ǝ2V1jLnz} \1~3Zk&?_9Àɿ ȗoGJj6F^^0TAUhP([yRw"+avלȀK\wyXݡ~Z5=Y8 c@ 56>8 ,PqvD,Q>r NwlSNEbfEX .cT#{!TX6eP%P_ZCRFѻ֮ ##ԕX]b!W"П#c L2a*>gS)6{P,Èd%QiBۨ(m*zfvBgACӰ׭`QzݩN 3~x"rF!)6]l3|Zh4tM2’pV(UζEК" >7t+n Q}(PZ,~1''fB6 cz/fC_0?ռʦz!jyA/[y!y57ܵq+U0f#wI*$[A3Spٲ`&^D.&0HM=D0$Lq$ws/) 7Vf"|ć#9 VsAn=GHt'~='mjR_燑I]F-+ߞ1}+f8\ V"ĸ.@-Q \۔ђ,@hC'8S*~vݮuBԤ5г$N׷VLiՂ#f3sv\ >PxJx5(ɒ̌8{:S5 kG1$cFkrag?|8")c4>RZ{0y|wM :ጏYS %:B3SD,X5麶!u1TDeІ!i霛~55&Rs/d(À||H,tF#Ey}LZ ѭiQuPu}2ƆG>i;uo0S6$GebȤXvwg>K'D SPށ&&ΙJj%ٱ3"EN'RF(V|W\$|vn=[7U4K=w+Ƒɹ-{C82Pj$՝FƎsO tT:I q7nd$t.ZQ`,{ĴnKB &a&y8z:?ݘE/J'uD(MZWNPB=e.5PR Ep͘mR-[7oƗͩƨ5q-]kCshF16|Q1ґgǪ+j6`jվwE&ɍzL+X-0ը\jNJ;L(kc,hr! Ea@Wѳn{DgZ|!nB])mB5ÞX3%2nQ U/7o5P %Q[ )pZ-[4n"*9:ȉXH,RiiN7hys8Y'Db͞'F?}a8yG_JߗG‘#+;rnAOӣŢ]h;xM"vHvmsZu}f0,J WkUZY,ҏ ٖ> ՂպK$AiQ g ?0͜)V f?pWRBIERЭC0 >̈́ʘ}pMIL،Ek{Y>a.np87_;>}HpZ(=&FJb9R"vhAro wx<[7eu\]I:l$JEiJu#,2VC W)&iCԥ7}zCl䶢9zGbJ;icf+GW(u+dw#dBɒ B'zzu{ƪx@Tj덯zUۧa<#BkВ]+voWu#0UuI;īέc(]H#Nl&5ʳ,f#MnfJGV85X>r'|q3p0軒ruB(lUε\3}@AɪK_&Z7 6GZH(kjH4vf;ր?SlDHuMv6d#3Em3&(Xlӥ1CgQˋ4֓Lo_hݦ-[Y-RfgdҫH?>l;붹m؄WWc{k)I_4e )T_'O*Gd3V~~gs ק=3}LoH@%<.‡#w _|w$C}wBݢq1ZdI;.)3sA+xc$śj/a bqՌ!̥e15t^X%.՘jQ_wH)l sP_M̝2ŒFH}S2Dž<֠gO~+M*&r"dNKCp49F}M! 31s !.BlKd_Վ^s|rp~~U-J ~B s *DT2%3G a VĈxy ]I[3~25 }k8x`4嬇[u_<ķ,yŌ{H1(0Xt&} m{5!dZC6#ɢ OggN gݣU-p.zA R I7Gs"n[bH1a(l"r+)@r4:5kUɫ(lx|G\ Ul!#Z!O^["v,Asy`ZHl:YY[Ce(][Ȏb*@[ʖSZfͨղsyRΟO*H"sy8#1ayJO3~))[~pzʿs|$AI QzX,_1M|V<[-rz D”Y.HcUZoErMQbqi:Q97 5iES:K}: \ϔDQ-MZ\wQt8igLu(Bm[`1ʪ@,q)Ԁj|G>">1f-9*YL#)i1 :@^>-~I؍FF1}q's}M u-4UM]CEuh3#l_)GHq!lP].hK628MgRiqԠ06Ʌ#yV,a-z6Ĝ\8A.È6-F]|1ZFP,G(yj>|@OHGR!dvOSDxCu#٪v,QiMX/cN-f[ojSԈ# \.\fv~o)?f%loO "MȆU.@S-F)`|v4 7 Esմէ1Ws>|?)y+{Ovk(dH$٦G7Y6:;XCgCJHW*+Fمrìx:!B׃%3pf͎0$Kk9,Mmvm.یmv*<b~*/Zhւ2(~%mYb7Ʒo4￿K^;#F"\:ȍ%@RDᐾzM^߾9+pXA ڷ+34($,GYCôOw ʓɟ^)B)}ܪ{JLGkoӟɧ}Gvukwk8}R>uIEl^m=YQJ ,8GȫB! Smd|sbz bId[:O}# v;|oU5g 87<ex M´Ԛ?L`&VFk2%1Aj9I Np,kɥ%rҀ!b3\FOt^l5fjì8F\9͑![...KD)3RjC!O;O6ECK+́#ICi`sY=gBLu4=0UMI(5iY0nƖ@R;BX6Ĝ@+7u;cX<PZc"Frf'-e&&ӠiK߭w;TbY21 79`(@R V;ҤRgP{~ wG'H\~r9TiF@\巚s*ǎ^y'ƁLJxwb )M9L|\CVݢ!g$ `L0ݗ;owdZxL|خhX]STF{bd>vAWW2L Ns?2||%R.#u~?bCŢYΡßͯ ~61U0^5VB%vk< `-Β yF+iM\0Miu1`f|9|}gox y4Rpq/M Չ(X]qsdh`EU>7}0 ll:#t**b5.jM5Yfa  k~s#nP(k+g׆yJP.G v&A?ꚞ >w'Fl$L[ko *lE*j"g24b*62ʋVXfM%PZsVʷiKJ&B̉ &l t(+AVB;K1wY QqADM ee7 : cfOanT}[q\:-`vnO\SRm/dxitƻbA5xi,U+\Y-Vk~8фܦUwmL'h:?Ye@ .|iV4P*v6aH]y(hCġ9btxHO@kw~i  61'">y)|axB$w w5&gR"ȪNQǾk90WX2"krR t8)T}!!#4Ek<#=jE_ș\@1WifbbNxx7w$cYR:/Ȣ }WYrkY65Q.,a;ZO5w|A*q#_ ;>{ȶtWaWfE4PBFcQ¢ybbbtX4tna18_8OUD̹UsX: PP#H! +$l3;p004RH1A(_ۃ%\H3AWV HPs7* )>ՉZGF ;?' ŁeslƜ[ %ZaY-Qrj<>YnWYWH[#ڇ !ji%fݮT' Qrc JVE5`9lȵU~MdӵޅRVK6Hi*ujZgJxB`9'jE;괿 p}$8Oh;qzp.uk|gz7m-o nasȦzxU{T]ޏ =řMPlf2-W^ twn"CxhY*і"2JRAwN!f wg4g74Xc9WSQnʵߩi2mc}RtƷ˯G>>!<9t F:K(L΍)fM%f),nQ(J *)=i$kn+Mܒٶ6c[ V|3zC]Dv;@FjJA=VVQX9@+zB, }cSOOr߫V4bIdd̺já*C/*3G vDdKB^~ sӎ")LxjȘ:[e:JW!C hNpEm6fDߜ?ԣûMFP(EtnAP/@?G%+jPY{7R9ӦMU$ h%%v)k{FonMb0Ēҵ/ۊ-o?枙MJ7AB69EevGlaQo@AW>[EY7LmyAIǩHmfpd%NHHd:iz$eZ$ǟ^]BYu̺M?3_b%QWe>4ssv#?2E9Fx@)&g8-MSK' M{хqDʲm5 oeSmeV6=g.rKJ2 N%m~6n@|q5a=2zr!D&8ͺ!,Z9bl1/*'ΞNTyQg"v!"Ӟ@0ڭϹT掸/WC٦dì2eÀqW>asRb?GH[B rfy}.n6ԑ& E7X)ӽ S(SlQH/ 1.*3N5b]aɚp+B(Tvh֎%${oҮ*T\GtD &\wէz5Ͽy<1 Z&+-m}{O؈\UVZCTiGyŸZX̐ 5?g|A.\{˲z6>jFe 㞡Gb"A? g&3XGдiS88`$9/Pˏ]bTX>9Y6Yr(sN.jٶ.=`lhc)kբ0EFi|lM涂_{NIXKȒ/U)c4U&a )l0ij0qaW˼ v96ZXY}bYKRP%&NR5*M4WU0aB] e14Fކ`閱# .nꅛJoR}b5l<6MC7cp.z:8[֤Z-zxxWQX^S 5i_v;`RC LP2OgtHsA|g^HAo_}hjY;YAcfRBi:-s3+߀•V%s1䌡/HήC-(-Hq| x#lP d8sɒ&\KGlk7V9^;GwpF|vh_L>m)BWlbơeԚ>Dbh@"qD"4[cDh4Hni&$΁5V,%btH6F{|ѯa@uE%E2[Gy7|sie~/RX/Rn2V(O{E^w\~ƀh ~lU,Ez_]!1үRIتl&Y8iz^*!3f5;NXB&OQ9`ZÜ*r5 Wҟ3˷\,UKZwxHB5lZT| Ru(\oEV'$cq`ꅠYų y16Gn&%zb`fD㦭E#*=ANi:V_8@!fl]Nru(wt:KJ瑈GZQ8 Sp82̒(qi 8m@4Q K7D3FI_,^xu2˿>gΕUX"ߝ`, ho!6SEiUu=]բ[UhV#`ʠ٭.%δQ@z s, Yqph %4 . ʁrf8k)ZcQī7<+m`v]>wv^^_nugشɂTo8M:rea.+6g:"D /vt`(ucBI͛iIz=^SG'ݺ^Vd4_k*(|K~*0Bֲ+=3od9W(Jj98y''%jbUk#6Vwԅb4ElB~NЊP1p {i~)M:UhR&`>`,HDM8FwM)Ԁ{I=Qd95j3bnCM’0qUj; bdO-Vfl{/lGJ >D{sdM]*@nA+=@/GЅZ RwW8i1`҅G$ 6/p323lÖF7ȶ]O $C<8GLLs %gd'g4ӈwmE~)l["5j- 7˴g;nDERj׿囼}Ppf0 S[p &b'T0b%=ɐMZH/f@`dGji!w))+͝T'uM>.w:7po0^{EUÆx]ۍcR(Ez+H02Un럣[sXh11]M˘ ~2"1YE"KL{9+t#!06Zp\hn^}V'/oDjVMMu^0q|nf[.1B28H4dO'5؆$˨”0aw xGαfT#LBʠXX_䊣:>3MЦ&!PK5 C-B莅V[{׾Έ+92de~74|yXbR#ȗ3SGEE j3e2IpBOH@d! dg@ʴCC̜"T,'9bc8G_JefX5<4KrݹkSc/d.DFthOzZBV. IDAT9sAˮ7"uX!c,WagTrqykO- yBUpa؎.@`n *&%CL`0x R{= H4jVlcGUf'Nz+p18as$DZ&u-jXvbrb |TcDX uՀȝ?}F7\٫[h}ϗ7Afl7dWx'$bx40<Pb32\+[%řX"futczl1 hZ#B/'&y'Aeo3ͩi:>=qp#~_އ$$q9_"4y1WR]m,͛dɾ})VI3{ZW Ugq$qq1)f^͐&&v%{ !sWq7u(i>ƘE9{aZaj\1G$V0"=N ],nzhȩgU*1-Q=|^xf̤ws@]n Ce! YŵơBXO i!:'Moԓb& )C+Rc B S)""+"#”K7oez%RғT sfOJѻҞE~݄"irh9Q*#lSc *W|x3a!u6x,?~9qqP>`gH'$T>B$eHMb#"ϭe̤DB-+[cOSa I9x~5s:4y3_ ”1tbkص/ՒnhZl,CLHf:;RwmhJFS=Df*cHt컜Q>r^;!Bk@c9sθerg}V5%,Έ=Nio,=] ,{ ΪN73m[;؁%t"0Ed&RqF [/?oOI zbf<ȕ˓cȄXp2c^n1}l\o|m[#cWz Zp3dS [-o&7R%Zl͑JEz$;6쁎 ! K``pHB3]S7͌xF:Lڠ&LuqUNM]ܔoP"wP6}k||}A,]vh&7`NFbN&]qIpcŜj!k ⯡]g7t ( 92, h,iRmIHqۢTfx/֝vU; wT3s7ʗ=Su=Ԑ [^n2z&)_>2`?{&f_ɫ_70@/z6mqi{BO~=|93w496AAm 90LU6"q49G^Kq],c>HѴD_62lR&[S @7u׾4!Jt;.96t=p>YWHE;<7x-N%c ~6C22Gx{r-.ބ-9 4IA{BDE48b ؆=~4  !-~3%s%*d9M˿| ?3 Ga\ad]O<ӻ:Sʢw {Sfan=+QBnI8 "}ȧc]T9eP;;E~)v& ;Z!ݱl@&RCli">Ny@#DIx= ӷ2j%zs$wFQ8$2&`9̓ Vc"_w?7]B˅ @HF05W܁L{l}]e+V7 t m٩Bn꿼+}j [n͵R|E6A[zMGļ-=_*Q\ƿ_c).٠O]PǤG%/mf[6yswdﰵ빫;ܭ3R¹ S8wUtu;&35W&5dwħ!:dc97xwΣQƵaU~XtR`̥#>x`,6urVa6ٙ7m#[e ӷF̏:\jnД(LIDN.z='A;=&\&~ʼn~Gj z(Dc&ra~+Sduv't aJlJ-Z<,fPOX˗Ĉs!grZR=rMlF\,bDoz|z2UZO/m!#YZ p+~uJ"ЗYֿnPygْOLwFn[.P{okqyώР RZwyI]' sO(ONw{+I$W)bwdIWg%k թ'8ū3ul&apqT̐%b`R8N'0'M?4K"Bj Vo&I%{̌{{k/7f !ZۈTRO}ܞ `M:pT| Ɲ]K0oEތi9͞s&oU[LX)WX5~1t(Ot#&%-rY~Ba"60Չ;#Ӷ/r*@,|)zƽBnVMyd&[͆ u#j1wkM|-"9X?g'9q0tzdKYlW2ɒb }ߑ3hnGL{מ>:c7|~!fkOOaL3% @.0Y`WR[~sv!.Ŭ:Z3]'?uu7/ȯCVK!s$L3)M&I>!=F0ͨ#$3(j1F]JeU/3挚H8[pSdDJLq&4s1&TĬ4kx in53/]w1U5^ ]Çg/G.f' B`r,ȭ"#Xd)Z2.+:e-iMSC`)-AÈf \x)9a̋ea :hMȂ˭^dxZ&m,*rY2|݄ D_3?tu} Cԍm,xa#BJ4~q--߶G~' V8Oot7ɩ0-*Uv%>V9{u?nr?[ZI *d* 0$v\4^*)rvcMI!́j7Z6CԶݻfHZu1HnVi&l J/Ȍ E"jĩ9`-yJR$S{_ޯ4]?|x+ w5r.1np &BdW\m`wv9C&ftGq{?oxpO+o~1Aڱ;. C6_s`F2$- Ϟ;ϏS3D /ycwgy CeĜW`;F)p)˼g%dOH;cyEx[Hl|e/;b@&*N1Q!bΑ=csY\^J1Y^m\{~ׂ̘љ3Ec3 m* 3Ěd_ZbCj,Bnl&z%oyC-i<3Bf#[JSӫW\~%2YǖG>O/?߽6S&\')f&v g#.h:z{\+(njzÐ!(/0*Ku9\qp@" @@Ǿ:;9p<\ +ا";-IA#!221G}\FƑTK$)*o, Tds8?hpUdppNm޼ Od}1n ɼz)۲lnX:{'*$&킄9d&Te$$yƷ<r;Scó,q~È˅/iZn$X<K^-u9wh- R a5iĩڗd8%&X5#G $c+y,8  #ʑ:ϦKJpy@-򊊷淿4bܕ$)#%g@NL<9THJ K ?gfwSWfpjQn9 -CQV(1e:z 04Rmab&*;f)uz &ؕ{̨[]Ud^e}<} qޞbŶY&S[ؙ! !$bR@n4 v;N9Mq^&'#!{3S0>}xB,PȔ# '2rC>c.pbd|Q~yB*Ƒ-cM.evqed\i*x~4~j}\kPC?_}>]LniڔڈƔ8 _[|gd_ԋ2\̻py^?OG:Wdq MJ'*gí?;6w5u}yK#)_u O(&3zKc [POQDD*v 3LJaNnR앾ԱZB?|X]:Y.t派]f"'xDbJPTԒ CqL bK(~lCgIʼ j8LHƦy݅_w=BnOu<< +Ls4Լb+' }(1 SEʤ2UWAw#O3;FͿ[|f`V>^"kSknf0gT-.@̊W[ ׷ A7&aCr|/PADw.9 -Z"p+n/Թ_U#07M춅fS Y`09ffէТk^!]iY\d#-p񤛵r߂1:SE-SI:r#eKX\I^&Wȼ{E4H@$˴wV\$d86q8;bc 91Ah #2pN IkKW(4\K5"hW_cm*>BԓgPpb*&0ՏɅdyWR$:ظ_gn6C5θcb03"0VWJX2lL^Rvc%M+m K7د,\XfTIRSKY3$B` tWCe5 IDAT%ǖ1"en۔0H¼k";*;ɾ!T&5a_.$lyv&v#b<$?Oq3NH ,.3pYy bL`bro|rW'@%'0!U>HkNDh a?2@IA}=#{[X?*C+ɝ1hb`y!q !7(׆=e5JCnB8̮R&~巹)783[`C=T\'{1u-۷0*c!DOLtn\PĔ`M,3amndS9;ūnRd?/Vy_͝VSl좺 2#%:@_e:`gL+ աR xbdL']5a>ϪFa6;2Ґ}^Y WM7 bKҕwbVulqoǔ\OuIZiAa #\&-->b4ٹ%)1p*5\`l#Nxtd!)X{%e d0nhC&c&жFr1P,iyy`fZ3T_rV+4ækFȌU?;dCvrnr?Vܹo$,!Js߸E#ٱceG `oAՄ8ĈkAT`1f:݁timO@+YXPIlDܱw-OL t)WYzx/c+hfH=&cҭNnȹ* j#]h?FS^K23Ll {O* &yn\r53uqyffs6D+(log彳nlYD`nEs7?2 0} BIp0JHH½[V)ݛ]A#c텨`!;MCKY.ch[}nꒊE."SC;Ɔ܇n;VpPRL 'Yb7ȵdLZlRn+}aoݒ7O='CDVv¥͗=2I懯d}xΏOc{ qtc/݅.a0 &GriygPC@7bFԐļcs^+͌4ݘ#t}CfBI2:6)W#qbm2ةA-uI͈x~<@߻y">Z>TW:!fsfۆ8 0n 5M1.׹Q2q " kj1G&4UjD=9;ؚ`쑌o5,2'Tb KW_NF#YC"bȶn#sWs uh W@ m8`t CNBt[- {(<7ߌ$ݏdplG>9ckZ~̜)s[} 4'kV00 J@Jݘ|J̰?nE =ߕel ܅TWȖcLe&v@a7Hd0ޥq& . yKj,b5PnON8_\deĩD- `Ia=䉉s@u 6 Vl"Y%%+63Vm6!w 6 ,jmn7Fq!/E`a"l$0b]: N*_)mA/{ zM{fg IM]c˪1B}.T{Ԑbla _ד?-UM9E0 l~&e]e~\&~8)12b]6ɾZ-#F#Juenؓ8h#:w39#[L++/wzR2|c,m |ќ0 6Ri;eSbߚ '<'tкI4Wj]ĥN7YOw<*6W}KzN ʂr'ryYBټCtΓ3I\fqKt0_{N"uH].X]?sG2>,JvْJn0%Ӧ~ r0J 5u~q`lt gˤԧ?ì\Zx#8I̼|v+b1>5\&Nnp% *J5k )"-oV(BJx9!2 Wث7,;.Lia离ޱ)SܼM$dR(0ʆ+8%[}@j9hW vrP>Ъo`_H„Co"fiHA\An&A Nh4hО<"Z-e&yQjTu 1␻͋/xx oe._~xd |7k`;)Ȑ#e;|ȉtBmiెa&|j"n:Xj\8n4wD^J+ML3/Fl^4dy-e@Jb1uΧDdgj[F)`bY.yz&)f AN'@0&Q~ݼ˜HԮ,q+vS<]ك~Ui)`}8CN}0SruĹ+73 Rɏ ;/< ;%Äk\!" v" F-hMR,Ѯ)Y 9&auxn +HڭɶGo*$Ҥ#lņ6U9[O6j7%lSeM[ {7T,s]^_[&S$# M2dmܨkw=n鼥vٿ.7_{kyȉyxOa㖦%Ց`, $$ORDu@YbdFX}&g ln1dQ s|tNPYj>~h Έ>}ڈ'! Ș26ڙ$ rPBTF̌:[n駵K=z$gPoMѪ,1+[1m bP]{_JW2s2 q@YnB (MM D[.ؼyYSҳ \Nu K?YG=^<*t!| .G43Nj'Y&C(́~,LPD |z(Q ;'E*$A.zBb9oxOWXZL?ޭGesffUwˡۖeY,$^yOG7l ,sr.{*3%b ""gDfV{92/|:=@ LThKbK 3ulk9NaZH#i<lDSkvFP?eam&O2:`CqeKu{?}a "CpejiLz4G0\pDMǤ1k-hXZ;c']1O\g͕I̓2e֣MAsGs }1cVޯrY3xYbqgϗw23=` [fЄ#G8+Ir{/~N#:2eH&2 2J4y%l]_ksqMx%Xg!8;6WFN\~.tuɁǔלZu-3d&_R[%*  RG뀗?/Ͽ: [H#&N͌,'¦si:[2cX~ͷVY]`G,goGul<"nk`9 Ȕ*j 2r|fU=tN 7?'p3 Y lںpFn JLi\<)1'%/[_7PrZf+Qбi4b 0Eze%[NH{ƾݛD씡U-y^Szgs 9/3[uEjŲ5 4ͰٞK8M,(Hr#;6d(\&zRԷ%:""^_.0szvnaQl~0^(o]֛'δ6$a8ERyX`%a6;o7mn\sO ,qjS61VeP_kE}i`𼯅||.+jm'0`}؊ *%SJGǪ50c\KbeǙY\nDݐbNӬKXN;\Ñqರf3_,EHo]By>O^N|<5s_}EV=exޯBjɭM+%lP—TD,lƜXS}wU˙GV}cO=$#s᷆)nrLU*!%vHjf̷<_7]/bS6ș+C ?9r Ý)۩Yә R yI/7{sڧCR6[kf(u3j=U4,+R2WsL5r,i.lE$c6B=GbHxDbhܬ΄XyVz S(p IDATFO4"!_RkRơsGKrۦ6R ׍4SHW^XsTs^Y#hθs*k_lm&]V*OCQΗiOx=麹8(mPفZFKvG_Eݽ3+ .*yQO]~ʝj;{),CTRLN#5P30`sst^$Lpgd`J_'΀(l#je[rǛ&!aS5Rd~#rK'i떊E/lTLX0+/8[HDS)y[UDr )n_϶n$L_Y%Nl3@}کFwV{򘒪@x9R!Ȇme%n_}ՄtΕы1ÓOO oW(if;le1.]&1[:L5H>%w%`CGuhe 3v')hwyeq+1sj>S"V]qƁ%rX6Am1cs1J^n9y]!M5^#˛o9vMΥ]aTkݘ֝''$&Wٌ ('ϝ<_ĭgZ XfZuV_0<[yMek}SVMVqJtDG,Ѐ!A0r^[v %n>fwRMBݮEIOhHcĥǽʊ ϼU1*sB:]^@Sַ&m4[1{fPdi*pqs2J $k;[.j$w/)Z3pP Hֱ7A@>x7َC5 f9KBZ}9NȲQ#nREM:1*:SGQ[%BuɌ`J#kɄd-ONӜ,~NOo\`g*!f 5ӰĒyB#7{r 6"&l=2K>KIS+Jӵ[fl{g]햜X(y8+s.Y=-k }X-["^cL)ߓ2\Y_`y\[#]"I8x(n 'W ?g8PnQv'%C` >؈D@¿C,kҊFlwSA=Q{P_AI',s3 K:Bkg].t,cNxe| l Q? ˴bc?mͭ 4ZR"T\}ѡf%\j>V fB>913Ϥ1jgȷy۫3y6ZTF\i}K5Q'Ή&cSu 55j},_?=יRKJ=-&x@:NP X;T εhgV%A88Vc] @Jw~aʭxQhХR؃TX#n.eqù0X,/*S';O/AlgQց1}-r<(Θ6ٷHفma5&)'յWlq7`$beS\,vA74Õf9= )5Rɶ; %V|>),;l&c@xGdtOUv; >/7s鎽jsNl\rqe y9NӞY7A;\3dOCDK z7ݝQY"|zaG?T(bCI9/R$sڒ)w+ `%f2n\* 1xTgVF3Z?kUfAd->ߛXMڰ*z4a"p\ͥsxpƻ?Teuh^mũBI֎k;X1qKSGWVjg%RL#n#l44+wC <#zgle'G]T.w5]%Q\yyP8zJݺpvEanʶ4"4[&P26pK%fց80urFҩj ["vYf@rl>ܝ^wN"sԊePct$c.!o*fɅշ88]`HX7ߥ[e oߞ_Ng͹ //klG06/x]iq3(3GQ!pjOso3c]萍FV!Z01`[yzYI}84pIDΣJI&1_vo&MU.6gCGf(zp(B{i>v`XK"{' |:W`uid3ը{RLcvGȓysq#n6;G4bc!V\"l&jg'=7{۰ξ1W&JӾz|ݢKy a2K, ?f!=#EsPσ@.8q`VRb8;x#j?"l ( ?xyBhm IF=׍늭}; #>V.A^lc8oVPK׌Fz#!`Et-30M8]uܚߥ:A/?=]bc&ǖvp9. j^s [TAt%ˌK [aC"Scbftla*`sFQ|MUB/ ꒏WW<n0hbc1}y');mUq l3v䳜 HC7 $JxХmesp-#SuKub!x;!6 xvS#s(6`sαtSP\TgΖ28=oq~1ĽhUۑ SRrTTd\9[L;3a[qnA^!otNUj4Z+ )ifo: I,X֚tPW6CY@،K37\M٫r?#X2dZy!W%%̠j0!7,4ǧIޝoy?|1Po+#3K,(49^Ԭ}#8VcgR\ n{Ve>Æ6O6r||Rb}xJ|~;WNeG/t<C|xz,caaXX\q)xݴ,_:#_8( VᏞӄ*15Ć' <)uƧAe f3P\/+~- i"ϾnCy6vYÅ8}@v3Bג3*ջHd.F0B6\R2ku@F^n6 TX}XV-<3n{u:hǧ> E|Lhe 3"ĩ4l#aKȞ#oi6\^51qJPtEa$c6z6H ۽FYy5rŇzH=Cz.7-\lxt37"!SDu8-X.-92C\P:` A{cM.Ƨ-}SZ^z @",vFz[4fS^\JwcI}m@lYcȡǚ܁Wֹ6: y<'7&aشfYI ďg, 2-lՑNI<0UYqd%Aly`2ԂϬX@j$m=&dzN˃_2C~v\rt#9PA/G0[o'2{V7\Ј2/MF уl8xD8y&}ivje ȏ5 \[s::6:j_gkUi bO_`?Lf N JJ6A '+ːbbK kUz a# :ˁm?_wXj Pl]F ~T ⌿_ﻧݱb:Ao*_{HǝH.|{ed.sA9\+G? M',5:EP)`{I]g.'ҔwC_~u~%Uf֑d\L$<?霄_~cVwMf et(B?) Mbڮ+o]btD8+VҜoF( HRNJ;ttYMy%ykf11\n[ MX_u[Ϸf {åOԳLdl֟?h<7R;1c~ }O9H7tI9|mEhr|L0t0)onL%C88G^eM9W:沰ĦDv kMY0:#)9o"5ͻ=0 L3# š-O' |%2g;64UpuMB1ț&m,ȳp*,Nozi|seP7=5t;xwl5 Z ;΁> =kKuJ%r/)ɿ 7c aϻ.NMԒ[)UxpR"葄{YڿzlB]?qu>{AQ:e\jbx܍q]0aW8d-H$o<ɽ+[ MS??g<3m$w{.1̹Dknս,9ڏAe,FgMuxV3#QYp ݀GiWBI3PT<ݿ= =s?|/jOuΰS]IȖxK ncͭhAB&JX@bHR@?_|dxXܸyn] 55FӈJy0X*!x#{m1[1z&aYٴ?ߔ.zej*άZ:+ZP6Jg+ g{L~ZQz Q=VclI9Z Etc6; sbvDGޤ}ҳ n@$ldy(ץM՟ #Wvt2RRX\S[?`12P2b}%1SјIpx ]p܁_LķW hɃpxAa gxGRua6XWw%L]ƕY#NOL}!nIZwD(.b1ϤvKSڧ:+ ǒ' e3QEIwjk4Om/"FՓ|u.@{e^Zo֐mJ{>.#bcɛ/Y 4jի{~'o7P-%*eV+;0GOuzK|їZX } \aMT&AR:@ӈ9UN~& IDATg^_wdg}e;@ XQtyݾgm*nFO%n7m$JFkU* p+L͌)ՍA}:\rKD.]ܥk/=U#S7B]#g!-lZ< j|G#x\et2Ͻ5iX aubUΡ9leC͘ Y,Z ֳ~&-AMܞԾ"P;+:a G=$BS wgpp)v2bbҀHc 5V*CKȥc_X[p5 ě"NA2,嬵:#q/y;j~AYX&> #q7#"!v+5Ճ$;',a01u(]` ׌URS5f5Հ9dKQSު=i wAǏ{IL)4#&{z.hLxe;GL ,b{ɚ :؛Zc6T}\jXu3|ĥ~2i^e~P0K_%FJj- C0K1yujb #U^fQH} + :Dp>ȆZTH6PBtpr 9ak?&kݡz_V۽ ᣟ񧿉!6703dqCA&$"s1x:y<+9wHﺵ ΐBKI,n᜸GYض@ 9귭M{\ Ky%QUPeܲ>0OzqYR ƻa ~ex%&6*30r mIj bKk#nmc.[sMmq_]u ڜBṵ>TfZ QGU F l=eX6uWűPlFCm@ۨcԴ]Q~j(}C>Zz "="5p|; 㕞:ǚ}G$di84u]dܻ1B2Rǰ7^ژfIpWJ h#SR튙)h}4"KNy./c|tsx*5yPcѫJm6܅gX<ߑ{;(b33}h5>p"_@Ici2L۹ɎZjxۧi Sw'w!){Cz0%BD0Hc"5ܪ "h3|tkQİ˦d0kgKW \>G dfS4%)?00jb+Nx9aZf;wS)6@ µ ;鱛H=3uM\et8#հ2\gkgK5⽣,}U:pJ0[(O麤| `{B ^ǻ1wi{;fNNB~%=9x.ٝ01 ok-CyFAT&p\X)<@  YC#`Ǒq.=55sȶ)^8Iq]ӎ¯7ƍbڔS+:e_| 1_X_h +)m+Knj\N2ރ+~ g-Vd͌^9]p2 j}g ώ}4)RxCD{,Lϴ2 ]%XK7{$ z,SE]{[Qk-bnS:%H@3b"L`~m54a#nR33,,s{3ՌU^aDvcI~M MJXyeI*ʣllܧ~*+RG=AGLQ<wcb6*p[CõY |/o|Tv}V׮C.hȮ֔SP[4eyy_>QBL'9 j!R$qX(\o zs &M83 栣Erkam~"^=oj D:Rg?<{W[ 惩6?<m/˛GlǽcNT|Kkߕy9yc'u=iDdy伀9a > P~io~]]Ps (!N5! “X庑J?2ap\׻ѧЁU J~ "h,ZZ|NɑRy<Խ_bL $C!jK}1Wv0>\Zǭ c}-݉17 _).=& ՝KF:L'߸.0XZ_>}A5^pVJwgbzҩj}=P03B|f_ bhK- cD7jMTHݒ#/ ɬCQk;;dr>0#Ϥ(p-8 [B,t:" (}\Ua" 9FZSU#^ʫl7VbuwZ+x`Z}u;#A-vjOGc_1xZ Qv gld;vUv7ǿhIj&a0i_>]`WYRTi7י_+1Ţ&8R)q| ޣ }*A!}dbghx@ܣۅlEWDF\fčE5)q:5IJU(!-[zS:Gu@?"r}6底!lcZG6^ntƽN9]IK>#+)&;.*$UԂ_сT[B+T} rE퐬V L:#wn7 Ijxjl5pvvU1=QY3Nb14u}xgRUL$4z9:.Hԗ-ֹK=\>0=!G!5~1h&NɳE&F99{H`)eCRk>o3~HĒө& Y7}\9`ZFh 7tŖ6u6ĒZ"L|]w+ưbz*~f:HtoO?~gjݨ\$3s| x׹M).}(ioT.t(ruq_1 ?̀h89'._ͭ kEt6uK9+ovM#_eWF%x=baVP&m DܡxE_Es//+uDiBR(>u ֙oڷp,Kc52q 𗚹m/20vKk[,TznL֋TΞܾђ-bMu"lH8>&a |:X <ͱt'wt:VQ[ҍ7=nڀ{?]`-V*1 <@ppLd`g%u#)ת<&B`cѴT/jP9\X]x0aX'([iv(A|)"|rG wF3^a$3L 56cT-mS:ϳWH°m%r\2+?֦ ea)uBۇ9eu 1O78x_%־uWN#x?/, [V5 Rvȥek$f9"09XO<4= ֍?9?3냲Jk-6ÄY,!I igVa;[`=+?/D{+ѳJPt-3 #?C&?8я:]8~"VxD$[ZyM36{iSm 'ڄ 6q@l:SDBhcaی&=d ~w)\eLyrLJG.r^yNM4pKj <ykbHǰyҀ7\ρ+_ά냂C(Ky )tֈU<͎ r]u.Mѡ5AUN|ĺfH;%Vr 8XHY>qc*J".%p?bw}BUg rJl)I/k ؈&וn X ʸ!JS-#>B)XroÄ o .+J q//x [_ci$E${sB\z[w'=)r!_]KYNAp0.mgi+!Ioێ%Iv-;Y]a2zFN h4p@I2#taf{Gs-hdFfF67[TW6!WPL[6Ƕ$̊Lv?b}Q'(OوC)hNI"hBD^>/>޿zv~v0_y_=za`$0YOwW1IJbb\0 8wRޔ4(ڔaV._yU,m\T琰LnMKm\@6^ħci,7ͧ0Y-OoLK7i eg0m0}{XLaƙNJ0T"@r`F.WTqXQo1^[jI$Yq^%.Z8VM3>Q{O8?Wizl)q0DL(U`&Ttfkj˳0F6DU%gm֎Gu.cۀb[pCOw(͝ @]"0 $Ph%Ș{6HZ|}dҊܺVP('zn&g .K+עݩ[elwO4Bi#gue(tO ŢWE[FE|n_Zy IW&Mk77oU9im*MI SdFVJ\HN[M WY! z׋B:UKXܱ<\qbU oD 3Йx&kM M0u*.meq!3Da˒j Gd֌q{]d|pHǍ#K+SXbI \7`L4QqB^A@m!!O7p=/Ӯ{$ޑc(T>P23豘 ^抷aHIWk|:G L'ϝ,T{iNJ<;fwv~!hQ s뒮l]zם/Gv Q"6h{#bR`h IDAT9 xfre@ cg43,q@'Ւ}Y^u*ܚUԡ1.U5_'.PđካØezf҈^;}l6hVc4R)n#EN?Vr7S=XXB\dO7J9L3esv_&Q\^jwg3K4{^Vʋە۽e$>Ki;l3CDfTGʇn$;jODq2|Fb 8 emF~6׌y^WK}^?r[ٗ$ a$WFRg%ͱh·O6LF*<3}BQaV'`Uduw_4`$0iѥ'V1렴\FTףGcY~ ,<-FTz*7ɋ /+UX|ꇡt@M$ϛm{=n&^xjRx؟a&>[z> :|ioƔA0Bye,[u$&`]S%1Dzm];7sl8n݃5J5kFkޥEXfebr?'?F,Ii[1Io5_o6ݵk_hb>\V\kcYLHQYVG=b]#WG̽%73n% vIPdUnS~)чY@5p-4zUu78dL̕p(k0)Ҽ~z`H8UCw-z^5%q9~5 ە$::s^>B"wJMygGp{ڦ#?09$C *䄺ݤ0n ,fѱ'*{^ƅ#g4GTX\k*{ lBMm D<\iIviE!f ڶܤ0RחFTkS5O\S Մ}e3I_*)7K:!$@<kWUY}\3w F. k`j:ur 53@:E"-`HV#Xg19% Fe̘<6*U`{,'7BپHe%Y 5m={P#Xtf+эge *!oFmjXQM$KDܥ)î^IIej>+%d+ r3Iu$G>⡅'̆wv He;[KYv~͓d? xf/#:t{n7{{Tk[& q.P45$cj!, Ӗ~b;ҒHeB!: BN,?Dݏ\lIM\!Ƶr9,Y#Y_#7`&YQ0ܷ={Dv}-C/A փљXۢ`9+ļcK=A_Ku-r"BY<ّV?rxgQZFKh>[A C&& pKI^[-IMmec4oɅTr1`Y#|4ݓ)-G4ô1-]G2$Vj8wb K`>!5OsT٪&rA5ܔ96IYoEc9TT<)l8y&g$?zmʵaF&b%tOI+Vcݪ)&Fr]Ѭ[2qSyhb9Ktͦ:ǜ]ӠRrUVۇ!NLVc2W>|Ⱥ֏zl ]~nKԮmiٖ H'iM)!z]1 ك!Za}u"-6pkm~Lz.39UfTӶ;ٳgFm 8 lۿ?}O|أ㵥FY|3qLj 8y5KӘ)ĭ&P^f-ߝ֕X_u8ܤ؆AmmFwg`Jⷰ385Wd`Ȱ.* pܝs*$u4kPkLV:ׂOlAYyܧ mN4V3Gҗ}nU!YۂJj^Ꭴ]hyDQ߂amI[9 L=6͓T<̐oM~͓nɮ[cҊ;>^zm`иB#2Mkr?ս E<N g[\ә (Ac]_= Ԧ`7?DsRy~³8.ךmp+>"O5}!6 nyh]OQoxIF02dX^//сŭL)3hJZ .)!LO'd胲*a°m _^qq:G=akH&\"KU(/{%S&COP0Pӣ.p/uu ͞x}{`J'7]39hE5UO+5cd=A|(AXQ1a0D<<=fԓR{&=bf4s>NL>2qE9%KKU5~gѭ6ZtR&dcYbʍow({4cwm`fc\BԚhVbDas¾+={\2*5.kC(6~q]f C5cʲ] M][4\cFh-%fmL )Mmaښ#k)S")^\-jh&قS;E2bzD[iytWӂUe)?bvlIQbO }EĘ˦?|N%.\H`a>ӕU8Xm$~;r߽=팱 ޓì;! \` M>.`lT9{fap¯a.e-imah ! gatˬ!rcxYEVAH{Z }ln ogW^[i[63;qb\AzFKX ݛ @$f퇏[ 6}*bkx\*R'\>8Ԇp =+&S]>zUߒ/AzA!#<{@t@(4@!yufs/#r{vm=6ȭI)! nh+9O5&v%ӏo/}l7TBCEDG:ɓ{,A#2QQX^F= Cᶊd,;{Qr '}^f9kQg\BU*OAs,CYγu-iu {L0b9}?N췛K)G˃.4<=j1`)Z)$3F &=st6 s4) &"h&@ٸr+cJJhM赱v'fSUSQIHc(fӺ#C8:q9B%D+Gb`Do{Mgɉ[^x{\U*E!]+cy/M!h4&棷Z㩃m\Y+<6Ď\m~HݶwKK4t;(g+6߈!aJ)CD%b|P5%Hh@ Ipz>mF~f{ TepG ?GVl,IVrX}]DX -h3?;/V>BJeEYëOc-|+9'FD1Xzp~dUc4݉oG+Cl֞ a]?(WtZnKj!0Կ<zΣ&+c#M ,3P-tSZ:~3nK|iHkp]NB?;!Oz`!C͉;Dt,̩j C};*bTF|34AqgASq$S Pxk5Lȹjk Xh]w9LB<[HMܮRɾ=тݻl r`ؖqیdo,D3nnO:fXG̣U>ۊ;IK,_3G3S/6I-, i ..eXnX UY\8oz 35130x7ٲQkݜ\CIBz^P02z֕)W1KPXA5prUnZkPX">jk,8Tx%M ?sot@=Qkqo;n},lfY0FB<9J[|VQK[yx?u_J[qsd[؜뫥Ebi62,nۋ:]}S#̶1t7%YF ,6a(YJH9}<5XA%-5Nlؕ]7%U&Hb]fEY̓bM r#CLV(= g Fh XOXa HFZD< l+Uf%(lAYkCQk'$=YMU>bS3o2:WnM;^rW|gt?E/FJ;(-gB$jH/ΑXD抗1KFd1 LXY)YBE&µ%2祧_%P*N=*̯[2 p8v 'voQ(ˏcI[\K[:>1ݱ ys8;B <~(1Wֽx[SKH8iŌȂJx񑥣nR Z"u3b,奈8^GaolJCb*OIvwջk)Q[X_τqOwVyʈ=ӓ$tn2Y~C(g)՞rhNO./ONPj'p75bӧ/I IDAT"$[>H5;DY:=I_aҔy+$ٽ/ 6_n)} kپ^Kz .͡\l`MϢ' l_6})\騊uLEv τWF005$x{!uS'rwI%'6YSd]$a-b 6rO=҃IL|gg9/>=lȹ󜭺Pւlb%u2+pn&(E /pv,V$|H EQA_$j*җ,PmvRT5afRpPX\x|pSTX43)2s"+k"$\}&b3_H㩵ڀR"`3AKd;mĮ#N? ?`>!cT>E駜I08G'Q:zaC2X*ČH k~=+(&ol+˦.L谛qex: ׋81\0ӵ#ٿF^=wȀ p2X&Pg֒ODd UCŒ@L@6L;DNZuPhY+2:b yoɓG/ǻNS:r>BL.@ō!f~2 .W<0;0ˬ΋dQillP}NL-OE^:y:ηYk~X~>gy o!f=t>W!:A7/Q$;94r11U7j)% S0^WK,b UO0hJ\2Iy`a֝Qqi ; b5R+e+&?+}>H)QJI灨8ә7Tșe!dN9955URΦ$&Jێpk\7|(ѱ仠Z*8Em#S0ǔ^eAA> ?`#*$N&uJRo 8!#ˉ$8"7Ts:2)!rVDI7noE˒Bf b08Nc]iNma)KÓqtۏl< 5zl +/1_ܠjC_}a<+%hk3+YD{ ӭ5eg v{w].S>b"oZUN\G̭pEK0D.&Hd7 k+6]K=:j7rGpu_+vQqO0|va_0Ax2o|eہLz4b ++~P%H9.?mByG'?OĊVȺioI5N-%3GKX*b pfyA̠͐qnX*`\̼3vY½,̀^\8G4f\,^; Upn3oH {-,̂$j,\'e;z{#PNTSc ֢ߟyy%~mFk`iacwfK+x >PT]f,~?Grmj̐wAj7z\$K'aĞAv OCieuOջXԷN>ut %\:%Igb7r9DKK^kTW'ܵFwd8l, YglGĐZ@g})-wXżбzJlk]ٶ'ժ~|Ȅy`r$N++SWapxJ5# Fds[rl]j8j%YU:60`FV)i/C >M0Q.*8#nOx|hw/ܤ)(#|{eaR@H[fiİUpw$/W+ry6'qn$qoz=r y$?^71.R$7ۊn-&rFUd-M϶R)HMyË"plOot[]zbս)hlMMry\jcsQ[RqX*]oXvtjlhܸs0z›.-h L+SB0sorAPA'tǝcD!_:jC 'GM4J$4ɷXGLH(]ܸXW0g`ğׇZ_)w1_9fh5oe;ؽ /v>zN?3ن0e-X6;dXۿ:9Z$dgðRFi}X9zWRS9nwDWiZTɉE 뜋"PK QvO#y<|ىZO]_nAﻍRAU<*QvV=| x3¬^9)ANUVƖv P©z%  TT/EtWݽV6t<_Rk6w:y^.zWϠ-%]XI3l]}F#R[ui6 ONH8kw.]nn-f-f[GB1731׶q%8KT]Tr\ad,2G:Xy(i 7 }:O^\+,ɇijR#ܟ7H\!"IÁci:X%IIYW|eV_{S2d&`TzQz;Q6Nj{heR$GyCCbyz齤sP=Xӭc38)QCYR3ݞlr11^U /p -+l>F51Uhl # .;[P }mRK5+u(U;|m(zJ&\_m~cZ,Uȱ;E;["~d|Vd}:0~^sc=)@OsW<ؚwdžzWV[{{4|L-8ViI_4.ltd-bàIӛZC8!&oK u_W)ODI&xƲ(2N:<˴+T9^S׵Gno/-j4wpc%?_dQ3e"ݠt:!ǭ:gmYc7ešY׎%z$@Έ3 hOyxӺ3:Dzn3F3uwt$^l`4=3XEoC8d; U,MZ#B\~41005 !/aB=~]1*—iŨ#㙲cYLef#nE]9W2hDd `c;8{M~>7v+Y;`! ʗv33q"Ĥ !`- g5Ȩ?]oe.46tlt"N"<޽dsucw8S{spi*!L=giYvE{~v=3d7#%/&.2wf,y(X~pSWbc׍vB3xkk`؈a7{/&nMhCU:'CSeӋ4,_)8?˫r ˉ7JBV ƣ͠Lgys . p隗nj_W6!YȌ_ *x/4N|8{^Y4M9qȊVgT-hZbE 1)C?1? HHT#h]tU ugVFsnf1ewd "N싻Z}^ǘ2NYL%^1`7̺OR+qRv +0L(&,B{V}cBfj(kYʮqzq϶[l @Zlvc ?mF\y=S֥^o v`gSrdm3z21XFR턶LsU'QKᏞ\8K&K1 SbTMmneY[Ƶ im1en`umMu:Ή9\evG,(ŗ8e8!nYΘoyf]^7n1@*$B(;П+V Ǫa[U~ya>5qe\NqjX*"L)İ0^ ` 11΁x| . 68ybTݘiaAf؝U{>IC FF)־i[ݝZ?¡s%M~ģ>x$.&:ϠX%sXKeƺCD܅PŋlqlM(da[.2så\u k'lo!C SOyx7N^XIclF_멻jIEi1n`.Oz>v.B&{ ]Pt|xׇcq(}Ż|.\,ŀ 9vxa_'w!v%S1^\%pĬ^pt&7t3#AٓM5[zde8M]g/`w\^)ǘ3NtX*M޾Ci CdnۭݢhrcW\У4Cssap)sq(syFw!G~ c|6is^1o_n33z , Kb\L)5hښRyJI-%Vx9#9!hWn}FI@7w2K߃a e |.YNr'$lL!5=__9t߿:6dNoek)OnNm>$Q.E0n˻XYZ$yqݴ2 KdTiD OG<+r8ϺkrYxV{)K:ԭYIsʺ3}ܘ-qʏ^2݂K}qKQʍk!"klǮ7xnBH5|x{N'/fŐ;r9Z^3aDtv!ؙ.q Ur̻ -`# q7آy ' v"[4Ldr馳~$-Iӷ~<̃[oD]ml+|;-9eN>D ;g]ӐL!חP%'wȹ~vu!~ci8!,o'k{2)VYKqW{6Ѕ#v* :H{zy6r*:.Sՙ݇öcsEy:C̨ō#Ayӻ5-EVE!r$FDn0O;><?IKgnj%z }YJ7w\2(cg\/,8KIx v܍sϼ#if5%HCɝ͖bw (mNɽKmuN퓷faٚi)w 1Eju@Г"}wd[Sqj]w5 cR;;~Ԟx #C̉ݢw[pLJn3q% `Uel .ӠQwA'یqϮG )"ʡ2q1BgQ~`i2ntҒl:T {\LCP˵s n/Snŭg,s<!4푑oé&IF/)"11E.39p(\ir! iG0ElfAPlɝ-Xt5Qx[[50Ly֣>l+f}H,[WyIj϶[2ȍ3qH1s9P E+%K<8hZ؍TP;L\(PcST kM\?#^?sݙhBLݧ)Y4Fe& F{w]#b{Fa,Ņ:T*H]~K\Ϸg$%F=kzif&[#<$Cf8Ex=eKiϵFc=n۰%gPǡǸTy"$=@iZDHb"zҸZlVϩo?pzEDC/eMcF)I<)9(Y" X4Œ rYKaDʨYתRźUۄ_mN>l[=m 7Nڤ`̘ }Zԛ!^]!V3z)oqt 4-gP(gYm]rM` J=k;Kߓ̜q:o¥l̖&dJ֍H *˾wߧ) >nV+L.Q`@.Qyq'N31q,SW43*DE4Z_C6Z_ftԗ;EݑhT\+gB-챩I;/Dz $SΧhsuC4\ |De]v2[NJJP,(Yttge 4ؖApgÛݍ#mC^HGXî7ܕYaAFvCĻ>hNlmyLe$n< 191tX80 1 @eB ؂ɔ: ;~"[5⚃ n^)3dLE*Vt!grYӚn"s6m @!gktu`0}qC`o-469@Fw!ZLh5JI %a议@I+y81 \/:0nǽ!6]\kfT(~ <-i`&FDq}=muj0=Rrq(Lq 4tkTb[:ݑ@t'BZrX TO\0JLu&2b)>LL әgb =N0+@$drthF2œ{;$40TA(C,K rWf~[ya7۹ωocp}bWu!zۻm3,~.k,GЃa$Pgb+ 6EC4i$M쒹s8$!KFH}D_okUŮ:^'rةh ~0sx0F#ptzca g"CO1DĬJT-v'p6M.XP5i:n @4o򠀖iw/@5rMk:Gb8=ZLMZ uaO8K<O;J\& ԇv /[)ʃ0G6oA]+n~ 7,k΃4M~8(0o}lp/_痟3xȧ=_~􉜘 =}WsKO;.ȓ!U9ܳ|o`Hɖ/n?}7>v#UfHf)eo7r[k:%C߾4 *΢\pN91زw7C>8Ƒ"'bmEy1ktޞ%2I#ZvD"qbI9I1t92n\J6p[ÎxISIe ZD}(0*\WV>yS:PfRBFv>:zJ,e) MtD i0M'W 8&ЯЕ\Oy2Oj @,m(P4eNIa\~MdlϮ'+%a^yG1 ]ݤqAPGrk{~i o2MÚr%{I/Ur[.ҍIoiq.ײM}%J8]O ~Qp@y iPLr9CrKXl4Tۇ;Vlae[ĵvȘ`kc5^oӘ> +[W`S{B]hGu,pu 㫤ЕaGCx=3O~ɇw|[Rֲ#cۘ:C&Y+2:sx[!B4 e$?s~,},DȎx0ݑ"ךcy==9\wg!I^F"BPiuۛXGm!=xi[*P˟|]>%?plD{dDĮX&rD,&eۓ.ݸ!}W0w ],9OE:zvv="^x q]&9d 9螄u4s6/UJ2ɎSY @n}pJ߭DyX;o>w'B3 JVo-@~f90Z^R. o7*s%2e>hV|<|6 3%`(Ӊ0c,G~-r3XP_3)sUA:O)LshJXuGWl,V1K1 2aW'4hkzfR܎:S~Gune" 꺸yW貥{[Ŷ&˽fZ"X%ޏ𵞻 Np%ORi!ur7{mǾ`'Oq@zfr#+Vk7:KR}w?ޏ#\\'/߿Ĕ;t"@7a2qO0I[B*H&gJU5@< J,[3s` 'egPv^u4v`QJlcϕ @MdOI}zw`*:3xsđ0 Mfpxqљ9 !# sƋv(٭@nů\jm`Ա߳9ޕJo6~6B󔇻QߺEκA]'^n靂MtYM 5HH=3{L&%:5rUcVnck)qʖ@hi ۴0F~|?Mϱh=ٞǞtc(\>$׬ tyx}YcLT!fB"' ]nf/1h9e ?.PϚF@>fm[[[;y+CUvY 2eBg˂(ȅANMJ\ -g8s{H)a|%jp?}̖7sfǞr4VWNq OrdKiB~֪f<=ev!;ʴwTuozc *yuX$d8H{i͝||乷_ݼQ5mx2Zq0\F':hbK{8sw~??;~G%+nw1.'';Dе`x*So{~_Y9fp (x _|?? G!h[@:,5p)옠eL$v, hə9' \Ќs".gl}G YCeꡢpؤK wG8Mˤ"- =°+׷/IԒT6vBw3T.X4V[KiV2f{攷\4pT[.~[ʿ̃W@(ݡԐLKB^q1dTɥ@)FD*MYN9eOssۡP*o9jf?OV7#D!:hPM"+N[ed*.? AA- Hٹ71t`^ܼ(/to}ɂQz׼ NYXܴ"}pb i\Ɣ)MujyP~R׎棑0JdnlU*c(dK'◟ m{@,"N/Hqݍ!Gl<ב`ǧ)Y߁Ďy;2z5U Ow2|>Ny?*owsON??.@_Zh)iJ hXd8 ;P%TB1~K0aDSmajv\:9,tDrc׭B/˭J\$K,zV%$rH - S#6*y*] L m Ǘ8X3(I8Boy׮43M\q02GPӽ*3*ԣBUmp\4dݚJwQ(-lg:ς tr<#n̟~s;Wb#uƒ;? eV%܃kRd֟o՘rAj׸×Vb8Yq Q(BɄIi)VX$3:41n%]]--CD*Ƅ0@_cs +9bqeJpTbַdN IDAT3&+*$B. K1?OmXǙ7vx1c xJO_qyx}1\f -nvјLyBpQY%sί|tSd& dc-o9yiC5T>@7-]tyL%;Qf)ַ#k鶐6$Zwe=(.ĄYN⺎ KKD9"ib3xa9I amyTaz+Eu~9(lńa'\h '2iIu)*ɟY_xmKXi(䞲mC7 9xbx9'bX:uM_ 58aP逞O7?c(fcL"NuHQP{fUQ`ΐ3>36;_}p(uu#&b{ni%=ӁYAz_멱l;aIH5X+%]٘!϶1clY ],lo\hb %ԒK:"~M[G 2-ɕ8ں.U,:8)W# X01ѐ)aBnk qy̚j *P f9$O*< j{NP.H}}Rjf0%V3ģSBdHQSs֗nEFs.~i և r0ELGͣc'0 W:CB/?:O=Bo n+3IKi&ֻt"uLQQLj4CIvi6ifhbAN=((]7߂!"!LX,%o0)2d ȉrF,Gء.?.RMk+ۀo`TAHB#|߾"nZKi1uQBbV[%m֜WbpE 0$ep%[^`j;P o .l#m#l^*IqMR>j}Kv[gLG\I$6a#/ud{2iqƀ*Bn6d~Hmi/ꏯ0q؇Re(^S%fïn} S+VHEj%[le f*.`ڗ\Į8VsY|IL)W ;p0srSӍcF9NW^}! C &>Yʆ\t֚Ic/f_[cܭcam}w<A[v5+G< ZjZ R2Iv`__(E7e;Zb6lYغxM_q`]ǵvv\! a^cN~t̺Y羊}A ~> y?0FN .VI{섏jb¼Gk~(;< vIt(Ne@g,MnYE=:xPXdOPE3frw»>&bҞ, *Wߒ}8>$6LZ~Ojd*y&эKܡ^vOa;0%Yg0򢧓lsLQE;v a|'¸i20nOb,E80iRJZK8<*v#,P ZJdQYsmeƁ) 4ǁⱯ%n'ȅR3N$Is(cؙ vJlSJ (&\n& ,kvI6ʒ9x.5ow\\χ="8.kO:C}ͷ{%db4Tغtޜyf[lEaa,~]y1M!mCJX׿=X%r~rDeg 93)xˇ9)gdLj$!HQnOn-`ȂP(}u@7",]W(S&f(0,aK#PF0~ j?XbA]V4S¸yK\=S(^{91fp 6 Sആ0\x)A<`% ΑfN>]Ty`&HG Jj-W ѥ\;}SO˟y9)%5nQeʺ/ g={>MwX~#V26JGUaS:J_{Nd}ui,O<ڿ0e"[TF]6mmiɶ/m -Ѵ\BdJ7SKB_m@;U!/b!q`⩔7/( H;WXp3U6ly:/ᲀm ڽ1 $lpY\$C0\<&&$ta~ LsZiEi5S/Q S_7\3 Nŀq&TH 6/ ڑ >2,itcXH:}+KV?*_}+iJc?hgs)zBNRWM3^'X?3!wuDB0{ [#_"}å1@T:2fJs݄߫n{uBq#QѼ{X !TS" To Z۔mqZ;FɆi xB')Kg҂|8Ҿ(vc ʋ4byo cp>i49BH81̼,M~XoVX fӏ2}/uk8 [ ƦҲۂNQ;Ӏ[[e[q;L~}jhW_~+kQv7ႏnuf`j̮06ZD)PQ0 1 C1=T[QC2.ԗ"m۹\:s}ц3%zq65# GtBxݻ59&E&!Xb(x.bvB=vH$^1}a@)16s'[BVOg٠ct'AsXݎC<2̩63SOUz)d[ў %gaȲJ3fKc\AI/&_7Rb}%Ϳ#*l"ySĈ!+8C1c?ϾW_ |elt_bC?uvMv< B'_/s#)k ,M.,!Sc~&3ڵ,3Bİ4'?]!ZFNL.ô-kW$R,de zǦ_C! J-V,{RyDVI)!^PvPl)̌6V:Yb hܥAhur &2\bh,;hZFGZ1`+yQ&^֖Z.1$]8` 1#B<na_02%tL;/>+ ׯdt,Ǟ)p X  R9sVvQ7N?3_A >M(H" P/@~26 ؏)BZfw>ic@(8G0DKa~y4c'N$TnCȉ95MSOxůb0뵷LNJT=)؅dP,S-M 䜰1a-Ŏƴ.lVFSF ;W#MlOg0ٌOo#@Jͼm1ř2vf%Ϭ )zo:ƁCF̈P YjLJ)bk]kN-Yn ]u_ˠN<'|hPbz¢r"X?~?9"2ywx2嫯c {n3BKz_cUK| Y)sf¡xmyoo P6~@Ce5\8Vb VV/W ŭ[.Ĵ'cyc8/h99Xf!mec鶨+_C+ eVcH֛rƙ:6&bvՋv h3vTrmd0Ctƴ/;ӕ`Ufs2x!,=nR 9Xϡǐ?ʿS>~E7輦̷xI'#_LLXjϼ1(ϟ- R۶۟?Չ\3YdMOU67XŕjA}:je*6=Б AU$#yږx$[SPxw/=Ob%d٧JR5$dz$J2@ZtܠTOq:-EK'[,HœሮL&?Ql{RۏBOEXT6΃P2Ĺ5ؘ3H9$ {*\ٻ&|v;.P_ `0N! {nfIWIsB_frG7\ɰZpT+lo*3هIŧuYNf9, d@Vf/IC%'ZRL40(!qX.L2G!v+g-}GYd~wR,H ҁAfF -!~LJN]*BoO`-N wxO S:%;PRڕˀ7c"R4%P vH)nOF3q9w4fY}?TCa]Z1Z(GJ|d.!Ylv 9o=E2ZUhf&>?ꖗuXW0J^wPcm~V9+H.+t3ZtHדK S=s-i id&mǾtkkY|::)/3ad #V@u"T2u gÚbW͚Hg ~`fQ撝B2_Ǝ'fY0#6J =./DiMH~(_}Auѥr0:L{p[%Po:t( :8ae=`us߆WU7pN~y-醽xgǓZ=TwyOhOmΓV2pt8U 牲ZDU VDqh IMepLԠkWh#Nm#jӋqnEҳ&f c D;apjl[N-r4r_cǮoz Aӷ ck3B ]YY{Ѕ-6Gkn7bK_y ->∞ Z,gVD|iuRra0r?> =[f9 PRW3:":3fC:R"̞t+D#yZ҅8`À[}%rb5xspL$&.םf:*",%2vO 'Qe"D!r*',}JG~ffKѐqҲGNy~P ,68VAw',xKʜaD$H@KruY՜G~)xݾ~w3y/d*T pIp~̒<>3NS J^f#QV,WNJ<ȗtx r"oxe2\L^,hBX"njnA;*mZzRud5>Qn'lH 14͚D r鬁ʛUK ڮv 5ٲ]'w.-7oԹX'7qEzzRKsϊhaW+L!r5 #BGƎ7%R&d9|^~K}wi@v_ EX`,»ټ!u3%q>U1orHh4NnhCmK~=hV2f$CoAfh>P jҞYO]M+[cfq$:ӽ1mS,z IDAT +8gL:fk\jykW)p^jEĬ|y9i7ま\&#Bx5)T3BF҈̼gr<0f^.,Pp)x?Vsa CKBDdExl Tupz3^2Q!1b<3oy L3T0brpk(bE.B~٘7eOj Z1@wpM_J6ʰς0m_Vn^ɃIjE,ٓ0\p+fKdo!CAŢ»XUQ "^/fO*/;5G1w-w316b󭎵E oBQ䇮P2ӄbfYfX{,Lp F8{OqWfU*1,D5u}Ъ`[1bvOp{߯$؏5yFqík߀RO |=; ?Lݯ YCu,\.?}Ozq{\¯*^{ecME2=NM'^vc]1׭R@7gMSտ-QRYŒ;h,7G:S{lq 1-$G8jA`lQBH Ok4i8\&cfqJMP29H'z. 3ףV󥴾ck}p%j VC"wM1 TѨvtAbvd7z$M*S&+Q1]F5Fb,/9d'-YtLʖҟIWw4/cݟA}/{d\;pH3ّк}w'bdɛ4eTv*]Si֏$;Roh8Ȼ'[͹[26;DDQ^# UsOf<@/Zԡ=iל=7e7Z_KVrޓW} r:@,fW֘:{fk=Ngj҈M[U78 ko3&-!UXՒ=Δ4 OA%4SV7Ek&dôuȺC3Xm>!U.2LX±yb f2*h+?5vֱOS(*.m„lb 2X!~1g|xL,S['$\%&ޚkp}V2`, `g17|uwT3qF)`-/\NH5ݒs&ou`2]8r : rڗ9se}q(n2xȝMmly0l Q&"es^)Gˊ؝.0Xzw!?0\hye6]~$>̲*Izm{Ӷ3_h[ C"*knnJw=R"9?.9뇸ӌ(ia?#YC?>"Űo/v-Ͳ5nRjV1 2FrqwQ_'WfZMۣ{}4*{!_2h|c3{Q^%=!.Pk;zb!+-9d>jBFQA2[o0{(O&;Arp.b Yγ9HHo}ámzFiag?!mS[hG˳\-m~zZ~=o]'_tsezM 7."a85tF!C2XKJٿ7!d,Xo^/Kh7wl93/g>-MVvEnLi$<W_ AJԪh/1ŐDĹx-fn_RY+P\óe|ҷDǑM 5;8fW#W'}u]ot"s|!drj٣$a;Ҿkm/Cq4ǐ8&-o>0/|\8ycBHt3 q%Dybyo%qƫBLlJ2 Ku:rhe9!miwrS:Rh i\,R-\{S9qXMQ٫!{-}S>i+Pq65I_"XJ&6)]2&g~Q_o/!qx+2S.d;\W|=vHn_xA2D>?]釉y&Ir陎&1< >!WaΨk` m7z,SXqpČf %bτBJ$hzI6u7;H5#`vԇb wGO~:^xaT\t?)ƳdkSϡu&-Oͨ\&5Ly&'|bIztM.B!mS~=e5,`¾k͎jUp#{kcFΟoL sY^_LIC.vsMfP d?آ.ݐRFRä́QeBҍx8T!;DoPlW3#u5=!()\QWU\ *06| ŊY'9.|ʹ|6(#Y}(dby)}6N1m\vSs(d]mnۄ?jݙ!Ỷ7Kc6 Zir3/2RP#FB Gfs+[77wA}@*.B̈r|i(P8ZacWyzwLHdhQÜHUYVejyL/ KU^0et,l0TlYE;5վbȞa--*l`( ns^Ќ)0+UP!xK6u >-8=LRu-hr\%]a=;HÛxUQ5=^'Kl=~qDt=a2أtYՖs /d~,C]ZҬR Ĥeҥ^;,qqG`cŕL2Ҽ { iN֖Cl.uw''^ׄmgîaRZeIJz (E} _z>Hh׋}i0X%naOqc:=q13+bOi]2%pky-#(|LSŲhmp0G+t11w;[]zR %[M6 9 ],S^8wR=CS>juoNO(:qt NjZ9ncv#t9{//^U93RB>\>0dȊד QP851-8RrvWfFx̧0v|[o{Dj~7W] ZbyʗfMn}9eb~~K.¤d!*ՙC dVcpT`J.4Pݻ$i4󗫄35}w)_^^.NT'$b]op!ZΞuLJ_o VbFJ\f0QhsI&krADsGF 7j[iZ<آ>f@-E/}37rmLbݹz4DwL qRQ̨$k';_<کX'=p4#ÑRu{j'udXz#"eŤعq>YrbƓf. YD#OD/AOt:NfGρ*YϙWk+!mK9g ;+f ZVg]PL5vG]"2xRHAG%~N Q]2$G8X5XFRޝ Z`QW?`H^ I<ȓЩ3cw!XxJGkslVX>a/e.-bUiQ `59nAjbjz:O.ocnaei`G5%~€,:XI}={)ȎZfB{QJ`Z(ZC'O5S0S29%$ CĆ}]<-TV`=MunȫtXGEEҊQ}Z4IB5C ZplQ(f_Wc-Z'mUWBnGs]3U-S5PzDK/ת"C9S7[5XK٢u 0X{.ȉ/gJSNOW: |Hau/daF~M_7_ル'#/׆i+`f!]('%ƍjݚ^`p/+(T g~{k2m{91gn= ]z[nD7a3/U@p1)13:C 0zLx8hFݹf>D8-R)])ZeA^gleTWJ5`g9/̐M=(IsfyaSS#߿Qy'Nf۷˿E R\%]}2=]OgXeLwQPBZsk~}W WXXuxkXg{k~:Lj[3[E,G&[k*zq`,c !>{Ќg`2vlhiZ:3ܓL- #GLZ ũ? y!mR}o+P6"C0(d9b獪߫Ų#]mLI(כ  O:ldywZ97;_6n_34;ϟbv*?Fok݉,C+}R0c9:DxX ?D2Lʇi}sngLX+pj3ɖrl ooxaYetpHf.SW}{L3=|pǮD)$2D$l $b .r;3`eu((MۉS^Z+5Q;r?Sz~I-ae<$ݍ}Wz8PZ;(K GrlDlPW%nɤXUY;3=i mmd=G#xda/OU;?T6$ȤYB6?]<,8a^b!oZl_ꡏ Q. O:Ҿf_޶mS\^cP:[%*K$$RZTL%a`]$W}p3^[WO|no:ws>' :wo#YaqK4:pF-mXܬJF0Yp*@^qv21OI7yt4 -NCv$`JЮf6BבKƽ@hmLh+bua@ ru,S:CL5Y3.` FwgWK Y_LRoRnk42n7SV>|]&%?~W#].e!՗r\ex}|MZOLذ}6] KKryLjB2fU.-%!ǘm"H~cט|wN#i<E0|NڻTiKŌjj,j@pۀ0xN Òp_llP [ezϿt?ǿO3~q}F 9^Ŧ v!?۟bH] z[8t]uf{lF! n2\.Ta0['85$et*Oϙ%NӐcDѳ{ F?|Y~k'Loc8ч7zw/ :|L7.DА]sS}K zt5X w3&bc.]%RPI= Vѝ(}pv7hCT7LB15dnORoy+wjc)9] v!VR+xF輍 {j=6߉FjaQit,6ݺe7c*0$S޳#g\MðLMܾ8.u\ݧi\3bF;,Lx3,t/,TgIv==_M.|̹r2"ҙ[v˱4A?\PϙuM}KCʄ~F/9ZԘ&JKתX:+p(˛,#P ptXaQ.-}s:D<&jt*n-%4~ggk#A^@VrcLelUQt#R=Iml\V5ZBJm(.JֈbHH͟ݏ>Vs<$6EUJqF3T7 Zj_sMcc;W[YRœ+).bo0Zکg赒mGt@33__GY(*']>1x'fSxd]xI4DJKk-*hZEay$- #!^B^JA'J0YK4r*?auJyNg-0Er㙏<6s S3"!HO0{^mѝs>,4Gj]?CneŭkUqcog~&QG"}+"ЩÊ@IG̷uD C;0ZPqAպމvk+A#T]O5I#C@eaf+6xʞÐFa l\_{g ;Pe)ko?S 1U@g}`ɉX3'~5*D\[ڻZ>BWl >7# Vv-{brDp*Y󝝁mεkc=v[#]ʼݯϯ؇nDYet=GEe<>Z?1T<`&љ5]k,ٻʒy̬g8ILA  ٲ F'0` ,alErHͱwת̌狌Ȭ8}ثWeEF|}L&'S$P1̷|={lB,}0w"`fL$H*&+2 N]odY眖<TH]"/KM{ȴܨi#Mm~hy{P^u1 W[5OY?<+k~Zz6cS0 vC NQRysyՖA`^) Kc_<7'GR:2+ݿ4b'Eqy t/oI_$dŪxG%d~bƗ/̨d. iFl F^3v- $$.%L3k? }a z(yy?|1͉Y S?dv0˃˗6 Զ[Djk$oͨ+ZؖK0dpWwp|BHq@9f,!&krsb\Zh(BP }̂*.aɔ]7jYm[ڹf6YNv{vrk s)gedJ,a*"$N{䒿wt&\lĚx;*ǥz 3}rar/[I8\̌y%~%bO<rWRFL=vl xJ#\zCv*NeՌVeZjYa=$~a#+8͡ \"Sb`/ 3?UZ YNqS.Qcђs>pX 7;nO 3˻ٝ~sXll9n .!@i.;H_Œ13!pL ƉqfX@f Gvm-fG*v )$nH&Aҿk;~:uha / 3Mȧ޺M$_wٲCqfNEd~"L"D嗯k)u4PvZMR^vSm;a=a摔gܽ5խ@[mxr* !Q 4A3iڇ93]-!/ۊ_< 7(d0«vgx>a !}Y+_OatpdÇ 6ro+Q{OXG 'o>2gZiiܰո2#fNh+1%$ w !%)3@Hz W"Q &bvnuyݐ}j 'kYanGDIu8 ^}D"t /$ #f耑x$;spz;tŎ K8DI:"0Pϋi+\ l]MDo_*l[}Rݮ}ݶui5k]z8'<͜3Qg2OlER'3Y RAIRO 6 &7¾r N L{g>Dg JX |E(k3.| 7VSܪZdƝQKe}YcɑI+x)0 z++"\{Pu&o^/`=)BT4AgCٹViQi}X#ioմbG\+#*(b&yHO?Y__Yw8u*BN.~sdv1!]`и8sKvT9=oGW&6#~>|~uLR_syB2Cy"tLÂ7F$1ZL*4M*g/?*A^70;CqZ\,2(&@"%5K_m2Հ*t8DA6}:(/.d!%.&!vɠVMj?&ṽ[eR첮QCl;d-u^;>$JUvw9 .fa~:|\ځ\9ВQ&g@I2OVpW0d!9A_ĚJ׍W85y̲M4A#wko]޼_.>ML`s,+QC9Wj=[{9ste:BB6LtNQiFIC忕T*$U8\tKI2)/֎swmgQՎ& WhSq__1~'j>:ǬOX!{Wl 7th/3"ҚX56K\]A #f$-d?,))1͈wp{bS~A]b)W6ʹa342y/;h-`%O?G÷r 0y ̞ےW:)A{9 6§\H"*iɺ0 8[}5M⓫+*Xw ?[3VFe3 z )u<{%$R$(cjp Q,'SS"\*0%nmpC>Ң@.Aa^r R;Iea: <*t=ӕߴg:!}R-,2>Ld| F93gDy:"*I^r9CUT" ^5a`\/W,y h\ >i_~ZKvF&Zv?;t}StKȾf^@ 'dK;=t'~O%)F+Xmjnঔو ~Cơ`2&B{e#q83 _"aFVuJ)}%dD2246 Rۍ05|md}-|̓NfnADܠPZM^cAp%NJ/UN^ג̮m̬ &`\kυ,@ps,#Έ&b^MHނ!y"q7v]4.\ ;Ex菨j?xd1exAE~]^3eK77F42$ FT}0u\nm 7v9ngr:/s C,1@xɥ:nr4+ +Rg-94c& A$\ThrarߜG2( ./P\FtUY?~ 4/_4fnduqTõC9Vki=U%\O~8TA2~.,HG$ؑn.hrN6K3>otj|Jo %|V`'ȧ2s1>u?2y?%\^FG22(€f|܊o!"ۚ61\ܒP !< 9qpzDGBk 6T V:&`3_ ]"tFp/rS0܂ʰv_Xda(Lm'*7:-^1m,շL4LGfW0BJ{i!xT˲\7na2]HSAݝmyW"2}J~:d4utViFT?A)+Rm$,ќZwюdP݆7cAj9OYyO߬4K'5IL[&(U#Ҋlͺ\䄵Bs<9fĿG we(zB6p[_˖r>}{='ƁrnCaC/]ʤwۮ2PQ & ˋd?V% 98B$״0"# FJ$sjJqnw[5ϰ:TbĄ`P $O1P'VU?1G= De>Kb ı/o(ؕ*v@OM _$'F!SqR<͡ p9 ")_z<ʼݛtqaid[j1/};?&D7&S&jVP9l-G)YV8t" ߽iϼ.` י#B'wg>y:'͆芌(YƵ؏thEvV9~C,Rzȴ6ŘGcbܜ s 3P:5LP!Kc;v߳Eؘ"Ȧ͘6El:l͏hjI[B0[?[/3i.3YȆ~Ⱦ܆,1(9[ҍEZ=Pŵ&زX7fbجRf|Fc*L֭Mݔ"{Yjn-S%6Z)r:X/`H.콛?gZ ,ujf\qsL\#Y0t Bʨ2Cɟ͈yFxQ+Mm-ǡ+Ѥ }W/y>i'kˏ@MZѡO1;kvʖkBa%BG!=cȼ&cF˘,0_d}43Q]h;|?}.@2w~ [HQ$PKw! = 7s>m/?2*NR #yV5VKb?+؄:ظD|x=(T!bvUfOBl ##ќ|d_Z,uӊB1:#>bԸ~lU-4 uŖkMU3ZzJesK]/׵cw&x6Av8ẓ ybv7[9kKx#ef@,QuH4DlA0-iȶ\s16~Z#fBV/nm#$Zˎ -A|ºnBi!agNZN#0/Y XJZe8gt 3h38Ǥ$]jz!jp$J Pαhrmؤ=PyǓd?ZWgC7C6d;k K4P1eZdf8z:xA{P4(^kX+etɭ]jyɻVާ]i)/h7C˼BʊdX 3" kȖp,|:(CZwe%2h 1a&wH6mt#`,"{N[If1q9$C}fnђB`6b}!mӠmߢI7\9wI18!jSPBt'uwtO?cG_N_‡3gr@3X"A0+&$Oݺw;__ߘO+KN=qVrkUNPзzX@QµRKYYHf_1ᴄ,GGXy=?汦jfm.lzt(OFCʭeJ8h`o=UJn#ɨ`B)&cR_R,Kg\:ÂM^kղ!lT,{u^]~*GH7+c&%-e6l:dEX@ޡNR]~(dOdO`3tTfAB8"hGG7:==uO}61GE^nu%Y)6ҭ]ӶlMhJCw[Y U%ݜʡM3+3 Y!X!(ב:C DRJd|^!;hJ# iknAz"VnG#UxD܄D8slA橖bLҼX3SwL݄̺xUɾm&zM}Swls0SMMe&mP, 3ni>7e`IA$n:@®tNk Č'Rs",Bi]r%<%jԓk?01E)ՎO6>.Gi-eV_SRir[RܤΏ{-`3SYozbE.`v6C6B, 2׵9NF|CW_OWUHWӇWax!Ω/`㒸cGڲpNM2G'O~G[ PF0QۧwG88 uN]B2>1Huگ3QmK+}@b:S^T }t|y ) SVꊟo!a"Cvd>0BNc_1(.2k,Jg8I2񈐣[[3HR mo<ƽ>n_She"HZw*ur$ oG.N%U4W Q=68Gڨ!L^K0Yq;M[V;HG}dIr-/pe .#'-1t9^EpAMOd!N"-ӣVT"hRun.R%(7cVw804+DCgȊ<Qg׈D\D 5L]1,vMdgp ]5KQs"ʨIn w>['VYbm!y;MlL tƦkӬuKM3w3dȇ}Z -&_fAI @X2%lXjO ]ΆW1M>j#Ǔ:;k +2 nj&Z"JPd1MeЧPTeOK2! rCYHM7Uo3_|r]#|@ nO] YPX& A<gB@2RHdEsDof;~x_M??of}!eqF hw#e <|#C/!-+ݾ'=g9D :6{H_kBӐ\}VEu_L'=c):P2R t.a`xfd.kqzDݼԩ i}/ۉݙYul Znt\2op !u،DL6.GK$h8Ԃ"j렶caNtie&Uӛd0]43bp bW B\g.#xgNxg&`\k݄P*Su31_yLH~&Sdryjf^k lnI1G}iөA}nYV IDAT:-YLҶ 9 g98\zT\׳wOdx cL)\Dd@+,Md@V#`C vw[cp9ηܒ&#|?zGRRZP1wǮX<ٹ`eZxlE 7aT I8WұTؘTy HDti6/2TS` ɇCCgBF-.`\y3߽b j$2 Od5wm3]d|8f+?k?tdÂ0~2OqI.H`w{qt)00_^ UCT1%gTȆb0X~v4g&ߝHRKH?hyu'["pb"s۵6-TZm'kZPm\[혖ť'^ɱ/T4= <@f:{_ dA(w[ϸb7& ychIbkeDUSd;mo&L*ol NW|<:Ġݼ~q#tg11+5]'M=۶Ki `.q=.A8,"q"cGoQI9t8ߚx%5м ]im2ݪ`G6MS=.3:WqYV44w۲ Oj͝7Rx ap `i1W#8 ;́h~/ݖzTEBzZ!h9|ݙdwW:(G5;vL*z)$,N|YKP$j'C֥Ūӫ-O(61(H6]Vy@4SXȊKJ+=Ve]6(-IDVBx닪d%KӗmxL ]1``_#g>݌er]''BU&).*$}-*㦻.Tx&hDSXODY1CN0I,D|{]z'TqmtӁC 1<!_A 3E0C~ ȘJ/pqW3{̯JycIq'̌|:SP[} i0,3QUcZۚ׳[yU֭qD,UNq+8[ϧ@$C}DL V7Cq] `.=d b/|,ot -5%!st˄~. 󪀤Ig7I;gezJVo*1V]xq uμ܀Ҝw.WlmˏrP-.w z5Җf3%fBBoTC`197b cLwt^f~aZ4 b_BDfBzO)oMuryݘ{#s~cvpm +2è߃U0fo&݄ð6)N8" z*BIt #坱 IZ6bs1U][✻9&D26l#k }+ʼɨz$4[#ٞq6_,QQ^BZ[ϫJj Dޭ.{,4My|l q)byVTdـJ@;lMqn$̊R\86$,K?S>MOS֯UjS*e~-#iV! brpL6` MçoP | S\U΍llR(Yأ:NE&J,6~Nve;e2.7NI)qWi\Tx-@+LFe̜% ,T:LB|{<ƠiQ>LZ*GL]Lc-G!(;adcAДGffoZDp2 $E$˞`Z {1Q,0FBb'xW HT緤$O_4l2m7W+UOR_Sg# fmT\6^~4[-_ =| D=:gqvDlQ:à.-SŅkLκVSX_ki|lIUXӜe=܅*wCS:hš%v 1}M" 1LHLqᙥW!8K <=BdHܷ-WUrz5R[h_IcnnQey]WgՅq]0{6|G]wѥ}Ƒg\'6;ؿc>zb+t(7XV4pe!R=ibD3p^9JL&qrRH'Argy{ZcMDMݎh #-Wp2-Ub>h^w+UxC7M`֥1Ԗ)3爇+S" *3F {#G֛*^$C-\ L wEyiT[?B1tnPʾ+) .R[1q9+57yGQ̯h>̩A "KPAtrp3FP#CDFԐ3QPl9]5=-ZlD^e;]2߰c~X7ksSS>;-Ϟ,XF@i+@S+ L]ESaUnZ8z~0tsom>홡[K.ۨ]ѹVfN(LK8]6au-BqHv ͂[R 3qF5ZOap9=!gLΒ"+]P8RWS"Dao9hұ>۹ZlU>+hr\0(jK;šs6Jq-A埛(p)l>vU>3I_'ƄFr^= i&qI!Zjvv{ǀ%@0yqabۚxx蓄]oäN |&Bt3 m_YʗuuI,T/-c9̲z!W]`N6UܵE}IU}}HJZΧM^ez5J-A; m7|ЉTGT15 `.aɦ^tlqfrd&5#Q#y>]2,Uloj9CHjI2%tBNi[_u0Q6r(1_3v ͦ Y7#SH }D# Htc!B-[57oSni[_&4E+ V{_wNj ]nFW WZmo=R^s+{}K}ZkruL>0YHL39oMhgVacJ_K\6GULtc#.UBMi +sk|;[vXw=f:NiꨴT`(#BTZ˿o y|z&LSJqٽ]?n[vcnѲHE!G$k4 |>Uѓ5iTD&PjcdRh1w*ZOVU!*FrvmG<-(اp꘎NeX Z xl{W4^η`-VpB,vm떿u^U1#Ȇy`j!\/ CڇC׻PStKK{2ejS;cH vĄF`gtC`9{CH1g_#OO O~}ř 0(|X_Wk3cfÖk'lF^>6𫶴YEX h)vK_B ļpdVSP:<䬞 f|q7.x2۩/_ٍ05ּWt6oqQBQMx| 6gynu-qݚ\91`䴯uh&y;^7ɾGFC4ע~-B7AycYoǗݻZ7Ppzq /;aZ`Χ('+ 3HRjmPe-޴% _6M=Ԣ%_BDs~U~ ٱApf*\t6w) nY'[c.enGMz奙\. gs3X9l47zZq Β3C@#Ifaw׏971\d6"l$I| Xsoamw"U}Z+ '8lt'e㉗58Bv*8 P34qS˴^\zwdk0~Pfjq>7zF̪|YbpMoie|UZoi^wa`nMFD]SUxA3q8t ͆LL5A΁.0!z#"˂):e`+0ɢlDTs`XISUl+%m1l Rg>s<Ta uunGU3Ԏ)2bbLdș8A6,8(4~jj|w2ΑUa>A6w\\u6jޞC4w+wUj\ZooϿj* ЈgY_}Apj3N#>5hۍwRyKIᶱV07iwTd9ۑ}1dO0V lhzq" V֓Šƨ)P5qXe Q)aZE{ghU;5LDDvD8T voن|ptICΊ%A" Gtq/` 9RI1IQ_+s#[2ʩ_MZy&wXdf2pBeny /Eu zƬɹK5HSMHcryWǗ,hAIng/͹]4rJ7bscЏ st.E}H"eFkWUerw"-; pyh2 $K߽_)/ᲯU!݈FKe8k"FS@ˀ6Yz3Har$îC2a7Wf&UieʙbJ䣊y_MaDXA3 `,: ypJw "49*.ri.e]g aZ6n_5gwIǖXeɧCJF}=HҪ: ;hpx^ Qu2330Aqh͛]z6y1J14)ნfiF#Q8YFWSd=$MfWkG_|_oiw<,o?߅&`v$Ujh5obpu{\UE˕z|,WJpY0*zr܁Ut3Zb:= / RshȹjXts؈M'矅ݻ||g49-xǜg+4@TWs`Qǰ[zcz,|śt>07-8ldNxJ+0Lk=ue#4Iq]Cae(}1w٘7y{%.e؇ca1+OPg[[`Yty;/3^I.gMnfS%>ZӖV)u;Vh`Wޑd-G$vһͧc(pGr,W) :BゃHŨU/-]߅.F!CqB2%d׾HF-!PMTïUN-FњTkBUV^w]1T^>b>=M_'=>yzOJ$Q^Ø_*anHvDt¸Eoa◔//5 SD4z8T AnawR92NOU"G )V`_fmqa/Q;D1b2[xo_,r3Äx~X~$yc^p & IDATu188~3GJEpr&'n8bj\06_**.c)Wn;&ތty?gՈ`OT5a>A))},J{Fw躰mb=!Jl,Q//lPrIJ;Iccx 4iҔ0=@ݭ;!70F_Gg6B\ؚ64%r8^rڅD["Ԋ '$s-罨 9H,E" ݠPHڶ 5kKkOZx(xi(d^X Afir-!/t_=yǗ,fE*MIu[eR*@kTjIJ *0qǮ_Ofy>A3 h2/ 7RDƠkvIH#ޱۑ3ݸ6r3SD` ]iN4 av|fhZu,B%-(qb.;#꼄` "|D y=n`^Pl~=/ (0D/;heΩm3uij h272Km3uך*0VtuOV1ʬxjub}S= ~#hW1×_ǝBr5u(ɹQ=0 TcΞ|PT~mur~$7n".B 3`àvxBK5]{$v jWǗyȰNPUdIh$`+ (c"L".'7tcmˆ輏Ue'DeHagμLqII.R(tu'l$ ,d3 '*cgOV*Oxux8EI4]tđד#ȊQR& YFGOpzS8ie_pJ}I݈uuR}]0{jR2p >Co[s會;~4mbB *Kd-}I}Z ,?8Rra(V2e<*ē#I<>w?ݿ ߽w IU2E R!Ex/u\b[*[bÚVTZ3{ /[֌iQGK5*/Gyy*Ҥ*]RzTSHQa߲0fAՉёSSFjj*!:эFZ_ɴ&뜺CB0Q7CTTyKŮoPZGnג2YZF,j9RhHzoO;v϶Q[D@2UfGaAeaj1A2G־6 ִߎbrDPMP%\Fb8KH45MM^Blȭȹ"Qɑ8pc& 9Ƽ1u&'%@21D%7Λ Lk"'NݲIֺ&a}~s`p<ͱx䪹OwM|4մ%D]-w]Y7Cuz_ {>o83&v}Ch]/Fjf!zj%&ptf[[T> jMR8>qjq˽) OAB6*N&dkT] 4Sˋl."-jUA]wKDqy*'fbc$B";+ Zl%˥dY*P^LLgHc9Ny[&`UH.?˚dink r7JjǨU >1͈st4ll}O%OJ9}[b9ȚJbsi*(h,merJ>j&N<ާ3)*%+VxsO]wL7W'M2%X1d0 |U>+& i-,є,(#^y$*W?opLŇF^O~7=%'U(nVOli ,ҭV_3rQ̊PkNiNdw[QGaTBaVg v~ IQv841L8ԙk8|1M8˸ E񞉘3ȁ!2 &{Kc.C̍/l僮GQvN+=y\1!&'@$e7{چ}ŏ&Ƞj=͞8Nc\ ?xvdߏÍHέWt1$0 ~JϮZhIx@ey>_<σfP"5Fٷlk@5y3:#AS~OV7K ,oKWdF[uf٦J&" 3>b ecy$_m{:*0Tmdr%ݑnkbu,eT]3p(rnՔķO!1HF1woF~4O3"Dܯq[L:d\Nӂ`>^UTs[zC cbEN+*02c&繢 fȩtkU!䰸|sDOGA ;{cb1L<%U8 j\'jQ*}#VK dI3LZDԋopGNhO {Ok+L¼ >?/G9pBD -&* .7T5i~DxOx }ӋcMvd9z/+6\ b;ts*Kcߥ~+AKHLW5ځzj58;br֓YeOb}}M]1 &ĐfAmt - ;| &?IB "A"Ngxaa⪣xI JHy8B"*! }bNr|v;/~9;?WQ!/f|RaVsHXFUoѼJP ˅G,~#''\p9T=ӎgeCVŨ|+BRX#P¤-T8֮6>nFHwg}IwviNأVÁ*G/m.Ғ,7֖|:/O( k*:nnf=׀Vr,]d P ?֖hѺCq]L>琷Is) vU?VT=sװk0a؃A +JT>{˷RE~`8[ofM+?=>~yڿ5lnr?cWq_D )ߴZ؎u3litSQ/ѽq=KX_$KvԴ8Gy92.72ٹ 6Lm0?REp$C/԰5F`zbMttX*[pQ sn=ņI6}<,V i$Hrk>s7e0]w{w [TK9*z seT8DӱCbuw`L Oa+iI,mEe1BL )X`u҆nn:è/4I+Z{X]?+/ToŸ=7ȌshgV䥺j RIZUYZt㖅hY-6BFTUSv kSv}} & d4glMqRлV+3(XI\]yR(P! ?aXbD7-o12ˋ9i׹Y*j@ [!b,?$jJϴ[@Ƚhk?}¿Oj> 2$FnaAvy])ƦCap3}Z'*K]4x<8c甦!%%mYX(!Se,lMdH--Ǐ嗌tNF!V Z6FoyJ=d]ẵX,hgo=Q͜tvv)'RbLF2xf+o4[K] nB5Z^8)"t%eҼ_Ѯ%H}6-CƸ,'@ұa̬܍`2,7Z6I5UMpF&j6)$v&x3F2 AĎsp0J $P1x{9<ؼvI @wúŸG{Q@?G0s53xB1'wә||7?wygLݻ=j+:-AEnyJ&Z(Afe[D\y'7Z}6z<%(tnq_:1LrKof_,ieyq^gְQWHoi|<)-r3,3GU-9alE[9hNLzF|יjIgO$ʹM$ n턺 Th ٴ^mV+kyfwb`4N3T4Kj+3DOUCr#T Ӹ*{?RLM;jfZGE;ML cn;_#=sI󑩫QI}N fpܒF}!D`$"nG~lX[lhya6+c%)D|=?H )r>[Sm0F9,6/Ѽ-X~9D33,czIs̄}۸qpWf~V'iɉ8^ä (!gƉ0qhkƉFv wZ:񨁄TCy@ I1^%t_9(/}=/jVEZ5lac /0=oi)˦jY#(ݍKV g,ް-F19EQ{t֧7¤T~^\G>@UujBq ,ܷH F?q3M{N"}& 1k8tҚ%m폾̇pbGh=}󑗁De}̳؀IM}VRGfOw{-*K 0Eg11:uqG#T܉ns@ؕL՝۟Vqw;M>kUl_#,} .t^zfy+Ѧ~@3c_Ea2i8ԩwxéSժWNb@=ƙ*+r:1*Pl& 2 EVG=w/P*1 I#9.EiRQȔHh$%!ib{dxzX c90瑬LK]XW q7ʅ4qCR! i,tj>SCƶ>9Z ^*@k6D0[u >RIw5 sOT81g S$fjþAqX9E9NhE /:-,^? ;(]ߖξ+ضv" F Y_s(qk6&F%>YϨ,{O;P494-CˮY2nOL-Mša4DSེ3˞A/bVYFI1pYVcXN} -[?؎5c [i>m|_ƠKwo!LGxM~7.ef{3)v@K+$ėK)!@j 74m[t ]N!Of!vD.Z+2uuν#bP-2EQƪYNND@)K,(aA?/g"A|.C8˷XM#&a#7*MMK <4S_X3k)3Gr #cHq"g,) lA+,4a/Cnri?=R#6|&*)OIȆ.񅲲j+I|P 'Ǡ? k' OE '-L?(@.4X[1 -:_q3{=MtBHmv0uSڙ7L]!sc1cgWZ; IDAT o>_ !ҟ(x c2l{7&U)!}C#zϸcT4EHȯ|mMqKCBc2uznzo(kc}:dRb Ā"5K. U`T|)tMHI19ӴJoh;*Rqʨ̶eS 1rw;舩0!NEoZ⩇A#l<;TqBZeA^tZ w+/Vơ**zD3 JoJC|uGQ?? ~d&N3Yyljغ"4v^m~U93zɑ$S xD̠Z&}RDjly53+nV΢,m*@Όji{ĴiJ7[#bQMG.#(?:#t۹M.mȚ^Ȕy<+sneQQk6Uw,nU|*P>֕)Uhn޵lj#AH,d:-Ԥ8먆ga28 RGRbt*DRl z!s[`KtD8.3 ?@YP*g-]̘\4.*אhʶF&ҊR+VkiY1|p]vrs=? 6-XΧ@Yi6՝5Pk6Y-֢E8 Wq:Sڏ&YF~s>HsRYƗZac858xwx?S5#@{掮xfqE*P"*^聨" ɈIW$(M+ѯ=NMR&0xTgF%m8:xH{Y1g_YVaUk;rEoB4>˂$ϵtj>RUNjV9up^e6/Av[v;UY*lRj)Yy3NКR i)!R `4qyibXT`׉87{ˮv*v-) <8!ݫ||צtN0O"uNg Z<6in{'.I;dr!'bR%fSt+aҠi{ń]JU:Rfudn(^ La2֣4Z5y@W'~w|<3@ %Y%ʔ4PVӵ{_X.MYAӫ#3ޠ5#]ϸ$(:\;$0GBYJ=ˠx"D!vϹ=3 <$[*oH-ka0 a9͆sB5wu7ktY2/ۭuU~Ֆa"N*BQy($FsqQO ՟6Ns['ݦV(CNnx9+]+Α31b)%9s]8$Hj[4THh*/ޡݸLZR4f;H0 F{lqf٦n#b|JUꚮsJ}ƌ*]^h c(i!d)1fF/fYL$jr S T$2C8-ѴwXq B~y0jO%aeW9gw2Uq'T[nJL.(/]n Q`C{13,UftQX5cB N;YXXP @LXg M#?3,'[!Xjk^Ӎéx~:w68nZR&%vԖP2Ʋm=ޑ )S):xҳ#+?joi:sv%M2=EqP9dW'Q* ?(]O݇gs(΀[^jr:} ;3lƔ +p}oA1lI~QulV0qdP*ROHD+ǵ64Utg1hu%TrҘxޮ!1D"vC(49S0 .p챚 "†qwN&v&QLƈS[mhV=w;whEJQE$;RnQeOYYve5VjH%#>#(S 0$Ñclɖ.4ӎ yWtp\ l1^>k>< VL绖_^ ︻qz>G/w߿cxD[ SGR㒽u)KntӖۏE~'m5\rΤ4Fmz.D4ܰvsO^Lh)A7WDNEǏ*ˈTc[}F I0<{ϭaYDT 3?::d'R1p~ ݲ#QiR MHČ$0r$?pZVM3Qm(+1GL <z"(\IxK۰iЙ_[B 2u׮v6^kYz#8ḌjwD`rA2Ɛ MZRr4l7l %s_u^EʄEjbEX9Ja î7_}ûLi),S`QMVZW0ˍUwo~PHN U%A>Pʕ?[*Oy9<ľ%;xvχG`~@H-n ex.R41!B0&##B-Nʥ/b rOQAIԃ~#]C`/\leMpMQJ~. 9KqDF79(c&eE1JTDv#ӹ3 7-TdC1i䦝W5")2D9vo8&?[t3L7H㏛$f?(3g=Պva'1:J-J39@kYϠ<,NHe>PD&K@A+Së ?_k =riy#G~߿S=8ء٢˜LnE/^Z*+Ʈ:EO+h u`xQ(<;*E$-ln4!FIaF!Vdqet6םfӒ۱1Se@{o%ɿSpTjKG.<]g?r>z1ەݨZD峭Ak(!%0GqS]M'I&>d=wwX5#/*HBkAct!R άGB)dQ '3Ϳόav/ yj6!Qµ,Q hr@-} rnWN6n(ć0Ļ=dٚ"QI;(*0zv]p,eL+R Iݭ(\T.QL_1hOPpJBOdXv}q"uF䉳XuU+ q&$h]|3XP0(:)0S45b )hy>Z T  E%xB@UoQ{NN'đ 's٧dqwQV:2-ȪR$A°Hgd)IAU<) TOT#)lUuzm[v}QiיT ) #n#1]A<'E/N&ٚҔ9 #m(Dg.9ig+ ѡ Sz4ZG,o;df.j*iݠٛ|VܤM)鄷8%82VOĖ/X;+bf7c@7`zs#$Amxާd}TSc,TLitrIsnTB68rECTPT"albR$!C?V!vц9T}/Vx8Ũ`Ւd3 bEa(cJAJx*Blv[)#8Ryn6l2'C]məʣX?/?#d=#ǣcUzO('  Қc,-CjI*|56)@c0S.ܼ һhhq9 $ M2(T*%fbxÓ8O_/8N|=AuJφLaVc%o9=&b; ߼/G3ف(tRP4B&mʃήQSUQM㦖wd(ׄJcY">IfOi&mpQMV+I~I=DZSur5+2}=q?0B @'LR4b#OQ+\Z8[T&.l Fu 7r'5ޖW͍a &B4l6-GaPvlnR_*Q!g#-HZl'ޔя;~><NCӞ#RVٕm>d+(C2y˵W'.!'vA|Hc Rc,mxkp&S=.RyzG:g\VeɖJfSSLwU0+|ֲ~g SfvMT )sQ=\lSQNv7|Fڝt#c~<$5[Vݣ!DԙA(r^!'4uٿgl4/j*L!ɦa0ox1d|EVQU!|<ƂȊ /nm$i;+2hlj¢iYtn!%)JE&c {OCҌqUlrw)6l6Q_݂w IDATvɂ'H8.>5dQC{}yhFg\F6 BsKŢG6b!77rh؛3PgMH9#x\G "6SܬF4er13>QE?|:Sʅ-#Y5FqHňUlD)MmNPz5 eqfu7TU?>R}5fxpӿyHXTXQY0#FWYHڢ!6~j}̝,ҼٓV#h/noPÑ!` }=50Ai`z14m> [(04/^qs#g#c"%ӯeHtQN/k_l[i<#=,m7R%-<"MfZGUOkw>OrTŚxrÃ]< -^Óz5S$vvΌlu}lcL2D0=6n oܡZb?] F/~us/5(F0W^߰'1qӪ'MD25pB,Yj+k\{|ԝ1zi*&tK2t#!\FrX7a7?J\K*R'k12ZmS~H;bkTuq9{jE]L\v3:Io8Ҵ΁?J9-:sZZ aB8K6p|0 CdD i?VǧF\,,jf5E=(B̈I I72ZEFWt9*"|vMtGNQXSmcv1 5Y{fAD0Rgv!R !T$_.CpUv+$яj^ߧ.3$zktW 9s}7E8TWܒ3/`h[׷h͡#C] oHg{ĻG⡞7 f-u^F gk]B~_Vg5Yt@K1Aˇ'-ǠmTa$ FG9rh8*m|>ZW-{.OؘOdXI P,reWj2,lݼ,*w(M]Q[d5߯2wǝdUD*fFa/Nl]i[FfL*zs;{_gs&h.TxhQY%pW~2'%f# AjE;gri ZJO Va3>c|H_;Mwhe^ 6!cpR(/?#%t!uEJKu'KG]șgr){3Oe/?f7^@#OOOx w7Xˁ}$ePN/[$xWE q΀Q)]%L؂Vo^woٿ?&y>.|Rn밊=D]{+99<ʱSBr09jWQ{ #ÈR</8dQ}f`?4V<_8}dR#S60DoÄl%׭G}Rρt-U!u7˴^Vh!1Ìi9U`$9Yht BU??do9 )b~1T˘B**)4j1Vԅm7UΗp2\ݔ 'AM+F[L8v#CHIcEC'>y.j 7AFd"&UnȣqA{! 2Zk+yTw?uJa27a6RD+s[ۖ0lv5E),΅YbB9ni Zߘ=GMx}/uE.R%6pb[I)nY~sWĬ:{ 8eh]W4~s7U>JA+ kf=ɦfKI deH7r8[|@+B5ĪOs^*'" |%&k&uY.8 H_}6nC8}8qc{<1뾘F@ta)G'Fo/0U\*eNr/gYtm8!&67V= N/Cb44jW_f 6 NsH)xBP]}כE㔴fD ϢZcԓ ceJl5V`Rɣ+ٌMM]tg@XM;I9˩#[ښxSi6%P»G81Ęj맜- cޯ2vJY.)';fhdMj x }PXÛ-m gn 90L3N(Pz3tja묄Pt;5ě %++U\Kgkɭ_#f^+ |xn w8b 6xm=;ҡ4b Ȯf6@8z1s Wx97]'J;Bv%$Y2劂7Ҷ.`O>K?Io~S FPh2Fh3&m+[޾u>VLƄVrM?*,Ӑ3V+^;;^UK6Ein74"aak10>[}`Wҏ/M2} 非ʋ.C5%=X1VyJGjʇ>ly\/.a~!W[.hdLL;'yIy<0d[6 m00 wR)Q{r2D~x> |p_F? I{>)?VxXUvz \a,ZE*rZiOf0a6mԟT>px" 7-NxWeh{'[ IHA[r#~wCR((9,RH w3䰧<'Ͻ}7]uOʓk}k50@l9Wc0$Q?7?9\ 6+[4Da,Dq;aww?_?t08'XFҀmIPx,o55~7RsY'].B&F}Ni"Y'P^yC}c|A4W!w2ߴհT⏿5䑨WcϝcS.R;eTew?)mJwb pQR\k/PKg{<S( 0l 5SUF<Ʋi97=MmaH7MMӝrWSW.Tٍ/k1~@5N`o+˲ܜ?s+ISݲEloZP2N_l۩пBCeJQԴr䩣||er%VqcW+-KxF}5ߗ.ӡN5g'v툮F "(n~mzR~5<-@xkS\=d4Ej&ZN x%/-'7e-{;cD?rUѬQD=+bE7s ϖ\~&'$ߨIH^BW3 ?\s!9GuOzvU"h %r1gc4dAAZNW KZ^}Q(RC5xf]6][ŏ_Gpnj.)+Xj,"6nn caR* RC/5hu<ɺ84‹n9ˇidq3WA;:SMg6?n~S,5`C/+ 3o%EKlW6nyk(w|q`fȦmQeScOHAFnHAkVK{wdV)M@ ݶLYQ!ǰJ~sJ֔3.z;9 m/ݖ?)b-0VftO:N'z~K?[b:GMͦDwiq/# JYe˃t\V /ZY-6-f<՝cVїl{X۬leL=$ &9v! J+3Ĩ$Y&HnC*[=m7eJ| 3xW+awIt jv. lՔ}y?^iwܮ哅"NbYݾN^ 2Gmb$@`P[A)tbivycr<ʱPà(5sS6:%{WuvC2 29u\V5彲VWsr zC^Kuk}6A 8u":Ru=wJ6Տ/ex?:  ȝ z5.wHabB\ds=sbmJD\2ɊJ¡CDXrB-RzJ; ]P o?ԇ ûϿ1CܽlH^7ΜcyxQ@P*_-#ÞwtpN`ulصLhx>QU )(t%MY9<+bjՄ̇g=?;ʱ7#Y*&:)zY!QotZ,U-Fی˫sX8)&*eƐ2P z5Mky9.tȲJ|IlFDI \%hVJm?{o&o7FRON cRN>2}gs_!&\Div3`h, Ga^L>Ă!9H!(^?*|ᙠ[8̻2pOtynL!Mi $=E$V]'77mE,y XR[Bs pODϰ/K6YGU/R۟p w;~ZΉq5}dSK*tn ] -(-:L"3A,L򋴬tܦ{]&\ M Vp29&O9V۹.Cb/š[Z) jupϮRۚo߹+:gǕ.g+Ŏ#\o;eVLcYu_.E1 znLs0=J#LGn !iۯ~L[/\ɊaW]dINb HZĠ> _mhZz8E,P+0flZ}iL CZp83tG jY%-RNp:J毾g>ԡy5-+.iѰX9%y,y3*aIT/ hzZ5FGͫ 11xhv1 HBD IDAT)ҤC*jV+9bsL욌jЍy=#!m?_)38? ?|NG~Ցlvq

pW_uXql6T3Mf6vȩcvEf*qw3h ,5+lrRr 8^nhy$D|ͫRsy[(ys)a[3tK#]6#T͒ay&xi[j^|f3S>< DTkS Ybb3&R]|l~+O4r7VtKCZ2+؞G&)S/i`B3xQ/-Jֻl$%Ŭ?E o(Ovc|vR$t[LbSMT4 0߫2ۮ= \{lk5_$"Y><!{NgG_qxs@G۟#6,j9N3İj}dQVeh]mY| ?y%d.)5쇪 r9U,*񸆡 =%/_~F;gCSOs31 M)crx%Z-EݽD(],˴R˕|bXǀ;x;QajNj3\,,D2ԛ[}G٥{:7w]G v^2\ߧ㙂]ItU A$E?K:B8m}srlq\S9|wo}_gN[}POǔjo~T]^^ڮ7oiu=}؊z02/pIW]pՏ*X#~N $SS6Qh U.Rpv9>͖3*^iPVYς7X>n6;4>WO1o7aSQd0.wxrl8ulURG7RǦs|庺e5f2z ;va8``x:!a`t,Bbض|c##Q\BLSrQ\T30b!жHljj^Tge)a S׳!S2V\䈳T#>࠭x@|`o]q/-wN'ESMlulbHI[HuSnrptuPgHn,Qv,~q/p@%Sc=΢W@="XT<.ri5QiSqGrXӞ5< xO1xas]D`HĪx+1chjA{?[U6":T z"% ;liX֑Q{nޞ?"*eVFI)\I㠿VR-e*s(D,jZn73c'S0(7Ƀe5(Q[ }hyubn4bi jB'UνGxq?Nybײg+q:xm#$aْĭM)үYcps _eؿ\j)&Cq3{uͰ@vՓn^fՀ Zi$m"H'I&M%JLN|aj+=[~\i3vūkU" UeőUדwٿW}N5ocaWqT/_F~=wR4%C\3V niPȣHvK)<^`2 !%P;2 1$کz>rǿ_7{>9hHii5N7[#~3LL3<̌4 / q :GD̔K.@(Z#SdHfWشl[Dg'L;Tik,h!%rpJ6dF<]ʘGALM[,cv/ #Cml4=1q"5Ñw8ePRNl$-L'pNȊ:E_@jI j@aaC"z'ښsnL5mt׼~MQb9rn2dLBe&;~[_UqI=ufz;t"O0pc2hFMB!G'Gڥ*'ѪZD)CXv[=3Sٟ.I{;a*~UOhl _cv+yz߲mI1%miٟ.f♛EJF˦sTvm;Cp8:O0I",~0gZĐ3]cD|Ҷi.WmZd*Њrӓ(џN1͈D!HµTVyW$H\-dhhͦy蛻q% Yx14r\tŪ(KYaGiIi_gM:Hw>EœpZIC{mmcUa8DF@3Zv@/P fl)0TҀzLx 4gtj:K_폰veU>90+j\C>t[ǭF)RdDC#}ݑ[5|d(ǞdbF՘2nz ɒj\MXq0V<}hCgHG41d^o܂, `hjBp*{ȇg yz65V!p#򋷤M2q4yhHLBL*{vySnϜM&R4RMÎtfli0Kæc<3ExW+3α=@э\ ;8@v6سiGH''Z>IU|%ԑ, hu 6 %C:B=cCQ,^մ Fpr87\?xɐ{IOе5JkWYN2L#~z-.39_WRREN(U 5M@!܋hWcdf W=]iQbGDfOj}Neۤ xyHˋ^968v~sw]GdeX W1Yk1_јii~7$Z>^;:LmA4QnՉ`c]w>3M2V sūMOWkN-NM*Cz&..} h3c)bp, -"DRmϮ~$EH.)$Dj)"ԝi;ƑP oh`-kxțg$a?e*Ub 8KFNJ9 Q~?#~Kom>ǣXIAÞ$s~͹z_G-Bѐ:OPu9;0ZjŢ})^'I:rR#!/ܢ_ʪ&3ЇUm&\<&͵_AYqv=` RkN1aܑe qÓ+fZNp&$^nzgm(n`9zVpuZJ+L ˸팚ej^׵3H&Q~6ېU vM1o9[!K:Q3~;B=d HhLŠh'ԙLifW4[n[}a5? \󩉽qoѐ.a G*L] u](q322+GZt;br +Uo9e?yeYbMe`uZdG)\؛Sz8 z*ǐӡ# ~X8&ΈxC%w6 ՛Kt9I^9YA,bQ¹*ɐ-_ksYu2kE5rVɍT/8@IiVvTJs\eJ1Qk.}{v(نPS, FRULiRƌD6$Q\(߸Am&u\|!r}c{OnIy+xh Y lS] lRr810ԠfBSiUc8zDZB31WĖ`-͛W;[k _SWX$ \ެΗD6s*K򉳛U63dpi^ sVNJ|Ϩ=:>.ct.@էRv܋yݥj*JۍN;XB#W/9G{dR>=q8I:7$GZh[-e>6KL~}10R;vP* 3?~O; ze Bq$dDnٗI5H)-8PöT[tXϧhx /t~5g9sUSZZmbd lgbS' Zn|0,v]`Lk*Cj૞1}̥d3e)\)ڑ]WE\V$E_|u%xlB)vÜS0CǑRtI -n=m cy؇wE⥛9ݙd E&^w· <*t=,[=1v7s*lj :.c37dK~v_""ҷ{8I%҃'A "HQ#r8]֒Lq<#ѨQhԭ̊pcReEaCo0SM0E19TԄFi.SZ$]06eWuJkR,ȋ;ih}~ tj7ߛrWMm(`zݳi/:XCGuͩs[ "Ee6SK(*hY.;wr(3Os.`KHBMuV*mQ+tMRuwo@8c0QJq.ᅡF mYyiA7{~_PTޏWg1l;ѮC;8⛨w4)cKdGQ<꒱2yp9ph:b\{W), 1BME7o.J2_fKS_\ ~^)ZRGJ@dٶ;|5(qdT#[M/BvꎵXK#v$U]U=Ӕ}hz]HŊn]:>VU͈*G*BRmYr]hI}91dxT _o Ϙ }GL4EJǦ#/1U-0.Lp(v]$>nKy ҌDl!3-58qqm ^D 4`\RA9 CBgp"?xhw50V[^.lt06&f |W~7Y3A|>;=WB-in3q*xx`Th8ag~~"(!lY`\΃392Q{n~ߴX]y٣ӛG܈k#Ocu6 ѐgw\fWc nY\1O*YM52+]!c]1m)9yL^Q$B:@GKch,'/ 'wG^cޜ0Kpi(.X+ [tY˝O"DU~ȱ<Ӈ3?|4O`$q[/ztk0HD~//_^M s_o~){">kzlkb whV:d "AiG.1@9yRf9,̠x8mQOݏhwkXMUm[Ֆs̔ͬnqK;WŚo|ִ-u6Z uOy 0 T%!#P"^GlQfGox3/d>lePk(1T?$W3b!x$g1/P..V q!!-_1L3=ɉ896̓fdeLu(s!%R"+sbZ7ZBTFlBq_Mkgup448ms S!;0O]mJZ+W-xZ-Q IO?}7fc1yy-2b^CUp Cdkp6-%1>45Il9\M筃9s5 ?[IɊ pV_[A"fJOf{R)E_۵U;ѺL0; OrW5KAWUZ*r>S_}R9ڂ3W}*($m-.Nt-M \LJvE*$ox8p09r 3!/ug1TGl)rxjta֧f-􂍸6T[T #t*$sm`U.atحN) D E/ -iBK;oѿNן/!)¢X0 :IVFӥFgYBD~gP=ȤOs3S LuެFh9{.9(!nTIP cFg"En6Rn/L=܈mչʦAf@3S^~MAhZ8'F HYSOlJOtK ]Sهb5O"iYy-p 6V^8OᢋVEO?%| *3UCVRw,q42':p\KHXܤJ%5cKZY=;GעaD3o<&ѮbW,`x.)a0%UwE+ ĵFg}W jOxֳQ]xB']I{fPVa _f?]sbW[p{jw쫻om1C,[\qҴzK%܍rzkr9JqY☢cai-a nx)Vޓ<26~R~54ӧ'!OneQSNۋb^u۟lԟU[ư{vT4KֿaTS\ŭRu XP\`دjQ W8aܲa~)H X]mI6fHZ)F/Myg-o!+U3Ʌ֣r:96a213fRc;É$`n=W$EoSޓv|!9l*y4gJ"p,I&bB!Rrh M8G23&`6$t:zFѝ($T7[ kJjjsir_mf/w^Dg4x@tm3:U%wDg|?T0ESb Q)q"cq΃8%xƆlׄGegM|`P±ŵLC&!xz2eMkSeײգjd2`RשA"Ɠ`~%\zT0yjd9*$8!ڬ V(FiZ<KMYzX%=_E> x0dž-bkksS} Ž-kj;VTtAIZ5J{2OMLcҷO[8C* DwIy ⺿kM ٽɰVx߯}^]W Hh͊ 8qT5.eBֆ߰q̮C&.͚9% ʜ8݁ӑEEhlDGj(Ĺjd 8F44O 2¹|v1G0HN/ʼnٿq;e^xnl|pُRL_jkimy(wL@ڲ"kRRG-:r_J.Py;NJRo9w⚬QdHў+ fo{Rsjnu~eD+"c8R 5H#sHDymq42zWh-9s)ȼ%حZmv}z#]ǭu,ؙp!4equACq H灼=eVѓ-u ZCKw3qw>՝Ei"% h 7pudCP+}+u63{̝ҧT!ׅ]܍ܝ$iN#gYk!Bۑu?$?b_!kWg?)!M PWƳ}  s|,nq"]1t8/D q"t&Φ=Ůev۽wq5843rL y +U`y[Ǔv9$#w⯑<1[:v: E#ԑhC*,M\4KpoI` tUkWQdrjG/TAuݛ1|?M (Mk6Tl2Y\}}8##1ژRBquDGћ$)Don̯ޒ"rGz;RI X$3fty@=Nӑ<_>RAe4̉^V7SO[}^r7-g*'RPC hBKrIBYr–xG1K$զ2(aD{5 _3lqj=ӁY ']C.<Ϳ⛞?ϟ5-V$S{Gle Z0y }DxBLFM$!ێH̸Jufp`20DҼe kԴQEipίNL%A` ; e#)"T" 1M 3i3ِ-:Ed;]ژ,2_hPD X+Tg9 4C`w?Ns;4!D ~k .&FJY#&O^$óTkKh swwJ`)b 8qfmk"J^k?S<(C˥';ܷ|8qvUWeyZN%YV` GHqk# JJl.h\=K,=2t,{VrD&"9V|:âN[mUTpz"Ea?Mqi(_hF08n䵘Gϋ`֚Hܠ<`Q!{.|r\͍ofr'~7JW<{gݲB *UgyB,miLJ Y#uJGb7#VR59A*3e\숶ϖx>?<%(_9;.˷goW>?}cgh#AɆwx #EǶ YoLQKfwuk+]je1U{ IZ|;-"xLrI|qȊ0;zT3FHB,}wr<1Lk5vZi;}6$KZrؙ<3u̒RZe=_h_гx+n.phw8?TƮ3U424iGK,(q'[ƞpCrptVK ^"whOa^r(&䪨Y_*Rmhd{xMӒ7qUӶj/Uμ"a&,6 I[(#gBDbBkOQA-VoR֥a _#TjfQpBR@01bRCGeݦmS4M13sf*h6o=bOX-+k(EhNq*8ML)j&0mǰTF>^3O4[m33|f٭'%w^2Ivn sLZf8t+_H42N'gWGZ#L< iӕ(NXv[Ꝧ;m# O|s~/p XĿ5Ct/ ^ {ZTQUn';ϞZeHUYtkBklUkh5x8I-h_No0ǖ RL 1anR'W5+@ Xb:e?5 Ic̹u7VWd>c{S H찥d&Y_|M{A\JH((FuME(r.B3% &xhlQKb8!rc Ltdvպ֧lIEZQHخgؠ1)H"oW y"fw˶HIRVޱj&aҰ{j `LR0jϦ .#91&qkoB:!LV ؙܬMsΫȍ|qMB8Mhk:ΦK;&TuFLfk!2Lx'?MόOmP cҬ[V/%lx; YsS˹3y7G2*$Wje#b ޼-E>/̥R;M9囐 !  *7WJ촸O|۞88f>}2'zh9$YT5)F2YsL<ּ9ŠYʜ7G>^)f]*yv4",%<"vKQvR7ھ1n@'J‘yXZ4Uz;"Y $rwC RX49(OXĭ(1nt BMib %Ja SD23@VhN|8A:dmSYn"Xa3cx{~m}z (O?<͜|~2>mI,:iMuŐUwpL<^VghU4mc4V5|/k ѷiߝ_?4x *:zyQGsO0BV9X˜ɋ=bθJmpU"Sty=#?|,϶t!GE_~)=b^iWiek˻t󂏞wK{M@_!tmUkGVifIizi]/ "vb|]H'48e(z(ѪX2_"Sg]X57zfO6ްoܶ;Qoj8)s[OB76'%)@g7\yn+pZcqR#4#ȡ|~f0C Nܵ9!OK%thLiuٮDn!ML1k :A=ŪHrԑ5L;t=(đpffMK +xwʹX*^PؿD(AbyM3{2wzAe1Ŷ4v)&C J* J=0Vy$Og JDA vyp[,oq&Fgx8` i~̜cZ) Mlz41>aěr9 }o0A+j({,"Mʸ:X^Xf=P215oy%q| ~|{e <]8l bp!v3TmjGƈ/393NF]|0Le u,E~%GGA2-Oh8SykPUd; En)Sɮn`Wxr*? .so3e^AWqɫ<@}\Sޛ$bp.v0B̛[Ř}2!{r?Sk::&3XC0'x9›lJ_jl>lz~ FD1N6Wf7b+Dcƴ/Hya3rT48%eKtZ8h~$K7"UfLef|kzkBڼ7VdozU O=ZҪ%dƉ4J$u'.4̞p4D>Lt0 + bGНi]8fYiTZ&Rn|y80MG.w4>pl;zkiLfp[\1#Ky*ж2k:4R"tL)bDFZcpo4 41fr4 ]eGh"#Z+iYK^%cl)0H( lI~].jT!*!7Ia>IK{=T+GPan` IDAT; -<&{cbMf'ElI|yF*%KBImmtT$aY# _NiJ/R/iTf^]Ք/U5Λ[σrNʻ|}M19 yeb8 ƛz f>tAnOtXƲ^ 8/c[?t"D{Zew~m0i+˳&E ЂAc H_Ƃ@ nq 6MOee 5w{y$D"#2}l>/~a_^)ښdpkupG:PPqtGRױ@d[%DvZ1>t7Z9Rjt}BR:Lf. ebdp3 u6Ͷ́MW)~C@Bt7c-=2 H6Eq?ߞ+d)$z7z҈w 5y+0\њ{xȢ`7pai4OUvPEx1 O(ڥ5^$q1픸n|R&FI|^"ځ  bfkJ,c47@8\ ó[m ~XAq:[n~LtnYЭ[(lĐ )hE̽wAUEjMpR =K>~;;XUuR` U8 բ qd=e2KxS<ŒɔŔ8ff|Iv4hNp~jædUz YUS~ug҂ځ1=Ep8?ywB=\@^j߲A\P[J^ZKm(0uȺ&K"ʊeҶFh7w =ImBIf.PZM;oCw^m9`t0Tn#wB9)T*ga6\M~0t\)@<+f ӈɃo'(|J'ֶDɼ4%l -\shG@V>PDJхS/_WϬYPXLpŨ g۳~ xql5<4HNߨiKp}iT=7Y ڹyAMJ0SLD8T ݨn e։ub Aٽn2 #8b6=\a|`oC_" ]7zo<(K΢r^ծ%`@u*Ŏ5U_+uQNN£^op½9aU+B2Fa#Xl;T1sD[/jPv#"[Ќ4igyy[ "БL'+;æ^o$H0hɔٜi$#J6&m Ȑ&#k(>+i6b4c!IH:ڂΎ%˂RU…P^! ;W+H(MXŤiyn7=kPUH(eZVB1Q ($fVm'w ja,v |/7h30DDhiԐ&ouiܾ&"|2V6ߟ7ҬZK?ǝzo K$zDJN!qfmOQ)@^8&iyA FS5Ė+^]8ZO )GWkW4%W!aKnj-\zZnrN3"+ Ez/\9G Z$ +>~E2&qAO .N2D G RKbi+yn2Bsh< U\U>@o38S_?nN+aN gSNg/H"\`Bgic̓DqqݽNm l>v֖W/f>oGu~i(]]> ;(h=HzXHR5"YmPh'54.,'Wb@5 %]•1ׯ&vQz1w/^RA9NC[m}i2ubmXZw쐜 ̐lzb MNef*?W<ӤyCؚ muQCkȨ:z[ʠz}r;qrN knFu5 <4wS9o<"?Tz|(єsۖeYVPx,/[DDp5"D`MiF+Px[0S:IѢŪ\āԗHbBN,Eơ7PaeCN?dTfɇ/i;^M eTmYk(!/[XH̝>fmT~iԸtm7nXLJBB5ZdF|,\p'غ= >ע-qǴY[L\7"=Ij7[k'ęh%ʊ,2)Cɠd\o {q۱`*҄DQjE?wUsM+YʕʱՙE58))a>0V5+PUYR!#{<.TTunux =3V7 +SwC' <F u~IH731[ HW-y yLdMSV5y41w+'+rŦcm lP^ECfP1M7 t768Ktg-{` >́" FզrHKiSΎ5F8>{_{>bFҘ8X_q?y~~AfYF#∣₢$j.s%x/vIja GТ3B#"roy\˽3e Yj_1+H"ԽJgt$\#D}#xO(P2 zPQOSGNET qݶYJ(rj|lvfl!oarۤ,7f@qAlGȏ>M~Ȧժ$*ɺƖa|2.8Dv$JrE3 3\Di$;]v2&|bo9^ޚ"㌯_jưnGQ1,=2'J.L5,! 9u) ]v'R KEK;4y&1*"!=^6CeQs+K*_ l$Udl)P\\w+QIk Zr=D0kyNhCѹ A@]Ƭ:ܖxġ-yQ5=:iϓ `(3HD~7 O*ThBTIR?C얮3옦i(o[ wuHi¥fy"Wn ƒ`ހCHi/\Tu/)ze̹ > ~=NOvEd*|S[U^OX:6{'84Ւ}GegFKH^5Cw6aZ>KqC8ќQڞzkqFxb&Պ"@˽,zç\\ɰBT XV 3LaWgtQ*ab8ڹɛWo/?>OJld2A46*ت`~9hgB&ݓʻ}%3PH8vSMQw_6Ul{GO9nR"H P-q틛.`#4.aX ^?k8$0BW(-js $2{7m~[a~*xeZW+Ńs |d0;$|gL@C*DÂ^f~kGUn*^)_F`+xj;| )v-uD{Cbf$LztCamF!Z*BdhB£؈dXMTB:V2aTnPXC mC{]fjP{E{&hu&mZ.t*|DФOb#Ga4ޏ|!nuH-~;&?33tӤ}FHħ{N[xe$ ~ii)IB9~\1$ͩۺ+wYnq?6Qkj:ZVegKX&f$~Wx&]z'O>U2zM(έ=.պ;ﲚ6ٶ6ws6~e@n+R'WIU/L[7Z"&DҔeͫk،$!KXn8'/y<-|+( .\iJ5/-T0 ^D2Vq:;.糺1ldžihQƶGyDW(\Ol5(zCN ʠb,)f0q+OX]EnCy [ŕyɩw<TnP"A& %i!.a yRm\|R#դ~&Kp&sc zlk̢v~*R1Q؜*pfw6o]/EKaKܸZ=XrhobR%&ĢT±֗4bl?s V[GZu7'PTՉ»mn"P]ӛ, =|BmpW%p ^20А@?@[&R]B+%6 aY;Χ<%yApUPHHHe_/JcQn}jS%~6F K'3 :FwN(fj>{)Q7rMBQ>>zgz%70B]4|,Q >U-֐fh=!OњzB&u #q6i^lC)GIYk.'>k9Ў IDATvZ*\ؽoTQYC@ lR霊%YUEHZf2sH彴)Lh  )(WOD5f2&f1FY1A'D;$EuxI}q-WϒEMei?*?FwnF:T~q0ʽ6刺͵O Dl@9s2l? {㗋Һ?q{ړ=2M};mWOv&Fwۻk;F1ΐvWp,<֞"Iy)&)wTV,"|~AqD5Ρ eyxW\-Y^uFZՅowApx,Z uYvLg~0BrB_䋿 q{KzJ54 :j`St>rq0HGpiŦg14?<˰xD_27~`6sOHD?74A}lEJp@Њ6%zPUS !p-x۬A$BXLj{,Y:>P6? *6/ws- w;2L0H 8II1$)& /[>_*!Un0`^+(Qn6f +{?!lz3XfPAv'2fS%y& >AL6EfgM8GF7xw/dJLTl%%L6T5CJb ?Ѥz Kᢡ d4?p%b :~|د|`+ ;]P3A E-'~sw<#MyE@LYZY;\"]l5rdgi?cMҚl I3{P>\|b+t_'$tǏ89dռxb# L2iKY.ҤA:W4jOen.1=?¼dqMMdrEF]U]{>?-b"V&`,$覺Bi5?s vB^Жp 휶$o^*<= o]drׯ5WrNZ *~?v")h!m*)}\K9 sjHdt@`,EPX4sj^B7B}mLۚ muAYf,oA} JMj5QP*ė77%:Z3,ybf? O^8YsڍٴB,N ; 5.v.Le鄣(!V6\je>[gLjзn xk}@+<>8">{?|}>/~9a5uH-_T8XnqwkA{#4 p"Mi?RJٷ6yA(K3yɳ W1 T U{A4#?h^N$yJm9;b6yyrE.*˪uEdgH{zs0z' >~fZ>H>&էQlYG?3M,u0z(;탧wՎL͗L}g\d%}ILdIShYox ӫ%Kx|;|N(^JE [՛E V)A&([0B,@A" oP{*fe(<}FuZƳ<9fJ,Z-Uʻal"p0p=,5FpsO mM[f:i=o?et$k;JZm'<JH݇La, sXsåK5L5D;>_OVȨrSZ(IE ,+ Pםʍ-?z3NQt,ɲU4WI2"ZuM]z;.Wj-Lt}` kΗzj¯?&/ʳ*f:L\hӫUw=o p~B2眞#>Ui@]suB;K0%M7m?Q >u7Jr`"9LSͫq³su*4MP9V1I{&|UҴ-Yob +96TڴAAfy0)ׯkUdEaŸ tD.D{0~YG*u^MȅꖺLȘr[bB1b8mnEc@:!$NG>M$ cH iFbQBѣzYBPP07f Z}AWgG3f~9)oy7?5|sJ=ЍCK~1BH9KmZip#mQ 45Ð1}H"H0 -9QY|o{5gMM+fi}vBD)u |uz HhqCהF[ԏ\< W]%чdDQ GuOK_jEhiޑUЌSU98(ަt(ccƐamR>|~d^}go'y- Gdv滆 ~$_†i:)BtԚ63=@M *B+LqHtQP<}AgYQ[j>oHm:7Nalry O [_o;JhУufCM]O# u'6U(|ZP]b 3[4˖4rNu&%:N=vQ|G:4Q9_yƿ{Q_?H aM7_׍ljy D-:&3P q[W9y8V#>kE0qd-fC8`|*F!?7ܦ,"rP ՖWg(oToQB*j$"=s0_IJ(boLgLfh1XCxeúlXxEL5xQ )%ʐ$XљiVk~TSIDP!k uO( n[tlfH"6/SӲB061d soOHüRH۪@ѯj7.D{HC|n=[{7^2mMdyu1Z"]^Λaf OuYѓvBi .2ZUIE̕~3&|r7ztkD$E+}č[կ|?xrl-_VW++jְN-`*XD4MNמk5A͈l7݈qu9Ha<{RM!V!} ܻLgo]:#ЩܳO)Fú&ԽX87/jХqu>"d{҃j)Vc jz⫚Ւ5嵺,G23Nl.ۓ3%o}mծgOں3.,-@bkͿ嵶nd[b8rAw#Jdz<\_~2cdw3"T-q5L."4~o3c1mdJj04Von@ fFI o9f@$Y%K+V)vuS6Q'*E6P.;Ġ}9*#hĆe慧I9Ơ!o[6*Bz;#&@\m4:`TpUxUz7WאC,@Drp>V2'_/RX ]ȃh40rmQkHs7pB!)x$I؋*v =@-#€Ո" m@:^Xy7}4k:=S[\b 13mRY$AkA(@G 6qq!J8EڼI գEV]ڤF=~;~P!*|~^5%ske-/^T4r#붱i# [#n!%~BSw[.8:|n *ulPD.%abhKBV:[\m5iCVwvܶi3tµ4~Mݹ\dB#6W_:ց (uPsbƓWXjH'6ݹ^4[gouc/vjA6@!(\5n\s&ay>7ǟ~Ȳk%2C c%@)l7#F8&cC#m-!6 AMK1m̤kU5hEUf׆&M[YU]]ݜiH@Fh!`gB{H@lawO}Eƽju3^sy79 XkmV1 0*K1cUqB|iyJ%k_p,WhkZ؆'8{4EJ፤=`m%ǭg aV#K d =($V<, U|Pl fg(:W1X师ס2-ߚ_3_"*C{xT9OcnzZ+vckoE}gf?ІWt޲CI;ڔ`!=lkx6WYfa#S84g?xs},=SƫG'k:=cs7䠽X[I,9c%FNWOq(6k&-> "jv'eC'1he%4NONL\\n ]2GxL3ytl&,k^ͨjEJ|`Qut5umue$.!""  z@Y_qK{Ɖ82 \15B?(ܛW?P>ݠ>!xB@'6FLqμJ%t])0d^bcf3(!*y/4n)a s2R hn{;XځZm[Vq^'Mmf j/U>mଡ଼?, F#]WxGw(8(Y5+òa1"VhCf'3C2K B3Ĩ ܷS|Wrvܜ+ 4`"Jb+-#C*a㬻WsqOi&߭mV1z[gjCz6s0B(2iH;~` ö{R[ʸo-ﭼc)}J#E&")U蛯̛g؈ۨӢ8.w޸0yV+vҿ}@&׹>>r4bC0?@ Wfy<94ZK꫒6 \`WJ8z5ނCs,~Ɂ6~M1)HcWq"99"IY_<\gJ ӂUDtk};v$AC~!Iu;0o i ^cڋ׈cH :u: 2⫗IPhA8HqKu#?Ј~c>]9a}3xۨQC ]mBW򎃑L9$Z#_+Kr:7Zx^X.Źl~0kr2r0xZnlzg- IDAT`2S,~if0߾av=e)\ *v7M#B XT}4#ġ?l>Bb$c.9vݠrGxzqɸ1Zp>3F)I,.:1Vg޸M||ZIt,;n'vUg 4+ |𘣜ߺ%?c'D'RP'}2}I#rmY|ӣfr*:x~"Cqg"A용kfD[le ۷>)qz1WN:+"(>rヰ~ȪV|yn޶w=] 2p*ӆgUܧm%jJƑ)#*hk;,RïFbU#VqԃU 9;xT磘xr*l%[4⺶p '3 AB?Bh;<1.h[[˛K-#Dx5 58<(k&o۫$EM=7揾K6 3{3t^qA{Hkq@:Xw]OB7qǫe]'d9u=5,dX'HdOJTvA4ʂIvQ{<~ؾ9g\V8=oQ|&}J>d[Hs9ߤ z4EeE6ĉ^,nkF`X+KĦiPqG~G_&PHL:\G+8r% FQ$ Ϲh;Knx]֕!LNr3"Q^jz" '5QD1NoDqu+Q{=¼"[/vx#,Qh^RV"m7=܃y!.1^0{Rvʐ&i"v5 LJN@i]W畓ߪ? V2#]&-cźPpw"2Wc0uk-e;eHwh# $VGlС%[¨L)@B݉vGG_O.Yu%ÅV(F pSf1 QY":uNTTMzq_Su3TF\tW|euĆj2NX笓v0t*Ӝm nv~&,8K99J =,8Bh_C9#;4⎌/! C{^UFh.E}`p`kx(%9񙩫 Qt^S0{&G#[cbNץ!#y`OTe|W_𓟈g 0#ó? N@pt*[Ӕg 6%NpeX$0jD`)R_xJm׋2G߮sefd>zga7]m3""8ti_v$8nХһqK{I Eh"J#d!D A0jɰC( d?Ȋw|F͌h8%vw0xcl‡|+osk3ccq0)j X xT+ἊT &<-d#Q]_JTYx!q1G|8L^IWLJk;»6 82"r 7\miTE|>a6?/-['s=EkВ[B9܈v.i#rhevR ;xH^YG_ˆIBQh<~\'EX( 'Ubz9m#Cm_ GAWĹ&(I7HȰ%I@ LJq)!L򜬒#o#BL*IOub_RĠT wP#UBy ť+/ިLJ =}c"r}aL an@yז})8e;L8)I8 z ?/>Sי=3qۯ= gHEt{jY #˿_q7m bMO"cRVL 2iGӮI{ a `r𴝾sqJ12yJ0?%_ٵ *H-e hA;F!JtEcP.ˣ8'\ӨƍGg 2av|"=bF))2b4ӧv.,;PA!1({n0Zz9 +Ԋ)Ut-7ANN6RobOC[E489\y|cuاDI{mU '̫x=oW˶hVZfMk8xI#wSAMmdH9PQ&kUY-R!H|HK<\E<= E ڵ~˸13a5#TS/v5I)@O^f~<4,AdEJvwFN[$O.Lgqrג ~ܾ_32fmh 7$*9KFҬBBȀ(rUA@1ߛBK%BI^&3h.fHI"6\UONl6ѱ:3oRh_&i/e_2A}`Gg8!3V +15Qo~=ܜ b;Rcn_ۻ5D E2t:<_\Ifq烵ciCh-d@bzAը99kS*;ܹIhΛIݩ.  OǏ797W̺u$9O>8C_*"RfDIp2}Q{USI\KE"BD 2IH'ZkjqK\PG WB>66Fi]V9ZpUcoi k!!:t)NaZ -Bsr9o`"ªVN\}Tb) @~gѠ[CmmޖvBС`䖴]j67BkTV`bH7?O}ˬ}Ͼ Ygi)MR*B4y)c$@6qBQQ'X혫3BGDbs>+7)JcK~@$9 jżV0=l`]Jǎ<ҝ{?q_OB 8$ILb EAG0.yp6( 1Uˋ+.g\]yA+(6zEU?uj#aA;hnu`CױքQT\FSngq{YӉN57K:K3. O|80ENzxqjIZ5"6LhDwm1[;R/eLa5=ɔgr0.gs W 퇘2C&pcB}X4E(sK+;fov;(: (&-Q'Zms4v`=, ٥O@B J%JFSHه5Dp+W˕3!z1\2.A[Ȏ(7+~%R&  0j}cE{cʠt2eVe\'F$xC@'ҰvbPY9 K/>|). [ҝOnK>=jaL1.i  ! @v?NLcx/w+޼Q77EEa Q#!鰠T#U0W|ގ2N&)WGպ$6.uO4\ b#G͇/sJ RAA9ڗK3li7/@Ւ:*àPdteG<;/2dX\볌u'ARbWDa3cf%&(A&(ooCjѯhIυHP Uײlߊu*e5 @}3`%B9jp)P7UXR ' &mN/Q54&Kef3HĆ3a⨲^XB(E/~nB=/>s:BxO&ӌFQHIjWx3 Pczs8K#(G(Ig$%8asѶMCژ.-$%Ϩ@Xr1X|'\H~Ztѯ+ IB#Ա;8]pah;(2-9gM_~ q4&6w%9# V!RLQ눁Q(Dܫo?\A+*Ynf\c:A*yt*m $ay)_O:զ\xzG;׌qT-dhߓ caU~x;۱RFP BOtO}*&Vдz Lj(nS]y[#=49Xr. eGA5>_2| )}_˿cUƫ`Yjw$kvTPZc$L`Aw>(<;j#49G(E)+n,VFQV>IuH7T?zGD'BT&!MQ{PcF|:Y."e/`A";h~<&m!lb?~ ~xnrD$tR.b޻E{>fZx&]}ܘ,ݾ'(bTy)H3rlAWrqSFЉ]ei7)2kzNZzFK(4Iމ}8$ mC^|XFԲBםݬz0Fwj0r?|sݼ,=xT u5.bR&َh@ U;#XDK0*XݘyoyVv^A}z/dܯK/g % AA`"ӭb?ن]̰VZ״?1| (!^(oL14e$>UĠYLܧBi+TF"E Zj7_{%nè80;-'*+)2: zQ=1*d"<^E}Sj/C>Oij_{&[ uó, c6W𡷩)99"ϩ[dH3+HmS0-Bgf8}~Wɏ?5ueLx0αX.S5H$v/gIND;騑WB a:8pM&5 GUͫ%:Gn0 Sx5'*KeZdXE6+_o6~pTaiŷo kB~ -JMꁝ.2.Ѽz.~A3!KZGӡZkx*oe%iRԕVmVkzS +Nm4avMS+WWuY;e i&i7 mK>.4Awe"Ȧ\anS 6tkwа#Ax`>Q ]a!U saH)%!_~_f~Y \35z ڰw!CPfrj2T*%8BHl&.UjHޙ4&Ixħcږ~1%RFѻp%h~O[Uٗ $a%i7 vhd :%KO>ij7"ɹ6;H t+@D))VY7aؘk \MHo!I?Xm>єb,'viye~"uv7C-_M!íuU@En,yM H^fiHI7A FN2h7'g\τo MC-=zĜl*-(1#7B$@ZP ~&PNq6eA1pD2#4bqY7edsNQ 6Ȉ-C.骓G)#3=> o٘y$#UtdqNj ":Ir Z"E7!;8$]&[ŴB d?: [> *v?< 'JC zC7JN[ c{A3|3&i{u{A[|)#y5/߿RihM&b[F)'Fv)\Ψ:@!S]*=RspCFHOU9Qo?`Hyy}lE44WD'k[}7Vr s:FlՇ>Eg#/YuK7 D 1"2t愮o:Oq*yFjg(; T(A傫EZ}6:˃nq)|Y,(EZ0\W*EDDŨ+ҺwaW#G=0a*91Zkh4.j紆}  ϼld1e ~Rd4!A<> s<(c~͏KV $',5tݾep7IJ~NGMvVm\!͍(rG*"t9uWIAiVjQSע6r6 SmphHAy,X*&+Åb/A{F !{"A^5"$'r/65TBNGAKSn^BxWkfG f IDATP$>YD*(~|Ӆ]-&ClƓTRM&xz{9Y|ׯZOקWNk2Ʉw˖|łB*k+ $"ӏ,NG"FaZAX1ieWW|SFt~$NQ+2ݼH"M6+(KSˣC1>t:X]e,SH)"׮%Q~f֮qr*u]X6Jݯ'­5agnKUtQ!$"Al!4i$6p_ ZԈQ%n.asb)*KGKk#Z $-WF<_qYm╾S0TeT@(9ކ6BHkS"~`gW9[%d$EIΗ]jWg\/9?.y\Bd93Uͽ#Ҕ(Mׁ,1"MݑX=WKӯ<[Zsr抟d)eN$J#ʜ'IBv<>>uO>1yN4_zɲZr9v$"M.S? Wgmfw tYm &ŤH!ZbrܛO}S2CJkyMӱZ9eAPfw.3ĔoZub} pŅaAbN2SC`ojXN)S3 #t>ľ dp^j֡<8oN8&zR8c}3/n loIFN'le}CnkHQ ZFY?p?Bb/+^jMe/,M*)pOBtSqN'1}X3"#Mzeƙzs3[ z^bu0%-R$#|+|sEF?YULVZfޣ~v6ΥmoBXd.Kc"HЊŅ^e1>:E" IeDhIsG oT3&dMcKoX]hHSU_G(e};SZ&Yؔ6#u5"Ish^G #IPDn:T$b[B;cHIS| :ڬ=>OD!$ e*xƧoꜫK^a-񑤖Y FW˒dr:-b> AAY-BDJ$:1,+_9;-`Nj'$*%MH.@_z~/Nbei8s8&HK.t}lYQ]̑ !@l񰿥LH㺹Ղ'"mEwcYI r k=D\Cufo%}rgZ6+b|TnˮV"Q7D1~P:VYC?sv癫Gb\0b}^ͳtڌfUb3b&Z}W$$;=Lҕlxn'~cItL2}z*x}֮e5LJ| 1Ϟ5α+.]%IQF9p(O[DH'GǼH ytKŊe D׸K 8Ȕ'l(ڧh"|I$rĴ1iB04%(Ҿe9ϯ411M_ω崖g,iZnjf [*X\غ@!-W7 N-)tkH#5ZAx_ڦ/VęzȄh_wIIn,o9A'btWK>ߢ9XWWˌkm'85\}ԛ <#0&vT`Q~g)RrG64CSwg ]##M3d?喦,-eok [Cƻ՞ݴ[ؽX F~f^q}{~u 7UZ@"'\Ae#%Q9 -'kLA!aq;9is^^ML=, (Ir'wSX+.ؖ[h`ƶ2 tJBZo0'+r0,k@:pZ.bc/u1ݔ9`ǰbkzQ# ZY&IJ߉IbnqևxϿ9JEi킊T tF=G-)䶘dϾWu3;3~mF=y}Wo!}?#Po&LIOB,W3E׎ߗ4DAYԮ6 6VRTIǒ\**rM M3G4๚ [\zjq1t.h*eViN}g3`.'CkʯĜ0:>% $?vג a Id`AW$^#z2Ifr`˱*'%A|mn۲ 謷D MXˊ,Ao_~wVi1Xr5`bbM͂Ejcb齘t&co9H'[  ?V2QaMU qϵzk_EnD^FH^zz?{L0 cH44%A V 1h=^xvh3@S)&0olVAq&}ffM]8t&)ɔD&`J+- ؀` xo. ؂ [)Ò` &5dU71/9'2-ZdWWGGxyNj<&VajrByȈT)PhRf:7]5rްX%{t:;Kr:GሉWH,k$[6}IUpzAAga]hO+A,=`9i3 1S\),ZbΝ) zpX۩6% nyIՑUG7/}4-XU*{. rX?~[ -yDžg8e[@mbpt4ZarIe }nRg۔ơnaY(^nhJ+-9BNͦȴ:Y1bӹL͞{ɋ #t(Б3JCXZMP§?ueVZRhe`iUgp!k#ӐQUZk*iĎhBa(-b>^QLD2]Q[94ª擧Tp}~rZmvLmXETKwGA\t)[3i dwig ";u,   x=}3OZDeAf_8l]Ǻ`*#1^]R4˂(9 ~{'kng7ji\ysUJI#jTDY8NW?sQXM3b5Ai-ľx-ldk@,j>y[ o4=!S-U7wĆ_8go"Fc4z·>xA"?`}7H:v|*QU5xر@_?[ %w Xm9u/nyy[t2j+MO߫Vΰ(4sؗֆj;mϗItѵ",e7;]]|-6Fq4|KTd|?OWZ7:U5TB)*Fr8C#[JM3h e3a0|}ZgpHHAd>Z(C=-*E\-BeY-q N,\i:[69Rfi#ꚔBU` =.XTxO];v,gmMD9}5 ˒2>iȞ^**a Х|iwϳ,viׄᗞVْ2%RdE@[šfNc:HAP!~zYǷA:K* A]"ʳa.VEn* 9@/?=@44fdZfBd>9*sT3¼D2lHk{t v S@bN݄ٛzyuOw1@28sa̙1S;2 _UvLY XE %#Zy_>֍VG;D殜R)6ɣ(ck|diZHJkvscnl Gܴ̎&(u3A )z;# luٻ 9tdR&Qe+J݁e{iQЫ4`aUs[GT%1 ϞvKQB"X>{ ϖOE>%%,d| ZWo5աXd$c;Y{~G!j=!qdW> f~tMM[9 8Cʴݸzh(K v!~POI5?K~.3冕Wowd8X$h9ЖOW{O#ဪџ}HJ' !ʉBG()|8ەPZy |>LCT"CgַȻQڅ_=?}(_e _J+dxn3d91䩰"Pz"qE O[uL3ƣ%Oarf/h9@9O87ϰ i@- FcTO7AN;Z>FkD ]@R"f.y4„"F8 6>ypfHm-W;͝.bA}/GIc=E"Z(, bju hfO(1vُX,dY<׾ˇvKqhA3tIJvݎ,\k}ŏ%?ڂ"L|RsJW~ NLRfZ|'87M糳ǀE': 'C[ujZ2wB!DAUpSiBPT,'\8ޛ(EV$O!yS~ixu+BjJ[UtT1[4;8 o%A{XTfg mI94{ŠYh̼_]m='Ns|yLQrcĺVO7;.rpp.\wrKi~7͘t(@##枀 $6HJBz)TTDEpjvJ "XzOSje؂V2"|S!xvm|npe s1XYQّ >e,$x6.HΗn|o14qhkH#e!+zut=Z|i8H M/(f:OZތ+Jf L6H֔\WCT  ӡ~O{ŋ;>5GM D!QKɚ ʂ ؙ璾[ğ}F{@YHi^۽!!S+@6F-Y ^}Zsz@N  ILF)Q,ٕALdZK*b )FgEJP{zCgƻ讛';j4&F*{7qL_yrh:߱(St؛38pγUr.~G>Qh(<7 ɂd$i7O&C/6l.#\{?V#v 5Vc 8Azv8q詂03HMmH2-1*qoZ J1>'Hm(^5tňs-ΰ6erex{pb"KB’6^fc=Ϋerm)2EAfbȘ8"hɋaGYꊪWac,A+&f~ӆ8*a;~Oߣ4q>,>7x9b>Ͽ}爠`>#۹YciNT ,m\- B0 oc( *_$[Ǖ:~V }%w˒$$D:bfLR wyw{TCʠwnw܋-1Ӆ'|a_ɿ+;פ3Jݓ3EM9sKBS2FPc*b1)51B\N=v  B+l4˒eTsO=C.X) M~{dʹ](3?o5x}A2g<~AǦo=9wP>j&oض ʀtKv4>ө H%bN{3y"gtS OEKRp |da~? Oq3vJT50,u1t]14:7pnRT䬤ilE?iQ(gT :w?ir(lѬ IDATL$|yK޳oiZj=oȓ(qJXWTKD'TBzC_êP=dK)v(tJwtǴqQ4v\Ttr/ӗ<WƹBACk\jEb k<;goWNkQ;#%$WIUW!jr1iyѤ=GnF T8Xx&SgU'3=cHO%舰o N=뛼Ge 4Vj\γjg+`$LVtSfC,u4FLoh4NK릚L RzwzH3*U}Zu؊v9sgcegX7T}I̗9&3DmFGi0r6q?bI0\]W~UGoEbOLQpc-+R9nw<4#/c|T6w; yy'XB(;TEJs}}qDdz-ځfSiױzatUE@ $qE8KaY\T0Ǫbb3Ɛ=ޏ-mkvJAT/! Q9#KǸ?8"ByON9PGCS9Oٔ<wf (P.jN]ӛEiq\R2+ Č輸xb:oz Z^c9HmO~#wxvϋN5nž_^cWCtãƨq~xT5LCAYʈ7Jh--B2jhC4[ѨLdϔvzFRj5vvf rW9tٿf'Y.ȖMCwt3HJ0 !KьpTv@\&.F,6ٹ%dSN%u3+I5HHT` ʎ+fqq+֏GFJ[GkVEwf/V;3̂zƸòTJ7yʤ+XBht+ZD I @:dRz1QChǢ3&5^qP *nSք҇n ȉ8t:`ڶԶy. l(E(U\eM5H'nSj4 &aOAeiъɒ:uՊ?zF\| >b UE(@ۓ3*;,yP/_n^?/^:EfM֣wJ%9ZK[c"JQSd4au۸}kcW `Ɵy+ppSH2!/h(͔S'm۴ gya84iN_Cy3mbj{QízպGrJoTC >۟۾۴ڔ׸H mIaFA5kPO cuff#~_%J3AePe,EZoOf^ϸq664P PT[ZD`4vyb@[\MXdX }Oz| L{:d&xŮcߡEQK]\ #CK5g. r\?6\ k|:߽ Q(NiuMUEbѵф=hBD)ňsN %D!EIiuv݆k31U1̇Y@D&7** }!>]8eq.cu-=2E433=eiO{0kͯf"9EA'(䉼 Ё Q@S%(hٷ"X5f59ۥKqL{٧2Sk'X6J %?\=|E\KLR]_G{10 Xz;jC[-t]= ueQ+$!H05ٟ祝I` n*]x3@@_ Z8Ƈ3F qߙ6jY_ez7#B;]|{<Th$ʉ+c+,ב:'(/) ]eN[I^(E /&|I!bIeO4R/51 EÁ͞E2 Zd%G. CwnIoPP]JLt/qNБQQ+ѥʻ@A%ٗ@0苣+RYZz3)䘺\NC]׮#羠%VQ*:7!Z'Orj'dֱ_?ߺE^tޤ[DR/VQ1;9f>3H3ZɹOUI6~YJ=ZafmT^k#Gs]Q]AD{`c *kA89s[RU+ D]DYFUu_pr=!* o#dTQ~`dQOPqOKp͆Vw((a3K.|ȷ>yƜHZYӐ|J8(<6$D?f?3? }m ՖGCeɵ,WXGDqMu!9Ty/#XVd5T{_VdߌbV]E)-;8{d?/39lj $Kogy6 O2We6ϳγa;#d֠2>;f!z(X |;ul6uIr@_\\j۪;sW@)HK@j`"vI $E›~Om ?Z)#}pV.kTK \lK,dZ0䪴+fIPgU'|1v4,|dKi'?i1dj$ 2Z_02^n2w_Mb-˿#R R `WNCkˀKl .Zy/qTt+2ܝ~hҚiyfˮcPPr]͝6/\*7v,kb&9o|ܞo3ze5va3qN9i4ݴ"1. {(c6?J?m@Xֈ~@h>~(M̈(|DfY.,?p&-5j/$22㔙N%b?fli0Wq01sD~Ϊ 9J:#oQ$B-5/|y'/2g4/zB7Fy/s_qyQո?aj3+ը hT=<)BohUֿ;>n+3|QBnIL<ͽTf'CB7xr߰ <_#~lTT;C(E@b%WKδ->PV;3)΅xv:ܧGEuaPCl7Y{bG* a IRg-,-$-b\&k;t F3}dg) M¾oeD zGFŬp17 x8{V)5|Ek\*#I%?yafldQ&1`O =& 9IGk_qղ[,sEM]2_۟?Tet8pLRXv;>x$L%G[\1u|P(8TmX\R^KNa{ |^\CiתxP Ȩv<:~sS/Mj9zIfҽy;؊4e}TxQ1A' _|͗uQ\CRc'a_NىjbkD`KX\64Nٽ'R$M?Dp~@>>t0 JGröSw:]MMuaU_~΋33xRW_^SWh(ZmN@$MNa4*oʂEjAU]ϟa@p:r$3;zE86KɊUEQB$E` Y@[Л$hik [L^ERك'z~4q-vT1ْ e!~*YC+LSKΖ4ct+s)2+rOh}8KLk1A%ڇ2esҢSnMRۊX &=బlj6TT Q>[[IqD ki߁N.j}pE~v7~jֳ7n=Dz+>'o5y'*eQ_U#m9'ꚫq=M^^eyp|\9\^Pv|>po 97f~z1+\]% 38CnMs[h{݄O͙ 7HHb|^sDZ ˪+<)!BXCa)- h<>R\H84&)Fcw~;9G~t]W_Ӷؑ{b-Lg8%O#yBeV{cUԃ*hLˎovSV,Qf}b繯ZŸG6-A5J57ÝE%'}MfLȓ *T]Ax\k}UVŅ4-}I@A} e[@4^uM&;Q(BkV ʒdQb,dmvݝ޼$HR$k4dX !>OA+ yzixfG0S/vi.C7kpSsT`yD gI]>YdtB]fαs;Ԋ(g@/~ܳ Pء  =Zw 1C@ivJSJ =@3 hf$#ܿ,Q KrAٷmb >7]{)U%hZh;B[]B‹AۍʓG\\XPTZ)K۪Lu~tiw (a5xdT7%SOPY1Or֣}Ŷ<Թհ=о#1G7(d́؜!B-8lf?nXfohV9$;+*5J^xA+ mx;|EVw-&M[ƷCv筒~k6S{ݝu7u>iq48|A=Wm.a$7쿦,K?n IDAT>擏dWT5!:Rn˩6;Y|RC ,ڑiFfQ%Xy SUğw,焘96Fcg<[wz\;Ғ i7WoZ;K~9( h*|:\t N=VHF"9kiCFm_^h]չ>m3@YGphth[bkf&(9Pj+ֹ೪v¦ޜJ)?󼋳73$?;)`F3%v|Jգf**JX(*:~,X~q_Քq0RߑXTIW\ACQhB lfVQ]>8??oIY/ck6HAf *H+K1; <.Qp-25*_ŊWnoXIӸs}O$ 6OY&bF-ARdE unViQjdCĠZ>mx8+\ adO~\!}YI8T %މ5DN5; 6%͔t弉8d̳ĒyP~<ʳ_D~#Ք< 93M-N⍀vfDꜼ#ؒ#Gqc:GCe>Ĩ}I;4dHQI Ks(Eb7ґŘNHGD?c4p1:Jo"*Yj:5y:ݒє&O)*3-8!J6eYةR,$614n*cuфa1VPFvB;ETSLy;{j<eRRRa E x5r4ĂknhIQ0,M]j%A(Jy9넒g5-` jln.6is#JxVt(+V;lpy A}*Sqbwڵ QN9S wV(nmTM>.vyx4p⩰WqVD$@8W`ꕞKjd^NUŏ%BҚi/UeFM/NIbv4,b*A|fwT/ײw2Txsj8'gVX3rFF% A/fݓ& 2+Ɗf %/o^?(%A_Į-h *%uaު"͛p4v|:v) lX&F%YeUoiiL;\.i9RYҮN@l^:BJkW`Q8#f%|iH& *,Pfɭ~aGXj4j_.ڥ*V/_ϭK'nkѐ-Yr~-krW۳ӛӧE>͖?z6If2f@W̕jO 8.mlyqJ6g稯0XЯVHנR3ƟU^w6AMoŤ)IBb- 5 B.+0θg4(0' *TH?Mɒ:dc~xqO'3_V@,|RА93"X,FS_{gg-V8GSf%c; xaVco'F4DYs.RF,Oz'sp3gXʹz:vA"]J1)~lōC BM$g2`|)d~20nQ;۠0%ځT)2P~/d""[?Z{cXZo=O~Zw3_Qp2yQg|Rg OYp#@_خ~ 7sq8k%'(B KDK'ǩ*O᧨ ONu(A9Y.^R8VybSSfT\/tQӑͰlZp0xqm0<)٘2!y8vP/q~yNj4TX$cxQAgF˅WW6˃_.YY\~ZAt@.̰՘H, 0 a}aъi4 4kzaoS'JH 6^xcV[l`{'.[UŭڻGҗ~u3Z75sYMu_pmVL8WQ3zm̸ʠ$YFNxvpTfNocMiO-P85a:Z-?ryx_}܎E)jY_ nn<]]SĸQ怏']^VWHgx?}\y0=-+%Uɋ!QiOZʚl5ww "Mxf5fSOyt(ei{jFK+XaQi? }OͫLxFqlqvh,Tə ` r>5xKHaC@Y^q@Qgb/M%-u+$>mSH0 =d%qT[ Jp5VaU3!T@B-Ϛն<{; 'Z~뺹O (v")ʪg* ӥS 0e4XmLQhOV-V%#+4W>M;6ǝ?E25NQ::H53L*OcM# 2KQբȖ;G @5s!f1Gczmob,g8&1E4Ǒ=m?^gK( l(H5]^aΐ̢ҋ=PULN&&XjOJÖ4Ks;oqD*I "r"dmxz*w'xa (*ʢIugyn@r‚&!h1Y)➵єZs`h7zh4CrsEn&ЄEoCuaT@וHS i3E>X} ƟH?TyXYho,?)?2.Q3  ) kP|ZA+TI˨Ea1sT2vyHwdM{˧ o?2!Lxz|'*{l)J%ΜHTQB,}bb^xd W|oRnϼH\P\|t7XXTbz8`ida2 )|FQ?_C^$-He&Oca[.0\x fK̨{Q  D!/%^[M1oþh4s9|)OܢQ,٪#Iڤn5+_`mʜyKt?aU?Q\E,)g#GXQB+"ͥK-tt#^}yEaD^`HUrcg֘Z$aE nYM(fJӣ<KJ@0R=uٌŒI~8&l݆ˤĵM}6oL\5UOq9۲>I"Dy&_Ϲw0ZvE;tLK?$ߗE~ nXw&T7u#b*+[YiMmbr=pS#zeq;z!\OM jc2џ=/VZ\zqjne&"'OM7Rd^w(p9T{bbOxּX0~P;?(i4-٘(-&5V:wJ׶pe_USqm[ GĨ6>Iq~쬺}޺ݢފzhW~kRYʼ7ݜʥ?}bF{ 矏K{7n]D{%o̫>`7<'wzOd(x=p;)r\**@x\^g^YF6eQHXq^A*ޭ20HBM莸YZE30qPLe+D M)$D!6ӤA094BSXULo zDŋ൓F 4:n܂aM+,62b&ʩIzOU><Ϟg8YpaQW$ux{Ǽ6># ǵ6(p^bF]NUH0d*CG]ϊmՒa|Ԓ%\𲗝[5.==>Qkx[Pʊ5F8-u6n4o# _b!Ԭ R+ʆzNZ>=*Edu͠Q쳈Ղ@ȃ JcwrmiBG* s9k+v9"҄zJYj*Kd5c1 W0gn>E;'UֆbQKe? s35I'TtQ> ͂uuw|#xW5Y[$-u1 ?$R}ٳ78n~Fm9-咞R d$.8L . jAw쁅1:t/~ķJ-qQ@# D|BaVd5Ӛy1[!ut ^8BwFiUN'E<~xWmq4;+0c:P?y?M@ $t;ᰋJG5ŃT)JbL T,RM$}M^hUtL+* `-7ojslfo\@|PMUA%ZyrH_: ݔNv$!?9+×WV-Zek FS\NM!0k8D^%|ϻ}j?u3U;<D: f_Vn1Y]d/!%eyvlo:l7/n-Ƽ5rIƝ1p)u F#FgVb%%JYRp/waOjI5C@a,>sØŁj QC{QKQwf:rNCY&K;p.Rsmx}7*"gX5a4z+W-} B"t姶,o'TwU,-ƊFc!N"7`zI^ M.<4bt:I3r s:q5V49в,d9Y\'&y8 7/0BXj@ڴVnH0|Qq90# b*WD8Gr2T+1Ց?Ԣ[u8sWNJvǔq):QmtT!k)_FTse^wqk1AEML"^DZrG~gV0DkL>zr¯,̭юJ}ՁJt%t񥠠33{TwC Qa,JAR KzfQn Z -DļUG-3A;uQy<(eMkp:lP^JБ"4(n5,!6IuM~(qk.>kGo$TUM w-5R3+Nek1ID EIPSc-k@5'yo(ֶ K. $"R#P5^"&d~ʬ?~Уj3O@ `;*Naw,Q[G|u#WD]oet;H `̩ zQy NYȃN@:>*5LWT?{[}xKM#_jAWɥߠ2;ѹGKpN@_Jù5ʧ~pO4T<p! UDa|sLC`&$Ԃc S岣-wZl:1,BST &:M8 J*I7Z-RM y#BΙZ=|G+J}P*XopKj3 C``}zWB!f]`JƒBr8p(C;v7=d6߽}~p-6VJH`ӆx;[=OXx sp\r8@Ov[=Q <3ɶ.TLVtSAOF&ws$ah[[(kjulż$VfޟHUUB {Z+3VQWe$@XrzmF(P?v0S󄂎 ҔiQT "d"*kg +ș2NZ8zH)W;,V1dP 14's@QUTn5\RNKy[!ITD!<ӡ Yl UPdίR1t9WTDKciðVWZC+$39H2j 4&/_WK;ۧQPs" vߟ|^?ݸPY} -:%g'l50kb%k/_b?,g28—cqv  5UpiF1 &ƴ@2M#:3p7p՘s:l;-~3j1d#a}SOKjoĒ.o2[?rhp-lev&p)(/T7 Ђ3QMsFhd2I{Q{M+)9#]`6X* T(R}Wx X >>wuo&Iؼmʭ5Ь"fSuT qlT/pAWqн=/l/^aycx鲔N FVhy^8ꚃb6 I K\Ċ`X{1kY1|sOΎS1"rAZ& eA)8u\R KPd ;|k _~݌}sLܣI}ZIb32K?Pak [`'AF^pRnSj%HxҴ 2XP{s`3bYY8qcoc-p"mO}ϑ XO] CwHqu6wet>#+y&!aw$ǺfXօFD8]%$#B X&5K@)m/Ք~ {6My.AJVB^0>gzb}yiHAp~yNi H_GH,QgMg1GL 3>:.Մp(}cM+B|FKթU3#eq&ĴB%Q!uf l @8=^c-#^hD:►J;?6ݞxbYPGaұ%n㣐YHǢJ 7?uηgya3Z'`bSC1J5zT3 A&$kydUݫv6 p7wE EEQ Tٳ9lyK'Y}RmX"n+FYFY5Xz+ @5ng :HM'xW#~i#Y}fscqTs֝ʍR El͟!(פ~3mwKv]0/z#a(z"rAĖ T_1|,6 ?% XW;VCE>n-p7dbz_$]< 7ɳ;Go;? blϴ;l;gm/$8$oXcezTO~l :S_?s}oz5szKpVш_ VrxL1~3 \$zje3_F jG6%mDL hGaW+_ڱ?tq=3\>ϯo Ƽ!cUӲ}/^*^nvPJI8ngԾ4 XF7LJm< JNm#/cyc3&l)Lg,ʧζbAfbrqW JZD[|e_/=[.߼ {'dʭ B^q_xU*R|Xx |/JY'R",o1ړ#xbuq+`fTF~҄ϖRp7HR6:xL!hU>I"H#wt6 ^J sGp">jGMTL_bZ~O׭ucך@Ki)|"W ZU .SAK9D3) rp++=J}!d>,1ŢV=[ZETk ;($r"HR~u=;so ;[=T6<ӝJY]eSLhwЊ)/upGxwĭ\[CBY|ЧIBj7bb%ϠJjh&>qKfC^]|nKsPj-*nWK㔅;A$U5WSSxvֆT_ڬe.:eR kiHU}328!ժFŒ=?O9rl6itsNkmΈ!j?75#AǑ9⤃yb~MBhJ![DbgX[Bx'[䎝0NL=3oJpw|x;?zmX4,y]bK2TNq{ m/Vh~_<!b< f&W$kl bFbjY{$j =||e_XL5y+7Z}WM^3fz2|0{bb3}\ޕ~3 W&y 9xW޵JWBhktL3p DBD+F9Q:*4. {*0#la,/DEǹV|e1M _v < A7OU.` 3Omѹ0Rj6#/P ߉\mg/Nk_ ŏn#fFJYM~9DD8Ğʈv΂hRzY+s;#꒪hE \,;)|'X3xj=Ir-hJ%(G p}lB!uqmvn;vsVC>f\#vKyxHy2I YͻQ|0۽+ךkΘxA:g _dgU|m{?d ۳= AcU"l9Φecu".' Tr27_^}L vKk\`4wy~~ӂ>%\9)nG{Ф^,VJ\J|=־icV ;KkΉQC.rJBkqQubnYם|%4MkiK]FSH" l*FJ%c oO3f$ s6N}QLf:Z-lMeHcVV\a{GInqZA+& Ub4xA=_y_B~|m=U:/4 5TSK̴){6Wm i՝Yo)̗I{z0IάbY/s鏫XM;aE,`ClƫG|Y(rUܢt'^GskA  Ô-rK_Ƕx:5ުc͡MI) +6,@OyH!oq 1۰YLE)MI$ou=!gSTK]U^CRD+O*%[JzHW,H&V%h(;[wݿ/Wc͏OO9.vå<қ,GuBxq6G+%䑰i%H%`.\y|WQxIp;CڞVӎn|Iy6#dcLͦ"4,JD^W7ۯpc<_,# [5QPKaWZ+: Fޤ TQ ;{׽ br1_|k9<|.?Qy_wcz[+;K9{ƣw:ӧ%=+;4攫 m:!pJOтSQZ H* 8ʹ ` "ٴI4oVZq pTkvecƫkHAMUSGK B'P#Qs#: yڸX8 GG$)nީ~ GvɅPR[=vYNٌ맬uMg9|ϻq׫ ݭ;NpU)慰 bAtT: BJԅ3UìA 9 V4O@ I;a5QܽA8:#Ӕ=]@'F Xa NA"l:vqT'FC2 Ah4TqA$TgR9{֣ RȊaS#.DH"e|;#ݩf!bAY"IPV㤞* Ep:TeQʰQ8K{s>N]-On}e\͙Aq+*lQJ=O4azPT\K~/}Dǡ;Θ(kdxqj> =D1aL'{&qMlU)I3n9g4Y+@ ]j0Uctb t~Bjl[وMg2"Vk>O\e+ ]2ȧxKOl`HAW$[W߱oe0KlAw~{O#78$sAVQTX8j}ђiBhGݐmW*`'{O'0;| ;coÚrCrve>f*ы47Жќ4K +WG+^?`AZ@تnRz{5v7!8<LI]׉_%{w?~wZ.JW>e\gOwsd% ŢVK^~3Z?C7¨"o/V\T{A Oyg<'THTHI]Q/jV".&l@bA %*@ lŤf'i֚<-X`Po6WCevD-OtsCe2MgK_7AoԿ7vRX5tw?pȎ:YqݫVɩOC~ IDATBZ:bM9}:mT֤aJ<5Vc AB'A f*b΀NeD5N_3keP$JST1d(Y7t17UDuu)J!VL2mUt64&S"P8-[4Dm5 $EwR{i!4Bw!ׇ}FT'aL_$;/@ tk)!4(+aۭŊ8PauqKwCtmΦN9OQ4U&b&Ж X D+ f4zCٸKF`.RsT9`AX48uX(j RE=cd-c_+9Rlܝz-a&=JxT2)rhi"K Tm ۰4k7ooW׶Yu^Y'xrt!& 8N>PX`s>wsލ燂yc0'"KSCA7D30ds*^8Z`:tltbvB?6 X5.ed\G^RT!b+NI%cT^HA_om00U(c K0B*'s|SsJluEiIai !]lA9,dcߢâ wO2Ty-i[vi Yp䎻vsoJ# P]1r\ 1ONyrDl13g78'P)q@, t wͫooҏ?c1{,,2Ft`Sj${7HmnR68e6&$J1!mf-(s9]HGuYw, G;'plU_ÍrN9?]}Ξd6(?~19*mM-lCd^'K>>>s}AIv{&( &8< 9)V !S4_zSW؂g j=" :V%c~G+vm g9q2f6|,Y0y\P:JX @arjeVɺA.@uQH8:7,TF|k؄.=곶.N" $mo\Cgg +h$ܬF0[Ԇ'cz}z1j̷>9\UW;Y֔]#hnj ŔeC"7 ]?`ϳXO !f5w<ѡ:4.N"*kHG[H) ԒQFڠnL"x3S")f]}pcomLN> 65gvN sZSM IDF,ka{.I\/qs m' .{*li,XqYX Id#lHSRDHDr23ϕITOJahX2H)'k)* Ϯ]zru@2pz;=>T@З %r}{\&=Ҁm+AT \ 8H@(W!aJڣ2qt9٩|xV \s&knJ mZ %X-BVԚFCuOxw%ƵG(Z5k3 iwU(!|d|iZfqܸ׈B͢-!n}NAt$X+?o Bg<kṆORQ[fm%eAs1z1SwN3OQ쾨dd+3sWf;?/߂+L ByL L|ݻF_|W_~\ٚvӿQ[̭7Ex͐ H+~q.>}F6tx,I 2ָ& "0]^G"A(0(%ia:>N) :_~ٱ&)gVf4^lb); L2c}[8$ r>;!{!U Hzb{fmwE}8hF/% 0LCjn;YwzubDŽ!ƐeԧG^seæ ^ښɬJ}z(>)7ZUL48{бS(.R'_f{R1*y&KYK„6Nk䚉bbd>K~x_d39;m>S,t'߹ڀ$f>QJ.²>/ _h\!.}(^"/jrXpiB̤?MY+'7WNn4{k({4yۭ׊: G,D$ɍ2yHZR.nW>&YlB,.a;2XC[tŧ\18 qذεw5JGQb,V7.yJDjIaIND$1QmyqR|G5!!s|o&G<:[-Y"Ёx4>ʢW+YîWm.z|\`UZ$lږ-ޗ89aN!k}Ÿ[Fq=l]svك|h#R9Y= ƛ96d#'r'D{+ZW z M/.Y.:1\>+*-!R]¾. e*Px1z}eNfVx zukxǪkIbD!S e6H?ip<"9F"ͽƎ "ٌG{%ZPbb{Y;QŌʙS$CuzVp\GA)4)iZhfm+r\d "7n&:ZTdGk.z=jd4Iǽ7%(+< c'`HPD. lD@4E gQpㄑ;83I׮t8!OMo 'lYqؘ\HI`/*qmG%OTzG,_:]|rN]"򉲄InQJq>GR(R0 +-Y6ė#(ቁ\SOYc 0[|x.-G-EdNbG!Ob@wA(Jc= !9Cꋵ<|ysS*3=9^.۔@I =E"ƫ~QHHC27/_|? >|0rL0ݪATv121 ֻ$[E@=[& zLO$tZ|d/ IDATkz/ ܘuCkT C^*mwfТ4t+wx|ǟc{1rbg=):U~ʌZ{ԓK[y޽|sĪAҨ"]l^ruWk|qTJg㜨KAc'o陾 *#nZxl_֍'OV. _]s0CuvLGA3@퀠ZGl+Isޗ2j}nAv&6P]ICxrh,N Ԏhb@*X$ :[e,!sp%UTA鈣<j=E[5yAet!AOq63:ώETm` : ly&􅩊\uf޲v^GKD ` f wZlkʜƋTEFÔ3Jfk;`Э\Yu2.(j4nCƙ$Y*it{]ns}*8$I./^Ee" V.[|!VF!kP /WŪ3g/b>~7"Ee( ݘfn/%t'=c ]j3_h_NuaG$)}ٵ7f-ng_`jAq -B*} ؀)EIcvh٢4mn(j%+ %`|L(G5p;ú$l#˩*"Ecӆؖ!X7;E7?ӇQh)A%2:rA]3?F^E3HO j+4E%'MiE9}'|@tZ4ֵB6X8W $;K*v URCGFBQףv$ >ٜnT@9 1b 8WK%6jZ DZ8m,UxƹtP<)Z\u+#|AX}ܬWض eB,JZ'mZ L% R0Ѧ[yIǎC+fUC0畒%ZU֮[-c1I5vlo.ŽddS?v*LB֥vhq' gv$H{ySĈaWnk$N_3GèL(킁1udوY9Nx<&Xi]Hij A"kzUI7]v!%YC?f<(`־?S͚ZoR[T.x*r%#TF,95&]]BuPf6gk~ ^pV:ul(%T&iW͑zr!sRe. >bq~3?g1Kp8Mf׿rÛ]ea'"Ό@v2鱶\d 5B<,`4%$W30o;9ÙvL("tweWJ,^vuu+Uk.u×0LV'۔JA.|Vd/$H(Q["!&8Z|ݖHC[U/ohJ$EC(/"6̲59R:*b&₏@Z_~ͽ:}<ٌYF6a~Й&Ġhט̅e-jyM)uZAFЋ6*fXKNR"B0MQ^B@g]Lñ/ qLTS(&Q)uB|K5+*KVKR[Z4n-_RXu7??Uv['?|fg l"bZaS 2v%`P̼k1\am$$M5L_i)WB&(8ݞ7|x,nK+E ӯ}(O*,4Ԛ@QC(em2] lS%cʷZcY wq(OV[(`-U(:<Luqc}>8fgG=,TR?6)ջ VʜNXb~RhOiL}wu| ׷9|J1O%^QJ6Xx8phvЍYE(HFHޛߺCxg=sx&.Zo7[씪]ʯ_C/\R9EMq|(=SeQ ƻ3OE<2 p26s~3B $ ŶF3+Nyr$XwpYF7ptN:3 ϭQZRG6͙jSY_ 2*Mz#s& ;C'̗nuwcJKUPThwq+/RVONbRr>2EG\ uH -ˣ.baY7E~2Z_ۧ&e!3a]׍l=g:XVe^G/ݵT!^tU[ c\DkS{ix/T |X *fY!݄mrxz;Y.88{s faڑP!(sXK1$ # p۷/}=ܝ]~JΏ8CF9A`%oj~+ 8gLS}0#8zls]=(b[lJbp+nC'`M᳴>ShXuWQWM{<cɶ|EӮ--i Z`3j J4`2HksfӚ`zD {8P[ۤ_~h1N!s&:AJ돵M]R X,^K .b˱.u[ǟDphôl>'pLWD ՊyYA QnVc7V*[!ӸdckAA,{Vjk]Cq[ɀ1cWSқ oca4\2WLL2:\jw}Rۀ@%HG8.D'HjCTr2DX2pAL7V(A$qa KKPҁ]}i +bN:8ss#{Q>.ikoѷvqV}m~?4f= 8*c.l/7 :~{_fz h"ZPrl*]SRTR|ɗKRJ%W%RlK-Y(bI@``{z뻝|}Uܚ=}yXLZXG*7.H =*[CfL~ؐ-R".!49/S3>kt퀮qJR %J_h.!/&Vvm|Ԧ[B&Op}\c, Cgmx+\QJHݐXml# *+zhץDZ8J41i5\\up@tbmlTm`FB[>KY?H@%)灖|yCdvIBCpweWPs(ٱYVb@)9*x؈k^vrdc=H@JzF 2KSϫ;ݏFŮ-G:((u RE2 NkK6o{܁L 3?g0UEzu9N0kd|wuIn?xlb_uRV5i2H_ʈ:3\o|"@7C)ILnvTr.[*+x}naڈثf3u&)ц\# iro-79YB3V–&rݏUoCâ-̚m Z98lN;?e-*8׹t+794c'r^'nm͎{lR` yF^x%O ;HzR<<4;l]7z-ZiEf,t,Q=^zo VJ/iA:}E|,#Vk잉:-DJF.ws!vJs'@ VF] Y ȱUFa9m<ˉluy3lu.DHƚ}mIٌMC]JsGxX ᣋ_ tT iNHǐcKVKa~ אa4x wn7/WmAdh ԀZggVs-)f}t9\qA0nشpdzb3$ AWW+)T2` H1߼cV4qB'R0QdpoO\ʖf%"ddn.rmh\>n:KSCjٴޓEU39y0).Krܯ *¤yL*n]nlޒ,G<~ ok8ul֙<c xݷkKntt21\CY ї|W[Y*-dm1|2IQ 8E=2lxPq(W2T [ 8ԾLT/vPj06F:ۋɘQp2uǛ,jNNab^[LOJXiX6`, |}-mwL } &9PGE|-^}Wl _b/)rVQ5^u\џ9sH<.\GWe^19Z%DfpQ}\K8d Y#zobPKx.%->8P}F x ƠrmuKWtcʉ  @!1f:Ps+ |=nj=zFi6Z)-AڗQ ✬3Vr6z=FYT d0uFglt_2.8nu }Fu,/˗-7_t4y>H ӌ1)5YQ>Dy-Fp}KIJ'NIӹ~72A*A:| .|_ IDATO<*)q٨)J9RjՇI˫۝Abj,b=جx!z۹exi21>8 =Ut"p%پSbb<#έU%(ږ5&gnƦT߻WecZc_Ƃ^y"R"5@|AR2'#_2kܹfWZ)w5:'3;Pk'R}kBuƠ"Tcg{afǸƅk\Í;tnW̪GE##ȜՒ sfuˣ6R8XQs$R:c| _x3m'z&5GTO$O5.qxVټ~2X v!顳AfL-v:ʲQV3Q<ݛ;5HYznFcum\0ŧGr,H8l1)(xbb\j/̥UW]Q#*\;sȌurQ kލ!.zpyUxUDZ|b 0VƵOzjnEd̔\''ܡIU_2yyR!L *4ƉR-mLDmMi:r6k(Wp3:tz4a)-R6yaGe$)XM S ߟxl\nǸfZ:) Lx6^Y㕏p;Gt%*Pـ5LJEe }ҭڎ- xaߚϣ8r`өk9q# d"3Z-%mI&H&37!Y"^QCSΞuVJP)էC{#s{@1:&wX+fg4Oʭ|L}#$y0D8 }΄l1p]I֨CxQdCtЛ;MQn[^#%=.{KѶޞDh1"s2J.^eg<%1R8?bk_r]#z-Gip]{ &휷dE|Ƚgg^>nη.(x ´1-EZB3k±ᴏݹ[?kOAJl\|_ay,oYx8gu3Yb JD< ivVi̧V}카{b{)@ך\LwQP>:f'=nY~3hz )I'[xtV|OB7pݿڡUљQ(h1r:8l5f7K=oΓ2M=i܈к_r 7_rzF'S[sw|k,.g_7G͇7X;EgT{O|bYXv~J&9>MȚ]Vټ:owc3<:e;S5uA1V㈁NYp@J *U|gص&X9Sz.{I'|x['z[^wJK&lP#;?͗Zra}+lJד%pbg4e!kԧ壿?um?}-C3g3 K^,a)t+fE0OhV=XfW';1_>CwȄHS.4oMOkܰę>=bttWrT=be݆vرu@S;[I1:1->µ%zElpxFcCOu+:V. ko`HZ%d&NM; 9pJ,BSK{oT @T}ӧ>]̸G:eη 5hi0>CX%`=*C9V'r-wy kWof}K &K!IHfO~Cb2DfY$2~=ׂTth)V~A>ծv').~ \I2 @>yD3OP&iPyS)fy\q&2G;>qDdvK&|Y\ra3~ఙSI0dj<O/D)&i9H;!71qJ _ dH9Lo^s~&sL;n@7NԨAZd!N< eYR|S* BBV荊ʽ=>sNQtGMŨ%ܻY9۲ko]bFqjƸ4[ep aC瞏<6w.\j(AOv@O5\"w?tOh"Qz%h1߯{dv*wҺ^\I:趢eNk .+vX'!Vb=>>zWw*Wn,&;~ʱ ]RFE{_T¶,Ί:tpj6[)͑2 AYpN"Ǎ-fDa%?Qs؁REqK)i)H%%1u'SuqkZxh|Aw6avY+QK>8?wVw̑xoPtYXKq1f:詭JjndxSYi!9頮W+[9(MV<=CKX @yCe܀zvdOqr?Ǐz[!JH6$&Rtj~H,(ӕ uYh;u-*qO gO,*cGSLr+H ʊ&9}1nN/7I<|}3,/Js} _e'5=Yc&SO%qtMZv1NY3j=*d3aߵάJ=OEy[J&իc5P:A`XjͦXUB\(] fu,LJMn;U!,.[H4G`pK3h3fvt=@‰K&ӝL}41^/V-h9`X>L+;֕ f(X> @W#$1JqNѷea/d:sj|Gkef3M)gƼ_;?{{|27ltX1;Mk>G=Trq5Vbf)晟 yͽZIǃ+mkb6J3EV(,z\g+I/|+ל?)hZF++ؚ?3:56Nnu3h-WuˡG;28P/3fN"iCడֳg9͗*,/t_;sgq|xҸB 9Z`~7Qu.a=þqsߩviLڔyGf V6Y4/{s]wޕw$&3}`zE>1YZx0Q`F6K.2Gy洔o}|:yaY - f\JSe M/wyCt ZRw!5(Efd9D:(R36\LtH b $68t!VD#)J#:/sكv1_u&aI˦,"Ni;\ >QE+XYxҚX1݅AxG:kLNP#GqqG͉2?>ٻGk鍫~{{ ]*, {,G}jcHН!pGPdmHNJKPiFe,=~~Ǘc뇻Q*(l)7ynOtT1b 1S2:hߒ؋{Sn2r|>=xw;"R-:IϘzڝ;)CUp?JVOEd;ޭQ=M16&JH7VO#N[Xjk=[*;sA 4Six`Ҁe1+_Z;ȱfP~w,zXJE?%=Q`y"KE܈歖 =j}8l?$SY{e9N$_seTHGbeFٙe9) 5X XϊXԀ0 IġW0#?ɉ'`7@v*'2NO?~$7Wu~`k:=E2Qf@-;Q 6}~V΍]jw6{;[AVu׽x9x%٢]-|ww''g%륇nB]^2[]fJ2Y]U] 屢 *.R}ƱX)gs1LcHј۫ʇ}B,^"\€Q& GC Tr*S*W.4WdopwoD͉ƒ~@wZ &\2f6rQS Ijנ+otUy_W yQO/o6`P#Bn9j9sznEPP"=csɗ勧XG?rd ,XYv&`{T د*ŝX=WT-Yzts񊰘a yfCY~YxcOd+yU/"e4p\lsE9Ǚ8</ }Yc}p_R5 X;혒Q9SZp_:i}CZknk;*i)3 (EA Ku6/ͩKM77>SɄ`B7]<r-<0] o3ylKT@#c"X[9=rWC:Mgimw?ⱃtK-6WK*c|WK]AL^]s!evJmDXUn eb l>~ \Ǔn1fz⍷ٱ†wqÎ~qn):P8¹f$FgW`,agT̡6948+ۿ@Yj*eDhGAha)r4¼IZ=LHNJuG7NOO=[0f) >uVőgw۶씝B,?.S8~Vfv^ wfT@<|+n6.> 2` |h8[2~>1;SW<͛^\MlIbxVw!F\1ӿz y89tݲqb%S&WY%?նF3!B$ҽ|0¼c9lݯ̬6A0.|*/ |qCԫ,p0dٹMo`S9$aԎ??ڛLbMk&Я㞨x o&/cUJr9{]nr#\FnTO<<{\TƟ\ŀCYoQܾ1ZVtŲTgKcسٟdӣr%ﴭ(9%k_=9f7ōW^gmu)';6XVt1c,s"!E̽h^~l{"Mce~TV +Y/Lwfϱ$:#܊yuccuϋ?DWhD:uE>1M銚,~3J . ˜Bc^npA P ]>kNq -2kM2[Q ]7893slioj2juq!ƻ9ےǺO38Ȳynusa£KX/Y!ܱ!;=2IPb SOO?6j2?|o4l *Q$j-m,$q |U \'Rd`jfE$]ױ:=h<1 -bM ec;E+Hub.OYEZKzi5%6}-E5 .,O郝! hEV//~6?4g].\sȕ ?mÚ`-c;kgfqؙeR|=TS֋~t^G"+,gC4{vA?j+ffXK: IDATosvf܎dnxo/vo\5y}[+Ź Yqu18BUdՕhRO䏽jދ)͎6eļf1%G(UQ^"޸iVDvtFszÝ;fHZZ$C2`o6F{{ffNYQWO 8e>xr#׼-|xަZ. Ҕ$E INCmhe:ϲ=]99O;x!GGfZ7~W)^ⱁp2~PĄ+'_ه(w|-ґ 4=:ﲺoWoЂp-T-(WՊx4W-^:,>#U y!/,ɖzڲz=dċfzO֦b9:a݇m=8G}E|_7qbHRapڇqF>h|(~}AGMVԫcEVٗ~ 2@›rMMTflN>s9ty/ &BHS7˨4|PBw rj{1@х/S|NjSU8ZcK3C(BMd\___`iC74rrZ8D!bf|wVX9k>jllj2ɝ&KA>Klհ|LȐR-Ήba;gFi#-A/ |$\ʌ>{sU N]T]^Z5mk^gF`KrǶ;+)hgl^Sc2A:G"H d9&J(cgGգ)>:CDmu9A !.sG?,;oo?Y>uYb]?xYv{iv:Y< sOe^+ah(A>0K_Zd4{lAd q=n@eC/fڗ[H76r CK?Q$N BG ;|ηAVgv-A?ufX}2n x4oњK/N-dHr t.p]zJ3u}Oʘר{]yYu_b&Kw;ch+6& JE߷{CV0GT3'\:lYIc4{VWYT؂.zXT{3q֮:qK5nU9Rs./דT*g"[)a4Ag&KDedB5hp lGbi}\gF@fȚTͨo1mc0u_}<Kܣ%:هRO<^P?}ల+׸QUĹҊ +-*G^ y᰹Qaqz>~a^=oT8uъH퐪uE9'(!S.e|iDb^PЃa2e" l$Gʎ҇gX\x|N|o? Ym$.[ Cf#(\rhiyGd vr(>)9xLovr]\~|-7]McR[YQĮ( J8Hs_ ?a>K:ŤtoΥe=r_N7~hapf*'3;=ϝ-Mο#٬$䚼o]@tnQ\vLOw?qOf6P2 !R2bPLu6Wq:jvB{87["]n1lT߹Mi/̳)VﶥW53ͧMHo8?3;Is>0ԻXX"U˳ mPָW0GBlkc=Q).;Hwd`<7f:]132W qKLGѣcuͦXˬ4r`"6RU04H@,t8~!p'_1p#GlmL8{،1]e"#HyaD͜UvJyKdeӉ1[q J&1ҌHA$Q"\;Lu0fp69*5 kl'pq t&OY \E#r]5 9_kfƿ~\;\<7|ɨ-VBg;X$ q>ЧJ(je&%'=]tsZz7WĔ8KU˓\뷸_q( *a#p2lŴCyÙ/+0i3KIbJI!I2jmܯ <_ NxBY9/1b8k2"[ru\gq=(|SYd(2idzQ28?>^!_aWw?[ ϴ%1Q*2b p׳m3R.؍^9z?yf69cU8Ғ^H(-H p 7HJGKj1_I\% -Mf@ >^.ІTJ CΌ1/{odu]39UY# (P A< hQv+$YR!/#mvݔ%eIfM3b y~Mw8?޻/* )BekVWe2DHCpGr?"8D, l<5#6Pc%)LXBgpsM6X_'*14R@L1pF54f=:c2 <1UM,d#ץ~,src!^ w/.9ugkaSAjAiHN3/K Lj45cx~H }UGwxP<*lV 1 4؛/OMO} )J-` F9X:5)_|G\]5 >~BɈI@А- fPh1[4eSShj6G7.`Y* PAip=TCB('Fշk:qbigF+gqV&)Pć>[(//FW`3B()C+u.{]!i K*rn#3Z 'dcPan[g/pEN4^=2ŧY0 D|GnFe -H`Iu凨A0Qz s45Fs>U[uj!BٙŶ"kYpq0Īr7E TP0q6AAU긁~3ikg0t@0>k)6=kDxE]NZ&8\PMF' d|2 5v~al;RHacXVI"z㥫8;Er)ܤ ;~J˰= yRg;3ӻhܒl}Yr3N<7a~zXP3L<8J eϹ7tՉw@13Q4$^~]_ kUUW/fPQj/0mD;j$c.rJOYOz~Hq9m%iaieCeG7OOcf5M@D "( !pN0B$۫ף 0`}Yp-@JJP0mI'A0̀啗 GK>|&D#h(Tĥ}z`@BQ **uu=τbiC,x;a~q8D9Dc0V< bsh!V r.u1a95QՐRC\D.ᘏd+f\9%ZAY*q()6&GHIk`: RKD44Ru%wp[! PplSX0,Bg\t|RFk u IbontJڣ,`j5[IPMOa0>1sqС5ބnFWJRH %v2ǽΎrip"prs5fVjXŷ-Aapfce۪=>0~O=_R…VJr7¨_3+ ;_y?>ҼBDDHߩU7(&!);X[w('%5 `4Іj1Мhmef:SN=_yćiEFf0xoH|Zm58u(NNMOL (Ȕe#;޼e4+f <ڈLazc=:9nݵh'(ecSSI}xݷP׳uD}K+MI޴/w&5o[ ܼ$XŤaǠG>4P]Y6^c7GGCO4޺D"b>9GA13 GYX(_WcD XjV% "-7"I 6,j #|0J&?(oFGpbC.kޙ Y0iA%vn9jmi"aFK^iG&4AtcQ .c '\sL%}FܩakMLqbl(9 G!hbv @a4F9 #u0އ9p}&lmKIQXc㄀κIdbhJP \ +>0X2 VhDxYj"R uʤ fqAa0bЈH4bQV%N4;>)IN!?z[2EEng$-o8NF~r~U=;źnl? tkަp6OgdnِkOzAfA8I)|y 5l,cXV2q.;7P"8+Y?GGx"j3@HR,a?T#THrǖ-OK*L w5ټ? N~Q2zs<^ lv*eXBߐr/PrS;Q1Oz_KsjBMbHs^BkkܡmӲLNB q K?=cXYė#Wnx5>!y>o.ԁjve۝ɘm%K˺l)[_XK,83&E@U$O`=xq^<5cU|< ;Q9(ߤ` !&2䲢s9ӏ{*2ʒ3ýt\C0*n'^z8NZr%`F1{Tң~CUpEQ74H4-/^~LUs 33d,g4X*p @( ~몌 :T阬/0EѦ_c~A]0^B&'X^a}=:j@aFe a]Nw==W4$Ͼl(l$G[X *YL=$)z.AgSZ+ 9XDDpӻr @!snUcdV1k IDATm)MjmRHnltkSYf6ړLPk6X?ā4A(ScUNLxs!ZfF=zdtMlVPBGbsBPAXv4'[0FTH+; byPi! u7okmuҌь*D1 ˏޥy򟶋YRM*u;Hm3^#|+:@5X_2<ɴ$B4cqr8Yo8ѿ$;)k^Ckg&A@KTTCRe{X6vHxh%YnW26N K6WO!.ODvQ~'+x2tUtcA&ЈFT{nݢ9)M֦i+c+)I͓Dv}0mM W %20 7nFJIM!#'OG 2WsKMjb`)F F`L,01jISB7BfzWt`=z15J[Zn9wwUw{$1`ۑ@ qH.ru~J6a ѴdZrN6;&R[z(>sBw9phƨ1Qq|sAB`+j!eުL}!ÙfO=޸^Uu\{S<#j^Qj'nn]wHm&-9C_lxh:~:l9!Kq@a#t:yA}([%[wȸcdPe0jW~t4uY!+UO7rY0 0֖MϬuiP7$TH 29inM,mQmHYwȌ  TY_ Ґ*FtĖ5qwqPH%,!\[G7iE=E"Z9dF?ge| o~F@ɶœ&3YZB9_߯ W)ya _| $EcegYUEAA 2 1´J,-RVf> aX2Sc"{PBkM\^UQl"^fK@ݠ#q{g!ak4ZqkIڃ*I˰UYh;O'0Ea;K6ضL  (drp߱HLso+2]- [r[&&-MmjЦ[Hw,Fҝ[3 -}[u#˶tq;̼5mqyoO|ߊ6֬QY@Eu7M@ِ~He3SȀW|JHVkew]D,\FbVRw1r='B-}؇qL @\/87 duy-$*Ԫӊ Q$IBuqe<]8?2%?ŷė"{O&0XvMul,YùvCN?ԁ&sQzD=>V3sLĨgdGYD&s C0 0"1\&!.r xl-a܀8,s23|A~33yx8 sH 5gH+:jvff6tCy4M6EG Λx!"! q@p>kxNizYs,=t08vB7"̔qmPk Ns%sDt'1_*Y_ 5-L3RHM"LG6"ȖIѠ@  T-2a!9]Ü$ut\2_ J#R[Ko?~} V@(4AD qCff-$ikM2.|I9Ikr^BJ{BJO8CPP@h* )(֮qICӮIXݻMA#Ԑ).-fn=Jf d»Lg۸̌[NǣdRN>t"L+qH/#cOy@5j: .ͦXk5Փ3kGQ_+n؊ۭ7fCzw.=F.ü\ K:pP6<>SO ?@^v ןj>d\˗iM`jN0ho j6S8=S_LFIC&Xu+IѴ-pw?vzޡ 馯nV #M[%Ⱥ[1YDtث0N"٢\#{83_^U wΠI! oS?U]v 6`. 00*0!޷?wY7Qj+9뷳Ub SAFѩS@I,sޫV6?:JY2Z JNdd|LARU W<(fVc /MDY1J% cM``<[8;M502Qe 6m]{(BmD[Ϟ1uf˷*)Iv`Sa{ʂ}tlE+ep̑#:+0M"  ]ELhSD%ts@ {^s'bwi/Py~ __}G ,ѳS#^8ï<`#X9|YkT6#41A#1L[HA2`!{L!y` }0E0= urc\naj=KHBD VD#U c֮#<8GY|$O7?s.kQl.r1@PV 1E??wbT;q fnKc-t+|efQ,r;CLNHdwIs}Ƥ K C<36 Tvmg6n`umݥØ;^n2/vd<>yh: C WbKU>\5sR>Babe6k M Az$q_P0er}^4HlBS&@?KcȗW"hb_v 04X KrZ !0TD&R# 0$0VpuU sk7z{d.JvԷR=Zy6R|fS{Ύd{ wP *;8/ٯ9_sVTF&fwAD737姁zء[mnW`O~]z}m6e1}>ϟqc,q9'!1nvi}j#=5twG@)>t?bj؅0T?J!s^ f @ (%rpÉ#h8r5z W6 g~;^=KfxXw4ug$Dq}j׫y+X d,xGbf)Jb;gonfqӷ2~e|5U:s Kl㞖٥J$-oU \b٫B m 2Cqv<:vTNO#C1;OfM8*FT"<4 !"n`8fn+3Y$N[ WPCF}Z.H.ؗ'0wfqf%uxcLP̓H~Y kD q J)OqƨQi"s58E,# ( 1ef~&&Qqsbt[: AN9]fZP z23bqC>-|V bp<8.H$b(,]fCb3h[|Xh>un]!uC#;6c|pO! l},kڴgZ!cȡxr@=zR ;bq{-mͳ$޶Իú%{MZShRyDDҩooqմ;RYf!6$E}"3 @{pLMƛus)x81)8G8w/?^2@ ;SQ 4~y7yZ{ DwN;.VXArvMlk`Z.;̎u*80(r'x_~5?y _{G05  h%=<>٫48LfIuUĉ+01F]N[s€bTi `IxOS:լ\chTNk/?]+@*208%g4rGp'#bkCeDN,eDHݛ!QNȈ7#gcp <ÿ{C :"tkt-h0WV8{+0X=4 #c+x5\ċjM0B܄2mp']X+MH! |uxfRo'H2NH/8'p#x !#m79  dzʼn7 2ԝlǴLݮswwtDwPRU#%L=A_%7oz(me CN7Hb_ư`roLEIy)"c4 tu/<Vi Q@P!20*[@2p898 <WD5:TyõU4i3Gḙb FXV6. (XBǐq;ցCFigS+'Cd@J&7nM:Y_k2yz0FېȷKoʼzlۨf%ǯ<"/u\:+%먛Z2<եMv;XV8Ed@ \ЉoWTK˒%N8v L:$)89Zia*߬{@0u4:\ŕ+&G"052ꄲoE%r"5Z&avS;O$w'?nӾ-z봌#AemBp}8@lS}~|yvna+!0uOf7wgss{3BpNq ﻯ>6c`W. N(%Jix9 yxt¼1,8Cp ޘLe3tP( L>ȕqK3± <u6"> [w IDAT!` Lh5(eZiQBPʀPP@D:>aʠH FzfDAr辺CD@u!s}h2BAIȄ:^0]wmCˈCxD@88&7&Y_d ֚r inn&>LeJQ?ǰ׷ExM;c9YѱG+xii9XY 46nS1"Xu> <>Y ˾"6C+"ȹ+KZp`Ζ}$U,̱򜣪Ah 5*4]'9.hp Jfc"b6[~фiҴR 3dUZݲI;&I$zf0}!mdXS=8A4+eWP (ױwL<%Vmwg7dp# uG1MpY&U"Chֲo ]Pֲ s,? jz H* 7s!9p ztJ8 ׼rz\ר0KUpu G&rj\_ VE-ŎFА) čE-Y£M2 u=QݑXvOX#^ȦUKjuA.8Q%tTM!jv(LlS?MgfR-NLkϕRp*BhL(%Yl0]!5 4C%cpphlv*^M (,|BPs|T =^;+th0:pSv,Ґ2cGV}>R~ua &l~BBlly.=K&m$3t[o6}#dyG}ypsW( v11*MlT 7 BIsG\k6n4 P ĺSn{ 2+H@AenVK*P!T:\wuGl8ۆ̺SjB+!kzxd-QC}XMz_xS\ 4qTAQ}'s{0e0>XaBMnFTu Ƭ5DhuLw6n\ 2ka0.,֙||hQD+bDSȺ:n.AAlTׁmo9j0ϑٮHa`[KoFh\g7 p§pS2N,1E]Zƨ/gWB\a5jg-fNX~ ̊i(C X8/5Xϼ)j heSe~X2џCGy [^1˫5+DVIm]d/]6Kzn9%p 3-<>/щh TEy5.3 ak>@o78V)toOVf[o~@pdCɃs~Ul]X(h0H^҃}LXN$۔ϻgIf;l9A ٶJێ팀9(^Écz05q]ECQUTy5j;zKk]mp+7uCk8l>1cq\!gx !*έbe [X$K+LW)bD#@iJmKmkۺv./[NA@tT^mamz-w?]fn|ݏ8oc"AMEKEk T+}Gp}%̮g5\ɔW2"RA5` mKmeeOIJ:,s@S[1?"8z.Ϝq%`K! cvw,6Ƴp\CkXu Aq No&-{7B":^{bɇa[ d<x@xjh$G,K 6sdXU]#)V$%6 Jw6 (s7932cm|xܟGFdv5Ump$,=-޻s n0GEnmn].e3T`o >{$d(,__^fH_֚n5/ ;$i%PJT)bT:%8|Mg|N(iXO.VLx/y7HJ IŽL{j|d;5G%U4m%8W}Vv m`:ADJ Ez2 R6lJrJP.]~{l '?T'ύ :-\ie ՂZ8Տ@9ZhY*HS6_TO=Ԝbڴ._nX>E`q5I*6({s=(o^eny|oS<8OqxfI |I(DCSp\-'L 0-ZU#@tJ,HsɎ3w#S&SFҳ瑟'cK) Fk#0uLG `׽-f09 U¨Xx*G [.ߣ6gI64 W'mHHW%dmӅzYJb@uqJ7$ŠpEiSllщ 3A%w4 iBgt+$iQ.潢/ջV=f_5 ,wr^Zf jz7Ň%\jEj}V(^NWTNe6yyM^?7= sOQK5_qrȵot#a 2ݫĸL& BIT}+^ަڶױ4B7bݨdžPØw |u£'|Qqj :Zx\pٷ^;˫K~gZse˦ R3E'U;jx^9C#_[꼽SZ"e{F(oqcw#4GcȧN8:ӉN2s y<yWl_ @RjhA)LL*U)۶DS7sZp+WrNe[)W@Dت6nߺ|W%Y/`wEUx,*4v+r WO!.KXng% Pގw|뮗 'c1sSvbj_ē#Ia߸yA ?}d Ӓ*osF)9{E,BFd}lk,Z;zR)Zj["TE0񯆙CG" 0-}39vR|k'ɓ\%r|~΀1yقRVfz' 8WKXΥecA_KR $=u_v.oMyzFiI [9)Gӯ|n>.4#YMDJ‚"c~|-=&AׇVw}ŜOa̜|(Õʈ@XTalѮZb=apMUoFuq _}nB2-Uv$e. h~r&^ _:;ef/٫oZ,[`5w2E$!U]uǽ}'ó^陬ޮ(ߴ[̎?}"2y[vg^{xc7{қISv ^|vˠoK3buט/"jTDS>TA_TH]ďb!NˉWx)7\\fwQ $ 2w˓]7bKD'aWJ0koޏ7n^N+簧4:Aowv2 ZJ^Mɦtѱ>Oe8rGW^#]%M*qV k]o Ջ%^+,Rj4dhh7ׯ7o8ygand{nA9~~q4=#a(+leRHدu?_<'崱ӱ˒mZza[JtԴjn 'ʉT. } /8*yd璼G1ȹ8) mew|{B4uS]߽^F~y&D<q=pUWiGi`g83['3Jkā8AnTr{]!(NǔE_H7Q}BnHd7l'|cq8YMw<v*7LPjXv)fm_dd-L^]1tb(A9pϾ4QY@HҮ(. '^2W݂[=-|cSή;x6J #yrRr&=( ,t E 0E{t)C }n\n!Q'C>Rzn\PXKXG]*s"PXc+El*" M-Cnf7o{^O?pjJGXUd WtT;%B3J^ _sխꕨ쿮+_5Cb+i9R@&H2X+v,w}wX br)UPп^v1B<*zI:=Zϳ2o(,2 G({7Iac>LsjIٽr/~'4_q$S,ϫh-QTOkeo#3pw[=!s$ؑ2GS_p6VOd,#7O/uZA_-GQ$jjS$Ҙ.]w߳谹KqONT>O %nG.eFR8}LAo! @ѳfǵ;.2h)GȌO0dPiK7wx-޹A_?OIZ$6()=wpχ;[GQ7i3rI&-*8hQr9_}A}]ZYtf̴,:/e@Z;D ӧz7|޸q(xJV&L'dC}6+7\_-Ehk^Zbmcx;Φi-.5QM{v`˥]Dz|T&qa #p8JVH`$A %qЁAlLOţdIJ |x_>%:>iX˨rZbĒ<ڬ 3Og~Aj`agXۘnf;fiJ҆] ]F *MLh|CcryQ蜣 B]w}=.}_=IBn 1/ED_%^`'lgG?0>Ty,UbB"%|#a0 IDATYWSAC,Ih7~yB;cqW-1CmkqWZI}eť^ƍˇFGB^*~7t8b4o\2ȌǜfPFTJ.hB`&3g}܅UX!c)CH߻E[r`|<Iu(rxo_Q Jˆ?^w"Atnm G?2X-pՅ ǺuTLؽnD[ QubEUݭefbÝRdbFejAڬVz^@m]޺=8:Irp#3Akm?p|=4:RV &%x|ph% 'zDžA7uRsPpb( ;JξH~/WѲ6l*ӋX ҁ [?ŬG3 ][oَLw31vڤb A1R&s=T1)UP:K j&&_i} 3o[:]1fv=K[K@=7Wo($̌6p--xo6Bo(~gGGDL-'dz1y =[on@Gg̓/s,͗PpP !\6wfïǦQE>ƑqR_1,IvSq]G/K1˨\sڋ*jlk"w>O#? L*/MZ_ c WpݺSLC-o7̣G/l> OGgr#:;v޿ptɘh Ă{t;4S#Ϗb.^点.fڞ=~1ZQ}H0Oܭz[ݼףQe$_|lfek!,{:OVQ 毙EB Р.Jlcw{΀*q򜏾G8*|WOAt ] MxS>B,afP)q%(6C%(٤}/'q>`'⃏zJ灑5) s 3ū̢: rkscẊ7x2BL |Wr m/u-Z4Z 3ө{h<:0p%՘xV;l̒TlFqpYAY aOG?%gx|J2y2ҳMuYPi=f[- "g[tXe.79Ą&yg[tĘçG督A- 0oO fTlOiȑ@:LqLc,竧>|>^au:Dt\whWw3>R ~Juh"PK$ _ QƝ"T?~xȦы#&)K*-Zr3zt: TPy:9Ap?,|o oMPŷ?o)譬.d[BAWF$=bzmRP;*GV0)KoJLNږ*JEVD-~w~NWXC4(T0I [۾ ׆Ryd.J\IU! Z#E5LR%)݄8F<}fGĄʺ6T`v A,͵XSԋ"C{xыmlo^T ; A)1XHx@i;$20 M8pQR$EA^[҆*8{o֚uB 8׈@xq /.`}52/{L@yO:%͡ڴ7wISww^۟ᤰ33ܲjm7{R=}h~pTY|e$М|1LȨqHI^[;ϺO:b@^Q] 5FFbMQC=쉛nN60)KF ` @J6NdB)}m$f9'XupHӉ$Y++ 71s\*YEQ1+ e)&!X+.d2Xh"( I֤6C'{a{;ь7=8In rMCܳ;nI_iA᪋J;QN&I-w@|ʣ%Gf9IBvk]>6EJވsHo;o۷7f|,}9~ܓYXQ+Ne+'8KªA wm*><윞L43IY`+kLnyf uzZF=e0CӀUd%N2qYE,d#^2)蒪9{LF|hы| NS(hIegXZPE r_zaFOsJKV`eNYyL;tRB+{f9eI [R9UyRU*2X$AnE/ժ#CzԌLqM66F7N&ToEOK{<蟄^f&RPǔWKY.6X.JZθ!RLn{wwD ~!x34Ċ `v.ZYsxt1 #I7Σa97t'qX2dPfTU ߲V %6rFI;]&nޝlGbYC/EZ[:W> Xit6ϟs e3VZtf0I"Ic6)atR:1ݘؠ5B4o@ Z5Zʒ)c3&ΦL3fs|TEKs['b Vp|HԵ̂ ҅E1&( Zٰ*XxQ+{/9& "&NPș5`f f38S=š8%gS"$ ҒBxaKy%B@ Qv;=ć8 8[0CgEۙJŋg$iLw1,qLI(BIsfosc D mHA-+0 H4+1 z)ax1YAqpO9J%Z&$JDl.F#OS X7s( Vvlc@$D4t.' q QN3%6,y ]oQiU6 ǎý!˘3LZ{D$ t>?g?>S_} Т_]È53ACo:NH;nߧۣ Nù(, 2V`4F5IETW"K])ʂZUݢOu u&BIz6z$6l-nկt dgRP+F<'a{4*AFjӆu=wZ]~.>Ngȇ /"rEطtg'zQF`WW:, ' 'Z'Frs'x0i7 7N4( 9.(hjAI9Eq'5Iծ6 ID7{ۡa<,SqՒǭ-y&l;ЗIJ$Z&_ Vjh4`1FhCЖl,b$iDbDĆT%p@Yq8l4Ɍ)E)m!]aRy'%e4'/}BX=&KV tC_B-eZ3+8eݠ4mj&[\ߤcO[6#Yє?'T9i=Rr*#K H2 XKY, )}3CZ+q aŰ%EV.r$R!R"%J@04V&2 qRt$ .Z7<6=Jb4zz"vIj0XGYRVds;&yٔ<[Q[NZ.]=uo$Ryi4NU7z UӣĤx{.As2a1/$ĚRX* ۙP2!Fz)ȨIHp#ݻ[>Ǐ7'cL1[ЇB0d K6#w[:ԝe&PUqC87^.ӹ8:X>Z;~(-%<\_klwS)'Z]tͻywNNb(lc,t_nϗ(ԝF$B6 ZKJ[ t*tLDlБ7$&MCԺ DyR ` M0$aaF.i%+'8xY:(/sIhC7 wb3:r9E٘3Θ4JQd:x͠dqNjhNA' ޷:U˖T~  IDATQKʼnUAzZeA4M(],Z[XHEf=Hb4T[\֭lQ( A\5{PyUi揘*$rdUpܸ ߎ [wQL7ÐP!˔OD6:&OS; ̧TެL.;.7&-Xf؜FuI/T{G9_=?!3;5竑J`X:̌BA,z)J7= L Bf:J(AEsSv&JAQ~CpHMd%eEq P#֥ \a,ĖYQ׷5nרưa}P?x]=T! E*!AzDE6n5q.gɁ?O2yZN.<|J-Ъc04mPZKׄ\ :"AߚKUN 3'!; 9/ssbP%7'bm .o粱_wZm-^,M{ݬGO$38PLm[OG Z%L\FLB[id\#A^v^6lSbT Y,sLVgT K4^*nqƂ_;= >M:03O&$ZB3LP밖7^#()*d7[Q0PiJ%s:Z>U hdڥ0HxOH"z҄4accef2.@WXhhC:`t|bc=TG\a}~fM1s\\*ڦSkVQmǡrmW^2{UzrDzc[|lY(]7@:||%cpYp2MR!Utzn$65]_|~i<H,,;VQ݆ꕿ^jVw)h֌=2`(t#I[};?7"^<?>bĩ͗&+oTZub$^x 6UdSqq@48DFD&MInczЙtfVY^5%DYRd gUV_3UAQE."hȅ/7SՌ@E4ecg]6dBUʟ!TbRAYKͱ$~e !PuH3,{wB] Lj>/gi9\RTTQ.\uXC2E[yT;[DZ$ٮekҘNrV.#g8P ʬ!չOesB0+jver3HuluݾNwA%)U̔v–w6*,yгV8x\\!{2-}Ic%hRJ:"釤7whvtwHcV ڪʊbb^0!/8urYAc-yIe)\\Rb q64fs@CQRYn =@@js8s:e2g38qzɘIF( %I<18EnrX\'EF몡iXYEhC,H=뷋>cGO=x,QXfr / igCJR,rxõiJ,+ª|E$@ 1Tss.u.6fag+(opl" +Gz'gv?2B 1Ϭax\䒪!O001[pyq-\ͱiiͭ7mM+mW|C]o%$Ll,1لaeL( !O^rzjzw%4zŶ;{^Y#ىZ鴥eHGc(/>1(e}o]53|YRFfB(5ŀ(b.DK5ӧS*fsڅ$on-wy =qĵ͑GFR x$ 8,4#M2ʜ~f8=C2!Hݵb5ט("@tKҜG#ܔgT s~1σ,՜]\Oeq.')Ac1yD3Rߢ5fd`^1]D!q=z݂rY֕[uϿ-HݲK>{݋d)F8H1=v:ꈊjBv@||i(EA37|2LX uغ˸353_&\n6P1يR6 {?d|AsqQ|k7m7~-jnu ͉nRdtWW/j0vub$YɡYL0 .Q !ѡYTs.I2*՟nkܷ'gwV]6T 8ǵfH[Q6ķBh=G~&b@EJMgISq6S,YCikNbKN{9wfGumA*L>|\O-aB;MUϟ/EgǷb}S6fyJL9ͻ58;:\~o{o߶:_W7 &.uFM9d|@6bҴ3W)MK̰9gO3YOߐ:$B,6EviE^~f(roFy$3EʰJ )16,qڸԈV$:& e)>R5%s9)spm|?YeZYl/sr hhҝAa[>/r+&*Eѓ[g\·B`UDEuݧž"2eȾwjgޓO}|'k;p ]7Yb;n4@ `ꊣcQ59`'\T0%DJP :akh(l574١`J7j(1(zhej. iE)䐉4lR:[ڹyv5\Bŭ(_ *+T9xMdF('P'h7.D&1*PFCtRhCVFZ~hCE6BYZCw.LJmz]iG, :A%A;񈓇HsNx2}4FZ|-zZpGW~wg߷ʦ;ofԐ q~GMVpvΟswuEVJ{7[ }Զjjm9Q J_c:GCAPPWf֗W2O3f",奡tQb ?ެD!eWL78jSYT舾ٿ"ʡb@bWyJaGvK<Ƌcd ijA<l""X(ExGGתjmtʼv^,ûۆeE&e 4fGd)y; ô,ye,"@kiZB1۝ϸM^Zy)jquQ[0Ȥ}V{%?5s?4J] NoxCk%m8vwKaJ#pˈLj\$E&)Aȇ%%(-Ռd~^T)5qUt}=˯ UfNerݬ9HE"D2]2ԃaz0ddaޠ5֒]kچ0hňo o6=k(}5!&d <|kO gqv*v&VK7*gomⶺ;Pg()cƐ唚 |ɀk,bEo`onUR C0j򒷎hl @h8Uvz9Al}#?P3۞en;xo(ʟQ46~:Yw[&n1?օ7|dXS8v$WDMTĤAROb3`n~:ږϮXwJ!Gh6LJ.1p2Ǽ!Xuž$N%FɲSEܕCfC'&/N%qGߦ8;$mٗE"6v{h5I˓[־\frLvQ cwp>boO9V __Q/yF.lLٜ޼l[K-ntA)Tzw5[) 5[.4Eg*9n5GPYb}etESyeGcyALrxG+'?g苗Y4LF*ZE ـ"D iz{5}mL;s1Nsu;[}p>/a֗ Mծ-O& {5.uр ર|]5ldݚ&$L3Fu z!h|omjclW]*uCmMOCo!kިi$C"*CUk-|lǣ8i+yq*WS3\X6MEުL)dD1q^:fq=T *v9]Kn;[ ;Z}4O9~L:zv+%ẠK׹VwTn8֟jsu`tї+9IȏsC>WŏpOƷxwezO0SS/aCwj6_`ko%7FvcȝY.TZ=\<8ɄobŅqqfV}igt.gg5Y" 6V a;@H,"DhFHT*Z5pIGEvA[塒+ZڅQ4\y#Kc-Pz=eLit$02\"L>+exNKoa6yRٙn5r7dbIw[&/O] jAE,2Ed0ç_q}jΟ&K4{tcLQ\^ΒyBYDZewLb :s4rpa,m`efWT,A]/iݼlӶ%zޝ{G?Ͻz$.bLggŹvת9M{5_؊*0 IDATxo }-9(H4i$22r;y4)wP2x5,^" h=ƹ=!['ϯCݛJ;"bՍR>J+H"stNzԔ@#cj\]z2gRO5PMJ#5ŝ>Wb$]O΂\8-0O޳1ⳤ T:'K59Άz2TEI|0zA`UlKm+WT?mu~3mx;Rde)iOUrpfGAezǠxhyd^:,qmθ]3Vzٝ3g&;@sUéDvn!10ھ$d22cGCx>'s[E{A]0}GG7]dJN1i#78A1ؖ)gs}z+܄:i;hB3cbbۤo̸EqnIM𩵇팴x%#61+֌3 k85ne,./lSH$MX3qy^H p,G" #U&H:EHҢ,K ~jT"!`H",._\ PB֚Ъ.iq5;{b,Ny<(CYmzq`0頝0Y8tR_$+cUJzk3MI*kZhe"GASqJj3 'G&R*x [鰝ǫ+94F/e~eq}ÝlrO5bDLiuO>T2#f2sPy\ѷUbD f4+;ОO F(H0j7#^?EJҷcl-eYT:\z74@qԶ) nUV Z!&@UH>oCmqMK=e:UnԮZƪ~z~Nl B˽ޓ*܂VM)$$%XF;wQ/~Ǫ>4HOۅ5?[!><$[KqgykpE(q9qQ^H_6̯s7}bFl,Y9Nv_7{6}Vb2RE%r}>~Ǧ9uŧy} 3;ú$,k]-K&ɑR+꺒hf1(؏ Jidf 3N9,0'җ BKh_0[Xv-7tur==R5W֮@+} cP(z[YI%#l89r#fnA" H.Aa7!v* h&Cc3P7,y3OGxfW%&AtK r[QE2dpy Z'UH8Zѐ ǴY-x=O'vA3iX۽E'l\o+Na'$%)(Ơ)A98֏;K&yfgŋ"]scY\lBC.+˦6إb.9X|[x%?/rdA\i*ʨlf7Ymo#Fn9"Hu:%-G22:r@bg\͘ω`j˽k#3Z?s=X .dmv'P¢I,Rwӟ?:촿o@,Mˡ"G*]'8y$'cN9?{FfqXVzv%ǍKz PBd%/<\I!l0݇ 4mWW\ωNPzAlv;рk:׻kbiZGw9&q,NjX,ԧ_PUɔ,wP V+ä(b8 teP&]YIIZtBtၪ31ΘE(RB<",j'F|n9Ye)iM ъYb!\^p}7/3;aQSH$GbOVQ@R@@ Y/pN@!XOCŸȂY@|ј8Ōkl [%vۚب ̆Wvr=PҦul4#T'w4T=Zh-Cٽ'w6zy1A%$ )c:qzx05_eqq`0)^%T^˿UA\+bɾϕű1ogD$ERڃ,cPQAs5rާҩ'T4|g'M|/ٙ[@Y ZHM^r 6>Le8\3"cdMfsvv8p4`:3SP5Jae#Yʶ;CdHX&|^'VF2TYZB4NP9(u6f\g5 |ʢ"ԩ|K+4$;bo=6ׂRn#R=x;TQr +w߽l;YJ:7wZқW"mMfx\ó:o9['5$N2d9(˭_`#=:q4U %~}jE[7ۂ(t[x*k+ɣсNdžxQǤ)yDJ]SU\N!.En7q_5Zc\:9v #Xa}\2.>^x\.Nð0~o"ro-vi_~ `IRtc.E1?~~C>z}'_g?M>Q`v-c^LyvfJ8OA&sޥW6_ׇSM:r- Q3-=IˆU_2 [1|V NW0z{H6S8\:vLЦ}s4  jŢXN(lwÈI{Z}8mG?E]Pf)8Y33L9a-5.<( &mea,[ҹ8q0 N|T?Ky[aj[|5ӿaH `@Qd$mźhk+xlشl-+,M0}ЍN&BwIm5n鸄;@ k!L5}lZg'Lrw)t{~W[Yg\vZK3}43#^&bdfj.0iD zü.Z"D5O7zTȓN6xk#c`%ջwװ\N<1PfP@QsUᘤȓ\dd8p:Çh 2Nxqk)bz`3Fb vd,GHC1*?|;i;U3Pyv<EcdNӁeۿX*0NAHƋaxd ?s}:<~˿/?ɓ9W4FZ~C5kǙ{ek{ 诹5KZ{ږc\Ł,%K%4}c+l[--Jӗ@[jc+RҎձ䇦ğ$&1 y֔JԵiZnp&j@D\ӿUJ`常šH;|';ge?V 1omtH癞a,ɵ~' }f=o޲oۅ?ĐI Z*GURѬR$edAIOڣ`#UۓbjX;ລq.$l l)lzkyv&i*wJntpt;Go/^'?MO>W(?T*t:DT;~}'z/c+W}}ԎX*[3;<.EE:Y'kU/a$G'䚄~#%HqL2'y4Y1Y߆gcpx.g ځ˝x0qcQxػ 2N;o}7ُ72g!0c){o5foc.f^}\Oؤ~Fof4$ARn4'GG$Ÿ}ʟ~/\ـFdf?բMg2R >+bQ,WmiN+Y\Rz1"*2ӑy׸֣,ү'vvF?5˷5_ڽ1-ְunf![5c4uXl!-MFN1N# ]UyCWu7-&iS]bGDs=$nf0cnik4b]Y[3̕׹wƢbo2m$1fblsߚE꒝FIjMގx0{+OӚcwVZ+=?ξ4JFnvqfƌbeL6ju[Fw,`2Q$F/##o܎DA{ބOb1 ,+&SOJeIRM: g3s^^LL)#xF)eL.,L UMmi\O(Yyu9o|~ՙHQOfz>wGLqQgir=qz!Uƭ.2'/8y!'9///b6X'1 xif\K'[YBƼ(0$z(3s}eh/I@pu9)'\O%\7e.jǫ[MG5<:Zeofi{80mAl)w ~OZ펛gKҹhca5f0Kd&r eDg1%IMGҁ9XRE-bDP&|H,%A@(SL ѱijxc )EHp'|D_䭂<8e͏>"2D-}-Xkpn5K){np37 !j킶Kxڱ-עn X{̄0%F@~߭[e0hf8Ic^F ~:k-s~ T׸߫ R[U{GkMp{\^{Nd%?J37QIK=kMTh,2G)@'j>=;xZ(,c3(р1G2_p\f4*Mk 0)Rhc1 Z:D#ZfsYTg]k{K|JvLﯛHcNۗi=s 6a[!56zU nKĘoF]sm? 55} q++7ָG{uFiT B)W2 4X 4 B[bE*(eqhSۈ1 Q ʫ@i"ܠF\_" cdi'7 a SC)!#>_" 8pq>/E;[jF#4K&6q^+d)t&AY~Su67(Ɏ7<={u~stw],^:cAB80 7MΒVg6:,0<< Wסnw|:tS$>rRuDZ# #DAC7Њ*X(:rrR IDAT\2. FL т1d !DR}??x%#D dö=zy@z R4&]֑&Z>jP}Cl{|E ۂ__vu?;.w㶟esF3x[} qszw iR:ozwT3|!/[#qM,mfa] k_GϧK4ID<ܺU"d^P&*>S^G44EVVYj>; Mp39WGaT fZ1g` t"Cb\G F9#Jãz oyq?R=}auLcc/-amQle _L}4k&k8I:j7,:o0zf^߂پa5-eƝ>m=]%mPHLF>:S)$ $.&7" {J0Q` I.H$~FAֱPDbAw櫓Iyɼ B15f+rMP$T37׍wws sΦ+ZKmk;:r^4x<5 NUXpHN(:7RQܖJu݈onOiѳ֯( o[ɷlv&+KgXwF@(rM%QՆHš 8p(E/R2Vp8H?XA`B9v4ώ-3|md&*(坆 {rlvwpWg[zj_ToOoޛȶY^ow13wk3"!LJJPB) 1( S  Ġ DTJJU%Uxzkfs[&^S{o}[K@*^a=f$_w3C#ß"fG#HQ9kĀF_A!M*8.0.PYB%>YW,/Vc )Sx15k>!@9sj܏?fZg_~+t9#y]wҌPCTd=Ɗ\Ʊ"mmarȃ!6Tn&ݫh]>QRͣNG"2#W룐heeOPZ:}7b,`գ=n%u* 1deTdy^SV(XÛ ,k3U^jTE DYDYUʦ*=aR(C񷊏/ .mi\9_ָ1$f9G%՜ cPQz萡@7=jVṜYAxu͍ܼ)V[@x#^}V9P-HRAebOh!gqdpRT͛+Wo.䬛㎝Dʐc!n@&ot{H өQ$>%]޷X=B9q|bH:bؖйFNSHAmܳBnGt_mqG-{>ةutsi2!CV!GM&OŘpOxuʯSD+R@$Rּ3 C OPbO ' |И~RsKk'ݴ_SY!gyWXwvMF9PrعҴ+$'J9aAt(nN7g=qT6cTS&&Iu҂Q 242X&TFF)5 .Ѩ@I9YzkdSra~rǎsiGtJo@)kRuޢ9NvQ7"o#}KÐGS9'cW9~vlnA8qϩ#@f>X;VkʊcV#ӘMt}EZڞIQ 9}tlO qH?cѐ~^!AofS*yNh9hxOݹXC)a`8D>CwoTm锴qoIU=?`.vj8A+ *2ĠuT&+$eX*s*y [.yl*3ޟrƢ5ųsCn|-}O]8+ ~+.{dZvM0G+68BFF=qJ2,t/xbV[xǷBܾ"Wr귨wCf3''](Ka) sG\-ZqdiY5Nvt=}Mۂ.-L7M}LİHQޖmHD%'/5\8x~ъm蜨' yhVQ jϢ3Q1O γj-^Hُ?6dxDB+J1Y<[1XJG]QXC KʤLu@8Db O=4>B*nHY۰ 'O?g,_>17ml{rV_7\ eYӬy&R-AJ#6Sj-cew8[f +OYμm>WLha~ƮNs,;R$&cq}͚[nt#z^چwN[OHHFNt9žMjw~yI\7w~>b2NH9!@EDq櫀ɼlsco(XDHJ-V088b#JgJS(Y8LiTe|Da4÷`VRuQ(g%Npr>O3N tWhz._Nwy OSz.W-FժtMxOi++|`nU÷W($@ˠ|ǯox'*K7=\~z^Y?T9iv"PmH e) mhz%":>MGk[jXX^YYtٯ'ڨK:Ԑ4@Q۾CXTzz:ߣ]3X۲ 9wlc^#-( @:<(Z;40CY;Ϫ,;cG4j"d-DL BSsc@.XT+ Rz0Xʂ,Xòjɲ'xjÏ.V(w%Gre.*ږ =_|_~JUY^.ˋ,$"fEҵmBH4xyb?yfbT$7qluBJj9Ϸjҗ# /'OϧݼTy}EXGH[VGL}23~ߢZfYŢbQ dC!R8Mh]O۳lh: g} Vn%H^)nWK+=J8LGr Ń|>֛K_g{FgdwNeV0XSV%;v0vͪkY5ܮX.YuaŻ'T pmsU]g,.(uA&R~AϯGEeAӧ&g(MRfW"` MoYZZ6\6|?k?SB}OXP馑RnyݰȽW&4e=pOxlM NjA9qL*@-[ k'N<ߤ ҃}am}WH_Q\)+=bWԃƓ4WOEfNOУ%6?+sY2S=eAQbUbμhDq! s_ys'<o}"R;wД3~@iS3gv h7WúyX]v(m~UɁBOɘ\Rȼl]sYi s(RĄdR"1K>ayA0xn?̑m; XQ &&rB+fH;VkUVK;E粟ˤCC5Y,zLF#7YJ3n˾u2xy޻2W%}>`>GYho/~#X(i*M۲3˥m*88/yLuۦYӶ=P4f7cNZD^^;$ Z9٭PjdV GCQlbQ,W|7ײ^::Mi#LrƗr8Q6SDfYT93=%st w,Y^_}%zC_E#YxuKPNVǵ:i-#1;R:2ѹ}J};LΛH"=%5Rn"M)Ks-h{'(L H'{rT^56' V4 8(EVeWUi1ORY74z (xΰZK^*E+tONA6і@1XS" +A$ohEgUq:hǺwϊV~+VOQvjF f Q1`C)vh\2E ꚪZFѧ㸃drBúahz&ArG1JqݲF!3AQDے;4,"x]Cefur>$r>H=p_< IDATꮽpw3sۺwd,G@""c|~[a|>KMnO)?ص7շCd'JA?aˊ=M b@ěZT3F=V+ϟODfx`@n )U~q>ٲj( b &>~Y}$(o_^]72ƛEINd5NlJ*2-Ƃ>qPh{َQ#`*wƣѢGH&t1|cRLR sy^ ¡V49} y|` so`eIOJc"30uZ(3ǂb>*QO۲ln) ޟ9M\]j5vF)9N-G~tmD$SB,*Phjjgu"+Ul󹏖9zk'0AtFgT拪5UAY0/)*eɼ}C GaɰDŒu]Dzŷ$FvMۑZZZs~]es< ݊ 4 |#∄y^7q}4XEMR RHeI80*tM2>r#&JoeX0ٻ]4&K5bPzd[䔚J3V0ѕAJǛ+hjDh+J|!? u] Kf|"93 pu7wtkDKfeI榸B~ Ҷ:S أӎur|l_q׿/[:35j[ u4rNNЂkpʰs) sҠӏ$%L*Btcoay)8Q'ep3?:S:tEa k HYӴ\Kp6 .I+L˂u'˄L@G8aeUlq% _sJDg6OT1Z>O۹ fJ;RF;((,2sYt)ƐK#*_Ko#UͼƶjTk^-)Ԫ@QH7ح YZ^]Q^+VسG/s1OMG4+`b}u5EAH$vzQRXK @/kߨ LJ %bh۞N@sOg5Cpm/ؚ{1q)̀F.bzR=/U]4EpƎRNc L7ޖX~NWV$q8ae0%Zcaν/8YgS]R,J K]FD@p]1o?saZ^`-4yd˼t ex݋3ݷ= nIJ`Dab{tg/RY&W"1P*_Zq7oAPaK `ғ\޿1#)Cɫ z@{1YN,a5QdkҀrl"M0z  dS(/^qBEɏ f#7XpD@L#M) ə7Ax R$w!(!=wA4LY%CR%}&fr'"(zENF I <4 e"/Nr`0/$>B>F]IK8lӊ-Vj2y\FhCZ#m4Ƣd\9BƔ\OEf ~uW0blDM1L/ۢ뎬hT.I3[Xs ˼.!qfݑ,Zҭm2ȼާLmGjs[Džo#9XEGUmт呧qVEەˍ#aYܬLUO۫}7!bR>#-IvV+Tq8ay)8Blh7_3 ^^nUNBͬ}<1Zq}Uo\Sٮ^؎L:1|`̮=55|]Kq-M-7{HH#Vg#!8/ne-P1B+H 7G 3iqTw6O`.ofc/W32 c91) 7:ޏjjEvIwoMIpYQʛAv3~DҷJHx{CdK5|`Ɔޟgph5"7U_-|UR8C̄@4V7e$R%[,MrIdFt̢:eZZxߛW9xYV\~`qyҔSUPS^s䮑p;w;hHĖ6fA󴅭;r#Js t@/(^<_~2ٚB$EVeZ$azˤw$qЍR{];{lwE)HȢ'͟ТtW6)Wu2dFGkpCS Ug 95XFT6M1Ju8l`\Ȥ4nmw7^sh~]DCr0";kVi!M04$SϽ5ZA#wMdNhۤ`OZʮTvwAL-ĺw`\hKZ2;G1ZMYPko F,Vt`; ȫN4:3)6tEu.RUqrF._$~>yY ٌrR}d"QQXiX/!?tAj/Kj&E>09:߆;?O}OF68q٥ ;anXyz t 簆z[VVn,N^D[@Xy{7 ƬzpjqBLuMAJ{$Sp{Սɤʀ2yqghMr}ū+Mŝa|$yp=㮹Z}0tw )H?^er4mz:amh\E^Ido mI :ZoxfeQd)5sq̘w#n} y/XRmf59K^ @jki($ŒJvbp(֏]_nFj.kF)Fɛ8 U|@W[~',88P Zn,Yg;m]^/MJU=ϽgPZȢEbFQ9 GJBiVܭ=M˛%1Aٓ)X[DjE0M$O[P1IO⯣)NE vɣ {{17/Š/2"1XŨQ0TDC&dVWmChM\:|f123@d㰖*s{\dtEx?|p\\ZܪqNH/ΙUěK^ֲR'| 0ΣS # w[jKiW27 1'=;c'o2di3MR`cmm@zu9um=[iDMOr`z lV X8+ʵʦL,Ɗc=E!qG2!M:V]r{b&`hOb"|ҁy^6chK'{0Ryם'&%[J wAb4F+=zpgԕF4bd \.\؍1E='|fHUZ#:tAr$E$<=胣-qT#(q<û`f̟vdήnjq"V;g3f1p~,nhWܬ:(Ժ,YuӶTq!g@l[ 8tz9E<,ԔwjO"&SG!vaQ AҬz(lg(#EEl.]V6CiH YwNǦhIVr/30byă79[{0]b5`% Jr-Yϒ7\qed<f]b 5wz7 }&~nBơQcq[Wd`vgbq],<ݮD) vU䛊Uet7\{|;=lmVGΩV2;l(erL9Z}bLյ07]47EAUb1 j0),ڐ3aȪZV# %h;uG 9H=!ezD16eP$0p>Cy+Dڅꝶw Uz_4M!3z:鿽#`?.j Ԕ:SMWkP"筣r*Uc1j4 6ZΥH c8q^Srdpb֤Vr7&exѼ2K_0F7n*RR!5z-8+/^/kffMc]Q]!uEMQ2g/QmYi:O %iSK~BiinTx H |ƃb#$ϾQ Xވ͘tߵ1ϣB(Zj_*)\XB)9 ĖY:n,]~3bLd (NП$FLP%% 3 :RT3)ѯ_NZF2JJߝ- kK:_[vӎR'?'5yPbnO0%9y63\|%9þ7'!k#y[]@OaѝvSf8:R ROjKWw-S沒j*` wK>C%E(}0 G;ܭ}Ucd!H4K>T`O[Fz@vK/,cC|K#G s]mZlA9癪i geluVq6ˮ*Ϫ=+S:oI09~1o=JbdݰnX]Mn57me*~w@fw1%Vu ZVc1+PN^ͣ_Is";Z.OAE1Eͳe5*G4-hZoYrM (Ut=>{w{=ȽQ< 8 |?lShԫ=7Ɯ \}mva~NDƢT^W,ƌyzؚqzC7=a $f'Nȡ>Bأ7%2E|eSY2JڞJ;swUw&s-5 gi;޼Ku=3>ZBl{'{l.'M>M2j0(\ШnH]gK$Kj)J5]ɒKg{,UAs]m*uXz:DFlni F,^5QkXwܮB2/{k5IT2`xeb2ČX8 h7>E|ܗDTɦkf]7{ aj’ǚ*?堔T%㷋੯=6| EyV%VE<̗u. d%ey7$t{KPkxHE1o/u3C`v);.-+oELry"'"3sHtZoRڢ-PAճR},h]G]E׏Q2EZV~1*y>:0zgff[ u%& JAN&Ei=n}ոML'aT [?$)̩v>wOŊ\`!`5"7nWԘΘb36kꊺLL֌iHC4 }kBږj:KƸ{˘F@6h51݊=EcUYpgYlq}c7:YVf|y ze / ch:/͕NtzaC&daX$,=`3ٕoBQRXZRuڤN]TcrkX wٌS#KG}Fy[/}Qf)40)b$y<2t^׳b$l}o}S%0qV`,@(0VhE@tv0:g^輓{n("mİA06Ĵ~{l۱‚UrH>eFF5}Qs:nKtqR(heN '0r[nNP@*ƹ!UTuZ+oUPn%^ZL0MV=^7426W-<+c.bRvcX+ K {wy(8ej[{vQqX7vXa qKFvr ?c坛H{停ؖ9?(9op| /' {J2%3B XB yx%n+^!^@*25gs?֟]ĺ7knoťe) !B<+{|351c.hpaJxNYBX ۆ䡫vtn+"FN4Sz[ij SƋyfk J|a{|z|1P FBLHaQyg!̕jV3nH/r )~o}o73ݶHb\b, Eʲ-w7E Py#ƽJa9&si3kϴ0 G]GǠx8 ]5ӢU/tRM?qX\ OzuU isxFÑmK>7S `p*\Ձ*ۦ[1 "bl yA[i8Zwځ58QuF`JЫ=Ww ouK=9U@m9hϋ $iڒ?zjw㦕Ϗh:@ ;/&x%W_=Sz?/WQPR$/iz7U~ iY/o]vDiQrhË]^F;&C߳hۧ]Æ 0vFD B-8⹍ gp;҈5*`QK?3IOD,dSꗛY!gyb"̧\Cӫh.zփ8(7KvVrlh}h]L(`R81rSCg"fgq࢒P츥*|QKCtcݾEqRzFa[ZGT^_yyvs4RJ\My}>C"ӆ_[(L09/w x+7qіmxpD[y#ByqE);i >+b^!uit88ag=ӾѣeF=7jƜ8 lç4m &_x}nxq[fS M[ uAfЯO״xF酟Fb&fh,c8w=G"[8ܒsii3hm>lz ]C=mx_uuv>FƑ!rFdSqLI3vcՐ 9!E)zZ1c fb$)4LN XIIlQ֔]S\Q ɅpxnZ;}oH*x$sZ7837օ>0Mqʜ qvnܹFt5,אB;Q)?j{f[O]aU0a*FfV+羸ci4R=۸{a"=k9Ndn4/F <? k[ڎl5ع(8F2LSKTLnQx~aVP٪Jyr(׼ΟL@{hqPVaJ伶ֹȹC'>qVsEpvX3ӄXWHc$6L0y&tZ[OLWfR?ծNYn)oBBC|ӥX̌b΅vmB@pl7xḠv>ҳ|ӆu4+?a 9O_`2qu %oc-_>CYO$vrk,[oi 9q-϶ϦpiĻ% ݭ޿:/j5FpSϿ|v!!J-ٌ s8mt"^F y6 "3CMMJW:G8!gܘ|B*Aб僣:DGB}vsDke 0I{.uZܚIHj}؁t\Կӛ(TfuAf[+Srx cla[%${_6.+:V\ AS'rGO鉦[?y~Wqi$3"(>ǐY[`m47/C|?Ib>ױXw4\GiO>'>k({~}y{pBb]΅Ӥn !輴-]CҶu4n:_VM +T ĵi4{:`T?!FB fRBPwgɹb>vok)͝RWK )r̐3}h,;'d1cTdFO F&Ot5#< e=[,8/1:$E^_cЯ&LgSѼg@?U6j6mǟ.? c\3Y@ch:F =< qzhd&'dyꙄ`g̰h ƫ#M򥋀fY  mش'a$%(YkE0) ~vtR{E'EBB.S'eѴ XadC1TbfrFge똄 sy!]ds5aarSvC;Fi+7mueiƽjY6-``jw!;U]O9QshSdy?;D |y_m~j+cрωܽ=,>yH|8x!}Cp+WȩԴL>Ӵ)*13]>x^ +qRaHQU'BlQouSxϾkh]lw e|WYƙ%2/TEX킸fsq+P\3eQ\Ki,b,MT,Fju'5gֲu r*EPAd %4Tu 2+Dj3fB9iNJQ45$r45!,՜8Ra'l˷H5kmύ{g bTz:dTZ!6.VM6뱮*\ G^<Sz@:m,Vh&U_uX`1ZhF/YY`. xIHJeNL2sWJfl.>E)9{3K8&Lh5l4Mm!=*4+:^7E@ީiE]u>ܵ)\~㖼C(} N7-M#>:@-eA`9؟?=N>g0fž) qYb-9D?+Og)arqZꦟ*[yHV^ T|6ҹW?45uѷF+=h d{9{,)2%B`_$o2E$k%7nv]Y^[G⶘:ZohF: ưJ1ALD:eɉi<]KJLli|̈́Tkb|րr<;2#90h!40%+2?8=lŸ#Ka?Pj%˺xZDգ*^W|- ^ЅϦ?N>uSaуT&2͂Y@AYL*z*pb۸ym;e䷝ >7= !ˋtpi/Cf>,ԉ~"V\K/-tA kEegG`E@55puxhWt2,#^{ܬr|BshԇG9S~dlNMhohfCq`x18T+ î)"ll~:>y8G/.ڲWpTHό| oj\.v%-=Ђ̆E)nYKei,vCg*t oymYx8ծ#.*gΖcy@v-^*W:kW"318Ö`uD9r!](f.bDQ"X4*~cl:150de )KG2ǧf[ 3 < { WsN[OzZ_ x0[1PM^su |ƣcj4w< 'Vjp5mr^Pogf9Mw M1deMT (!F$C8ɕq. f m 0MyؙX1aW5@,adns{% STa~SBx$?ot~8yRU;,"3R*MJJ!~VWieCf1*#OƤB8e XmܷG[A^& >|&{ϖ}4J9LJ@v$@.@a^J:h.Fc*!L2G0ۨE"(^/uҕn7r2_~y.><73;:ˣc|xhƈfߚr^ cbܔug3ES8;wF)+UIc:Mxl))cy>02)y͙[K- 2]zj MCDRf&ӓ|ǧO$8G/r)3 qEp{PЅ̾Y֖o <$1횸oa0k-X*~ 2C[D+%5JΘ:qK:-*̪ i]QUP}iiUa2:]a9a83Sƚ9BUߔHvuWE,Y ȥRv~«o[vlr۱ZqcԷVCu~?NȌq$kCu!Q!y02C]r,A\(NY"C8| -ԡvc@,NiU6݌M138GҾM]-hLAWltMٲ-b Yۗuuo=PӔF)Lo *9ޗf,Jkpm_\[;e{M#37:xk>MhߤClJ; 3Y;C/EJi 5 U9-jf),VUq(ϝOILQL*S926Mc0K1)S2YG,IQbsb9x9~sL*D]5{hYҷ7ok,6bٰ<ǃzeײo){aH z SR<+J 24rjqv^2]W(~RhFp pQHq5wOSN߬|&ȭnyEzZzrpRqL^s \UjD6lf{0v2JHNG GU.yPUtb 3rR+%湁 E;Gv=K?;pia4}j]_Q"ɥcK)9C҂G/6fٕIH,2]Ym &s-VBoKͳӑ4Ze4M4DC44632_~@a]W ~v-讪ddbU"IY,؄E)٧$V&R0D'0z&!ܓb&ETXIsfȭﰘ oDzI$Wg썫bF*ĵ/#.$9lmCӨk~ajZTY]LUz/M`5ʤǑqd F^l6Lff7:Ao.o6ڴ{%1?ȅ”˴j>p5bGDfT@XnB֔\_%VٌжDRhsRfhNoOM?WKfyLsx=i [mt]Tz!fɉh;OWP53rt=,H3,#ٰ]i >D}F#LV30uLq;/rY;R _[3/^x}'?{/n5H<^Z޽ ewݢ=tyO6 008`9ԆH82&1f)y'Xx\zia+yS_$]/i*.![ruN%:IFU5u@ ):r%abKpL+Sab " h@g8aʋC?D}_PN/[xve PrlRJ9qV^> }aWNi[P=CB&%88SFB<*,ޗ'?KdzF;Eh]O^4=O-*B}t s˓U Y2Q4d^kӑӯoEiLج%/jcX)_-O#n8ZOqzbMR*ev hI0N~g Ęia#jH6E? O*A#QvF}{+:(idKn6W/wW U:wѵt3a;mFu:IN:t%LTc˖|v.Dm|[3g3xQ|ji:ǹ$6cU %)S`T\4Ш0%s;?\JyH&\[Qڄ iy!)YId6^ag!ƅrD\PiS[S.eǸy68x/,)o55\42kH,jNVcM!jҫ#YrJӂM),⩳U^&4mizyr/kI<u ;2FccS\g,Y%Kv=H#e"H}UFWfxh,joJTCF4˰!I9e阵#w,Ȩ﫷;e*5n?Ф 'YڀbnLFP1)l4ɐDԓEs}e$$8~ɚ Q4F44 (5)uj(@@hTr4g&Y!=LOa\#E^^|xn[v:"L8T.'sesZ_.ƷOǒ3xW553ϡhF\& )ad/\b}ȼEX`w~ M`u?!檳! Q@{)z0H bB8o 7z99#Vо4f/ZD pYL}<~Ƃ~lhg^$,**6 K(y{o<-0DA0&f505Idtyge H 2Z7m.xt7Ff屙.z5<Osdj0ZGH\eՆJ`tdecnAq.as TJJʄeHf !'>O}bQ1r6`tD7,ZDwׯ`mm?=Jxٹëϯnx (4^ư>Y_}Ǫ=ͳ{Vlܲ/H7` ܱ췌I!1lLŦ;Ļd]~]\o;8.'OK%*I5+sޛ1nܒO YA J7:rk|3i׫@bErK.7W<*y"T^}[RȌC\ܕ'ǶtڊtX'9 0 y(@d.Zo*x"_3RDZ8Dp_w oiN]w*hdZ:_,K,PșQLdej*Smy.UDiquqX=s7YS8~5LiN/]9zJ 㥣p^߉^?ekqQ8oiQd\G'k @iusw8kOg/iUo?2P;}Qp9l7=t⪶ eW.G+}1&QYbY2W_%?suI ;F?lL7f[) _x:]nxW狞JAkNټ1>CĖ3R S$DJ\7M'~?]iF/c}/`~W]?]Wр<hXu_T۾A1EET3ޟ@<[v"N0[{fM͚^lxe'Ϊq$ c]к/Pu8G/W;ɬU+ .™ Y$aB\+g]W,v33)wXTVծIS'$L? 5 $}sp:=zxIE%sl)\`HƅDX}CsJ&G*_Ec`ߏi> ̜r'4i͛y?^\] Րl?&,+~AƗ&gN4>``2N3<)B~Ja${%YkwCi$u͜%/:.Te\RXxD|cijRÊ`L?z.zҪx3Rn0 M5Z-Q-sajBrX#I?r7W˼\h, mKk  E%YF{8!܁P\teᰜ4κMw*׊p嚼W5ߍn߈k&2WewϏkU9Y&Su?7EfݾXQd?E*5+WC;a&瓷Nd ~gZ@]ҹ5 -E&hjfp5q&Tc#Yz^ |ؙo~_ȅM|[OQtrL h8(,39RL*w`ټ޾]f.toUX]Qʴ?֪ZB31qsj~+%L"Vkv^:}bn~wXIz}xwN%xu[@CNVr+b땁G f}Y:6Lf=m%p-*b^CV!je7nj&DN+7$6NP'k7Eeypsy.t"=zujUl*tx'w 0կ7lu<NQ9J0;קXp|rOϿcmoa%l1N IH4PjKG¹a8 Ja"2Dj.KVYȀ]*hk0H#NvWCzS>]/UFm‡{]Ik86:'}x_[C'锚ۄ.-'C'$U:,@bKM\\t IдۇtL?QX7dfxCf=Nn4`?;p$ ~ɻ y|Ȩ dZǶs=gjNA$op@v93> +B T ( wgס2fMc*Ё礿%ey bae]'p@c~y 3t[{iHGs7PBA}o)aiQ[ח9ϸa8,1#>a s)HUAq:THjth) W@էr};ͦGlg'સ.7促S-WNYݛ(xyPf?LRQ2-9Sc>ӌWsZ3. vU`r?BBSxdu&Ӏ+8"Bu'lPmS;{6A7*\[i㕓y+!S9'`3 lQoТYx+'|AdP~?=s'4AǢn0eE]ƦĀn~D~ J>DpA yeq@g2سMPǍS)" ZA]IA ARhD #r`E`MǙL; 9bYo-&+PD0N_^zaecݚVapgWtL<M @ ]x-4 l9kD32ޯxC2Cxm!ikox֥~dkkh>ׯ-|nYƏ_ڍ(G@@݀;;wHFg}r\mgsƬ#'ִFARI`Ҁ0`6v'6SKLQeԎ!;B0:vKQ1@4WWܨaеQ; ;P.4E^+tMjD5\QtdfsI[c!Bݫ:M OjJ -s=Ets(mJ[(Gfdr@H@YtLXF+TAkx9+3[햫Uu󯐌f A+4~T3Ҍv(4iA%gdź@yqޮZB̲]Y D&(`HPOrM/DyQ3&AJ^0`EXp3"گLc.ݯ~e?nak_~MRi݈TTiZSQ+c! JQf6k?B+8BXu^θ 9nHb=G{֦GM djh ވdK !5rJ&=.}gn]Ecu&'ҌKE9!k G3OM'3عy,34!Z-Tk x&ۺDEC DDP: e OA]|'n@&'-rB|{#}05* ^X9HlD|o&闖;  5-UPwG0Rig 2m`q20y d8|'CpAa6x:E P_}O.fj!# `z xil&®X!i(\~]{&AMVN ~DA@PL_ŁG<  ٗ[ MEq5ɆEM(4S>M 7L>xf!7;Q !6a5lJr^%\I5Y2\p u$S'3Uo#rzm"t! t= #xY-= k͈ ZS69ә.9x" _X^z]ɱyQނlp0pqWl(@XpyEzrAȘ>@Hݎ`ٍ99+_'lOnS/=Dh÷gso0Bn R@Žὅ6hBm؅gsm2"fD,j4MTw͡EFLy 꾚xd xg(ivnȗI@.O@V@k#ʃ͏7EH]1?qoxZW{ZlA?T +*0͕HX`8B~BN%Kڴ)NAަa-xr^:l4"','[귘tLb -m6mjDo"!&țbR˽OsWC0ȼ PP=o%sh<fγ(!7)r.mo"j> Ⱥv{)`~ghױY2CHܦ:ҍPX*Z@=ea Nr+!&Sk/%l{ lW'gXbRk22#_l@xj6eE dT@/dP~ Na9&y'%!{zŔ__CFf@ zvBKCiTy.8Z,S'Ξj.A[ rz30<bnap^A @]YTUn$vEo|k[!:yD+7zJ"nCǦ}3RL`3L\D>4 hA"& k>A 5:G]T y*}|:Ccmst",m~R WSHl8'oOZe&{' I7O&g&}xuɼg3ldfoѿa|.l&qkE{mDq'So.|)F0 P?͐&>#lS2k(Shމ h?g1g?#w?Sܺsʞ[uu"t>K%?F6RSB|? Q$?HH EqU.\jG3n $L)E2"'䌔u \wEIG4A(W8607T bR̘S"bSFd'\1c͕CZ^A2\CЩbA^da %:9-1|j x>aApO^1(gM+uz@%Dٯ1+8 hm"! \!aE*Z\B6g+AU^u%t2}s ɳҐKNG}`U'ihӹp€y%; [3Gf3vQ[n:V5u#Bʤ" I0'hF\gOZiF.s(7(c8lOʫ5U y{r)J%͘E6aa&[]U7-!ߑ@V; v[f8m3 |g~7 ? wm-=65xr|@qB{gU# ̌L%G څX8÷^gPuz(MԘC93rM c&JәXhyGW5 aƟ+xa;q}2Ux6@NNLf @I0Xhb.EؖG:[g7B$ Ibi%摫" L'#̻FJiXwTwk-ѧ|4n?)3llIG'Wֳ_~mO̘jNҪ2F4fZs$$uҝǪIRw4Լ3m{nu)Բ1iRw?,mWk  m[nӽ/˩pXg=jkHt,_Lxom_C3swQ?[<> )][0~M`NYja҇)zNxBլVo!VL}Z܉Oдwrʲ;sVBЩ7Q. ЋnAxR`X4eD,5'V{Wߌ:Ffq#-⡛S˻iG.铌o}6߸21Q*4AڈDyWó̟p߇7ǾaK /2%еĚ+E3GS_[VC>B=Ǯ 47v_/fnol!M "Pm]:k;5V@4/Rl'Fq8ն%t%p%q7<ɯJE &?>'΅0xuu,Mof2~ Qˆpie6+a*tO- w@\uoеo,m[4n4@H]LuYhQ<Wϥ-TmoR賧~51 Bpo`h#^Fk |ב |: 칫0V}G1sC o['ЇR ;% ŀ6϶`h_9VEl(}s/j%]П8ȗJx@hPd0GmⳞ@ mScl7k%D{ P'gBX^@涯[5bs2 .&bWٓʅ7[tQBmljh: v>2l0xd^ vxn;s6sښŬ`z\C٤DkSoӷm Wu~hi9+tQStm=pTlP͓Ϩl2fL2 PX/ÜN2PJM~#֖pKӐ=je%^cboq_$_/[$;s.|ԙ>bY:n3uRA%kP*%n&7PM@4t窺.T %p#-$کӿ D仢փ˛[ZPҌ'2v1j vz&1FOoŊ<,P~ CdLy{bS q|%{abFd48`ҰńruўmS bHm8v{&5{#O̬$̬>Z|m],5 os,&O]zcaϻ)">qZ옜3SӐO,Co.ER j(c%Wߊ+m& m U? ]}=2" zk*^.!Kɲ`.H D;br(iw_7BѨi˿* ~.M"g40ϣMhvѐQ;T3hWJR 'R6H"ctґR:HQI+pt?R=`I â4ۂMg0ND&-dgcm,"TS"TI5}Ԇ$T{DU*n+hU 5]nf LQh`Γ N#af[ssܬش_YMҹ1!ȷ2H^YA Jq\"(V0܋vqAQ~7YlKCK|aܒa{vu#'Z0 dЄ0լ{Vh䳱]Z`[PfDQLrD+*ݦXU8+Cd-}M+ @3|_@;n ASUHv tnEl?wn N]692ca7`&po<8P /$yl]NO7)O;=VsmS7(6> =ĚYّ`ԒǷwnztqgCQ*M}l~i|tڣ!~ ,t\+=Yf'|Ȧq)2{ϥeA>+ԋ]RNRXp1Bn @ CRjR`NI"sn\mܠrp2x W_H[v9|QD6n[;7!%{ j  0TӎG@zE-6#Av+mL0߸QcE01ЂU,سGN )AfY}fΏS[  @U bW8~IfW&"e"֩wMqP#5V8@*8 3r[fXv6{i>ѧj@24zTY]z\Lw>ms+(W3.N߹"?U >ٜXr"d5 5f%{}6Cl( r䬯+8BV{-'7%x J, dԏ +( >#< |l=!XmI, Ӷ @Bֈ)hk[Iu9mPdG}My?~b@1ÿQ@F3 S4 fYEpRpWSm]{B }A^F|Hi)ޡu^VCݮuFɵz 1O MGCYq52{&@ ƺy؉u\u_m͖|JSdz9Tj#Nlm1[G X|=j'^'y jXF\ w4r#=&]VO*Sf7]5W0l50-<݌ry]6jyfdĐC6DP ֊ZJУFj:Ru/3:*؞#=qh4||jQ{J/ *Ԯn(@aP}aL}o\Ӳ7-B M'͈%Y 1Ii!q+@@Cb7]vbXJG(ۉyfup`*e;.j7#Xc%3%R~D=!1aBT)rs-N`kÑ;J9]B&ˁ]FB1F$^g@ \J"! &+>|H[ɳIIżVB@h=a2 }h59]ړO+ԴEi R.~7rX'xiF1݁gT?IMJsxZ{ Qlc MGoؘ+z&(o Q׍Zފ-4HF/CF͒̄QRzTf'O' ޅZ<ềvŖ-s3~6  >Vs{kn1h;#4#_+="/ٿih=ϝe耩|/2{ɱm^BkAQpp;'f*<\mkK)0P@iOTHP^2S܋YBDvL WmKn6+U}S]NoȨ'/'G2`/ C Φw@'M8ʟXDW0y??{췔إ YtOQ_~>uaco]E׍o؞\xo&Cfs.y`WG"#ۮG'ф) g;yДŽ7'3GQN1V4xM2:㝍CE9O?V17ux[*9a e(#WѵrǎD6I|;]iHG6=;Pt ICS$/!X[wн %p]loڦ)篫ڒT_wז.3+`x nCikO- gfVOu*(n> 'ucB1] ͵شg߼c4&;H~˥{iձpyG̼ΞVOIVӺڷf46OP(%_ItaIHaUdٳ6B] |YOh4v'>53-s1Xuɹ߿KVQf}IK b, @}}nhntvUtC0n^$2l˘=~X2z7>O@Hpo ` zL2SveS A2!ݐe!VC] H,%|+-8Tvy_ g塟sؿ Zt nHTY!7zijMdy1~HdjEڀ)t붘R߲'\]dnLy\gWВlAN`0ƑxCvLJ6gqOfht?_&!A` ك x: R!j̏ 6~NnԉQ[M@6XUs5l+E2e;  ]['uPT!D2GH+a-}Z>'хxǕm _Zf=Մm- 3A&Ȕ$HTDp'JnKDKbٓtwL4K ;RiFuoSH!wb9mLb* rB@$hFzdеHJjNyha}ȦNi^' 4#(0qTgHMByyhm43AYC2W8LDh- (KG13"[OfRf6|C?<!Mcp/ n69({x[pE8} 4!LN: IDAT[GКx;Yqk2!u*Ȳہu vd_Ǥ'K+u:/k qo; ۍ,hPr8u|0 i/&0! *=B|ԙWƌsT>ճT8d,g2sհhwZQtmwX1"֨ *ҵ5DPE~*¥jI*B)udHq7:7ѩ?"Ua`C|ƌ׽JpG+? _Yh@0uEx0!sUP*d$1,l:1:ߊwXQMߡ '^ܵ&#[Уfu]A<>I} *L4u`]dsVN!+R㙝^XGt#-xڏ#TO:m& QhBv3xhU-lGZLrhr@=h.;W۲,tÑX#\* %7% WC`A-> ihxZ?"}3KfoҝSecلMA7ڎLvNu騻Rnap7@Vqn=ym؉$:b@&O#I1O'ZX=8cARܤ'mvV ;q~t=hjFa$GԹx :o~9YtؕAɴ{I x5dŸJw7Gpt2}ijMbq7`oɥ7liG Gu2V.}EEn7Uu~:y-#Pw(r+X<Yх7({03 ̓>~𥙝`X}Zi #? FY?iX! ofL3B@VSӮ3WL9ϫt؆4GX#-$s˹PEݱ#W4dw-`:'еh*n@ө.ՀiS@9l)rC~VXV|G6r ІڻL%sB2PM9zǤñ\Z7X&{;0=!J74F-,ZNH.}\Okg؝n 2ƕ: d<0$›48B|o?4<F`+p1!D֨ݰ hSlW#+xc;ߑd3TiΟBlQ|QUoV/yvsuK-]Λ:z_.vaf"?C#T P\/4`tzpo^46O:VboS!ӡp8#c@ "=2{nYZMH^<6  cq}p$t$ݖPlp `PEVEFRWv[S;ZVn3eaCQ~,Z2X@rnZ(WqC/^H% Zs]@Т P l7b#bH'D/(&ǡXG.i <'dONtg(D7Ңdкaj7?[$ hA9@@uˎ'@"x~!_.ūVGD1gpDGO"~wZɣbc)˳A2*V1q}n dr 5&vHcċi9AnH7$t]0LQmSFt^IGr[yѓ*ޮCUTgP =c'"y @.Qh®sD&a0yHv7Lw YAdHF\k9%#Ozq:) .8*p3߬b:jaC `^TRSlly1^mjj\Q`uoԛjw``?(w7ڐ4ֳA)V?^n`Bb`["3}\BbuY\}_t; h12 he|x;!p.`F r6kf?+I9ALljr?SbtT  _9>G!l ԠaP;uP&csS g_WAP5 kvt:}lxKaXf &vsseflLjѳAvm0yFj\VvWOpot̳y%UYQ v{Ds'M2 =؆QdX3)4]_Qc޼oPrU@mx,T]wੲ;t*(#4A9fѥS5~kAwQգ& Gi锺CF _\|sv|7A}bdĈ17au^ahDumzwLХ!)3`vD[ T *CE14b_ӄwtNL1ݓu ۰ MK(=0ɫt2I칷[Ѷ5X "ps}V:?$qw$dT ~۽>YpȦ0Du SACۦ;;,˳ dT+WzbڀjVq'~;O.ь^Tϓit={{exO:0Yi$ZF>غ9G,.ICmڸ򾩅ݎ E1+ű^h 날i(EE WdXu,^6zC2Do:b,y2!-i9Y%0;P _<0J~#5v,w+RqTzقKɋБvM~4[x[) O .Y*Lƿ;B⧛Vd:臧 fUڲ $:`ihX=a!L =3!Ճ|)h6aNOnKP6Oџy5܎vcoO>2/S=luim~҈<: $/ I)aV{c`, JX},Rn&d@3@3@KNLQ>&Ӌx!t/W!x_uk6FL֖77&nž1)N>4d$a@ PQ]iaU6nz!xRv0QEMȯYt򰐫E~ 6x.:(+^JFSPUݎ8vYsoY8Xf65'[35 pfG괼i/<ڗ&s. 0K)vK'\xgb]L7I=v9my6 FR契3=tnD6no P9\,9m;F 1C(8D~a. `]fx! EG`À؊( EOigQ'Ӧuڰ8 @*&)lvMK,x8Xҽv,a[ba,Exb Rdo+D]ze/аc^pmJV9 Q|ph$ X.e% VZF%4~L5a)ީsaZ8AP#5 bfC:KQå Xȉ* ^ ސT.VV(!D t3?Y0S#W!H +^14N|Y}S#8z-(|NN@-L^㚼HB$ H>""Rx+9x_6H:9赚.~JU.Ho[9G;ˇW/&7'(ap+'/ݗ;p6@{X)Lsiv`[6N`iXhyď3R#lkT%_3n9qW-ۑBfVGa`4c*cAXhꐾͽ On$ɲ-="2dUѹAO=I_֋~A/App=IffDHsC,VllY͖-[d;!Qcf[ \Q6ug!jgp}[j )k _A>'m\'Tҋ;YQz239C ji*< R!BJ35,ĵ5*N \D#T@Yh/< w]gam)MT ZXĘj,fb5p\  @>b(G +Ғig$dWi12}ȸGélRcppc+"OL)N8~){115jIAϜu9PdQ\E̩( *4xW< %֔~Dz/9y 1@nf8k:dm< Is ġѳ0TQO챡> Nd%nж-Y$x.6E5+N> pwSƪhp#2T7\h7v=0*쒘f'F@|Y >d(hgT "vE;iyp3Jg!4~df*-!s?UaV.N) J.in|?0݊ZE5JI"f#f`OPja&>@+q[ o w>v^^!wҨ,KK[Z [2Aj3Ox'@cĖz( MɎ{yC˶swu\bkҪ SkH\7m|9҄@ i(]b1r {@Nh02 Yj @?ܣjH?1mG5?@ Y`a`±1h75ohFm ^_nghhM?{hIĤ#8aR̄'4!䎀6Mj;,hc -txk˾kdQI{Fu5Bѱ"y ̔0apXGj*Rm3e=:_:lfoI[Քp5 5f0!3LJ#B2dxR?[uXii8v\ظm9:QM 'E)RxO񘛚_QuAkL X[Ls!E U-9#yZ b#OyKULPurCщ X\ZIc£P'ϟan).v)>R: yDDэ$h׽bكleZ,bvsEIא/rdU Y?~ lf+?3|@ ^LmLAZU)U oYXuc+w)$4h"e J ^b٥)h*iﯹck`Pl/ ;Y3˿ R*I?%} f`-®ŚDXH &&`H1|i?OoDR.g(|2gjk{c[v[}0>M -0x$YJD)@Zi+x/ @!F24RDE}U=# #@Ux:\XjW, <;4 ]NG<(P5JK%fg_7|Rtۃ65LaCg`GfS#QvT.`KR2-le"4V5pKGEp{$7]6[8{ E7Je0*O֧/1d)'x3tp@񬠿}Lg SݲS6p4} w qC+q8t/6c?<fGaBmIOu^c8[,y`) '/F1D//i_ݸצ$oQ[i:!i,LWLȞ G NSj 7@its|W LhcaƎ/ǒf.xn/)ff/ tU[7WݤYP0` 8Ԍ3r!fEֲtpkbm335HAWeK\xd2=mWG5ŰZsfq#_C@JH-x=i ,^lM $|n<vOG*pq14_dIaQPPJ* HLEK: i䆵 |t+.d \*Mއg6 UR ]:_ӳSvPN Дo==ǹYX5<rT ˁp2e0ʦ%LzZ$8BQbp ޡ~6`7@=#40 <طr38yXK揄 oِ ƒRMndi̖A#_BjJ9ACr9_SSd-6?3K#Β!zb՟~# oCPԗSc!4 $7[;t 54&W?~J(ޏҲU7( +K 3FN :#VK5Wii`P54xPAAM!`!XJQKih>A?d'*jy 0)20 c?~Й?N줥5L fk2ldd[_O}悌limV=pZ-fwk}qrNǶIa'rg~~ΨdZ9"aN&gxf&ӳjfG'T>:waYÿ>8d~qR0f'Yl:qj473/ZYyY0S)L m f D8."9g=3{rKnݻtWTS˶/ ;c[\sSu T(\Xܙs8Ho{9KkYpM')11#ICKc[Jc0`r:&eLr!5VKhV)6yu?dp'1˘'gjt%;n0|mBpȈxɱR- Y'>,L\iK ΗbS-t~t*E?x #@Xl_Jhz~=[y'B%=Mvޣ,UIcoCA4rc*4,$oұߢ;xaŌsd$;>r}6Z57 yc0FNf'5C}} >.|9vs_n,6ɽx"@W&=|Vɬ+,uZ}Ujodxpڡkz`>G} _ԤKH*.2yXgfUww—*B%:Pķ;\k(?!c{jhZSY=fNKug;v2tG#ϚJGop)TOI&{֌=L rzswMgHX67N82i[lTҤ&o5X.W<1])#?{5e^mk۲H:.o5wf[ؔSOI߱T,*L$ sE95|O6c @gGyU_'!ݗ A0gűi婴&z>oJ|^WL0PbO'?㑦v8.afI՚HQIF3}g"TE͟٨y )uV {F!o7# 8gn+y %1Ƨ;vB89j^(n4w8D|=z)Tt l/L7Q@dK7L}#Kmo H/4=|`l]nZSKhU_olxl3y!-y%[7E}al(jMt&Kr${`4lŊ]2AVd'ߴcEU,Y+/Bz5meT6 kk#*st̮XʹMR'>sl}DqNvD5t#qٕJ/;lEM߭T>WvYt`PmGVH3rCfyްܲ6@NdCR%IPCsX9BgnktGskx sA~G /צ+{p̤;$@f`i rZ|',lRR8vWF5x̖(/ 6{S[ Yeյ~O//}ńPjmf_7dcyZ ?kmxɬ%FgeQlkɁtrT{T"(Wb ef9|udI*&UW6m\ebݵNȼ+AoT<ӣne#CH=pfZ@k*]:V=ՌJl:'U}FB⧬g'.=tYॆeOoh-E)x !9/sϕӢBz6sjL򛮎k&3U)7AhiuYY{GgNŵX{i}bV"&|yS:? 4rսkMW]w4~緆%tK+ug{#Ţ^cfO[񗾸fPh$,-3V:HeTJN;)v,t)m.+΁*u ,NU(=j[j|Ort$XV mX#VU,g'ꜞa!#%)w wEsaU%ڮk~UE|a130\2: _J+1a %iFFQN7>A{%,Y+-2{^_gȧ>ڍ4ԳQdV%FT&[J՝7*sPg'(P/Q+Zv/|l:6ﴋ (]|`}{N/4)lAz1rO\m*Nd:}vvmB: k=ːqPq#NHMr};F.V; q/g$}h$>{f P?X?m1 IDATv1|o͉958!ad1B&R`%PsC>8 {NWBR4uJ*=kT mg%e,KtohY)6v>K_:H҇tG:l+@F-kȝ 5u-*5kFe₎톑|%)dN$gȷJ8T=d#);.kw*۩ '98%^+eZF a*ntt7E@N"5 *r:BZ&O]VxHo/C53k6IDGYpgu>a^QG"ȕϫjx{_9 ͞g^(a cT"߭5J4kHX _Ԗ+ )0l̊h0? +MEˁV#4BuTR$gO\w^˞Ɇ ;]nhcrLzӵ96[ߌo27ϔ{Z$jm'+f XJAB. }>R+A8'Vo1= 4Qig(f VV5 /h7Nɋ܉z??W!ʖ `L1OH懁әwlݺ@$Nxm*5"AU})e]aޘyAN2 ] $譈#V Lh`rH3 IҼ{NK&c]ޗyV'l P;rm8z$|#E\{ƴ!^FSCE)yea Q5;W^;,癑%$Y|:2f6&ɛr762ҰPuy|^+5pȘ4]-\!/)U6z-65 :('{-p^'3NU$U)♼G->Hl<]]'155;4dpZ ;ղӛ%U\$%f(wbXi PX&f7=fddԗYMɔRn+pdʞqnphZxu_1KA5̮sOU+}ĕ>1/@s >h둕O'.WwbPǪTYۑ%#lX h ILЄ[sVќ̩'PÒ5[u'xn9Q%YodyQ{PlU*2;ι aJ6ϢbÑu嘇.v,Wuܜ6WGiv4P,zhooA `hX":?'HǶ%PEE>CmrshYٹ_8=m:ّRkai78Po|@tGlfYS܍rvd$#|iu%ߝVyT5Җ gsDh_f-TC[rOCe*ƭ|#?^O\-Y[4ԒӴjkwj OT3eR1bs ,'xyndp퉃l^ьh)kk;zPJ(p4?yF:9/~%]$N6݁>7Z`.-#ۿ3cXS=WLg> ;EN̳K5e#ꩴ,w2}2i퓛r+lGȳX0ʬZk HΆUCi5&5k|úK*ˮ&%މ*7GJpγg;z@NTڲ P(Ļx)E|NvWxf}۬OW']-=lw҅߯pta4'(<_5c|_;W"8$%=`!k}ΒW@"0c;6dKw=i)6=$,q ymp(M%.+bL ]:)S1KrbS'FLXұ6푳S:((_֌<ư@M|mc@˓C)%Nd[6Q^d'5^&}C7M)i>3q8,T)&)¥k3K|V QeF3Ԉ~Q!ah*, ;V6Mxiod;" CM` W4Pe9̻JObVd Vix]'z(;|?r5GaDb±C:4aͭ%OO0@kidZRP tCD}U9CjJaO(K XOdRJϬa7O͐n>P3 r{lrIi(),G%IUL̒Qj nW'348PNbc%d[S__ad]vOn WYZ6;')#fGحCBAs4#Ky]QEZq+RDw݂Ti% GDF6gG O"w,k#uԾC|:jܯYjoxi6# ޙr"6OGAҰBrB Ѭ&t&[cyC/)ŷ0>m*)?/fX'Ҙ)G%}<o8qTܧq GjiIʐ⹤q NJ~bKH@? Xn|GotQ5Z@uK7|c_SOhՃ< [W^+:30U*[:ȧw$ql(0w>]dvH L{&M20JU1 lvGu[p~'|gj#,:iO$6=.`k$ցFc yZ,uR"@I=~cgdvr`fô6lh]YmJYc}K*:W>F#syp׉jC=DvXBFw =K@X[)KM*,}ciwٶL3eN&X<4RfxU`K[5|t) Y6W䡼;ҏJ2`ef7d9J[*ЪS-@o%ؘ3 2䘐 +2ZLc6FR3 ޶]#/k a:E~XT/mokWr&(MNjl:?VAr_ꉃ[RZY^ k5d&͙pmC1 .FuάRxY=\&Nu~^ɏٱ(}ꙙ.e??Msf^mnjF \v?q*f\6ߙvu3A']b=DnPT7/R,P-O~rR:=ΠiBG bA4u͞3Sp]T @1"3 N;_7| J+ݲBt=Ԗs-ů~bXϼZЄZi{9P׉MlbTɀs jp('ps: d2Ҹ?eum>'H♭i3ePjد˄9kszcbzӧyfhRSJ'bSkN.w]5o$Τg=}k7ZNҘ,)Mf.|y0`C?Q M*{.j/p+<ڲ uaC`+rG4euk[:/ym%9S&#lƫ,yfUNf^ ^ihKkrj,kM059/Ms\gIS{;rU={ xcưFWU0a;/E3քqbOPD!:>qdvY]P)~|\ KuOg"UJ6cY[ =زM!\n&/6y IJgbB.Lgq3Xlnxs7gꧪK̆\MN;ѴNe 5a ;NC{evFĨp':M߷u@wW^e_:,h˱"[^vAk%7"$K;G.F xRU0E ٲA LJ 6#/??.Fu-NiFQ?nG֬&,I[Z8'* ψA )`.nX[̦T;50n/NVX"-D|+);󕿧(! 3N 1pv9Z~3{ţ莰j= {yb¥ּ%~oV^pOek_cLerGw'iWk?>E%LZsf_=\[qLs\ \}Jy-hSEX( te8r!YuL ag:!,+|GE˺)hJji$y9\)iܨ)^jɞ ΏFx̙%IkmW jϋT43#;:C! KZ+}){TfxlBʷ x:PY׳)86<*A\=F^F I裨2D;ol}"8ZtdM;U{Li]NܔlľB7ΰ02{xeW:q7D:\l xy"F.[-_6+e|X+Vfx$s ,x Ck8+!F 'C3Bf FX;D1,T*gxO^ 3&^e1o&k.;uZ3'Xh$wk^K.;w(<ϕ*G4Ju +:5$鵲>Z|5Wm+\q7X)Jg}~^:M$4&+|n ǀM;$l%xNExaHU`?ד}T8*l_IPWl`^ll;p8`?ADx)(XJ\F(ndQT)̦֠ʍ&)M.{Fl^ytl 2.[z^ZSpzFr^=c}UF#Aځ3%.T`RRQy m-M;\էw7ɝT6{&Zߠ%2ɋESp\"3m?)J׆4HdyP—,@O1vz;9,ʪ]R@"jM qeںQv˵wrS|g+{#*Z=4H<"h4 ŜfDuh4l LC:ɪ;<+,2.9W";Q.+ ކa]&bsB1,5ґ<]v XO4VczE<_=- iy8z5)I&` ,o#sfA|V9J8.K?WIGyƆ&}4`?03ZɹJo]`>s-{rZ, e3 /7|&b I[E UvEّKԔXq#˪ˮYP޳A:7/2㨒))xetFp ͑7+rEJn/Xb)2_{ӊ&ZIf+p]:l*pp(İFAaUU'G>SXXg8ɦ>|oj[~E糿#g% ۯ=Q6"'Q$%,xKāpTJ&U҄CfP5Š.FSu$BGZLL/EO-9(ݒTlr:d]<{3 j*~ ,Cr|4*'QqKVy`2ٹs [)~%$ܶ #k"^ JyYܓV󉓰֭N),!'ùVKѫY6R{JԡY?ZtRBdQ%t P1YVtҝ{aMᥟ2喰O3 [6o WqW<|_,TqҒ@;|?'N$WdNzHOQn:0Iɕ)Avb",;.6!#+qP#OD$~PFnkaQJA,hDXh HDOK!-$fm_9#zTz w-RJ-9g=-52yh t2$Y948guܶ.WؓIzj:@+q`5/gZJn[w4vl2O "DD82|T/$A' 1}X!W8I9M=0pxY+IUX_3#G?冉T fӂE:QwÎ+e+e)y)43R?w3l.޳K˜3NmB_x1/0s8YΜ#%yA#Vrhӹ%TBQ:"iV8o~ M`fe7h"U`%RoDM?;4`l摶,UkɈ -'"xfKv /ǽyb(a%Ӷp8WC_u@2Q"d[;ÿ1؉KiRa9ϸVWMG dbdzvԉu3qnh{VV?@S W,0{Ё@ӡg9vkq;fu*)yK~2O>%յ=d?_X*<Էy-'N_ (F@r]Ê+?AsOCK/`]wfVe `4Fei(ԐVQYLWk2j#GkZޭy(RIXiٝ/eN^0+ 3 d/y^QP#I%"H^xv6u`"2`b(^ *)|U:[fttq=UiA$Po೶I\,Khsa$ski:98]!nr|꿀[vBbO82Eo=ܬ3OKtO|Tc d#f3bV͗gJiY7r%ɶjOV(O6s UO\1FvǴ= ~Nya)8TOoi6N3ss%H^=FOhiBG'3H~\S'`-v>gϖ70d 9}C3qYwk݂,u2%i0d=@5ІMpOT8c5yjҕ$yk/gnۯRRiOV^.1<|hG/%DW !3T}} ɫDLl> tb:mWďMv P GA κ˃O4˭HgA6Xir`;0}㪧Ĝ~tG_t5P둹X˳TonO V0f](X# s9?.~p?ST\m"wn:8R`NͲA)]"%VQ6 Mjz|x=lAE/^Ly_\u+/Vs|0Lk8gd\]?dr^sɸD@+O{9Vw03X˱DWwoS1PW7a~ϑ^tZg gvdw :Y r‘CFSg=7|!Rcz3)_&77,ηϲy)D֡6J P)*I>pW\QC϶X{$whOvY" $D5Ԡ-Y\) ҡ^!J̰6 #~ AD򌄗ͮt-uv0F)Cy*k]ܐ4(HD&ϠxdۑԼcz3N=<料R*I##籤>RGb+dYYSoW/&#Jcc`!x>]q_~◒k + $3͗{IGo'3=b֘`%Rin乾2udڛo2%ldbW/dOγLn2-=3^7d73. φ{7c[CCstm4}4fˊ)Y"5Pvn% 9 *0{hC@ϒ?tvf3<=,n^s-kf?Ʒ_KD µd֮lh0d%MeKv/>odoS ȣ[;xۗ&n,9~fTKA i_՘6;vӝ{a%®éPBzE pCӿ _2;&mOάg,'pR~Pb{7KБs *T{dUKKKVfxT=m |;jn׷fP~Bm{\kise 6ڟJCQxLE!s1xppQk; e5i>$|.j^  /5}ujW`_h?m\Œj\;B~6V,T& Iuv'~Prټ"YkW<ň{Q/ gެּ]dQ; eזlCe-w }28@4ne{"d_u^ D[ ķ.u4rwCD8gw$y2/)WPy$Pɵ\h>+|z˦<g#ª@F@Fӡ۽ 4H C IDATMN~_ BlsNœ5U/)SDݗQ,"U_,)) u"&RFу yFGo߮T4nC:>LE$R`gcrHx1 sǰLE7EY6щd/ oM\C]gZP}5G`_-Crǫu  B2zvYkF.-TbaxV%I DQ< if2EI/ d˻¨Kp;e#U]'hl"2$<2\:<20qZ~(0wf7-|%$Ϡ&r=_A\;UtuS' k|/ A |SDtSH3 C=둙 ,ܖ.[{xطgvKJ ڳ웅X\0FH_e{~-&քdT?@N)329.F7mG rNbSЉ3ybyKajj9`U6*0)wq4/)s+J83o"~mgtSEt?<}KCjCdf{uP3MWu_{$OXMΓ7EDP|NjVޞP2Юv𒷂ܵ_4A7n_$@i8 DvE<9ܥF?"j5sF?Nk0Ҟ ? /%cj[v&wZHr_G8*{G}><}{wa8.Uk#yP{ga߂áغp8 0iXٸ܇e__.3pI՘|-i<_. 9+X{7 *8{n~<oxHS5w4i\F(X. HVHQ4^vc9^F͡^ܚȋ <&_ΉN I> <#Zk 5854C=2y[ה̹$sHJxII\C7V;&Me,`Md3ZnO?"iR zΥG<%Ƶh+?#l~J=,W[,GBދt7{2LT$^ ^OEYQK#H#)X'n8j;\axZzCO%"9ղP:} XnUNi:h;H~&sǾ']{!F>1Z^톣[!+\cQ7/fiHu ۑ#7?-.yeN5JnUCR}xIjfO@8*UU#4,s|4yRWRᕴpwEtUHFIB)W2ma:NP@P .YTXLdrБhNR%Lj]Uj? GT챀ZV p ,l& xX(#|:YmKOW$]4JIw$nD搙<A`3I7DOfYf`Ǐ^fDHm4$m& ~GCySPb2MW)uNT*؋t Hn-߭eP&-(9T~<?3]0= 哂ȌLZᶯ[eރ +ۉDGL:技}%8u *{ @ʰ;S^~L_>[hߡ21NF"}/_9?ʕDܑd {Zl9ޜ7{ ^~]Y@7rVHF.:ƌ8I) G>y!Z>+2F<MGڎ%Q_|@~xSaƍZf].]Ko&ĠVŒ'TIwKm /5NQ EHP^ȣtVi`&JH,YR Aʗĩ!n:G ~}1JK Ogra|<<p/<"jd2qTę%rUa%f2 \үIXTB)LrՋ<#`JBd.`i)"Whb -׆.U4v%1L2y]j#KYCseY(B xR8<@6{%r|{9'n8Wѣݼgdwy%rW1X *'iRfȤ |v"-$7۶It`J?}ue^h'_~x|ѵK^FӾHj5IQտ\7nbV#P )E2&I0d߾@ܙnٟ1i"?U-{;BEMaq0XNJuF.d?.'o.E(We'?W oJ6^C@9Y۸\̮֨Q{m6ZuRŕ5s@ԧ˄Y(Tg~3|{׭5c,^2< ^1! R[ #QI{Sӗ=\3Vu\A\uԧ¼T'c/ed=TGډs-dyCIH. SyA$u6{\>?;8 ݷo. 8_<M^Yq"$YIpS f$}5* 鋤y)'1x8w1]^ *ì@2ދ}UAZ#QnT8 coc'դ݁OէSlWVc:~x',qԆ r7ԪjԺFmascH!s=g/N2#| Dܻ+L%;# ~:O듇~~}ǮG| 2˽"ooJg .+;hzF46rӨT {!S.uDhUyo(Axgwg/#_H0Nt9 i|};E<'|/MR꩕ m yCV}ĄuDQˍl?pW! }DQMǗ#,:dO\6nپb3yO?|bzT =1Yi^;O@˻v2[{V)yO>~7)Z =_?vmDޘvWj!VFaiTaa/Z/UWA?k~{4qH=+6RF]8!<AzӺO4r~ܬS޾iY 4/<sp5P%|?>' .Pp۩K?C}/kC u.rNnN^I_e ̑e}EWCiB2PLO!_nKS Hvfd䴔B\!`W׷Mz&3+1@ި85]n+ В)<ӛQdngB@@g}'QGF؄W-E:'J 58GTy>=*4B-8]6V.GhڅW?ep06ͯ U^s|qZ ѢjpM5%QBCrxy}S{,(q@!nǣ}EϷ6׉#MA{/gnHJF,#mzudLItg֔NHKR8Pf%M$ւl\%"W:mctU GaOHUed0mAP6lFMw$Lߊ]&<)zcj IDAT5/7mM{xcN\&ͫ/j"y4EI:̶Y dNXyOgp}IN=0J3(Ijk٘&dA~ѥtuL}r xwDw{Z(i&]2:ͪIN@;UI5LY*`Tkvtd/q+͕hJe"{u&1J9{*cH8lJ%NTvA ',H&!8 .0"{͡rG9BT^s;8J:<#ą$R9Uo8Yi8.!ZHQWDf5j&  "BmnyMdV#N!4N&򼶈|?xAw˞]Y|_y$<75ŜdqKw5~S4ld͚ݻ#f Կ<x ,qOf<ɕ}"L7 P)Is'΀ jԈ3 ͼ0ϙR!uU]̋aU0=੦8n- jf"E2=#x\V߭O|jԹ eZ_\|wM )Xx)v wcѾ]HeQ6"%}`euf :"h\sB<-"%0PX5jEB@P.0jIcɱ$ xAjQh,l>rkGnG$g=xZhM^+mw63r?[c:ƨ]?&IGʥD9 y$*ɝy| M_*W/J6T3B-4GBFle}܍դ-l4Rd2}T7L=?ls0Dg#Ip& )HeEБzI'т4Qhbl~@1ZEHVy.-q2(aDBKEH. eT9seD~,u7;(Dޘȴ*+XA硢!Nj\J›1k'M}\;D'mr9Ц.n328pG8S /VjGq7($=oo7~$X=w[$ _Kso[ϓHk/!KoPD wBdJ!s9EFwmxJN±r@ЍG&lbO/|?ڿKqC_3,wNbyBSMZI8F@Ъ'ELg3V&rpx;.վj<ķԥ%x Fk$b&M<,v"2 '1fJgP04ppV6kWG^m~t%kVWHH֓Gd\SZm29DSH?L'XqAfR2X+B~} /74i'oxO3nw:* Lk\ANCFqLr]*diT{uk !Y>f ? #c> 0Gf Vd_dy4/KSU*=ɫ}BKaR~}3>o⫎@"u_<@O䷎<,N&*uH@f꩜f9ᗒ]YD"HCwkxsg!ϨޖT烷 mk56Fvb}e>h0@$ _RWp*,eD'&b#;hJ=kk2n>-X0;Q .kum{c)N`Ҡ8u!3gnL7:!K5h;FC=h#?A݃#yi].iT4huXmu2}cW 1WԂTRGuHXk"8&ݣ?F/UZU6O"pl=oh.HߜmIYo?L : Q/kR2K~Q˂Mwy])栱hH:Ca:M۲{CPtePQ.l<\RDBeg?U#!NdyƝn'g#?ꤏ,?e9^x~}oͧ Pduݢx ~4M;(No&˼JE=]h8~*guU-49/84)΄\˘1_:wA@C9gǰw>LvK ts.@6 좎ag ًGռnϊ[tyJܱEG&6j'QIo7oFCEks07ZbkSXG5Q9=z)ˁ j3̒7bDَ; N>k\zMfGܻphHþd$ƕ}Fuc64o](O{vMF!s_3qFuY5pD@6) ^ư-ڼBF=~7e;qĊE-hthfD:*E5P Z9MݶCMHf0`56KAu E9듸ͭ *6}qL0E&3%qhx 7E j)DڷihY vԼӫKՀ3 a Ũ~¥\X0;SB.m*%W*Յ '-ܧ~¥0f3/XuvP2%3__Fު%g{5jP"q f5I}=șBhiRJ}|IKd>]7o3#FV= ,T@4SQ z2U' i -h:uXsC͖r+qdh VlʎymCBfA-jZ.P$Nv-8lR?%Ϛl72sXm W@a6wA%ladBMZ@4p@$mU1\ EZ8&xX~)gp>(b,:9}IB(uXɋ@şXAYzK]D-r!*,%HdLQv؀&S{ "ȩskp3t]9n%񟠹#7&QAآtޕYU"')q6-$1wW56βV&"HgX }UI;4tRAyyZ۔خrCj_Hhr)?ɶy9@/{rYѣ uw*e R>S[3G{OpEEK(^9bj~kՋ(AE)?95AAX| v{f ^0sP+8ʲAB$P#M6j0[4V/su](uḷ1e`F6.#ש4vxI8wM~0*riNZ48)$cX]Es !oXjX۹]Us-x#ϛUHiNy&#:mܹ<@iҞBۢjs_ U 6:$I o8li)# Pg/ÔzzߧG2s(Mn"# I|Pg]9q'xCa@G/ժk-ZOߑ Y;bQE>HxGX]nRs4tbRՉG5x&Jh6-sq$ښ59/G.pCev@Ҧ_#dE]7 I pq_F!u. 8ܟZ%Ÿ_ᄭR,=쫟 Y#9eر4.SLs$֐o(JkrMM2iTL4/U@Gfb1oy90JX 6#, /dr<įL513l?I5M IDATsD8jIhr0d-)P+b8s'@ Z925p#~Xp Dh蛢>ۉ%0r/\R^`p-Ӛ`hIWEm _$:fvSaE58}mj,[9 #/r8M)$>g irdbH1k(E.t}fi(961v`K7tkʑ[oH3,к@䢀tt& ndzl6?O=?Zb#ežވFm0ѭmX):=b*GR鏃Hp9f:dffW;hWc4.K2~$U֝C; 78ANq#_M7hQ5tf27"E:l!jLDje᳓)1njh:߫uNb6(q!mjœ!VIyDu‘;N\-f)cyH?÷ ˾~~~S\}O Pߴ~2+(u&AGѯ0t9At9j|7 Bn{6 0Kvpksqr72ʱmBPrZ#OwzFto`qs<⺬+qZrZ7e|Z;-RzB5 {[wWaR) 8>Dr#5R2 #u]& x#xm'.b%(Jv?~Xt^Jh8|K2+jg"7(="[O~+ ? #gbpG7P%lu4BQ@;Ų>J.eAIo/Dp5\3`Qozñj4F*#L[hgKV>bc|9ϦUŹ٧~ag$٥$t OqU>Eo@ïgEs;pĆ7+wp,o.rP1<9iRoARTNN17K@.Bx9!15;H=7!Z$G'k M4_ bI"OV >3|#wƗcw6? (g.X@Tkx2FGH鵖q=IjGu~R|-@6e:w4"|qi4{6,xC 85]0.Զ0.sA.T B޷"3)w.8x:G+f~̋\b} @Wsn*vnvFȾb2ls&+j&pÆǏǎ졐yukd ^U\# T a5OPʙ3`t=ע]԰M*x2 \u=gzNQ%r|qfʲH+Y頡Fg:߇A# oeG:  qm0eӏ8gRb> ]kA;r_ER,X/?/[EM0~-[4 9,."CRMm`Ax=:w·]$@^rrd{s_HA lśw 95IgjM.|P䰦)paڪ0(٫ԋڢ*}N[2*.\;M3[~ϞE]Er+5-Dj6 8Gx &;Kk2hdF} Hq65jY.<]ęKOd{E+j_) k]vyX¿c %:[Q,]U *i$›j.ߓ$IM,7SAm;&F5FO%g:QL%+=9!ر$n`^X,iHqgBxJխo`&#E78Ps:kJ47o~^/G{`+ NM`YB(YHtsBv2oEbKIWWޯYh/qhLVPƴ,֛`qA 4kb\z1(ՙ \+%K,[*ͫ;oEרyXiB/-}p*Ypz"?hU>+aܜdKDϿad Y\&ﭿ3#{W smo&:jι 1MWv )j=_No M WR,{'Qig_ 8<»XF#dV Y^Y&-S\8S"4{[-]F9؈c.[fؿ[/RC0աL,4 ͉o\8OZΞ|!(U6؃TF*bfId$8~J+r5D^8 pE275+ :V:Ggnى`h^S+$?`m0'3Z(ͯS+UKqChWfoEB_aa@OH:EeDnc}-`Kj7G,&3C2h-Oč[d,ZӶ L/;;l[F1?V?a9Gsq._"]"TM:f7.H:d2Ѝy"^q{q;q: h14ӎҽS>l^ Ǐ9⸚GBNUirDLAr ͋in}{K;<LўPF7L*yG*f٤e{¡r tEћJ4nv&za[-)wƠy;[+|dW,ֿ,k8ʤwylED!)>tIbʌzQܐnNo,@Ψ/lnis& =_?2ϣsxYOFrem]p.A09U_LO9f^>iXIqftKE4sr*NKYԚL&%'[}ӾA-­Z /kܤnWq &!#$skJYCc=IίDۆuW&"odW6ޖM ٷh=v.݆bfKMoF=ޟWr񯼔j+c4Qztq}8I|, R]737,<cG̑tF^D" ${)ӭh/!"K}d Ɉ2clODPZ2R_+9;qẄ́":PZѰ99 ?zr^Ed <a_F!O+R3N:M@G^L_Mp?:g-o#n9S+h(Um~QTcuR~٥Daϔnv6^Z]k2dJ|q.?[JDQv13&kɀoKgJn,U0B.=^S&P-Þ8˥3LH%>*lXg<O eNN3,Fb-V6ߖ-}}ydۂ(e?,=j>qwsKS\~B鐦~bK;PDNZ;vVJjm?=jT ( JK9b˚Y" 5 >}בr77pհ&ۈsnvhn^Gn'mN:82r"0~\1]1-!Q#fI|ϻu7{r;Th9@tpwx֙h^퐹zs4@-'?E>_ ˒б`:B|I\~هX[ptPf־Kz %ifqfunFc^|vx9(RG~D!N<.= IDATĉ~Ur^qz,k2jQ4rn4i܎CWm?ڞDWܥyN3=}0x[ RpzX%΂w(nIs\k,/ŏ/n+ ہ,Q@rW2Z+{xfW`lRE-W1DG'GoW7@3ܤ^g8'i}zH ߰4>Rxky'_g'FQ{j  |La:y5]K9 G~e8R$bd,Kٶ)b]gEG{?"v tZxyT4^ RXjs~<  odfvjaHӭ{|jH\ԀKfEۛvlHتG^e%D.i*:gk_ؙǙpr d؍wSmJ{+QMr;_ivHootR#G(iW7lKc1:2~^M?M";!T+h*ɗɨ,uA9B!u, Lie\ۚ5G>lwtɖ[3pϤyvq{ X [ǐ[^[q d F,N{( y+/_'Sk40fviUbY4Gꭴ]'?+Y'm-O/w_cF5gw A966>j&4~q(K}`ܙn,6Ќ_)C⢻W|~gUP8l)l/Sh ;:d=71ɮft)󆍙?I\)z:‘d].dYs2kU::skIVKMHvuAf3X|?Sn4==8QD+neȂG洴I"|E4Im s4# *Z#IN6vEp,&C1kahF^ ۚn>#-rށ"%ka.QY'tnyQuigg&Ȍ./R.*Tdr!AA;.DA-|K{jta6ˎYD~ Zw֎ކtV6˚4T,A(y`$]!c;.kZYLVrAn%'c6@#F>~#_%MZ8x_h`X PQ̒%pT!싾h 1s0lg|!ZRȟ57rV[)|i <@ƈC1ڮ{#=տ#wײ3v+Z"IļJ`u pQ;}#g kz$=tBoPsl'Th5Y:atc1^gS)3O [J+ʺ=((B8m>p߸C se 9\4ڍNi:~؇x**pXQ ^9CHx,8Ŏ軘+˻]4~ӜZ'$NUCBw"GW747#CcFi^_FEUGf|Y]=|+뿣{QU=2rPg pq 9Gy ξL<"vg箲,OzcR;dwXm ]oN,l8!^~eMsET 2K:|Cݱ inS1ߴKyANpHSkDZ-PV9CL]:S;|,ZyQYI{iS{QxeNt%8տ^/:=Z#@It {K2io ]y@n/pyrt& ^lo[RG|^ߎ17*[@#OgΝ!4Fr<mh [z!JF!~{kl-^K] \T%#VY"I^oH;,'s{d'/RP# ;coZu(pbkn5Îא "!ٽï%iჺdl'xW0'7[_,@< 8 h79Xo퓼>7{(ۡ嫷nRG[>2*|a482@_8=l`^AIƌFjЖl сD9=ic-כRep cx ߈^}wJq0JΙKcVӖOu\"{ vS7i1]m #ooឋh7a[2"p&>:94T;+@y3#ݔ}&|JUܢ؇v!DR;}ΓYNyŵ/ՙ]. \|t_r(r;0,D*Z]H6UG>4mcHD"q3N,s.WPy&tg ex^1wݴyٯ{(Q~m z$h:}s Ս6gtG_7u% ::=VԜ;| ubU<پj^ٮzsf\l_#N K"}=r/ `dKT> }^P:{{zJ8Um>?Bqk҉͢]?|yeH07rԿ.8'l$Z#H*^G@6qxs3Є޷$r/)4"aMA7-y^=cѦ'>{XU~;9ɠf@x4duLGZ2wGE#O<Ӵd?SdJ%ib2Ur&SNk] ecXgK0gɈ<(eV9Ż.F\'l%$ (ZV'afs:Fn8al9UגE3 n{߿|9$0VY{9B@ooP[¸!kAChӈY];>'KqNQ;Xl@JIiY/ ;@ mX?*uA6Sc1ܡ,:XBht|P =Ɇe\[YDq{A{1siee{Q.,xT87&G9}a$$pֲUp:ԥ3W2uz;A“x=$r 8hgy]WtRCfov=I,%DuV7g5@#Fjo.BT"5URZO;ůgējf9!:XKGx/2}0wBJp]ؕlMZW5Yv{L\e>ݫTv. WW kec t6=^l0 |~ 4R^vXܓ>޸{qX.O@4?!,Зm/> |WnyI sbodCzVNnO<Q~+2樏cniU:?o\2@oxF ɤnaF4N׀| w8jp=,f6vNUװ]WEfȮ^ /SZSE3Em@}qL"`*-|}ףʑGH3߿zY<)٨O'7Zd8vJU"Ɩ#GJV~#zPHd>!CgdsY6jx#gz:8uUx; rHvԟ-7#uoT䥬Ƣ%Y*7JCͯ>R%ĥੋ H^?7 ?QɆ'Eo(ui9&i޼^|[./x.>K.=w鳱s 6̀+rꂘyntr}BA׍ڙGY/hs&ƭlm8SǕ̜k kWQ`h8?N%&%𫼂+ixЯk:l?^][jutܿŽץgҪoP=+4Z.Dq#~r7Vj<ù&hT> WനDeHO%0l~ؓXJ̌Ź [ayJV59}\q%|tN?* B$Z ٶ<'Op]^ *'ߐ]hIm֊2e4 #ڏW:$^;[Ci;X]Kzc]s!g%O{cDf\wYnw87:*F'q% g@e8u?nxKu[k"F7+"'nnk_ΐ'!|Gԕ5Y=1kO/ c+ŨR WYEbn~Aj@{+WEMvı^K&qL'!\4g`Wmʜ.yKyӖ GK'o:dG-,~yN7_ sjV0='=/3ĕޝ+&E{ ?9ZVζ[t]? e:-vٝy1Fؕ}ӈPaKIARyg9 L.Ak쯊O'&,|"EshƢ\/y1k?Zl'v`p3䍐fi/Iwʕw۩qq"ck^^yy+uL&Uq-_KX3kQ; [JCZh)27ypjY`2 {.NFZ9?l:u4Ou UmA՛yݩ(6~j^lQY8WY g*wڜ9{;@/|g=(fx1џx Yd9yA@Ћ jpiDfU訍u"Ъx1vf0>c2m( 83"rH//[=G}^QYTb#OF5HI "IyHLE葮cL2742.u"*!\]P=N20*sv-16Tu, DwKgwRie}bh{75X]^s~&^K)%#6Xcf:^kiQ8SI$_rz^$I<qFqylZաSWXAa?T"Rv C E SMh;pHg G9MeVWNbNҭ(M|3ug.o2TK7<1<*,>B4K_t lǫxDv߿$NOcVW.;b}<v}Ryؒ⳼/ "X,E-[|':ɶ31w>D:N$=xXk o^wLc| G -tKxԎ??5{< -+Cz$l|ۘԙW-"St|sC<(h~6 l $duYd :cx]@|0:^{ګf{[_mX:qՉ]D®Ijafv,窸pc~Ve 1wJ:ycDžb5;=#%?+wjdDfO*pP dxAσs]mpҋq]6dDd$nԏqw_#Q4X *-ZR|-+t&DF 8HӓԄ`W`_;#|ψ27[6k5 7*"N`+@!cXfE S>Y<, a0}Ok~8 ̲/*4TkY/U@6bM:8*kX9h@MǺh`Fi ,RPQ.:|<5 Fˀ23iSYd"4JI pMܝ+u5rHK# ȝBքe#ZCqn pbG! ֫}rcYA~x|Gf?~7.l$UmZ8H\Y 﨧 _d?;~lؾzIAS\vAlwCn|ͫC7%9R)E>pI0D;~} Gqae3Zc(P9\bIN\(A|f]GBAؽ7N" BX9 ?kJ i3PVoEk`}Ft쓦6ůK룚@c)YZ"Z\h]OrϓB?ʣ…`uDd$=zm\Ajt,JU3i~8^D4 HgN5VQz ؾ Zo\8n}*awںӍ5ho,0Eq{{YA BCTO+3DYt81 б ";xpeVFYˇAΔ7] An> U`v+ !vfI, x,eO׋",gJ, ͏UɻGPZ{ZYpf v+ OPrLGC\8Mv djksԪ͈fal,cW:su6}u(7PR"j4xT_1 Be.e:"֡ ?>`KO->:p M:]BRm(OB yߍ<{EwP3HI-9^p`y-Bq]Z+L# #z"Ua7vf4jH^r_Y0]  Esu#D&[q ڻ~eyh:AbE%E?82K}O/]ZW_Q:2b/ Mv!~mgM*q*/tGbAnO !T /r K$3Rk[Jong(<@t.ŊGL:躑&6V=<}^'Zf2£! toTKE&vKe8 *p0ΎH,_ߴF.vă4zv:.R.cT'H:@t"'Ѐ*G)65JI9>!=}kUu@d;v4{Ir"sx49:] _:xrI+eM!)5(:h+n P#[5Ɗja#c^.v|#Z fhROM 4ҥ7d $x+Pt|'GHqh I\9 j:638,ɼDY{{$ȬīWGjimч m0b:3{,Q+/pR@7yhjy`^.<Կ+2{>1nسH7/E^.$ؔk{wKq|iJ6$2rI% l nBբY*"D3稽KHoʔA!_)אałH^@9+9ED0XAFnعxfᩄuz,E aY/ ,^ _DDwG޽.!|Ci Y|ufxU*ڎs<79{W4N}>՚l<>@4x,WFoK?>-䶢nW2TW)!o-vdAATʑ="QXRET%V#\> g[Aaspws|d`I0p%fMnd:1P2D{se8q_9(2 \͒@AU6ֈ^GmUDҝ~@& Yo\]_f;}5wD|}yeukx 5#rl&7;mJZxd'=UG>`#K<kB"˃Jx\;E Vgr('}/NE"o6\Hkωa׎\^rx) ԁ h#:}j q s&0լs OZ<Zyzru@kGPt{w i/b8,c*]Lz<]|&ISX]/hS[!l\4JI^N2>*90-s ˶W;1bĢ}98XX^a|m@8><#N=E~E]+WNX#͌, 񊢡@ Y?k(-Go6&pF5R2~_?qi: <80|lȟBq"n?P#q ʕ K*k|Abgw:(3/?5f~#rv):Q#4]DnKH(]t͒R\!E| V G҉݃c#ȝ XK=dj7J_qwz^ξ۸'3TKz Uû|ORXr=,enXs6mwԊq cWKM|W*Vlm96HM.fbp֋7z7mb%n{?)ɢ:ƕ!棂TSr ,nNǿ;8"ReN3UeQj_%e e xF^ i6!BJY X0^3otG"hMZS7hG! M5#Mz}FWѱ iBlP*'BLϗHAj_;ܣ=h (9ЬwFy"R1ӖE:y#2{_՗>AP/(NwsxB.K8 fC-(&U9A CB%sIhD.R1"|QL?Rgo dڳ۩o0{!N\Y~AlפUq{]XHlQkj۰FmЅMu@,(,t}*캳\ΡЅ#V@[qQ MZ?0A4J0J"#g8#/p8tQ2oy\bTQKp"Kr.w[dw"#^J`r:P'|h +Y0~/*MbCZssdfAl WL-\exDsoKawA 7虊]Y=ׅHJ1ay?d,e+ml%H#~&U8Yw"=AB%O$u(| _xK9+`k@ t8)a٘QM}ݼg- {,*/ $pDZx(&#k]6s: =* RrA]LHR g2Lm?:x3N9^heZUupFR:, \d,-'+kԆȇpVb O䴁W*C%(=:<K70-ݡ` Mxla5h x?;J{'$ycdAed F>TfbpkhLds}==otT/r #/EtRj/O#t jpeڣlQ}]/Hf>* .-A B@7D Tޫ LAC"JKa'OGM0.4_Ոrg=]O0K6<&qtWwXafƶWhЋtWVr^|)хfU"{/&)Df*T sd>+Z$z05 \Z3S,[Y&:GL18fxΚV[4kstxw:78!Ca52hO{c5TEPycgEfOrA۷6Tw):</mh\  ATA!xshxw9K{{.BnCm-ƍ(agwm3ErDt(osܔk-KAD^Ihd# | @эZd^ !S'˸zV,úuN(Zm%<]л2գP%(cp)|)r)oD^LwZO'߈ [C>98[:IG<+\~/c_-{r=4sԁO pPF7fV(46^ lwZcԎE⟙I-8.?zN|:^5pBkh*د>+FwdkMhX1}45T~A, ,NwʰR;8Y( "HM|63a1=\$t`귮4:ܯФPPݵlMQ8PC;ͪ>roS‚ӜݏLĕ;@ $Ufޞ m(*1A^P^EHEO1nǻ\28ŗ M 6ޠW~@B-HXqaf+S-l|e`he74`${ŸH"xÿhA_jk橞'}#D_\u<ﲃU9EV{(k葋z<1wVAes4ѓte4D :.O3ƯuW1L%Iotuw'59qUu[ AIɣ&T#O)ᆭXB#/a+Z$@jf$~& קt$rm+Gp(fS?!2h3v,iH>Htp y# D#̛  :tݝyI KR66QN\.by<7Ivs";vIaY-o]Ľ䘴TM?9&q8—9ڽBh$z`fQ~Py*_l'Z ح<󠽠WkA*3?X IkP/.bfUd`.kId" )`1;CCi{wL+^)~Nn'U`tw-}Fj9DMHaX j\̓ $W{ 9kv")'^x!rq(s% xԆ\)<%DvPvL2ৈTqR [9ZW.@3vl'=LogV%9|TH/DB=1uf$u,5>?՚ү+ .-ۨ#L>hH3O),ڂB>oԿk[zd&@t7~&HHuvu*_Dg.A%As{Q.YO_SE[N+@uC fv.3s w=ὀ9݌e J}59-jNoz"^gU~klнf`d]ܪ2w_UEƯ媮O2u_A>7Dπ?jz}϶8~aZSiFN,]Zv\v8qF@D9d2eMeiyt^^jjry _1 i,G7: E.[WHˆMEēi󙋨5s<8"~ϐHŚ,lfKIʍ'^κK+s n 2zf\#(j XB_#>4xIG=y>1 = b IK.@ _Ģkh@n{+&.<_T3[sM$*}BL}/+'Q ݦvm UZY5ZngCDoŧ8} T+`६cMzZ %?h 5&1{]q5'1n P80)B1 5`cPy!bEMr9q <ml{2 42dt_?Ot8D:3-uDݚ)>fr"%΅@ "Vh}ISuRwm%dE&a89&_j3ϰdԐxl|ȃKop} w2ʤ'ݝfᕄNhTJ籗EX.{;49;^5[p<<j%L@з/J>7Gf1[eRFd-2B׈y&z"ya"QwN4E.53GO@Ohn( Q4vz)/c##rg97h@P7m|<("Jmu7絹Ԩxuc O]V G`Eެ۬!1?D9xzYt BS8%~lФ52'=-RPW; 0\dQ w~E&hU^c.탔}`F:M;c>ɮ7#xٳ]#3^cyQ(j^}5GD[B\ѩ6 `- K~7~ gk}2U,.#IZLcOa71DJI+Qe1- ZnB8Y S*@n4#q*jO*)wSՊEx}9NP4xZD.bӀ޺7 d6xRX-t/PPEر%u6ݹ%" Q5 +w@d1l<=:#jJEɏ`=i~9(i["PF11qEaSeƉ? ۀ2P6!9f%X xSG"^ӘT(Pq_e8D]hPwpJ^`BVl{!73SSF ^s!Ň.[ugE??3jؑO&n yW~gXD]bFz,VU@\aGMߌTO:=Ը G}+YDjo> oE5B1g(3?6;|zu/EBxMߋ5Ww@Ѩۖ18,T*0AAc7Qe8h\=h [q`,@ϡ4?ܵbwnf:Oqtm&/h<6``(hK+CɩHm])UO^gڒal M8;|cI|Fi۞9͕:pO32Ⅎ`ՅC "T`q&8n8wNg[I4 hZ2q~%NcPI榉蔈)яlKJDœ8clEl-+PqqQ$-E=#8#rZg ]lLP5՝t7vʠw{AuZd\I˗O#s?ze| ξj'ה0>,MoC G\=~ }Qdo@JvBqyѰ>3#3x|;"8kם1#87x[b`yo \pĢOo%Ww}>}x6}f4r і"daXy{*w3EW;A0;~/lV_jMR𫬑HZ%t;y4X.HI[Y؍45Mr|"V7D_WB 첸dvsQe+ Q6Iէ}zY.AyM .C ~~/v5~@7+^x)gN<w| *CDS)s)ȃD"WNjFSA*,ݞ9Pcw¥t qr }-aj6]K* Lr| \>hڎ蘼%HVjez)vg@qGO63,3<ot߉dÆUְ3U3#' 6qFd(T 'J4ֵ re:5:Op,O:GnM;9Ñ=}P[3GU4C)INp^YqCN.Z3 3at, ѫ݉%YK }Kst=/_ FvE'+^y3ZiBe+uOo2)/=\Ya5'4n@ B䵙Ms\`J <<3i`8j<)ũyj6q9A[>\!|υei+NGM5()r:n̯$uIYHЖ nzAp;ʥtJ TPdol=9w`K+ReȘ "< 3CɎ9AJSp H^2}©T6$ma0ͽL p?<ӴB\Fv,G)Q-Ee:Mdn{8[@8[8z2p&׳1\O3r!|,5x)-L\{jӮ3$TcNm"¹Oa(N$(V'@`ꡜJ0C~%y.YpޣiW~%ЏZ W j"08 9W:G@>ێt'5m/* ^F!"H j/\ށ7Ï1Z  נqY\(j^,_dV#1\)mr)5p) Wu]:3U6h"@ٞpn/v/[@8?=ϩQ$H|5;hh>rs^]Z IDAT"@V> v-q[ >t{Z<޽"sΉr2:?S[Q5XmD ѳAxж}HDW{" 4:OiKH`1lP =HrW↬% eE:~E]60B/8̻`/^g# ON%K"pq0ã&NGPXMz.AsMm־uPuR#oowE\]le|($#7s2ds>3۠7(%4sH<j@Ue M򨊙?yUZÚaٸ\mwlNSF5?=:"QH>n+W$Z#f>*ᄐ,V R+pV LK NbF{Y\y{loӳQQNzHOdiU.K @D9aky*fԄ][4D/Dk)EHot\IN<_bК~+TGW YZNy3qTҤִ,ϗ"PcR7àidϨGf߈aWp\ :Q/迉`weO|m_! ^-&˅n =ړw e}ӳM a@d@,׬ ¸f:r_TC[}i-!@\H`^ ID*O~4Hߋ-(w<{>iӦۛ,Ro\ ߂~U! /VywԯBłiQDMouL@$Xĕ`uWji)]y\Y`uM6mڌ̦MױA#6NV퉭t~/" Qٻ3mڴiӦMk~LZ8ܴiӦM6mڿL6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦMGB1mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6mڴiӦM6ώIENDB`elk-7.2.42/examples/GW/Si-GW-band-structure/PaxHeaders.21776/plot2d.general0000644000000000000000000000013114061636520022652 xustar0030 mtime=1623670096.437101079 29 atime=1623670096.43610108 30 ctime=1623670096.437101079 elk-7.2.42/examples/GW/Si-GW-band-structure/plot2d.general0000644002504400250440000000027314061636520024712 0ustar00dewhurstdewhurst00000000000000file = GWBAND.OUT grid = 800 x 400 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 2-vector, scalar type = float, float end elk-7.2.42/examples/GW/Si-GW-band-structure/PaxHeaders.21776/plot2d.net0000644000000000000000000000013214061636520022024 xustar0030 mtime=1623670096.438101078 30 atime=1623670096.438101078 30 ctime=1623670096.438101078 elk-7.2.42/examples/GW/Si-GW-band-structure/plot2d.net0000644002504400250440000001543614061636520024072 0ustar00dewhurstdewhurst00000000000000// // time: Sat May 19 08:49:04 2018 // // version: 3.2.0 (format), 4.4.4 (DX) // // // MODULE main // workspace: width = 532, height = 576 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 56, y = 47, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "plot2d.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node RubberSheet[1]: x = 276, y = 45, inputs = 4, label = RubberSheet // main_RubberSheet_1_out_1 = RubberSheet( main_Import_1_out_1, main_RubberSheet_1_in_2, main_RubberSheet_1_in_3, main_RubberSheet_1_in_4 ) [instance: 1, cache: 1]; // // node Colormap[1]: x = 387, y = 153, inputs = 19, label = Colormap // input[1]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.35833333] [0.056847545 0.16666667] } // input[2]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[3]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.0] [0.037634409 1.0] } // input[4]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[5]: defaulting = 0, visible = 0, type = 32, value = "Colormap_1" // input[7]: defaulting = 1, visible = 0, type = 5, value = 0.094054289 // input[8]: defaulting = 1, visible = 0, type = 5, value = 6684.0454 // input[9]: defaulting = 1, visible = 0, type = 1, value = 20 // input[12]: defaulting = 0, visible = 0, type = 16777221, value = { 0.094054289 6684.0454 } // input[17]: defaulting = 0, visible = 0, type = 5, value = 0.094054289 // input[18]: defaulting = 0, visible = 0, type = 5, value = 6684.0454 // window: position = (0.0200,0.0744), size = 0.9706x0.5844 // main_Colormap_1_out_1[cache: 2], main_Colormap_1_out_2[cache: 2] = Colormap( main_Colormap_1_in_1, main_Colormap_1_in_2, main_Colormap_1_in_3, main_Colormap_1_in_4, main_Colormap_1_in_5, main_RubberSheet_1_out_1, main_Colormap_1_in_7, main_Colormap_1_in_8, main_Colormap_1_in_9, main_Colormap_1_in_10, main_Colormap_1_in_11, main_Colormap_1_in_12, main_Colormap_1_in_13, main_Colormap_1_in_14, main_Colormap_1_in_15, main_Colormap_1_in_16, main_Colormap_1_in_17, main_Colormap_1_in_18, main_Colormap_1_in_19 ) [instance: 1, cache: 1]; // // node Color[3]: x = 142, y = 190, inputs = 5, label = Color // main_Color_3_out_1 = Color( main_RubberSheet_1_out_1, main_Colormap_1_out_1, main_Color_3_in_3, main_Color_3_in_4, main_Color_3_in_5 ) [instance: 3, cache: 1]; // // node Shade[1]: x = 320, y = 256, inputs = 8, label = Shade // input[2]: defaulting = 0, visible = 1, type = 3, value = 0 // main_Shade_1_out_1 = Shade( main_Color_3_out_1, main_Shade_1_in_2, main_Shade_1_in_3, main_Shade_1_in_4, main_Shade_1_in_5, main_Shade_1_in_6, main_Shade_1_in_7, main_Shade_1_in_8 ) [instance: 1, cache: 1]; // // node AutoCamera[1]: x = 440, y = 352, inputs = 9, label = AutoCamera // input[3]: defaulting = 0, visible = 0, type = 5, value = 3.35 // input[4]: defaulting = 0, visible = 0, type = 1, value = 2048 // input[5]: defaulting = 0, visible = 0, type = 5, value = 1.07 // main_AutoCamera_1_out_1 = AutoCamera( main_Shade_1_out_1, main_AutoCamera_1_in_2, main_AutoCamera_1_in_3, main_AutoCamera_1_in_4, main_AutoCamera_1_in_5, main_AutoCamera_1_in_6, main_AutoCamera_1_in_7, main_AutoCamera_1_in_8, main_AutoCamera_1_in_9 ) [instance: 1, cache: 1]; // // node Render[1]: x = 251, y = 352, inputs = 3, label = Render // main_Render_1_out_1 = Render( main_Shade_1_out_1, main_AutoCamera_1_out_1, main_Render_1_in_3 ) [instance: 1, cache: 1]; // // node Display[1]: x = 204, y = 461, inputs = 8, label = Display // depth: value = 24 // window: position = (0.5225,-0.8433), size = 1.2888x2.4800 // main_Display_1_out_1[cache: 2] = Display( main_Render_1_out_1, main_Display_1_in_2, main_Display_1_in_3, main_Display_1_in_4, main_Display_1_in_5, main_Display_1_in_6, main_Display_1_in_7, main_Display_1_in_8 ) [instance: 1, cache: 1]; // // node WriteImage[1]: x = 431, y = 514, inputs = 4, label = WriteImage // input[3]: defaulting = 0, visible = 1, type = 32, value = "tiff" // WriteImage( main_Render_1_out_1, main_WriteImage_1_in_2, main_WriteImage_1_in_3, main_WriteImage_1_in_4 ) [instance: 1, cache: 1]; // network: end of macro body } main_Import_1_in_1 = "plot2d.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_RubberSheet_1_in_2 = NULL; main_RubberSheet_1_in_3 = NULL; main_RubberSheet_1_in_4 = NULL; main_RubberSheet_1_out_1 = NULL; main_Colormap_1_in_1 = { [0.0 0.35833333] [0.056847545 0.16666667] }; main_Colormap_1_in_2 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_1_in_3 = { [0.0 0.0] [0.037634409 1.0] }; main_Colormap_1_in_4 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_1_in_5 = "Colormap_1"; main_Colormap_1_in_7 = NULL; main_Colormap_1_in_8 = NULL; main_Colormap_1_in_9 = NULL; main_Colormap_1_in_10 = NULL; main_Colormap_1_in_11 = NULL; main_Colormap_1_in_12 = { 0.094054289 6684.0454 }; main_Colormap_1_in_13 = NULL; main_Colormap_1_in_14 = NULL; main_Colormap_1_in_15 = NULL; main_Colormap_1_in_16 = NULL; main_Colormap_1_in_17 = 0.094054289; main_Colormap_1_in_18 = 6684.0454; main_Colormap_1_in_19 = NULL; main_Colormap_1_out_1 = NULL; main_Color_3_in_3 = NULL; main_Color_3_in_4 = NULL; main_Color_3_in_5 = NULL; main_Color_3_out_1 = NULL; main_Shade_1_in_2 = 0; main_Shade_1_in_3 = NULL; main_Shade_1_in_4 = NULL; main_Shade_1_in_5 = NULL; main_Shade_1_in_6 = NULL; main_Shade_1_in_7 = NULL; main_Shade_1_in_8 = NULL; main_Shade_1_out_1 = NULL; main_AutoCamera_1_in_2 = NULL; main_AutoCamera_1_in_3 = 3.35; main_AutoCamera_1_in_4 = 2048; main_AutoCamera_1_in_5 = 1.07; main_AutoCamera_1_in_6 = NULL; main_AutoCamera_1_in_7 = NULL; main_AutoCamera_1_in_8 = NULL; main_AutoCamera_1_in_9 = NULL; main_AutoCamera_1_out_1 = NULL; main_Render_1_in_3 = NULL; main_Render_1_out_1 = NULL; main_Display_1_in_2 = NULL; main_Display_1_in_3 = "X24,,"; main_Display_1_in_4 = NULL; main_Display_1_in_5 = NULL; main_Display_1_in_6 = NULL; main_Display_1_in_7 = NULL; main_Display_1_in_8 = NULL; main_WriteImage_1_in_2 = NULL; main_WriteImage_1_in_3 = "tiff"; main_WriteImage_1_in_4 = NULL; Executive("product version 4 4 4"); $sync main(); elk-7.2.42/examples/GW/PaxHeaders.21776/sc-rho-GW0000644000000000000000000000013214061636520015713 xustar0030 mtime=1623670096.441101075 30 atime=1623670096.440101076 30 ctime=1623670096.441101075 elk-7.2.42/examples/GW/sc-rho-GW/0000755002504400250440000000000014061636520020025 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/sc-rho-GW/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017073 xustar0030 mtime=1623670096.441101075 30 atime=1623670096.441101075 30 ctime=1623670096.441101075 elk-7.2.42/examples/GW/sc-rho-GW/elk.in0000644002504400250440000000171114061636520021130 0ustar00dewhurstdewhurst00000000000000 ! Self-consistent density GW example. First the density is calculated from the ! GW Green's function, then the Kohn-Sham equations are inverted to find a new ! exchange-correlation potential and Kohn-Sham orbitals. This processes is ! repeated until self-consistency is reached. tasks 0 630 ! take the screened interaction W to be diagonal twdiag .true. ! Matsubara frequency cut-off wmaxgw 30.0 ! response function G-vector cut-off gmaxrf 2.0 ! temperature of many-body system (determines Matsubara frequency spacing) tempk 1500.0 ! use LAPW nxoapwlo 1 ! adaptive linear mixing mixtype 1 ! large number of empty states required nempty 20 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 2 2 2 elk-7.2.42/examples/GW/PaxHeaders.21776/Cu0000644000000000000000000000013214061636520014554 xustar0030 mtime=1623670096.445101072 30 atime=1623670096.442101074 30 ctime=1623670096.445101072 elk-7.2.42/examples/GW/Cu/0000755002504400250440000000000014061636520016666 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/Cu/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015734 xustar0030 mtime=1623670096.444101073 30 atime=1623670096.443101074 30 ctime=1623670096.444101073 elk-7.2.42/examples/GW/Cu/elk.in0000644002504400250440000000152214061636520017771 0ustar00dewhurstdewhurst00000000000000 ! GW approximation applied to copper. Note that this calculation uses more ! k-points than q-points. tasks 0 600 610 ! switch on spin-coupling spinorb .true. ! temperature of the electronic system (determines Matsubara frequency spacing) tempk 1500.0 nempty 8 ! Matsubara frequency cut-off wmaxgw 6.0 ! G-vector cut-off for response functions gmaxrf 3.0 wplot 1000 100 0 : nwplot, ngrkf, nswplot -0.5 0.5 : wplot avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 6.83117 ngridk 12 12 12 ! q-point grid smaller but commensurate with the k-point grid ngridq 4 4 4 sppath '../../../species/' atoms 1 : nspecies 'Cu.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/GW/Cu/PaxHeaders.21776/GWTSF.OUT0000644000000000000000000000013214061636520016114 xustar0030 mtime=1623670096.446101071 30 atime=1623670096.445101072 30 ctime=1623670096.446101071 elk-7.2.42/examples/GW/Cu/GWTSF.OUT0000644002504400250440000011021014061636520020144 0ustar00dewhurstdewhurst00000000000000 -0.5000000000 1.824301379 -0.4990000000 1.858733095 -0.4980000000 1.894652577 -0.4970000000 1.881545001 -0.4960000000 1.885725810 -0.4950000000 1.896416216 -0.4940000000 1.906538765 -0.4930000000 1.948783662 -0.4920000000 1.940545496 -0.4910000000 1.911214233 -0.4900000000 1.943414329 -0.4890000000 1.979079144 -0.4880000000 1.966975776 -0.4870000000 1.975660865 -0.4860000000 1.954034829 -0.4850000000 1.987496531 -0.4840000000 1.985981863 -0.4830000000 1.990621853 -0.4820000000 1.973709207 -0.4810000000 1.984131510 -0.4800000000 1.974721729 -0.4790000000 1.949946186 -0.4780000000 1.927193453 -0.4770000000 1.942874762 -0.4760000000 1.920629055 -0.4750000000 1.932931741 -0.4740000000 1.947159926 -0.4730000000 1.897853380 -0.4720000000 1.901676484 -0.4710000000 1.888057303 -0.4700000000 1.826150143 -0.4690000000 1.830563933 -0.4680000000 1.807247173 -0.4670000000 1.828849365 -0.4660000000 1.803964693 -0.4650000000 1.802756576 -0.4640000000 1.799428032 -0.4630000000 1.787414853 -0.4620000000 1.772837956 -0.4610000000 1.788826563 -0.4600000000 1.752298242 -0.4590000000 1.777745060 -0.4580000000 1.714158508 -0.4570000000 1.746942483 -0.4560000000 1.736456447 -0.4550000000 1.703930855 -0.4540000000 1.704459329 -0.4530000000 1.718164049 -0.4520000000 1.703780991 -0.4510000000 1.757487497 -0.4500000000 1.634487572 -0.4490000000 1.603115695 -0.4480000000 1.618201128 -0.4470000000 1.579752055 -0.4460000000 1.601013667 -0.4450000000 1.586478901 -0.4440000000 1.552705758 -0.4430000000 1.566139471 -0.4420000000 1.540358970 -0.4410000000 1.551575847 -0.4400000000 1.549041515 -0.4390000000 1.550852367 -0.4380000000 1.548506697 -0.4370000000 1.551524406 -0.4360000000 1.528811918 -0.4350000000 1.553973852 -0.4340000000 1.543903954 -0.4330000000 1.540870365 -0.4320000000 1.548448370 -0.4310000000 1.540286715 -0.4300000000 1.522833632 -0.4290000000 1.523629269 -0.4280000000 1.514300360 -0.4270000000 1.536403608 -0.4260000000 1.549657328 -0.4250000000 1.557880902 -0.4240000000 1.560783697 -0.4230000000 1.570349765 -0.4220000000 1.560563619 -0.4210000000 1.578748362 -0.4200000000 1.566551097 -0.4190000000 1.585427101 -0.4180000000 1.582327305 -0.4170000000 1.584654118 -0.4160000000 1.583757824 -0.4150000000 1.594596234 -0.4140000000 1.597077155 -0.4130000000 1.607215796 -0.4120000000 1.613585819 -0.4110000000 1.643852581 -0.4100000000 1.663370920 -0.4090000000 1.686190830 -0.4080000000 1.741252523 -0.4070000000 1.718760093 -0.4060000000 1.701658841 -0.4050000000 1.723552602 -0.4040000000 1.736949522 -0.4030000000 1.735784729 -0.4020000000 1.754654715 -0.4010000000 1.759892479 -0.4000000000 1.806559455 -0.3990000000 1.791921506 -0.3980000000 1.848912591 -0.3970000000 1.851792914 -0.3960000000 1.838308096 -0.3950000000 1.861145740 -0.3940000000 1.867528489 -0.3930000000 1.877375278 -0.3920000000 1.913102105 -0.3910000000 1.919315812 -0.3900000000 1.972401635 -0.3890000000 1.997793604 -0.3880000000 2.022326557 -0.3870000000 1.987275403 -0.3860000000 2.003936362 -0.3850000000 2.049582059 -0.3840000000 2.074606273 -0.3830000000 2.090585085 -0.3820000000 2.136123560 -0.3810000000 2.143072203 -0.3800000000 2.150982570 -0.3790000000 2.161331202 -0.3780000000 2.157754623 -0.3770000000 2.198342579 -0.3760000000 2.246027255 -0.3750000000 2.312593499 -0.3740000000 2.321561372 -0.3730000000 2.340958888 -0.3720000000 2.450613684 -0.3710000000 2.378245076 -0.3700000000 2.415929047 -0.3690000000 2.407399107 -0.3680000000 2.465994586 -0.3670000000 2.431417120 -0.3660000000 2.456425467 -0.3650000000 2.512991995 -0.3640000000 2.519504313 -0.3630000000 2.545345783 -0.3620000000 2.573993719 -0.3610000000 2.555908518 -0.3600000000 2.567294286 -0.3590000000 2.609311245 -0.3580000000 2.625977200 -0.3570000000 2.607536645 -0.3560000000 2.601178139 -0.3550000000 2.559506832 -0.3540000000 2.567995811 -0.3530000000 2.592291020 -0.3520000000 2.567633638 -0.3510000000 2.537350057 -0.3500000000 2.532998140 -0.3490000000 2.527546214 -0.3480000000 2.503728628 -0.3470000000 2.528743075 -0.3460000000 2.465325307 -0.3450000000 2.521930652 -0.3440000000 2.549652417 -0.3430000000 2.522601774 -0.3420000000 2.484825230 -0.3410000000 2.484197344 -0.3400000000 2.475249992 -0.3390000000 2.493109212 -0.3380000000 2.506696207 -0.3370000000 2.453715998 -0.3360000000 2.448482714 -0.3350000000 2.445918029 -0.3340000000 2.448624135 -0.3330000000 2.416506426 -0.3320000000 2.443909676 -0.3310000000 2.467024140 -0.3300000000 2.460161303 -0.3290000000 2.440380408 -0.3280000000 2.439656059 -0.3270000000 2.432236818 -0.3260000000 2.449826591 -0.3250000000 2.471418638 -0.3240000000 2.476077667 -0.3230000000 2.552124680 -0.3220000000 2.517722763 -0.3210000000 2.542384581 -0.3200000000 2.595839441 -0.3190000000 2.654737985 -0.3180000000 2.604060081 -0.3170000000 2.707578580 -0.3160000000 2.691434376 -0.3150000000 2.720622223 -0.3140000000 2.757492083 -0.3130000000 2.804516453 -0.3120000000 2.823426884 -0.3110000000 2.809755210 -0.3100000000 2.840149337 -0.3090000000 2.970139616 -0.3080000000 2.964473577 -0.3070000000 2.952362425 -0.3060000000 2.962746194 -0.3050000000 3.037887653 -0.3040000000 3.069811767 -0.3030000000 3.180922403 -0.3020000000 3.138610711 -0.3010000000 3.227641049 -0.3000000000 3.216584008 -0.2990000000 3.316355695 -0.2980000000 3.379846432 -0.2970000000 3.412631690 -0.2960000000 3.447416841 -0.2950000000 3.477438310 -0.2940000000 3.444201281 -0.2930000000 3.499438389 -0.2920000000 3.602785052 -0.2910000000 3.648098010 -0.2900000000 3.702128694 -0.2890000000 3.701399058 -0.2880000000 3.702764868 -0.2870000000 3.756779118 -0.2860000000 3.863505180 -0.2850000000 4.041595869 -0.2840000000 4.118489159 -0.2830000000 4.091314645 -0.2820000000 4.126985003 -0.2810000000 4.355781210 -0.2800000000 4.249370217 -0.2790000000 4.432297581 -0.2780000000 4.554176180 -0.2770000000 4.431465337 -0.2760000000 4.602779120 -0.2750000000 4.643531479 -0.2740000000 4.690024755 -0.2730000000 4.783385767 -0.2720000000 4.862197583 -0.2710000000 4.860152784 -0.2700000000 4.874011533 -0.2690000000 4.975602626 -0.2680000000 4.931077554 -0.2670000000 4.979516049 -0.2660000000 5.021829247 -0.2650000000 5.111906924 -0.2640000000 5.098016996 -0.2630000000 5.018988873 -0.2620000000 4.987198326 -0.2610000000 5.128923451 -0.2600000000 5.256627468 -0.2590000000 5.123004222 -0.2580000000 5.067873630 -0.2570000000 5.100312627 -0.2560000000 5.000291045 -0.2550000000 5.220199546 -0.2540000000 5.165040083 -0.2530000000 5.164526873 -0.2520000000 5.076767812 -0.2510000000 5.006091482 -0.2500000000 5.290552051 -0.2490000000 5.125205186 -0.2480000000 5.071316430 -0.2470000000 5.046963030 -0.2460000000 5.051462711 -0.2450000000 5.118594473 -0.2440000000 5.120591326 -0.2430000000 5.115746745 -0.2420000000 5.157434153 -0.2410000000 5.113510139 -0.2400000000 5.106531075 -0.2390000000 5.214623586 -0.2380000000 5.222066506 -0.2370000000 5.247154297 -0.2360000000 5.403306389 -0.2350000000 5.539292551 -0.2340000000 5.634267714 -0.2330000000 5.772772270 -0.2320000000 5.906612063 -0.2310000000 5.964377208 -0.2300000000 6.033953081 -0.2290000000 6.159702923 -0.2280000000 6.301076775 -0.2270000000 6.243042152 -0.2260000000 6.218906625 -0.2250000000 6.367086350 -0.2240000000 6.384798553 -0.2230000000 6.363885903 -0.2220000000 6.307868875 -0.2210000000 6.328114521 -0.2200000000 6.377410487 -0.2190000000 6.406671037 -0.2180000000 6.668572853 -0.2170000000 6.700831919 -0.2160000000 6.749186520 -0.2150000000 6.820953421 -0.2140000000 6.829888887 -0.2130000000 6.741797398 -0.2120000000 6.929712989 -0.2110000000 6.920917291 -0.2100000000 6.984373300 -0.2090000000 7.175694063 -0.2080000000 7.216699604 -0.2070000000 7.316071704 -0.2060000000 7.350512510 -0.2050000000 7.465774418 -0.2040000000 7.531929387 -0.2030000000 7.610419613 -0.2020000000 7.857020742 -0.2010000000 7.945975626 -0.2000000000 8.210831727 -0.1990000000 8.539140436 -0.1980000000 8.783157374 -0.1970000000 8.833611394 -0.1960000000 9.190617383 -0.1950000000 9.562471043 -0.1940000000 9.763903619 -0.1930000000 10.24986650 -0.1920000000 10.27621122 -0.1910000000 10.80668846 -0.1900000000 10.75369035 -0.1890000000 10.88094180 -0.1880000000 11.34367423 -0.1870000000 11.65757479 -0.1860000000 11.42437944 -0.1850000000 11.67783313 -0.1840000000 11.69687986 -0.1830000000 11.79558358 -0.1820000000 11.97055012 -0.1810000000 12.02561829 -0.1800000000 12.51737942 -0.1790000000 12.62917071 -0.1780000000 12.87035483 -0.1770000000 12.91318355 -0.1760000000 13.44756421 -0.1750000000 13.54671944 -0.1740000000 14.04316244 -0.1730000000 14.08900791 -0.1720000000 14.52286161 -0.1710000000 14.99378288 -0.1700000000 15.48819062 -0.1690000000 16.63114559 -0.1680000000 17.27273923 -0.1670000000 18.03832859 -0.1660000000 19.10531402 -0.1650000000 20.02908064 -0.1640000000 21.01553388 -0.1630000000 21.72169770 -0.1620000000 22.29815018 -0.1610000000 22.57148369 -0.1600000000 22.15526416 -0.1590000000 23.06511847 -0.1580000000 23.86157824 -0.1570000000 22.92787900 -0.1560000000 24.05443629 -0.1550000000 24.65139826 -0.1540000000 25.30175453 -0.1530000000 25.75020140 -0.1520000000 27.12949781 -0.1510000000 27.92565136 -0.1500000000 28.66738635 -0.1490000000 30.02109081 -0.1480000000 31.72068594 -0.1470000000 33.68698380 -0.1460000000 34.80356411 -0.1450000000 35.82285577 -0.1440000000 38.65123168 -0.1430000000 37.80279765 -0.1420000000 39.81096832 -0.1410000000 41.04020744 -0.1400000000 41.87412830 -0.1390000000 42.20743466 -0.1380000000 44.17701776 -0.1370000000 45.83032651 -0.1360000000 46.42364766 -0.1350000000 47.13381221 -0.1340000000 47.61323504 -0.1330000000 48.52657472 -0.1320000000 49.60347023 -0.1310000000 49.27234210 -0.1300000000 48.11300883 -0.1290000000 47.57122213 -0.1280000000 46.74859077 -0.1270000000 46.29146194 -0.1260000000 44.55796951 -0.1250000000 44.37314696 -0.1240000000 44.80213046 -0.1230000000 45.81955118 -0.1220000000 46.93142425 -0.1210000000 47.11166277 -0.1200000000 49.99913678 -0.1190000000 50.46967028 -0.1180000000 51.24804643 -0.1170000000 52.85964503 -0.1160000000 54.80482725 -0.1150000000 56.99847821 -0.1140000000 58.19558948 -0.1130000000 59.90351570 -0.1120000000 62.36056991 -0.1110000000 64.59297199 -0.1100000000 68.06318041 -0.1090000000 69.57941279 -0.1080000000 72.09129136 -0.1070000000 73.93832767 -0.1060000000 75.46199484 -0.1050000000 73.86653882 -0.1040000000 70.85440054 -0.1030000000 67.64028892 -0.1020000000 65.51257509 -0.1010000000 63.57960431 -0.1000000000 62.16490148 -0.9900000000E-01 60.90941491 -0.9800000000E-01 59.84463743 -0.9700000000E-01 59.06588001 -0.9600000000E-01 58.96119285 -0.9500000000E-01 57.27958240 -0.9400000000E-01 56.56950391 -0.9300000000E-01 55.21777146 -0.9200000000E-01 54.42779536 -0.9100000000E-01 53.53574469 -0.9000000000E-01 53.65696230 -0.8900000000E-01 53.94286994 -0.8800000000E-01 54.24460148 -0.8700000000E-01 54.28970265 -0.8600000000E-01 55.24698911 -0.8500000000E-01 55.88244227 -0.8400000000E-01 58.45634603 -0.8300000000E-01 60.13191027 -0.8200000000E-01 60.71038618 -0.8100000000E-01 60.05762028 -0.8000000000E-01 56.58087225 -0.7900000000E-01 53.26817640 -0.7800000000E-01 50.49839559 -0.7700000000E-01 48.01936633 -0.7600000000E-01 47.57945792 -0.7500000000E-01 47.15012068 -0.7400000000E-01 47.64318193 -0.7300000000E-01 49.38464294 -0.7200000000E-01 52.48811811 -0.7100000000E-01 54.49994367 -0.7000000000E-01 56.24245144 -0.6900000000E-01 57.72474032 -0.6800000000E-01 59.59921907 -0.6700000000E-01 61.41333008 -0.6600000000E-01 63.04035819 -0.6500000000E-01 64.40176758 -0.6400000000E-01 65.23990698 -0.6300000000E-01 64.55495875 -0.6200000000E-01 61.55456664 -0.6100000000E-01 57.33466824 -0.6000000000E-01 53.27432002 -0.5900000000E-01 48.69041120 -0.5800000000E-01 43.08376334 -0.5700000000E-01 37.06876840 -0.5600000000E-01 31.67191241 -0.5500000000E-01 26.83695800 -0.5400000000E-01 23.05438008 -0.5300000000E-01 19.86289777 -0.5200000000E-01 17.56175142 -0.5100000000E-01 15.97854434 -0.5000000000E-01 14.95543451 -0.4900000000E-01 14.33145818 -0.4800000000E-01 14.02843805 -0.4700000000E-01 13.63114111 -0.4600000000E-01 12.70942311 -0.4500000000E-01 11.29743329 -0.4400000000E-01 10.11652053 -0.4300000000E-01 9.421961628 -0.4200000000E-01 9.253417042 -0.4100000000E-01 9.480776309 -0.4000000000E-01 9.728454333 -0.3900000000E-01 9.561708581 -0.3800000000E-01 9.093848401 -0.3700000000E-01 8.769841063 -0.3600000000E-01 8.575916143 -0.3500000000E-01 8.206309807 -0.3400000000E-01 7.481007066 -0.3300000000E-01 6.583117927 -0.3200000000E-01 5.772556933 -0.3100000000E-01 5.186254162 -0.3000000000E-01 4.829308418 -0.2900000000E-01 4.680179360 -0.2800000000E-01 4.714383869 -0.2700000000E-01 4.932743523 -0.2600000000E-01 5.276241071 -0.2500000000E-01 5.563227485 -0.2400000000E-01 5.617779600 -0.2300000000E-01 5.511906606 -0.2200000000E-01 5.470351713 -0.2100000000E-01 5.634924000 -0.2000000000E-01 5.998743356 -0.1900000000E-01 6.392550566 -0.1800000000E-01 6.621393101 -0.1700000000E-01 6.613561759 -0.1600000000E-01 6.414607022 -0.1500000000E-01 6.167824829 -0.1400000000E-01 6.129703823 -0.1300000000E-01 6.440454417 -0.1200000000E-01 7.177106622 -0.1100000000E-01 8.295688894 -0.1000000000E-01 9.572630982 -0.9000000000E-02 10.62917209 -0.8000000000E-02 11.17988289 -0.7000000000E-02 11.06729641 -0.6000000000E-02 10.32283017 -0.5000000000E-02 9.208983211 -0.4000000000E-02 8.079370847 -0.3000000000E-02 7.065745590 -0.2000000000E-02 6.085799250 -0.1000000000E-02 5.183803809 0.000000000 4.454987035 0.1000000000E-02 3.939446956 0.2000000000E-02 3.622453517 0.3000000000E-02 3.476186637 0.4000000000E-02 3.495564752 0.5000000000E-02 3.664606708 0.6000000000E-02 3.935114558 0.7000000000E-02 4.159182952 0.8000000000E-02 4.158178920 0.9000000000E-02 3.971924378 0.1000000000E-01 3.810708227 0.1100000000E-01 3.781445389 0.1200000000E-01 3.916621181 0.1300000000E-01 4.197812418 0.1400000000E-01 4.654235974 0.1500000000E-01 5.217626863 0.1600000000E-01 5.576269094 0.1700000000E-01 5.357934461 0.1800000000E-01 4.673180533 0.1900000000E-01 3.913393976 0.2000000000E-01 3.327487036 0.2100000000E-01 2.938827560 0.2200000000E-01 2.715011693 0.2300000000E-01 2.621146418 0.2400000000E-01 2.644807165 0.2500000000E-01 2.789324221 0.2600000000E-01 3.078098530 0.2700000000E-01 3.549859232 0.2800000000E-01 4.228975152 0.2900000000E-01 5.045222131 0.3000000000E-01 5.700201989 0.3100000000E-01 5.842473427 0.3200000000E-01 5.558639224 0.3300000000E-01 5.183870298 0.3400000000E-01 4.824946481 0.3500000000E-01 4.312408067 0.3600000000E-01 3.707108852 0.3700000000E-01 3.181986404 0.3800000000E-01 2.806255469 0.3900000000E-01 2.587650731 0.4000000000E-01 2.500305820 0.4100000000E-01 2.514546263 0.4200000000E-01 2.671063124 0.4300000000E-01 2.939527472 0.4400000000E-01 3.397447053 0.4500000000E-01 4.014567499 0.4600000000E-01 4.703447673 0.4700000000E-01 5.182136034 0.4800000000E-01 5.257020709 0.4900000000E-01 4.963728893 0.5000000000E-01 4.533207117 0.5100000000E-01 4.237500050 0.5200000000E-01 4.216894586 0.5300000000E-01 4.536873528 0.5400000000E-01 5.101825157 0.5500000000E-01 5.692855087 0.5600000000E-01 5.846762519 0.5700000000E-01 5.407792503 0.5800000000E-01 4.782479500 0.5900000000E-01 4.304419882 0.6000000000E-01 4.122584785 0.6100000000E-01 4.254280068 0.6200000000E-01 4.717846160 0.6300000000E-01 5.527802343 0.6400000000E-01 6.615741272 0.6500000000E-01 7.660249075 0.6600000000E-01 8.241964409 0.6700000000E-01 8.141369129 0.6800000000E-01 7.900714255 0.6900000000E-01 7.735487281 0.7000000000E-01 7.464045245 0.7100000000E-01 6.749931248 0.7200000000E-01 5.738827070 0.7300000000E-01 4.871940265 0.7400000000E-01 4.388377694 0.7500000000E-01 4.299639790 0.7600000000E-01 4.584192735 0.7700000000E-01 4.816629571 0.7800000000E-01 4.834822092 0.7900000000E-01 4.539764769 0.8000000000E-01 4.389523454 0.8100000000E-01 4.634345989 0.8200000000E-01 5.336960399 0.8300000000E-01 6.158473946 0.8400000000E-01 6.496828022 0.8500000000E-01 5.879809132 0.8600000000E-01 5.026034417 0.8700000000E-01 4.515850374 0.8800000000E-01 4.512495217 0.8900000000E-01 5.021885984 0.9000000000E-01 5.740109136 0.9100000000E-01 8.928123562 0.9200000000E-01 5.334368601 0.9300000000E-01 4.262890499 0.9400000000E-01 3.377523393 0.9500000000E-01 2.813579034 0.9600000000E-01 2.508493232 0.9700000000E-01 2.439228114 0.9800000000E-01 2.583544357 0.9900000000E-01 2.962271610 0.1000000000 3.438061154 0.1010000000 3.561441488 0.1020000000 3.122796808 0.1030000000 2.547095402 0.1040000000 2.132034368 0.1050000000 1.973485793 0.1060000000 1.956280488 0.1070000000 2.033293624 0.1080000000 2.310728472 0.1090000000 2.680279408 0.1100000000 3.635022566 0.1110000000 4.872064665 0.1120000000 5.825988946 0.1130000000 6.585406440 0.1140000000 6.548923812 0.1150000000 5.341886390 0.1160000000 4.195462228 0.1170000000 3.559177831 0.1180000000 3.339610673 0.1190000000 3.554222307 0.1200000000 4.275840455 0.1210000000 5.599622958 0.1220000000 7.129593016 0.1230000000 7.480894364 0.1240000000 6.550711155 0.1250000000 5.503441972 0.1260000000 4.328488857 0.1270000000 3.241849129 0.1280000000 2.443242769 0.1290000000 1.998098475 0.1300000000 1.758556631 0.1310000000 1.582890686 0.1320000000 1.529443015 0.1330000000 1.560491477 0.1340000000 1.820620622 0.1350000000 2.175213634 0.1360000000 2.296177287 0.1370000000 1.990093576 0.1380000000 1.638937107 0.1390000000 1.530257828 0.1400000000 1.407194347 0.1410000000 1.580394747 0.1420000000 1.518397318 0.1430000000 1.687389872 0.1440000000 1.964192770 0.1450000000 2.371611044 0.1460000000 2.979172176 0.1470000000 3.693322819 0.1480000000 4.305969287 0.1490000000 5.114652254 0.1500000000 5.922629410 0.1510000000 6.096989519 0.1520000000 5.606900204 0.1530000000 5.197318529 0.1540000000 5.405990078 0.1550000000 6.255537812 0.1560000000 7.208443898 0.1570000000 7.042289446 0.1580000000 5.104508499 0.1590000000 3.603378641 0.1600000000 2.833218983 0.1610000000 2.652726114 0.1620000000 2.757538226 0.1630000000 3.232119684 0.1640000000 3.636022290 0.1650000000 3.745784071 0.1660000000 3.634538415 0.1670000000 3.244380752 0.1680000000 2.781008044 0.1690000000 1.978681739 0.1700000000 1.865497582 0.1710000000 2.025013721 0.1720000000 2.556737565 0.1730000000 3.861607108 0.1740000000 6.669196279 0.1750000000 8.171301930 0.1760000000 6.211594831 0.1770000000 6.163320722 0.1780000000 7.450189661 0.1790000000 5.693648087 0.1800000000 2.467535867 0.1810000000 1.868001108 0.1820000000 1.810760028 0.1830000000 2.108543730 0.1840000000 2.587069209 0.1850000000 3.734521883 0.1860000000 5.052190274 0.1870000000 10.33624942 0.1880000000 14.05362704 0.1890000000 9.416019064 0.1900000000 4.692583015 0.1910000000 3.152036967 0.1920000000 3.119810076 0.1930000000 3.226740231 0.1940000000 5.567267562 0.1950000000 10.97111379 0.1960000000 9.830825633 0.1970000000 4.407084380 0.1980000000 2.868273564 0.1990000000 2.791822838 0.2000000000 4.106956313 0.2010000000 10.33019088 0.2020000000 21.36173054 0.2030000000 11.67993069 0.2040000000 4.969709073 0.2050000000 2.672080551 0.2060000000 1.987456526 0.2070000000 2.515156955 0.2080000000 2.680740156 0.2090000000 10.13344391 0.2100000000 3.204056934 0.2110000000 1.310314487 0.2120000000 0.9362583122 0.2130000000 0.8501808582 0.2140000000 1.036800422 0.2150000000 2.543871172 0.2160000000 10.78486495 0.2170000000 6.061179109 0.2180000000 1.563639427 0.2190000000 1.057027367 0.2200000000 0.9612742151 0.2210000000 0.9838979982 0.2220000000 1.113894453 0.2230000000 1.414176925 0.2240000000 2.114588629 0.2250000000 5.097844543 0.2260000000 20.30931141 0.2270000000 7.625661067 0.2280000000 2.851110625 0.2290000000 1.921856307 0.2300000000 1.979314081 0.2310000000 3.942726664 0.2320000000 54.04569475 0.2330000000 17.14655122 0.2340000000 1.838564117 0.2350000000 0.9828352175 0.2360000000 0.8669671792 0.2370000000 0.9870793100 0.2380000000 1.108145624 0.2390000000 1.009661054 0.2400000000 0.8944813850 0.2410000000 0.9342640473 0.2420000000 1.028188905 0.2430000000 1.165126941 0.2440000000 1.720175499 0.2450000000 5.628346527 0.2460000000 31.97674215 0.2470000000 7.008932983 0.2480000000 6.526289164 0.2490000000 6.973960962 0.2500000000 3.464253168 0.2510000000 2.731750313 0.2520000000 2.899196906 0.2530000000 1.479026941 0.2540000000 1.643678707 0.2550000000 2.887472478 0.2560000000 1.762478835 0.2570000000 1.688785307 0.2580000000 1.748265418 0.2590000000 1.751946157 0.2600000000 1.788745893 0.2610000000 1.930514745 0.2620000000 2.313428311 0.2630000000 2.367736973 0.2640000000 2.585242629 0.2650000000 2.911852292 0.2660000000 3.746948431 0.2670000000 5.125951413 0.2680000000 7.685806445 0.2690000000 11.82079963 0.2700000000 13.90989517 0.2710000000 14.02694424 0.2720000000 13.57206490 0.2730000000 9.997877245 0.2740000000 10.10053279 0.2750000000 6.447001067 0.2760000000 5.551610267 0.2770000000 8.543511023 0.2780000000 9.700541301 0.2790000000 9.772820120 0.2800000000 4.629527332 0.2810000000 3.674902564 0.2820000000 3.638522717 0.2830000000 4.288685589 0.2840000000 4.698516361 0.2850000000 4.255264535 0.2860000000 3.379321151 0.2870000000 2.987018660 0.2880000000 3.182332858 0.2890000000 4.074684275 0.2900000000 5.382380173 0.2910000000 4.626357817 0.2920000000 3.399819965 0.2930000000 2.841939573 0.2940000000 2.696321620 0.2950000000 2.898824589 0.2960000000 3.312277944 0.2970000000 4.107920423 0.2980000000 4.984800539 0.2990000000 5.405542833 0.3000000000 5.657715448 0.3010000000 5.963308167 0.3020000000 6.067751643 0.3030000000 5.795259409 0.3040000000 5.594960553 0.3050000000 5.237531240 0.3060000000 4.802981830 0.3070000000 4.690949790 0.3080000000 4.910909631 0.3090000000 5.541043340 0.3100000000 6.419255783 0.3110000000 7.223223059 0.3120000000 7.547932505 0.3130000000 6.357885172 0.3140000000 5.293349440 0.3150000000 5.220987246 0.3160000000 5.325238914 0.3170000000 5.137831051 0.3180000000 5.556817175 0.3190000000 5.091845653 0.3200000000 5.573343613 0.3210000000 5.545629260 0.3220000000 4.891881000 0.3230000000 4.345546010 0.3240000000 4.287160844 0.3250000000 4.652027241 0.3260000000 5.016664653 0.3270000000 4.683976438 0.3280000000 4.282864288 0.3290000000 4.235229753 0.3300000000 4.541442970 0.3310000000 5.088922429 0.3320000000 5.861363370 0.3330000000 6.411810587 0.3340000000 6.728270441 0.3350000000 7.269147432 0.3360000000 7.743747623 0.3370000000 7.942936308 0.3380000000 7.449546026 0.3390000000 6.188980635 0.3400000000 4.952866702 0.3410000000 4.099795752 0.3420000000 3.683945629 0.3430000000 3.564935710 0.3440000000 3.582869039 0.3450000000 3.695280798 0.3460000000 3.849399940 0.3470000000 4.330466774 0.3480000000 4.741716712 0.3490000000 5.812499261 0.3500000000 6.361572883 0.3510000000 6.769070981 0.3520000000 6.583121667 0.3530000000 6.727755216 0.3540000000 6.986547794 0.3550000000 7.268091300 0.3560000000 7.163849285 0.3570000000 8.063649141 0.3580000000 11.03167018 0.3590000000 7.100073980 0.3600000000 7.050338692 0.3610000000 7.266460393 0.3620000000 7.729518587 0.3630000000 8.248496470 0.3640000000 8.517325317 0.3650000000 8.560411699 0.3660000000 8.453456856 0.3670000000 8.841594463 0.3680000000 8.268675059 0.3690000000 8.191692167 0.3700000000 8.210376280 0.3710000000 8.361906142 0.3720000000 8.578908753 0.3730000000 8.224769446 0.3740000000 7.638723408 0.3750000000 7.331855967 0.3760000000 7.107040431 0.3770000000 6.930295817 0.3780000000 6.583687788 0.3790000000 6.070456262 0.3800000000 5.601289913 0.3810000000 6.219666672 0.3820000000 6.226227960 0.3830000000 6.208047856 0.3840000000 5.978244299 0.3850000000 6.345652418 0.3860000000 6.652906460 0.3870000000 6.947154040 0.3880000000 7.439536841 0.3890000000 7.462600245 0.3900000000 8.163649379 0.3910000000 8.658346032 0.3920000000 8.906701193 0.3930000000 6.918323246 0.3940000000 8.212522579 0.3950000000 8.829458730 0.3960000000 8.743411708 0.3970000000 8.112000115 0.3980000000 7.741453707 0.3990000000 7.442534103 0.4000000000 9.593802327 0.4010000000 7.515192555 0.4020000000 7.384505405 0.4030000000 7.334270706 0.4040000000 7.353205206 0.4050000000 7.726965721 0.4060000000 7.146795698 0.4070000000 7.399181663 0.4080000000 7.069100946 0.4090000000 7.099678412 0.4100000000 7.001050877 0.4110000000 6.811483998 0.4120000000 8.107037116 0.4130000000 6.418773690 0.4140000000 6.326365754 0.4150000000 6.086840728 0.4160000000 5.861474003 0.4170000000 5.647330499 0.4180000000 5.429043209 0.4190000000 5.607524618 0.4200000000 5.494813570 0.4210000000 5.838624365 0.4220000000 6.388163313 0.4230000000 5.982127523 0.4240000000 6.262960515 0.4250000000 6.469619716 0.4260000000 6.518412232 0.4270000000 6.886477276 0.4280000000 7.264649635 0.4290000000 7.574240746 0.4300000000 7.861834366 0.4310000000 8.095926891 0.4320000000 8.106916668 0.4330000000 7.918829814 0.4340000000 7.649132039 0.4350000000 7.338772383 0.4360000000 7.995432951 0.4370000000 7.120692064 0.4380000000 6.776562989 0.4390000000 6.653550696 0.4400000000 6.530312246 0.4410000000 6.414948404 0.4420000000 6.513434919 0.4430000000 6.560860172 0.4440000000 6.794314673 0.4450000000 7.005376375 0.4460000000 7.033860570 0.4470000000 6.822275677 0.4480000000 6.663583382 0.4490000000 6.812468846 0.4500000000 7.401929084 0.4510000000 8.143097618 0.4520000000 8.704275201 0.4530000000 8.275394951 0.4540000000 8.663193553 0.4550000000 7.933315810 0.4560000000 7.485759551 0.4570000000 7.395437841 0.4580000000 7.217237392 0.4590000000 7.508813584 0.4600000000 7.800673069 0.4610000000 7.897362755 0.4620000000 8.941079122 0.4630000000 8.084513355 0.4640000000 8.062609790 0.4650000000 8.088200911 0.4660000000 7.823917894 0.4670000000 7.623340885 0.4680000000 7.406428381 0.4690000000 7.122547903 0.4700000000 7.798422727 0.4710000000 8.793900187 0.4720000000 8.166138996 0.4730000000 7.745081458 0.4740000000 7.563817961 0.4750000000 7.263355883 0.4760000000 6.794822729 0.4770000000 6.366449121 0.4780000000 6.197978587 0.4790000000 6.244912348 0.4800000000 6.741929883 0.4810000000 6.724658143 0.4820000000 6.766111663 0.4830000000 6.952481707 0.4840000000 6.993472459 0.4850000000 7.031681944 0.4860000000 7.130220592 0.4870000000 7.410078705 0.4880000000 7.716552287 0.4890000000 8.426977069 0.4900000000 8.058825934 0.4910000000 8.139458324 0.4920000000 8.299426586 0.4930000000 8.338038236 0.4940000000 8.362398726 0.4950000000 8.826504153 0.4960000000 8.591906881 0.4970000000 8.385221839 0.4980000000 8.205248976 0.4990000000 8.292365405 elk-7.2.42/examples/GW/PaxHeaders.21776/Si0000644000000000000000000000013114061636520014557 xustar0030 mtime=1623670096.449101068 29 atime=1623670096.44710107 30 ctime=1623670096.449101068 elk-7.2.42/examples/GW/Si/0000755002504400250440000000000014061636520016672 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/Si/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015740 xustar0030 mtime=1623670096.448101069 30 atime=1623670096.448101069 30 ctime=1623670096.448101069 elk-7.2.42/examples/GW/Si/elk.in0000644002504400250440000000130214061636520017771 0ustar00dewhurstdewhurst00000000000000 ! GW spectral function of silicon. tasks 0 600 610 ! use LAPW nxoapwlo 1 ! add conduction local-orbitals lorbcnd .true. ! Matsubara frequency cut-off wmaxgw 5.0 ! response function G-vector cut-off gmaxrf 3.0 ! temperature of many-body system (determines Matsubara frequency spacing) tempk 1500.0 wplot 800 100 0 -0.8 0.5 ! large number of empty states required nempty 20 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 4 4 4 elk-7.2.42/examples/GW/Si/PaxHeaders.21776/GWSF_K000001.OUT0000644000000000000000000000013214061636520016707 xustar0030 mtime=1623670096.450101067 30 atime=1623670096.450101067 30 ctime=1623670096.450101067 elk-7.2.42/examples/GW/Si/GWSF_K000001.OUT0000644002504400250440000010066614061636520020755 0ustar00dewhurstdewhurst00000000000000 -0.8000000000 1.233645995 -0.7983750000 1.234174789 -0.7967500000 1.082149685 -0.7951250000 1.052030490 -0.7935000000 1.322191902 -0.7918750000 1.557510429 -0.7902500000 1.805241092 -0.7886250000 2.093871872 -0.7870000000 2.446310307 -0.7853750000 2.895651872 -0.7837500000 3.420703366 -0.7821250000 4.072064806 -0.7805000000 4.946048548 -0.7788750000 6.048673689 -0.7772500000 7.598366858 -0.7756250000 9.699416375 -0.7740000000 12.53349555 -0.7723750000 16.13107096 -0.7707500000 18.14959514 -0.7691250000 16.42342744 -0.7675000000 12.64425931 -0.7658750000 9.801527119 -0.7642500000 9.341045938 -0.7626250000 9.983502760 -0.7610000000 9.893469598 -0.7593750000 8.529133893 -0.7577500000 6.754611882 -0.7561250000 5.685335598 -0.7545000000 4.987129003 -0.7528750000 4.424231971 -0.7512500000 4.065725912 -0.7496250000 4.102841109 -0.7480000000 4.317742439 -0.7463750000 3.984125121 -0.7447500000 3.572598359 -0.7431250000 3.243673378 -0.7415000000 3.016243379 -0.7398750000 2.733133886 -0.7382500000 2.430960225 -0.7366250000 2.269961265 -0.7350000000 2.171591561 -0.7333750000 2.182219901 -0.7317500000 2.078968705 -0.7301250000 2.334622917 -0.7285000000 2.736027983 -0.7268750000 2.353793285 -0.7252500000 2.148712809 -0.7236250000 4.137178349 -0.7220000000 3.732123430 -0.7203750000 3.607432655 -0.7187500000 1.566334339 -0.7171250000 1.199443030 -0.7155000000 1.306590599 -0.7138750000 1.099981379 -0.7122500000 1.066199340 -0.7106250000 0.9535726450 -0.7090000000 1.019606033 -0.7073750000 1.025092663 -0.7057500000 0.9857759820 -0.7041250000 1.009249479 -0.7025000000 1.035346419 -0.7008750000 1.083592848 -0.6992500000 1.234511200 -0.6976250000 1.039922461 -0.6960000000 0.9783661125 -0.6943750000 0.9294540482 -0.6927500000 0.9254229847 -0.6911250000 0.9470869120 -0.6895000000 0.9607108157 -0.6878750000 1.010698836 -0.6862500000 0.9337524166 -0.6846250000 0.8883658587 -0.6830000000 0.8352754710 -0.6813750000 0.7995445680 -0.6797500000 0.7553268398 -0.6781250000 0.7069977389 -0.6765000000 0.6868709786 -0.6748750000 0.6766995188 -0.6732500000 0.6802556356 -0.6716250000 0.7284599988 -0.6700000000 0.7876219477 -0.6683750000 0.8309171467 -0.6667500000 0.8506946696 -0.6651250000 0.8411708941 -0.6635000000 0.8098471661 -0.6618750000 0.8065834328 -0.6602500000 0.8271119589 -0.6586250000 0.8371924088 -0.6570000000 0.8350046722 -0.6553750000 0.8289684693 -0.6537500000 0.8299786618 -0.6521250000 0.8449440703 -0.6505000000 0.8512573372 -0.6488750000 0.8588548275 -0.6472500000 0.8657762923 -0.6456250000 0.8740824508 -0.6440000000 0.8900581388 -0.6423750000 0.9108157074 -0.6407500000 0.9394712372 -0.6391250000 0.9928343115 -0.6375000000 1.006815980 -0.6358750000 1.032572294 -0.6342500000 1.055540304 -0.6326250000 1.107537771 -0.6310000000 1.173102812 -0.6293750000 1.142576253 -0.6277500000 1.126997457 -0.6261250000 1.102377237 -0.6245000000 1.062452561 -0.6228750000 1.015569262 -0.6212500000 1.016770355 -0.6196250000 1.016943201 -0.6180000000 1.001309186 -0.6163750000 0.9134445869 -0.6147500000 0.8507184760 -0.6131250000 0.9256717690 -0.6115000000 0.9892081108 -0.6098750000 1.040976022 -0.6082500000 1.086863909 -0.6066250000 1.127669249 -0.6050000000 1.162829033 -0.6033750000 1.192808101 -0.6017500000 1.215655837 -0.6001250000 1.238834724 -0.5985000000 1.285131114 -0.5968750000 1.321563638 -0.5952500000 1.358962201 -0.5936250000 1.399576574 -0.5920000000 1.437998531 -0.5903750000 1.434648990 -0.5887500000 1.481143883 -0.5871250000 1.377274406 -0.5855000000 1.373908300 -0.5838750000 1.334283395 -0.5822500000 1.387051852 -0.5806250000 1.434873222 -0.5790000000 1.448473189 -0.5773750000 1.711601416 -0.5757500000 1.493970365 -0.5741250000 1.435434279 -0.5725000000 1.407542722 -0.5708750000 1.447678946 -0.5692500000 1.440328869 -0.5676250000 1.438416360 -0.5660000000 1.410905753 -0.5643750000 1.519215625 -0.5627500000 1.455752890 -0.5611250000 1.494886379 -0.5595000000 1.512123602 -0.5578750000 1.493698077 -0.5562500000 1.497250878 -0.5546250000 1.524087146 -0.5530000000 1.522763329 -0.5513750000 1.541304415 -0.5497500000 1.560716269 -0.5481250000 1.580557873 -0.5465000000 1.597440531 -0.5448750000 1.630269535 -0.5432500000 1.679986866 -0.5416250000 1.734923060 -0.5400000000 1.795449733 -0.5383750000 1.856355363 -0.5367500000 1.921779587 -0.5351250000 1.989331189 -0.5335000000 2.067493353 -0.5318750000 2.165246560 -0.5302500000 2.280472737 -0.5286250000 2.419310696 -0.5270000000 2.542194260 -0.5253750000 2.581120950 -0.5237500000 2.634260541 -0.5221250000 2.764514480 -0.5205000000 3.100829970 -0.5188750000 4.221628081 -0.5172500000 2.381019714 -0.5156250000 2.462858350 -0.5140000000 2.614964290 -0.5123750000 2.635501612 -0.5107500000 2.743317861 -0.5091250000 2.970727890 -0.5075000000 3.234372781 -0.5058750000 3.498878260 -0.5042500000 3.709503204 -0.5026250000 3.839432376 -0.5010000000 3.904086934 -0.4993750000 4.025471105 -0.4977500000 4.196687871 -0.4961250000 4.338153650 -0.4945000000 4.476666247 -0.4928750000 4.629833009 -0.4912500000 4.822418939 -0.4896250000 5.055991266 -0.4880000000 5.329442504 -0.4863750000 5.668697960 -0.4847500000 6.046587828 -0.4831250000 6.475058612 -0.4815000000 6.962859111 -0.4798750000 7.496899614 -0.4782500000 8.062844914 -0.4766250000 8.638793673 -0.4750000000 9.175247962 -0.4733750000 9.643601540 -0.4717500000 9.952635703 -0.4701250000 10.04724457 -0.4685000000 9.879931873 -0.4668750000 9.682777281 -0.4652500000 9.856646824 -0.4636250000 10.39232236 -0.4620000000 11.21627874 -0.4603750000 12.00547669 -0.4587500000 12.97348115 -0.4571250000 13.97567288 -0.4555000000 14.96647592 -0.4538750000 15.89275501 -0.4522500000 16.67693684 -0.4506250000 17.27945284 -0.4490000000 17.63054288 -0.4473750000 17.70127807 -0.4457500000 17.59716246 -0.4441250000 17.29098672 -0.4425000000 17.00879126 -0.4408750000 16.77879620 -0.4392500000 16.52247133 -0.4376250000 16.08694359 -0.4360000000 15.38722552 -0.4343750000 14.42386067 -0.4327500000 13.36422602 -0.4311250000 12.22139602 -0.4295000000 11.06925532 -0.4278750000 10.03402783 -0.4262500000 9.130065801 -0.4246250000 8.159403830 -0.4230000000 7.334667565 -0.4213750000 6.595843045 -0.4197500000 6.033594792 -0.4181250000 5.713102341 -0.4165000000 5.516007018 -0.4148750000 5.224479787 -0.4132500000 4.974508108 -0.4116250000 4.715829295 -0.4100000000 4.457419102 -0.4083750000 4.159130762 -0.4067500000 3.825250217 -0.4051250000 3.536916887 -0.4035000000 3.277738124 -0.4018750000 3.102207449 -0.4002500000 2.857070405 -0.3986250000 2.626281225 -0.3970000000 2.442525254 -0.3953750000 2.282279070 -0.3937500000 2.148743260 -0.3921250000 2.045395258 -0.3905000000 1.956368870 -0.3888750000 1.884801954 -0.3872500000 1.848561943 -0.3856250000 1.743075429 -0.3840000000 1.586351220 -0.3823750000 1.446276435 -0.3807500000 1.291352717 -0.3791250000 1.069692068 -0.3775000000 0.9386810728 -0.3758750000 1.313867253 -0.3742500000 1.305368686 -0.3726250000 1.256408440 -0.3710000000 1.182757033 -0.3693750000 1.127578957 -0.3677500000 1.080533350 -0.3661250000 1.052812986 -0.3645000000 1.080658363 -0.3628750000 1.081193565 -0.3612500000 1.059847110 -0.3596250000 1.022276503 -0.3580000000 0.9687916276 -0.3563750000 0.9274912069 -0.3547500000 0.8914918842 -0.3531250000 0.8644440308 -0.3515000000 0.8497591687 -0.3498750000 0.8279646570 -0.3482500000 0.8261230445 -0.3466250000 0.8511352746 -0.3450000000 0.8784249638 -0.3433750000 0.9205401498 -0.3417500000 0.8381129633 -0.3401250000 0.7463547540 -0.3385000000 0.7087708420 -0.3368750000 0.6718457274 -0.3352500000 0.6567580715 -0.3336250000 0.6645462784 -0.3320000000 0.6987356090 -0.3303750000 0.6481813911 -0.3287500000 0.6566070158 -0.3271250000 0.6076837925 -0.3255000000 0.5826202415 -0.3238750000 0.5844371565 -0.3222500000 0.5764516323 -0.3206250000 0.5622386815 -0.3190000000 0.5489126731 -0.3173750000 0.5413759464 -0.3157500000 0.5477448381 -0.3141250000 0.5923387325 -0.3125000000 0.5755928869 -0.3108750000 0.6202886841 -0.3092500000 0.6560515473 -0.3076250000 0.6747001313 -0.3060000000 0.6923734596 -0.3043750000 0.7609351036 -0.3027500000 0.6312652151 -0.3011250000 0.6004425191 -0.2995000000 0.5592183739 -0.2978750000 0.5593312932 -0.2962500000 0.4904959605 -0.2946250000 0.4375036468 -0.2930000000 0.4258657702 -0.2913750000 0.4490348746 -0.2897500000 0.4114058181 -0.2881250000 0.3978577618 -0.2865000000 0.4022370268 -0.2848750000 0.3855556296 -0.2832500000 0.3715351536 -0.2816250000 0.3315160429 -0.2800000000 0.2967524246 -0.2783750000 0.3228707103 -0.2767500000 0.3060293839 -0.2751250000 0.2984848897 -0.2735000000 0.2846012719 -0.2718750000 0.2768485816 -0.2702500000 0.2423416731 -0.2686250000 0.2851768057 -0.2670000000 0.2971084640 -0.2653750000 0.2898620945 -0.2637500000 0.2872724161 -0.2621250000 0.3084663251 -0.2605000000 0.2939573788 -0.2588750000 0.2937200244 -0.2572500000 0.2964852887 -0.2556250000 0.3064056499 -0.2540000000 0.3020957902 -0.2523750000 0.3101561374 -0.2507500000 0.2948596459 -0.2491250000 0.3091821727 -0.2475000000 0.3300629500 -0.2458750000 0.2880027291 -0.2442500000 0.3187592598 -0.2426250000 0.3119947689 -0.2410000000 0.3094171270 -0.2393750000 0.3118591543 -0.2377500000 0.3127170211 -0.2361250000 0.3234636188 -0.2345000000 0.3202181308 -0.2328750000 0.3131887483 -0.2312500000 0.3263352593 -0.2296250000 0.3597637741 -0.2280000000 0.3461509673 -0.2263750000 0.3596932249 -0.2247500000 0.3877036009 -0.2231250000 0.4150217294 -0.2215000000 0.3777384734 -0.2198750000 0.3970662611 -0.2182500000 0.4297445147 -0.2166250000 0.4117412855 -0.2150000000 0.4119243494 -0.2133750000 0.4155184408 -0.2117500000 0.4158429903 -0.2101250000 0.3993406703 -0.2085000000 0.4044223280 -0.2068750000 0.3924243231 -0.2052500000 0.3853717201 -0.2036250000 0.3561362780 -0.2020000000 0.3719698354 -0.2003750000 0.3722555825 -0.1987500000 0.3640783412 -0.1971250000 0.3540215793 -0.1955000000 0.3396462804 -0.1938750000 0.3377683475 -0.1922500000 0.3555337813 -0.1906250000 0.3612931479 -0.1890000000 0.3621747646 -0.1873750000 0.3532286884 -0.1857500000 0.3624536299 -0.1841250000 0.3641565759 -0.1825000000 0.3644079137 -0.1808750000 0.3634390685 -0.1792500000 0.3785658194 -0.1776250000 0.3806075089 -0.1760000000 0.3886157965 -0.1743750000 0.3955045974 -0.1727500000 0.4064837150 -0.1711250000 0.4150428114 -0.1695000000 0.4261183169 -0.1678750000 0.4326207701 -0.1662500000 0.4416299270 -0.1646250000 0.4577031390 -0.1630000000 0.4773543330 -0.1613750000 0.4711457627 -0.1597500000 0.4762123194 -0.1581250000 0.5540824415 -0.1565000000 0.4878365448 -0.1548750000 0.5071181383 -0.1532500000 0.5143395153 -0.1516250000 0.5335619871 -0.1500000000 0.5429506548 -0.1483750000 0.5685414170 -0.1467500000 0.6035251621 -0.1451250000 0.6166860581 -0.1435000000 0.6075198977 -0.1418750000 0.6509163620 -0.1402500000 0.6589714123 -0.1386250000 0.6778881061 -0.1370000000 0.6011338271 -0.1353750000 0.7143798169 -0.1337500000 0.7252924392 -0.1321250000 0.7118303263 -0.1305000000 0.6674211308 -0.1288750000 0.6859255241 -0.1272500000 0.6828246411 -0.1256250000 0.6886261882 -0.1240000000 0.7093714032 -0.1223750000 0.7057709012 -0.1207500000 0.7092400623 -0.1191250000 0.7125117994 -0.1175000000 0.7424229028 -0.1158750000 0.7643590312 -0.1142500000 0.7889689500 -0.1126250000 0.8142089383 -0.1110000000 0.8398482401 -0.1093750000 0.8573103791 -0.1077500000 0.8821178679 -0.1061250000 0.8916601639 -0.1045000000 0.9071733320 -0.1028750000 0.9337121629 -0.1012500000 0.9559136458 -0.9962500000E-01 0.9867304325 -0.9800000000E-01 1.019811867 -0.9637500000E-01 1.035368722 -0.9475000000E-01 1.087031036 -0.9312500000E-01 1.111996675 -0.9150000000E-01 1.141749211 -0.8987500000E-01 1.177627819 -0.8825000000E-01 1.214675755 -0.8662500000E-01 1.271771822 -0.8500000000E-01 1.300582765 -0.8337500000E-01 1.361891832 -0.8175000000E-01 1.424334405 -0.8012500000E-01 1.483499848 -0.7850000000E-01 1.537611006 -0.7687500000E-01 1.600991970 -0.7525000000E-01 1.668820407 -0.7362500000E-01 1.780664719 -0.7200000000E-01 1.923501470 -0.7037500000E-01 2.113146093 -0.6875000000E-01 2.240179283 -0.6712500000E-01 2.736138092 -0.6550000000E-01 2.796025377 -0.6387500000E-01 2.560687896 -0.6225000000E-01 2.372753995 -0.6062500000E-01 2.384002788 -0.5900000000E-01 2.495913264 -0.5737500000E-01 2.588478454 -0.5575000000E-01 2.741572287 -0.5412500000E-01 2.871439951 -0.5250000000E-01 3.111678856 -0.5087500000E-01 3.340784307 -0.4925000000E-01 3.597869331 -0.4762500000E-01 3.888088496 -0.4600000000E-01 4.217889714 -0.4437500000E-01 4.596114382 -0.4275000000E-01 5.026214075 -0.4112500000E-01 5.526746139 -0.3950000000E-01 6.112348679 -0.3787500000E-01 6.803189637 -0.3625000000E-01 7.626367501 -0.3462500000E-01 8.618784879 -0.3300000000E-01 9.832641578 -0.3137500000E-01 11.34056198 -0.2975000000E-01 13.24949236 -0.2812500000E-01 15.72108100 -0.2650000000E-01 19.00868618 -0.2487500000E-01 23.52931083 -0.2325000000E-01 30.00969765 -0.2162500000E-01 39.80395009 -0.2000000000E-01 55.62154138 -0.1837500000E-01 83.12983075 -0.1675000000E-01 132.3183983 -0.1512500000E-01 197.5877094 -0.1350000000E-01 224.9260793 -0.1187500000E-01 285.9924798 -0.1025000000E-01 85.30694486 -0.8625000000E-02 3.671201094 -0.7000000000E-02 162.4176827 -0.5375000000E-02 245.9500598 -0.3750000000E-02 288.8156348 -0.2125000000E-02 212.9691149 -0.5000000000E-03 129.5249901 0.1125000000E-02 81.87328852 0.2750000000E-02 55.85691160 0.4375000000E-02 40.60642799 0.6000000000E-02 30.97940990 0.7625000000E-02 24.52285837 0.9250000000E-02 19.98215836 0.1087500000E-01 16.66647552 0.1250000000E-01 14.17343135 0.1412500000E-01 12.25433655 0.1575000000E-01 10.74146307 0.1737500000E-01 9.531459533 0.1900000000E-01 8.555637007 0.2062500000E-01 7.751210953 0.2225000000E-01 7.085294890 0.2387500000E-01 6.523344970 0.2550000000E-01 6.060232477 0.2712500000E-01 5.664285113 0.2875000000E-01 5.307790652 0.3037500000E-01 5.035835293 0.3200000000E-01 4.795019363 0.3362500000E-01 4.590870610 0.3525000000E-01 4.417411327 0.3687500000E-01 4.278443356 0.3850000000E-01 4.163551237 0.4012500000E-01 4.075287756 0.4175000000E-01 4.009445065 0.4337500000E-01 3.959060873 0.4500000000E-01 3.926666857 0.4662500000E-01 3.926892569 0.4825000000E-01 3.936888916 0.4987500000E-01 3.966733627 0.5150000000E-01 4.012851811 0.5312500000E-01 4.081705736 0.5475000000E-01 4.172755663 0.5637500000E-01 4.286390053 0.5800000000E-01 4.423503877 0.5962500000E-01 4.571227140 0.6125000000E-01 4.777088246 0.6287500000E-01 5.008360595 0.6450000000E-01 5.275498041 0.6612500000E-01 5.589189112 0.6775000000E-01 5.970389636 0.6937500000E-01 6.419649270 0.7100000000E-01 6.948796777 0.7262500000E-01 7.615794842 0.7425000000E-01 8.339629296 0.7587500000E-01 9.233612422 0.7750000000E-01 10.14203990 0.7912500000E-01 11.74484803 0.8075000000E-01 12.89049991 0.8237500000E-01 13.00290982 0.8400000000E-01 6.533766224 0.8562500000E-01 6.038647276 0.8725000000E-01 4.715143905 0.8887500000E-01 9.749790167 0.9050000000E-01 15.16837632 0.9212500000E-01 23.92483687 0.9375000000E-01 35.65079034 0.9537500000E-01 52.74977070 0.9700000000E-01 79.12623032 0.9862500000E-01 127.7721667 0.1002500000 211.7244301 0.1018750000 308.5887367 0.1035000000 354.8008682 0.1051250000 330.3708040 0.1067500000 250.0746949 0.1083750000 161.9228045 0.1100000000 102.9615314 0.1116250000 69.41164219 0.1132500000 49.96569947 0.1148750000 37.94128904 0.1165000000 30.16315597 0.1181250000 25.11320914 0.1197500000 21.69453043 0.1213750000 19.16296174 0.1230000000 17.67070945 0.1246250000 17.14876625 0.1262500000 18.02827036 0.1278750000 19.95070881 0.1295000000 23.63584791 0.1311250000 30.48432963 0.1327500000 43.53322626 0.1343750000 63.03821025 0.1360000000 95.10526971 0.1376250000 139.3846623 0.1392500000 142.9325975 0.1408750000 99.09262728 0.1425000000 57.47468169 0.1441250000 36.90150927 0.1457500000 26.09035012 0.1473750000 18.84691654 0.1490000000 13.88038296 0.1506250000 10.66278001 0.1522500000 8.618397214 0.1538750000 7.347016452 0.1555000000 6.256327372 0.1571250000 5.229526294 0.1587500000 4.712336033 0.1603750000 4.352893316 0.1620000000 3.968997399 0.1636250000 3.568584940 0.1652500000 3.301211450 0.1668750000 2.965244492 0.1685000000 2.761553111 0.1701250000 2.663228159 0.1717500000 2.495876430 0.1733750000 2.398385244 0.1750000000 2.329317843 0.1766250000 2.165254801 0.1782500000 2.045402383 0.1798750000 1.968130479 0.1815000000 1.884178543 0.1831250000 1.904250026 0.1847500000 1.761632674 0.1863750000 1.742768482 0.1880000000 1.689974121 0.1896250000 1.607053276 0.1912500000 1.575166304 0.1928750000 1.528169590 0.1945000000 1.461381724 0.1961250000 1.477506911 0.1977500000 1.486235829 0.1993750000 1.418696934 0.2010000000 1.384788075 0.2026250000 1.399416222 0.2042500000 1.389195372 0.2058750000 1.303514500 0.2075000000 1.359069628 0.2091250000 1.364404567 0.2107500000 1.365585987 0.2123750000 1.263862776 0.2140000000 1.267720607 0.2156250000 1.317686777 0.2172500000 1.283527790 0.2188750000 1.293262353 0.2205000000 1.383950528 0.2221250000 1.352750667 0.2237500000 1.373311424 0.2253750000 1.402624165 0.2270000000 1.400416457 0.2286250000 1.434334353 0.2302500000 1.518711724 0.2318750000 1.491252805 0.2335000000 1.493386084 0.2351250000 1.527866124 0.2367500000 1.616390337 0.2383750000 1.433700214 0.2400000000 1.406369100 0.2416250000 1.469279079 0.2432500000 1.357593958 0.2448750000 1.497208357 0.2465000000 1.417357503 0.2481250000 1.734137843 0.2497500000 2.315548817 0.2513750000 1.802914656 0.2530000000 1.631495261 0.2546250000 1.611069967 0.2562500000 1.837738787 0.2578750000 2.752979537 0.2595000000 1.910586414 0.2611250000 3.656167563 0.2627500000 1.537020248 0.2643750000 1.638940418 0.2660000000 3.113717255 0.2676250000 1.200343801 0.2692500000 1.647966741 0.2708750000 2.536259602 0.2725000000 3.690303542 0.2741250000 5.794971781 0.2757500000 15.83421465 0.2773750000 12.22589538 0.2790000000 11.47943742 0.2806250000 10.68415622 0.2822500000 15.52998970 0.2838750000 31.81482462 0.2855000000 605.2559892 0.2871250000 81.41688130 0.2887500000 38.56012664 0.2903750000 28.65320807 0.2920000000 40.81990965 0.2936250000 74.21750093 0.2952500000 157.2132802 0.2968750000 311.2399557 0.2985000000 177.3413822 0.3001250000 142.1055123 0.3017500000 64.49910739 0.3033750000 35.05980488 0.3050000000 29.32492676 0.3066250000 19.41811557 0.3082500000 10.68474122 0.3098750000 6.938832325 0.3115000000 5.166535560 0.3131250000 10.06221336 0.3147500000 3.830943699 0.3163750000 3.790425683 0.3180000000 2.839748602 0.3196250000 2.026227603 0.3212500000 2.013797442 0.3228750000 1.650698645 0.3245000000 1.888107912 0.3261250000 1.520298242 0.3277500000 1.347253393 0.3293750000 2.619396060 0.3310000000 0.9018385344 0.3326250000 0.8832667182 0.3342500000 0.8565585689 0.3358750000 0.9954099362 0.3375000000 1.233894425 0.3391250000 1.540413885 0.3407500000 3.057499187 0.3423750000 1.658812131 0.3440000000 1.414833028 0.3456250000 1.254069909 0.3472500000 1.660696094 0.3488750000 1.894661819 0.3505000000 2.111420739 0.3521250000 2.376092265 0.3537500000 2.660252305 0.3553750000 2.659840761 0.3570000000 2.833102053 0.3586250000 2.992591420 0.3602500000 2.908690353 0.3618750000 3.339033117 0.3635000000 4.417426267 0.3651250000 4.000119803 0.3667500000 5.085818340 0.3683750000 4.484758726 0.3700000000 4.047073140 0.3716250000 3.932068022 0.3732500000 4.501613244 0.3748750000 6.565232054 0.3765000000 9.501522693 0.3781250000 8.626529949 0.3797500000 10.44047172 0.3813750000 10.28329947 0.3830000000 7.991488159 0.3846250000 11.58878644 0.3862500000 16.61819193 0.3878750000 24.13660214 0.3895000000 25.76852343 0.3911250000 30.71424402 0.3927500000 40.51142341 0.3943750000 58.97296096 0.3960000000 77.77894772 0.3976250000 106.9231858 0.3992500000 183.3090670 0.4008750000 109.9870598 0.4025000000 151.4182416 0.4041250000 239.7831576 0.4057500000 224.4923457 0.4073750000 201.4927646 0.4090000000 281.0298055 0.4106250000 347.7077363 0.4122500000 244.7484073 0.4138750000 146.2596851 0.4155000000 86.08806822 0.4171250000 62.65561342 0.4187500000 53.38070839 0.4203750000 43.01333445 0.4220000000 34.88786312 0.4236250000 37.56776732 0.4252500000 35.71306817 0.4268750000 28.87161138 0.4285000000 17.45356246 0.4301250000 13.56150406 0.4317500000 14.12036679 0.4333750000 12.91028213 0.4350000000 11.76303977 0.4366250000 10.66747181 0.4382500000 9.579208511 0.4398750000 8.580800642 0.4415000000 7.850298873 0.4431250000 7.703482797 0.4447500000 6.866150293 0.4463750000 6.150321216 0.4480000000 5.620706184 0.4496250000 6.039247869 0.4512500000 6.060103436 0.4528750000 6.882720474 0.4545000000 6.977903104 0.4561250000 5.702774510 0.4577500000 4.590788089 0.4593750000 4.742108513 0.4610000000 5.959436892 0.4626250000 4.361682197 0.4642500000 5.751934614 0.4658750000 3.709682661 0.4675000000 2.636925558 0.4691250000 2.432392367 0.4707500000 2.549257781 0.4723750000 2.673988226 0.4740000000 2.722321569 0.4756250000 2.657313761 0.4772500000 2.570848433 0.4788750000 2.530018475 0.4805000000 2.564924757 0.4821250000 3.191469845 0.4837500000 2.991905089 0.4853750000 2.733508574 0.4870000000 2.547840564 0.4886250000 2.405592954 0.4902500000 2.605873081 0.4918750000 2.677796930 0.4935000000 2.672249847 0.4951250000 2.616822391 0.4967500000 3.266705386 0.4983750000 3.260215422 -0.4490921551 0.000000000 -0.4490921551 210.5166950 -0.8880371772E-02 0.000000000 -0.8880371772E-02 210.5166950 -0.8880371694E-02 0.000000000 -0.8880371694E-02 210.5166950 -0.8880371694E-02 0.000000000 -0.8880371694E-02 210.5166950 0.8347326035E-01 0.000000000 0.8347326035E-01 210.5166950 0.8347326043E-01 0.000000000 0.8347326043E-01 210.5166950 0.8347326043E-01 0.000000000 0.8347326043E-01 210.5166950 0.1082471941 0.000000000 0.1082471941 210.5166950 0.2722011482 0.000000000 0.2722011482 210.5166950 0.2751215087 0.000000000 0.2751215087 210.5166950 0.2751215087 0.000000000 0.2751215087 210.5166950 0.3985573554 0.000000000 0.3985573554 210.5166950 0.3985573556 0.000000000 0.3985573556 210.5166950 0.3985573556 0.000000000 0.3985573556 210.5166950 0.5441096240 0.000000000 0.5441096240 210.5166950 0.8291470074 0.000000000 0.8291470074 210.5166950 0.8291470074 0.000000000 0.8291470074 210.5166950 0.8291470075 0.000000000 0.8291470075 210.5166950 0.8700428382 0.000000000 0.8700428382 210.5166950 0.8700428382 0.000000000 0.8700428382 210.5166950 0.9259938135 0.000000000 0.9259938135 210.5166950 0.9259938154 0.000000000 0.9259938154 210.5166950 0.9259938154 0.000000000 0.9259938154 210.5166950 1.070509290 0.000000000 1.070509290 210.5166950 1.070509299 0.000000000 1.070509299 210.5166950 1.070509299 0.000000000 1.070509299 210.5166950 1.246855885 0.000000000 1.246855885 210.5166950 1.246855886 0.000000000 1.246855886 210.5166950 1.246855886 0.000000000 1.246855886 210.5166950 1.385428722 0.000000000 1.385428722 210.5166950 1.385428722 0.000000000 1.385428722 210.5166950 1.392200748 0.000000000 1.392200748 210.5166950 1.470137005 0.000000000 1.470137005 210.5166950 1.470137005 0.000000000 1.470137005 210.5166950 1.534907205 0.000000000 1.534907205 210.5166950 1.534907205 0.000000000 1.534907205 210.5166950 1.534907218 0.000000000 1.534907218 210.5166950 1.608859956 0.000000000 1.608859956 210.5166950 1.608859956 0.000000000 1.608859956 210.5166950 1.608859957 0.000000000 1.608859957 210.5166950 1.633749355 0.000000000 1.633749355 210.5166950 1.645568484 0.000000000 1.645568484 210.5166950 1.645568484 0.000000000 1.645568484 210.5166950 1.645568486 0.000000000 1.645568486 210.5166950 1.650509122 0.000000000 1.650509122 210.5166950 elk-7.2.42/examples/GW/PaxHeaders.21776/HEG0000644000000000000000000000013214061636520014610 xustar0030 mtime=1623670096.461101057 30 atime=1623670096.451101066 30 ctime=1623670096.461101057 elk-7.2.42/examples/GW/HEG/0000755002504400250440000000000014061636520016722 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/HEG/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015770 xustar0030 mtime=1623670096.453101064 30 atime=1623670096.453101064 30 ctime=1623670096.453101064 elk-7.2.42/examples/GW/HEG/elk.in0000644002504400250440000000143614061636520020031 0ustar00dewhurstdewhurst00000000000000 ! Hartree-Fock ground state of the homogenous electron gas. The Wigner radius ! (r_s) is written to INFO.OUT. Note that the exact exchange energy is only ! computed during the last iteration. tasks 0 20 620 actype 10 plot1d 2 50 : nvp1d, npp1d 0.0 0.0 1.0 : vlvp1d 0.5 0.5 1.0 ! Matsubara frequency cut-off wmaxgw 5.0 ! response function G-vector cut-off gmaxrf 3.0 ! temperature of many-body system (determines Matsubara frequency spacing) tempk 2000.0 wplot 800 100 0 -1.5 2.0 nempty 40 chgexs 10.0 ! use the unit cell of aluminium avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.75 ! note that low density gases require denser k-point grids! ngridk 8 8 8 ngridq 4 4 4 elk-7.2.42/examples/GW/HEG/PaxHeaders.21776/HEG.png0000644000000000000000000000013014061636520015774 xustar0029 mtime=1623670096.45810106 30 atime=1623670096.454101063 29 ctime=1623670096.45810106 elk-7.2.42/examples/GW/HEG/HEG.png0000644002504400250440000125745314061636520020054 0ustar00dewhurstdewhurst00000000000000PNG  IHDR v pHYstt;(tIME &1 IDATxk++){`}?v#]X2vIcJb(################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################ע|ow /7|'|Exp|ݦTwׁg'>V_flk5ӫnk/D;~sd[7j 6oڎ50qCbUE%<ͮc1v!E1!XeUzq kxTWTbFjq,cjEB,Τs2 :KmNBHTl|{o&ο }߯}py#ϸϝsTl!b!buam`OwU~ FvΣf8R5Q Xw0NJEQ1e+>W ߰zwn1t<)-7TtƪTwO}SŘ"Tٴh [Pqk8&Ah)UA‚jwXXW*D0MLݶ(1u9hP֩ pJU̺G#8 UoN[ WeԔ;8]ŀ84ת6XJ5o˨ U\Fvu>ۑrH{눱|ǧab&7¡ )!/ Lٟck_Ѯ5MyY<[`,[f9=Ml0d-i̲AUc 2xdCc+>Q4DSզ5N2i.WXpBa%1cxG1ذSiz?gcVxe*M0}" &MEy4Ы6շg+Xi AG"#ݡ!XX}ʰ%+1:ŦDf$a2o-)6uhTSrl>MLLe>c)Ԩ gH?6V0i|,ߦW\@}Jyc TյiP,f.;cxjfWUbc6o"W+*A%JwVGYꅖ1lj| m8RZHST֫UH"<}E(Ndxb;ِJYejMM14ϭV㸖E3YtHWk}Xjp#UAcsM_1&l[i{t5<n@S# Wfն<$`oML"A oYu&wX$ɩ9>W0h6iYPu[ƭP٦I]MpXE+v7qdoCFݽ_a q5hq>a>*\CwܹoV"TfXk@_l_y3_X*!=[;m R~UsTvyf 7θ(G-IɶE, 0cM%Dj?!¹j4Ŋa9 cWHq~= uSVf7up5nph#{U{(YUs c.Y|QePt5heI!rl 1̰H(Dϳvp*\ѣJ;JZ 噖\?ANEpO8T5vͯҀZ1@˘+A6@r gR9Xs8GX9FRb6IGWV< [R W.;=XGMpDsh+YҝWIeH]'t%ٍa%KǢ5B,U![h!]]V !HW2XuņiK^GmusΩ Xa w$]f?a5!"w 4[Q{AVq⩑P#(tUxǀvj"-[ )B=%2 c'%)]EHZ398Q]Eo6v)_Uc*vs>,pOrXjkua F+2rh5FHT&G8鼠ݏBngi`Ld9hQjZOEod-&Š0A-XdlN~d?b֊OH S$Ég_D>u:uӡS"QU'ꨢ>ENX-rU~BXEuDNQNR#$Qu>ۑ:U誺G9̝d_ GYE[I\ U^9Ss(M☤ueRocHZ)kg˅_UȺ}%a} g mL/EϒSOlG*oZ8D_ZJτtEƏ8ԝ?d8~q: lEBUrQpN'JHW>PdV! y^T>Ե'5MTTN_l`GWc͡UmJI`Ȱs&4$>\@ dXꏄ1Rc6(7DFfY茯EAy 2& X`My }ZQdsrtuUȁG|s>\c *_ WsgB&֧"CW!Uu}.)p8؁?4w<>l-7GWdHD9C (ުAWu&53ѕ?ur1G5Ck"KsMoohq*JSO`\14f [hp !]0k?c!/, TkrVjKs@I5f5;[5r/<͗+jʹ-E,\2 1F@F怯SʐW2> ä5v~u$~p58S5Y|58mrօt;w o_AV]qMءUY?hV FVF4aixA9'tEkѲ u5i 'nQroJNGjBlsT 6n ކnZE@sέ; U X@"ߠ~K9=lC" ß*^lc:g*Hy$Pwd :BNuBP5,-\_ZUi7LHY/P"p}nr|97O[ \\s;;銴jm+t(O .2ТE_#*[}FqQFdd)~lyFX~kZ>)NbM!b.B+r'[_GB#`X@n)?Wzu\ }¡JmT{;2b$U4 bX<\Wt)\Ty3mO*Wdhy>dCRRґ:_ f$rg3u%3SbUSV \%5sH BHgHX^ a5\q[y \ţ4s+ž5[ Wxc s`+̈́zY)EV:in"tEQЙ)``Žsoԍ} (T a"UHpi.;v9Ou򽮤 {ZڕmʈG#YיִiCM5n*N8U 7޽}X4{2:Bq9r()bsp*se|5M=R05~[|oPFJYlx}@cuͳ}ggE|]V`Ż9]ۻSZX,*2Q5P e[ ѱZWQSc i=:19}ezKgk6l!!g:]W]w?Cs7$`ݡ` u. 凢xfΈ^Uq]v%ӭȘ1 l8PD%gtRnl2V4j}g06 4,)|[nTXlp 6R,0YQ v٥EM3.X&[QW[|e%ZBgmiP=9%<Uh -RZuo ժ,VYR{ezl,$'i<SV(zq܂аNÔf~]uJq䠆ł7h>.WRmp\IoCYcx ,Wu83|y@لkeYbTJ&QE kvzjǥ,u4*bB{Nv\YN]WFq,@mb:]B)f"g:#5>`ψ+$7GիC|P >Z p n,~e M*lD,=-y}y~ RꛖK*@+u@q6gNJ j:验SF?pr,.2ʏA30^*:(]J@+*x2k_U(}+d.Mj N ,A> 0&sT*=$ KXtq@R4/{u?璅=R9j NZpBgQRWqVd,z، &Xp\҈ЪۓF9Ve-CJT Je,d]d N0bZPXspWV) 'bks/C|6tac}VD@ 6ԡcNکk hR*@VбT=D+t֛ZtT #b0V C6rPŕE2n?dra.Ulqb۴+ ^Shi4%A-7,ыc^>XaUMb;++(uR[6/#Rf<أ׆U!T|6fGբ <!QôO? ٕ{ > %%3hUafp,WrluZ}*`U/vwXixetHWdVg2YX!#Ym>E;-tEW3E1:~ykhUf 2xh Q䇧 nIwْPIfjUja3M0,4Xjcf ,[SrȕNr&5Ғ-/Ҿw͑5*q7S݋+N jVS#bwwrBMddGЕ?Z]Dő\a>AW f9a^E KBOWF*A+'GkHr[$?o v`>Εc#T~j-bېz][x&۠,IZZ9L\ Xִʨi$.v*5&&?Hgu})XdvmbjZh*qgd::HWl`ZjO..zu9y)M2'ܰg[Td8JXf "0)!Vq_bw>1\# JTz.i#Qu-GzsSw]E ~kEOrRjg!)n^5 kjSݰ:)lz64w'Wp̙Wni-<d]9Ou!wi IUd{x:oN8b.d61_ٰ7+D+d:AW,5q8z#ΈZ IDAT u( Րpd6}KFσpYږ~}db"\_+,*@)'8Rk \N}‹(vdj2X'vҾrYG3uhu9UKـ pE!]VhO&n1R{A6#Uo8X.nڣfQ \WWÜfBB%_ σs1`_g+ҧOUvP,;B9Xhw'XG3 \-bAWQVjSeN95 +m}Qp ]i5|(\Z1uE,נ0wl$>ΙqER@?[#ujX,,װDiJMe :?z #f n8[-\ Xe@Sǁ=& z`#h»Ձ+nCO#yZK~5hk|: ;ŸE ӂj9I53^x Dպ{ ۶fXCkk1 8Eo9:9H6ȶC|DSVBgKgѺg'ls9qg)b^zhSG+UIbCflƺPT bdbpءU~6D] V2eq$XU7XZģcf3N?prSFPB7N bam5 U,Z! NVƕ`%bh$4yV&ZRN}I1|z-t~1UgUd;D]5YY%8YbMXecl0P[?}x^*"o좫iJkeX˜IE0qGrHE[=E @F^T#7Xd. [U A`6xH[vkϡa9@.i}.e7bmIq@雞[pj?aՋƯ@!j:¿?f|'`)F[0 82 *Ga BWW3ݚBjQ3݀ӻmY\ Z=Nm{ϰTw~ۜ߷!?8`PE?Yst]>"ku`5^;;|3]pnJvJҐˋHKgu5b՜.lmSfIG[qrU CE؋vpU0֑`'=cY1߸;ZV0'i*a 2zT"mƊ/|'j js Bm)3bӻ"zq}b?ܰ1"j-,< gl"C Ɖb|,K,6De*yp"w.bqʪb-tK3P -*Ъ+M!cUi ҢV+2N5`W*C-t%rˬS[9kx G+ Yyقtt2KbhKeX*L;ǻ%?{h0ԨwaWՐ,'y@rι(5Eb5!ְEI=B5I@nҰ ]Ɇ\uĻfhbFǓƞ{9jζ!J]'zɫpxjZl5PSdz~t̤S.XB4r+OWN lo\ jB1m;;Ye$-{qh:AR_<pmvkaBG-"{ՋDsc.:jNƵ5,cK\QRpNE$kh VHaN*Y-~rfoϪleI?pM02Vڦ",O,ܼ dˁz̓֟&, mPC;1%~! :׵6 n8Qc] ў/^ w4TO+V+ʣ`9;2IEe^ #UTx$eTnnӆsE;_f(X*Z)B!jUCb39ņK4Wė_sK(Xt0,ґe <7N/Bn5T'jbϻ.[M&:$H?!ז8'MClz8Pz M;-R!}@7|_@ R9+ 緁=hFnvF-V7;r:-+,+qcb*nY:!K,(LtX况'iUqIrl),UkBݾlVL]Y[x򅫨9E9>O6h5mD!}+Th̸x 4͹¡btW@ӾO>{ڢQW4Vmrn˿}o>I Q*U"MI 2H]=ҡjvYQmv\Eؓ3^vC;8|BzQob&T5+v+QHvfmϯ-P]߷רmPH ]⅓*Tr쑺7QEtx ۓ"Q+ Uurz'U<;]Ns~Zuy4<]$-Pԑ:\̾'8Wk϶=x$N5a WE?NM).kM;d:%lcso{q3pՌ+_}Ǣ]AԟkT1L򨆁e~p+▼+nh~u[o*n%] VUdws߱g/,DG\ۍ&uCժġ !*P/jO4:/t;<O~s&``Ȅ;2PX|NȏdZTjemi-,*r6GhXI,e v8A3ȎPud2k.wy+{jkAmcR%'G_Ol_dN%/J$Vm\8\Ho4+Bj8Z蜓%,~uUFY'<4۹sT!Va,pSvF3lT{DRUpm#i9۬tOEܤ-yF=q'!ؓ#.J+[%VcO\lq {6HO g9?q=%HY7N?YJkl֖U"Tsۭ{::.T| FƫgG٧UoPx)9E^\Vy`hjiISF}Uh/&`a}~*E(UPig/:Q՝Xֵu1ao-&gi0Y~;uɄ3|3Z4QWRkX`ٱ'?ugTuwWspompiF`Ť5\9_ZrfScY.F*[v>.Ó{ 3[@\lr&ʕu0y(PO#WsqꦲIʲtY9q֯U\Ԯ*XEU;;0{z?])t rKK=\`u|D<蟇Y$,ar-=mopo+_!GmWW8Ӿ-=6$=*Yf:C#b>r.M_Å ,7TKT:S-r 7\{bG"T' mPuWV.*QYAE1˫{ t^bz+^\;*]C3j*GHMppu4xf|*`r}Cq.MCpLaꏡQuȫQUu-Nl!5G'P: jbU5D PYj=2z3!uPh&YYn,%teRŬ6k>&x7Tb:K 0od;h`_Ti:[("Z1i0'JZr/XCmd5ڈ;UJD /6kv%wCm:kr *XF#,T"RV0.Ҷ΄0sVӦ+t,׆a [H.kV5DojULDbY9U5G#M x;{Qj[0$*6(ۘG4<]Mԃ%#B"V3JΥZ8մ5bX--AE&kag:;xO3ާutv;ȯ;/<~:SHРd p^IX7)VuBzϳgGB71ӳnB+!]TFņ";$q喂N6\$ ܏w!UhYULd{@8ՙ,>f sV &pW}Lp}t倅Z'3]|!Չ<-c HC[`Cʲ4Jyxq?\GG٦* 𦥷! KM+tU{QřZ5K:Ώ+sQ>yX8#-B\EZ*Cl쏥4X F+sDen^%AˑXW8Nϟoyvb4Ő A۽#yc4(sts+&U1kt[to^X1߇N|*g:1kv%wR" *=0Q("~,v^s B#ͪ9mtz=3PT$Ǭ'եdU;rx1ܕJdڝF90W'E4$sXTB>eU#bUdo dm^#xAWW>XT:~1>_j(hhBсx UmB" fo+ռH >e4xv}_MڎbqWYȢ-|isT^F\LT*KjlҚr3VMwiAڌNWWMvGM(f'Db/uTP6oTYֹg(#]:\2$FWu.m  8,(V[Zeq:U矢C\ :s03kŕݎ0aNmF%iњњZѼiB^5!]GW4К\Eg(WJTWۺIźGhO 6O3h잜fPujWEtlܿGbcaАp-ozu,R*[ZY3&{fkJ܂4-HA\MR c#E' ?yS'*TNDVAÖٕ0>kPzIJ; vWs%Z mݹf Rb`QùcEڞe4-Ti᎚w!q{/)p5m T`?|O)c2L?;sҰ^.폰jUYӈ!Jظްu{~&(j Zue6mU}(,}XKf``DbmnhEL eucUeT+YCxA]wR+_%$mӚ"QUH#t.Nd8)NwXJVxc2]K^"U]uT"bD/,^"c@IY1ju$ΜWOVtBKT+p!D3%:aXUC"T*\r _r/7nۓy{5d VhU5x Upy?}P cmDs5]vp=#de ~u KXN,[D+̈ R;VZDnavP 6N :"@:`'эpyUAʷ|#U67U~/uƣmFV@$`]EE$W-DbԱ\d]~jrbW^?k| cTv7{,#BZC wTY+E2QHc;VZ-~OcS=QM`NW)jY6[PׯB8j_JhknV~ˈk{6XNcS Xӌuu  :>< ީ2{&pՈEr])qY[l(OD%'xUvhcjՄ!A:l?>vm9[ (تUڧ>mk׾ uW_t,8t3o3l)W/xƁt-]a5UjRpg]GvոTH*XU˯H\5UB*o8UtFF\E\ 'f?M_6}TIW_XrSghnQ-DDzӮ$WQzhY- E:;A~L{W,MUXٱPLȆ|&f0;C}{ɚm-]~@bb߁ pIig*`!\5EcȉjK&,oB en9UT9g8T֪#']'ս梈+6UWV[l8t,_SϷD986֠W6uXljoAz[jd^mkj(I\ǔ"U?]yhj!xRsUü<jQ\g>oFЊ=kODͩU50L~+iPgj~+,FJ;UE{Mz2Ҕm/~\Gd#POvJ %bFYEl"GƝ:fy]UL2ʒ84' _b@d'h?9,_RM3@ 6`j2 dWmL`_5^O_wrRO# i)>Kxdh,(8VHwl퍂趪*VQ uD$*Ʌ!13.FǀpI=KYV;NW ̭ -g;A2VIq+X귷ԞVQ9VネQW\PLWǐ,ҏ}v>܁_t&,?F YSmtfXu)~յQK96KRSpg~A]mG+ڔ5Ԯ|XtJ@Xl# gpHaYl Ĭ-UuŪv@+uP{t&qYh}QzP_#Gb@,%ge5SS.HqD+k4MȁմСdgWzo[ e5*Rz e-YmvldO[v&s"lF~}~0/UBD*@Ti8B=N+`ˆCWY]&`>a@J0],T7#D51:6!NW$D,@U0”R BB:5x OUCb5D[+ Պ|vW4$<ժ&,TH3p "lBK)5*XȤ+l5q6Ūjey _uw(bmpEn$ AuЂ}a_U(P|Z$-Cuq+D&l*AZ+rSݧ㼆YG9A.GڕVݛ%ȘK2>U]+V$-W?.DHuo@ -] IxPfp g˂-}ރ8M+!kW0*etOn BUP+I"!\YN֚]uj#j(4 W 4삆E]hX(v-xYoYzN WB:5w3 E] r%CVߝS8Q!'FM!T!•^U{KшTց[O~s.5P]) L՜kpZ䯬 }2pT@"R$ u ES,nEuVf }[SWƖ"Ћ %EjHW'Y}<`|DEQ搮3)eκv5AW K;_~oH%RE;K=3ìv=T #t5׾߀VQIf,>aUjg[*$ҭ<?"YVN9KB ׶n0-@, H+t éWhJnP߲fJܶΒHoh5܈/b &eY^jxWW?C˼eӈr!++똹p,繐T2R:bMf 9wFf6kӜ ?g|'`5Ql'.JS(&i sE]bXM Ls:f mcqHW-o6=5W4m+cbPjIE~HR QY-{z+~BEQ5$RJer԰Hw(LD#VK,kc -gذ,2 Z,A幵 Q~l 2fGqįZ3q*v}j: hU Z*h#XWb6Pu,r::\Ac.f_Rv 1EZ ]M0x"e.fU֒ŀ9 J->»i-c2a~= ؛2FЊFdj-a圙jln${} Pjȼa3JWf X+.+>6ۊ1U!T vZ+<Ѿmȼuz;r2Z oy$zTƢTDiM ,X첂]ZKVQX@DaJ o s qՊO IDATҤ,΍-:o$Y(&ף񀹊G8iv$$8]LEYPYf1n@Wse$`Qȭ!sB2{AUX` Bg?Nc]I} 7& ;} Zgn?RJus;IH+I fRJP% 'kA6,[:V3}9P,c+4$㯶Byc&̊U8٭k#u弄+OV++$@6̩sUI++kg.RGrZbSr%75TUievR&fhUd2\[+Xvr1kbvshE[WD}:.K}˹!,2X΢Ûrg9^bJԩyjpL`P5ޏca U<{`YFPכjSآ%v- N 5!{m8Ŏm 5+WE(bo1,Ȇ_\2}[5bhC)4N}[CQLi˟HjJ+k:"wU"PTqKPvx?<2BWSPܝ%>^dC`,a-/ii`u7 14실 d#5CLo'}^e~-j-mgfeyf` ]!B~&2 }q'sQ^t%"ϗboߩ=3>{^gmPm[ejԶbwf)6 heuTktGCiPj|B;(cf n# )_hRV93jL< cYBy867]~6NcQ1q*/2ank(XTQͰa YUӄn嶚q]M5( +?a4-{3+:.e,LƲf -j!-S\!u]ŕs\ ! ǟNr9^wJD[h~]z&$`-(.] +5K6ͽZ.6~6 c@ YFw .֢ sv5[[];#46Kr֞ zx2K6CkQ6e8uI?Z0k(5,%Tu 'T=2M,[ D=1 FCpEL,6x蠪äbhZ4|IZAhf qES?7s v_XO;ezNIըd1$7v2˅gtH::8=EHl jk+=_ѩ< _7%Z5{HՆd2YX f`;CaXuSS'=|.oU/bR' `h,2Rб|ʈ%h8|+ӂP5"V4 -D2׎?߉b;Sgu ' Evֿ"M*#vOZ[yŔ躲%`ݪs|:y`x l+[844JmZV<Ju@8~]ZPAܹb_+o滮{B_Z4(e[U`bcVz. C]~[SֶTXGrw*XJa!ŦT)v>ɝ 1ҐqirUFs(6fUQ~%QVf3[ pjC!nP:![e$h.i`0^esV㲦[KS!W݀U!WMQl( Aq!(_/Ҋ!Ⱥshi8z."خ,?ڲYϿd$9tU0N/:"P:f#~ey(tu^jUN4@io΍hc l! 0⻮ ID™XȶÙì+9{ŒESOirPzt Rs Xt.PhUwHk 3V|MԜ,x=HV3ٰ_yN)Ehبp_a&fڕs5]M`VZ,nyBIOWE2"sq|e4TpKzI-Zy+ci+^!nz"VE7'"|`,t!jV<0v;L*~Jo#/Z99`i/m[/3xBq@Us+omEusGTQ[!v5jXƋ8Q iZJHkbV*X` ~Lz 8-]58u r9<ս,4.m'@UZKU[[t/i|ښE3DnUΩWB,Z:IãXKYIc0RuVx䂾 ׺alJ-rT+N|6|(zzX#.vuq?iXƕ [~oiBgTO1:ZS77@;` 1˚(SIM hUgkW5,&{%+WȠ+)b9{4*vBd" ڛa]*gb g&`o%cm<߭X`:5hEZoʙ+,T+Rf~RjJ0*ӱlŰ^,@&h.1 VqYi}hp`v%\.#RA( 뺻bKve)%)Uo5UP)„k+}b i n .?%}TOiTj@ªERב'aOc==Wvշ[z?cBW{=ڦ^RϿ~t:YW;rR΍Oel/ϝϼrFU'뾒8Y/na9)7n_7CTޑ ]f=QŕĊ7JX>ŐȮ<ܱΫ:`.$q]*\E%~uouvFKG[3c)1d<~]b[V L2{/v$S;O!]yrc,|GTVC م]y|lRTԻv{Hmwr-+ѨLcE#UjR ;"MgrR ,Zfɞjn;-"T9jTs%q/1ߌ3R m: )ɩ+:V]ZtՊ(YL\ooQ:"ORB'Q`b7_Ξ~"eؚ9~$wVX_vZ$q7:E|psjM|fI <@Ub*t핚7 w)E^)& ]/+5$߁Y芭:6C,r5btSz}tH.WQfWiXASܯbյ5;Ns0jX.-V2"i]1S0cx+߾|7;_#\}y_rB혍үe(_P <cq[}a-GսbG 6Q>X+^ WuSc,:A!1'WȻPUH;t0|f_6~z<`B;[|WzN. 5=N j?e;<]=LbhÇv.!آ%'˪\FWКA{#&Ⱦ@dJKזc҃:3WmdX['r49 oծ~ WR}Ĥ%bMWpϟ%,\IT+UJЫ޶{_4SBZ#sZN˲!d:Ω 4Qw~޲iݶ1:ZK6Zv}RK./Sojţdu 3|ժ^Y sά-O_p 6r`4/k#N@r.,kB {kVobް~iNzPup _U+j-ڭC^jFeh7xWVQ<.]&w~Xa}~ӂ2&ʠ׏*R׵YE@~"]=vjs޽CE9՝e-Y+qka4JE@޷o3Ws# j!!Pk10Ff^oSWw'tErA--?ޯpu=mKgwL}:JZɇw5tЮdIW 6}[l.mOѾZz>$`ͷV.}h\U ͺzMF7eXw JL\0ى隀ϋiY^ful2W ;wP4 8ƺOus_y`BLQE{}zG |}qW"(cx~$|q*t$Fܢ0F }G'^GW:mԡ6o%lvȰ)~귨둥 DsĚ Ẑ2AuZȶfPw*e3\w@| e$k=}"隆hVxkņkVFͥ) qnHsZ=cwm b?e ӴALBJ-w9 FUmX13ِ&l{Ğ_[G5Z]*:~-ҊꐋVl(U]L*\3D ԛUd^\&}Սr+琖9ڸ\+ UV p҆qM~`jSS䋷{rϟT;mHbˬI@{beBbFV~Q\ 'QևޯA%8IioUy Nc(G{{+lWU^Ω>W]ҭgN ]bvd.n]Kj̹T!ygy K1^y ]thW*H˂LW45QX0"`Dׅ8Fy7Ixo4-!dK]Yx& ۾ t,K"#}`= S+XGD8Osms[m,Orh]BYWO l|bxʖu6o()}h_i wPz1"̓&,oPh菥yW9GqWQS9*lՑ R1"4alab^ٝcio˽.mD3pj% ,e-,Z}'`hT";hWvI9  e1^r [k.V] y<&Kg汏n8"K-h7DgXY,FE3̓/H~vDuJţo|,ߘt5J~n3?/IKNriA-5^{SA] G-[1pk;Yz,UCjWߪN,oEg9 >KX RHi }'& o"${!a7Q(Hb#~yM/:\X:RMMF ޹Ѭ!HԐbUhdliI+!^KHbdj1l |تBοXwM~3BMTȦ+\C歓KZ*NHCT6d[vڡOShZβm'7vfmǶw|V}0}Rke̸:C+scS9gMun@[y뼁4zۯ?~7W}`95իMT(Y9o9/˹Ej*)YI<*H FtBUոv1|Hj&̽.MD}`F*sXdj j͠ ѶhL"I TVZ3dz;sZr*XUvLsXUSH+FkF=HYf`pM/Vұ{<5 D yY>]0XlzcՄ|̸j'2h>~ IDATu 5s\u=VXrxS =e0ߕufuUD; :ǗѪMT$T \#TKmʁKFUaل$v^'r` 3FioV˯ǞdUҚ-$kJ6"??FLjXz5cÑV 힃'O>5/,PY*@KC[l h s6 xZ 0րV۝/ŗN`J<})jA"YBYS.VBRv"(X&%=1||%Y~p\S?zD6X-3չB6l\PYX k-E.@iO-rY9MO`2laTp{J eu}E_ jNyZ[ rVdPVQ_$*K%! |tG䢫+z'X߃G#rc,a8LލZ*85[va}|;kWl+lIR݅jc%Ne9Ń*%+b&B.bev1q2,;'WPUCrղ7:v|{u^1j2,hwB9_(D%V+ af>> `@g[6{2Ĭ~㭼h]wd&T;՜Y$?Udcʱ.LIviSYK:ogiS5~Be.}wȱRONyGHQUSou'[ }Wׄ7LުLEn:u5crDim8`?k|U̻f &TKa@pN$&PTTc9*54TIt/6E\7ܣRg}V$X |.6 [*TuAC ,h~|el\:Fsxg6h#@[`O& 9WjC׸ܑ`#.s2ӭ`(L΂Y8՛URFd< W%Y@W5CRql0SQDi&eE=x"!ٱj̖ʟVE!hjq*S TڞJr*ܴsf9e Fd|U~`3ns* *'|SZM\eMq {cg/FW4瀬F,",k;)&0a]b0˻?Sya&C=o/}V7̢̂R<>9H㈻E4)v11ৃlz\"xV! t6YVM:鱟z@bZ-!~izz1$[y7)VXIk|vV2M+uvGWvKq5F`PJO5o*\GۡTwĈ=̏8~]ǣ/ݿ'LN<$8ʁv}]Y( 4@.Q$o7ZbO.W|o6jg*d{WyzGk%Z9xV6 B9Bb,q5U)TzDSB/$=gtmkkSW/OLr>Ɲhnk2=BnB[EZnXKt.=y]cm¿=r4YnRWDJy%;mХU#Hϕ}o'<ȃ0o]n )xaRp *@A+l)ǩ "ܕWG)c, ?gA_\WT؊`T[è)>?Z.{Iwgv@[8׋"$UN\}ʻ\~ߓf9p`M_RSR˪1:KFHFb XMKJ_EVԃ"o tZjF=aAbqXcMX`\QHb,5e [pR8fF7@W ,[5?> *f"BJ%.Kw̦a( W;69 3QN?ȶ&XɖT%TJu^5cO9~蒇o?*'@ +[W*rR_ݓޒ0l"|Z9Њ^ ZM<ȫGe ,!HkrOM_BbUr*x)IBUkIk vpFcq*~B%g?2'x{EuoK1}D!$rJaWej9 H1>&`眇1W* `BGZ$V(;̊1T\D8V%nU%[ l9&Bۙ('(;)>^Ns%ʠW8+sɘ`SUy!^t)LHU}O2lꛪ %KMeʼnLD5j=*`` uU[Z&?R;G;NmiU iA9p;H64q߄qhƂ*koqt//9i̗>KxHg!˘N]{_xㅍsw_4#=` *`wPAfg0g cuϼ$aNF<|pԟ;6tbRά|7y|7}>Hlڦˇo'B~G'Fgժ`j=zFba,[E"X5$ ƚ " T9:h[Ko_rc+Tܕ3Qh:,%`v+Cse7+47Q^M2rB2vS Nujg:*gḓ#0@+>r*9B(&ޥ#dT׬_9[#`mi]DદA@<#=oUOa{sn xgs]X+ Ś!-ޓ 7(&Xyy`UYr?g calKTa*r(3d}_tԖzb{1 F~ m_a?f%aH +%)Y- %Uu!_Џ$Ph4'C9 /򇚅pU3бum;_C5G9@Xdy'9ȡ]q-{vMb,XVX3._)B}9㽜UL&X Wꔟ$UHby]Rb6a0?gd3}8IX ,@bErYn5A2p c'Zцkr;gr^kdquD,kZb[A5Hl<(<f!Z^xO1(`w/aOK[ el'+a[Mrz| lFnV~{vOj6&c;k@$bbT%0+2KhqT0+%O`^;̳PqM퀻6f{,Ű#R JaTIaX-lk6ea6-0ڃ繯0bß'tVQtIr +Jf_KhMq\l,es H99cK{)OWAvH'N&1 Kb%-0`Ɩ@.ެM칛r9Z;_o|[vr=#e`,$`w^)_a-WƪB k¬Tu[LΠs5I5s' Z/v*"hT4E0~tm^g/dzp9[ʧ>|brIKh|@CZjacf9S=Bkɑ̞U\vp+ĩGc}40Wx$1n c駻;.pzuI)C~d,IbUW2Kzh.h^h[@+GK]lVc᜵= j?qs$NX}VIp_ՄShcA#xހ|g՛^Lﴯ?'y䢡G`P4*J(ى͉  B<5' S63SM]ǹC}mW\z݂2 ԂY4!nS)Vg,iƒC0"XWH+^K$( 1k|P};r@i$wrfcԅ+\ۜwp]7:Nyw57@Uɾj)sИ"D;y +iRIk9y] 7]lcHTxO0"?۝ÜՈӢJ.lFTP2KB5 [lM 7}6EZue79-A`ɓOaBZ>%+ 1epW`\&f(A5gHϖ86)!;6mibUNBT 9M.N1 bs>SXB.Z5Q(}ԅgCYy;q̚a,*kert'Æ=*.30oH!@HmhlH0K˗z^Orz/=V]>S+)ifVm= 0@R8T֔AdWul4\@v]`ˉdtnݫ)f&{qr2WX)U%8r~ uNwX&U{6*Yr@C-ҽ{yU5u` *2Mf &ι2tzC2%g*j , .%-= MG88>n~0{*oui;[+w*ŝўM"#` #c숕k~x)nf_vSTQkŊTaC@EZOz!8g{iqz@^W8:?4-o!un҆Կڞv~;lFz}{=8e> f(َc>B'u_LN^9~{^._r cf[pĩJT$ֈ_w@ƚW΁\ ]06X~]`Q`K^!v }ԏ;8KcTsy60Vqp`̢⾐]%عBNfKeWUH %T,\2 qUr,,iA8ł1jֶcm`u}\t35Å$X`\/va\WB"qd*\GAJ[*qb:^"\*<ݟŸEM d?z..Rk$2 "'Mn [4EW~危9AŲ$Z͵p9;,JaM̅6X]N#d*J?%o1@CTc#\ Acc֟h˿\,e@z+>9'*$C!?:1Vr-/n˟݋k b;}ZZC/eqtoeh%&`QTZw# I*aO @N.[y<ڼUE>r@UpgxwςsXk7)cjQj8{Wgz&Nc2 KGQ]+fPY@EW${ {aD0. Ւ'm; `l-^˖,8*6h+.U;/ǧA_ɥJr;+HY%Q\V0%#5h+ yr`9~_j 0֯AXpbV{Pb\YZld`JiXP~wRAU~E諭;jY]K>EoR٬ G%כEt),0\iTeI=w[} o DCRĂT-\eV1>U̪OI*UL"(fQTDA)4>fbEۭ6zkVb~Eb,D[jC0ZcYJ҇QV~JqoIJr:X[]աwNh{D: 5(B`nT ^}Uj;h ɍhUd:d56TUf2=W-Yvo4"@s(IwRi*e;FMr ]]fz5D|ydn bKm$A>; e@Wywʚ,</U/"{ g+9CHc(0$Т.vup>z^CW! YSثEl(ruA&?&4Vq=j]/h|$ּĞ{F֙:̃0i7x R^\OiR"ee9jr_Sc)c:6GMx IX'QeZgs-YmVO\%i-)Ӑ<`妫zf*Wb -ì.הX`z ZNW{mf˂#IL]`i *i*|0㱖|ɮW,h;ػf #K©d0RhZZAUb4yWTʴtWWJNz[X?TNvg:̖ebњPvJBJVZ]P(k~;!N3GRjo' (ŹM8W5~1K4iUMelA+H n9dgH5 if܈ wI#$³ޥlGfݴT 5.j$m܊@M (,Lӕ…+ja ϡP]t `tgye _K޽@]I4(D+[efF$_U&6'XsOlc9Xa,u9:9泮;sGt{g# B!Z>TP&lOpZYECoyJ A6qA E| cݔ-Kh4X `!ϏFْ]2"IN%V g\ժolzMte=$vy}I!#*r&Z9ްRCcRfy/Jn$!tXAla~/(pT|u9KZMuجݪS_) #U@]UT"=E'~+`MoG%\C1 ]]5$ # V2Tŭ+ߎ"Am3;` ^/㋺"x<ҜU^aXr4$`H!Q0BZW?\+81'a#v,lݿi}9EևVtaTb",QlM6ƒN-ٮ3&ހeCkv3SNBl~0n$isA9M'w'ٖb0K%]գerӴ TXtQtwHoS<ʐvJ2jWUg@؂XVh fT. Xoһ @Wq%x S #Q˥PLBE*v㙺r7UJ=QLq ˋh ire2b;< WA8M?Z-Sfy{F, F+C?Z4H,}@XK)ZaD}UnqffC2 ^cȜP3Ԗ8SKN:dv{XI&qp4 }k}r?ukv1T*`U*nߜJd}R:*E+3\5?Ot?V  &w[WRa+F-egVVd3e_gMՋsvt}]URX:䀑kEvQZaJyRZR`.,y=nYl Q]'3ZZ`-hjl*omKP~?nI. 2ɦT0T PջR:<9;>˥X+dјAVWᒾh{uIr_ya%,9f'}8輟/Li/uG6h9DfT`%Tke_rPCF^JcC5\d~-ܞ\o*iA$ۛ3VycU>l0U pեWKp Uְn {ƹ}a.*~抣!1+Peӂ21ZYR P?X F\~EMlRJf{;;헜wG$o&RxTVN_Y\ib{E%C,MB S2$+1ג;ctԨ\oGe`r+=/7T͠Lwv&NPNb^:% OV1&24ž}AU0m$T}JKEo2ɏnPLW0O*ʄ5Xnro{G .'#K*gX1vux֩p [Aؠ,QAzK#r :DUQʪvcuzu:.~=ǿ~z؜*Ӝ+pSݫȇɽƅY_}lVJ-xLUv bVdBWXWWc-v2W+US,'dPc*v4Xɨ0rDK]}0ݤ1U>Ʋ9_*uU$/j86,]EkY ESg]b,WQQtP" Yrh\Ə%q?,$^rPcfq93r+ 5FVU#izs8dA%ǮCT6X}LRjHlQk(d~b{Q5$+jqڹ")iihie>G᱇& z[}Uq\HWƨo:b]T\9bxUªxl ~w2M)͸k}'= J5>Dk@BV z5>>}Of&#^kp? yNY.*mVլ\DEBNb2n }&bcVϯY1ǃ-T q(3i [s&\֫IĸFLUZfyo;( 6A v~iv Xet| 5ʝC*3u.1:waC JeT~c@$Vi]VMAGqr^~;фp#Glwx* 7婲%&W wf5 j_'h|lA(4˪?(ꚮzDsK*]݁#hB(ӗM#Uj[Ho'4f*fCt"ncm<)U(lU&{~"ho UIdUlMk` kh|n89AWKN%Fsmlvʲʗl\ _͒̂V`HөXeqMIwczuZ]/a8v@<8[1h*8ttuLlhsCW/r@U V}m|[x숚] jO3G8*՚ZR<wQ0鵭س!PےW؋;E+~IdB's+i(U4f}^kЁdjXY1* [m#4rCy=,A6jھ<;k"C ܳ & 惰$qxX+18xwjU՛L1Q2ΖD]Ag(Ώmڄ`#xWM/XӼiU%*L˷B;Тyp4y~>BkŃfZ;,d96qZʜ}a Iw17H%#a9h(,ѐ7A&JKAKAvAU:(qh r,uA+T"3-(ܡ;Toi-YCEc+7o`Y# q1:X~h\g obl`% Tailm=\S\x k[34mJVP _} T?S;RĪ JْqQ39rciz)9"pj7TN!XPVƒ.l̴m#6f-*V:z1z@S@+ ^e {0{xxlX(=+:_Yfs(Ě|c#at1 [⭡տU xicVWW)EvB(.+]y>Ng#dr NI^9kc4hӔy]wԗj* ]d"Zn<ߴXyY= UT@x~$C=_9o( T%<5Ra adž|sR ߈!9%A]T٭}=2 ,oj)Xං>7QeEA@H,W5V,HKIƲ\'r]a]mg1۴g? ] w-UfHKϡlU>˃K3N0e~>j1IeYwt): Kb`C r-P%ۊj0K)X!@JTrVDW2 cU@J==Oyo;'QT[XˬJhtր!ZW.H IDAT`qhtࡨkL*# y,u ^'U JDU{fM"E fus, |# z>?;-밯]aEn3X4J{Y+F=J]#,=`=8 b, Zɗ`2:@W0VV²-"إcx~[q>L;\I)ajZ)`U.TcI;sMh r"2P7X9,c=N'd>3 /3/x#7RUA9dp[âFafUQf`&h(48޷ڿ3僪&Nq9? aDgaXgĈ7 g2} bs2 TmʡVuYJI-tʐ Gt0q6sN^̠ŜgX/eϻZK++vT}rlT$ЩGV8Z`/K+O?(G=i~LZ?I%oz3gRRKb=-$xbw$;ICm!Rh*B)(`ld2GgTB7w.{4Eb9GYc6H~ډZНQYôszԩP h,y e9i/#` TbIYѿܚ_eFe |N b=.qԏ~s8‚Pc}Qq(`֡ol"ao!Lr>ԤC+j pMkQn6w` YПEbueҞ4ZLQɪ+XI{ZHhg4iLETV!:">3s_g>D#dnM/Vw\ҞxDB2gW8IEZPFMVX OcE>*Z*WzWy ز?WqRo@VUWg (TD,Jxc롾]vK~MRs') Udz.w X{&/i4q2׫E@sM6.PM#!G˴0 NZz5&ݬ}/& ^ĂIJ{eC4<8kh)')]aZU{r/AuU%᤮7TѺ{;[,xʭtƭg R!qpXDYQFK_,3ʢ1UVxշ8Cuibm*TfKb,V`qR_:SDanM1 \d$Yw=U|9Y"kHqQ?KZWPFV, ܲ2I"VY로Հ7m_5ߴ c,#]@J*rfҲ ɖϩe6+j Yp9miWx`sn6Q>sdVX-Y8,N6IP!X`h Y4CmTJ"5\T0AW%bBF4+K./A[A%ރ]hUtۮ𬞪_`_99maYIUUS=bP&&q0 -f[t@U2+=4ݬ`rD<'NY~$1g,:yYb)++iWY4 V9*24pjN 9OuP4ʪX~b2vW` KWFeP*V=p92Ufw(6kaVK5٬51"-)`)AHX&G#qvz9 DUڌג#'GQ|X!>D*q/gODu( m$WfϒDl#c)nV9ǠJ-T gorf<y `V*j&ŤsiDE$ƒ+К t#[hw ?˼@Cu$1DAcA Ĕ+teATrmX,fd}$it%v0#5& O:"}cue\]*l r:yhcJQU/I*o]CGK8UV3p苬{sWX?]%eE鰯:aS/ƲX\u]sǷkHB|ʏ5PUyp"1Y`ܸތhxvj'mD}Z۪^McNU "sU57@b,ЦTtUZRA:pe3$Cn hوd^d eK"۹bl錜pU=s6҃[1ej$hUv$-yRbĿnDὖBW$zeC&)W9_i.$wVV}\1I-titwe`uyIi.~ NS8i@n{evmR^X6Es~8v=' a~tyZn!aˬޘiT{}J8% r1Vӕ9JXIK݂\NGD`<8?5`u#8ڏX*˂M4R.WK-tl& I1Rleѩ{6 xډ% +vUٔak}Ta-l.8 cI(Cb2/k̂OeQ$jDrE8vm~TxbWԏpXy<,kSr$RZ% YUМ.ij7 ZUǴE%%IF6ԨYàRQYBqyJo90pEQNUrN2C%+<А*a%i&"T@%dL:WzN-m^y E0XWΤHǍݲ5y_JQtXӁNJY9`33jM"-`"[bIL;fTE mKJEX&'m¶WZZ{|G 8r%9΃YKSA (4u`,+܄^ 6H,hUevj.&Zx)Bu* ]Ǐ{K#*- ޲s8u>ƣ4tuJr] u=&18YnL*eGTqk.8B9(î NMJ{\VUZuaܛb#iN(T(jg8ط$DJ#3Q`ٱj*v͞'Cid<cA)eQV.7lx(#ʎIh5ǩ*4Nڇ__A73j&E-b\ɥJv dvGA#Bݾ-qi"1*z騸 N7]`_~.-qj LjX [kD%0!t0}ZV5߷QVg60U4ml[=sdd 8AhDWjCՁǂVZ<YBqV("uߋFWLoq5yt {CWYʙJ]Rt4TɕH,P "Kp= OWѕT]b &"IW!q$BԦA)a$3-зڿ<q?h'pTڧ@^@Z,srQ _rkU]y|UFM- mguzWA+`KB뀡ZߒZtdf8l 9 /ҺXsdJh38;~XrW]卽X2UhC?] DCT9dTIHt"XPi \5,HO07(ja; z)B%i=lGeZ6D}KyثKUkJt J*D[*ځ KݢQ@Tʸ'.J-bֲY0k?fБ[=E?@nvtxQHU+ңEJEoB"I_q)E$Щ\Ap8u&frnb%fK*kw,"4 XQ"\zڅn9..%٬ ?dv$Mu9%IwəAIk%-2,󀬩9V;v9-C?pC 7QޏϾW/1ew,E@I3f[`+b-Fd o{OCφ+M$$}Sݍ1j"-ËZFDeMhB*BΦO\h+|mdߞBWVcx|3pA5}>"c3Ʈ/`,x!*O 52R#T:X+UAUDQ1\2U՜`"g,_ w~Ti`1~]IvhZXW{8l˕Z* /HG2MF'FP{}B.tgS.jëI^g7$eT3r຾>MuiUr;23#+J^QpO?X12"hu0,I(cYZ-`c9'?  'tjxIh2cd9BBp)o#FozWV3qAdX Fz,MRuB=8t|Ѩ  -I].pITaY@T{gسx.cW-wنGTh%wWHۧ@TcrckItEYe߅ 4ftty~=p5<9X8=魷yF6z9x.E&,hl[C"GWZN{374,s?>> p LbQ)GBY|* Y%}u[KYq& /]#nqt=MX߼ Y8@3-s^3/:/UltXH5T}hyD5sxJC{bJ]SVu H4=l`e%\VyR.eH+ii^ {IeMB(@ԙ ?.6 SrY8|ܖJrEe <M=n:.0s|7tݔG+UX9,OshHqMJ%7 ]a`Y4[GF{`@'#A̧&ȣ횣9Os^|3vζ8 #Yd+/>GVΰBue_a7J `AX=@(R#LT7 ܅JTm@ErKNsߧaQXy[0 . chu0崦,qJp;=T`,V*U)wWui _r5]۟F#B_qGœjj$Ml,*x1y/?7ۈ.}u4m%[vDg-WQr2GZ=૚|r4URYQꚂVcY7"$_Q]p _XĊ'g@W)kوPma2i k")6TjuPu)4mYLtPTųҋ-dK\BWw'\,r4^[k$HiZa0Nw\C+?+]=kIJP| bOޞ@Re T(U !&!хf(LhYl%|73`ěW9Wi:b?Cj^u0x1\RT2j mrƢ45ya -?[n,fwWn,j cާdxꊤxRԠ= P*̍GzP?[&߾2X͙AlaG&cWh5ɝ +1PsDUVehu-y5eUd**6h!c?d?U6I^XK0D [A+t6* c h|Vy<=i^oU`IbTçwf(y_wZ[Q鈆  BTТEj & Ys'dQԴCL²1!,)UJ5tU-kW0`^ȃe8p@jС}m&g%PyTI2Ww*M%7DXA97"=X3yI.llyPd傭Za\3 F.zk|=l+V9|H7[Hga+v\Lir˒!e.Nry2\3rGrq=,uBH zV޹z/?ɦ/| ndFi~@cP*a?c<hq9h` ,WU[(`_W!4CXfIs B9'Ih*xծYLd͉I10WʙU<{gptǟg,`$ɝZաԦVY4.TE#taQX6$3]>E{PKqFb??Ԗc$EsHR.o lrMoYL bCCuį4:щB&,P%b8qZ  eTF5w W0"R'b2J)`NƖ&k(ǽ,9. !FPĩSr`nRQS8F_'ƆcIƺ,4{J',֓Ǣ]s0^td&1YX94vVR JUJb}YW.ĂRcU YHgYȮKp4M*-jv髊"s* trjdo'CGdb>3-iN:zOqQ_OZ?B+l&G~Ӕ0>9XkCg]Pe@[S\ 'V/}j Ac0i2ä1+U3ZJX$ZCzUxO-PJiVj=$m&wp9ٯgz= cg[?B]qJj:'-ay@՟sEǻng+hUZH3`?~@~?% PMr&ƪ~8UY7fyW ZT%T%Q;E h4$4 ܩ1XGQd.[8&*IT05KgɡKQ(~mj5mb&Ʋ: C]Y7WXg[^Z= 'nSp2-nXIw )Kzo,nC<`YU ӭdp/eUa}gZw3!iق29i\v8f>0w\յlVOFqoNXAW]zkFNΦd՞{UuP`2<"L-H,֮B FfIxg.sG &Ƃpt} @]( c0&Dx5!S]DFNW]ᩌ.m<+2J(pFW_<Wgޫ$@Gx.)$8\ [8jaπu+ #'G,K=M~s-#<&>8} 0KTU];]}ɸwV B0uye> $Z :AuVI"LJb?Y1v1=Vp_e=Kr!H3 mu7+mEPȴz}WnV_T&'|cX>g@E֎l~m)]}ݕ ïRX~&^h iwM&]%MEJlk*>H2pTiWݏgdW/WI2-PGrʯdWK6ϡXGTH&DW|Xn5OP[0K@VK4i!(7ud1(|+ގ<'rz9RaWU& YVcV<=)IQ'$zcrkƐ9j r j ]m,2rrF zGZ ]@[eOX^lŢARc*NN ,oĒٖL884a4b'O{CoEWOg&! YAsz~ chP!*/H4Ȧ,1K6!IF(s(t '(RsĹ2j&]8b^W>ozy)=k=AHKo,TBFzm%򑟄*LJEd1p&eݱ|DZ=;zg ڟ>fE03]|)fD^~c%2Jg uDqd/7m9zmp-6p /p>Mq&آufѕ'C+b~EwQ c0 Fr>_Ov ՉB*ɐ+'⛏L]"I?o\;fn;ߛ_z!d*kY%_vD:Z]KelT $۳[wRT ,T׵ |MS@]1ѥ*`KD>}<垾i.]Dzxl^2ӝ%3-(+T@ d +Yq|z6́N< ~ƿ7{Ký٬rjYKl pɂ/OWY+?}j+%#fd,^+S:{$ &PTM| M&c_VڷI_oh` 'GZo7Mv s(e C_:˲c-QQ.\B[c/J\g.Y#6* ,~q棛|h([%Z5[T*Pr%u Z >8-8ùz>!]J)(S";l}2+spe,Wl;J9ŏ5X]l<`}ϲ 1K"JoZfY.\^"UHPB"|h8IgR`A^tk_7l΁YcFJv!->3ժQuN"*2خ"m6b,WK}vF~MNh–=ku?GXMfeqO>Vo1EW2Zw2n眴\"+AS҂F+)/Mw rY0s;X16*8)W lٌ%G$,/Oڳ-#課}KM6`(=**fO90+pʵFMc)Ũ8`T,!過G/lSBxqBٮTu+up֑0ZU~/P, YgTt%wZHY^Y itv K:tX<eeҠkƘlf.-m*498JX4Qo5vo?縊R+d,P vPD4 éԜ@I0#DF2i'4yE'+!ޞ%I̖V Dv̎eISAݠ| 'R$i88x;oXÖ ݫ_6hxj2ten*Ȫf*"t` LF[eh>(+UkLn4r<߅uiAVU+I JO8 +k> }\+@k/Wc4VJ3+\S+|< bA'}AzKp_.똾417 fR@x#*stA%p[." i'r%i#Ě"髦mvUU)BbuY}de2HÕ09cرhq7~vaNiړj$p+Ku'up_܋4,he,TqgS XeYmJ|>(&Ȫ^p? ՜Dۥ*C)"!tr*0+NVT繕\ Յ61<<2;%!2XК+Q+JsK$ x l뽑m)K.Rq2 1}%d9UfrKIw(dXlrc*v2=<#?frtel`lx:|t%%s6ydpI146`f wAeP@ƂN#9>R~~aiv: .r5nScxZQGC9[F8ZvohQ _Ug^|"DPW߫1#7NxzkH;|0=o-A+BN/TreTmTj-L JjdVi]6N*_*O[繺sC~*8noDgd2̋VĖ0n Gjc]C)oy)X|"luJY=1?d"G^D~‚V߈)'C}SPˢEEy&dU1BUr{"cU&G2w"?a'EW L&Ax٪e6T0{P|T UE~dyjq:3x3dqO5|asim2~&c5Ҵ;Z<!(>.LIyTY$+YÓ ?S^(Lv߸NE!-VOFppStf7ȩ́v-J5ޭ*!`OHoŘW_tQkt5kUkoswM3YYħFMR% ߖWFf@ *%#U E05s9^N%_TRԄ~83On~W+ڙ:SX;{׫+ZUY|['u jDNN_ iEqUQ1ak8=eլoc m򮃳f%EHEYƢSl+|'iX"1B=tJUSogL0Xu2V~rZQDj鴖\rT:4O2Z֫ƾ(46~Jd_-RNC(+Cu+ְixm~&曤x{D3rӚj95+ڂv 'ܼV?~}'p h&z'~yjhB[os==`rMi T\`z_CcmfR}Dk#v\Me`\kwA.bC w9d$<"cp7{L4lo[XT2U#.߀~,۞f_D76V<(+Ux@dC`X=ltXd:U!mjR.TQ-YX-vdL M࿦p &L{d's7~Ň{ŬVfBfĕ?i}x\ Wjûm\ .TTnGq|M{>ߓxNIp25`~JV~&8f5j|ua$P?SXOcmNkQ8-gk~.KOg-up*r ЫW2_St8Vvϡ餻Qsh3u,^l o,b=`]bk,_vw6s-p%hͭ6a d3&O.89v\=Bбrc ;)wZQd!|i;jic;;?8tu9f)X&cmξZWiV-]IM3gYYBOp |{H Xƺz"֥UxtܼhU;ZymM"v Sa9Xj}VLS37۽*UyWTXn%~lg'8zly|R>V{ퟣK3E 8&`^8}BNdvX7]WĨN$>&^'L*6թƟySߧXI/ɻ.>HQS:Q%]l.vcFfQZVEAӃ1~ڤnBUHbur!ڃ\|vF+ʗ'{?W|DqBצnPW /\u{ur2SU+gKk$ O3͜ E)ad%'̍ͤ ́I^2V X;ݶx'̾ Gj}eEpN s+UmUBW@{ꅶ2q^]nbi$U)s5EIݹV`g>HrWO Xw9֝u,鵪tcR! s* "##J^if8Xujs0aA5'0L< jb-dV7~,ǽ㱑Z)[;m`?mUどoXsdhe1 6괉ж}+ ' ꎄ>3oS– ~E Xd>L1]:~gNfw`7mW޲@&9f "Ɨx `c6A YY.47hZGB{(|o`uPy`REPZN_Y !P6b=9RbYi VN{u]eJ]z֋}CVMREŏ 2^WJ^rjÎS|r1+1* :h4EHG4BJ>_HcP"3&خ>9cm!XSsVdz!T}qhk  !_g(.Y=؁XRӾPHqMڜ; &g+ݢA(aU9Xy <*XýB<:kJ؋ "K Uf>~5ICѷIYxx6X_f"1?  EE`:4gSt.ì䪓?9Z gt裡G'c'`WZ2+:Y1YxSˬx%ҍu="+HlS'Sx=׳"ЮGC:U-[X'K*O ViEoz)T`mpk3EYuk\A7V>S"ԝ46M"$'2( ! =v2V'ccU'Ԯ|n/ -Սr[*6JdAYRSt:" g Z{SGmzyzp)XQE|;_e.V*N=(#֎>d>r rz\ `OYg?=CB6Zsv:Zvj2w9`Vvs^妳Gb][puYئTtjXᖢFB҇WBµ;)<\}؜2,9PkΧy]~N:0o6gHaVٚrP} +/NώI/[\%3G}D+8gޚ~ֹcC՗ IDATM~YY)>h緗R\A?_C{Yq%g#pאxJ u/&WӄH^^>|:]J-;Zì^ʞrT3L߅w]/IDE =?qZ) ֻ 8//*pƢCZ"¯c,=$YRe2c Q:k roK?<oOLt!Wk!U(YMmoj G_@9۝xAif'볌[zBW+iTG r V<7!ǰJVygYY3AvPlz߇CЈ3Qi3+X9AP4C{xHMFa3ɚ <UH52 ;trxr9٪1eu/ת=0{Fw8HH'ߑ5~%i llSaWA}D@I+UYtLJ#LQfMVWМ˖|)nzP̐2 |Ɂ'eRUL捛8eMO0vCmyС؏<{28k zQklvhΝ,q0_k똵Mrt4%iǓt=s"jh M\W :59S+Lɐp2{䫞) GWP4Z6WZ+"CV7E>>cX|X3=ɧZ ֵh " l`vc)Yzź4F4yS}v}罖h .X6F!7i N@fwpzhE+Nd [.OSO~x>r|g]e=!\:<;XPqNgP=JjE>zC*+F%mf.K t1]M}Q 6W0^AȚ7]{3hg ֢ڏx>d4FVtHU@jQ:w}Q5@Ṳ-3mƳN\%Η|JY2{}hTg ϘP}q= ʒ B ?#G%VJoR/"4Gtcu!T OWDy~`f)86cmO*&ղi K2gdt V(X%lz9VZъ/yNtհjj#S4rr8z:6O|xI€ubii֞kBJ мtMY4ZE%cBH;J6WEj>cmf&=\U?v4 fiwlman!he,-6.&: GqѤ3u|ozU4B:Kn)\ )m :/>xfrlF蕮# S4=UxuBp2~,RF9cõ'9r`mEn(OjgJ )#gdʣ `pϏp~Vj*mjltڶN#ߜǃY*;)T 2:*xb ́0gѪaXڸ-K w$3!>iy,(aRzz#s(XCzm0})Y%aAn'?e0^1=8sk-yvGsܩcE /Y5/YV/ /#'XcWd90'x-jO [{-G.ċOItR`b**ZѯZmN[簹H#=Յ=if7s҂ccn*_vj1siă_| [U^6*_Ee?u408!º%\Z[㒵|?P؎!z v:!29"^6;_4-xYb&;JN|%qyLF5)X` B62L2-Ո)/X\fyt,s5&TK"&ZuNJV6,LJÖm`z@l}U7?rxȬ~KjT,FgL⯹:i-t/n&:xsQaNm`}m::Xuqԋn%xo?)b7f&ߙ_g <a*K{WБ߀2(c$R _~iV\@!Y.C-&.;iʻg*-Ă'('a~,:Fh`8k|q}m_BYtr::-SFCrR~ "Y:ɲ)|i,bv>PٚC7 ʿ>8ZAEƬU?MT ߩZpv=>ff!!8FIx%{X˔l]75y]J{x6-TlF/Xæ8uMcEvj{QR{rIWkO`\iy#9Rgfb@:Zݯ8}KOTbߟ=1J/gU=|peyco5wt'bpxh{Wq! Ch [ oYbqEf70EN5^??x+z isyx* z3PdXQDqC= z:V91U== YkR- o;嫢v?ӳx9N{pf{;<~&؏4(u!Y&: aUcqju+jd>ϼӃ}?]~G3a,jF;֩ל|")UKh\z-Z: z_'S!}EPb 5JG'g檞eyKvA=$XM[*f!QЯSOJ=q芫TZ-N}yNO2MOi!z[zK>ek<[EP~~/"܌zkOUr&Y-3V b6uzI<,uݜ9Qe57dt;k[v1YQ* tag?{<~pg, UXۛ l6:A=/ـ*vʴj" ~S~7T/S…=_cgPg\|[|=aThힱ>p=*YUz?`Yx{!MsJTpEVn{qoxf:&<>uϹ=)Y0nyb۲ՓrӉЏр΄I)^D=2%!HW9:J(Z;2]ԫvgf2bj/ѧ|+2 >fG dKµּ\gwh&z_3AZǦ|]^SJn6Gv0h W,zswiXx)ZM-,uϊهl7C.YPU9T/ }+2v ZN/[ <O.+ :X='Nmޠ{z=-Pe%0_ / gG 7A2$wUD}B=vuhUgJڒUԍNA睊uH1D`BIpwKo* RvZ!.8㑶<^oV,ŴAWѪ'V(Y p6@)Z-/L8W%(XGTD9U{D/_-H-\i4JQoZ<~nXrUh WRWUp~\.@?`izf.ʌ:Zcϻ9EΏw )Yk]&hY ׫afUu!vc%cZ`E<9wps*{^λ=#gEM*tuv3S0:4c&GKaׄ ^twD߈ݾR-]'4{F^t<kl}r\O(VU)x o`HQUZHBe/TM[m̀njH1pQ_zEWjU?\W)2ƚ5̧΂S6V;3V(̏UHW 5@aB$!3etx b5kl8?X8VW!JeR5qr;Loa9jm-:Y\ՐMꔯ:|zz.9U慴˕w>r+@.8Z}#z7`Uyb^* I5f0{v7JC5gUN?Xd6=X és> lUxwoxuBZ3J+1 Z\[YSK t>OZ;.ٛhX4j& 2/ePpjKQ&&o/oDU_B<>QcXc{Ps=]7} mBpЁKSf'j%xxb\@$ `sLF\ITGW,ӕ !7?`ʘC>IjbIl<;Ԥj7$om*Xm,!q6elq#U^|t%(|#f:S,a 5®t$1' ڜkZ<O;`+8o^`Rgjd_-5\l_niOqJSWcbgr#ȼ֡rR~YeLN[۸C LT_oʩG` AcZAdDdO^LQp@IZ@p}"IWQ}"SBW >NQ͈%Ys57r8MYKV Stq.qԠ T}#rVFJAuy/H3 tMHX VխK@!v~iưu2^E sghT]q+]UGD+3܄-Sb VA!~F_Uo>x_ 뗚RHVL6EQB=`$_DN-;~^$UmGVԬ"݀\6}+N+"XsFKN8w24RC{(nPqK7߉~'+OxEe٩<$7 ` Y*-҅7-@S3&OyE}{7k6OqN Mk"ۼLjWur"ءFΗJL z]c}|Z+ [*BM}g(U71KG+BU6u|yP1\3hh.N5SQ|(w=0siڙ;fH]|iX+3yv,t%4Byde6{[/>h$`ǘT-]9qTP}G!ߞUH%]ZDix6U6{`.гENNt:R}*Y]"kNNs_/ǝ/vX(?Erz%\"!8qChdẹ)'rgȍOD*,33`܃YL׫ B YWkOP#~;U??dJr2d!!)'!.cogwOCnC IDATNgF#YPcZtJk}`=`=|->;,MWQLi"eՃ\thN:ä+Tɝ|cza?g)YO, 4RTsmRYr,Ǝ\jClʍѫ}Դ-Y93 F-Zҳjzb>bWnI" fgrd%`hR O jg5 Dd! wa%4JPQꋎp{TJIZ:[ǎQ͞=Cyk譨HGjpWGry_P' 9gM'͘ӕj2\p[IS0ҚȕU.Q :HZZ#ѷP_i)YQ*T,ENUN2mET#$|vyLjsi+Θ,̾B6+31THie]}͠-E3ﰥ=tUB42ŰF"{ԮqՅv1{ic*R=uz(6ӆ{#x,!\D+Z(H Ɋ "Ke?*[7T{U3[k4l6Uy/*XE 2Ij 1`ywm4C7ty5!eT5)k3 4Hݧ Vk53YPb݌<Άۄ<( ѭ,mj{aS"[ڦ+lXsK|. ͌m,3?OB]ѷBAà4!.E^S|sF& @tNݯ{77f2Ќ.QD"GSOIJYa]4fB_|6͎oQOQ3LQQsDNFkyT{|woDoPLAyy9VuRP٧+qf}9k55`>;=_d# ,0u Cφ%e#+(*h#MdEE"db1Z̸"?pl*z؞WÍAU1䃢~,\%j<=~*)Y>,_`tۚd''0@bqQH#?ʯ)_eE7U<. N" MTxEWRC)JDcq fzƺXdukTgoDe~NWo ]}y'$ ~ؐj V~~[R1[䝌u)_=k`N^(k*}2qZԾ^2,:>a$YR7Lg)@4:goͯMWl-OBv^AW\qYYc&D\?s*=2g8ƽfõXmTw1Gu50늵d5Ei5+Z3u~F<:Uχ3d^Uud%LUZ\LMj4 >ZFV?L*g!vϤWSIX1?ցnߖ/˪t X0Q"\,Ό$H:Mz$ugF4*k{='DXyO@r  U|gB.,L톏t],^ҘUc1z`~;0c8ȩT #N"zDpYdUU3 5HeLK=`m0֝s:c|TzGu|W\U ѣp@ j'lyIwUT"Vc}9ϲe(1lnvVRT4s\"8Hexr)޹A]mxD'<1+v6kl/Xt4\xcy6qC`S)MũV eGt T>z~p)|0U>aP b-L;?M%IR"(RjX^ӕGũU:qP z]^elw[ØK{i-Zgʻ4X]m; |-\h𩿮`V']a&#ޜGGutw_\'ce%bj%? ŦaⰅJ䷺z[0ٹϤZKm2 )9aA!q^P "|o}hx|c_-'qaX IQ!{suGPZvO}tVnnA)[>lQWQ,݈nUsŦd2snP?:\^9-MjT_uc?B׿;t A&E,MWtwOQbb j f>&E囏+众KL#gbU>5Cs1_rjQµ}>8E~*eYQ=].&lu23UK tZx= bhRRVV➕/v;|RƲMgrH"I9lUo>|ua@ U7iX\P3B_a6ޟylia׸="VcmG6 qXǞ2^9S*(g᪸`%GJNq煪ًbf7zanj@-Ⱦ<k""bn1VTГHy.U ԯy&'ô̪bx[Y\UįWeX='Uy-aZ5Ěy3ZUTb-^a`XxsN~WjWucԴPc{n,7z=ܓL,@""ؑD(9ဏ~3MU!).~}dI՝0no6u3 -}囤3yg PM3N9ӌFjXK2=<)V%nEGkev +1t(Z2߼a**C3UuZxY]>H+oa>Cvr=?ajyO╭xWG$eE^U )f@A)9P":#!7-'h],?t/AMk抱A/ (iX 5n(2]$*hԼVf*XG 5,_CCS-RSڃ܅)e@ɘ ΐ?J4po37RϪZP8`}7KT̆fRR֨`]X4…ݍoXOؘdYc(6A-#"T}w,ewP6f b35|ՊOFz~_N=7d ?߉~$\gT䁼tˬYR0Ƭ]naؠ&615!R?;x_fը,R4f8x:>u[ !ZC6ӍvLM xk洌/-Vͪaq\O7mJR0)sg O}ҧL˜* lT*gB(UQԴ" k`Guh¢Lj0!:S{:_pҼP@ʸ~=T\gAXI2X|E[u=ϛQALU?,/]c ma|!ɟE)8&]U4> vv&6RNQfx1 -OArCU/* YşHY"\WWĬ+aOmHdyӒ OMZ!f'J2^qޱ3}Q)q 쐈ē(gToqOjuXe?0=ȴ>?ρ l;5X͘,a.ҾN9`҅cYb{i2F_~~3GbS[ic7337a{\~`?TOB*cLh+]j 9}HU#z͹}sbϫ%>wЇ\ f9:><)\KiitN FaΠa c6;.dY6ԭ@b $ v2-vfw$9̦'т﨧#To!!b=v_>-7,AiݢuF sP77D²nlMRe~5$~t#sN7qo^\ПaLO(Y*kr{l \7rʖ}U5cŧofgnVU9N‹c$EpguVy-t_ ?ž[OpuM[cU{U)MJĊVWu42M2N{JKEܾz`א%PcZּ*4V=6TNP:JKS(9ԆJPE ^İ8O8`={@=u,S2o4:&DJ˸(*TN +&i>5:֫`;":d4~6\UUk¤thN ^+<Ӫzj!jj&?qO-\["0e1L*\xB'!>u 3Z5?fkOqPʊO;mǬR_ Y^Q"5`Cfb8+DnhffVF\~8 c&y<SXOVK})1D7 ꖪnj0Ʈ 4aؤ~DS!x'qioojG'X;c]DWYcq^'m4t,Dsj[IY",x/XDpZ&'g}z'!#2Vǚ:NHϨ%\O H]iS$6.2 -ߚo;p μqfM*X0kd?6w0Vc:nLoYQ7͢$Z&0lgw26*s#UP kmekjǥuRmƺ'MApz Fe:.` m9ݱʻ!3 U 1o.XyZpHYfunC{y׆/.}RVT~6`;s`V򓢪r]/Fi֦5YZC*SĊ~DZӕu,o6r+;>sC`Ts/Շ*pun̥Yxo^;9{Wa=BXQ@\9DύțoT ,">dP[xzj݀*ψڦ6?u6=Wz^O>ob7K*k) i Jh`.28CZ{G)[,*}5P{K6cyը\BiE559X]H /߼Z]mkrL"RN Ugҡ]uM/GQwmh0||NCjUF^^4&"LhOT^ۓXהNd, "r镫t–ve0UC_'޼,z603szB{UNsM^f'虬 5WgJ848*m݅÷%eY/U7Et'Աŧ#X*_D#x/峗i#K{VDXe'@2WV$^x<&/}`Q,|@:~HEZWgCoZTm z`_ .aiK"տLp]- * O^X'b.I-l0^Io2VOnX{O_n/R=4ʊl- Op\D_D%X)C?AmIQPyj/:8.^f扶; Rkq;n,3B;+:`Qd,"=}mLܛT7oܪ27^&E3 OfJꢎԝYUϦyZ53pd,[LxsEKHV3O"zikdWQȲZSJT,ӫ>^c}Ĭw+i`M 5th$Wiz-E;dp3,RV@{Vŷi +žZ=9!鯥Xiz [\ lRB޴<6#Xc{8);3aۺYI&EWHZ&mhF' H(6z9zH6ޒ%qK< :_Y{A1ކ6YՊ,U6r-}ĀdR>o`6`(mCeKuDY|&JVB!+G w*U-fy.B v,{&YL~e9?MRVq0'7kǍb!:Z ** %op=FE2_kGj٣ m!b}Y깤=.q+,kb2j _5n6{t%$焵ByxB/'?SL̢qc=`ўJoCP5OJ۝ iE]z!˚!s3yjD6L?=1Palc{ ][kb_袃72Gռ8"fG3X$VT"qYNp\I1Z_rRSozt>J2q*/*Hܤ}0[k0_; zmxߧvuo7y?^A(IZ IB{e~y+ClAYzhřcPv۝&f) >Ъ1=Z:@`&E 3\pUmaud|He=֒o>'a{xSB4`VC-OSm>hPtxkPE*'𵻩Q*4 *U)CsۦA]G+[#4v0B|h$ V6TJjN NbN[ 7s^\%_gvnHMzUШ6rc9 ~"}-j+(Ӟq2Xp% o5o)X8`n<<gDP`{ ۃ>regiRUs*ͪZo(Tc;B"hL_=gu~mVlIZykYgk EVmZTT Cr*{ZBs?feuF,MN簇exgW{V fBw]H`;eA#KdK_C)y66%5[tv0=kL7@i[tb,zWUU3'3ъDdi%buJYX'҇ cX9N"G+I7Utpx[=D~^fʝCWY Zzgufyx{={9wP':nb )ʄYrfBRز]Ĭ+<LZcnQtQ!kd|5]LIqp7Ix8 ZNh5k93V蟪7Ѫa`%奮A'j4!U+hv'(պ&]wIQmj3؉h5E{X:1T.ܮh}'YE W)R`1AXVo% ݙ6p)*R:zQLjmlj6;[)SҫFYf )n _]Zy6#[>O-~q'@FϾ>vwV"9]$P&e[3 * ~Xc+_ H=_S:=xU$`_o9_A~Fo?R~ogGiו rXGb8W`ϯM G%'5eG x{ftoޔȲq'I|,/:-y,GN|락!WRlS|AM~O?,JW?o-T)NO;4iP j{U` )ӱD퍢OױR8&Z$_g#q]PyK޼LVQ9`iJdg~fDFUW<:VQvYO"ꗸlt/VC^3VVtL)-W~~~3OK~`RtE4fDr: } 1x;S R[Vqʓܳ]!`e2''6~#Dh5-UutD  tuS}n93-eN-sMԑNkeR uy/4/+RU^h R{u5ӥ/RE fճ HJI_to %3Ӷ#5FՉcfSImձ&:2`3q&L706jOd%Ud Wђ7'תqK,oIVVD巢.3x%a+ ojdym+Ɔ~{zN7X 8aa4,{꒵6uƦ7²S0NK3j[Ux]5`}-kt:a+=lx┷fUt[P؆uC3]f*WiOъXAY!Q౅NCgtQܙϾ.f=ptfvr 9/|ڥg~^ S޴NMG/GPNgH 4( gtPt$]YAc_$1vwN(U|ObkNG9luh_rG<NjT.J[P I+4cqƚү5>u'}3}׹$XwjE[y aT說WjG5ߕf=lTnX>_qB/0]<6;(*^.`RD>Cݻ/1E Hb8`c}:7n^0@—5+w0ɇ*S!Z)#R&9uj9<^5a1wE{l鬙{V/iXtqNX&ϺԪ&N>x{3N}&)2AFcM9DsH EF߲ᑳouRg2o'fpV0Lk AJ% oDʜ`NRۿ̟'M0WP[ħ,#N鐃YErh%Ć 44~}[<{,$E)݅!'r(j]xHyD7Xd-W$456c;|Fhu cS| Bv394Bd{fS]Չ*ȧ>uSЪOLj+X {ڬ d5rV!!Yخj`dhubtX:X\(Jv@VQ5iCDDĝDofΌΤpJt!4E<o+PhX묚)kzf~;lY(~$ǮmrI򁉭uj2klcR1Me+Z +sM@kiA#HZcEE U', "ca阅U9f5,zֳigYizT)g]o biՑY q-*$/  :,ʑNUgn ؞oHkzK'&kLZxn\G$Pˍ/T1`PD.XE:+U0"i*Sj3^1t{߯#aϦOlB/2X3ȺQ2$3\-6GG`]vOm>ukWjLIҳr b(.Ö(_"'$()@!eo2XZE~v1]ݩ}ajl.8[~d5D_DyY$pLV̛oRK2klc}=Ƕf-pg׊[EtUsʹ(vaU,u'}aa`<*'6 !d\ˑt[\۷Α~!d6": w>F;pU+20@cnd]Sv]݃ҁ&AWQI۴)=6ЅyF)w2>]u–+E_^q"nQ]{KUŌ,2H_(! UaX[W*D ]vf8RQā:Y'TČE{+uC('DJ+(U+opuothIYCW森әPlxE{sa+EHUZ9B%ThbIe85H%MS^cSdS!^Ej8NR 8]iZWK~Z@ÈUu{8lҼnH\XXeJY{] XW@6{vr%H{ y"=goIBCXUlvK%Ahɲ,K毟zMTB'Y vjPzCaS7T2ߕVcJ)ìX3iQ Wh0&F"S#/6ǖ:Z]9^&r +#(쯜N)^!DCrm}_.Y-Ͻ/k;Y⾓`Hy`?pN󥛀5cDEaҍU-g'91X9MeQ0k=kWA[ q6Ÿp05F( (Tt4>߱usn+[VƐMf #VX%3&]=nWsbh3J'hYD ۈ_NӊQ$ܳTf.2i^&OgKPk izM58@ ]-WAJAuYH_ûX鎴O3KzS.3h~*]OEG:VUGCp!^=ęt5&`%TkAtu=cɚ~JREZYekG˪)0j*X3>9jc+dުi&rb1ҕ,l'mFBiT5UQwKC|3 Mi/f-^i5R Z4Unz&—XNx$:ŧQwJFxˋ8Jvֹetdu͚45QZEsfA X{-'ˣZ3t%>ID`%Wy[ٳmaDאd1d8kb9 , ;=՜6Jh:55]G Jc_Ҵ4v]mi  c5ƼNB׈od3l"~]O "d(:X"]F+d|`9^iVPE:{:^9{N_FFC_c'c}u}s|W2([VyfDyR*Ff̸)"/[a4k@ "1Vx`7ܨ ƊZV|4J%1BoVf X0UxSȠl}*W799g2edpf$#`  Q߬}|NtʳmS銺C S 1"ZnnVߎeg}c]q{ߗ,뀏ݭX#VCN[֣DDpU( XYf|I?@RZā8te*ŬdEbςTk3DŽ} P'rx/dg_c=J(H=oLIIcht0kӹM=`zgh~ڛo;zVk#D Q#\M5c+ؚx**JkCg=ы6AIVDd@UD&UƓvY ]$A S2?eYRn뤯¬{@].ͦFptk^ˤa\'`͘qøy~"ކBWw&X KUJU6|YֿgsK6{1J ڃHYNCd TW ~7f*[Y E+5 +vmi un7kƌw_d/R* GyOɐ"Zj*o\RJ.tꢕ7VJ))j*ҲlN?HZ5kx4DQ2JF sGT^o=8ubfUJ[E[`o="jRT(c-{ixɠ?'A_ҝ4W"8cY?=aQƽFی4N77r([-D+6~_k2 +}?Y#hsx4푅HxXn\DU"DڈN G?ѹ> 6J}ށ9}q\REoHWˡ7mfӨqk2֌f,z,uzKУWEnI F * uLr`Pt)'*a E~3NAJʓJv[gY۾)h9T5TSwU/_Q0O2w 5|֌:nʒfe4Ila׮24czU|!I,?w|׫ _P5R}ǠBN1܁oc]{RڦhI^Kl,/ߨ XSĚ1 >._.Z%MW4`hŠ#N8v6Txe.ew'%sfIߌNk˛jح˳3ցl U$n:{ASAyL{p3\*ߛSF+r$`%u[ּ.6śxE7` %i\8m-:k' ?9~6qbo=[Z9l}z%L5 sU?xL .T4u`MkC'a}hiA^5jVZI0m-gC>Oʑ.DLH59cencQd 56s ]UԬ~XJoȒl`&*=Uj ˜.f̘e*M WbUgsզJUX˫Qg%F$=n~0 Z(=XTs(< ,y)pe7Yxs}B14U&?H|*.7=@զ)b͘u^#sKQZސa\'HyƼH6uZsrX4p)Yq |mAt#6_'hWΑ>.TWSsAf×_Yfx6̢+ZNIn6š@X0g,+dH"q*sɪ0d57'R%$) 㗷kȟL[ei!c} z@L0+kU/+\ pM1iI 'q*'p|McUL32SVq'J%`5(c Uܛwρ iSqa%@x: #.c]C]q e a8TyqP:V2Q"5cSSvb٧^崛Ĺjbb2m Pg5$*ߝRd܉/ {Pb9'TF'5HfPl.*QmWЮJz:QMx˰k5cƔcԂfPiA]PxY]4@xA yHbjM:\%]W,a'?awokGe1Svw@{9C*d꼙1w&;?kƌ/U3  vrm˰|BT2:R͂*}U+U F?: w]OA=OBŕxuJTqǟ6@0tC  @2Rq[pCԥ,f brx4~.{irކ0&pTvI.WMzVX3%n(z1]8 u)N đ\!sHAΞ& Ix:10U+Z>C AK\LFpdSA%P]cNcuW;\nPj-i&'JL1cc[~eբqҀɒ;;cTy,t_-U.VMiT[ `exj{e[2V_fm>cXĸ0v:V3ʢ+2nPl.( w\|;5E"n%<э&FH[ꉬ\A4"TtE[4bV(#hԈvR#>m)nT5'x_d eqO_Jzߕ5YX#sFtc<7moLlMfJ# \&`͘q{ɀBKЉCU܁ݽktY𮞬[:V'W"<+wBWk0`H@Sؔ #7: w}dqLڻjnz]б+9#̽CTH`qf̸8 -ROu~2AZ5mر&KQު◮Td"JldE%~@W X:+V}Ն @ߥ_I,YX9m`^[\U*MzY&_?Е=)V"Xwzb,?v:w8̨Z#f!T%_3nSbe1G/_S5IFu=z sj۝!s(OMR\JS1cW Wv &JC8x.7/]r=NWz)j:%3dj kC%fs惟ɐ\?uPkNL6$%kHc$lO~aݿsսYWgF*_m^,%L+-j֌3v vEAS}J]=a,]nr"LhPShxﺳ53kF>*"aYMi ,s׏кT)}fţ1t5?h/&:+`k&cHœI "fg%phٟL^hW9c4X2 j %4 9 vե38_;~YxR3ޏ@խ’6;V0wXPEbzŸ'Uy[ޜ4J:n֌3>vuDZ S})J&YGdzs͓ Efazܳ"ֺ-SzyỈbx%)=\n ޖ?Ew6[ڕu=X15aq?K)s]X 9u]wks V4"1X1[Q,~m#g+[Ubw9 BLͅy (ĢmǃجWR+ygEf9mPt3͐NYz2% h}-o90G`ցu: X?}vif]:t7^+bs=TR*d**'(V]ա.լ< Uo<2?I .\#3HN 4Dbuq`b`#?u?q}t^&cy!t19+o-i%723(ܳS8 1k֌yoO@W/D +Z-p`UCW}j<3vހ Q}UG s@QMdUQ\և5Z_v_Ǯ:-6t UF,;RPnzv:!:^LwNc֌ߝ:uڣZno/vz|L̓Id GM"mN/9ړH[HZ%JYhFrx W]9hWָaRq"q$|Pe4L[+=ٝm Xtp -v5C;u׎hpQ(0re{&Ł{°dR5O֝d*Amj.2mr2BCBMVFQ\셃CvHcNC7qkPF?nNu/ n/gocn^t{ͦ'UwLh5cW_.cwz8+| |{eIWK{&ҕ&AVh*VoN8DUe%tJbe"T>Z,>rn[>`ChVnXw|kAs%9WjI3N&Y] c%IW3&].U(8JttʉT"DÛǵMJcŽaVP%銸Jb7>,X&)4YV<%c!UW]X@#GN'*}hG>'a X^3rו'N'&URVfP`}誶Q(,2: iFy Nx\=dAeE^Vبhu"cBY- ,Q%>*%ai>[c{usXh)81OWja|ARɀ4!V<*TiIl\ANԬ4|ܟ n @wBg]WH3 gH者ƦQRF0K]Ǚ,*VeN% 5&f}x,Fҽck3ץ1"M9LҠ0($yѸ&Dk=N0x'C=8qO!N*Lާϊ1iR9Adm&4qGMQn<,GO ]N J*Ne9nm'' C-N\D6&͸[ʡ.N;Dʃ`J.޸R~T2Hle,V9q y'èG(juWx(=,M9В$-ڬpֶK]{VȨjd*M*qK!䚰\zPk^Bpi *cѰq E&7PՄ:ZNi.o,T?sfX*]Ӣ=m&`=F5IWw'nAǸ9DZW2C.6{#CDM;X ܵՋj'χj7e^;i94BB)χxQ9fI;VYτދ;W^Xw`ЗFKE\S+趐JƺR'`x}kzXzF V$N.IZp j"+-]:hOZ`,9Pi|yTrZ5X6X-5ki6bC^sQ<C Z! xxI# IDAT+aـ)XxqC_g|.mU=`Zi% @Z9QPЊH@|KN,VCL]mTլ~pEK_qS//d7UK _hUdf[-_u*3<$; pW>o5 Kҕ%j8<f30u^e ALi:Pю/ٶHV*c C|ƹ$n/!0ϕi 6 ) 3.lx=Qu5%)b}-c5ӝO7ځ~P"* NDX'#?H˰$Z0VЖknKAR"X(y1@sx'quq&_6+]xVY5n{IJ{ě>V@jD/+,g3V>[_E'`xqq6Tj2(T<\̕- [#w|(/%&r;6HWK 3|ZZpKމވ~ /p 4qA%7ʸүR:JFAC'J "omԪuN3{oj۽iHQ|$*<_;=%ikNyd$<ܓ،⑃Afl"< gwwg3(f_8l5;JaD?H7Cy{\Hu\6ʫUM6|P X3%֕1j3kw]> ;kʃ! 7V#Ek&WZ {Kc9w`>'ܳvDV_.-On*2iߒH@ĬΗ&N71a#c#PrfgssJmD(ƒԊAM`$Қq0 ZeH±%99AWIo+,JZ%VQ93>f|8Ǭ`)sU|V'J6kWX̓7+-t.ď#i?Eܸ –W^.s?hǨVKY̊{p]~tHS TIK2`SUe(k4O,kEc# oX ?['T*Z 3`UoZvkYMiM1cƧix_ J.$ha1=**rW-ޙEYVk֕@UĊ.:֩{;_qe#bEռ##4%~L|:kQXa9GT+Urf#bAK9[Ƭz ֌gu?\5"_u,p[jQ$S4ivJd]}]}c5먬\a?nN R1 ߇ZT{v ,Z)Vy=g? b&fcc5NHqaT&]5-j}pj njTf<c,->ԩ:+ Jx.8{6Pe9#tu~bA"˝+3Ъ^.]#-"Q6T5y$+]Jfa#kkD0 ;4N  ;۪| ^_/p if6M,H[6&`F5կRFUjzmnY*UQlɮ|'Q`TߖM5DheM0z:qd*ۗ ;fiQPT|wnXzcq75:tѡ=wu3x1 uvN"wz '`8Lwl `rU=E ^JMHnBWTʃ%2L[!4EUwTr[ՉJVriĊϧ90 #tF"t;jϻ̮s&ߔd9m[jWNsWrQk%_Ep|i5iÿd6]{E+_'?%:%;2q"h+Wfŵ`T_ׯ\2$$\bP6b( cRY}90Pe./S:*Sm#0Tmx_Y|WW/1Atg+}%PE JS<2Ykшڬdx&aEP9"ZL":%k*c& @ax+< sגe0 v2׼Vm;jJAi֌5q"0nZ9ZtWbw4>B'PBV~ }1I*;hk&n$E k "eEK?k'0+u}Uu ɚϻ,ꐍiw[|LJԗFJ" (lXf>m+y=)Ya="y~SnFe慎) +I`2V0Q1 lDnݕzT\!+a _E(`CZfv\+N[﷋vmodiEG1Ю"\UqƢ0|GД"E@~. yx˧0-ÂY>geˏK_ǵd8NZYPr&_Xw&LVqRp2t:n+Ky!v,ijͨDϰ>/ǫ2p7z H b3n# E4w4YƮީb>OIl4wʾh\V("hp1kƽĜcH[EWA;%L\pIݺ>]_w@jdeR5،af$sa+N XzLx꫺fruOD( 0 K$WudEU3ǡUSY} V B.$lfMj<2g,"~\5cxPz}uhA1)*" ZE#Zj=*}aS/NywnN٫sM`됴amƎ#u#3xHui ZABb>#tu5kuhO|nēAG Q+HR6TaG6ܓVfpƌIW]-Z*ցcw66gJx_'PCB2t RUZ\Ƽj*vnlx>+o5ZJ Suտ˚`{{:kYWe{99?)]Mq/JW5tYTμlƢrH﫽*Zr)a\Jm`kQ zI_AJރE68' M"tg]b#X{%ս.>$JK1rS vfH{ ~:S3f|x5fR vd K`"jhWUI|YQز֭_e+:θ=,ê ̇.≵Zr@$jZҸ&эSS 6]%øiy{[?eWaqNDinXNȖY,^x#/fL.4 Wċ/T _T*IRQ@|qúu |aA+\G]MBJ:w)[UUՆ#{v! ץd,[)`lFj$N f QCӅ4P,%q "9hQd46eɖ,qS'N1cƍ:z$HBjdb@hXVdfc.$QؙyDP`da TEEBU2&,Hvp/Fdk/kts/fm`Q28Kp|"(ZT'TaSi]5c-fEQ1ȂWyH8~(Ժpqu;Kl7;e4hIEA,,"J1,rJ\;=/b´=s̚OjP{MTV&-XUEELMBU=!GW*W%`I X3f0 "\Np[1KjiWW}I1V3k5uTs<⥸XVeAvDMU:Ȭ!:4Qd P;;i]^MhV ̛c%I´= Qig X3f<^`9##9)Cժ`tgdu[X9HWwkSˮ1Wa\U !t7A0&;_e))WԼ #9`N =PhGzU,\CԅVN f欏IQ!y `]T}> E(ml6W;N5%M=2o|¦*9k֌3z1hͰ@U3r:w׃T,i+GQ1 WM,ԾB2fy^tbɒY:{[lt-IԪ;@K,d$]WhgxlcwTdzi 2 W#:N1Qw.K?ӭiġjy#c 5>ؠ̓M2XxOnZ}Am5CKfAR I|:S,ϭؓ9hua,QkHZ}V_Z~}1+@[eہ8hAtrB\]'1e&\<[G˶ܘ X3f8HW*prIbʯ L_EWEEÓYBUc$Zj;Vb IDAT!F_o X3fH5\Z+VXe ,,C -oRh>yY^qp#Da8ICd0t*c캷Gq\M1cUMhHO e N,d`mWIW뿹zh &fEKV_(]o\>h!qUwc^-%4L݉DU{3#(0r;ol·A+.K "J$KΦ+JG䴜Qw%|ip憎/| ja\:o:2g1yV#a W)k֌MoZk'F>·|,$HYz*%* $rܬ)/qMphoD?މ$OwZIj|uaZD!\!.դV඼2@g "Yy+@=Y+e~]6 HX$fLiioXz~'lIs=Z*ke!5W5cƤۄzl{Yk;ՅJUDfr>w2ָ: ~ds6\Շ*QLt.UʼQ]#Pug#]M_|$ ὐѴ0x"NuZ"`x1YmD%"))@iPOĚ5ag|XwW:0pR:Ajp GHI+`6RXʗ\ll" :\% n:IާN<+tjZzf;[*iEFCU٨Z5FK<`0Xtm5cƧBթ~Two^e+GFdGGgұdo dWTB@1RKI;rfԗNL2ݺ\ch?0yw:-c(=#IRJFX@\ŸD{Wq#S|k`Yɮau蠗P|" [E>sLJ;Ȟ+. Շ'<#3RGC~S#q,"!AW.d̝\.jDj֌߻?M{ᲭװK;4uʎ1hV|BYy:EЃ V%ԅOW/%N8!$MR+"@3+n-\npqMl\4ʃ]!XIPZs-jjϘu*ϡ+.I@1AY:X79&v+rmX!Ymz)*73|s/K`7#Oʍ E(8UP`$mgIV_g0i"g&iG+QMARlg (ExDPus-B ^ps԰ i,p,*j\3+tBj`cx@U8m0WG.AqdaSf UQզpt5kcDR. r]Yf2_w$*$VmT#y=A?Vuȼj>CqZEj|LE5DWfT+XO'kǢAڤk'5=N Qr ]thuX46BgWk fTj:/xQHJmtL'K!s(Ҹ9 Fw!p uƋ,k N(U"DSJT^IZFYuuR2󨹐Kt&c ;veWV_+D%Pu7jBA:7PefUh5VȖWf̸=_BcPG:vـN]'f-]D|@}ʧ&7+ENNeU^]Vqn}NT E2̘KE'jq8^ʏ)X|@z) J ڿNJs߄q3fwZztF,e`Jna|Ñad-mO['s 3N~ǚPXY4\.?,6q37 DZ *Xj jD{AJm>HpŸm2ɃfX֑bW[3;^?e7|ye a7툆 V4ѴYX4n#X$RZVNXD8ᩜ6.Bi|á_૎g+^&Pu;i* W(vAڬp[^Ѩ|SOB]0Ъ.kQ93fX`.D\yCjeaW>TZUY؝E&QV hx1BtJUR_ j U3?֜Zr$ʚ9CզU^:h5`yAW(GaϠCUY,Pz AjWqCEЊ+i8kƌ/^~Jl7N]rz8ۜ܏ӳa}-cY4"3ĻqNQ-$mTK.+/^)BʻXT#稖~dzqIKSAUF+#'te54suCPh+o8kƌ{vjK\YU &=uy18 Z-lq82}̸C6өO6Z(eMOU rʑ?ESRl`1%_!c9QAǒdd; /ZaZF@5FƊj֌_mA'y Ibw0]}gZ7<=TnUZAPYEc #lc[T#NU?Uu,+,#-4{`HYǪ#ZE>(c+:TtEϒ:5cg]Ͷ/ /@ b|X=5JoGTLQ0?z䧷=.KL! ˠT70hj@7֋xx X3A %X m"jaȨW,m^ cK ZS3F">.]M1k"p@ϷwUˉ;GkDz{ҏnxSb,-c`)ۗw_4 ,ɉKa([l9:`9͆>koNhԬ>QMq ޒ%x2Wqf5w*7)3fTNFuM֜{)N?gM"MV9m Ю: JW^ ^|L2x6WzZ)9WujD:9yƌk7փ ޕ7*^D t6׏US˪U_Nt ֡޾`]"RLzZ*wꆲӓ\11Z<@+kXX-Ҳ+ H xrf{e!$)i6H"%$>i ifIg"T:m6aN2I3z3pR d1bzvOyQk:5A@SjU{AI݈;l|1ߩ`͘i)˫&5F uj},ta.BT6c(4p=ӋZ:Mc^ydsK_ WDo|,tZ h%3[aG^%z㚄FFql}2EUVcׄ1|7U͜ӴO5cnxݿ_-:!orgmmSg$r.u*U|§p?&S`m|GQDd˘"?y|_NK/?I)Pʑ֩PxQ9ZNu6 rchNqKm (?p!?A uҸJ*sm}֌Nj/p'kIjV*T,%Ate'QyyOaS ݻke(zZm] 69wC+7j{y!9/<#<#ڼ֎w{lbS RVרdԅħ"u9?eсfz8䚀5cm6k/;8n, uJZ5偄b^k'hHYd jT^e?gNH*5d:;rsdD"6 ]DV:%Wa"*>"kI||楟MFUag&`xBku?uJWNyk i.v nZzzլ;!񪬽ETXP{[%Z:Yف SC~5WPkܗ]-%9 5XNu'v6GSЗi+Zc@ 0x9VՔ'8ymi 9G1k]`YioDD ;qRʡmpL\u֮7ߗ" h =i)p7kw_? W̕ E4&/:6BQVF5P:1dP2V3{;R$qQʢsf]}ƌWHЕPOp IF T-c*XoX{0 ̒|Ь^A܉hwuo](oJg9Zj~+$#d6g6ks+,"p*]P/Zi,LAe49HvO_1&`͘q3ZuMʫF:=MOIWX‚=LF~ٜS,4 n эeT Y3kA*>&(7&Pa,"FQGiKc%אy}BN,@?X}ƌ]ἿEpv,WbǬ3gè}C=PfqX ly ]%{FY JEj&RՔuGSqDrY3z-Pu.{\v$CZX CZ}K0>tme-Ɗ`* KV# V|#3vfԣIv6ÊzZ (GuW-_=:cìU}j!0,'ꜹfX;s" #naqKGۧ1 qZ7$]yi&  'HQU l^:=rl"'xHI3nLW]$}7c}!cŬWN^,q6J9E7eq>i,*KBo,F4&>: #\A+UW/bVG%gUUA)>5kƌtu`h4Dڻ*o̓cu#UShHYM0ixUBI#BT_Е,/ :*x "TG, 8s:Қz㹪Uן|̍ӥN'$ͺ=^!b=zݾԌ {}R `5"<قu#5~=c%eY_t~9܋JTV=gmrY4wU0TPurڸ/PƁf㉕ſKR=n8n&W(& р5bN$A*l ~+05c>\5esuY=?Ǹm~t0(w :` ~eF̪ )ǡ v'0ϔEє8` eWx^O߄9 6cQ,qJ*<6[pa!bֿ5YbOn].J$]<`׫huS7هLJ3;[IO?Ixūj5cƎ8mEנy`sfyz4r,u@?Ԯv|c%"msm>$oU%ٷ`ӿN?JBZZNZN_Vrgʑ⻒%L8J'GwgZ^0nxr56sk쒮j0]=3ZXu'ٕ;,fU,Ns:ֹ{;87Z T"AEuuG`XZz.D?:'6މ]MJe%L [j$2lȒl+Yk|̲ETjmxx3ǿ:sF"~JNBC2x4QZKy";y2l&OKK3I٪|mOI]ӝa֌V2. S'h\z/ jն.RSoLzKO :`b,*Qص#`!|EK%֟A3d 7Z7:D_P՘D3MRo7R38䃜 D'觀$x+U1s äcd X3f|p9SE,D@ ֩H!Z8Tt5cܻa<2oʐnʙ(LRq+?oWZ~P^W]7+A\j:9]Q.({Υy=PԦݨGQ X3f<']5B=qڅS4)B*\:;Јpuv5Y"֠^ue|9!/[^ f.e%VD;Fh_i+^Bم37ro~RLjVS?@UI%^(f9[UV}ɃJLΘtu}`t䪦j R莏de1Қ1kqD(+Ka\$ij?&_( -PAU~B Q&F{r+h噓E"a {44T5T:bUsjTc睞jXjչOHۧ|bunh&Wwp.rdW37Dpm&$4eTn^ryiSw~%8R"ZԞ̎ 6:Dfn\n1m Aop4hlG"YxQTxf: ԎjSY2\8kĥ j5.Q%)P4*ČtZ~Yֿ/Li1Q7=xgg!~#L\? i==}+ 'zLoo4ĶBR=`ڂ17=AVZ{% b24ú#ղ;1#!c]Vd,,>Q 2&CN-3O7o+_U9HxfyUOr[_U߱wW 952"Z<c\I&MFRRJ-?;Fx,0kO?<]/ҡq*FBZyĂ!Uw"%Êm|paΛ8Q͵cSp4,:Iڪ*6(xeֈ+[ x -šGySaڃVsD>bĵ*c>זUT)ڨjJn_I+@7wP3O@t!ΈqN{G7?(EӔŠkj%G*J[p&}ֈ=IW`jsXrPTx:}Zio\wՈ$z"ڰ>А狙RHW}.غ'-yPп@}>t;M{7oL[WU3Z|ׁAkֈU3`gLަCvZ>ժ")00D#>d\:Ax7^ vz`MylCWsTw?/{(w5je Ыc',"ױ׍1?ŬKU>{U/RPw”9Q <:jW#N۽L՟(?Ggkb햻Zc'WCg};O!y=X`-6GT1PAU蓔sjU: `tk}#ddIL.mTrh5 F|@RBZbhHGzҍ0@,' 0tSOX{p :xݼex5W [F:N-_4*:Y4.5FVFk*N.U{U> i#v[&*7nj3b80Ps/#i$ QT'Q-N{l4u8k;z>Jf 3fMIxz#4:]p`^~wNXTm>|&i\z15{1W)1%4>as tY~5:TD `RoK|L֣Ztuv5#nR:\ =? pYHOBC?ӵ('GԠdc5:jWXuX/GZVvؒ`.?z~!_/_$]E Wh-Y] jMejCprN ȭ Xvulq'}W %*p*p=)P gtwP !3fnu1N=?d,r(*/J0Jh=#SᙌqAO'(E;wlU+Tz)0,ZsZ.;gB IDATI_S~+jpuTk#^Eԩr*M.Xt[]Ni#k]sZȈ`UE,?bz/uW4O* hNNF wG({Ka10K%3_&rʯ|*e [8U<k>]W/ˌ#ޛ|e} DUd[kmU5uxkts›`k3=xM5Jȩ<]m;lzD2)ߡXx#7PXRk(i2 )9E[w5bϑzզf\DҭPg۫؞o]:˞BzS"deTHG//ߠ,@O:[(ļL;Daj*Eeu̳|HTd*c*Ꮞ#~tء A+Њ^FG2Lq*:ʝUc߸xJ*x?*yoT"X-F>T3"w/ 1av/NED6cRcr3>HLħWv𨁔 D+ߦ|cF\jz,Qu:)zM"xaFۄn} DPjKSI,=x&PyCx!$2xܧ%+&bIx2Aqf B*>"Z6j9ݡ*v%x X#IXU93hH@jl9QI"ꧫγGՇ^{7]t}xKɒm.W)~<^[ҋ!_1АtAhWkp\ ߊn+2~0œx \Ѓ414oX4TZ GKymL#`q܅{G&U:-YaKjfNUa(ŬX#FvD+:GC7W$=G "V_ _] ::$Q  G 5@MW2hU$#tW{CZ򕙢 SH.3\(E*X-ƒ_2%):G *ZAΐۮ݅҂AWW{8)_I* ZjW`"狫X@&]5ּttd]1vI]ϵDrtM mQX#ߕ d++%V"E)jNKk n#FR!_OѼRJhζ9N&-f-ә<)*P ?C F{:7ْ4fOFi6W˒U/hE|_BWV|% E5QNˆ/PX +i^E5(_-%WirDMX Q'hCSҵJt ǵ9-)',/kQjzk7;th`WPOM v K3%?wx_1ѕI iRܲ$3 ij05Ʈ=p- S4tUWZFXZ`CZt՚P<\%i*lTI|mO/jFcZyvСm[JWhFԵ&wi:`9|jf UWqPcD,,ѵ8՛Y,fm9-/z+4 :}7G2G,e-_#IT {U/ERQy Y=8Nmw\R0}qQ 'Y5YWYB]18.7|*"telWiB./)ңɌ/4o0\Cs\qֈ눟r"/N*!i4b((ZiwٳڮX8ObTΞ*49Md{.dVV? U-:ALZhl^:#"v)b,+Vj9;` lb.]:zE$(-Ci[ooprc$Z'"c^4)#X^UIhrh7vBG2 :Wȷ1""&]. D*u>5p$ҍgrB6xkֈ됯$cU`͏L |;>6;;n.=E%J?}jOZe7\G|R{CЪ%ȧ˕wrst1cq =sӥ?j&Uɔh թsutLCX#FP5O %yQ1md o^^G]CjNW=+ )g7 )Ti2so+:p([ kjOej&X PF7T**:,"6 ˰` 5ܥ7\DJ]*XC\u3tuԡ<_&:jC-mriaL TU: R{b% uͧ4SVEۇƌ;u#58Uq#Ղ=d"1򧨩6]ikP%=&J0֜i>c\LHi%*3T>ժjAIWZӕ's@"pRr%_~zO̻g"jHe|x^,1=AT#w [F\Ӊ`,jּM[idҪI#q$3x+^ WeE|8EIRmpj]Vb)>[Ј.BR㫉J@yH;X<3 )Ub#zz/Td"~"v5Pf?yš?5#nOTIV+f5‘~ Wc RtWdK@ E YMvzD:Mڎ:X ~, tUdZL!tV ,k".?t&LQQ9.e+|L_KPҙU4b-%2Eh]x0nw0g)Ti9U})NqJ< /Zݾ5WYB*O {]ڛ] !_}(•ɣ;(*XӕoRGz.0jS9xTfU~1x]Yw ĭ+n^h1NPPM`3G 󰀳f?DHb51BR!e,\F׍[!񻩭] QL 9.tpAj|GÈ+ 95{UEUy2 E~+tW'b:O!aaВ$o=Y`-,]lGo?m U='B#%3(5H_k]Y1rv>ծ69p+JW#F܀t+4i.K -U2}DUE+Kߧ|s[1g MKq8NҒ`;f߄+7_1dRw-It5%Z-:4ִE0htuiWfQZ} *f&1ș}HZOt풩@au~+Z_:%8AӼQj<)DNJo"36 zqcjw3/FgPPZ^1 e2ְfեNK \*/Șҏ4D iAK}xCW#?8 Gj'Cr *XAêE8pѣ`kYTڐ=h?<jXa|3d#P@oa' T׶n tv/VO/AKP%ۚ}WM%Q*:I>0D:|hs͡0ڧ`\{0a>AAo5k|^=#OsO0caVH<6=4H](&h~yTyi>qJVP[Oo`ֈwKWhwzQynӵ"9h8]UVЕPE/f2 ۋ+/\#i"ZAW7P  E&/FsF <&։ /_a?CACm7~V; 03}roFXEDP~DWrqT9(C@ ઩}HYC8]ً]L`dFmY+U+): *욠Us J&vY ƂZ }Ȋ $\jECӿ jJ\etea岖UTikUw`$Qxnk UwY/҅3ωE8'jWkoeU!_xک"/Bm6nqU] ZN]UW(BcLA0\PPDd #\ pl"àr;8s=3x;ȅë7uyz n۾fk+2u]|p[BesE^=t5U2]'Zh\(fӠ@ W_ZA7Ы Ccs?]a1K`C*5p* 9!˞'[m@PYJ[A cv_;'/Y 5W;'g +uzRo:U~82Gl>3^`NuqJ3 㹭X,LBUܢOU[j`zRwP' IyVΒ]@ Ftq(lTzG{n)[t]^>:` z΂vUFWI/ZŻr0C\CZ%KlLLCj\Hjܐ[k D òbÖ~@=_ bV B{k uC+LM{WƬ)}|w{x#|Dp{`M&j5V;80#8wO3wG? H"_ՑG3~=>|UP. ۭ/8e 9(C@AW9X.O?o1*I +jU\e!lɡfU:=/ w>Ђ7ra{_Xejg$y;GþĩÚ+EĽn O;/UFT9l V̺:mtEwW^VRNJB+{ߘ)r2Z]5ZKWX)%N)V [fr"WDZ1{OK4e) s"̤y 'uӀ?wփ\V3;.AUP\okF뤷y''mҕѪTZ 7Vӕi?@WfQC&.Zj*X YX0XE} %]^#X4kzULYTut|2djCT_oZ>=R ^(`+C,\F1ht5 v'eUKwl h/%C?EPbN HYyv4|t-/v&M) 0L,lm6>yP+i1jQ8gU]uͦYr h 39Pb]cgNX; gZJ}R j=\'MJ®ժ|(rZ`,VXUZ. RE]HGc):1RP;̄10f_xsp-r#kOvwHWedߘP9.]]u6'RZWMT-BCYIp5pu/  rTKB#;+P'1@.]Ѯ ٓ[H6+10Frn.DK 7wFcaٛVr?|7mDH#, Aյ_x9!Gaks˪t68C^{ yf' )eJ>GiZ N"y,C 5'r&}>S7 0f@Wi T?ohe'/"չ^g`;wҠA^^IPPSEetkW~pYKڜb4&>ZPպ\gǫbU(i_~؉V] ~5"F*R_M&6JlTq '5<0m@mado幅hn^>|Rĩgtx_u]'KҲ Qn% tUĘ$8ꨟ=] •JZ%tO."tܨ= WU~jTG_pRzEU>!,Ce,:j';q:_x-ՈATu^l: 4 PTzj^Xik\EC*cړmIpa(>p|UݖJUr"bNV"v' ٘/|Lm*K~,?_ Ěpj7}8nWo2b 2ZNz9;q|t5ʏނaW 5qy4(.i(r8B<0ho]ڞ:! âKբ+4-p W-Vͧ,&sKP^Cu^q<;; 3dO|W}Dƚ.|D.R/i<|h$*ׅ^~ \{iQޮxVndv-XmWz^ڍ뮛}>3\@I`Vh"y^a?ĕS*zXF~,o cq;g78 欽!08\01?.}~ G\ŵE1kBOP}AW1]+k^% bU9͌?jP>I,bQШe ,Kvd[rkS;,-{ ظh8#2ӵǙAꔸY{﷤ѓah/péaĐ>ves]fR8- g%CB+ gRNT_9zD.r᤿d Ր(,s^8f̯W2i/BD2O6ֺ M RWj5z {7+[[ً%zPnX.O6@AWY{~ W-keW"$jWx]mJ vՏPLjZ 56 &[Qc\2q*Cjp9jwceۨĚvv$Z6j}WѢ(F 3tgZ'HdQnkW-[|Ea/@U+$COUՑ;F7B2E'&5PU/uoD<6 C:pfI &diMȡD5F|5]0ȏ3*N|GudNP% dJUVK6S*քh_ؾ L=]5& ̪jW:-UL"0\NGPED[0՝#w2< Cbf |i e AWnk9GZ8;Ⴎ OZae:;-LD BM͒2UX|JXVg{r[0) yPԦj}Ծ U+d|NN$#`2T]ޕ^uy3i{P::~tˑ{4wd ?TL,n֞Yҫ"=} ,QN} q+z͉qAEK:-/@GRQȵ ULz"]J6273-N%z:X࡞mW\u^S*i!H,B U~$ jX 3TY2'Gևo~ҙx1˾O]|A}//2Jg\U PeIWPx*cPW?TE~LPu:;angO),-=`}wܾ%[ha&} te\ op^Yy_0Z-oBG049N ZUprJWS>e⹁?ۺ?VzgBG&3*b?9!}(DNKA}?G@Fb_`.9Hh2dP9e4G ˫k<.Z5j0Ɍ"o]5̴f0gһtSCRT. &tmi. `hD&ָlՈ׈Վ_֟4rH+9F"E푪5[`ɳ>}&ZAOysG*eKU5WL' ]ܚ um*빞94t?cCՈr`~ Qm/]]tu|V g,*+˳,-IV;s*Su"5e k~WXd,8^ړrD^Q,iъx/fODu\ӎB ՊVYb 4.HW#1hK`~j=Y Ͳ.U՝^5QXj D%( SP?YjHSe3oxU~|@3+%ն5XCa&#:LÈD!=#]Kk4Bj\t|Ut*]JS (5u58t"uuW öI" PǼU$pűb]q\Ү>j6j`xo,,٦VAe V[;K[|8 8"R%nlUkL͙_D,–:㷊m, /F|m˗iZMWH@XjĠXc-L=J GSQnkTT9X[dI2]_T{+AZqGTEZ+X$6qK|X(I_|B+ Y~Ԡ+aU:y]>P :$Z% >bL-?e/:k JퟠZZ-\ .i/m=ku:6ӋTIW*-!] &m(^1ojňo5Br ԥZDӉܓho3΢4xQ[lѾz;,r|wjȽRQ%HjtU˼|>\\ ˒{SkI:,aO A|h4쯆|E=fIE]/fATT9X3.u_p8]~E3(NZ#&z}~xJ]n5-jZ#*בNXuZ*/)O2d綁#]͚^yE}yATɲ8jQ[ijC=H.RU^-ǡEW Y@GX ZV1̣_naĿ~pQx6۫?G,*z`Gul*[i٢̓ibQ}5[\|yKsft'b:>Ռ! S1gp&9sޫ \uz `kmhAWy%HҢNKʴU+j4a0VVX3<Ӌa^"f;Þg [)s.2D]½S/(ռOq3RyVDO' ߁#j. b[KiW'28DZPԔe)BSյ6.Mt8-\j[4 ʉ%CUhͮ0 ]Vkm՟VȩVPA/z`'>'x tQE={uW\JA\%P) ʶ%\iҵ]մP Xw%8ȕks` Z8cUkCpZhe/㢨b3l7c*;G]# 笼GMȩVV@Br;ߥ74wCJTPмKtUF ~ ^{DN_\e* 0"fJ").SMmgWXw>U֔+[`gY jц7C&"KDvH Yt55ߌOXOek'ci. r,o9Hڜ-"(bw~G2)K*,UWLV|˿ebsUQ(ucV P2BO/Tfk[`}k&勻,:ZQTTPk-݋*fnt5΄-wSf zB+MiN K'AzԷ4ˆtcv+֗I`-k(j\cꮐ`i\ gJW ǹ3h7r$k%EW ^h5D[ 5"!k^+Gs"Rsfb˒!R, m?CO_oJW 屫ɽt\hu`hnkil8`D,=Y(Hj<+Զ6.x|e eF+Ws=IPZI(ELU|s /P_>$V83Wb},/7@ tus] +][EQ UY]4Xc]$noa0=ӺuK+˰gYe-2PJCh ! ;8`&XK 3Iqi:Jҧ>;j1VmXoQKR s05|{0_?ACBo6MY@!/hg| o=srJLwCx^umȁE"mA^x>eDCW#n2nW* 2IPmcƒ׷FimG Q2F/P ױݩ:l7bUfM0zUTr`f scҝ(QbĵQ=2Z=z*ZI1,aIzy 7QO~AIZ$Y >8M-[aN2kĵ2tҾRѵ顴05W6ҙVkcVaР暜ŋDޓb'2z~){-EWog(I@d-cCnA+#3pôfd1YXd`5 ּH0#xCp3Yڑqkԑbqnص]@+Z}uX.[5sb."h5l^-n%1vt0)jҤSya{92xV߼o-W^WѪڻH/QAt_֦QuU.a<,>h yRN cTΈet^e+W_&V S.8W!*يDMP\:ZӶ'՞d-ҫ6Wx5J' h¬ܩFaffRek*`ݢl*{Z" q4JWW\2]g g@AW$ޕѨiedAWVycIK9*?Zs8SG8&ǯ(`=V'7UgXOlq0K]@^ZNKW5#-ŽW%8kI1gqfpY:a}/_u,*匶ɪ݈,!iq}8ec*N ¢V3eTڪz V|E_%EڷjU$ '>gP rNՓh5튖Q>b5vW]EM۩AMC\ޢ%\ ׫7'3nd#S挶BQoTZwKWO(LzL~'@jNlB@8Zņ3 aPtZ,8Lֿ= koTy0`ŬwEZ1+! YY^+;Ոۋ3*]k ZmӉ֦ShTTy:WOeq2QᬡYni_CkKUYF@h`Q#}{NX*?kiڌu99T.ꢶ}9c\o71`[wlZ(<X 'fCWL| $F~ާ"]8ӎ*,8㴽 UHR$iQjo`;|d,7\7sjϷ M˭5Cvj릭ZE cWhGwKT7qOAZRJ,Ciܪ"IyLQ$4rQo+?F}*@W]C%XQƾݦ3EBQt mƢ6kONc4wkJF\F7:ko؃VXzxcJ>H0 IͤCe{2K| 5BUkN \uZv%pu.dZUs$En}G4 N, Tfaa.*rF\XETH=_^оt5j UnNF mqDusZ#3=7q(MW=~z e`&}mVtm +^?inTMY'7`A64]5 ܝI$uxٳ(tuY8L,Vq<`͒y?0fnM n'4\3jb S2*ִN턶_ K;4L=3q`) O$J얗qHj}"7u{R:bvìcO-Ϥtu}_Sζtv8lsm̫کt8>'IW 5 'IUX,UVJ@w‚a"&F PE Zkm:kqJvÑ>ˉ{8QXt:ބr5X =BFX|r{!VEe__6]VM/g8?՜-mī=r| g+o|z^MDˤ$Z)EM޻Z(]@ĪbNXA@Vh( dQ!ں9ԽvTt%5v1Ͱ3NRX\,7+& /P[\tPt5?0% EOq& t;U[=O/KS~3_eҪrUѸWL,6h=(|tUAk%iV=W+Z?-*Z qձ{JWՀc)uI*qCqlL.e=-Z,` ?Ϭ(`: [}$ŜO`Z=Zx|ôٳEЊVvB0I#E8juȝ)Tjp:Qا%8f\^#]83iU}tVM.xU4PK@/ v;_|*ڍC™Əa>:%h%Y3+ *-* Ut9HpG* ؔS2X5\O9۟DKgU/FWEwBW0VjIRGѕ^f4gRn)'6,`=a0dfG;p;Z`hU Ш4A+:4^W7 h W8NQUW 8˦ct#7oO|)OV r?+Z7F8*P@i[R JAia|?`2EQLɪ`}LJl.U+œE}6IG3dhE˪F?lH+4+ϧzNT!_qQG-OK鰤VWu}yx gs"rrndB,jJNχA'  !kqD<$ڞ7zܫ-YPȏ {{`o=c:yF_>\f-4$:U3"}%3mohmu:80nA 81]gp/e~ 9NvUXCj]{XH&pڈsV !=4iC~O(*4oI מcOau "ݪteHU/@,7j#ϻZ \jM֠J;O‰lOX@U#%U:gX߉ӕ̋O5H搻TUZ;zq8t[j9] UUV,u/Tdw'Sg޾@j&EUj=X#. rܝ`d\*3W܏l)hc;~aþW&fHkkeq+?R=77Gj/R*\v႟Q/3 h2(f@X3PfbDxzމOU41;E펯3pGcM$C\X#:Frp]hD*ߋe(:mF ilR{Cځglv\R#1zLڃh!|%ǼaGjWp-0 |!mJTQ'M'JY҂{^'{qV 5 jxӱ(]-Tny?֎D`u5:/g<;<=UO/>&N7/ipCNHR9fUOLOqs>N/Z OꔡQ\Q> TmpeyEqnQ/e,ǹ[EW}S䅱VRF\SL=`*DILtMVayoXHZ%|Zg{b[4/eO𰑹JN'Tg&~Hyh,Z+a:5hQo.+߂ٚU9*{(Ds,LezёKBղj5k|E6mֵ%zƑ5w "tucd߭|uAʈ@(QIù)=/U,N=ή˳qQVu5SpWO0[-L$u[ )It E(Ъ0b i.:b\P$TgMÈw}j#p(G2c4Sq6(Uҟ*cQ#ꞔ *D|NH.'lE9g>~10ԞVU]ٶUJDݘ'&mZc`NPj0}NvG|כEjU*f>{S{^$lJAOys.dM]ԏZxN76(QY>F^iRnY`I_+n{d]5bM=Vuh5Vo\Z%?P{|ֱLiZDH%_tŇU?UX TI9{ސ? Y N-_]z~V/~tUbT3d OVV=6 + IҕAUӁvPAW#fbS;p8 |D3}=h_/)])[%E6s(r\z ۰%OxUIz=尿Oŧ,+ym,聪;nvb<ᣘg80)" ;9Q& ŵ>ҫvhd]U^ӑ@P+Wo.ٶ=ԼsnV1 2F <u/ooDW8]?2k~[ʮ"9džphuV^n)5BUM)E+ 7p?n    kDvivwe{DR|I*IS9ڸۇ|u?D6ӚϹ3?7_1-IM -¢>t,]ŗ-ձEtU(Uʐfܠ]͘Qg/ПWY؀O'_zZlJ_J٣Zըt&_Uc"?U@ IDAT\eup*"Ȏ V#FFV"=?C/oWkm7{7=So>̝} < :HjNNlhdE 2h1.Vӯ@d콁2{1?b]`)f2̋ߧe}EX(\OUVLxYt|UAÈ:W_@;"P?!>"<"@ؗݭs29xsUJ?VMPW5!uL`пDo='V^Lku2Z6 3{'cVW+)$+z-u >^Lc9vUq]TU_7PB}=Ĭ=Gty#Έ3~{WLCνwUSR Q[h_aw!@n@PZGtԧTU쉙!f_  91#@L&wK 3kOG+@̈TA)b%GK 9фhJ8%& WSL)הkŒ#ſ6]{*X]ei8֨=q6Tex3lo 7>QRAYl2Q!5TX pzj`Mjsޒ]hZmgoX=Oezr+3UOcknOې/Q"Wqzo-\/6ҹ.kI\t6d$t5YZT&2px $duN]RFf9nt\6JrNv\T͞te8ָ=ig+; :Lab<F)_3 D]z;_Fz%8~0AO` ⊰V7jjMdafbddy5ןZUѭ]U3V>/qRhLD y %?W o{.)VҔ l 6.Xa\<2ߘtMڷEkܞV(fTz4PJL`KZnFEgT5U{#m$.8;5N(KQղ RT%,?sݴ`mӂ+kr|Bڋ{KͲ#{HqVK%$N'Da)OqEJRd)EA!_s6J,XL?U6ʂ+kCwv:c3˿']lFK8[hg,=x5aԩ rE-ќhN8BUFD1aL+)2\]JƱ=(s5BKtV!rbS#`3]w6&]L[JUJ:G *ᯕ)qވVgbUMZu6zC{HSeu lO=ޣ,u@ډ\QF+:HyZOgz-hJoѪ0$'T  )*<(B"&/6)Bܙn1Z\夫stOl~#>'>}Xk \nR#C\/]-]-}Ό,.eU%PIS EɌghwYgغ}]Ծh]g=K lк1ǡ%@~׾r;659ٝB{blp*+ԙnqU@nI=:W5VvXg R,SGsԱF:m6F*й VSrN7=}%:TCi~{J6箆_t>a3y#j8ZeЕUe P1 ŸwyBـV)GVj(;ÃS 6+uqaۋ,cG>&0Ǿ[ԭ]xZS&Oϣo13UAm9-Yu(cScd=j/һ- 1C8 (\ us=ӑ׳³vJA?5&(+#-QX[,gU9\\q0 M氺*X,D@7d!\U=;;ʰcTIW(J} .n E$L$!$ NE1~_­©Vq BؾqsNjT8 s҅VUo1h55֙opu~JZjiu>My"Zȫv`pa-Uʷ*puūˈ Cf!ӀD)YQi5`YvUNयs1_X=hep15!D2ιh5ӄit$`$> &H+xэ?Rߖf]U.|a=9BX-X! rjkS5X~.[{Ez/HW#]QE&c| o^E\f0 L'߲TyMyE^UdUe͑@ɪtuCħF+h`?ٔi$d0 H|&W_ GZ'dd[bs ];*8&q{Z_پH b a7.ǾKWZ=w8cErlpg2?o񾆷0/>PDwbWS NhV\f~k%Yz5оzT86OEp + xZLeFqC-;jʕ.υ1 l.6֋yUw]10X JQplD)bt2H ڃ1]*|oJ^MZ5ۍ,*#w#kpPQ]VET=71v'rz &F .ThFO#2XKA޴ ֔hi ֽX_ոuU"ڶ*P3AEIGckQ:XEE~00N|U7F׊.Th{٭W^j֯+K=WvBNUÝBn@0 M` _WCJ*U!hpMWη]dU l<X ,/ B|)lEp8f3v-dJ*=}5+K 9=מdi7kXRnu2G+.(ݟzEl@N|]2 "]ź ־O! mp)0&H|"bMX/)no?}"ek]cVa[Qš]nőn_WXXZ˟lP Xn׾Sz+Cvߘu"[wh+s5{/&o-Պ*Ul\Rh5zEaeAۼʩZju,PΠw)k5^\4U-ʌ,eZI ,805.pվhL9lgOWɮ1k]={0\[u@HO$ν),BU좫:09 Gz2F:[ Y0FKJ.0\\<GjNAglrvd˖P?s tf-V׬>.wb;OUD4˳AmW)%/DWFs_}K /m5k.v\R]S-79Y&#-HS6),6ִ`; ~wg ;P)|X#`u%_CxS}G7}߲8gCY<jTP/(d\XNzg6Xw6=Tm:EZqjW5x|[j^(D*[ⷄWTAxx>^@\ST/+Ҕ4%]ِpgj%7.\%BwUj?5nOnKvkLD$V IYЪ%X#Z=V΅5=R, 4Y"4rkj7+26e4iki&YupvnL`9*ge$N ST] f)`TfnjEt='ev{ZE8ֻ\\UY;t5ТtY`j=-XpN" Dτ%chE)jbu%\J5n4K`4^f>X| l`>,'ZV{`qlC7~A%H/D A !UAZt\P}Dd;蒕)Z t#Xh夫p$bYg/fD+hl`ՙ3]jf˳9KI@7|"W{b-ڣkuFkUHMQ}|=&VT9 qOe@/ٗ@_OR@,r(MY98ePWdad92ѽ^YV^%qu@MS =]uV[/Uк.uLx 9f!;XtwqFb/C?W.yT?Gb`Pe CXE%\8=RVgoZuUX,%KvܲZz]ΟZ JwRfU P"%-*RQD*JsT l.*Jts]U~Tp*XC?׻v(>'?!92:RuΈDzou2.rЬdڠ+vN: Z!C^#QW6c:^VZ6qBש#Jw*)s򜬺\_oe0N!zʨhb^hx5>xYm 5Sjbohtl k*Lw\\00 z @f_C>3%F`C}v5]f=teHV`Q4qG_3lv% W:N!Po`M^S_SRlvHve8a\˨ u>bFdbV %2sTQ>nv-p,rgAeWop9c3'ā ӜUz:;YZΦ24:{z%+ 4FV=oUvr3K=2#HӻTVN#CauWz`oW:N]%h%]RVlUg+cOSm %/x5bEDdf 'U]te|w']$f`YpG9Y*%;gZU5P@ŋl<,<51{솫|ß]⽆+.۰ˁrI]SwiyCxמ}[=Bu0*|V+.^s1a6a>a3L"&XqT4P/+[O?Qﰩ m{agPo /]9#x\ IDATʏ[(F{9|Fbi6P*5딲|tVPϧ^~q?g$Y}O tL%\"8^ [+Wx/AoVH &J$8HUU`1XV3O \5HBU3]UNUg?Q3{3CPܴ͹K_!c(KۉVAWϷf2irSA}m(z^ۃyh B͎=nH:ݺ:EJvZG]Ϻqm՘Au\YMy(]UBh^7 0eT^f"uBP$5VʜF5|&[ސbi%R8bh%Z Nsz(jo.2csg f#`RQzJa>݅V=;^!vxYD8샞<}hqεlyðw D~p$Ԭ㡑v[j=mCprju6ca}KzRȬ[{2jR>+wm#Gzvt_`;sP*r @'6eK!#^lRՒՒ-kn,w|7>ܾBEս&Td:JG8 d@sU RcrErA2#>4!O&RjMؐdYJ!ݐIlnY`\唬rkSܨ2O\5koežsN[hp5=w>srQ$ZJWUZ|OhtUxe1耪E%xFӕr 釻!`uՂO|, lWUwh]םj'Qё{'&OCc5wt/Cj5|/ėlU + ՆzE%_֤k[k/ YdU x+(*)!Aj*cj}z W_$huf/[@&Ή$t+S- ]t*tAmJ`v\pU}(sXͯYαC댃N1.!Bj;3\ Z!^?IģUTk jEBqCvM׎6u)+2 {};7d`j*_C^YZ}RoUtwu :Cb̺:XOG9 |oJ64V{J]21]LҫƷrd'VCv! GE--ƨ5PeS(|DBl*_VO˿|M+K&sɔxJ<%l*KskJpg YIV|mWBV)`Rnۅ:V?H yHW#`]ыVodu% 37Qڒïa_Tq_tc/JoOArսwG WFU]yJj}/@e%߅֥꯴\o3}r'✔lꃓ?eLa+&L.H$se0% <Şv¥gkViAll2L08U%zWYKg^t#;X3jNd=q>ڞ] ?O4 #Z=w_[;ɑau Z=`3GQ\ AGb;/H[nDl#&ʨ}BSXQzM}K /s,SW)bKe@Ri@ehW^"=7D|i4b8zֵSU p7"(ƋO@P'./5k sVL(˾$%;į^" )xT77w(]c۸pqzOQj((JU+'Lgx*E2H*s*NSzI LmHoԗ_a9ce.}0nWVhuL'ɨ`=}bC{Ԫw/?bf+7ndu-lƊ]2T.1yKhNxA8#5ފjE8T Vzj5 h2O6dHU>3]/7~oxu%/ϙI&[J7,,ފe0rո=M*:"_;,eVU>I_y2$]yf˄ U)LC&Sc0_z[$/ɋ;*Ѫ5bl]ɪ]rT=pHjl pAY#c9ӿox+^+..h51%+EW\X>~_3F`de7!* G 9G}9ՆrEXR.)n)n( O~$/kWӑ%@m˄ Z`0 $L jyyIn؇l_[˅9{ixa{r>x.]_8agFj7ϸX~V*}nn'>㏼G8ߐ@<#_)bkȾII[H i.-RziY׮7Ir_Q?`=#Ӿ3ޕe|mj.ug?G>~l2kO.Fj5Dګ=řnϧ@y Dj,pNЅ$@\0J&H#dsl*"]IMQá U[ l}у9` ⽃*BR~CqK~M~C^dyNlt2 yW)7`CmmXt5n[^+58ˢf_w>ȡB?=m12ֈV,[' :nK uHi'b?0\m?m}j]2nHj@2jT5[ۼ͝j")B|E"[WyM^KJ~\eZI~+uCW^\UxP]9nAoR? 92x;SFuUJrOrojpoLW +_ d@IY $?D\L{#mFe^TUڸWUYC$.oȡHOZ0t_ϙ^ݥL$S ("6%ŊbI6]/?$O: {[\A#pUBY;GFzNк视mV,\⥺Cq,YJOm.wc>fc|t|| #] ͯ@%jbEEP+_-]R Y"*X @~2 @ rlII$n_Q_ H}C&]NAKu-Vj J1iWR:. 9Zz֓uj0>QaUUTq/n lAc-Nq2nKzO8{ኃ+C,݉Y+i~*D`s z`UK򻿔b%#'.jDդ &Lwp %,eym*-/eepUmr}9Ūvվ-#]Z-ZhtR_sLIuXmX޲a%\T[R~veo]i;U,Bgnvwda k@6F}^P%,պ:eVC誕 C!ixHW#`YOz߃P-=v|!V\콵!%]}llmJOTU{)_\x2EL&Vi:ghURlT)ܱ ڇm+cX>8α6P5>G)~I2:崫;%Qս{qHW#`~mh1]vgΐW4'T,y t;L:GEW~~w9p-%W\N0EbM^DPCVl .xX6-Ew}|~ow-VjKt5+f@u" ,"_l%Zk*t8u7T/^5HHcPYIL66]ރĪtkUׂsPW/}|Qv5uyI;pp9aoj1 $oH])*ʒ*7)KOdL'M} y;&лZ l*iO\.ﴷG~hi_QfpQmrՖ2XK(\uЛFzTYL{||Ҁ5EW]|UڼgL^롫hXDK1jd0 {^+S͙5gZF^%*ދ-Ab WlA7-`͔^5&$cwxo_]'PuKEy\)j-\*ʴU욁UYB)Y\%%+_g.N<OG:#i#RҕsBǬrՃ£|d0zЪ[\:?I357\+U?kt8K[3냥u%~ [WDeO"%BrUkݞ*DD+7W/._)7Z[U[u -[peKB⪺cW oF:t7U|5֙u5`Ghm1~V} iUՂH(Rn Q0; Ż»{xsf0aMZqAvQ-^-UΧz |qOg$!xC`N0#O=5|eg4F.@îbHߒ۸s`:Y;Cfz39"[ \audpg?UHWO@A5pm*+pu_">!qMs߭)p%ˀlu=f8Zymi8hfOԠhޜA^3E` ,XNQ 9ʩN=duOL6n#`=#^-Jр޷BN]tܞκJA+:*"adpF$÷ZcD@KT zxz"?*N*0j\XUPX+\hE/`aM Vb}tXdtvU%̲}' _uqU9ZpV.-aV #pl,j;=׵ݥ0ѹvlUBN4 j5F홪4$|U5@:FDCWao@**= ]̾3'O_F: rj0lr9zJv Azu ' ~C|P ,B80؊ı/ UAXQܒRR,?DJ$ VU[:,zԝjY *Kz hu*r{Gz[zvAtbj{HJ6Y:|,~E֔p`֦h%=>UzihBIMtKp+0m1Nz:݌q`ߒ/gkb2:уA'W%o! n~ad0vu5@l*{TWXfW!&cK)]FJzOKSڏS;Ѫ7X•DPX(-_>kx2XUʸSUoB'hc%G5|7nud_+0+]reyꕳxpj<u_6y݉P5. zF:ՑCѝtՏVFSs3)*֯Ft_}^h{nmѕ8זX.Ƣ[B*dYS ig¿J'=wv6?[8 g +7p lFjk轛TK+Q._nUuGPz3 TA0v] *Kw 'ZѼQߐ鮥W UU W.<z06ݪ|&h"=֙S ncBIy!f IDAT9|\…r6ro~,B`+yng<qppҕ?|Dmޜ݆0o+x6.UF'j]؈( \Xv̛C+sZ[A:CVp%%Tpc9mFK:~rU/}Q4'k0pKWN*$Nf%6kͶ'5%PUvD8rή)\GHW#`Z!/[kjxR'+q| j.'ܱX E+O_I~z>QO84pUTЕVuXu o̠?'%;_ )lLHLe㔯O,k+H#C7D /zU4%*J's,ؐ{dGAdۭ_;eV ʎWtX0<"]ݷj5XxD ]Cn{RV^5-TM5 .ʼnαŞ:3: =s @2d?\tuJ wܢT$M'<}k鐾C{O5-\ݰs7F83@v2ZPv g0[,Uӕ_YwV',E NjgXQ- TupzBWCj3)um L5CjheϞ-*,5rrU,ŪB+[2$\ xEW'1/ }<+U'Bd˵)g&N8UVM+g ZIz#nq:2QY#^2\ dyVZn5a={A/`<ʧFN'#@}X#-RW5TV)'\  PFQ2X>y+O%]}hf,g+Hb#? JSnnlF Vzlt2S J< ݶgEWC@85Z#outruAkFwX#2V*Wtqj_ z P W <*¯kj{aMRm(SuYS)הK[kʏkzrj2VFKm$$1$bB( :܊ )o{dZ껁~m+Zu[9jgJ][c=`>s]Gz)tu7K;Ѹ` (=IX#]I5/%*-V@hT#mY4 7KkǾT7=$*ZSXɃ6PCA@v.fxͽyjM+ ŚbIy۫ Sk]jUJz J"p8=ָ%_@`-?M ƺmJQt(cNq$<0lt+BxE$Gb } GyA&X߉aw[ T>a 2sWBaUIMΈgxҤ!VC˕V3"H͢g;&TJUS$T:WծrS`#& U]3}q9嫓'h.X|zT=eND-'~XgUcM !A{=wNN*pR:Snׄg:'_j"(sHE{c\U+[y OP`0h86GzҚG~ФU+%\*E^|BoHW', ӕsZIWЫ$]]m5Dn*Mҝ-X[wP ^;ˇWVg[& O'D1qLFQTE"#S |E~M;+#Hc5zK2n+pm'WZg#`=ixhtUB9VHVNh}I|tuz=[ΐ@o\ ,*QƙU4*ԻwnuFu8&e7H_]P +l#*wJFZUKFj_:Z̯6a(U_V^W{~/W{/׻gw=};|˔K^ -2-[$"Eݬ]I;;nCO' L7GF. D w eVΕV f"_HW-ZD`tl7.Hp=/.TT&lo>SwM9VlF0/b "~W. B^J-UbU]auw,e_t{xkH I*xaNh?ճ)wS{]d^>Zպ~*g'^%&"7pZ͕lxY ĵtF^f:>^xqp${ :LHWS|+40ETӦу] ^Khu _`I\Sϓ ڶA;6jtCDcn+ ohJ(Y,25EJҲEiNRъ6u'du92 D.bgXV,b5ո̞@>|{P? /k%bejy:R*NG*wȣK1DeյUx˙z11D5^w-nLQhNR쾒Oz+jkg*h`CX+~j.Lz$^ BFRf[ɞYӼ\]z`x4o )ޯ_b 3='j!nX: *bsUsX('!T1-!{2EWi'$x]E0Y08#"3D\bj*l/XR^S,(~0u ]>;x//‹J"(srCQ Od=S^4\;kj(y.s}U{N >/sQ]1=e}>i`tu#)\(aK:䗞pၵCso[+ V+uR ՚!\PHzEY(za o؊4ʾ^CTb/bJэ`iGX 3y0 u_+'ZUhEQp:x+h' {}T{^f[{]`U`EɌXA}c?s wNB'ܝ txKP_ jPim0R`=7j:+[TinluǩAidR f-TR[ALYngwRjAh-\w6]TumHepկ8N4@zRV/Y?]CXDu*0{ j8]9e'8 D.%RU}o*U=b)b @HOwP[ʏPT=S-W5ż[BUwSeSz -)_fq;Jک]:fٌ85'EV;E}xHW{ }nX@b&*>!/m^b?}s CWULtUtExA8{7Wh5Qhmjҧ% g&ZIJ.>jo%B@+NvD&"NPՅV6]mgzj#=a.D HWg'?gC=OPKz+_^SgT9uuwCUn=Xk z]hEw|Eo, >mhZIƲ˂p U{ℳ?F߀.Vt5(cl+(J@ywRJr"Aa&Jp% W`UET!,y!\uEtAD TE>Q@xS DY>!-+`)uNUPft0*=XDX ?_tVrTPvLЮU{Ta0?Iy{Ղ^zE o^nv|+uN҉,NO*/+~.TLxBm~%Lov^ɶi`X0Ċ("t!a)}Z2Ф;K:.KVL]O)5\hz+gA _BT$T z[H Ӌ.ſT҄iw+AWKgwieI^gfAPV7#CsU:KωVCt `jOgyL|7yUO٠XvȰ$YUZ3QY>rz\SЮdpCWM$"VST\j@օZT}鎋КkK/ ^\,ΐ6b8Е[&fՆrMQ4EAQRhP{"#_]5>Z}J iX^H y W]I?|<ן(]u#w(J@,@ 䎻VC[~;7S<]< Z紽97Q׮Yt"ʵ!0OZ4sŔt &IIfL$dNpajJ012YѸP%UIUP׼BQ*~mzѪ*6]}}}#` ZvB41\ՠUh0+{[ ?û_1+9}uu3c|q\=젫{(Xzk!eŶKV gT}EpI kPX@U_HL"&$1@W01ūPeAV;-jwDtoA I]JְkZuW%#>聧O bl~v# IDAT4֧FɀrUnvd.:.b(||JWG/8[(Vbxt586Qtٓ*0H2yHRD 2Ֆۛ 5tJF5TLB&1$f%Vq&lTNQfw\Um(o~@cj;%퍂UvL=<9UUQ=gd{ǏsX=d^#UZ셵#b5:-h]g)M(No2z*9]%zPOďV^Xeo``(DP8CT⛑|1t5Rs.ԛ!(XSA~iG`A8#l J:yig_ w N۪߯vB-je0bЃG*3yҫO@Z>F498Mѭ5U3VU98+L/'=I<iAUhTth n''-(!L 1kd3_3,|j^}b7kg_fpP^YkiAYYU:AJv ZN휊Y;COFzbo"U)iGDy*vH5G!F*:]fЪET-Ғv "W:kB8#-h"ȨjoOrK%%͓ *5RY T{YzwT,:0|0#\v!LJ{oչ7bi[h5`fd=VzL=k|yqF&9v1Ÿ>YTV_B'_YP9%"ψShBG9xyU"Ms}]i[Be,iΡcHuQrU88F=o xJ&HH9VcќHn 4M5W\DP .aN@*qjB%"u6UXn6un؟՘;V EjjҩZt.Q>ޢ[¬auݥϒKGhHT' hIWLXQkWʩꚇzFa Əյ[Lr$2${U4@&˭dWJ\K3N\gU *RDi~xMP2ԏ_O ^\d0Z ˜0qemgUX;ص-|Y\w[6{\U-\ȩg ݉.:Z-!eY .q&k<&"K״ylLW/Vhcp*`>2 򑃜%fZ\,L pKA!QAH DZ4Jkm>0gT@U!&ʡBҊJQ6Qy{b#Ps+7Q*yt W]WYwHWBF3s}M&k }v88U$IeNWO:uS+~Oqj;AWպs)$;&1Id+$ NKmۙgTk ~ /Q שQ"7c ثU9-:VUNY){5VW|AufzKzJF,UFĬcg=Ι,eV$Cb1p0V#^^7~ԝ0 C8]{wi1Vpn DLSGߊ!TpLکѧ.4P5A _ cNԆ 1vapvՖj0\nP)ʜjO\S}I>}E7ZyV^+}v#*>چRX#s}/}@ ѢScZ>g6]fAffƚ`ETqD}vG'rU=ӟЕuw`Kpb_IBI$)dJ'ı Uӗ.pۊWd%1mT%Ju“h:H̘ݫTIzU3[%ϻ8uWyt%y=Xgi"gj2[W P2QAGyI{O*b vKEfO*rdsr7;&+ &) Ʉ$%IH8&l)cZבH:Nmױ[߈˵^ ZJt/ C _6=o W@EeEhO(\D@UG+/<4rXJU+xPBٙ\Avr|sهl-1hrYjx o0I*tjcAW8!nFDDaNSW/| C[(k%SIjd=Lb%,)5Ԕ ,(_p-MμՀT NkT){ BYQVh5[t%tV07ʁ.9:<|/SҮ?zN>Qdku3Xog~>+a9}u7PZcb }\KTrsƜH-/ ̜AkjFz֡z WjyEn7-vާRKq|AWYgXʏ LG骕l㎒V`m A8Ze6f*U| |bEMAeU@sqd3UagЊG>p3W4֧UÂHBUسiCCgw]^;98ĥYT*~q,^4@޹Q^ [h+3vƾ'>rB'3KwmBTmam:WwQ)se"+t4,m>Sko=6\dOFSӮ!~+ǿ{*GOßiׄyW~U؁P=OK:JW==Y&9(%W%B84Dp'Ī)vz)juM:3 Tn׃ҩOqUNUka {JGV#]Qk>o3VU) g NWg߱gx2U?]Ljʫ`:dq l9itUMs79e!&mjeo((49\C r3a`r *RxJܔ'l`0TWnr𨦮i2Ƅ#`}^Ѵ93ჲ+\9%$\%þGn?tA=v2I"V9]*WrUe K%Bb*X TIbwPEA* Tؔ>鐇(YUnZhUrtᆟ$FD8h_Vr> cN}f."-|{؃Z `M}Uӫsq jWbk{ 9)jړ)vd9deפJPri4%}zLqѪkf n]rvz#Z SsijrݓH/]:Dg];tSGolAUQ>g_=~S](kj.nJ & " L}{P/Kk/jk$n(ߢ MI]) CrG nM2%onQ\U٣#X^(ZcTCpz ij}sƝ'%M J`#t-a0>W=^G?æ!:&J --*춑 Kl` &WLS"&$$ZΉ3љe ˊ,(w(m*uH9Ş=2r%1*썫Xj%պnѕ[}5dչ-c@/#]1֓F+75#fbXYGjEP 3;'>6Z}{U Vf[P%*Go> LIL') 55%Q) tI(sʌrR7EF)ޓ/CirgVlbU=%sҕ.|a|iFcGA137jX#Ɣ%T;`1|սWЇ]EC+VV}JBZuZWLϙ͘NNH҄IBff1*K6\3=\oP(^{JU;YU.[PK!YӮ86Ek84gEW2E8X?.f^|[剸L@wSN?.8>>Gw.Եjj}ӕFA *Z]՚96T SDHZ3P=u UP3=YվWfU_vHl㢕P(W0o/t4'+ >jW5Sx /4+Ot{cD5<3U<6dCg=JW Ti{س.z^nQ77duՆlCTBkrvf >aO]U(]=pWl#B13.ZaB0{ U_ʝ!w<]aO _ \qCcGV.Sӕkl-J5W\g̮-.ΙH)tJ|I !8G*G W+_ߵ"x+0IJ>UU4PUן ^bæ|1F4#*6IW!T` bHsAgMһ-:@}>V#CUsvU8Rbs/_1]021IIS&sN.u)P;AoP }ZnP?sWwke>E+"2(Q8}l󏁮c'+G0!hmR-ZsG '/EWaVssyx -ԍM;cOS%j+҅cשL^>v61?CVou WWv ^ U]սSyEh[#&pڦB R}=xT,azFxf5x_l`W9"TI9/\yڡZ W_1_0#/"yArMrIrIrA<'̠244{ !: FݢwoV޲vZV 㪆;.[\u?c3D@M3:i0.5E.: U[NZgܽ'UOٓG[UCTpfћ^ ŪBUxfU1̾قٔل%ɂdN<'h[[J[r +3g )[;\ hkm̪~Kk]C!m=NW#]+R#`}HgkB%*95f?8ǭcDy7>R/O}ؓ&kApS:GדvrK rS|5Kssff iL $ ,n|S_7&6 ZU{ tǪ{҂] "t1kB"31~nt<}cuN:rCP9tjڌvm;^8_&ҥg]) FZ."JYc!$ħTɜ4}n/B=l6E׾xB:쁡Ǧ*f2Vv: (I8ʉ7MmҜ&( IDATsW=P*rIy~CTΧdZsq{CT[v;kKY=Ƚr*Q>蕬ck]1^p8]=c-1XU&Noy`JgF˃᪲cBEV_t>;ٰ;Csa=p젗^}hȅR c-_(055sImw&W$?#4 e5ܠהo\;gl7lo.;7vm9A|bj1P7#MZѱ>.7d1:ֈAcɪV9Th:hոVF*Jvmszj51ꙬgtLznt~ 0VKjʷQLQg"apLKB@Y G(w]wS%mrK}Cŕ[%c.V׻g*z;`c>V^jr}c>5{zZ}3 S}N)5Q$ͩx%YGEtoЕvL١NP&hK;}0u5s*m4Ob3"yIrM|ydOsJQ ZDiߡm'GE s{`fВ{T+űq4CЪYr=vյ1T5Rc| ֐ha}^ڳƴű3ZaG>L!9AYnia8hGW]P従Й'>?c% fsfs zK=Rה+Sk-G;IR*.I;3GaoUwEWjQE+R)-t^dHW㤑c;7zVHV3s^_rsiVeu*E%OmO5 svUr*p=G-7qhCWk .._2321MN$W$WDS-wrQe(GW+r%])=zǝnsnzWfPN'9{%Zj؎)j1h0e *mjĖm 4; f}\tgV0 WP &aVSV%/o6T_r+/ϘϘNLSҔYJ:!PT@ʨT[QmTKߢE+W +#6W*zM,Wun%lH=HWc1cU+*0S.ww?l)VםBOr;}w5dr 7/<*SE$ָ 펿wnbQse1DDu{ix'T;Ⱦ&<5OX|Nzc,K7ސm%L zc|+pϲ}8jeD1J.ł)S.baMs`]YTĪ6Xɱ)pXJUtX%Y Z!,V-If_"v'4WLbM"[ga5)6W/%k& K ͚͊lyxºJa*duyz! DGaj1F:g\~O"*rEEf^ #xWŧsUO%VOvINJRV|E%g6_Xw Ŗ|K!+tY~7roӿd5T]1<@dN:'(Jm;\ nWrZ}p s<:&gؽc ~vOJN6hH<& rŶ` 993my⏯y$y!&N*st-@ XEJWAdxXtoL*Cip3_I9+k+ChN4'4ΠՆ|MvK"{߱ 7O%5% 9ɜɜ,c)tN zNP)ŌbN69pvU'XTJSUma3 Wc1yAUXm:gθ-Xyl` OSTu3hO⥫hղNf[\庮>QkPr*GRV/~FztN:#3WD ahs l` +~?Ry>2[AŔqʪ`r˛ j <*Y^RVk{|ʙ=Wc1XK~m{V{n,3)?bVkz)1jq\jѕd) 6]EH~sW 3 ҔtJ2 zAtE|IC[l![r.(ΕjcL C$K뛄e`qUUPMa{تpذd5LQy( h<G1Q5k6ڮJ:yW_1{bfջt=\Zctu?:I*}8%v"\r嫰Z / + 33T՞ ɄIBjGQ\Zk]5BH/Fՙ ex(*m#V"ʋVGek.iH1c,[uBvȱ,a lΧ3=H c݊zD4쿭Qqs ]hEWLoBY|YdqMY##{s9!(LT@Մ4a2!Ṅy8#!{K}Ʈ`lیM:gffuTU.'{v[vk6k6+6+7n}o-_rx2pꄆ3η1비6;9#Fﻏ8b䃮I{x~0W+촠5Y#۳ߒmm/پf{vKϜ7ὓl.Yۿ>lq@(m(9fpϢwkz1|t\#K]"HC]klajkR|2լi)|Ud;^"B983 }_ .j RuTL8y.ibsU"2ؒ6d[ ٚ-[7޲S;_BE&1Z Oܤu}"o{Aȏ}?&!=ezlj1F?[}BU AK= Z:0QǍЄB ViUéV_Tɧ:JV"a9XM>2Pp̑&*#ŖbKXmدVnؿc=?I0} TEu222T OekJW1N=EɆ1g-P5#`}NYt |ņОzžN?utIo5 ]>a(墕kLլ!Ո{XM.4Of"#s$!j MTM>S)ف-+UUBؑ=pUXߒ/ٿgkvݿ9HJRUj%%Jd9)Pwt/mn %CjȠS7mv8e'ڝ|{)1C1}Uc1֓Z!}#R&J[2(Lk{S:]cn|&:t%PƶHK",Irq-# ]hV79^,0id~pR$L&1I$bD$ .-*-,) jZSPK{w?P|Mؿ>fǸHHizV03pXSn HVcS8j Czj1Fz.t F%;ua~/.{=z8iuXML=!ƠJ\cj\ Ҧ^ hL&aa;#w7 v| UiB32H#& &s&SIJ2!]|a*u-5mk3f Kx?77_v2Wiś++3m֏݉Y;hq ^ o;#Z=St5#`=;B+#%N9?n,EDSRfDŽVKDpėSg\j+Tݲv+@h~ZM5ӖZĆ4b&LB&ɔdF2%z Bh4l᝘P2S%T7_5w#loJy׽.ʼ= 2ax7jCph0c #߁@tt4!MHW%IH2Wpm"6Xbf!n"ߑoɔК2ϤqnS^8Up+ B%Ϙdztq=jM"=>lG:qmqj1 @+ת[ҕ{c~gt:|/N 窰C8캥Ny[\l̠;b-ONMHjJHc&AJ&I5ITҿ*1PJokސg{rU{J'2J9?f%x fW/-^0[03TbKUͦ}V#Q1#`=5]|/]fao;1ַ5 sgTnZ D䍱eX򮼂kнN/رm p$%*d1EӺ*6%fDU87ɹAp-(z'ۓ3- %v߳TnNkJ0c)OI^$&$$ Z_ g3x/5fx~#j1F0%|n1M).>*Deogǽ. așC^;:Ԭ~ʫⅪб: 9kZ,`0I8 _pO/9C!i}HC&!!'TMTbƞr誆)twp -6wCvʯTِvfTe/]_nAl̮.R'] Fc>d4tb5As>R4U)sxPZ '}k}?c [^jͨA+^UEӂ*WyjK2e y 1%+ ~/n&mGM@_H&!i$4#;*LA =Ŏ|'jM&_ݰ_ݰ{o:QkلZI* |]#C_q#uZf_ԥԼ͜ ¨&#U yq*W\BkStx-w!}U|儞;#zUv~F+٪/Ŋ[-͊{Vu8ґ'IVƬ1cg_\@QRSB*lq  v&Pr cPPv@UJMOU{`C \zj4^Vmkkalf71Dc0 2RP U T.(n?PU.\kJ`SKjUtsD+R;,]IJ7ܼa3h.oY~\;\cם_8̴f)dvpme @Qi%Jz䫞wuSP:c= KS}2׼hq0uQȧ* 1ym{R BM9C@D(9*G=jڢ7TKȖh宫=$ V,{U^[ {ux,@̄Az̖#]1X;lKɆ1nvBX6sb>]8l!Sz:<;:jV^%ËYRͯ0#kkj55V##thLc=-5*GjS>bOn%o=Z5hL(2oFQk7v#qNm[)=U4 q!R޶"/ {'@GшVc1騜_k`/?J@Ud]nX'L? A>r*[Jjxl\jf׸r_dJRm4 TasiF`J{(`ϝ356`%*3P#P[ԆCW/T[x ;9HGJ."X_+ԖbMB%#\e& zoZk'?o `ҠU6:Ĺ(yn뢗?y׽t=cQVf#I (c*ve+ta]Ǭ>UlUt;ML5b1o",$JdF!TF{& jCFݢޣn(AxX,Y2M_w`iW |jlU _Sr ;<4S|v=fUi|]E/'iӣN-#1XO(SWihYasuo\=\ժWܣpG,zBl*U(* ?s/͘$8VG0 L1Tf55SJȷ7A* jXRE}CRi5J 6Ъ IDATVc XRXXw>_IVt4 )6sAJزw=D0X PN"']~<c{ p3W:DGG.'*2:Pm $@B _"}BѴŽ7f/b~ٌiB ԮJ%&(65-- X߷sj-^zJ ^[T|(}PU9# إNmJV B۸)SJ4ZzpIH?c1' XhLѝ^ AiRINiKXU*o0v*5ε^5g\k..X0`>c:c6c2MIDTsܖ"W^ϊR@&ߐߒݒ/nkT‘cPx>o V= WMxv J69i_Ui޶j] l=*]P5c(+z* ©cEjxyhE/ZE`P{n7*nѡ/S.>cq% fsSf3SS)iJ w]UfŊbC%7Sb[d߰?}Mful҇5ac(U:vtOKZ~g\ghn $W7V߲VA[fsXӇc1Dk.[mN*yE[D]'N]5ę'n*IV]OBDUS~a{6(!Khuf,T勇TXQܢ(~俿T-$%(퓑4$&m2݀nm.h+o⪖b*X_^s)H-`%7U]ew0|>X#Z1?FĪRMZ x*ނ8CYCK:t?mUvuvk\`d#ԙ=gL \$hy^]ëZRT[TUk5--zIqC #ݡ/|jʭ UVV<8VЭZy+Z2_PJX.xVJz8vzvq2Zh[ +Z[Fc1~U:P TۭD }f4[@\zѪU[8[UTm3m~>Y_|A23m.}3mRJMZPZQzG[o)~}gUp`H;.Z`x!iSK_g%W´S2Ve'y5_kK_=y~ _\ Pm+7;>'_eOKj1 `a[lMN놓6,qq}bNH.GM,{@*&U9'S얾3''+V609`F,_-lTR-Qws7܊9ܚ!\e^ š=즓[e}Ro҂AjcUOn̯-mL~'QZQQ.=M;EЪ둱c+JǑ&&k JQli`*k/Z7_ Ⲕ'NmMM-Jm9ƿ$gWpMpp!jN,zg'9ԯ?;ʿTSh6bFdd*aСEUcwvR;Un͋CJ\|??:,sj%zNˤVc1#`,m6Ev%;dn$ $[S.WlRR*׎T}ETqMp 3PU6Tl{seP庙 Bm0$-*|""tBIelKW_dK3o[V5+ߞj0ij졫Y=|5cpa={a6WIy$KP9 DGzfvN65ÕPR%_B>#>2w Ly'f7b{7-ߑʂx7Цi=+w)zн5P;(tN$ _KWLH|K!ߒmo6VVllnXE-tՠUkFc1F:s{[˪'6,RC5hA4!J"V)]۾Kj>j2ä\Fe ?&ׂNPVnي|>?HV;,V}Ti \ w2D.--+G$%[o]Uv]J.<-ozߘ[k+6޳a77~s3r]:< rl2-CtBIU/',;tl&b1.^td3lcDU&~ezpUܗFTc1Fzwao*ЙCRZPȹ*^S/eA)|C=Un߰{[v%u_YUX5WӿPO|BX媳@eZfӢ"D8#&p+~xQh5cAC$!G >qDy/#J+ Ua}J2%Ūoo~u7(8UЮQr/G3+얈zHEh5ҮX"=: U> yA+k6&]i7>JUq22c1ֳ*_u|AUhvmL%6Q%"1G,%@sTړ-nؿa#k&7Lddt"L5/n5P|CU-:ux j*LsG胪F:XsU U}:Sw5ܗac9\]b8Yc{:SVqsx,PUSnp*Cg=jڡvK'w`G vp0dbe[t԰͎0ֽRWXVW cG.}>jȼ5)]F;MW]_lc:xmU!ZM]#^˦ Yk"!OLI<v`X8CD֫K5zxM̼FMWQЪ5ڥF+!ڒʺ5dm]hU#*B_/cKG֫r>l/q{m\'kоID-RڮFj1{G_g2IEb*m lYWPDGQmaK hJY{_L6zzCJrUsJuc'b */Z?IQHW&߳ bM}\W?e\ I6nfo//Z1cw4YϦ2SH6T\E︛ "!9k] OV{6U=O LN]FK[_)Gܴ*ի^XJz)-k+ztLB;5tL^7ITޔ0GϹ|⚋+.waٰYmo=F^j1cvwTI-'޹PU KX%#J \,$3L} j [xO~# 3F׻ JN /TP%+|t֧WhZq/$p"!Y5]9?|3^~KY\b fsfsf3fee=0NxWe|u3XA5ckKJOE̤HrN AA!pOaB8ӻL5zCyXd=L]FT;PT]Ât[f뉁x.Ҿ+/tcUϱg};!>Oy[;pr-wN}ILf$ qB1qtpO!QC%[xC$xKQFc1Fz7|]\G* X]@Y<\+BE;龻8Ha6Ԯj%;xCG߷ !2A qXjkw6S)ӂNuUYl{&1{%b|U= '266ja Ae<̠V`{y{/?1cw`#/ Jm HrN- sZ0+mzH_PTAjk$[^Y>r<'9(6BX{m*䨓(i;s7$T\v;Q'o:!sc1q*Q%qZBйٳ,EnCHPEo}X"3 Hp^ڕLu:兎n<1vvT+ =\å=0AAS)2|Keffdw{ֿ1+-=(_1#`?h3Z&,X奫>w!)r)'ؗX@^B-j .EoV]Ņ3ǍVav*[ VԁVEIǪkAJ@|$뚨OC+l"mvח{mBmo3; YPsfrhEo{]Ǒ4;ōw&.]33Ҍ4^<,X+`7~0],kw%z.=U;qCč 2ɼ!@D2YL2Ysw(*XOZZ5]ƪEWQj$:EgF,6('*ie*T3T(TɄJӂYjNI#vӠ?q]6TmtKAY*d ֋Tu[nj$$>m+U+EQT.˴bH45*S-Ҫu,NJW+OU}6"װ*H̝dOw˥"OsG!'UishBA{z~˓9ieL¯)(oa-r:xUzI+ ) U+EQT4۽R64@NtA27紸9u\s%UR,>KQZJ*MX8<9S׉1`W{WyƋ{FY'+[-oajkWؕ(+zxUVOcU=I^?CRUí!:VR ]R4~TmQKo0m "U*,4i׮yQ%g,$:bҦ1}rD^5Fޣƅ(*Xg#.`{VIʚb+NĻ{>ɫj;UJ+PIQ-vev`l`,ʖҗͲݰZrN)qL4˻jCUN"nkmKXUK]\5|*tW/0U{-yXZ׾IjUҫMkJUXZk=^ ۾EjR9^%5~3i]v WɤTbbĺ?Gt,oWٝ+zvێ!2@%PbeD*u/vծEQz+X ٝԣ< SRlŅʯkH[].XƴI~R,TC&c sU쵫> 1lRM DVU,%N|+EQ!XiQl iv9O_ayL+HĊҺ+cl7v8j:9$U%UQ=gn%bSUŮvxRuOlLk9]pUuAaaAA@Z5ͮifKTx[,γoP)'@Qo~T~PJQ&wZBdʶ)VZl7r(`6<F<[R+*Nd{jVp牢{UzR7ͅ^%vUU;}=FÀaOg:& Ťqa1id+n՝TL+EQA()U=.KN9ҲTvrfNKJ[(]ZXIsf0>UM|zUt jf]nS>\Yfr;aCУ{DYB%d iDƤ>q@DלWiݟ{h)])lH<;6iP&j8I=vDm FUZV\wB|oo9VR7P,uhkc^õY/ ~-O7)YJJQ$X,=:MɫBQ$XS顿k+5+ϸbYRU z$ ΄z6o/x{OŃuLEZڝ_ i0eáKl'/YB]#1{JQEy9_֐ڬ R)#RQ]^26UmȪΰ{;}I՞0UIj*>$8RpI͊*?4+;^]%.u:ډ&0iwrL,&PY`ɱN@'(lXBdƆCG4:nu^bKjY%t{temsRuH IDATExhV?z[MjEXu\Į(t3}3pf ڗd X G?.6s,EQzOh#;ƫtW5^Ebo]_嘥d t CҾoWwPl/K|gC!q@n.X!,ܫ 氀%Y\&ΜMJEQzNy go㺦Yu6{ ?+;_%d5;Pj6߹_ZfU*>jVA]P_=p#N Kb+Ά09La ؐS!;tUWRujW`=-ːӽFU7?c5?+uAH||K n9]-=Ӊt7vH7t`w_'ĹL>%ݻUʚH?G+EQT`R)5*$uӲɷ:BWV I>pΣJUtI-EeNЫ8-s[1^L/M$tS:^D\p*dffbb`6r +XG Vfڕ(*XOKU^~*>-_X{Hz^LSmBD6ƮLwxmumOI,pbrb(Aı՞@pjRJQKulj)^i+(U{$Aiӽkx%n;y}_"<~C{U|APCҫd{)-[$6 \YgnζxVg(:c(*XO]~c|qr+Bc9$ǿ9W'ֵSZJ3}{ɃUbJF|Xk6 |ǁ5w^e;ṋ̏ h,EQT̬ M4O'UIjV \|(ǜ'=~WS`gaT-1 \A1LUYZӶ(Uy5,'Į"+EQ#XكvԳoqiy{/k-$nvGҽA|>_VO<*&f<38(69mL b͉Dq{ ݮ4?( 3cߞ{Wrp|2-!!Ǫz[:oЫU=7^7xjDoaJs#UYUҌdK(MYI}TWS[?xQ = Kxrz_w$]/yO[;W6/̊V/i4|(yu+jJd%ÙѩLLJ:j V\Y'Rm4Xj2|Ԙ+?k :v~c7&c\ h;#WuW6-(vpڕ(KFph+ji(ߦ+j28)~ U?!Ѧb~*:m3'aαK\U_ !ȥ`?I]Xլ=yҷEs:?.X^,4ܝiɼvZ)ݧyiڕ(*X/RepkI\|!; yW**VSک~ v( K?~VKĶcZ,٢_K݋ZGu)\>_m 6Gy SDaޚAjxɠj(y VECUݺ$V9bH{A?:dZS=8{gznͪ}C1Iu7}֢]"j>X%K/ Mˆ; v(dC̬7_L ɿFEl/m-|8ߦGE9\pQ4LR}JL~+%Y]mX/Y/Y/X-XXMY0LoȐUҠg+ _)].DCA( ps?M9VNjr̥Bjm?P~NaZ6oQMSlYXNY޲V\6(`=^ j3q%{ousrSxN=SigX~CJ]uuV^qGEm,jg< Ὠ])`\KBɽ*O}>oMfkT˵{3_J'NZ"5ūt̊>tWI:f݈P+Uyo"Ѣ+EQǨ>T&6XK[/:":9Ϛ>T˯ܶ; O/Y wvWTlŰ&pc[Tj=Ɖ(\=|4ɚR/fd}>:T?nQ:68H~م5M@:f@S 49ЩTm"ړ3[ަ Ct3YJQ3, : &6EP qi\6 qũMLs]*ٕW*hZ~cdg_pK-N~j~mBn>w|l=؞; jF( ֞id/VB+ߊ^S1Y [Uի{&3-׌'q;JXY̘MYw}neºdWICMԖEWjT(*XREbWɃK)n񒘞_=jƮ\!:-?狯x+&'ƌF  )5%*Wt?. ӹS])`_67GN^~\NbsA<׳߫vdW-yG~5 +#C#}͚8,-FlZ>OYlj(uP #ZŗQ9\:z.t8@eTJn9N1IDf>[w?*).a$o67ŋsiGNS'|& Jk8(Jf D ,xE(5U͚:( !h*{&]oNx__KNY 3#;--24eEʆP:( ñ?$U[^5?d/G6bV(vêڕgD#AGH SYښqq NTV'DUEQTv| o|o{`:]q,+kLJƫvW W?ܨtk ˜?u"];AS(*XOjt^OG 2ؘ1'MG)~,&~_3f4$ɮa>e6w+kՊZi_&G*(u/ǢY^G^0 a *O:<{^<.Q! ؑvoxGz kW  wjrbA4/]b~REQTfY'|ڌ jFeP2Ѓ0&5dWL//_10b4f8b8d0d0?'IجXY-2Rt YLy )xVR+*9VW(`=MӒf2kjiF` +X.|6X}28%(/MkORQGܖ$1N[ʜ% &| lլԫ𕪕( s"laVwMN0[6 Z8ՄWcIrrڀ fBV{RYEQAp{?s˭SԡHP֥vO2\+"XaֱؘbX 6ah G` \+Z(8q F0hԶ(i5,a7G+f+Q=+6S\7R1^;ĬD[Vkk++8)7|ovU~0vt EQG&37 r`fN-x0Q X%>9AK>X5h&'19᜙Q(db``>ez>w'ڬL+C/Qtv(Tdb7]m/Tj2i*+>uv *]'֟$n ׻8yUbzƢKVI*<7EQEQ:qF.|b݉ED/%{?COtcU\)S(&SqŠTڕTEy8/5q쥺/AUǢ20iHD#$X&lVf`Gsz&pecTVȌi*h5D/ Ԯ,v֮((<EUX\5@R-jT N:K ܫ0X3j˷QE9{1:( #Kid.XSʭ,bt'-VT[VIWuhgķbsED*MiV{53(BX@E,&x蚫Gk] ^uZ5ٕ\`971;& |'X~;J{EGdVHĮ4(uAd/-ZT ~1zvuƓ{r{`dD|QG?fk׸ݝ.' ,o~` CR hY*x++EQsbVGԕKUiNTA, ȱJR[ة߇_s3&e|p7V+V sY=4c+ZZgdW( yhXl4Vʹ*(U*=VuOx#&ozhш'ܰ^Z^WQ1F6bUR4G/>EQ\Ѩ l"'z㕗g塬TF|Ql/ϓ`v[r,W4ˣV?1y5+F#F#}z-AL%d #Ⱦ!}O?xNGHB(u5Kq^TtĊ3ZeYb,eNrTE웊u$6W=wc#9>n7u qB ױiՍQzDEQ XլH\YsI'OzƫkzU [+U%B| Wh`2tBxqbF6 S'>cLbs#u( /Q=`BVAk1Q'S 과|'[jQUO=v;,x j{p_|upnz8㓺D)QL%lmEl"- NJvnhnQEQTάY)WҤ6/&..?T!7z57^q>`G, m<ܷ0hn % Y (ceزXD762!4 XGFú&UWREQ5'W]&W0A߿.a3w3s==O`5K ]"_&W؅db|3;XF,67nOw+C06Q\R~9TEQTPIxNx\UF>C! #࿇&|U\|0xN:ae"_EL&Ӕv꫞ Elu#Whckֽ  X, ͖GVeJ6m_TQEK)\K~{INbB &䁫E!)ShUj/׬6;o^3"j X«rMUZ]9 b)`=XGhWKX,aݔ:* b'UBԟ=_N5Ruoys&f|h?͊͂Ղ.(wf?A 3bhḁUxA;lQREQ:~"ok'HLPt}au_;e#YUrb5Nl"6N0OٔlFm̦,14eR=W- }n+(*XGsձWb4^_oDoF9>+"JWiӰg 1D" 8),$+09U,Ҕ2pUV*>OMG3Rἤ=1Wbr9w+fu6 ^;ʼnp&} F"ې$Μb=O.T^5=ҴԫEQTSN ;ؐJq궤;Cr6{Uiy JjՃ-l\>A?Vl JXoX6,,W̗Lg[f bQEgӂ@[Ux)z+(*Xm.#'V202uW-=W=ɮj*\1_gR` Cӟݮ?b  YXX./Ϙp-oZ^ UJD0֮"?FQE;ԇM/t ƱbU/^;KSR~)FGV lt3n?(_ Y̘0>X$mUDܲWԮEQ>g^Լɽժw(/%u%~nk: IDAT3*;p0λ;"NيꫭNѫJ+[uЮZ~SEyK"TA9|NͲ.UmTUGV{j[\V6L2S,a`X CCѱ=I^)U+EQE 1}!J֏U頗*K<4SL''ԕ^2jhhȰGPQ,cffda/xUVRA*WhZPQEyaXʶDǒ;7C?#ZCEWͲ?k^]3jxȨǰϰϠˠo:daaM٘EK+*JUYCZgWMWtXQEQz59u+~;&2Q*`nXhج<S'|S޾ɘ!>>>...lB6[b# (`u;WKDa{RҎgw+fۣAEQyMk?qݑ+&AQ&C#wy8n]cZ9]+JuBH6%!vV"z%ZԼxݧXoj(r,ڕx|JCA\ \,WG[ :%۝\^\\F=g*-يtA2'ޭ̽k],;-ZR!U^^U(*XjW"jWIJB\5nE;wrU!\Vd+EH+#֮Rhg? KQEy%*a3v쥽v]j?H|g^ɮJVtx=.^ 2%%ՂՂ՜-f}k.V?Q}IJQE3UdXT&iľ+ #Yl#'Qj=jWR/m -'֟v;ӐՌՔ ˏ,e_YgV*vcOJh7,:( #sUaQ8R&MphLwR=Pl1uBȪAzF|s;:apƦƮ,rU~';9S2cQtƨJ"HRZQy2+(*Xωrd X7 3U+âzбru+٧+"#R`U.pEa[E]{ZjبdTUz8jW(*Xcl+)3*۳i( D&Pю{^'O +;tDVViM3  +-~72Ivj(`+R+ kh۔tgBf0'?+~\Nh _ʪU`ҮX-0b1-9,Djkj\Y04U'(4 #nNIL[N(W)ܚBoqac==l`vv cHMsizҙ5ryU$gڕV-JJQEQ:υprH8y ־yF4bo[#"CQGO h`o+j6”۶`0TM{\,5X4+,(`6=b`!rR6kjUnmw+S61jUQ˳_sU'-Y׻NWi]UZFdݕ( Җ~l!v4p 31Yfs^70Gj4{hJNVv,5 70ٜ#wK%-]*np-:YQEQm&1Mc6DO[n+^U?pc*h}Vy𧢡ŵê,9ٔtZӠV$Rv+EQ'NjӦ%榎)VFrJE6٣t<(v ; 翃%W&Y8EXE"[-r,LԪ֟jcREQ%Xr޴Z6I_w)Eڣ@ԭC6DYJbrIӺ[]W8 K5q8cn`EٜlF6%!H=?]+93;i](Ll[KW\ӽPHvWknbԑLV4=3]VmCƟjMEQKzb|WRg֭kc5Xj%#|lx5|?7d ̠]kQ.Z)`@^^r"(}BXgq˭^Qim!/-^ͯ&4\M/ GXJQE+\tƲJoJibWRnqs~]:"u GʴcZiB?ӆ7fZڕ(u_3SpЮeLI3D{sAeu[IiS6g6ܳ0ju 7XVY-ئ9 ^u]Z)`}.D&{anpZ,A @/]HEͲ950@ ([lf9oMҤXv BW( S $n0&r,v%i]o`-&3fv`DbTvt1RREQTN޲A72 ̗6Fşu&WN1 bP速ý>zPUEQ5]]N(?U%GIQ!:rlo}j6E'R]_2%迥5+:c:#`?cnѬHU)9?x} wEQ,^t*m}FSyB'n>;׻vm1O8M%d+aW;f"'7®Ny8:( r)lVD+n+Ooӄ>}ou#y6غ@(Lzj?:KQVU|Z4KKQEQzfxZoK&)=ߧ'ժU nsj*4%MHc҄4!Ic$"W+]KQEK93;2yTԎw$E=Q+W%XR˜- d19[}`7_39,ZH}G`)(*XIUnKNn5"-KYTޯ/ykrMr9!qî?t ,g_YgV{VyaM( r)Suib'6qWf߫4jcZx (tWu̷rms7~CT- fl`Sg +EQEQjchɓb)}C'<kBSoΪ*1Sm K n`pJUB(`}^$=Ҩu4 9~q #)B;'7<2tm,lWZ-LmYX|MvuTW)(*X$jQH`"(U+^04R7]ynV,-vj+hQR(`E)~1H^^uZ fW02vUuZu{I`^/?A]QEKyOBUJ҅%,+IϪ+;ʶh͊bxEs7:eMk`6eovvHnMmV.a2U BRky- ( r)$iNUʫ&jWM#19@\f|phȠϠG٩Vkk6KƥB˪U+/5ix c)`)=c؟׳Î!薴USJAzj8yj ^erxxhȰǰGˠKKbNu:dIbTr bMHQEQTZIob *Ѧ"+V.EZUuK\jՐQQaAV]zc.-QD5ۆG'ِ GWlS*5Eشڕ(0 ev|z8o\,/,#ۚtN ݕƻH$i0SH)(*X/Թ->OH8S&9f#_YHѮ|{_9#^5L Z EtyL #SҞ4]5aų}u(*X Z6Vd03 ՁWp4)CѤv% xEp{x]^/pXCK50%Gd?ސ|,`ٺ8: k](9((*XO'!ۄ@v2N~i>mC525m,wR|/3^'mHdr@KzU\)odWREQRΦV4ĮJ+v0:ޘIk^e'%>/kWvb*sv's-Lnq`fj!نti$;ƧyFծEQTyUZ5yr?/LW!+;koZ1$)L6e \(locNw]$ 8$[Hݰ]~S**I m>eRREQRUδJѦ'|Qjwc~ [T1r|'[8u@<V!5 %[~M^.ZHķڨa)(*XW5V 2*_!VfJ* H=VƊ튼]ҘՊՂŌ_5l+YBVi%9H^L*(*X*Ug֬5FJƖJE+QG԰+'*b={q}`J8%H8Ɇ?B(*3i!Q*r2,u,EQEЩ*A-.+ mWwvK`ZQZak~|b>d0]׳4+ 1UUroREQHU'o׹1^>4ĴqOMJmoZ恱j-CWf'^`alM( JuKcW( g!Umj1|igiS5y25?†G& l ҆rӲsb`9woWREQRٮ'5?F.sLUbL+Regz}hdv(m[yD8V\뜜Zzv(`]]#I,D=*^lA".ض춰]F2L+:&EQ,!?[ElIܷ|!RV+UM­h eREQ,Ue(maK1z`z_EwW+\]{l~4wJD׫*ZV+;~P󃊢(*XCUWi#[ҺFzhWs7+z|0[R`ZiVɮ]K]F֚JJQEKyٕ[gN%QD$8"wB-тXl)X+XۆQM3ѮEQ,jѯUWԡ'tK = +kF)!& 焷o,vmKJv[kJQEKZŇnmalWnEjtzr=7k2^52:Fb%%uX've˳~ -> ڕ(u6jdǮJ^U+n5qygscp8C>΀'Y]w$sr`\,g$b3USr%>RREQT.V}["Eq 3L|I6dFlm{\)ߚB]vUνW9nWV( 㨕M+Jk+oOTqE&ڱjWsڕ(yyҫZ?*ܥd(jQF"RiΡy86v(`p:M^5ٕ[ PyƱ]F±\ 'lI"[-s[ ])d IDAT[:A*+`zFv((`qcٕkUg,5s;ƴvŻř^),`S |a[ fOiq I4v/(YUzlT^]n3u+@ -XJٳΟ]K74^%K(`6]HhgJKSHU)CpN8xdYLFIFn1qx:W-REQ^`5FW6^y7>}.3RҐ0d I:beeڰذܰX0js <.ފ`z< 0QSEQ^`=զ)%j%.7;&l7lLT^A7V,,&蛜`Ue풀yQXO}( ֥%^ݾ VyuWC3f`"URƫtvu'U-NX*HWWt"#g.TEQT^iӝɮvv\&^076-ٲ hGv^ŷw1 ` ^1%SU!X~b~7˹֫b7+r>hBoNթ٠AJQE]B9Zqh v8gzv'2z`nOZelVlll)ι`E^`av2tSՔېF[ܣ^(`}GdnN W5k~ ^1f4f8f0b0?m>͊p3 Z-NZcsT~Q9jQ( ֳ훶+`]t?߼fWY1OC!H]ź_jOX|o b Ͷ[BkHD+_?qծEQ3g{쪔(zum@\pbQ{WHnٖ'v$i 5U>V/Ο$Ě>WHUɱz%jW( Ž[mJc]gDvp֮2#q #|ZZR6&hLN Rq3-GJQEQzdcWKD:ŨU 걬`>nLq=\' -Ֆerbbl [XVr kْCXk oMx\)|}l(uqzvYqEݜRWO_ 5}.tR )#q ː ^[393;iQ;cr`mLyd 16~ Ӳk ' )®EQUmԪjWn]!WYWZg]kk| &IY.Y-X~/%4"eosyrMvKx.lC5UA]-MXcUS2씈]"Dʭ+^+e(GMŐ>GW(g*Xw+Vnrq(`=W|rԊCWvL{G’ӝqʽcPiab-O]ժU$"Xv_mH5t=O;vj}#liV>VV+(*Xz-iqUۜ]ڕ5*O tE]x>n2lcF.[JH#S$n] YHESқezE숮Wiީ;KQEQTT /J'˵{}!𮗨Ӄ.Nή2۵S(1;1ۘmL/$Ji;6;/֫l3vpN~ hQEQEEA*U2ʫ]ѱW Zu HWg |n|?nHӻT`R>䠴+_ڡ.&7O95u0[`հPkPQEQzQj6|m.fatDŕo҂`- 0^>nI;0XU&Ԫ,7ypc.&/CYㄉNڄ4(`=ᵸm*yguD=눐 L9Nvn`JnI `\l7SYQJB٨$5L*/=)4#RaT-~|G^c)(*XOWhqۃ/J. *5{o {ٱ&sҥnY%A a`~` Ȃ 7QߤsNfƕM?0εI#/"̌ yʦ6 &)&)XXXXṉv nn3Zte{w>]t5v.*i,uN_EQEY) ]t1Ξ&{RCIAgz5忕LαZpG.nVmf'^6H CIkAV7Q߀zZd,(uhQ͝t&\dA{Z\\eX3v,,X`]FTZ$X㪪2'On`n9g n=<ҾTJNJW s(X,@Uh_tt3[-X]gkޟފEy#j{4֌>p#2&ϬVQ NۛE("`=9BG+UYkLE5&Z^X(X/`+e:9qʪDze@&}`%SrA4F L\T[ 0a EQTh`'`iͩ u;|ϑ}GvgT5 kl>︤BrqSWuAjoMv= ;+f?ap7o0]!qga2QE]\`Y>YFZ`c\!IZ!f7~X W`qdy)bEQE:&WߵBOMpq_ic5' g_aw]!@vYVsL̑LQ?7OH.ȫR%f]Q't"[ sekF3tG|iŲ2> -3E+("`=K:(a);&ۧ=F| *nn`.<_&]D`YuHHTvJy+Y=Up џU -%2{ąEQԛ=XËo\"X -.U5C mR%2@-*lpAp|UP)I#/Sz""u$[U+[.LJ7Þw(ulƎ}$`f2g/T"`rS6h ʎ*8MD{!thQQ_$l3/CXEQԛ{EQU o&jnTMC,aV@zzzzܠ>O6( r| UoCWHU2m(z`ZJ\MfRy- ("`= Q+3ZheԜD% 8WMW]M(EYU~=@YZV(D#X?8WU*wT[XcX׺jVRp,i׺Ltf,( 9X!NuNvVqweTpgVϾ5L'5#=Ϩ-l [ޭRBz*w.j\NWP2=(>[tY=g(Y1+d,ʢ(XHT!]E+Fj 8΃8S)0 Q(ى?(+yĶD^a[aSaz]hkN~k}P qSaf3)S!B("`=WuvT}שPԐ-ҟb01-20LH)(nP~B#[K,V[,6]nKSKeTt}՘)5y͈Tby0OS5q gT(JlXldsl>DrՙU*-堍D4((aՉY?BXo&T旘͑e͐MwTADc{@jR7((X-^`_b~U!Fu|geiղRe1]eAݷT=YPFF=TNDגeUjCSZnv"h+7'PXREQ+Hs(E#^4\gDˍ\QPwicwAKT{Wk- #r9 383՜cIrk]cQEQ!uH uj-G X;c% zho- tWU#N%aBm3(VJhOʼ(Y-V|ޭۥAw0`.a`af0s &7(77خYaf-XwXî=W]nu z":Nܻr(CjjzAgH(#bƢEQEzXVyyNCv9fh3`fU[TQl`6 l>c Ŏr+j ]AqD5pTI/[tj:A.뱋.cĢ(X`Ehq|sLfcvlllii&P5QPUaW+O|J*҇*W:J?8E+Du-( >u]#Ž}EQԫħ(n_K~kg瘝a6G6Tja:L̪jz { {ztk jf}ac(>)U{|CՌ0+V% SʬzА; ͑0VrIQENHq?Z0':g. ~կ֨Fqg IDATQKjYcE[㚫l5ΠyVK\7RX\KGlEQE*+Ѫ/** BFߜҵC  ]ypwVV k?KW{Q8ØU&>5,++bުh8(z뀕!IвL *@FBWtθXUj`g?{KaP{:j2!Fqj&4ߨ4ܯeMjkkX Ҿ(^`Mz*VVcY> {rT00q}WLHbؠ\X!_"_"_E~g䟰w|wyTY3pCW%jTX2IsC@D *ś+·Z+QokEQEiJ{vU3dϫ Ihg>kTkKl6wZª&~ 8.7 |wͭc @O}С,(V3U\Dr$f5ݠ"/jj%I+f\ٮW 3oU-[KGnėҮd$V&:[5Ъ:ee++ )(V[3eVMt 9 Qh(C4A4A4E(s9vmJl,6  ]W֟3XvGWteb}WeTE_2Tw )7 XSU +Yi=ss$s$S$SS$-ZllYcf%V_6ZT[GWAj2VBXe{X s(^ `})e-iʕUm_٠D.>^Ap;T.h?:#EB+FM\9-j=XEQwB]6av} V]}e<.]D0'.Y\JpJn'G?``k$L-{Jxlz>fgVk Lg ZV-p4cLaQEQn`4誏*ٖU?}'B}Ym;EcWiykt7πse\6hDtKO>WXlâ( `EmV%p w *RV뀫ZޕFа=?jUU'Qij ɀ/w$cו<ikx}cvX(XJv,jjտo'7 ` ,5 *} m}(t*2u9Բ]Ū+"1@Hu(`͔!WP6wFUz\wq. pj t5RUV,V뮟#z*˧0#cQEQo滙PU2wj%4T GRIVּYIpu`뀥q ʾ M,)(Lˈ TWM}UBNxcwUe}PKZC$u.S5.b;EQk@ -{6):l5E0 0֡tueϻOGus,6\Ń+鷻ne2R@ *U"lQ*!(WX6h̵*Z#{$1 utղpO&sO5[!fj8 )(֝S5@TeozIr{HT Jf~t,*`%Ku{"; 8Z#+Y5 ( XuY#6ƗjZ==jf (?JU.y nHRU* ZgӁZ(uvq wn.')w[-)c ݃WV>ǏPIl2T*j*\~sSܡu.NQE!j*)_pteBf8zt}s(c qiǍbhpw_uZUݾFƢ(^9` *l6QoaWr=7QЅczUځa}P5S)TmNXMJ?{"d R#gߪ 96@ӣ^(p jo 9:Lv5kӪN)UH_} si˅apF-oŻ(ҿ'ݎTuhiEQEjOUg0mDըs ]367`W7lo=ܬ 1Vy}U*k*V^TG<3XGEQE^߁ @dkpsa [Ĺ7P֫2bEgZ!|ҪNyU,o5l5'šEQԛ_s`Uw\5AL)-GT& -_Ur[}*J齎FܦXq ЕQU~b+9I0w(emژ]`h|+Wpޕ=ZğdTDŖz%ݺa7]jTuQeXaÜQEa XMDehz|((3QI׈? y\ps/=Z,/I'BZ<" 'XVH˪7&0ѿ "ս @N,(k" /.sA9pF5 nRfBO>XAYN,duT;rD߲j%frREQ,2$)A#Ĉ $"*7D&07,͝{᪈XNsWw8V3:ñ*eDtޚS ]LXHRl&EQkL&@j1-14U7۹ fdiޭHwYˍcU'4~BL@*ulBB(bć*`hd 0ά*qӂo^J(mֱ׳d0S@*Y.D0(ɐ(X  6MQ' l QX 55Bl D D7}#o#f@.ӠM)MJ"+ٯNmO]ZWnuB)IG'xhTucFKHvuJHQE*›s7 E|yXKK Էo`?#0; r3r)7(JXaEe;Ƃ jլ^~].W7 ͫXd,(F*ψ?joPBGAf9j+168XϾJ1 >0+΁sV5HneCsޣAe(zU ZUV_~GEY@T&k |0/>DӧDf5Ewp)h3A2YE`EQV{oQj-PԉS,ߵa3tyW ]ýƩt\5_MH[\Vd<8Y-UB(k Ud S_# 9(F]dHe{t# U+F] TV`4,REQr`"wXX M'+?'H?HwPFZk J/_q|{ZnN/***dlGd,(ȁt۸5o&_~}{ { {{9ll-QAW~2x j=!J4u1bu*ɘ(]4tct\lQEQ/JY`o$=AJVe$A&~V-1rtʾm$&c' W;U.Y $,[6@!>,D:mXEQkBFEF 4TAZ*R\']{ڿ#}.;ZK[ f|jbhÿӏwb+U.T)?ί[-κ;kU]Q[EQEQr=R펷n0ZpOLT]90s` ,zڝ) Xo>lh4gJTVV"# #Jur)(V+M3DXjA7&E/tvOQw/a/P_>C=G=5 koe_EaUTZ#y-2 "tyZs%NQEQ//G<}Wrj{ ?R5.TiL Ga>Uj !TbȚT|K[ |$(jl%]c~3=&s1V0phEW TeM\Vi)( NZIݧ)ˎvN!NcR'2 >pSEQ3W+ZЧV T@۩@ n%3Bv~b53 cE |O$͵,Ԏ>EQrVuceq:V\ :@}5p+P#=7 Xf,rShDxDV4ȟeYZEQ+,ebeۧ (,hBa |P5X32V.O38Sh#[4PEQ0$Mqտ}UF $Wc*ìO+JZ.]RSk("}9ybCV-y$Rr! i$YKՃ1N)өXyk@`Sc~އrm4"cQEQx^i AБ"MݬeMDZh6ƿC[*})gSo39EWVB((nW׷FGdY5PA*7@, DEK`-8 aj+L gY]MD2/|hbQEQ/K_U>i+}@K K6 7lqM^o۳Ra{cTvrb5JFZ&pØ(Ƭ~/[V;JM:h Y\GԵmcAU./[u)ZQEQԫ,Yla=j.MԔDKI5P=?U]sxGao3L9V S?mِ4(X/X}ptЊQW+ta)4븸vwJH=uͶ{Y(eV"ʅNS]{thE+n{,d#h  R n&ZICOI("1 Dg(Xe8UR*eFW͏D*۽1/WhVii/uo%ǟ'(ګŽϸZ^ ( sm0{]^L٦BTnJF5VSX<|mEQEB Ik#ubB)0f>ZR:[ךb{|hb1%"WQEQ"VyK:W$0 v: S m"5?Z滟DzP#u*ʨ RiMDc˵EQoAɽ-7 ƿ?˖IUjqnи)|*k{˩ebPEQoZw>jw᳗Utg9p&hlBz ,wTX(<р EQ<<,trVQAAPdcj =鹨Ģ("`bkܺT-gpqs\|lU )S9-Ln0T߳k TW(ziHQ+Աuب6p \g*ҐK#K&։22EQv # z3 {W%pzK?ɿSXOabF^6OAWd,(֛,3t֨>.}:SI%.1dSRP,(^[n3Uì+o?I"օb]Z5-p|>?! >1ի~df8(jDhA^/"[@ܢ b]5hu |~V;e׉))|,z>EQE: z0= U+,^7YȨT j`hNrB@z#cQENZO[883IsobcY0i]Q8h QԗUd2U,Q  PT2O. },kb,XEQWEZ.Wf- I,Tq`uxTOu3 SEQOŽ'>V&#*?**WjFWz;N+hn+G92(XGN z oAF""W4ZfBNt*NNѧgdEQEz[>V,ߊdqSO ڰ yAlLdׁYt ?!`QEY}5Q#BX R ZcO@*W+ }cP+UX~D>EQKcAX +'Zij,+VRjXÀucሌX#EQE: iոV"3*J^4`X/0V<)`Ģ(:q7]°"؀esjFo,aee+=ўai~#pzQEޜՉG8++Q0+>ԋJK-lAL/z杕5=,+kJ?cQEN0b+r<+;VjTE];uW{ σN1U +}i=`EQE:eXu'tXZ--ӽ_N8lb2ӳ` bdܿlB(mWl0P=Xx6=ؕ(>lƢ(z)sFU^ -98e֕ |)} PX c`ܒ(ްX"lSΘ#WuP*E**j?#tQo \o~?ar ]i⓲PHQu>Vt5Fչ_ Nd9xO‹u ^(kb~z+9Bl.Kݣh^.f%uZ!(ta/3=d6^^-]YQh$tu?Vڻ>s*꤆TC)Əm7kz\n0 \\d>B3-YEQeR1f,N‰ S5OdЮ{+Fx0iOXxJF*냉:鮪[9(["li|Pa9'9ps`̀L[j ])fp |5DNV&‰ZHjԾir?CQ;cU`'[S: Jr` 7bPDd7h.E1/SW d'rr%|-LGk(u5F<K, ө Y$9BA|kZuBB0 f=EȒ~7mMe]BAy[/Bd,(30Zq!E\ \!:WM%"[U 0F VثP#IەD9,fX?!'$TbBZM: \g@ieQEFv1{WUW~Mm7Ǎ|N}b(ӏY阞wC^pWvƓVdv Ilp{bEQ8jU =kு ZkU=Qh 䈶0[D+*7Zme~~պq܉XY%iT09v+9gK`!Z5:ӆVEQe%Idsnk3p ӠU[rskUWtᐊb%j:YOu`h>Dcײzx 8cEQE:zZ` D@l }Z ZlWHY$ZOUP2]\*B޸,6%TS95ᮅVZ GP>;f(XOp-cRh%쭪Rs Lc-U=XtLrϘL?ca\{u/7?S\\EqFf]%+ɻ܉+q. Eǣ1ՕJpgx b@m%ʵa5U}P<,EQEzU:aQ]-(+ cEO(Cݏj*;q9TAVh_YY¬'=P X%c"Gire U[>WcX`bB(t?jv T j`3V:ZIT$=@}Y?cmORTKD03[ ]\1D (XQtaicҾ)^tּ>Ba׵B},x6a\VHTGe5s+t;ΥC*P1:)1(jV@ 1bյҺ7fV>QDV!ŞF`cbs+L1(ҍd2Lq"["JMռk,Wm+5#tBF UYeea/ĩ:F5c9jsB!1(De'2}c[g²d/MUdi&wBK?50=H|nCgp <@>$x}AM. xjx3XZY;<EQDMtV̧BcA~XoWR&ci]\V"Cu\~4CemӘ.C oɃHЪɏe2zDݕuZ9nEQ,Jg!W 9F5E8|w].fiJTFžb{kw>t;A,5,]|H:ʯ6Qwet{aqz^REk`-as l'UR8fk{o U:ӺJeTƂbaVu=ܩzRj~0`尻G?qC#1cVEQuY g4~Dݸһa,꿅 C|#1'L%ANi%c՗z_c,*G )e!Ho=V;i=cS% A+(X^[i3 ҆DWK=p\k5&[bMJ'^*5 9n-bh%"o'^ixzZan'>X4ET]\)(Z5rV<$=?CU9p&"Z/,q* L RrcuiJ0c0 ]֘@S3V3PܳuC9'"cQEސ}]hkT?)װaP_@} |0kD 60&fsb#1ƿ۞م#1k|nfʞ_niW:[[$w^h>V@̢(E=jr,9 VhĈb*ݛ{ZU iKO־@3re3ޭUh?F÷5O"5@+(4r.[oѪPO_$.#4ЇX]Zi*o9C+QP=[1)ϓ鑋 bNp_LU0w.[Gv~gt2YEf674KJl(BlvdH%Fp)Gjz :+crp8*[ xw$›5} q괲("`Qc ҠXePEQ˗5PoPoP,%%[5kD?"1 0S@YeY:e:@ճZ+ ڳZ}oI[FNkBM- KsiP7 ?HF?oĿޥU"UM]I(mwJr*(8ՙi5Wn5YU6XK؜B+UXG} IDATo>ǔP ,XubYǻ[@e3KĿ%pgtv_너TR~RӴ4=` 5T! ]XD/r;FU/S X/b2,Xu?'XngמD Tߣ?TjGi5`wW ܗ`> Z &NM#_7]W5*NNzbKqxB1J멠URbɏTbTg#yEƢ("`['[IV[lY׻s˦r-S/~ W`ޢE} Z6^$)`kxV8Cu:l#r#̣SoJn)[zbEQS#SWFV^F2ν2"y 3s$s$F]n`UVu k[sva_=a7k.L-eϾ>VʸN(TY9[`;zcI@̢("`=oGB,H  lz!3Cz id$C2E!J ®aK ګK5QwbXI'>t-D:0ogথ*G0T̀+O F*ġ/;(XLZOYU*BQ R[ @rɟz{;G=PeSSTSK0SD9"lm`)uh, @O{zuyD?iu.E*ϡuhJV.l&^P<ʺ"`-IfgM`91( -h\K{3+- W09p.cs$7ȮaJrS/[R*U=l4?УdFkQwB r|TJ`ʅwZ&VklWC'Q3W!Cu]P4_W7,#ȁ5C"[UƽV+ \fHQaVA[ Ӟ\XMXs̿B3_\D}93ss`+Q8GEEAFFDrߡr1QZ\tPVXnN1]xҾjŖ%鄪֗xwӕ[HXe5*$U~|,ZYEQGƬG%ݗIAFu[%PX}>?!]!]77 UXK`l-PTe}^wqd9~IVUw>HGHkc/X/6`6ah=Y[i$[wuׅdfDQodD&,VuuwHY,Lz7g3CYt-dDhL)?.όє6]053}"ZGUZjU褬Aٽ& &bpE~ gqoRGKzru^4+m/*#<+, -x%?0O}* ' u!C^?#D~ȇޫQHVqDڒVoāvFiLlg,7)YjժIY'f 'c9we+^ ӖF=YlM*ODKK=1ql iTS3~8UGɎI ˅qu-ZJ>|ө2$5%j?aìfժUXr=OSq`6f9Wؿ~=Ýq˝Moq :l[n5|VwoXꯇfZN'J*0BU./)e •ݸLKσm`.]ёa#څ7pzqJfsљU1VZ>liF"D˃dU݆ў̿D)g282eni^xvg7jG%'tv[wr^1R$i 5pE)م۠GJPa"Ѕ[Pì2`VŬZjUz)0k < xq7ޡ;xӍ6amZmn&^7蟢-T} /Ù55+xebl{IB4|+ H !*=U(:ͼ:ֆ"[/ЪώF%>9cQ1VZ*`[)+.$r<;KDΰՂ%חwEonXc>o ^ oGoC#]VYF`Yv܈{~"c П$`Y۵!ٲ͸s0MbVZ*`}R̳K#m#NvrfxEm) ۫6莶)~W6W*AxsЊ}$e0|rD uIIq]X1VZ>(SF؎|D2"|Fvj6Ӊ;F\u,c(Li¯P= Kvy.ME AT3k,T'G+v $TMfz:p(WT5Y7 \T)`Y1w#WIYjժUԱrƲ$jjbZ|;.m"=ڞ6[n-`n7k- 5;W_OSb0q%ߕmN \p:]J2da"TPK6tHϬ\et"Zϸ1 UVZUMR0PuΔ*vB!~ /QCsLĪ}Ƽ}]QN\EY]A>{:x褛`}.7ʚX{HNv:c)T f)[1,ƟA#ʪUV XZ D, D%7kѯi^#v  P__s8/x; u:.Ā:RRn*ՑSV0b#n5RM+I3U~E.uP%C#v{{<ţe,|Z*`ۚ%\GӄqҲ345+l^IL:ӂ/eD+c9V* pk`ZcV4d&nFdE@0l3ao@TBpp$y2GZN!Ig3#:Xtp}*cժUև bd$d6sR$ӧ#P51F3 A ֨N[چ5}kX9Կn$3nt@e6U._.k5'cm۵g V@Zd,vaeZjUz"Ғq.1Q‚ҧ~KbdK ΂ ڭ3x0E[pp=JeQwJr^UyXìjfuLEby)=KINwo9 cQ'kժUՠK8FZ-ͼ#df62T}NVO|9;`h?%OBYh;2~SM`|Q!?Qii^Ut?(Qy^@c^]Kn(¸A=fXUʪUVZ!b r IsHM)ַgPSӑH`1e:;h^|G}O s3s\`gѱk W | ϰq7z50-,?Mnj3ZL"D+DVcNW: Fȁ)t,;E`gaL2t mhMy;g`JYjժU]`llJGv3l& E Ug,QKi_C>V8; LUODܡAsB 9t5_MxQL}֐Fq[!>)JZjժkLBH dЉi&V%`Zĭ-c-֜Bu.eZs:EfEœ Wr}91yF/I]dP:BՄUbVZ*`u:a&S{[1/: X;8Ks %Ĵڄb ϦRPjդft%OuZ ӉAGUc1c8+35-[9<)1qm`U #pw;N~{8ƢbVZ*`:yI*Xf‡%i2>YN0Y1fW[I  ŀ6ǾDYB Q#61C"KښGj{0uV:dCZslrT2C;e5n&:lVrH",xVZ*`=k̬({D(LIJ/ƳxS#hm#`9]A2 fm9[X: s7uiȢ TBҩdr=U@=lS: 6\}4ZP*"qD諔UIVZ> K+RJ :ìM`8# eZKܩAgA: 'e@a0/FP0kQ 5| _k[*H@=vܗB͝ǦP4$J2⌟a9iHi֞U.Ia^Z$/+UU\UʪUVeܛ#~G_]q:ZPats%g_nW࿁!@ swܠnh.]Zh~c#YM3+Q2pWhf0l$cp ЧhS*|9,RFt#cLĪRVZ*`'~>38M.UWÍproĄu[>k~/ņxlJ߃O%6hV4E765ι[C^$Ք>TVB ж4]7~ٗDo'^38sXҚ5[: 7,;1bVZ*`:Jz7 HFdAڴ5p@P E.ys!.p_ڦwiC*+i8v&M=6۝blU"2 cX5?S7DZjժUʻ5Ȝ-suɯ<|ԇIeQ Ri40l=_ThоQAEҟ܉ͦOa0+fDL<,>;%ƚ ekݟ3gDp=tމՠiV8)L7߉#*x%Z*`պ{D.R4:7%5Od31wsA/c4(v͚zxzO݇Ʊk43Po B} '!} [K% 7iB6<'${Tf-A|5TަOy~0mլMxg300ǃY$jժUjlf)kژTQR0œ:z\*+CP- wW^d\g7omJ P] )rBO2`K|[AƄy؛0s։@hUZ8xf=ۻĬPeZ*`*Tq-F!cV&|V]gwYth_Igk__NNmmzt KgCHSS; YjUuJO_ƌ  uzȄ s4Zx`Kؖ-:`۩2{ O3X?$Pe:*ŗ:!yb`ˊ!e IDATWhڴ+ڥj*@'$B{ cBu*fժUVPK;XBJNZ)1R˸P~ R"%J\cİu9}NhB),F¼嗻Piqb%?RF5+bm~C[pqEV<.1rh򎦲 7UV Xvv&<څ:T&LJ%o<@++VJEv - U7BjuI7?v UUv`W4״ofĹK,WgZ('A+n:,h%q֔^SL!7~9éYC[jUk4ca Ǯ㪁3XBx۠RX \ i%d'?d|q:ѽuC`Ew<_>יOUCkNIaloE&4(IUAٳȳ$95ppx)bVjժUkT.f4,JYi Z:=Y*lN\Z:дz4[Y=K ss3 w?CӜ@((hҠQ 4,zom ߧuW2?6V2n_N73 *#iTyaѧZ]ڎIYӌŻ*fE [jUk[#Y͈I}0ebӧ*f-V[mS5Nе]B@z[LJ^ }dgM4i*Q O ^1=lLg:AIIX멬YG[jժkktK8&b#vcE}^Ys+(/J(ta=O&8zh1t%[ l` V5Z % JcAC]M w?FDq/I$?Փ].$.VԺ)_ցeb,ޝiŬPWZ*`5(1FY)"#UOgL}4i,F?Rik`1fM[-Qר+kO!]N~u#z*+9sEgώXAV"IL"672xcN[jժU\lzaQ;6 i68z1Ө&\`, MhMvpW!5|_zgQ'<{a~ ohKRR=U..,ⷔ˜,tJW&b`om]Kq܌ {%pC3VŬ([yUUֻV*JYcEYE̿Hl`蠅5|PGV X>#^{XG0DUT&f bH~KNuUUdM5 .VEͧ/11pv=+,.Yrh>?0YvJ\(;wWGZ.Z2<v|sԓN0^fXrXZj@wynk&a|@ʯ/9"ʥqtG4cTIU1s !\0{>A}N|/Eh]ua`3s[/ vA.f@90 ;n腯N~ї|wq*G.@zdҪ~VZ_槳AK&ܸQއėjw}Ot{%G5*m $c1b^`^ 9q77Kx o؍ϛRe^XJ?,wCz1&-iaZRYPxіtJ\Ecȱㆴ*iU1VZe,su8Vn0Qca2ZMpoV:_Ɏ7,6MiRvZXea^\:ޤEJ!2K'9pp(Gx]Yn{[TkD_U9GiSDwK >΢]jp4f5NhUgZjU"C18l8?Y\qo+Jx~C{[b[lk 5؆łv6:_ h[b|z8+Bu'>T޺HݔP2v\b Cgn^t~‡֦ Y'VS,lh]h͎| PU1^̪UV03uDU eR>[QGˋqLJozTEjrA_c}x[5ꔨ4f7m8^lTC-b ! 2NBR)`yqmyLDDt8hƪUV XBL$<ž1טň9#:gxG7.RgN5j-Jh{k~yI]lx9ǜa0K ¯k ޑS+R;1+&ǶLx`>iFD+_±3jJ mMY4f5YtŬXjU$!S QϷ'Y6T褥/qXae\gALF8?gςE6\d,a1b͚~AsFsFsNsNk yمÛ:?|6kpM$KE6zJLɉ1uIXb 1zf9.ySYO UIVZe=cE/W>?aO[N\+!\'>ǡIg,_><"\F^n`}uS-fEώg V>J_=rb=BU#lTK*s[spF_Ȥ5m>W11JYfVŬZ*cXw5}dn{3v"c`DZ8|[\姘YPt:P74W,ޢB>%p;*SN*=t9KCK+.x|tnsimڈ++Jע(GI)7pumU>VZqA:s|HZ3I]z~uq(v:[ {d3~! 8_Ak`CuuJ;VbJPUOebS>5.2 L:#JI+:G ۇOVZtXIY{=i.e&Nӥ)=d~ /wS @/ @7h0k|P7k }~57Ҿ;[ '+/̜;%ˇz|S!q!p[tgCMoK|)㦲4ͰVZxVpTK )݋Yit(mOK^9N̞ka@anz .o0 VT ~aᢔBiPF5fDNeS͹SXtD~N `(O=d2fbV?㞔+i%*lUU]Xn$kMdlBf8FzPbi1;}{cw\ ˴xW,:5~SHFDmB  m8XE؋ހ?䬺O78lVJ?EP-NIn{\Jl܄b=?TVNZ>bUwS{f NWŤ&=ܸEɏT6vP;Pv_54w7 +XoPbFdHl[|_݉mѕކsT3oV1\K2Sl)rZR7JCv\: TJz452VŬw.?2~1AX$k)Y#gj> '֩jFl-XKw=m[ _`㛻IbbgeFEwKNOdK} JUڽ4x@vff;bÏPyuy8MC_~r[GXy!ovYJ*qNH -:0A'u;Zk_ῃSOy~1MUw.sEMdPY:hsX6tmpZ;#UjXpL`fM|3>U1+b^~hUg,N.֨{Q[& l ,vt9o__!N\ 3 9 }^x5 dJn&.AOǤ&j.SVXZ0nէt kuVZO3j'tsxjSsCZ@Z}UwS wvᡤ5H)/Ӷ$.M16LY[EՐtjig?A\g(ЛZ39}~y+WIpq[g/y:4CڮΩXSiS/tLYkINa8`Srr/ ZE9daE]lXQ@{M*Uuk۱# )%IY2 ٧018=M6}B q@~0P(KYDwRtv֘7,.іδf[/DT*nIv`r#BE/dtaUiEB dfn}>&fUҪGFUU 1GaO0#&z\* *򣀴nיECKb>)ς;w0bioPf-ҀԦ#pzv$Zӗ\56d[/+1,,Zg SI4{B?)̢iUتU{Xav7ȧje1nbއo!&v`U1Ng!\s~:9lmGoI ĕO'ٽ*wF*)]مڕP^$}"FA"Hlݳ܏*iժU{XY{oP$cwi~lC#!#[.]6 G0kpp + by{^yNĭnB f#dg8׼ V*Dno@}?b [g>׎|EUV3$56k},˼ө?ܼX'E& ՑtEK`u:꼂W{ cp A0tpu¥GjL?W)f)M.TDlA/1:xzT*V-)_r8]8GY![jժU񤬃,Yߋanޯ֩ѨP|x&u{NιlhƏ5з m?uvuHDQU><-D(20+p N+ԂV#/J[qyOAkZʚh)rZjUuz:Z+3`?\*4:f#mv@,^?-qK[|5t-Guһ*lժU֓CIk{2V^Y"P]jiQ P6CP1^‹ѣW4oY^_2lɊk,SfpIW4mZMq@^+ŸĦKb^.k څcU HOGcV$|Z>:;ȉC" ƳƸjTV˧D0 pϧto?rbojժT! O"eu& {Q:;鎹d45g*I]0iIҳ0K9ȡ= "T{Vpf#Y&D:)X!7B"ugթ^e?_zu8ol=4YRhOC`G|ժU֓NywAAGU.('‹^] jЪ:eF$,=KG3PRI9m_grBxJ _JjCKty߷)T91&P$f t~/wQ͚1JZ*`Ղ5S{3[b,d'~~ %:<ѡ'l[̭m5\KkOF7,_^a~ӱK>DE'Vl&^oM8}I/La3L|CIX*lժUY8HNX 6i\L'GXenJpMs=kx__/߅Iy:-5\n' J|*_0Rp˼Zslmm}KYyMC3u5)eU5V X\O=|nG幪_XsKg12.ȓB+dLa,5;f ~ ? "py4zMsEܵ:ѵYqݖ@jY.UT7A& j"G%0h+J 5TȐHI㨎!f'ͰbI`V XK=Bp0Yd~l0ifdq4Sh77,3uIE%|/Y Ugp9Y,Q ZK5Z K}g/9-µ yD-I>Èt" cv*.[q`,ޅ{*iժUcѱBК12Z3Y0ӑ[.;4"Q'fm]7p+ċ F ~b^1gXa.c ^<]K &*feW'"Mz|X>kemT՘;#JZ'$Y*`:cnUrR2'RJTͩ]o+RЄí 䄮_`hddSz))\(z7l:?d'T 0Y޳:P5 6p%#z㪱!) M,jbV X&1_}[ n:v۱Po_:l~ # -*h\-v].v]bo7 :8tg})$'MWB?rmnZ).'v\ FNܷ%nWOθ},5wTkhSU}v<iu'ӱ翱DJ.YKɵhi&3T§ !] MV?vIlq1f暦 RkOm:Ǧcӱ`&]Q jE$6#]0a#.^RWҙ_9}É1TnyZ1VZ"'>Uĩ½:Buɇ֙.S,*Na dE4 Oh 1%b}mpЮzC/# E)7 X* xm!>=^9A#3v99fqbÃ8WĬX*`պf=٬~½:ؖ7:ҳ>anMVME ⎷ _>?ggh6-2}L:WgIwAo,E+FitnP-E/Pghp_YXgP1&Ԋ7akL*3.YMc#&vi:N$QWeZ޳v_~Ͻ;5c/X.*d}#ўTgiMI7C'oQ[pɊFY[goB2'b-.)TξĽJ6ewu Y5%,nM =MC 'ʍYoxIVLG#cF`]X{YOOlsBJv)Kc}J: #Tiqշ$c-=X C~"tUjWh0,pq9NV>LoēB ˡjLdM!u;髖9x:Yiw?x$?C>UVgR\d3XdYd;^6"/BX}`,#~W/f\b`]%Zҳo !~/8 S }↋r:aܑ+ 0hFtz+aVr˦3'Wgt8chTNn{a̖#jɪ6 OT1fM.0lqE2PzOlQ23xzСEP?/S4q+[%5W]ܹveRN,v܈8uH^)m֣Yk𩕃aц3BPx)h`T VUĒXGd1Έ`M("n_7*^*N>_>ݗq>)g;GSҐ`{F:M][xڠ,| xDF ̆{{jEJKv!V 9E-2k9 OJц)I;'Z:wHZUߺ᪀Ui1֡vcT.6|י!]@++\IۋcMPtkVb^\u('MGsC0k2K^z  8+^%A v]?T.\>7=?s0ˌXG}RIzRI?{?Zz?VXak/o"ԲAO ~۾K[)U\#\i`\Ѿq47\cI%,QrIJ) i6 n=\B8`,JуTi+$AՀwKuf'(ԴiC31~}0kWH}ԪU뤌S0֠7007&n鴓 )5QÆ4nwxEG,jQ/PQv?]mP jڠV5}#/^c_2通N$4e}86XoXVJTP[5L4w PNF;?'%F,^qV''b D^a,F"I-h ,Drb{х5:Z=[oƥ@DD?1~'M T ^b)S .q;Y',B NyžԍWE#>ؚC|^c9i]AV˧>9STS:KwDҎ*C4r<"QXf;deYb-T>%>E}\U)Ezgs a72EX] XNm M =O U̋nH:5OdiM|GW}wժU0c`,F!- !:9m2lD&Rh,wCmL L'>GD}zzz@_.KqRVb-GELms_E#֊VlxġW=+j^Śsp5f1CӚ9 73q0\58YanioV*}:nR0:r!D t .Ua&Dr"zͩ9ݽ{l@ZjU1~,huXLv)eRZ`8l7b]0pzJ[>3[0w RBwn] _ï3>;ȗt| ڽĝX5,;n֨B66m倀?Or㘕3iWU{nO2V Xf=*c )vL "v<⊹Aw)+Z}\JUt=nb*?H[ `v WW3 sx`n%xDUϪGwbX1PKi[U&ڗ/1'kPLvfqT <}*N>BZj}W8?Lb]HZ u5}ZNJ^X9 3wx%0+㬥ahEz aޢA1U.A>Ї'c֘5O.nb~mY;ZBPt5l*AbOn밷&us`RXV0d2\tHw$f0`~9-E5 *Le16^ )6ʥۧ::vw;&џ/|7CpV뭘~Ք6FX eF ؚ|siQ>umo^ZzcXOe\ 0քk;Ȏɖ=:FV-?yZ|4}5\6YУ-z>*,TN$Lty*±\dTigE+&2V0HY\~s^-y :>==O]lXVe&߫ccHi9!{5Feԩ\ \GqYLxxI[Z߭Ci`;hڪPZ6C^&ey]42lFC5]6zil@$Wit|cDeKL–R-fQJߪNZT{+`UzXco~X)+'|5bZɕ҈Pe<=,uGFV%_xӬhV4Ƅd/@}y;yH }×| XǬiWU|ڄgݧ:T XNg~ ʦ4.J;Ȼo]ᘬ%)hN26%[kʣ[i/L+گFa`ōw Ao0 tnn3MhPbDbow[zNݥ8MQ" 6!zvRLlh&JRUR&})NQ*:>cCCXCb0~1STZuHݟ(b1`U+F<ƌ'4 ^DDZ}pYTCciiw JmҦυM!q0 ΛZ{䶔؉n|E|X63 9ޢ<줤+5PFmJM){1Z2Y*㳟Nf}(`f1wnRW4OOvdCc@;kw,/Ҳ  ]я^$'JlnKL4iTcӘu*䬶wȬb*`:6/%,'1ԥsWTYeNcV4x j M߃'ÉyOBbnYޭ.3R+rx; |UI.I#(J'y<{zŎ`5;~{ :T:V X*c=ue噸6ξCFKNYvB_ qȽ U5U:Z 3430|p>IS lww+ }\'*rYx ^H}>iqO^@3ﳛ/kgkGe!j=>=5og_GoIғs4TH=;)MNݧ17,ЦF E-0wawߣnWaJjsԧТ4ʠ4AA7o MÇDReא%ߒX3g?sM?~ywfr⾮N!meUj`9>[7XbVT{+dl'o>BcQ4.D#%/ ÆK9Yo|*ln^^(X}fJ)ݳz1z0 %ꎪ$X"oS2z8T(:[jtwu՟C(?T~2Wx/*|{YeZfTQ: &mz@tB1L$ņ\ذe< |z첞ݭ7Eh2J 73"^U˻]mFZ9K{ ^;y+#l5=OyL9glZ k:m>t{XNs *.$?IO ̸Ø.ݲiLø-a tg~?>Oy@(\6FҮ;ECTL%dsS܃ƓN ә9sxN1}_~p Au4+XoY wW6H{BViɏ,P4Ha]: ?qegT3\*`ժuLmE9핵$1bErObpS+zʳzA2bЭLOsKi֘H8uآU`Y2]tz l0k.I,l:_twzԥjn0Sr$եtp><|U=mWUE'!bř֡BfC3Y.Ț~бrWFUK.uxKS ɿt€hNV u^ϰKD-r0* C9zV  -M{A{tC&NV:U|ELU=@UF Zn2pHz>ܐ˨1 qUVw,h#qdŁRWB- -TV&]KQӃ򩣩DP-V1Ұ V&\^Y4w?RV6a%\ڭ0th>r@Ӓ S*g@h [Zh5kT/uU\GVYa|P) U3T1=[1yPN_91>_Ȇ_FĒAvމG~=Ȗ!̬Yӷqgлpط}  paƽ]U!' 24# p$ccI 0;bM3#: tE9eғ霞Ki*.]-R!ۖD0¬=.o(% Z GеtJ ihN[ CVWю.,Ct*+@v@@j~L^+L1|0˟xv-f]ithKtZ^UKяIp ucY-Ak]㈗ةzHK@C{-ֲ x1K\l;>sB_R5FþcQRO z-|本/L# `apqm|~~~wz8cvphVq_ W-JIN\$+[-3-,8,2=fҗH]}簾ֈ8*Jv1E Yk8sO%o0#:onS@Ӧ: Ub,i;m8(Alࡕo_W oJWp_~z#:feG$_U&:j?砫qj$6H]a ($j|WkiWv*rZz,#c>qFR1Vk ɆL8JʭJ;Fe-(PTX % I <0Au 7X[0/I🁏dq𪼹g|S{rO+9ǧwɖ)zBx!Qaۛiz8YkWXW@m"sYg?U#E,nE:(ǧ~;H.alo+AUX,|EugbCʛI C ^zH[f pl Yx2qNu.2b9s*ܬ b=hНaO[hUaV_gX.98Ýa?v~Lk X*bfeڝZyoKY94g,t05-KHJ t*t>& TMf׿.H,~ ϩᇤWLp{g=G%mUtk2JrC$lu*Q*-Utz0SRfpÖUq4[J:^bwX XXYWXa3f `R67ߏ%TӰu,\Li)rƐJ3VNɼ2>n)@pX(la0 =u8;c Xa@xmV$ĘTh>0!*HWdN)rNe~H8vHB}p[Ζa#Gv 4NXXqq(Q]E ]:@S,6h‹an,Su#tbBLPgH`_Y}+1q,Qr =v` R "`QDj(NBp:b;%(NRpGǴ9N]n8TRƺ(c.c!ey:cQ=HUb?KL}.ͮ\ipOmhgv8kK ӭv`u<c~C@&~-F)}MfKe-[n/HZ|:c-G+h*vHւX5bpI묪m*{ RҸ%Ƃ X8f.D|YrJZUć*Eŧ .e/wn˚0NW/-E4u!Xh`pϘ)۟RW韁oo  «|6\j&f +Z%5˲Ec(<4k%[[D)V_c8Y?t.34^0I,ƽaUݣ:wmWi[2v1ɂyɩo"d4qsiΐ|#P7ỢtAW_ _OCEH3SleI_հsX#pKeMt}\iB2m~0Myn@ٺplbt[-,JZTRHwfaW˜XR98t{&iXjp{H8!6Ҟd$^v.1҃~ .Ah"7|>~-frx\JBfVJ5V1 *-,a U:ZD4nFhUF-FcNzs;D,)`i(fmsX8f3Gb$ATh ej-bTYX6d*iYx*g<C.~~'{iŃO+C=;g< Jjիr>ѕgsoUպDWh+R(?DV:[RBc U)[%_]bxs*=\koZ䮡quu .m},jO#4A kUyNcikY*[Ȫ!X} -s3j1է/?`# qB|FtpqsS{g~Rc?GC,>`7_^:U_Zϥd6f1(G.;ZBZ|Qi 45R: AAH&_9G V(]nE,%k]w᪲rX?P};3%V~ߋ)쀤!37Q=]}ϊiUy]>c7c頠Db-q߁̿5(}gx@]Fo,˅a$պ/(B{iqBCk+؁51.᜜ܥt*`i6u]9~=]D:f 5S a3#P5Y"cU-!`=t&VeXhEN fXۢ_ N$Sa~ WiaWpaaw$wL Kze{('D3dNqy+.qHB蹬&ESnXNXO˄=?#-,3b NNN^7AVK)Q񅃞jGjR^܁H׃&gݟËif`0)ݨas1gj.s XKӈױ8s< ew~7k#Z{IgmsX XP.. b͛-O)<->ش =J4(캳'Ol3D%_VӆHf}=̯`>|xyy,0TUyM~0!XFX $DLϘ ^b,:2ѕ&[qi#ڧZ e{ ^PG! Kj˧Ϊ)`iuR֑ekKU )Y"cآ+]5۲N)#r-ZF`P6[<0bpϘӜ4Z{=#<<הQF\Eՙ'=Wcsi7RVh}~JD5>v+\ QVb{a㕭Ab4DAZ­0˗X=WҶe,ސf>Af`e^rbE`6C hV 5~+`ݡN 9NG4ru>8*~X^X7NegR5a䗓 QNmgqZC3ltTҸ[̺*q:mԯp\Z,t oyJ[e\EÚ}:֔zLտE}Ҍl0La; xB 9v6z-.44I3v6[3N09o/4K{AD/pÈ"Qxukc0Pf޸j8,ӫڃ!}S)7^5!QK6ró Bv~ `ihܥu85pеQvK[.Y)"NFeА8O3-DS}T,b<+f^0a]j=*}^ |M?RbÔlb"O/z /X Ӏ*e%Ѩyfl6͗*QV(;dD^J~ɨt&}!>} a.M`<tv;ޙQKC2 'U%Yv6䤅n?itJr,2)ܘ}2oNR&RUJ3k/L h !y:@l|:v,;$':4]b3TeML[B4RR;VgdNX77li,/x@+t3za쀜Њrfmp9fP8 c:0|x>ړc`k^|L[|6Rr@.%]jKgè+G~ߕ%ԦҦ(9Sz!G?og~=L 0,Da` yw5Wj,kaYKju#ܰ= -.V C+W}~FxMy2 [>#VC( LW.kd/G 3 :k\X X+eu.TY]+hBJ&:-Z'U$} opIzH;t,'eKw%ٔA תޖfdFL{L{L-FDkL>6TmyX\ QsO=w/g x.N;/:V72VAPfQ6r$$03,J3;jΩQ7RP[p,,5FF R2q1Z!Xi2zO˳&vɷ]ρfIۨ< |IEeۗf _/)==vnΒt'؏0`>H} -+^m?@^lp61HmN/gCbq̈K, 1ь.٤yeO'җ: 薜L0(QBJlMW(`i\ccf) +3XtMox1i=iWަ;rzӹAW6I|KSPL|u`Is a =>zFBFb 2i f`;}DgD̈@ bvW9AUgwER%]c)s'Z̃ IDATe)lltHht0R+V6, ;Ĭ딲>l-hIЩ Eg{!=7n{ Lk b45|  &p*Brn4cKQ-)w%QUUKl|ڳdܷ0~~ +v?ß@~6-+K-,*ƭh(ck6zouujIYG8p3V/ [۲g83&KAbۿMYޞpU^Lr^c\f~~3|t%}SUa=D6qP拲hő璐|}t @*6`+!5Ik&TV5Xd4n,gn*8RnnĨ؋ TUfRD+Oh\XҖY|*0`q@'7eT-;&rle*"U~Zseur'`,FWAWmLf)FVlST 3ъ,6Lʟc_m=+UHWf44]]LI $N',4?uzr>KS떓@øc9i*UIi7+=BSi0uW8 G͋+w2GR)w҄I*|҄b6†e$2+3>`͵\U9D+ThX-]vu΂m.T444nIZEc#[,H3 6;"~[GPgɬC_RLKgQK ^IrzRĬ@(Z3#Myupu7 ](Zi|\|]>1Vc85tǰB%oSjY 7ϯ'Ob+c/OG{b I'^cF);l8eۗʈ 4KXNbu>JwzɂӜ+V{CL>T 3|boҴ ^*qُ׮[X}]uu*:S!LF?!$D G}f3*KsN!ʖ) a@܇TeKJ\%Q`U(7Deє\!lp3 .>pշtિ'S>+ޔs2 +_ۏZGCKN[,K~E,StQ)`i4c=Yb[1VKKY`Y xD͢EHs9;"1r&,;OSoV") ք453Rq*F$39$J nǽŒÖgv}kU6L>WU V80fU3X))`i4\`gc0 R!hoCF@ʂ!%@:x r+*G1#ylSi] WEMhʲQBW gmK_/q8!qB"^`-)u%EZ `axXꯀ}C{(`VAn#*'XU]q/lŶ?}5t1ffC U(~}( b"ca. ڬfxSK,[fxHJ#ܕe-lE[]PjU}QZ>q.آ]KYYOɖ“*n~YҨzh` u10*,,̈{=sAHN0z,vVkQj 1R},B9WtUPJcf]N☵AA*[lߟK+'8@x`A#ΊǖDS识.C +Te4:o~Otwh TiLI"/WDz8VGX 3R/B /}9?0ĄqfY"S<&bE2AN}dW 5,7 G[k3bv>VM+EKCCEkNY8 y$ ݪ,42tODDZw`G\j3$⯚C_ [V,9PVt-Ǩ̠*O9tcUa?Xؐސ_ZD,uZ2'q2/1G_!~BZ_zWQ(\ ^2ĩ}Z4U2VиjIakMp*Kܠ²PnS~5 *3sjV#hNG}bY (2d5˔P/Ǒfk%Y.og%~>Myd0{K^D;'/_F7F`Һ{JLwmJ -Ѫ/޳?)`ihuŘu*MH{ҵ~cA3nȒ;VjO\ѕ/S!TE ht+6\b RTQ-l]]m(4yHMN0ŕ]'Yܖ|sr3Uf&vs'1*[Z\SF/ Qq2crl>'؏;B, {Rnk!i_CcAJAZ(@Lé$*󚎋s UӦz/TFYU%D؞[\K!7|Ewp+`eoW}H7fNPIBڿp8 Z`F|% efE:UY; hX7$e:m.~G[7ùzN˜`Ű'bǜֹl'A ZOR<<B(ZR 1#i3*jC4tpy#ߗ `q/h T˿ZxbaI%灟w೬5֣XB>3[{S `?XfdKp*7י% Yf~,d b~'DŽS eKʣm cnӕcdUpG&ZxK\ =d%ʁ#9MeTHC9BWmeQh(q#>}mef|>$kߚ)dH¡?Ԕ]Wg|-IPL/LOT ~jelP~_U44TʺؿiyÈ74S}B ;HH]:9ƦEUK,'s\d( c` Öb*O&/o.r\Ual˖8hI E}*'f@roM ~ӫpQ~Km K<,s@ߕKIUdGw*ځ'23r7U#Y`\yEІM2x, ޜglA*?oIz D5_V;́ Qg-CCY/тvжU~̌k]ܻV抪Yl5%Yӟ0=Z^M9,YMal|IgqZ`h݌?$-]͐ᇦHTHoN*~J->O vDU\2(YU444n$.fMmf,zHG[$M9pr!J/r:P$weųz%]KuW"&\OU*Z]Xg %-Ֆ[v=+3+9ܔ"Q* dW>8{Y ft̫'DUAD4iN~鄲-lq:0#Tdղxf q1mYȶq0Ӗ j+sFJMTUd ݣǮXTh\V^Um"TXsB&N>>)gO%D>M+o|,*JWq_pIIU~o5Q}L_TiR X+hǬT444FdO eU?-(4قiOYڅWV|qBW⯅[͎[QYi8cfUN ߥ|ZCc̎Sf]3yuM4`g,UK-\Eqg3%sKPL Eϗ0DKCCCWUutMc9YKq\ΆDTU*З}1Yv9]Lf~ qMf XOX`ăjVUi03\ːʔW*%Su+ISж؄UPr\Yt#Uӌ-%Ck:(UK[akRc *U})+OQx]2}HU.G U&}Te-V ȵ*6WgU>ُFΦ4ZaSX>׶>S7z}>e(矀twY.*'Ds.kNsIOgVm}(`ihhu0`HuկdL9 Y((ffXab)G@RcU*a-qaeXlŒM+HJe!P88қ01آ&/}|K/VE/y v RH˳_/rKUy|=AɔX XX'æ~Cк,qd\1i+sQnAUhrryӧ?**OfkҪ![6q%Tі/>}ԦSL5z$v֟O!/h'ǺQMjftUBU٧ IV6MkJ\`/#qpt%QRZ[+s)(2x m$1Xě9n O,dmB^SDj-Q+v2lDS ]]e!]KsQCUa=??Q~/OyB|+=?m(}/F Uи:^81k:]=Plr嘅GGwqRZXiۯԮQq$U\DΊlrЊnRչ^1ĔK?K}{3F@ 8ngѐB˕V(9h 2b:<دm] KFeN`B=aK6muXW2VZ`w ]q拄\B钕+9L"m-$ Lz|"$,V$+eE#k!$k(MU\9WQE+BUXYoXiMc+OBZ M{esj])V~NE(7.’jWcVd*bJd`Ϯ7\BYeg:`ǰ)k\Ç֖&f jVG?Us9  K}Im)(Yq oqόU.\#,ĿZѱNJIaNvJ4꘴g-#& E`o-|h EyR^-(T&:i/FfFE0k1;Y)XաG BCmwjΫ -[RĪF*`ihh\o'.KW@QH JPGC<2}ָPAaiJtXeO^v(ai)cIZ(ePeeb[`ɓ{n%HZ ̕O` AcDXx٭*i!qIN+f` #Dբ+#AXdQL̹*wncDVفx_M XXs1!=5nK(id/d!\UÇhW&Mq_v:}ZTj*"RV`\EqѴ {hE|n0X'h,,JcU͗劮ZQ1V(s^Ija RNPKCCm*oTg:\E]DJ#BzP\KhTSn4,S4D@pתn޸SU9f偟&J̷Z~2m VPjWf@2IJԍ'pJ,RPBq5XeDی!(uq e+NTѕ); W~ IDAT[k&8EGƪ<-+:`ڲW;-ZeKff$ 2i|Ϧ@+1w&(AU*tz򰳺PЯҪʓ3̒mD i\} W$f8hTt5VaV;==HTu0+_qHlNRL:V$H0K+t To' ,!窊F0sQ^x  0H>uc `iZ*i&P"xh[`)TU~JEJl<l?HKCJ㑭ݤӵf O[F4>!:&w"g;XFr ]鄓 ֞U `'I pD4^ȓ;lѪOThVN3Ǭ PfcdRLC2RBqՊs҈pR򭕂_;@,;{sKPI׸בceJdKj>!!xcX6C"-v-V TEYKڮ*1RW=XnHKaUi:J U}$T[RxwtqӘ5XB2 m!d&UmJ5; |c54 KDթKte%s1+2bD,HH3~ V`\'8^?D54+(vo}B*kW12}V=)ˡ%jV hZQ`:Gֳ}<.WY1QVĨ Lв*Kd&,  /Cl@R8/*`ih\V=QE~smNUK1MsfҺrj2hFR5~Lr#>״Tr|U"N[>GNM$΅4lMmGحW8faD!V\CVB*}y`ncDd`JBl%Ol5%LThHw8쯩 F4YBbH}Xl?1VG mGZ}ᣤ͵Qxwq"և? "z?9>Q\I^a"3тTb asDxW38NZv`_$TZ~ޢ+ItgJZuj,ICKCKb_p=X(isZDP$ꢦJ) +y>gē5h%bVK COzqm|Sð:x CK2f+Ş•KYoe:*wbա\~po'."Z2mnjTgy9W`hъoj{NZI-"Y9Ute}W, [ŬmYz:-cWw-2V՗3%W}$@dÑM9 Ѯqg}}g9vPx-CW# ]ґmK\ MK.R^QB, S2NǍ0k5$↕©XZ%Q!z=WHQa202گs{AfAj*x=9Jobh߀=A/xNSXz߲-2f[!b- $t^sYUIյ& X4ҡ{Ը4b%\k P%Lw=bJF· :cxˌAͪ,, qƚj6c*jAʌaI1-jKA},m=Uo꓃aP!d=c?WH-l%?L/VWy1tNu}QxD`%ͥW8s,, wXOm>Kƹ1kZZ4ll@}ctO.W Cc۴&vVQţ7m{uBߠ4a8no XXta<.f`֢E٫SJ.τ[A 4>TYҥ+`6_y+Gؚf\>Vӻu`RPkoXl^81V P5<$xt+ʚ-# 0 m8M+*l`y2K#i֬Xg}bɀk!fU\U1VZfq'_+ e%-M|:g6M<7LWc@S1P8444+yvEg,: SC,ŎUHTYm(hUǜҫD;T ]pï%}'(`ih,n}<: ;s;ICX\V ˴9@`5H,EET\U1^p$I*</3ӑ'Ew謹*ow_)@ԔIڸ6f6c1KBtlN!o8H3UZ~y.k44NF 䏇 EIk`,D/(fs$H{S2Xt ;u)`ihhS6X$m5fqKd,O幤 aP^FRPz@TQZ)B{w"8 MUf,fuQkP{WL=qXpTTg*9QM6_#Xp9*7d6witg~s: XU¬BHf 3%˱H| K7C*;_M$Q*Z*S`_(#Gl?&!yz0M07S*c$H;풥 Ԥ L IrD貤/"\ƺ$% zO{-u׃:khܽ#_{\[O=\#eU,;=rM$-i< 츑uO4CHGm_OD cݓ*u}yUPRB{0?UuԩzP7J \51lGPAٲ0HçЪ-z+YZ:gq, eu͘ud7EƢk,7dvenZP,3SNe'ĊS@["i]%!i{XBKCC\u farmO=!#q":@w+SMW<_0|50b Y@\OK544&q\I5`:Tm ќLڲ*R҂( iZV}fꜼ(~>'|kr>n\?,wMo(`ihh {khxuZ|)3\gV&oK򉥸M%*_ci'.Z_ @We%}~;|')B [Ŏ.XV?6QUeXMC9ِa%DeYu|,Kʔ'fqQBbi9jn>q'$%$4Eqx|ORV5W ctEj[AęMeXxȳIʪ KS9De3~(6NcNL-|xPKC⣾ kⴢWk[Ca"K*I:H,Jġ [Rzg;Zd*,u`,޷鄫34>TZڤYf,ŬubF1RpUv0`%5UhP0 %fҴ XΈ%qi( Ubۛӥ^Ն*XPAK kSטɔs@\e6;+̢iTc@ ] e: S:wÑ-u=VHn{444E(`]GXhؾMrd@MeRZEd *bE9ûa5oN$t5`ihhhg<]kumY%VX˕rb.&KCqUUem*ݳ*KRْ̕D=cѸa:wUuVM7r XgE=UIěR.:,8m\B+$ <,*;ƴA,E;K^( =NOȤ8uxLpK_bۜh`LIK-sv޸DVFj}Lm?2yw, wOXc\U=w-f-2"FY-#.S%S)U 5ɏt"W);Xҡb U |FPPzEŪWa* xA}sߌ8 IDAT$2Sa N9tU ](<§_KK-Z5XGšq; Og>x>4Lu8ydY˧UY}XrKV&Z3 'R X$fm>7M Ig4aS Kc~T5[՟H:r{0z5[*i(`ihhh/U" +Y%)J!s5P밐a:~ՙbwk'5X'm}].n-Q~!IS( ɒR$V[jXjRo{~>lE.ևߚDg")t\FHPE%W5ѝXZU]`~a&,,, g8F/x+Òi,[ R3 MIK(.ۘUFj'z,՝.W)j94448st92WwK3~:!|Fk[!Blyh5a3'B444A+k`,f/0D<';@MAa&ZJruZTQ D Tl%QTDeDŚw,+,, EkX\D6 O)b)YEiZ')7P5P"VšODCK54446o;xbUT5^4̱!: ؄ݗ3V5З952 cBƙ+WḇUi)gxe`zO+i>xzo\huǾ J" iVf")RdKʖRJLVG $E1kboXF+PҸFpg"J Ekoqhu/fxwQM'TYt#LʢBOUeb,ΰTkb yaIuԖ6wri1Ƶ0OpO2Ħ>P-w@,CT4e[ԁ\0x0AmtKSgAM?/a)4< :?zBDz)s#'K E9Uͤ=ѱ0V hf|Wh㰻_H'ڋPCCCCmkw"fN՚|DM_`cZ\=ɽ=8yCoG~Q*Ŭ[}R۹_WwjʷͰ-ڤm a[V},ᘒ(Œ"VDŽhZP"V5(ᬘչ]CCCCc{Rju eWDBVTCKCCQ IL"PvYE3ᙘѩ|?J+4444 ǬzctY+4j@LMK:ֻvԷ\l ZYU`taP54444¬+B8oECLjvZX3G\ZDG創HW1WX`ihh㪏Zeu8wxbqFj*G#N'U[%N0ǰ;7eA:TMnkhyh/B E`GnÛvsx8+,IMV`=\B9202%Tтz!(+, i7c)`ihhghZ+ߎ9ÀeLa,-2cU(Sumy E1()-̺cRиxTĺZ[~`+ 3kӕ%P) I5 'Jtd3-,ATWR =ۍEL0P"Nted} u0 Z 48S.Tĺ8&iڷsgt pQIF:Gޔt2KH++?HRficنneX`ihhhhpPLB,i0D( $H$樞JMu*U(K*kd؞TKKCCthָ~qk*a`!޲&Բm! w^1KKCCCKGE]QZ{b"ծrFd唜h֜X_rmZLa-xWhU-l؃5hWz~V9A!AM]NOk^CgG^ Ze, sfTRz??c+Bٯ0ʞT$*I#2VAx c),B wV|cj*yWN5NtG?h, Vs !ٸtƢ'! mig(}(5鄫g&O~Eq]XxJV4ZjIf(UMěD)-Eɛ֕Q;l{ּ=oX3!f)`ihPx icj^?,fql&JdWSU°DTo%+;, Ӑakp5w5 ¬ԧ\!nmeю0i{wiabQHwAb8v(ZKEAE;\esX8 ;.T5s0 AV:cYTq1*Jőkgxn`a[!%v,QmU-B!a HAlWVm48-kdWj55YVR|Й%Ɠ^>39`ԎXA*V'8īJ ;5 W):h%Zsa V.Do+KDe)Mxjq t ߌBر@WUzW~ ̳s"L o\;+ìhzA4=P) m%Qj?O5Xi h̪cŊƭ=㐏%b71ĩd9w~~Z:[g,iBP5[ZXd2`utd Yjp Υ!jcYrGmf,QB h'Jo),f `'ݞmάIѶRZkU^A<Z-O뿃eIٰ -R}sn쯊в31 ]!cR2 Sc Rc0%e2q ZdiܓZ:F Ρ<`AK?0b]CĬT*ګ){a볅%,l֩!aqՆhŁ(`/\ -ŠE/ċO,A`w, l)XscWr Aj h{˳`V}]k 1I| ?V2tf1P `z-o}Пr#1X8?{&?AC⅄q,IK6pK086X^?o i]R!:aVrB6S\$BR,j"MV-֬*SX,nIZ`kb'k"Z`rI [ՀTջt8ֈKAСZ|xcמ>SzA8Thr!i 6CPYf5.Y.䅽 3o%X$kV' ::Qh59=UN0J! Z%8By%R̅ɖS |ϮX,!KX0 G-Y.LF3@ƿSe [['gR6f{` $u-i|l,Z 7b CP~Q1TC0qka% 3iIC`pBnXaUS.5.ܦ b!!$M+rL!Łeؘ8=W-QUr!At=-ADBe ,ɜAm9Bx!81X[p3f5A3/S\mU=,N~䷐Ed0+׾iaѥ`Y…13ULܑI\/LCR)7k" # ~G ʐQ^k >Dgxܚed|b*S0|c6D&|cвc, +62sz-# VWcm2Xa^0^ rrAZ`]+tp*`%A]lL YZd1>b `6ޥI°x 6P4,!t7O|1*s! YKι f4tM4 s Tt̺2c%+; H%j3QًSLPZ'نíϰUR[y 5܇ .B.4#Bw:ueN6$K*x+8+ĐsAU>h5Ե?q&_Oq\3;'J;EA.LҕLYsX )Kȃ0h\fcFE-b]:D-NN<rM < ,4zZTZO=s+ʕN2v\BID!0\Q@WIVt.ͣLbۘ*r/2b)`AДӺ#tM=Xs.z-؎ܤp6[|8/gY!Y6 %X.1{Bw K,XO)vGt)#ToǢ\5NEXMhGo /{,4Qj+Z-1-ʕl] v,Ag`Z[Fl],cqUplX'[wql{XC3ɫ|r)N|>ɫD*erf̲$CW2\Aūgb߭;nja(Y8MY_!=K@oIQV?t,v> {߶Crk ?bǠK-:U;^V`A=śj#ሣdp8']',b3ĆE$9)1kTYj oHrʆP`oYoer`AiƢH)kSt,Lvj3(BH /!oXaXYboKZY\UY,b,`(ڽXNE.C‎%J3SeJ= 3i (&p}+)RXAY` 21Ǭ5WJٱA3\ y؜l'sqb$)3~:|DBt *fmp9&s0+eE,ԝ7j}v/$bR<ח@x@)+Y)%jƬټr+ 2L cYrbA6k' 5䠊Xw$p+syEĔtaƚN1XABv2WQ,Rs&F)8f(}1v UDR,HXCuI4C IDATAЛKX%0`a,4n5"ՔE1P.`OxbIK۾ܳ3]n.N52%qk!?A Y?%2Xޜ! UJB cXIQ& iih<Za;>*x0%6U >c%e'-'2Ć $tE B$eHX$zƝ85Qۂ1=( *30cYzEpnļSMŹx,}U]C` ],QS.]XAX cĬ*"{ڱ5ɆIw\:'.qkx,[{!8tL< jc,`ǬW1ϡն rlah=JR^Co{mD5?81p|݂DgKY~Q H*}A0V3fB^@+Y/ 5)XAPwJ@|^X$ر)R>!H$ >QpL*H%abyJRj L`.>)'uj"lsܽAP78ȅY&g!©>Wyq$]F%8ӛ+N},,=d~,Xcx54 {>+ i H&ү{3r+3QР1ZlxRufJ{YXAwՇ 0X"0%! ePORUJ\uR5WЈY+[Hbd m,!o+|Q̆CWAXHiĩ<[XXؓ(\.& :h|q7;i{ ~,6 G6R9ɎļSlF 3KR]Xp0#\41\\ w,&QO W#թb, +г(GT! l (ct5KIh9* 8'E^!Afj>JDʤ¾^0lg)B Fp:1!QdîM XyJ޲29HJBYK1CH=I [W 3 ? >XA1Vfy$[ 3IJXw$.c Uk Q3f\4#'' G?%lfmR!KDqd 'Q.Qš +>DT嬬W[rS)7`AAP}s_l(O!\Yig^:;Kc%*2H"X`AA7FQ/D-Ĩ%YbZl FqOt:V9'dŔYV!W- >Dl$S$lA6Z-q*bv)'y2/pJ&ICUFq0 iaX;%z/G1,qtU.H+[X/CyܰLH\IMِAfk+~u—\.~k$.f$gfOJVƪ-;hBW[5W0xt:P僣1NePj`AAб\uQbg'_TZ⪅-I\7aa*~s_%y.@`2 5XAt*Z) 8oRwJ-̒c%`.^U[;+:1l3z9&AP?zHU."[$ kl!6Z%8, z=tŽ p mZ:]-A!h$ MB tq=M 7&z`AAZh+}Xc'FZ4ƵCl(GW3Vì TQL~>0z A 3ѻخXAK;0*Ft%3 oVxddR= _ gހXA1upO[bƲS j8 L25m8@*$![s> Pۢ)&ЙK N T6K՘%;]=wA4Y)V+ @W8!V[DBY#2Uk RNȕ_8#|hJp w KwaS($+lZQsq$;7wYN*_YlUthf 7\9VmD_c,ʙƀr윫 W Z 16-Z9% :IH1zR9>욄891XcSɾ.jJvɔj5bQ\zKv/V[ K s'"+\r,luoDqC@E[06+$y_cf5ǖ >]v'`Efe32P=VIJ ƀ…0h} ro\tZ"5 Ǭ^:cQ fmš׸`UK] EB4XRQg-[I9bE SXA<[9X;8ƢfaXg\F{X-RG5SUtwc ' #Ua,.){H$m8)gjIBC=uQގ4 AV`}Kh'cBbWu^s=WAA侲;z XAtƂ0y]Hq"'@U6VU0Iѕq Ӂܢsc9A{ )|һX [C9FQ䟶-=IlmS3] 쏂Xm B,4rA56ȒXE ɳ9ﶕɻ\ki[9MD_DZ腂 ] E2_ͥЖQvvaSE%I <''=/*@$ ̂ǔR u`V(.LO%򹠫CXzK"A)Z}߶s=cq-^-bCbTZs-b}>h%qc, tVtuZ$PmZE-&tS‰[0KT&\MUɖ`A@W՞:RՒi8Eg ] [ Z& RNXr8 AMw\  E$ξA 7S% YNZ9`A},⠐#WפZ7e5dϪ܄ujs AAVK$kPu]1Zʼn>86MVY dRVCWUT%UJy6P51_aRPA)tUܸ#i!bk:`Z bPmi`;3xk]\z"`ABWɎ?/v5VmBfg?\fy+KNoxdQ-γ V}tung368% !l؋s,렶>98 VF~Pw׎]**z5.ΆUEW<9ORWHA:YjJ*[0J³•a -/Ϫ!x%+AtuuXB+W)UUI!*2C\TAl>UXc9~ȁ AWk}Sl`A@W}j:eW'_$YU%R"TlZٻYX –GaQ+U.P1D%1V@̸[x; pUpXo0]Nt5 P"WBT$5#épe?nka`A] e<)Z:팥Y C`6-\n{" zJ8cejb4=1֫FOEr% K8:弁VN\fBZgj']d윎D%^m櫎W]Y| a0T,uXd,AбhuNЦb\Utw{Y+BTY*R`lZew`AtW]O8ъbvg*Ms'n{c f/)=.+rn876S1S<e%VƾDW 2 u2c~w7TGo`/Zw=+#372՘$MfR4U6NBWnrΏ&hBYݫsGUc h;bX[<Ŷ?Z?(W.1wdڠ*ъ,)K dtf] JDK :UC%W3VHT_OS(Ye?_sR TQ HmAE t]YEqd1^p>ƌ#N+ch|6bWA{hRr.,*@|peI z k-[_G; 2ŗ-d+J+4;1`[IDYÕp y TA/pj8m!K fJ.k&yЫ T&A jpKBjfa賓H]r R`ؾgy=fZwA'k݅ hU$A һ!lyUB4ЕB jP֕ždmA&wdՀVoU,zs<ٷ;⑑Nvfof+cA(,uNny| уXC0[Е`A0ԖktuG=I:Pe+KN]}J)LA6pZfh&`s~5tK 263 ?X{kVI' C1>c[ʗ`+zAhro ^ʈ]zV [P@R5y7+RJi?kIW[Z:KlWs\lC=;/^Kf_.JT΢Ƃ@W]a~u4_ǸۍVʡ]cH{Q}Z7Պ8 IDAT7N@/ Z9!BB6jsX%0.5* WUV)|eHWzJwNBXT0V>V%b,=h{Y (0P0*peԟ_s)$p||eQ]; Z|MZdcՍtGgq.QkP q CG\`b }sY*R3WI/kj?T ]*|2V8ʶlD^Xq $%yeb.GF*A\oU, ~]v]t5j,qc2`BZъR! ϸjϲ=XX25/ԟ뻉^ס+ Z+|02ZI||k)gd/9Oa&VE˅:;utMTV,USkwҕ`A[!\U,?\ c 9W)6AOg)\HKD7XAw73_=ƤZBWc cqIӇm5_Aޱ6VmjG+EJ%̒?cN:vz!FZV~XtW!)S5_| n$ϹmR6JE=8 hսXfg, ]*Yk_! :5U|XRujTynH'$_jn-]%/`X]veidjmW5>W*l5W9$2ZQ]KvtT/) ptWfDSlBbʗ83Ka:]y$AʔeIў8W pto2 sx5>tc1*y])aU TeXX:t RE*Yj8`A Z5|W\N) |XSrt'ӉS_R(&Up6ƢRpI޺Z @Wjװf>l!DwعB6X,]%*[mPe`}ma<뽓!, @W*WciW῅!Q٢Xْ/kk-g[[W"C.w5b t éj!Z%ƒtUU,tS6^X",{u&!K9?dЅAѢ*CvEŝdš7 [EW6WZF"/uu1ԧ  6Q.sxF"QV vn˭"#?Mo\ t:hJ) U߭t՗U3]͆}I)0  *UJB6Sf P'{0cACʈYSiP4oICl+YXrr$r2xX hE*ZR"8%NZ\%Z+n*Cg@WUۘѶ$͑pmb B+:]9E%fÕHWFҒ(ݟe/zz{ E*ON2QxTHW Z95rTEW&9rTo PXS Taj tuZLWSzmX%.Aq5`VZѾɃEZ -w+w1 議i?!},]Q< ˜*cVق9K|,t XPVgΧd2x9B[B]Iʰ<+b<s1!% A/C+0tΤY]-Nϱui,U.7Gbj)z(ZeR(=\!c}S WTSgAt}1_],GPeD+mWY:z.*3eю;`p*d$Ѩe X ~*V9NFJWB9tfsDC2aXPN QR.v=,cVG1𼘰Uvo o˕b[+^ yc%NW=XԶ hRRRPj4VZ%P5P5=Y*,O4>u hT[tBSzz-f2{Xt"t5ռ;,V+*1+ le6m9ٍ}^e, |[+;fB],V+U@bOƭخ5eHsYf jc,ŎU*Z,PxN^rZԋi)D~A\T][ֳ3$>< ]-*!r= *EZjP AViHRc@+pЊ*L0h,znKBr`kV]ً4{[@Xf) A& tuQa2mtLѱ_`mAXf,w׸W +4E*x阵vRAoEW|ϋI|turdk T*Nek㪁qr\dt6J(jx2Md{+U}*ƘXol2;ѕ&ToTeܸiB{$e4 1iQ7»VFNF;x|-*臠 7{ЕƸ' ]`{[}a4z#RyܭçU/*,qb*rc12r8a$ϠDBUte`j>>LmN|?ң"#E.)՘)nr?ex4eaX,XCسbpUZq"m9j[x`A7\dD'Sy\ WhUD IcIčaFڬ*R-^GUmk څ@Z%z(^3 FS ]Uq2ZQ.*dM^*֦?hIP*"X- zRjL璽zЍWc d@9锣N+T $L+7S:Wj/UtU#m0 svХ]jPU;VOcKXY0'iBoz*t^FBbFE:pUsYC뫊BZ2 ]q1J0K+AU^BXd+#N|E:Ԛ}1Um?r]]t4 ih5V.QƩ"]IXĞ^<"7,骊`P{]a<X.݂]՛.tFbl`@5)/X\ U,tU]:Q8'="}:U_fU<{\$ V"8h73Z؁內R iɂUqӕWwj~B ƺSWXkheW.J2\H6STv2`Q +8l"Ѝ4U CO hE)ԎNW`e f"Y⑬Y4W:]-7 骣[}"]X{h$ZQp6crDҕX| `)@bsJj!ůЍL)hՑ~_3~}p:(ЊWøxc93WU%a7]]ι,Tp.1%xYzm++ Vq5neA$̜o_BZt5rF6hE'q?]j?-X+Ѫj9Х}B@hUDbhED f Jh5~͖]Yf| 9v$a?}oDW w"S#忮_eqJjb]ƕ O^!Yvr*XxJRgX h,@]e݂;p+.334kg*}tMJteZ=N4^aYN!T,[F"*a`u1cm65b>֞is@WX{cֿNϹ]_F6ڃV](req5%KU,ƭø<|'JbՍm]#߫+Ôp :Fñ,he+=+AJ f7pc0|b"Ts-h 1k}l3.c;OF}#]phkU EFU ġᡇ(mcQdrHWY6l 9v+R"SW~m3ZqUV:Qb"Mڲ'֋%7fe_]nozx eh5޽v>he*/ % BRbvewڹ1\`V f_C+Xqx^{>.g`&FWǵ3VT3Z)t˗Z̾-dK5g#8f,`#PE F*(gtX9XVNw 771֪ hU̘"8Z9TQ$ʗ 3 CvʲQKXKW6FJTx `wÖUhW>q6-ḣ3qU,*`BWxh*\l;v+GWE+<rJݿ22\`.ثY)0R]d2+fr*l!VC,\UZvo_t MwNBp D'} ]UCm`3T)C4ъZ-X.XYl$7NWۖJ@./͊tE,V}]W L. ߻u|zkOƓ݅dt06`r!]†VcLW̴\*Kn;#9Q)K=M8Ul ֫ >y-ec€V%`tŖ,ZwSm\mhnmH]* XCXtjZYtEڂ+X_^?[ʕ1|՗ѯCjA} KQ! ]Det9n(c%%giEHjSZT2P3{]v Lsk2^K'W+sJ}tjfKTsa$>z*^-d"`3_ߙn,"T +\G|EtdjhY+֩H&i] j1\VXvjSgmf #>k jU.^)1VhښZsN!hP,ŭ%"v.ὒ2@ 0>׎]y06;nڊmPUP 3Rq(hR-HZCTV eU/ꓹJ{W@m|jrMx!\ WnAzRy!.ƋX ]9`-r%f2 }tUU$ҺKfZ{oq_s~Y֑!$1Vqnp  âg%~ tY֫i3QuT_H. W]w>M ZM~|=:f*QW9—M˕ȯJGlUR9% n[O.f ,g0`DԟEW]v` t@@nL+({Lz=&8OtD+>ZsߤypL~{[hi,VJU^pUezӬ`@W@ϙw >720@,դho5JלiUъvDW 9vvҽ{sGV0 f\X܉V#7>tU=q: cKPLq(ޠfa+ThX}L:"@teG+~ ]lЕ}maޕQ7;U,}c2٫tDȟHG+-v_z_Fa2*l }qx)\ 3;ꆫL$ xHvz؀V{U[lrxnk.}K+ 1k>>nY]`} ciUMNǒSiTM,ΜR2wơ^ho!NmJJʳWqʒV~8E*Qn-C1 C*\}ܰTԁiSr`>oƍow8K=LWv[N25=]#*4b1c) :Qe{UܥJc|ݝ _`,z.lSNZ`4 II+wtzsɶ!׾٨}YQr[)Ape;%R/ѵAWXk79#[ F]3ij򼐮>1Te hچct%M<;tyaqk|؇q#!;]}`}_VMy9!_Ţ^)`<(E'iөG9 Zc 7IpJT|eB+W [ i , iNW}]tg?8]Y<٨6c#1v NJZc"[bBKػ7a9-#&3i.b`wm}{tѯ3JF%Ĺ[YTYp!V7 y!ku.IGjdsň+$A;ZjĚ !0`l`?Y~/"eu'մc)c+ף( WX$gY0;j78ȝU ՂSUc)tUnQwo ]Y~}o׹UUhE6ەkXk"9k qT!3 OϠ AeZlkc'3Uk u-}v>u?;dx,tU "ì=N]!omEC{`×6ANl$g*VS5Ǎu8x݉nPn<~𒔵Ѫ#I+kg+Ml%No teRoQn|~EЧj=7 >jţslbyAM0 \Ej6=LY x8>&^E؞l\-WcRy7h3\XW&}AVwn,;]% Co~J?ǹĐQЂUm8*A/4Kr)cUEBKHv5țB :H?cf oӉt<҈^~]}.X:RtiBC%(r`aaqʗX$V3]!Ue fïVY7 t!`)FAWg|^՚9W`*nɜ Raer{%G| + "t2 I ЧVL}W{>CRwvÄ^52m+Ev#E]+)&a_ 3VmF+#T% UtESp(njaz ߽p락GMutOة_ӎmp- c+ZQek,8(epf!cզ0)]E=a_NϴiX!gLRC="psUlohbF<zeMV|rI^cDb4H " {ʩJڊմSFXE;y 6U{8iU!d>:J_Õ3eɘE9Y6U1m'e d? *Rc5  UO~=0oiAJ͍${R!=kڱz/ҕc]rf6rWdcm[_@+{UA{ .R]ѧrޏz= T}549_UqdW_,fM6Uƚz{Erদ(qZ١8J.ŧYVMyAL_s\#l)F)W;nr}qw.ϯ&yս썞] eZM}uujmMMPqʮk"ZP:T /V<U$η|+;Ƴ TE~)q u;7u }cɈVFÕk諸0[G%Ij-( ߍ&495_)ZYaCֆ^pNtEr޹Klܫϵ; W%G_t%ŏ7p*橢{̺ *`K*VHU_ bXÉJV7@==s;@j8ai|%{lKS}qyUܵ歄FU `g*jJuZNc1\CS'"yJZ pjzo0Z{"+`dj0.b2v~ɧ]Kɐss mp%pUՄfW[D_ҕшeA+2,UۄG?lVXs6d` ] jI߮i2̑ -wv@+aT螿;8bǢis}̫h/ *9>Τ+R'z\e$ LPgsoAhڼ߹ o7s»Vf| untC$;=y˙F"- ŞZ;KeʘP:r^r\뮘uM8*>&GBl꜋6\wKhe!*pNNgZ'Qm k>gĒJP^HBuG[}M AW,_MﰾuTv2лl_? Q CCK,+'UVyԣOsίk\-=܉zS/L팪G?eZeQj H³v{<;%$Гpʈo *z1&E/~p1>9kl[QzXoG%}3)^zbO̪3w+~},ټw-aXKiΠk;38itRL)/TȹʳYW5& ;J!8i~ XSM/ö~:붜FӒM~mcyWޛκ8L~> [ђI',Ʊl$}]$IH[m@@K3BWgW'5o]>*z7FX޵3o[6$YKdm/tƅh(q+u,2c-DBU.Γ =6Rs. l{]tGw䱾mc z%]Uc7]9X]Ъ8]ejTK窇g"b9n1lm}eUT%%A-K (yAZjf =mĶ>Ll'w {i:\f[_>a:;t#cM̥^yv&QsbtͻONW9V0'D=6")NSHtz#T/`㿅_쳱q"sOYƲ@t>n4-cs4@R.Y'-$3]d>ժKy\}p.Xw?KT߈g,#b6t!ɧCd6w9٭VF \5kəX\k"_⪪'^= 3btd?lǶw$ߟO)H8΃˚"Eݲea cz6H.V 9>0swm k磔aR9u$;pOSO!uXP {r'fu x:c86u,;W!eUU}G3Ni՘WV{zr-5,uHk33ZiIL6ma֘T0֤!*ANEr4lXUy+֖2֞l'TsaĆ!FZ/7_6ƂXꞩvm)vRp_tRzYoqOXӷQ=զk?,J˭ ;XtM_- ^] NqW|<Ӌf1r;FTK1cg\ {hDaFTH h`I!Kx(cM 'C a#:1$ !N%hGݕV Sj儏8\t _Fe`5m.*r*47[Ԍ\h:RM1tzR;B^o~ƪ@#4wa㫯o|'*#]96s=ArbzÒAg]1!_ݯU\-O&-`uq'Z]MCBW- K4ӗ.J9T ! P7ȡu[OX&a,1K+:E)\;W_]O0_އE.ܔ[!hz쾤TCo#To,18% ]k~s%rՊwL{eI>) 8r5pBW^ t`oב}Z2$? }5eU'[$(7W9PG ]W:]QH\e ՞$Uc]-b{|@w)]4W=Joٯph y_y̺%B xx<."NW L?_t&ZahJ_| N+Nec' 9k엇m߬+P銚KDbIZ&[{sCgq*D䥾󺩬 p5q`xݮ52tcb]r-'2^& r9v"UWZX* yqF]vv'k4U>cC1 `A]/;NGvRw>vt_;]S9eԹlD'UYҕ3ˡ9MeNQXгHWF EZzyR[`9ui]I(':#|3$lHo5f*kĒ`e*c'DUd) H DS6.v]A 2֗3cȤcX#ơ*oWZW ^at9W-,JfrfӍ.fcCqYЩ7%5bJϭH;^.Q wƽOc[3G6kq$K@@Õ^HWdgNWY#nJA;_K1X˾+ŧtѐȂV+itE7+0i 3fLWG5.6{$n8aa tUu 25\X ĕSȆٔnGƯ]<@wQVtL f=<߫G0 UlPƕE%ex@;nGv9N;@XʬC,m.Y W }(rS~iv:BKPѫpeA~}NakREn>Nko"]-4+ɩW74Jdvh—טx3U_KvmZz~XkE9Gb= vR<C8K,t'EKRrVf7;1F— ɔC 3䪱L*0(IҚ*Jqh%mnӄE' Vtiz~Mڱ\tOIUɚ)NSZs4@"sv ]+ף44%"lQOzɗ.щW``݉vUϱvm/ڷ\*c 6tEãv'llL07i(z]$R¹-Y|/Uv6>E*ܚ uwb=+c~,}x\n-o.Eh%**N{9ղB{uN{ 7x#h) D.kz(PWh=N" , s]RNۇ+* I*&/y*]˹JlEH%PJr->G_dxi&UN'ǹhe1 ׼;y C$X %VkRxJz;ƖСymddVe)F_QgC(G{^**U}>3$:W٫~Wu乾hUX4 X7<;Z:{r-qg7zǿj:ĺ 6c.S4^}֓cA&f-% բK,n/t_WKki# V z7ثq*Mu4Πv3tSMS˱[7ݢ*zV, IDATIgKﹰ>蔚>>FUB՘cI55UÿqhTi ]I@Og/VԎyÁXK5%b~\E јkiEO^"鏥+x .hWՆVT:KYBl{P5Y ęvgxKJ%%AUk]qyRգ\=7arC˖5'>Y߽[ui;NL%TXkثb'/sVr]a1Wƕ.ZG/;Z=/!^ YPݑ^*yZ+WIO%Te[,|oh-cWWخO,c۞GFj9 V`qЕJ5&*g;iyeWGӐ$g\ z$j j]gV ЀVbOsIٱfCcrPT:˜ag5Hrm:O۩}]DQvUr'yS?`R ;+֬%n\)orjmz{nVz, Rq"Y L 4UbJqr- DEXc%rDZsY t5DgXc7a* uVmOLd5ӣ&RiF1'5iv}OR1'6,Ip3VG711ϠkJ7k^룯t*U5t,^WŪ8Fܫ@ ^BU1`/z )yj;P` =PTKmPNQ)LÞtmUh;ex#Y*N0L6nK2.EUxX{z˼` `~teaڨ=4|j|v^-DJ\Mi5}(Ury9wmT!Ceⶫ7#{*?,KAUw /KXECw+-1[n/q "._[˕4v ܓJJm(>.B­Qh!s(Qt5g.QBU8i;RB6 v}|f*&e)=үFFJ3K,HGCB [Y˩o~шpHJhjgfX8NoVߗD4"Ҍu Z%#OdO`C_s6*+Z J\"fV sUmafm? T5ʮ-mj*vkcLk|@3+}Siv^3pi:)b@9(G+V_Ħt+/2Vr։lJ h%ZfC 餗Jyi'P/vWҳSX.Nڙ}^-M)k+tdjMDS,}y=+]z씶,R]{dA.M+ǰ ʸowl?djė/پ\OG4oWKK]%aޜwwZ W83c. G\~3ٳtf㮚* |U-t{0=9We> ^e" ca!Xrn) Xr1 /1C𔅪G^yJ4_\5t߲΀AٸQ`mnL_ U:]dp?NQq+u$nVY8"S>\=ZG;)T8DbQ}ΓHWN%D빪=g7ȑf0'%9*j\lFf"]-︂F_lOuv~YW k +VzuޅH1 +SNBudWb_¬6#NO/Cv;9C4(7gj;5RRQ,hC 񽊌 bQ~U8mݕ\KKF;m1?x|7JKxωuU (&;- t;{L[6z\屚Gr#%onE4q77H:Q;]}Ve]]Xm F4թ ʫL<8)ױ?%vzNӘ&Iӣ1~+If.dNiEN!5Į,UzHeIZޜ}^ξ.7"̻4kuoW\U%YvX+=6 l&N 3R>ʢ^ :g7/$W^ Vbhj7 U88$CrX*N8ZY_ 7Ojĉؒ]N_ ӪfP`~|t~V5])/Nb$r!T+es mEj7JHMݘ=ɽ8dn;ΥZFUڍ1K2>(Ʈvㆺ>VȔmʮn!Ub."RC{K=.LjajW+庬8|84[JDt !f?d+g$%X̮&W Jxh?6VHytj]>߱l'j|眦|NgS:}# Kd㲱nm2 epm\9Ζ++ǺNlW7gT4@S]Λ^un3ѻn3ή .4bJW0ƿ~Wp([ᛵr;8mW BX,3lt[޶VEZ Z [-g{wUvTcW"Uu5W-~oj~,YVTp֫c\;߳9X2 )cnuRC%~)Ub׳.&#lNIGAY6焇j_ &T%H\6;݆NK:M_:,4$߿;j7zq*Y\4Wuz&F :Ӳ:U : G.Pۜ3"N.cis 78nߞm;\c]f 񃗾5E;V VÙjT0&X>[{eH+$Q8}4+_UYy,7ohb:c;UO,7CYZuV=U]?.omOj"q,.m]CwU+`WsaU>KRVJ,?c?EI6E[[4RsU X8j&0`T^.GlRY]VĻa' &S:>~ žsj-/$O20}%*V=YXc~D{X V/Q̓?i~u5 *z+5O?Қr浫xFJȺס^Lw"\jw,$jXڕ6nO_fWrJi-/x22N2s:τvS:Kmmd9K n^\!Y.u'mtE9ݗts,Z]&E@1usYxĮ&._/B٫v*;}1A )Vff=;>q%ͦV.KҽJWsR'S$_ũ"V^uۢ~OOEoeߍl vg[VlBbWVQPVU_ѩ+OOV}f2^V-_dNc5&ҵĭؕA=}a嬒[Հ< Щ\V\K=K~$f9}sS\A7*`c,rY`WGN6dyfث!'lք-N,a?%fLeNbgb搻®n,HC5k2s&I nWJfWM¶Nve孱֫j=nNժ9`z_r]$hý,%fBJ=Ab/^i(t:f9vjWƮ̃9|1 vZ,P'Zga+Z}ed*TH_XP`ɧi;;jL n q-IN3W V-۠]A4Hi%.}Ȑ;NVvR3/n"庩V2RIK:0zEXuzj*8s:cW+QiQ˧Bn1j\P+x`)c m,c GyV: \R6堔jƩQ 4""t]KZl ORbtXsFj2j!cUPM M_(W~?Q*i. /lnQTj5mj{P83ֱ~Q՘1[w?G~J۫jI_3b5sn9Qo_ʱ +>m@DQv,{wAr%:Noi;8JY@'z/W~~F%H&urv3lEj!u\î1s3 r|fR6vJ5J6ߎ6/˄ŷVMS0OXA==_<.uf?N$J7+IV9t9QwG28(3UMj%$`XDOJXUrUg1UXlT!hRǗC O6l#XPl%+JcWwKupNeNTtgL |}o5:Uo7xN;ZMR]B12Gc/9mgR_&tj[Q}SF`BfIʱy|؎ e('B@̊siДje8iSAڃ]r3X’U. Fe6SvjS2M4ms_mUmuR+`˃5h%^:.c+gςm*Te^eDje,;h]P5qi'OQt%oN1fIjBLӪqPGn[Ru:JbḆJg뎡Ʃϖg )؂;$ñlk'Qs\BR'oXfߒؕd ,u&@3uhrKe9ԙr-߇ele>,Qg9*$#rKg[:L:XvH"ɦ ARYC6#9hvTtP9Ѩ.o[Ԫјz Xs h;NRŢjgHNj "rXJ_u:g5\8z燂b<߫YoJ%DDRe:jvjNvDטquh<_b2W,ڟG\.i$]Zvu ):Xv5 f-A pһ]A5%@bv̓i]єN ">s>gת3q\ NK_; ]̱{[bJQO92u%űFWu`ᜓXxUK|[q6x,T]J;:ڕ, ,Gt6p4Yho5hpJ_CnWUξO6)VOV$֥]ݒRW ЮJ@zqq6| *J`-Wɛx[dcE(sKMG}wԑf9XC\j_]PB~q:ؕ˿h&ϨJoVX*C_ΤJ9MU8-ep[(})K}kV{y!r:unKt2Шڜ5 $-0yoA>jWlnVvuن9!U3b[a%1C KVAXJlW٨cMPTRkn4p2ֺlCYZ9Zy:j$ٕHՍLXgLR&',[P^Ŷ,k2WSP% qJ:.B[2VYJV\4vWm{WN.JVsf? +HrAM_Xc=fLUfJ.) ܭWhKKNSe4Fafn{sn XYtì,aͽ-1B`^UD CӥQjB +e4*ux|rZ<5]Yic.#4WYILl'6s~ nj[X«r*î.K@*,EuZc N%bv,!ql$_汔&vc>Z<akWy.,T-P㡝`g;yۢYu J[o9e BMv üUAE_[fg N*C?$&qI@! 孩P`-WZ:'cMwvuL\}&Ӓ΂rTf{r 3g֊hb籰+@;XmYjV{6]}*֫Nmz`ΓAIu^eWUX&M2z+$5Ɍqص0}] X5ؕN Cf A$Ǜ ] Lŏ rؕa˻ -?1Fq'L] ^Q %r.oWX`fWǻ@y^l[(r6IBR!–we%Pv*KJ:qTUlG7r4m/O>bw r㧸/'QrΖmssdrND^iZYS?]Btk8r.!*8VXauł=^bKئmv0mQӮT} zsŰ+uU%ul+#ueE RepmLƧ6'?4L^V4XL2_?V"vLzPi8I9]rs;Z&=R.PWlgo* 2Xe@i F$B㞮c6GYo$B)1($CQ˼]Bdk^-C@ە0]|fex='~ ʱRJ΢9uVuy<8hwu/c X9ڕ}%`ֳбr.V{ WBij:Ofי?GcŻ'ThF'O1/ Wp 9F*[s#u]%Ɛ>Ǡ˵ +x6RfE.Oevj@MtuwlP_y|KO|VNg"N y#u,Kx^gCNVvk(5)*/p]JX˧CE;"8yEu]I\jNϨ6:gj[7;[J1cEeʲ 9*otqj `u up.Tn1b=s U]MWfG*M-¨xg{KfWEMU6ј=1 tu6zy5;]gO]$*j,ۈVq։0ZYtzM5%^C˒W;}-|t,CK{gu~C(njq3u*X F0.&2P紗5xPΥY&+\Z_ K@"ֽ@oV kxJUԯiET+/y~ d IGmH8~vY--ɉgZ6ԡY@vڎ9<Ǯ>ϟ4^/]E8x72^yd]挓q6 Δ<^hxUoٿsC-o9FOl9 v5 i?U3;rv^ӛQyv3V^2Z>9XP<^ VW_ڔĨ$C=&%51uyTM_eMSMmgSu>e602;/iǻfcWVm̛ZݻNcۇ'{> =ErecgZuFȽ0֮(K ye3`N!Uı\nMK>`fgA͡&lc'5ÓMpgc?ƶuCO@zkOqQ0 9Y&;Kea)4]av3Ĝ^A +<@$GIP/jJWߡa<4`-+zߪv+~۟<}O߿1Rk7dg %C} )f7SI:qz M !0b*3TAb՘sovu\ij[A˺TܪFݙn$υiO1D;ϑ*+]L+]MN\0|@*@Iݧ,wevLJ^E]69FQ>6όLFwuL2S^@AM¹yv3h v`#w@ fv2V1'ݧ'2pXJcE%F+;~>.`̖5CcWHpUf5Jd5tH zf0 `fbĊt+\+=] XepWe99WAx֩Ǯ3jOQzkspm8]u'CH=?aGcM]RG4+%[_xis ABtbݚ2< X:?9 4`LpjL땥]৸gmp 17^t>|_%x?DC Dl2Bz$.kJL_* r8P^(NV+չ͸Uc)4 ¨ ei;%\c X*OT_ w aP5м3>`=H0߉ӝ_E*>`=.EV߁3^`$ƱP+뉁ICQ't(ͮOSTXE%n*c X:]!a t0-(W +ey`@Ӯn gd,W @tP)!mY4Fַ X]wf9rrIDAT޲Ol 㙁p[f{QpfOp|1b'`h$I0+wi{]j@Z>7A~_/ˇ!շN: XHU}d5ʔTD"oV\>k~wf,超xۇʠVvxQ·x"cjk= ޝCpLYxUl(H^]c Xەƨ0Z:>|'N0GP_S*Ii824lXYPSlHuQjn@ߴ{xkoE uh ]t٦<@v8VR>s˿ְ8Fai%Ujy2;zwL.ry#%6hw=+N_&Vt ]M/H+a͘э=iuv`Ն||i@ !)VyV]PDzғ8}9@/P(G#A* *ZkbT^7 @2Y@jk' ]0@J+Ȋ2X$9`|ꓭ"L ^E1b5նhرMFU$H_vf<:`{ "S]ۜF .Oj«Em`|Fj`m N:<@0 FQ?̾460@&~%ó{(U[<G@C%w Kăa2Dp `Mϯ/w5>5U0 `eWa_@\<ܓc XkV#q1( ~rjaj%23X:X>^#F6yҒY^M+F:]1>x֞de9J4d`@WaDuoƘv`=*! 6rЬN}R%"xWJ5£`;@<:#`C@2T&+c>l a~w}U.HV8#}5x?®F&X9Uњ5p@]PDcU`,4f]N,@W$X;VF5>LsD/}2I'X ZFЧc`WO$^0x3C 6U] X9(!T2*ȟ`m-C!@nZ;/+!su]`U;vUoYd*n; =e51rYBb1i@JVvg#,xlWS-* }G(3ŋ ] XVA5dܶ/lO(v`=α*hp]x<$9 HHF|fkqs8=w:0 }Vw9}kN9ϩ̺'<TAñ*>kdEx!}`IWUnN3C@!H7VVbMgYr ;Co֮N4rvǮ&ߗJ?8oc Ů%Bw@*Q+ڇ@!xl|h|mH$zWUGlWLu `Cz[V&V^s,qzQ5u Ҷ*/B^`Uy~ 5Bl!cOc7e _q޹?U]ŋ4#3&+P|3,H ,J ++lᘓW.OƱ ʽo@WsTgX`ԣ7ls"$7QP!<Hs!1BWJŞ՛ XLkQ:+u"e}삋Ѯ]e=GH*O⢺W`R[c %u"n{) E_]U|(JΣoɱhWcsY\S#O^+/4 ᧸W C}kd*Z<;僧>/Ʊ `M7ЮT3ߟ9>]},2-n*d(s>~ {]!sG^?oGZU~>K_ζg6Rް+x`M,ܨ\~Os^]UMr7NuP\>nSP7Ue˜UDtd2n ~g@*,)`]eHգL rd&D3|6sh*HA>=]_P9+]Ad&7ٟX/t &X.p /TBiE]oi;v2:wᑱCHQuQj,8]IiL/xi[P!vU]>χ({*6rEn "+9K (xO4W)yZ XJqC=y;HQ,㴛d #9]yUj?az˞dw$bKX柏*w^Lf/C{xmp*UBR)OS;==ߩbbSuo4B,>jﵖ64Qaڀl+dc7lno[M+{#'$AjXxkk2VI,> karKuP+ 2Aj˘<jŗc-Lijn,oN2΍TUT`doM9,5+Ws VzHx YO%L =﫯U8*s o7xǘZTZ2D Pf&<\};lDIW6J9d n]_xc]1󫘷ֽjֽc ")p#މ,@C޶8+\_Ut5PNSq k*VٻEW XP] E֬&u|XPx%X89srQun/]Jߌ/Ln Q2>oIe[_qv3w5*t^ڹW5jU= ZY2o1{tcN{yL.C˧JNP+ ȣ.W#fAOUc UM2Kī†.DvئǷsJ BefUJtZ 4tV/sЍ_nm.scyTTg>okq~ʖMF#X@p}ή潺;v7jdѐUfUj9w'X]"*CgK}>2>m5sݔsϖLOx܍fxj: \riWVb j+wcv>A)F:J~!@DVӶXVvUM>ۯ;s3z!nё*=^ J5<^^e|=Sc vYn'DZ;]s nQY*v2^|<@ *0DP5r" nC%÷0re"XDj8 >?[G#ÌE\k6.}|Bmaȸ%Fzd[_7{h2$R ew\宆 Ã=cNe}NlL"qC9An= 7 {-!X(^^5JTֱ4LOFnx̰dFԉ_e~Ջ;{={r0L")0>'ck뜱CaV5gpͅ<';=xU]d xJq4s$%Fz-{[]Ge>;^W/.8_Gʚd<<$ىc1>[1-KГS߭cgE 3۳>vnqң,B{^u53[yR6[5r>qC~r-Lx|zY)˟.%fMO!K\gp?ܮl[;ǜE/w'̂#9uְɓEZf`Ÿ?Z4B"|ndOîv㾹}y;Ma<@([3 r8\F*hÀ[)x;>#ȀbFC$\㉳^}8kW1 7>9joDŽu#oo|1#Yno:>i[R!ˆwcL-&[k샕]]>A"[XyF.B}9wP}9S.R"XiqO^8B_+piT \[ f?uoWN&XVR̳iH1d6CJ+h]=v VaCź2 9)hVScFs8xUܕ쭄`yCd,oViVZQ!eЬX|*`WN{{Xa'/:UofNh!X\XAo8{:%Aq/uO]Gж{'U6g/j`zi[n%gcpdZQT]>!Ɂ?*u?坟ZYy CK-o. x>DkHYl2I'7Wu,P%@m<CQn^f]n-ce)gck5kk+:12CAvNN#d u8a0̎b kW*;:6?'`q3$[֥OK˸bFN1f ǂ;G}דnAL?o1ᴥ64X*s`A xXS6eV%iL 0*J5j^ֳW}6{s̾Ex2Gu#3xc1*s2ZE*jI*~.l9s,g*p0f-{B9꯽X#Nx!W)Z5ZÂTVsueklƱw熙P_G6 OPk~,=5_+q,yH*TuN䨚oZ'N{F3Z6ji\at-Ʊ c4Q Ӆx`nXxI!l93y!ZJ \B#pP!vOOyc#fY^r,e寎+.?\ K.O׊p1$OF2jj]YQ`1D!Xu}Wٜ=4o:eoN}eMQ;VO U^& L(sCLR5yVÝE sb6IENDB`elk-7.2.42/examples/GW/HEG/PaxHeaders.21776/plot2d.general0000644000000000000000000000013214061636520017430 xustar0030 mtime=1623670096.460101058 30 atime=1623670096.459101059 30 ctime=1623670096.460101058 elk-7.2.42/examples/GW/HEG/plot2d.general0000644002504400250440000000027214061636520021466 0ustar00dewhurstdewhurst00000000000000file = GWBAND.OUT grid = 800 x 50 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 2-vector, scalar type = float, float end elk-7.2.42/examples/GW/HEG/PaxHeaders.21776/plot2d.net0000644000000000000000000000013214061636520016601 xustar0030 mtime=1623670096.461101057 30 atime=1623670096.461101057 30 ctime=1623670096.461101057 elk-7.2.42/examples/GW/HEG/plot2d.net0000644002504400250440000001457214061636520020647 0ustar00dewhurstdewhurst00000000000000// // time: Fri Apr 27 18:31:27 2018 // // version: 3.2.0 (format), 4.4.4 (DX) // // // MODULE main // workspace: width = 462, height = 562 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 56, y = 47, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "plot2d.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node RubberSheet[1]: x = 276, y = 45, inputs = 4, label = RubberSheet // main_RubberSheet_1_out_1 = RubberSheet( main_Import_1_out_1, main_RubberSheet_1_in_2, main_RubberSheet_1_in_3, main_RubberSheet_1_in_4 ) [instance: 1, cache: 1]; // // node Colormap[1]: x = 388, y = 153, inputs = 19, label = Colormap // input[1]: defaulting = 0, visible = 0, type = 16777224, value = { [0.091397849 0.0] [0.18010753 0.16589862] } // input[2]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[3]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.0] [0.077956989 1.0] } // input[4]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[5]: defaulting = 0, visible = 0, type = 32, value = "Colormap_1" // input[7]: defaulting = 1, visible = 0, type = 5, value = 0.037809622 // input[8]: defaulting = 1, visible = 0, type = 5, value = 1896.2094 // input[9]: defaulting = 1, visible = 0, type = 1, value = 20 // input[12]: defaulting = 0, visible = 0, type = 16777221, value = { 0.037809622 1896.2094 } // input[17]: defaulting = 0, visible = 0, type = 5, value = 0.037809622 // input[18]: defaulting = 0, visible = 0, type = 5, value = 1896.2094 // window: position = (0.1088,0.0511), size = 0.8838x0.5656 // main_Colormap_1_out_1[cache: 2], main_Colormap_1_out_2[cache: 2] = Colormap( main_Colormap_1_in_1, main_Colormap_1_in_2, main_Colormap_1_in_3, main_Colormap_1_in_4, main_Colormap_1_in_5, main_RubberSheet_1_out_1, main_Colormap_1_in_7, main_Colormap_1_in_8, main_Colormap_1_in_9, main_Colormap_1_in_10, main_Colormap_1_in_11, main_Colormap_1_in_12, main_Colormap_1_in_13, main_Colormap_1_in_14, main_Colormap_1_in_15, main_Colormap_1_in_16, main_Colormap_1_in_17, main_Colormap_1_in_18, main_Colormap_1_in_19 ) [instance: 1, cache: 1]; // // node Color[3]: x = 142, y = 190, inputs = 5, label = Color // main_Color_3_out_1 = Color( main_RubberSheet_1_out_1, main_Colormap_1_out_1, main_Color_3_in_3, main_Color_3_in_4, main_Color_3_in_5 ) [instance: 3, cache: 1]; // // node Shade[1]: x = 320, y = 256, inputs = 8, label = Shade // input[2]: defaulting = 0, visible = 1, type = 3, value = 0 // main_Shade_1_out_1 = Shade( main_Color_3_out_1, main_Shade_1_in_2, main_Shade_1_in_3, main_Shade_1_in_4, main_Shade_1_in_5, main_Shade_1_in_6, main_Shade_1_in_7, main_Shade_1_in_8 ) [instance: 1, cache: 1]; // // node AutoCamera[1]: x = 356, y = 371, inputs = 9, label = AutoCamera // input[3]: defaulting = 0, visible = 0, type = 5, value = 1.0 // input[4]: defaulting = 0, visible = 0, type = 1, value = 200 // input[5]: defaulting = 0, visible = 0, type = 5, value = 3.8 // main_AutoCamera_1_out_1 = AutoCamera( main_Shade_1_out_1, main_AutoCamera_1_in_2, main_AutoCamera_1_in_3, main_AutoCamera_1_in_4, main_AutoCamera_1_in_5, main_AutoCamera_1_in_6, main_AutoCamera_1_in_7, main_AutoCamera_1_in_8, main_AutoCamera_1_in_9 ) [instance: 1, cache: 1]; // // node Render[1]: x = 217, y = 445, inputs = 3, label = Render // main_Render_1_out_1 = Render( main_Shade_1_out_1, main_AutoCamera_1_out_1, main_Render_1_in_3 ) [instance: 1, cache: 1]; // // node Display[1]: x = 373, y = 500, inputs = 8, label = Display // depth: value = 24 // window: position = (0.0063,0.0000), size = 0.1338x0.9156 // main_Display_1_out_1[cache: 2] = Display( main_Render_1_out_1, main_Display_1_in_2, main_Display_1_in_3, main_Display_1_in_4, main_Display_1_in_5, main_Display_1_in_6, main_Display_1_in_7, main_Display_1_in_8 ) [instance: 1, cache: 1]; // network: end of macro body } main_Import_1_in_1 = "plot2d.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_RubberSheet_1_in_2 = NULL; main_RubberSheet_1_in_3 = NULL; main_RubberSheet_1_in_4 = NULL; main_RubberSheet_1_out_1 = NULL; main_Colormap_1_in_1 = { [0.091397849 0.0] [0.18010753 0.16589862] }; main_Colormap_1_in_2 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_1_in_3 = { [0.0 0.0] [0.077956989 1.0] }; main_Colormap_1_in_4 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_1_in_5 = "Colormap_1"; main_Colormap_1_in_7 = NULL; main_Colormap_1_in_8 = NULL; main_Colormap_1_in_9 = NULL; main_Colormap_1_in_10 = NULL; main_Colormap_1_in_11 = NULL; main_Colormap_1_in_12 = { 0.037809622 1896.2094 }; main_Colormap_1_in_13 = NULL; main_Colormap_1_in_14 = NULL; main_Colormap_1_in_15 = NULL; main_Colormap_1_in_16 = NULL; main_Colormap_1_in_17 = 0.037809622; main_Colormap_1_in_18 = 1896.2094; main_Colormap_1_in_19 = NULL; main_Colormap_1_out_1 = NULL; main_Color_3_in_3 = NULL; main_Color_3_in_4 = NULL; main_Color_3_in_5 = NULL; main_Color_3_out_1 = NULL; main_Shade_1_in_2 = 0; main_Shade_1_in_3 = NULL; main_Shade_1_in_4 = NULL; main_Shade_1_in_5 = NULL; main_Shade_1_in_6 = NULL; main_Shade_1_in_7 = NULL; main_Shade_1_in_8 = NULL; main_Shade_1_out_1 = NULL; main_AutoCamera_1_in_2 = NULL; main_AutoCamera_1_in_3 = 1.0; main_AutoCamera_1_in_4 = 200; main_AutoCamera_1_in_5 = 3.8; main_AutoCamera_1_in_6 = NULL; main_AutoCamera_1_in_7 = NULL; main_AutoCamera_1_in_8 = NULL; main_AutoCamera_1_in_9 = NULL; main_AutoCamera_1_out_1 = NULL; main_Render_1_in_3 = NULL; main_Render_1_out_1 = NULL; main_Display_1_in_2 = NULL; main_Display_1_in_3 = "X24,,"; main_Display_1_in_4 = NULL; main_Display_1_in_5 = NULL; main_Display_1_in_6 = NULL; main_Display_1_in_7 = NULL; main_Display_1_in_8 = NULL; Executive("product version 4 4 4"); $sync main(); elk-7.2.42/examples/GW/PaxHeaders.21776/LiF0000644000000000000000000000013214061636520014657 xustar0030 mtime=1623670096.466101052 30 atime=1623670096.463101055 30 ctime=1623670096.466101052 elk-7.2.42/examples/GW/LiF/0000755002504400250440000000000014061636520016771 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/GW/LiF/PaxHeaders.21776/TSFGW.OUT0000644000000000000000000000013214061636520016217 xustar0030 mtime=1623670096.465101053 30 atime=1623670096.464101054 30 ctime=1623670096.465101053 elk-7.2.42/examples/GW/LiF/TSFGW.OUT0000644002504400250440000007164014061636520020264 0ustar00dewhurstdewhurst00000000000000 -0.8000000000 0.5906911149 -0.7983750000 0.5880266918 -0.7967500000 0.6193611392 -0.7951250000 0.5834818331 -0.7935000000 0.5811520267 -0.7918750000 0.5803867603 -0.7902500000 0.5802233591 -0.7886250000 0.5806138160 -0.7870000000 0.5825534987 -0.7853750000 0.5913061310 -0.7837500000 0.5889172332 -0.7821250000 0.5920163276 -0.7805000000 0.6006279506 -0.7788750000 0.6103558029 -0.7772500000 0.5990402281 -0.7756250000 0.5975721164 -0.7740000000 0.6124301015 -0.7723750000 0.6329314205 -0.7707500000 0.6066111755 -0.7691250000 0.6084249992 -0.7675000000 0.6125810523 -0.7658750000 0.6177669896 -0.7642500000 0.6240607623 -0.7626250000 0.6318472441 -0.7610000000 0.6420719378 -0.7593750000 0.6558468608 -0.7577500000 0.6710758844 -0.7561250000 0.6900624951 -0.7545000000 0.7146413561 -0.7528750000 0.7461524742 -0.7512500000 0.7859855507 -0.7496250000 0.8357451544 -0.7480000000 0.8967145822 -0.7463750000 0.9689144841 -0.7447500000 1.049116666 -0.7431250000 1.128426569 -0.7415000000 1.191647052 -0.7398750000 1.221922828 -0.7382500000 1.210959625 -0.7366250000 1.165658944 -0.7350000000 1.101948627 -0.7333750000 1.034658571 -0.7317500000 0.9727569146 -0.7301250000 0.9200467725 -0.7285000000 0.8777508589 -0.7268750000 0.8452131199 -0.7252500000 0.8216042938 -0.7236250000 0.8068962301 -0.7220000000 0.8050183918 -0.7203750000 0.8156078851 -0.7187500000 0.8533691642 -0.7171250000 1.006385080 -0.7155000000 1.830858403 -0.7138750000 1.535344907 -0.7122500000 0.9966819429 -0.7106250000 0.9379624351 -0.7090000000 0.9695280440 -0.7073750000 1.048011070 -0.7057500000 1.149858031 -0.7041250000 1.236430512 -0.7025000000 1.261545290 -0.7008750000 1.225518247 -0.6992500000 1.182158199 -0.6976250000 1.173667645 -0.6960000000 1.209982937 -0.6943750000 1.266814480 -0.6927500000 1.301616438 -0.6911250000 1.324637582 -0.6895000000 1.373633725 -0.6878750000 1.447686947 -0.6862500000 1.506496056 -0.6846250000 1.503743176 -0.6830000000 1.445651229 -0.6813750000 1.387797927 -0.6797500000 1.408594882 -0.6781250000 1.422160413 -0.6765000000 1.280516572 -0.6748750000 1.298336072 -0.6732500000 1.957893336 -0.6716250000 1.167352290 -0.6700000000 0.8799174137 -0.6683750000 0.7905911640 -0.6667500000 0.7544739553 -0.6651250000 0.7485562218 -0.6635000000 0.7785298052 -0.6618750000 0.8874809951 -0.6602500000 1.240533116 -0.6586250000 2.063353423 -0.6570000000 2.025498329 -0.6553750000 1.612369335 -0.6537500000 0.9133923350 -0.6521250000 0.7083945110 -0.6505000000 0.6324511940 -0.6488750000 0.5905657194 -0.6472500000 0.5559684547 -0.6456250000 0.5230971590 -0.6440000000 0.4956202648 -0.6423750000 0.4747201875 -0.6407500000 0.4576922687 -0.6391250000 0.4437991940 -0.6375000000 0.4324397318 -0.6358750000 0.4255833922 -0.6342500000 0.4165596973 -0.6326250000 0.4067926952 -0.6310000000 0.3976045835 -0.6293750000 0.3922379738 -0.6277500000 0.3879671515 -0.6261250000 0.3848364771 -0.6245000000 0.3841139902 -0.6228750000 0.3825790042 -0.6212500000 0.3789717494 -0.6196250000 0.3781089698 -0.6180000000 0.3790904230 -0.6163750000 0.3799482257 -0.6147500000 0.3825503515 -0.6131250000 0.3869088111 -0.6115000000 0.3942089321 -0.6098750000 0.4050330025 -0.6082500000 0.4193739693 -0.6066250000 0.4370692848 -0.6050000000 0.4610445206 -0.6033750000 0.4911267690 -0.6017500000 0.5272706620 -0.6001250000 0.5666616780 -0.5985000000 0.6041248351 -0.5968750000 0.6298280129 -0.5952500000 0.6367231526 -0.5936250000 0.6247388084 -0.5920000000 0.6057634911 -0.5903750000 0.5971471724 -0.5887500000 0.6350036306 -0.5871250000 0.8592506649 -0.5855000000 0.8625803506 -0.5838750000 0.5925272202 -0.5822500000 0.4906520776 -0.5806250000 0.4389955941 -0.5790000000 0.4106797339 -0.5773750000 0.3939805346 -0.5757500000 0.3827805715 -0.5741250000 0.3703203994 -0.5725000000 0.3574739966 -0.5708750000 0.3446764355 -0.5692500000 0.3305510320 -0.5676250000 0.3090051911 -0.5660000000 0.2826657787 -0.5643750000 0.2613167551 -0.5627500000 0.2500419578 -0.5611250000 0.2519345297 -0.5595000000 0.2735720826 -0.5578750000 0.3127872782 -0.5562500000 0.3750384605 -0.5546250000 0.3846501939 -0.5530000000 0.2341048518 -0.5513750000 0.1963799469 -0.5497500000 0.1826087994 -0.5481250000 0.1771815812 -0.5465000000 0.1765378666 -0.5448750000 0.1804838496 -0.5432500000 0.1930683173 -0.5416250000 0.2265039942 -0.5400000000 0.3241205712 -0.5383750000 0.4154228628 -0.5367500000 0.2657272581 -0.5351250000 0.2069793642 -0.5335000000 0.1804236609 -0.5318750000 0.1640257127 -0.5302500000 0.1594154735 -0.5286250000 0.1570400822 -0.5270000000 0.1558923005 -0.5253750000 0.1555333390 -0.5237500000 0.1557170003 -0.5221250000 0.1562656845 -0.5205000000 0.1570278626 -0.5188750000 0.1579273166 -0.5172500000 0.1589754360 -0.5156250000 0.1602060771 -0.5140000000 0.1616359412 -0.5123750000 0.1632607368 -0.5107500000 0.1650674590 -0.5091250000 0.1670428683 -0.5075000000 0.1691765975 -0.5058750000 0.1714617518 -0.5042500000 0.1738944604 -0.5026250000 0.1764681645 -0.5010000000 0.1791742721 -0.4993750000 0.1820136299 -0.4977500000 0.1849934190 -0.4961250000 0.1881150594 -0.4945000000 0.1913817956 -0.4928750000 0.1947939164 -0.4912500000 0.1983522120 -0.4896250000 0.2020588339 -0.4880000000 0.2059168020 -0.4863750000 0.2099297470 -0.4847500000 0.2141018515 -0.4831250000 0.2184379951 -0.4815000000 0.2229438119 -0.4798750000 0.2276254718 -0.4782500000 0.2324890657 -0.4766250000 0.2375426628 -0.4750000000 0.2427939590 -0.4733750000 0.2482516433 -0.4717500000 0.2539249958 -0.4701250000 0.2598246016 -0.4685000000 0.2659617750 -0.4668750000 0.2723480926 -0.4652500000 0.2789958701 -0.4636250000 0.2859202615 -0.4620000000 0.2931364272 -0.4603750000 0.3006606801 -0.4587500000 0.3085106136 -0.4571250000 0.3167064337 -0.4555000000 0.3252682279 -0.4538750000 0.3342189675 -0.4522500000 0.3435833353 -0.4506250000 0.3533882463 -0.4490000000 0.3636630673 -0.4473750000 0.3744399353 -0.4457500000 0.3857538974 -0.4441250000 0.3976431786 -0.4425000000 0.4101498960 -0.4408750000 0.4233206209 -0.4392500000 0.4372075647 -0.4376250000 0.4518681464 -0.4360000000 0.4673562686 -0.4343750000 0.4837521870 -0.4327500000 0.5011311528 -0.4311250000 0.5195802440 -0.4295000000 0.5391977244 -0.4278750000 0.5600944906 -0.4262500000 0.5823962716 -0.4246250000 0.6062462848 -0.4230000000 0.6318081416 -0.4213750000 0.6592695077 -0.4197500000 0.6888493245 -0.4181250000 0.7208025397 -0.4165000000 0.7554233518 -0.4148750000 0.7930644408 -0.4132500000 0.8341440694 -0.4116250000 0.8791648496 -0.4100000000 0.9287382124 -0.4083750000 0.9836171757 -0.4067500000 1.044741103 -0.4051250000 1.113300043 -0.4035000000 1.190828801 -0.4018750000 1.279347547 -0.4002500000 1.381578173 -0.3986250000 1.501287660 -0.3970000000 1.643853050 -0.3953750000 1.817229167 -0.3937500000 2.033722797 -0.3921250000 2.312979518 -0.3905000000 2.688191991 -0.3888750000 3.217640391 -0.3872500000 4.004645901 -0.3856250000 5.213695882 -0.3840000000 6.955842811 -0.3823750000 8.641489562 -0.3807500000 8.776115800 -0.3791250000 7.696186591 -0.3775000000 6.886472984 -0.3758750000 6.739500476 -0.3742500000 7.186303351 -0.3726250000 8.206157814 -0.3710000000 9.923060176 -0.3693750000 12.65653796 -0.3677500000 17.04034950 -0.3661250000 24.20443855 -0.3645000000 35.59752347 -0.3628750000 50.13234286 -0.3612500000 57.82723457 -0.3596250000 51.64318364 -0.3580000000 40.92574411 -0.3563750000 32.86385497 -0.3547500000 29.19520637 -0.3531250000 27.35889246 -0.3515000000 23.88372271 -0.3498750000 20.25637273 -0.3482500000 18.71754351 -0.3466250000 19.62192690 -0.3450000000 22.22542144 -0.3433750000 23.81848075 -0.3417500000 23.01063008 -0.3401250000 22.93192910 -0.3385000000 25.85783448 -0.3368750000 31.39891067 -0.3352500000 34.87696167 -0.3336250000 32.06562656 -0.3320000000 27.85786306 -0.3303750000 26.65194643 -0.3287500000 28.43585334 -0.3271250000 30.34677832 -0.3255000000 30.63390614 -0.3238750000 32.47304582 -0.3222500000 38.74003687 -0.3206250000 50.25341129 -0.3190000000 64.83142023 -0.3173750000 78.32843921 -0.3157500000 85.25940228 -0.3141250000 78.44294466 -0.3125000000 62.29425209 -0.3108750000 48.94595501 -0.3092500000 40.58043486 -0.3076250000 35.62394810 -0.3060000000 32.90891830 -0.3043750000 31.73950095 -0.3027500000 33.21777491 -0.3011250000 36.79092146 -0.2995000000 40.15974709 -0.2978750000 45.39334223 -0.2962500000 56.62180214 -0.2946250000 71.62620918 -0.2930000000 76.87668851 -0.2913750000 66.81539294 -0.2897500000 52.51606016 -0.2881250000 40.24151453 -0.2865000000 32.42887616 -0.2848750000 29.15500616 -0.2832500000 29.84156307 -0.2816250000 34.28045137 -0.2800000000 41.90093953 -0.2783750000 51.93031143 -0.2767500000 63.15475407 -0.2751250000 67.15012463 -0.2735000000 60.33955537 -0.2718750000 49.34026554 -0.2702500000 37.89761750 -0.2686250000 28.42336469 -0.2670000000 21.44481401 -0.2653750000 16.28523563 -0.2637500000 12.47977584 -0.2621250000 9.811294720 -0.2605000000 7.949662769 -0.2588750000 6.612922890 -0.2572500000 5.618928905 -0.2556250000 4.857629925 -0.2540000000 4.258167248 -0.2523750000 3.775811259 -0.2507500000 3.380495154 -0.2491250000 3.051538003 -0.2475000000 2.774066129 -0.2458750000 2.537290045 -0.2442500000 2.333256339 -0.2426250000 2.155700765 -0.2410000000 2.000134183 -0.2393750000 1.862861384 -0.2377500000 1.740917231 -0.2361250000 1.631958519 -0.2345000000 1.534111915 -0.2328750000 1.445840004 -0.2312500000 1.365870207 -0.2296250000 1.293138439 -0.2280000000 1.226760168 -0.2263750000 1.165991568 -0.2247500000 1.110145218 -0.2231250000 1.058753840 -0.2215000000 1.011265255 -0.2198750000 0.9673001002 -0.2182500000 0.9265035235 -0.2166250000 0.8885781559 -0.2150000000 0.8532035648 -0.2133750000 0.8201967944 -0.2117500000 0.7893099901 -0.2101250000 0.7603530037 -0.2085000000 0.7331224470 -0.2068750000 0.7075023740 -0.2052500000 0.6833512349 -0.2036250000 0.6605662987 -0.2020000000 0.6390193292 -0.2003750000 0.6186571316 -0.1987500000 0.5993931821 -0.1971250000 0.5811446950 -0.1955000000 0.5638338457 -0.1938750000 0.5474158044 -0.1922500000 0.5318299653 -0.1906250000 0.5170022942 -0.1890000000 0.5028768233 -0.1873750000 0.4894245733 -0.1857500000 0.4766153318 -0.1841250000 0.4643705903 -0.1825000000 0.4526774640 -0.1808750000 0.4414883980 -0.1792500000 0.4306751842 -0.1776250000 0.4192889027 -0.1760000000 0.4108002268 -0.1743750000 0.4013874714 -0.1727500000 0.3923366047 -0.1711250000 0.3836318530 -0.1695000000 0.3752398356 -0.1678750000 0.3675723998 -0.1662500000 0.3599187903 -0.1646250000 0.3524847366 -0.1630000000 0.3453197955 -0.1613750000 0.3383488853 -0.1597500000 0.3316225286 -0.1581250000 0.3253419917 -0.1565000000 0.3192179457 -0.1548750000 0.3132572142 -0.1532500000 0.3074884796 -0.1516250000 0.3019281649 -0.1500000000 0.2965684487 -0.1483750000 0.2913943557 -0.1467500000 0.2863972328 -0.1451250000 0.2815703158 -0.1435000000 0.2769066347 -0.1418750000 0.2723471512 -0.1402500000 0.2679760153 -0.1386250000 0.2637385453 -0.1370000000 0.2596215846 -0.1353750000 0.2556335082 -0.1337500000 0.2517699180 -0.1321250000 0.2480252646 -0.1305000000 0.2443989199 -0.1288750000 0.2408852580 -0.1272500000 0.2374820946 -0.1256250000 0.2341887395 -0.1240000000 0.2309975291 -0.1223750000 0.2278943268 -0.1207500000 0.2248721770 -0.1191250000 0.2219175739 -0.1175000000 0.2190420026 -0.1158750000 0.2162268376 -0.1142500000 0.2134911609 -0.1126250000 0.2108247830 -0.1110000000 0.2082044204 -0.1093750000 0.2057687156 -0.1077500000 0.2033767788 -0.1061250000 0.2010514934 -0.1045000000 0.1988019788 -0.1028750000 0.1966520914 -0.1012500000 0.1945278076 -0.9962500000E-01 0.1923289123 -0.9800000000E-01 0.1901817685 -0.9637500000E-01 0.1880807133 -0.9475000000E-01 0.1862631403 -0.9312500000E-01 0.1843823591 -0.9150000000E-01 0.1824980273 -0.8987500000E-01 0.1806794086 -0.8825000000E-01 0.1789979653 -0.8662500000E-01 0.1772947004 -0.8500000000E-01 0.1756246098 -0.8337500000E-01 0.1739963775 -0.8175000000E-01 0.1723986750 -0.8012500000E-01 0.1708898656 -0.7850000000E-01 0.1694046598 -0.7687500000E-01 0.1679161109 -0.7525000000E-01 0.1664624049 -0.7362500000E-01 0.1650748016 -0.7200000000E-01 0.1637219805 -0.7037500000E-01 0.1623864266 -0.6875000000E-01 0.1611060850 -0.6712500000E-01 0.1598618337 -0.6550000000E-01 0.1586536269 -0.6387500000E-01 0.1574734692 -0.6225000000E-01 0.1563163505 -0.6062500000E-01 0.1551730967 -0.5900000000E-01 0.1540588506 -0.5737500000E-01 0.1529174662 -0.5575000000E-01 0.1518703565 -0.5412500000E-01 0.1508613061 -0.5250000000E-01 0.1499080428 -0.5087500000E-01 0.1490171903 -0.4925000000E-01 0.1480965820 -0.4762500000E-01 0.1469799321 -0.4600000000E-01 0.1461907528 -0.4437500000E-01 0.1452988585 -0.4275000000E-01 0.1443552895 -0.4112500000E-01 0.1436001853 -0.3950000000E-01 0.1428082898 -0.3787500000E-01 0.1420237125 -0.3625000000E-01 0.1412572787 -0.3462500000E-01 0.1405206143 -0.3300000000E-01 0.1397891521 -0.3137500000E-01 0.1390996221 -0.2975000000E-01 0.1383629640 -0.2812500000E-01 0.1377041942 -0.2650000000E-01 0.1370650271 -0.2487500000E-01 0.1364454347 -0.2325000000E-01 0.1358451482 -0.2162500000E-01 0.1352410335 -0.2000000000E-01 0.1346540891 -0.1837500000E-01 0.1340593370 -0.1675000000E-01 0.1335597302 -0.1512500000E-01 0.1331918089 -0.1350000000E-01 0.1334311568 -0.1187500000E-01 0.1320587933 -0.1025000000E-01 0.1314884112 -0.8625000000E-02 0.1310957421 -0.7000000000E-02 0.1306502134 -0.5375000000E-02 0.1302229798 -0.3750000000E-02 0.1297864385 -0.2125000000E-02 0.1293789818 -0.5000000000E-03 0.1289960733 0.1125000000E-02 0.1286398971 0.2750000000E-02 0.1282676628 0.4375000000E-02 0.1279011218 0.6000000000E-02 0.1275938797 0.7625000000E-02 0.1272886928 0.9250000000E-02 0.1270879750 0.1087500000E-01 0.1266846377 0.1250000000E-01 0.1264058361 0.1412500000E-01 0.1261359377 0.1575000000E-01 0.1258898838 0.1737500000E-01 0.1256641298 0.1900000000E-01 0.1254257001 0.2062500000E-01 0.1252363715 0.2225000000E-01 0.1250083208 0.2387500000E-01 0.1248237883 0.2550000000E-01 0.1246559301 0.2712500000E-01 0.1245010174 0.2875000000E-01 0.1243479301 0.3037500000E-01 0.1241900872 0.3200000000E-01 0.1240818128 0.3362500000E-01 0.1239430390 0.3525000000E-01 0.1238866002 0.3687500000E-01 0.1237938142 0.3850000000E-01 0.1237916117 0.4012500000E-01 0.1237903147 0.4175000000E-01 0.1236774821 0.4337500000E-01 0.1235443722 0.4500000000E-01 0.1235149128 0.4662500000E-01 0.1234985819 0.4825000000E-01 0.1234552111 0.4987500000E-01 0.1234741182 0.5150000000E-01 0.1235076620 0.5312500000E-01 0.1235382899 0.5475000000E-01 0.1235756230 0.5637500000E-01 0.1236213598 0.5800000000E-01 0.1236820420 0.5962500000E-01 0.1238094558 0.6125000000E-01 0.1238525339 0.6287500000E-01 0.1239640434 0.6450000000E-01 0.1240703082 0.6612500000E-01 0.1241947847 0.6775000000E-01 0.1243360686 0.6937500000E-01 0.1244833957 0.7100000000E-01 0.1246424306 0.7262500000E-01 0.1248039631 0.7425000000E-01 0.1249912443 0.7587500000E-01 0.1251975444 0.7750000000E-01 0.1254139020 0.7912500000E-01 0.1256536544 0.8075000000E-01 0.1258892275 0.8237500000E-01 0.1261383907 0.8400000000E-01 0.1264379449 0.8562500000E-01 0.1267770271 0.8725000000E-01 0.1271690386 0.8887500000E-01 0.1274042964 0.9050000000E-01 0.1276609002 0.9212500000E-01 0.1279832471 0.9375000000E-01 0.1282811971 0.9537500000E-01 0.1286363473 0.9700000000E-01 0.1290119491 0.9862500000E-01 0.1293960081 0.1002500000 0.1298169977 0.1018750000 0.1303366389 0.1035000000 0.1306635838 0.1051250000 0.1311078721 0.1067500000 0.1315674060 0.1083750000 0.1320445827 0.1100000000 0.1325314330 0.1116250000 0.1330463266 0.1132500000 0.1335862771 0.1148750000 0.1341478524 0.1165000000 0.1347330927 0.1181250000 0.1354711626 0.1197500000 0.1359316874 0.1213750000 0.1365523054 0.1230000000 0.1371983510 0.1246250000 0.1378607906 0.1262500000 0.1385519650 0.1278750000 0.1392612901 0.1295000000 0.1399883990 0.1311250000 0.1407337746 0.1327500000 0.1415001138 0.1343750000 0.1422958008 0.1360000000 0.1431154877 0.1376250000 0.1439664689 0.1392500000 0.1448461548 0.1408750000 0.1457835582 0.1425000000 0.1467350999 0.1441250000 0.1476165518 0.1457500000 0.1485878964 0.1473750000 0.1496035608 0.1490000000 0.1506561697 0.1506250000 0.1517868304 0.1522500000 0.1529463313 0.1538750000 0.1542171230 0.1555000000 0.1553837818 0.1571250000 0.1564877078 0.1587500000 0.1577123067 0.1603750000 0.1589877242 0.1620000000 0.1603045705 0.1636250000 0.1616574406 0.1652500000 0.1630494785 0.1668750000 0.1642749832 0.1685000000 0.1660032945 0.1701250000 0.1675742660 0.1717500000 0.1691914422 0.1733750000 0.1708624206 0.1750000000 0.1725898256 0.1766250000 0.1743838025 0.1782500000 0.1762361742 0.1798750000 0.1781366362 0.1815000000 0.1800870749 0.1831250000 0.1821127112 0.1847500000 0.1842198130 0.1863750000 0.1864154426 0.1880000000 0.1887105750 0.1896250000 0.1911211978 0.1912500000 0.1936354266 0.1928750000 0.1962676683 0.1945000000 0.1990015363 0.1961250000 0.2018529709 0.1977500000 0.2048298141 0.1993750000 0.2079413168 0.2010000000 0.2112051475 0.2026250000 0.2146362845 0.2042500000 0.2182643504 0.2058750000 0.2223541290 0.2075000000 0.2258708162 0.2091250000 0.2301096631 0.2107500000 0.2345953178 0.2123750000 0.2393501064 0.2140000000 0.2444075049 0.2156250000 0.2498085545 0.2172500000 0.2555996952 0.2188750000 0.2618271482 0.2205000000 0.2685266277 0.2221250000 0.2758898185 0.2237500000 0.2838787030 0.2253750000 0.2926785480 0.2270000000 0.3023701531 0.2286250000 0.3132524645 0.2302500000 0.3255252179 0.2318750000 0.3394739711 0.2335000000 0.3555467384 0.2351250000 0.3743960876 0.2367500000 0.3968516486 0.2383750000 0.4241099356 0.2400000000 0.4579839376 0.2416250000 0.5012188172 0.2432500000 0.5581652468 0.2448750000 0.6358649515 0.2465000000 0.7461344998 0.2481250000 0.9089207168 0.2497500000 1.156511961 0.2513750000 1.529931805 0.2530000000 2.015825718 0.2546250000 2.377833050 0.2562500000 2.269411027 0.2578750000 1.830329193 0.2595000000 1.419435135 0.2611250000 1.143021567 0.2627500000 0.9745740962 0.2643750000 0.8759433017 0.2660000000 0.8215155335 0.2676250000 0.7962856661 0.2692500000 0.7917598128 0.2708750000 0.8032766129 0.2725000000 0.8285007020 0.2741250000 0.8667128075 0.2757500000 0.9182960935 0.2773750000 0.9847781109 0.2790000000 1.068846416 0.2806250000 1.174653174 0.2822500000 1.308437275 0.2838750000 1.479416076 0.2855000000 1.701482641 0.2871250000 1.996105574 0.2887500000 2.397169539 0.2903750000 2.959892980 0.2920000000 3.778741274 0.2936250000 5.011707776 0.2952500000 6.918479616 0.2968750000 9.836925024 0.2985000000 13.73664699 0.3001250000 16.82144090 0.3017500000 16.08008451 0.3033750000 12.49388039 0.3050000000 9.113648570 0.3066250000 6.889018738 0.3082500000 5.628593995 0.3098750000 5.058429751 0.3115000000 5.044562143 0.3131250000 5.589903084 0.3147500000 6.772786456 0.3163750000 8.458210232 0.3180000000 9.616668714 0.3196250000 8.910168976 0.3212500000 7.030623042 0.3228750000 5.348032239 0.3245000000 4.226670414 0.3261250000 3.553220641 0.3277500000 3.185009236 0.3293750000 3.033456830 0.3310000000 3.059308243 0.3326250000 3.262058618 0.3342500000 3.679858954 0.3358750000 4.402064420 0.3375000000 5.593545991 0.3391250000 7.499828440 0.3407500000 10.24031997 0.3423750000 12.90199279 0.3440000000 13.10960358 0.3456250000 10.66980363 0.3472500000 7.965048879 0.3488750000 6.084413826 0.3505000000 4.958466313 0.3521250000 4.342904894 0.3537500000 4.071795329 0.3553750000 4.061129550 0.3570000000 4.286207766 0.3586250000 4.771540128 0.3602500000 5.596705357 0.3618750000 6.921616460 0.3635000000 9.032559681 0.3651250000 12.38234006 0.3667500000 17.38608426 0.3683750000 23.13296679 0.3700000000 25.45556319 0.3716250000 21.75047898 0.3732500000 16.05656151 0.3748750000 11.65711948 0.3765000000 8.857862760 0.3781250000 7.175365964 0.3797500000 6.207304500 0.3813750000 5.715862922 0.3830000000 5.578216403 0.3846250000 5.746181285 0.3862500000 6.227537220 0.3878750000 7.086839148 0.3895000000 8.463685840 0.3911250000 10.61491454 0.3927500000 13.99559909 0.3943750000 19.36939264 0.3960000000 27.74666532 0.3976250000 39.09531900 0.3992500000 48.12471215 0.4008750000 45.68107665 0.4025000000 34.56689371 0.4041250000 23.96495233 0.4057500000 16.67387835 0.4073750000 12.01352951 0.4090000000 9.008139019 0.4106250000 7.007367068 0.4122500000 5.628193433 0.4138750000 4.645464788 0.4155000000 3.924820424 0.4171250000 3.383353005 0.4187500000 2.968139737 0.4203750000 2.644342020 0.4220000000 2.388379957 0.4236250000 2.183894042 0.4252500000 2.019279228 0.4268750000 1.886156811 0.4285000000 1.778356974 0.4301250000 1.691279506 0.4317500000 1.621428616 0.4333750000 1.566355365 0.4350000000 1.524512296 0.4366250000 1.494529270 0.4382500000 1.474995544 0.4398750000 1.465228616 0.4415000000 1.465010922 0.4431250000 1.474322906 0.4447500000 1.493380868 0.4463750000 1.522635762 0.4480000000 1.562846239 0.4496250000 1.615162390 0.4512500000 1.680906135 0.4528750000 1.763309789 0.4545000000 1.864544626 0.4561250000 1.989208660 0.4577500000 2.143235625 0.4593750000 2.334970553 0.4610000000 2.576391165 0.4626250000 2.885153052 0.4642500000 3.287981352 0.4658750000 3.826644981 0.4675000000 4.568975065 0.4691250000 5.628299519 0.4707500000 7.196116381 0.4723750000 9.575855501 0.4740000000 13.10170366 0.4756250000 17.60796373 0.4772500000 22.00387188 0.4788750000 25.21275929 0.4805000000 26.04759895 0.4821250000 24.34537336 0.4837500000 20.18902898 0.4853750000 15.44592808 0.4870000000 11.99640403 0.4886250000 9.972890507 0.4902500000 8.985028018 0.4918750000 8.746110349 0.4935000000 9.137994561 0.4951250000 10.18852330 0.4967500000 12.07803969 0.4983750000 15.18692724 elk-7.2.42/examples/GW/LiF/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016037 xustar0030 mtime=1623670096.466101052 30 atime=1623670096.466101052 30 ctime=1623670096.466101052 elk-7.2.42/examples/GW/LiF/elk.in0000644002504400250440000000132114061636520020071 0ustar00dewhurstdewhurst00000000000000 ! GW band gap calculation of LiF. Plot the total spectral function TSFGW.OUT to ! find the indirect gap. tasks 0 600 610 ! G-vector cut-off of local contribution to RPA gmaxrf 3.0 ! temperature of system (determines the Matsubara frequency spacing) tempk 1500.0 nempty 8 wplot 800 100 0 : nwplot, ngrkf, nswplot -1.5 1.5 : wplot avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 4 4 4 elk-7.2.42/examples/PaxHeaders.21776/RDMFT0000644000000000000000000000013214061636520014544 xustar0030 mtime=1623670096.469101049 30 atime=1623670096.467101051 30 ctime=1623670096.469101049 elk-7.2.42/examples/RDMFT/0000755002504400250440000000000014061636520016656 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/RDMFT/PaxHeaders.21776/NiO0000644000000000000000000000013214061636520015231 xustar0030 mtime=1623670096.472101047 30 atime=1623670096.469101049 30 ctime=1623670096.472101047 elk-7.2.42/examples/RDMFT/NiO/0000755002504400250440000000000014061636520017343 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/RDMFT/NiO/PaxHeaders.21776/TDOS.OUT0000644000000000000000000000013214061636520016450 xustar0030 mtime=1623670096.470101049 30 atime=1623670096.470101049 30 ctime=1623670096.470101049 elk-7.2.42/examples/RDMFT/NiO/TDOS.OUT0000644002504400250440000004411214061636520020507 0ustar00dewhurstdewhurst00000000000000 -0.6000000000 0.000000000 -0.5976000000 0.000000000 -0.5952000000 0.000000000 -0.5928000000 0.000000000 -0.5904000000 0.000000000 -0.5880000000 0.000000000 -0.5856000000 0.000000000 -0.5832000000 0.000000000 -0.5808000000 0.000000000 -0.5784000000 0.000000000 -0.5760000000 0.000000000 -0.5736000000 0.000000000 -0.5712000000 0.000000000 -0.5688000000 0.000000000 -0.5664000000 0.000000000 -0.5640000000 0.000000000 -0.5616000000 0.000000000 -0.5592000000 0.000000000 -0.5568000000 0.000000000 -0.5544000000 0.000000000 -0.5520000000 0.000000000 -0.5496000000 0.000000000 -0.5472000000 0.000000000 -0.5448000000 0.000000000 -0.5424000000 0.000000000 -0.5400000000 0.000000000 -0.5376000000 0.000000000 -0.5352000000 0.000000000 -0.5328000000 0.000000000 -0.5304000000 0.000000000 -0.5280000000 0.000000000 -0.5256000000 0.000000000 -0.5232000000 0.000000000 -0.5208000000 0.000000000 -0.5184000000 0.000000000 -0.5160000000 0.000000000 -0.5136000000 0.000000000 -0.5112000000 0.000000000 -0.5088000000 0.000000000 -0.5064000000 0.000000000 -0.5040000000 0.000000000 -0.5016000000 0.000000000 -0.4992000000 0.000000000 -0.4968000000 0.000000000 -0.4944000000 0.000000000 -0.4920000000 0.000000000 -0.4896000000 0.000000000 -0.4872000000 0.000000000 -0.4848000000 0.000000000 -0.4824000000 0.000000000 -0.4800000000 0.000000000 -0.4776000000 0.000000000 -0.4752000000 0.000000000 -0.4728000000 0.000000000 -0.4704000000 0.000000000 -0.4680000000 0.000000000 -0.4656000000 0.000000000 -0.4632000000 0.000000000 -0.4608000000 0.000000000 -0.4584000000 0.000000000 -0.4560000000 0.000000000 -0.4536000000 0.000000000 -0.4512000000 0.000000000 -0.4488000000 0.000000000 -0.4464000000 0.000000000 -0.4440000000 0.000000000 -0.4416000000 0.000000000 -0.4392000000 0.000000000 -0.4368000000 0.000000000 -0.4344000000 0.000000000 -0.4320000000 0.000000000 -0.4296000000 0.000000000 -0.4272000000 0.000000000 -0.4248000000 0.000000000 -0.4224000000 0.000000000 -0.4200000000 0.000000000 -0.4176000000 0.000000000 -0.4152000000 0.000000000 -0.4128000000 0.000000000 -0.4104000000 0.000000000 -0.4080000000 0.000000000 -0.4056000000 0.000000000 -0.4032000000 0.000000000 -0.4008000000 0.000000000 -0.3984000000 0.000000000 -0.3960000000 0.000000000 -0.3936000000 0.000000000 -0.3912000000 0.000000000 -0.3888000000 0.000000000 -0.3864000000 0.000000000 -0.3840000000 0.000000000 -0.3816000000 0.000000000 -0.3792000000 0.000000000 -0.3768000000 0.000000000 -0.3744000000 0.000000000 -0.3720000000 0.000000000 -0.3696000000 0.000000000 -0.3672000000 0.000000000 -0.3648000000 0.000000000 -0.3624000000 0.000000000 -0.3600000000 0.000000000 -0.3576000000 0.000000000 -0.3552000000 0.000000000 -0.3528000000 0.000000000 -0.3504000000 0.000000000 -0.3480000000 0.000000000 -0.3456000000 0.000000000 -0.3432000000 0.000000000 -0.3408000000 0.000000000 -0.3384000000 0.000000000 -0.3360000000 0.000000000 -0.3336000000 0.000000000 -0.3312000000 0.000000000 -0.3288000000 0.000000000 -0.3264000000 0.000000000 -0.3240000000 0.000000000 -0.3216000000 0.000000000 -0.3192000000 0.000000000 -0.3168000000 0.000000000 -0.3144000000 0.000000000 -0.3120000000 0.000000000 -0.3096000000 0.000000000 -0.3072000000 0.5000000000E-02 -0.3048000000 0.3000000000E-01 -0.3024000000 0.9250000000E-01 -0.3000000000 0.2283333333 -0.2976000000 0.4933333333 -0.2952000000 1.117500000 -0.2928000000 2.766666667 -0.2904000000 4.701666667 -0.2880000000 7.144166667 -0.2856000000 10.30000000 -0.2832000000 13.95333333 -0.2808000000 17.38833333 -0.2784000000 21.02750000 -0.2760000000 25.13833333 -0.2736000000 30.23166667 -0.2712000000 36.84500000 -0.2688000000 44.63916667 -0.2664000000 55.30333333 -0.2640000000 64.51750000 -0.2616000000 63.58416667 -0.2592000000 62.81083333 -0.2568000000 59.07416667 -0.2544000000 60.90333333 -0.2520000000 49.95250000 -0.2496000000 30.64166667 -0.2472000000 16.46666667 -0.2448000000 12.35666667 -0.2424000000 10.50833333 -0.2400000000 9.368333333 -0.2376000000 8.535833333 -0.2352000000 7.745000000 -0.2328000000 7.157500000 -0.2304000000 6.755000000 -0.2280000000 6.605833333 -0.2256000000 6.664166667 -0.2232000000 6.903333333 -0.2208000000 7.150000000 -0.2184000000 7.500833333 -0.2160000000 8.049166667 -0.2136000000 8.775000000 -0.2112000000 9.829166667 -0.2088000000 11.62750000 -0.2064000000 14.42166667 -0.2040000000 18.79083333 -0.2016000000 28.45083333 -0.1992000000 39.21583333 -0.1968000000 43.05166667 -0.1944000000 48.15583333 -0.1920000000 50.43666667 -0.1896000000 50.36833333 -0.1872000000 47.97750000 -0.1848000000 46.61500000 -0.1824000000 46.09750000 -0.1800000000 42.42833333 -0.1776000000 38.73583333 -0.1752000000 38.59000000 -0.1728000000 46.66500000 -0.1704000000 70.25000000 -0.1680000000 113.7491667 -0.1656000000 143.1591667 -0.1632000000 137.0108333 -0.1608000000 110.3133333 -0.1584000000 89.18750000 -0.1560000000 73.68750000 -0.1536000000 61.62750000 -0.1512000000 51.12083333 -0.1488000000 42.87166667 -0.1464000000 35.61333333 -0.1440000000 27.83750000 -0.1416000000 22.23000000 -0.1392000000 18.26583333 -0.1368000000 15.33083333 -0.1344000000 13.24333333 -0.1320000000 11.39833333 -0.1296000000 10.01083333 -0.1272000000 8.640000000 -0.1248000000 7.035000000 -0.1224000000 5.234166667 -0.1200000000 4.196666667 -0.1176000000 3.587500000 -0.1152000000 3.172500000 -0.1128000000 2.641666667 -0.1104000000 1.547500000 -0.1080000000 0.9366666667 -0.1056000000 0.5733333333 -0.1032000000 0.3300000000 -0.1008000000 0.1841666667 -0.9840000000E-01 0.9000000000E-01 -0.9600000000E-01 0.8750000000E-01 -0.9360000000E-01 0.1241666667 -0.9120000000E-01 0.2441666667 -0.8880000000E-01 0.4075000000 -0.8640000000E-01 0.6375000000 -0.8400000000E-01 0.9583333333 -0.8160000000E-01 1.426666667 -0.7920000000E-01 2.545833333 -0.7680000000E-01 8.681666667 -0.7440000000E-01 16.60916667 -0.7200000000E-01 25.36166667 -0.6960000000E-01 38.49333333 -0.6720000000E-01 46.55583333 -0.6480000000E-01 46.96916667 -0.6240000000E-01 48.48500000 -0.6000000000E-01 50.50750000 -0.5760000000E-01 53.47750000 -0.5520000000E-01 59.41000000 -0.5280000000E-01 69.00083333 -0.5040000000E-01 74.81583333 -0.4800000000E-01 75.96000000 -0.4560000000E-01 61.30083333 -0.4320000000E-01 49.10750000 -0.4080000000E-01 36.69500000 -0.3840000000E-01 26.27916667 -0.3600000000E-01 18.62500000 -0.3360000000E-01 26.51333333 -0.3120000000E-01 51.33083333 -0.2880000000E-01 84.43583333 -0.2640000000E-01 130.9466667 -0.2400000000E-01 166.8525000 -0.2160000000E-01 162.2741667 -0.1920000000E-01 126.8108333 -0.1680000000E-01 109.1391667 -0.1440000000E-01 133.9591667 -0.1200000000E-01 148.8750000 -0.9600000000E-02 162.2250000 -0.7200000000E-02 120.1783333 -0.4800000000E-02 52.86083333 -0.2400000000E-02 24.80500000 0.000000000 18.98416667 0.2400000000E-02 16.21416667 0.4800000000E-02 14.11916667 0.7200000000E-02 12.29333333 0.9600000000E-02 10.97250000 0.1200000000E-01 9.826666667 0.1440000000E-01 8.863333333 0.1680000000E-01 7.803333333 0.1920000000E-01 7.035833333 0.2160000000E-01 6.377500000 0.2400000000E-01 5.737500000 0.2640000000E-01 5.217500000 0.2880000000E-01 4.827500000 0.3120000000E-01 4.567500000 0.3360000000E-01 4.225000000 0.3600000000E-01 3.974166667 0.3840000000E-01 3.765000000 0.4080000000E-01 3.490833333 0.4320000000E-01 3.353333333 0.4560000000E-01 3.245833333 0.4800000000E-01 2.984166667 0.5040000000E-01 2.853333333 0.5280000000E-01 2.719166667 0.5520000000E-01 2.573333333 0.5760000000E-01 2.452500000 0.6000000000E-01 2.347500000 0.6240000000E-01 2.251666667 0.6480000000E-01 2.046666667 0.6720000000E-01 2.026666667 0.6960000000E-01 1.899166667 0.7200000000E-01 1.780000000 0.7440000000E-01 1.825000000 0.7680000000E-01 1.665000000 0.7920000000E-01 1.655000000 0.8160000000E-01 1.626666667 0.8400000000E-01 1.630833333 0.8640000000E-01 1.645000000 0.8880000000E-01 1.642500000 0.9120000000E-01 1.710000000 0.9360000000E-01 1.698333333 0.9600000000E-01 1.778333333 0.9840000000E-01 1.815833333 0.1008000000 1.867500000 0.1032000000 2.005833333 0.1056000000 2.066666667 0.1080000000 2.250000000 0.1104000000 2.281666667 0.1128000000 2.470000000 0.1152000000 2.684166667 0.1176000000 2.829166667 0.1200000000 3.201666667 0.1224000000 3.572500000 0.1248000000 4.046666667 0.1272000000 4.617500000 0.1296000000 5.293333333 0.1320000000 6.230833333 0.1344000000 7.167500000 0.1368000000 8.099166667 0.1392000000 9.271666667 0.1416000000 10.45583333 0.1440000000 11.88666667 0.1464000000 13.62083333 0.1488000000 15.69833333 0.1512000000 18.12916667 0.1536000000 20.17250000 0.1560000000 21.28166667 0.1584000000 20.88750000 0.1608000000 21.06500000 0.1632000000 21.71583333 0.1656000000 22.15833333 0.1680000000 23.17250000 0.1704000000 24.49166667 0.1728000000 25.87166667 0.1752000000 27.76416667 0.1776000000 27.84750000 0.1800000000 28.56750000 0.1824000000 29.92000000 0.1848000000 29.90166667 0.1872000000 29.06833333 0.1896000000 28.52500000 0.1920000000 28.03000000 0.1944000000 26.81916667 0.1968000000 26.46583333 0.1992000000 26.02333333 0.2016000000 25.66583333 0.2040000000 25.35333333 0.2064000000 24.06583333 0.2088000000 22.77750000 0.2112000000 22.38666667 0.2136000000 21.71833333 0.2160000000 20.79833333 0.2184000000 20.47916667 0.2208000000 21.32500000 0.2232000000 25.78416667 0.2256000000 29.91500000 0.2280000000 32.03916667 0.2304000000 32.59833333 0.2328000000 35.02500000 0.2352000000 37.57500000 0.2376000000 41.52083333 0.2400000000 47.47083333 0.2424000000 54.15916667 0.2448000000 58.76916667 0.2472000000 54.77333333 0.2496000000 50.47416667 0.2520000000 46.33500000 0.2544000000 40.97000000 0.2568000000 36.45583333 0.2592000000 34.82916667 0.2616000000 33.63833333 0.2640000000 30.99750000 0.2664000000 26.14083333 0.2688000000 24.17833333 0.2712000000 20.91083333 0.2736000000 4.166666667 0.2760000000 0.3941666667 0.2784000000 0.2000000000E-01 0.2808000000 0.000000000 0.2832000000 0.000000000 0.2856000000 0.000000000 0.2880000000 0.000000000 0.2904000000 0.000000000 0.2928000000 0.000000000 0.2952000000 0.000000000 0.2976000000 0.000000000 0.3000000000 0.000000000 0.3024000000 0.000000000 0.3048000000 0.000000000 0.3072000000 0.000000000 0.3096000000 0.000000000 0.3120000000 0.000000000 0.3144000000 0.000000000 0.3168000000 0.000000000 0.3192000000 0.000000000 0.3216000000 0.000000000 0.3240000000 0.000000000 0.3264000000 0.000000000 0.3288000000 0.000000000 0.3312000000 0.000000000 0.3336000000 0.000000000 0.3360000000 0.000000000 0.3384000000 0.000000000 0.3408000000 0.000000000 0.3432000000 0.000000000 0.3456000000 0.000000000 0.3480000000 0.000000000 0.3504000000 0.1666666667E-02 0.3528000000 0.3333333333E-02 0.3552000000 0.1000000000E-01 0.3576000000 0.1750000000E-01 0.3600000000 0.4000000000E-01 0.3624000000 0.5083333333E-01 0.3648000000 0.8833333333E-01 0.3672000000 0.1325000000 0.3696000000 0.1975000000 0.3720000000 0.2658333333 0.3744000000 0.3725000000 0.3768000000 0.5266666667 0.3792000000 0.7341666667 0.3816000000 1.002500000 0.3840000000 1.197500000 0.3864000000 1.330833333 0.3888000000 1.442500000 0.3912000000 1.556666667 0.3936000000 1.656666667 0.3960000000 1.745833333 0.3984000000 1.846666667 0.4008000000 1.980000000 0.4032000000 2.038333333 0.4056000000 2.154166667 0.4080000000 2.285833333 0.4104000000 2.280000000 0.4128000000 2.505000000 0.4152000000 2.525000000 0.4176000000 2.727500000 0.4200000000 2.743333333 0.4224000000 2.944166667 0.4248000000 3.066666667 0.4272000000 3.070833333 0.4296000000 3.365833333 0.4320000000 3.349166667 0.4344000000 3.649166667 0.4368000000 3.679166667 0.4392000000 3.880000000 0.4416000000 4.067500000 0.4440000000 4.232500000 0.4464000000 4.469166667 0.4488000000 4.579166667 0.4512000000 4.845833333 0.4536000000 5.067500000 0.4560000000 5.258333333 0.4584000000 5.612500000 0.4608000000 5.894166667 0.4632000000 6.262500000 0.4656000000 6.585000000 0.4680000000 7.224166667 0.4704000000 7.792500000 0.4728000000 8.760833333 0.4752000000 9.805000000 0.4776000000 11.11083333 0.4800000000 12.32250000 0.4824000000 13.92666667 0.4848000000 14.54166667 0.4872000000 15.01250000 0.4896000000 15.34416667 0.4920000000 15.54000000 0.4944000000 15.74250000 0.4968000000 15.73250000 0.4992000000 15.54333333 0.5016000000 15.60583333 0.5040000000 15.61750000 0.5064000000 15.71166667 0.5088000000 16.04250000 0.5112000000 16.30000000 0.5136000000 16.60750000 0.5160000000 16.77500000 0.5184000000 17.21166667 0.5208000000 17.42083333 0.5232000000 17.94083333 0.5256000000 18.24583333 0.5280000000 19.04500000 0.5304000000 19.45000000 0.5328000000 20.21833333 0.5352000000 21.29416667 0.5376000000 22.06500000 0.5400000000 22.17333333 0.5424000000 23.15583333 0.5448000000 23.98750000 0.5472000000 22.43500000 0.5496000000 18.89666667 0.5520000000 16.63333333 0.5544000000 15.11333333 0.5568000000 13.59583333 0.5592000000 12.42333333 0.5616000000 11.14750000 0.5640000000 10.05500000 0.5664000000 8.917500000 0.5688000000 7.934166667 0.5712000000 6.838333333 0.5736000000 5.934166667 0.5760000000 5.045000000 0.5784000000 4.368333333 0.5808000000 3.731666667 0.5832000000 3.260833333 0.5856000000 2.792500000 0.5880000000 2.370000000 0.5904000000 1.945833333 0.5928000000 1.700000000 0.5952000000 1.330833333 0.5976000000 1.141666667 elk-7.2.42/examples/RDMFT/NiO/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016411 xustar0030 mtime=1623670096.472101047 30 atime=1623670096.472101047 30 ctime=1623670096.472101047 elk-7.2.42/examples/RDMFT/NiO/elk.in0000644002504400250440000000150314061636520020445 0ustar00dewhurstdewhurst00000000000000 ! Reduced density matrix functional theory (RDMFT) example for NiO. tasks 0 300 10 swidth 0.001 dosocc .false. dos 500 100 0 -0.6 0.6 ! maximum number of RDMFT self-consistent loops rdmmaxscl 2 ! maximum number of iterations per self-consistent loop for determining the ! natural orbitals via steepest-descent maxitc 10 ! maximum number of iterations per self-consistent loop for determining the ! occupation numbers via steepest-descent maxitn 100 ! RDMFT exchange-correlation functional, in this case the 'power functional' rdmxctype 2 ! coefficient of the power functional rdmalpha 0.65 nempty 10 ngridk 4 4 4 vkloff 0.25 0.5 0.625 avec 1.00 1.00 0.00 1.00 0.00 1.00 0.00 1.00 1.00 scale 3.9468 sppath '../../../species/' atoms 2 'Ni.in' 1 0.0 0.0 0.0 'O.in' 1 0.5 0.5 0.5 elk-7.2.42/examples/PaxHeaders.21776/XMCD0000644000000000000000000000013214061636520014423 xustar0030 mtime=1623670096.474101045 30 atime=1623670096.473101046 30 ctime=1623670096.474101045 elk-7.2.42/examples/XMCD/0000755002504400250440000000000014061636520016535 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/XMCD/PaxHeaders.21776/Fe0000644000000000000000000000013214061636520014755 xustar0030 mtime=1623670096.477101042 30 atime=1623670096.474101045 30 ctime=1623670096.477101042 elk-7.2.42/examples/XMCD/Fe/0000755002504400250440000000000014061636520017067 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/XMCD/Fe/PaxHeaders.21776/Fe_lo.in0000644000000000000000000000013214061636520016406 xustar0030 mtime=1623670096.476101043 30 atime=1623670096.476101043 30 ctime=1623670096.476101043 elk-7.2.42/examples/XMCD/Fe/Fe_lo.in0000644002504400250440000000366014061636520020450 0ustar00dewhurstdewhurst00000000000000 'Fe_lo' : spsymb 'iron' : spname -26.0000 : spzn 101799.2074 : spmass 0.392232E-06 2.0000 35.6837 500 : sprmin, rmt, sprmax, nrmt 10 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 T 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 2.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -26.0000 0 T 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -3.6844 0 T 1 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -2.4317 0 T 2 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -0.5316 0 T elk-7.2.42/examples/XMCD/Fe/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016135 xustar0030 mtime=1623670096.477101042 30 atime=1623670096.477101042 30 ctime=1623670096.477101042 elk-7.2.42/examples/XMCD/Fe/elk.in0000644002504400250440000000252014061636520020171 0ustar00dewhurstdewhurst00000000000000 ! Soft x-ray absorption spectroscopy example for bcc Fe, including XAS, XMCD, ! and XMLD. Species file Fe_lo.in has an additional local orbital at the 2p ! energy. Spin-orbit coupling has to be included for 2p 1/2 - 2p 3/2 splitting. ! XAS, XMCD, and XMLD are computed via first order optical response. Fe is ! cubic, hence the following relations hold for B || z: ! ! XAS = 1/3 * Im[ 2*eps_xx + eps_zz ] = 1/3 * Tr(Im[eps]) ! XMCD = Im[ sigma_xy ] = -2*Re[ eps_xy ] ! XMLD = Im[ eps_xx - eps_zz ] ! ! Similarly, the real parts of the epsilon and sigma tensor are related to the ! Faraday effect. A much larger number of k-points is necessary for a well ! converged spectrum. ! Example by Markus Meinert. tasks 0 120 121 wplot 400 200 0 25.0 26.5 ! compute the xx, xy, and zz components optcomp 1 1 1 2 3 3 spinpol .true. spinorb .true. ! use GGA xctype 20 ngridk 8 8 8 bfieldc 0.0 0.0 0.01 ! large number of empty states necessary for "continuum" absorption nempty 20 ! a Lorentzian broadening is applied to the spectrum swidth 0.01 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 atoms 1 : nspecies 'Fe_lo.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/examples/PaxHeaders.21776/libxc0000644000000000000000000000013014061636520014767 xustar0029 mtime=1623670096.47910104 30 atime=1623670096.478101041 29 ctime=1623670096.47910104 elk-7.2.42/examples/libxc/0000755002504400250440000000000014061636520017103 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/libxc/PaxHeaders.21776/Al0000644000000000000000000000013114061636520015324 xustar0030 mtime=1623670096.480101039 29 atime=1623670096.47910104 30 ctime=1623670096.480101039 elk-7.2.42/examples/libxc/Al/0000755002504400250440000000000014061636520017437 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/libxc/Al/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520016505 xustar0030 mtime=1623670096.481101038 30 atime=1623670096.480101039 30 ctime=1623670096.481101038 elk-7.2.42/examples/libxc/Al/elk.in0000644002504400250440000000161614061636520020546 0ustar00dewhurstdewhurst00000000000000 ! Test of libxc (http://www.tddft.org/programs/octopus/wiki/index.php/Libxc). ! The library must be downloaded and compiled separately. Follow the ! instructions in the Elk manual for installation of libxc. tasks 0 ! libxc is selected with xctype(1)=100. The remaining two numbers are the ! exchange and correlation functionals, respectively - in this case Slater ! exchange and Perdew-Wang correlation. Refer to the file ! 'elk/src/libxc_funcs.f90' for the complete list of functionals and ! associated numbers. xctype 100 1 13 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.8267 ! this is the relative path to the species files sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/PaxHeaders.21776/miscellaneous0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.491101029 30 atime=1623670096.481101038 30 ctime=1623670096.491101029 elk-7.2.42/examples/miscellaneous/0000755002504400250440000000000014061636520020645 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/miscellaneous/PaxHeaders.21776/GaAs-effective-mass0000644000000000000000000000013214061636520022245 xustar0030 mtime=1623670096.484101035 30 atime=1623670096.483101037 30 ctime=1623670096.484101035 elk-7.2.42/examples/miscellaneous/GaAs-effective-mass/0000755002504400250440000000000014061636520024357 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/miscellaneous/GaAs-effective-mass/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520023425 xustar0030 mtime=1623670096.484101035 30 atime=1623670096.484101035 30 ctime=1623670096.484101035 elk-7.2.42/examples/miscellaneous/GaAs-effective-mass/elk.in0000644002504400250440000000120514061636520025460 0ustar00dewhurstdewhurst00000000000000 ! Effective mass tensors of GaAs using the Perdew-Burke-Ernzerhof GGA functional. ! Try recalculating the tensors with spin-orbit coupling switched on. tasks 0 25 ! k-point at which the effective mass is to be calculated for all states vklem 0.5 0.0 0.0 xctype 20 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 ngridk 4 4 4 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/miscellaneous/PaxHeaders.21776/Al-STM0000644000000000000000000000013214061636520017530 xustar0030 mtime=1623670096.489101031 30 atime=1623670096.485101035 30 ctime=1623670096.489101031 elk-7.2.42/examples/miscellaneous/Al-STM/0000755002504400250440000000000014061636520021642 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/miscellaneous/Al-STM/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520020710 xustar0030 mtime=1623670096.487101033 30 atime=1623670096.487101033 30 ctime=1623670096.487101033 elk-7.2.42/examples/miscellaneous/Al-STM/elk.in0000644002504400250440000000142014061636520022742 0ustar00dewhurstdewhurst00000000000000 ! STM image of the surface of aluminium with an embedded oygen atom. Try using ! OpenDX to plot the image. tasks 0 162 ! the z-coordinate of the plotting plane is the 'height' of the STM tip plot2d 0.0 0.0 0.25 2.0 0.0 0.25 0.0 2.0 0.25 200 200 ! use small cut-off just for testing rgkmax 6.0 avec 15.0 0.0 0.0 0.0 15.0 0.0 0.0 0.0 7.5 sppath '../../../species/' atoms 2 : nspecies 'Al.in' : spfname 7 : natoms; atposl below 0.0 0.0 0.0 0.0 0.5 0.0 0.50 0.0 0.0 0.25 0.25 0.0 0.25 0.75 0.0 0.75 0.25 0.0 0.75 0.75 0.0 'O.in' 1 0.5 0.5 0.0 ngridk 1 1 1 vkloff 0.25 0.625 0.0 elk-7.2.42/examples/miscellaneous/Al-STM/PaxHeaders.21776/stm2d.general0000644000000000000000000000013214061636520022175 xustar0030 mtime=1623670096.488101032 30 atime=1623670096.488101032 30 ctime=1623670096.488101032 elk-7.2.42/examples/miscellaneous/Al-STM/stm2d.general0000644002504400250440000000027314061636520024234 0ustar00dewhurstdewhurst00000000000000file = ./STM2D.OUT grid = 200 x 200 format = ascii interleaving = field majority = column header = lines 1 field = locations, field0 structure = 2-vector, scalar type = float, float end elk-7.2.42/examples/miscellaneous/Al-STM/PaxHeaders.21776/stm2d.net0000644000000000000000000000013014061636520021344 xustar0029 mtime=1623670096.49010103 30 atime=1623670096.489101031 29 ctime=1623670096.49010103 elk-7.2.42/examples/miscellaneous/Al-STM/stm2d.net0000644002504400250440000001263514061636520023412 0ustar00dewhurstdewhurst00000000000000// // time: Sun Oct 15 18:48:57 2006 // // version: 3.2.0 (format), 4.3.2 (DX) // // // MODULE main // workspace: width = 392, height = 525 // layout: snap = 0, width = 50, height = 50, align = NN // macro main( ) -> ( ) { // // node Import[1]: x = 40, y = 40, inputs = 6, label = Import // input[1]: defaulting = 0, visible = 1, type = 32, value = "stm2d.general" // main_Import_1_out_1 = Import( main_Import_1_in_1, main_Import_1_in_2, main_Import_1_in_3, main_Import_1_in_4, main_Import_1_in_5, main_Import_1_in_6 ) [instance: 1, cache: 1]; // // node Colormap[1]: x = 245, y = 132, inputs = 19, label = Colormap // input[1]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.0] [1.0 0.0] } // input[2]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.0] [1.0 0.0] } // input[3]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 0.0] [1.0 1.0] } // input[4]: defaulting = 0, visible = 0, type = 16777224, value = { [0.0 1.0] [1.0 1.0] } // input[5]: defaulting = 0, visible = 0, type = 32, value = "Colormap_1" // input[7]: defaulting = 1, visible = 0, type = 5, value = 0.0043241107 // input[8]: defaulting = 1, visible = 0, type = 5, value = 0.045520809 // input[9]: defaulting = 1, visible = 0, type = 1, value = 20 // input[12]: defaulting = 0, visible = 0, type = 16777221, value = { 0.0043241107 0.045520809 } // input[17]: defaulting = 0, visible = 0, type = 5, value = 0.0043241107 // input[18]: defaulting = 0, visible = 0, type = 5, value = 0.045520809 // window: position = (0.0000,0.0000), size = 0.6348x0.5859 // main_Colormap_1_out_1[cache: 2], main_Colormap_1_out_2[cache: 2] = Colormap( main_Colormap_1_in_1, main_Colormap_1_in_2, main_Colormap_1_in_3, main_Colormap_1_in_4, main_Colormap_1_in_5, main_Import_1_out_1, main_Colormap_1_in_7, main_Colormap_1_in_8, main_Colormap_1_in_9, main_Colormap_1_in_10, main_Colormap_1_in_11, main_Colormap_1_in_12, main_Colormap_1_in_13, main_Colormap_1_in_14, main_Colormap_1_in_15, main_Colormap_1_in_16, main_Colormap_1_in_17, main_Colormap_1_in_18, main_Colormap_1_in_19 ) [instance: 1, cache: 1]; // // node Color[1]: x = 81, y = 206, inputs = 5, label = Color // main_Color_1_out_1 = Color( main_Import_1_out_1, main_Colormap_1_out_1, main_Color_1_in_3, main_Color_1_in_4, main_Color_1_in_5 ) [instance: 1, cache: 1]; // // node AutoCamera[1]: x = 300, y = 292, inputs = 9, label = AutoCamera // input[3]: defaulting = 0, visible = 0, type = 5, value = 35.0 // input[4]: defaulting = 0, visible = 0, type = 1, value = 512 // input[5]: defaulting = 0, visible = 0, type = 5, value = 1.0 // input[9]: defaulting = 0, visible = 0, type = 32, value = "white" // main_AutoCamera_1_out_1 = AutoCamera( main_Color_1_out_1, main_AutoCamera_1_in_2, main_AutoCamera_1_in_3, main_AutoCamera_1_in_4, main_AutoCamera_1_in_5, main_AutoCamera_1_in_6, main_AutoCamera_1_in_7, main_AutoCamera_1_in_8, main_AutoCamera_1_in_9 ) [instance: 1, cache: 1]; // // node Render[1]: x = 174, y = 347, inputs = 3, label = Render // main_Render_1_out_1 = Render( main_Color_1_out_1, main_AutoCamera_1_out_1, main_Render_1_in_3 ) [instance: 1, cache: 1]; // // node Display[1]: x = 142, y = 463, inputs = 8, label = Display // depth: value = 24 // window: position = (0.0000,0.0000), size = 0.5137x0.7214 // main_Display_1_out_1[cache: 2] = Display( main_Render_1_out_1, main_Display_1_in_2, main_Display_1_in_3, main_Display_1_in_4, main_Display_1_in_5, main_Display_1_in_6, main_Display_1_in_7, main_Display_1_in_8 ) [instance: 1, cache: 1]; // network: end of macro body } main_Import_1_in_1 = "stm2d.general"; main_Import_1_in_2 = NULL; main_Import_1_in_3 = NULL; main_Import_1_in_4 = NULL; main_Import_1_in_5 = NULL; main_Import_1_in_6 = NULL; main_Import_1_out_1 = NULL; main_Colormap_1_in_1 = { [0.0 0.0] [1.0 0.0] }; main_Colormap_1_in_2 = { [0.0 0.0] [1.0 0.0] }; main_Colormap_1_in_3 = { [0.0 0.0] [1.0 1.0] }; main_Colormap_1_in_4 = { [0.0 1.0] [1.0 1.0] }; main_Colormap_1_in_5 = "Colormap_1"; main_Colormap_1_in_7 = NULL; main_Colormap_1_in_8 = NULL; main_Colormap_1_in_9 = NULL; main_Colormap_1_in_10 = NULL; main_Colormap_1_in_11 = NULL; main_Colormap_1_in_12 = { 0.0043241107 0.045520809 }; main_Colormap_1_in_13 = NULL; main_Colormap_1_in_14 = NULL; main_Colormap_1_in_15 = NULL; main_Colormap_1_in_16 = NULL; main_Colormap_1_in_17 = 0.0043241107; main_Colormap_1_in_18 = 0.045520809; main_Colormap_1_in_19 = NULL; main_Colormap_1_out_1 = NULL; main_Color_1_in_3 = NULL; main_Color_1_in_4 = NULL; main_Color_1_in_5 = NULL; main_Color_1_out_1 = NULL; main_AutoCamera_1_in_2 = NULL; main_AutoCamera_1_in_3 = 35.0; main_AutoCamera_1_in_4 = 512; main_AutoCamera_1_in_5 = 1.0; main_AutoCamera_1_in_6 = NULL; main_AutoCamera_1_in_7 = NULL; main_AutoCamera_1_in_8 = NULL; main_AutoCamera_1_in_9 = "white"; main_AutoCamera_1_out_1 = NULL; main_Render_1_in_3 = NULL; main_Render_1_out_1 = NULL; main_Display_1_in_2 = NULL; main_Display_1_in_3 = "X24,,"; main_Display_1_in_4 = NULL; main_Display_1_in_5 = NULL; main_Display_1_in_6 = NULL; main_Display_1_in_7 = NULL; main_Display_1_in_8 = NULL; Executive("product version 4 3 2"); $sync main(); elk-7.2.42/examples/miscellaneous/PaxHeaders.21776/Al-exp[iq.r]0000644000000000000000000000013214061636520020743 xustar0030 mtime=1623670096.495101025 30 atime=1623670096.491101029 30 ctime=1623670096.495101025 elk-7.2.42/examples/miscellaneous/Al-exp[iq.r]/0000755002504400250440000000000014061636520023055 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/miscellaneous/Al-exp[iq.r]/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520022123 xustar0030 mtime=1623670096.495101025 30 atime=1623670096.495101025 30 ctime=1623670096.495101025 elk-7.2.42/examples/miscellaneous/Al-exp[iq.r]/elk.in0000644002504400250440000000114714061636520024163 0ustar00dewhurstdewhurst00000000000000 ! Computes < i,k+q | exp(iq.r) | j,k > matrix elements. The q-vector is ! stored in vecql and the outputted k-points are selected with kstlist. ! Note that q should be chosen commensurate with the k-point grid. tasks 0 130 vecql 0.0 0.0 0.125 kstlist 1 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.8267 ! this is the relative path to the species files sppath '../../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 ngridk 8 8 8 elk-7.2.42/examples/PaxHeaders.21776/structural-optimisation0000644000000000000000000000013214061636520020615 xustar0030 mtime=1623670096.505101016 30 atime=1623670096.496101024 30 ctime=1623670096.505101016 elk-7.2.42/examples/structural-optimisation/0000755002504400250440000000000014061636520022727 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structural-optimisation/PaxHeaders.21776/Si-atom-opt0000644000000000000000000000013214061636520022726 xustar0030 mtime=1623670096.498101023 30 atime=1623670096.497101023 30 ctime=1623670096.498101023 elk-7.2.42/examples/structural-optimisation/Si-atom-opt/0000755002504400250440000000000014061636520025040 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structural-optimisation/Si-atom-opt/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024106 xustar0030 mtime=1623670096.499101022 30 atime=1623670096.499101022 30 ctime=1623670096.499101022 elk-7.2.42/examples/structural-optimisation/Si-atom-opt/elk.in0000644002504400250440000000107714061636520026150 0ustar00dewhurstdewhurst00000000000000 ! Silicon geometry optimisation example. The equilibrium atomic positions are ! found using tasks=2. Updated positions are written to GEOMETRY_OPT.OUT for ! each optimisation step. tasks 2 ! use Broyden mixing of the potential mixtype 3 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.27 0.27 0.27 ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/examples/structural-optimisation/PaxHeaders.21776/BaTiO3-lattice-opt0000644000000000000000000000013014061636520024057 xustar0029 mtime=1623670096.50110102 30 atime=1623670096.500101021 29 ctime=1623670096.50110102 elk-7.2.42/examples/structural-optimisation/BaTiO3-lattice-opt/0000755002504400250440000000000014061636520026173 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structural-optimisation/BaTiO3-lattice-opt/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520025245 xustar0029 mtime=1623670096.50110102 29 atime=1623670096.50110102 29 ctime=1623670096.50110102 elk-7.2.42/examples/structural-optimisation/BaTiO3-lattice-opt/elk.in0000644002504400250440000000135114061636520027276 0ustar00dewhurstdewhurst00000000000000 ! Example taken from the Elk forum demonstrating the lattice optimisation of ! BaTiO3 using the PBEsol functional. With thanks to David Tompsett. ! See: http://sourceforge.net/p/elk/discussion/897820/thread/db2127bd/#24b6 tasks 2 latvopt 1 epspot 1.e-7 epsstress 1.e-3 mixtype 3 xctype 22 lmaxapw 8 rgkmax 8.0 gmaxvr 18.0 ngridk 10 10 10 avec 7.576 0.0 0.0 0.0 7.576 0.0 0.0 0.0 7.576 sppath '../../../species/' atoms 3 : nspecies 'Ba.in' : spfname 1 : natoms; atpos below 0.0 0.0 0.0 'Ti.in' 1 0.5 0.5 0.5 'O.in' 3 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 elk-7.2.42/examples/structural-optimisation/PaxHeaders.21776/Ge-lattice-opt0000644000000000000000000000013214061636520023373 xustar0030 mtime=1623670096.503101018 30 atime=1623670096.502101019 30 ctime=1623670096.503101018 elk-7.2.42/examples/structural-optimisation/Ge-lattice-opt/0000755002504400250440000000000014061636520025505 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structural-optimisation/Ge-lattice-opt/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024553 xustar0030 mtime=1623670096.504101017 30 atime=1623670096.504101017 30 ctime=1623670096.504101017 elk-7.2.42/examples/structural-optimisation/Ge-lattice-opt/elk.in0000644002504400250440000000265414061636520026617 0ustar00dewhurstdewhurst00000000000000 ! Unit cell optimisation for Ge with the PBE functional. This is performed with ! geometric optimisation in which the lattice vectors are changed. ! Setting 'latvopt' to 1 performs full unconstrained optimisation of the lattice ! vectors. Setting it to 2 results in an iso-volumetric optimisation. In both ! cases, the atomic positions are also optimised. To constrain the atomic ! positions, set the nuclear mass to be a negative number in the species file. ! As the calculation progresses, you can plot the files TOTENERGY_OPT.OUT and ! STRESSMAX.OUT to see the change in the total energy and stress tensor. The ! modulus of the maximum force on the atoms is written to FORCEMAX.OUT. ! The updated unit cell geometry is written to GEOMETRY_OPT.OUT. The last entry ! in this file contains the final lattice parameters and atomic positions. tasks 2 ! unconstrained optimisation of the lattice vectors latvopt 1 mixtype 3 ! switch on high-quality parameters for accurate stress tensors highq .true. ! switch off automatic determination of the k-point grid autokpt .false. ngridk 4 4 4 ! PBE exchange-correlation functional xctype 20 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 5.3451 sppath '../../../species/' atoms 1 : nspecies 'Ge.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 elk-7.2.42/examples/structural-optimisation/PaxHeaders.21776/MgB2-lattice-opt0000644000000000000000000000013214061636520023567 xustar0030 mtime=1623670096.506101015 30 atime=1623670096.505101016 30 ctime=1623670096.506101015 elk-7.2.42/examples/structural-optimisation/MgB2-lattice-opt/0000755002504400250440000000000014061636520025701 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/examples/structural-optimisation/MgB2-lattice-opt/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520024747 xustar0030 mtime=1623670096.506101015 30 atime=1623670096.506101015 30 ctime=1623670096.506101015 elk-7.2.42/examples/structural-optimisation/MgB2-lattice-opt/elk.in0000644002504400250440000000330414061636520027004 0ustar00dewhurstdewhurst00000000000000 ! Automatic determination of the c/a ratio of MgB2. This is performed with ! geometric optimisation which involves changing of the lattice vectors whilst ! maintaining the unit cell volume. ! Setting 'latvopt' to 1 performs full unconstrained optimisation of the lattice ! vectors. Setting it to 2 results in an optimisation over all strain tensors ! except isotropic scaling. In both cases, the atomic positions are also ! optimised. To constrain the atomic positions, set 'atpopt' to 0 or change the ! nuclear mass to be a negative number in a particular species file. In the case ! of MgB2, the atomic positions remain fixed because of symmetry. ! As the calculation progresses, you can plot the files TOTENERGY_OPT.OUT and ! STRESSMAX.OUT to see the change in the total energy and stress tensor. The ! modulus of the maximum force on the atoms is written to FORCEMAX.OUT. ! The updated unit cell geometry is written to GEOMETRY_OPT.OUT. The last entry ! in this file contains the final lattice parameters and atomic positions. tasks 2 ! lattice vector optimisation while maintaining the unit cell volume latvopt 2 ! high-quality calculation for precise total energies highq .true. ! speed the calculation up with Broyden mixing mixtype 3 avec 5.8316944 0.0 0.0 -2.9158472 5.050395498 0.0 0.0 0.0 6.659394380 ! decrease the unit cell volume to increase the pressure scale 0.9 sppath '../../../species/' atoms 2 : nspecies 'Mg.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'B.in' 2 0.33333333 0.66666667 0.5 0.66666667 0.33333333 0.5 elk-7.2.42/PaxHeaders.21776/tests0000644000000000000000000000013214061636520013214 xustar0030 mtime=1623670096.955100598 30 atime=1623670096.513101009 30 ctime=1623670096.955100598 elk-7.2.42/tests/0000755002504400250440000000000014061636520015326 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/PaxHeaders.21776/test.sh0000644000000000000000000000013214061636520014604 xustar0030 mtime=1623670096.515101007 30 atime=1623670096.515101007 30 ctime=1623670096.515101007 elk-7.2.42/tests/test.sh0000755002504400250440000000064414061636520016650 0ustar00dewhurstdewhurst00000000000000#! /bin/sh # Test suite script for the Elk Code for i in test_* do cd $i echo echo "Running test in directory $i..." \rm -f *.OUT gmon.out fort.* OMP_NUM_THREADS=8 OMP_STACKSIZE=20M ../../src/elk > test.log NERROR=`grep -c Error test.log` if test $NERROR -gt 0 then echo " Failed! See test.log and output files" else echo " Passed" \rm -f *.OUT test.log fort.* gmon.out fi cd .. done elk-7.2.42/tests/PaxHeaders.21776/test-mpi.sh0000644000000000000000000000013214061636520015367 xustar0030 mtime=1623670096.516101006 30 atime=1623670096.516101006 30 ctime=1623670096.516101006 elk-7.2.42/tests/test-mpi.sh0000755002504400250440000000072414061636520017432 0ustar00dewhurstdewhurst00000000000000#! /bin/sh # Test suite script for the Elk Code for i in test_* do cd $i echo echo "Running test in directory $i..." \rm -f *.OUT gmon.out fort.* OMP_NUM_THREADS=2 OMP_STACKSIZE=20M OMP_PROC_BIND=true OMP_PLACES=cores mpirun -n 4 ../../src/elk > test.log NERROR=`grep -c Error test.log` if test $NERROR -gt 0 then echo " Failed! See test.log and output files" else echo " Passed" \rm -f *.OUT test.log fort.* gmon.out fi cd .. done elk-7.2.42/tests/PaxHeaders.21776/test_0040000644000000000000000000000013214061636520014556 xustar0030 mtime=1623670096.535100988 30 atime=1623670096.517101005 30 ctime=1623670096.535100988 elk-7.2.42/tests/test_004/0000755002504400250440000000000014061636520016670 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.519101003 30 atime=1623670096.519101003 30 ctime=1623670096.519101003 elk-7.2.42/tests/test_004/TEST_400.OUT_0000644002504400250440000000014114061636520020556 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 12.0280730058 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016521 xustar0030 mtime=1623670096.520101002 30 atime=1623670096.520101002 30 ctime=1623670096.520101002 elk-7.2.42/tests/test_004/TEST_000.OUT_0000644002504400250440000000012614061636520020555 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -106.907708836 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_121.OUT_0000644000000000000000000000012114061636520016523 xustar0027 mtime=1623670096.522101 27 atime=1623670096.522101 27 ctime=1623670096.522101 elk-7.2.42/tests/test_004/TEST_121.OUT_0000644002504400250440000012273714061636520020576 0ustar00dewhurstdewhurst00000000000000'optical conductivity' 3 800 0.100000000000E-01 1 0.324757249585E-03 0.00000000000 2 0.324762751516E-03 -0.121774874327E-03 3 0.324779258109E-03 -0.243553873785E-03 4 0.324806771757E-03 -0.365341124101E-03 5 0.324845296452E-03 -0.487140752198E-03 6 0.324894837782E-03 -0.608956886796E-03 7 0.324955402936E-03 -0.730793659007E-03 8 0.325027000708E-03 -0.852655202937E-03 9 0.325109641493E-03 -0.974545656287E-03 10 0.325203337300E-03 -0.109646916096E-02 11 0.325308101750E-03 -0.121842986364E-02 12 0.325423950082E-03 -0.134043191646E-02 13 0.325550899159E-03 -0.146247947752E-02 14 0.325688967474E-03 -0.158457671157E-02 15 0.325838175157E-03 -0.170672779059E-02 16 0.325998543980E-03 -0.182893689441E-02 17 0.326170097367E-03 -0.195120821132E-02 18 0.326352860402E-03 -0.207354593872E-02 19 0.326546859835E-03 -0.219595428368E-02 20 0.326752124096E-03 -0.231843746366E-02 21 0.326968683302E-03 -0.244099970703E-02 22 0.327196569269E-03 -0.256364525381E-02 23 0.327435815522E-03 -0.268637835624E-02 24 0.327686457309E-03 -0.280920327944E-02 25 0.327948531612E-03 -0.293212430208E-02 26 0.328222077161E-03 -0.305514571698E-02 27 0.328507134447E-03 -0.317827183183E-02 28 0.328803745740E-03 -0.330150696983E-02 29 0.329111955098E-03 -0.342485547031E-02 30 0.329431808389E-03 -0.354832168950E-02 31 0.329763353305E-03 -0.367191000111E-02 32 0.330106639381E-03 -0.379562479710E-02 33 0.330461718009E-03 -0.391947048831E-02 34 0.330828642461E-03 -0.404345150520E-02 35 0.331207467909E-03 -0.416757229855E-02 36 0.331598251442E-03 -0.429183734015E-02 37 0.332001052089E-03 -0.441625112356E-02 38 0.332415930840E-03 -0.454081816481E-02 39 0.332842950672E-03 -0.466554300318E-02 40 0.333282176568E-03 -0.479043020188E-02 41 0.333733675544E-03 -0.491548434888E-02 42 0.334197516675E-03 -0.504071005763E-02 43 0.334673771117E-03 -0.516611196784E-02 44 0.335162512141E-03 -0.529169474630E-02 45 0.335663815153E-03 -0.541746308761E-02 46 0.336177757729E-03 -0.554342171508E-02 47 0.336704419644E-03 -0.566957538145E-02 48 0.337243882898E-03 -0.579592886979E-02 49 0.337796231754E-03 -0.592248699431E-02 50 0.338361552768E-03 -0.604925460120E-02 51 0.338939934822E-03 -0.617623656954E-02 52 0.339531469160E-03 -0.630343781212E-02 53 0.340136249426E-03 -0.643086327641E-02 54 0.340754371699E-03 -0.655851794536E-02 55 0.341385934530E-03 -0.668640683842E-02 56 0.342031038984E-03 -0.681453501242E-02 57 0.342689788683E-03 -0.694290756252E-02 58 0.343362289840E-03 -0.707152962320E-02 59 0.344048651313E-03 -0.720040636921E-02 60 0.344748984640E-03 -0.732954301660E-02 61 0.345463404090E-03 -0.745894482369E-02 62 0.346192026713E-03 -0.758861709216E-02 63 0.346934972380E-03 -0.771856516805E-02 64 0.347692363842E-03 -0.784879444284E-02 65 0.348464326778E-03 -0.797931035456E-02 66 0.349250989849E-03 -0.811011838885E-02 67 0.350052484751E-03 -0.824122408014E-02 68 0.350868946274E-03 -0.837263301278E-02 69 0.351700512362E-03 -0.850435082217E-02 70 0.352547324167E-03 -0.863638319601E-02 71 0.353409526118E-03 -0.876873587548E-02 72 0.354287265977E-03 -0.890141465650E-02 73 0.355180694912E-03 -0.903442539095E-02 74 0.356089967561E-03 -0.916777398802E-02 75 0.357015242100E-03 -0.930146641546E-02 76 0.357956680318E-03 -0.943550870096E-02 77 0.358914447688E-03 -0.956990693349E-02 78 0.359888713444E-03 -0.970466726473E-02 79 0.360879650661E-03 -0.983979591046E-02 80 0.361887436333E-03 -0.997529915199E-02 81 0.362912251456E-03 -0.101111833377E-01 82 0.363954281117E-03 -0.102474548846E-01 83 0.365013714579E-03 -0.103841202797E-01 84 0.366090745370E-03 -0.105211860817E-01 85 0.367185571383E-03 -0.106586589228E-01 86 0.368298394966E-03 -0.107965455098E-01 87 0.369429423026E-03 -0.109348526264E-01 88 0.370578867126E-03 -0.110735871347E-01 89 0.371746943599E-03 -0.112127559767E-01 90 0.372933873646E-03 -0.113523661766E-01 91 0.374139883459E-03 -0.114924248423E-01 92 0.375365204328E-03 -0.116329391671E-01 93 0.376610072765E-03 -0.117739164324E-01 94 0.377874730626E-03 -0.119153640087E-01 95 0.379159425236E-03 -0.120572893585E-01 96 0.380464409524E-03 -0.121997000376E-01 97 0.381789942153E-03 -0.123426036979E-01 98 0.383136287662E-03 -0.124860080892E-01 99 0.384503716609E-03 -0.126299210613E-01 100 0.385892505718E-03 -0.127743505668E-01 101 0.387302938036E-03 -0.129193046627E-01 102 0.388735303083E-03 -0.130647915137E-01 103 0.390189897025E-03 -0.132108193939E-01 104 0.391667022834E-03 -0.133573966894E-01 105 0.393166990465E-03 -0.135045319014E-01 106 0.394690117036E-03 -0.136522336483E-01 107 0.396236727011E-03 -0.138005106688E-01 108 0.397807152394E-03 -0.139493718243E-01 109 0.399401732926E-03 -0.140988261021E-01 110 0.401020816286E-03 -0.142488826182E-01 111 0.402664758308E-03 -0.143995506202E-01 112 0.404333923195E-03 -0.145508394905E-01 113 0.406028683746E-03 -0.147027587498E-01 114 0.407749421589E-03 -0.148553180596E-01 115 0.409496527422E-03 -0.150085272263E-01 116 0.411270401266E-03 -0.151623962041E-01 117 0.413071452717E-03 -0.153169350989E-01 118 0.414900101219E-03 -0.154721541718E-01 119 0.416756776336E-03 -0.156280638427E-01 120 0.418641918042E-03 -0.157846746944E-01 121 0.420555977015E-03 -0.159419974764E-01 122 0.422499414943E-03 -0.161000431090E-01 123 0.424472704845E-03 -0.162588226874E-01 124 0.426476331398E-03 -0.164183474860E-01 125 0.428510791276E-03 -0.165786289630E-01 126 0.430576593508E-03 -0.167396787648E-01 127 0.432674259842E-03 -0.169015087308E-01 128 0.434804325122E-03 -0.170641308980E-01 129 0.436967337686E-03 -0.172275575062E-01 130 0.439163859773E-03 -0.173918010032E-01 131 0.441394467946E-03 -0.175568740496E-01 132 0.443659753530E-03 -0.177227895249E-01 133 0.445960323073E-03 -0.178895605326E-01 134 0.448296798815E-03 -0.180572004062E-01 135 0.450669819179E-03 -0.182257227150E-01 136 0.453080039287E-03 -0.183951412705E-01 137 0.455528131486E-03 -0.185654701326E-01 138 0.458014785899E-03 -0.187367236161E-01 139 0.460540711002E-03 -0.189089162974E-01 140 0.463106634212E-03 -0.190820630218E-01 141 0.465713302515E-03 -0.192561789104E-01 142 0.468361483102E-03 -0.194312793674E-01 143 0.471051964045E-03 -0.196073800881E-01 144 0.473785554991E-03 -0.197844970669E-01 145 0.476563087886E-03 -0.199626466051E-01 146 0.479385417735E-03 -0.201418453197E-01 147 0.482253423386E-03 -0.203221101519E-01 148 0.485168008351E-03 -0.205034583766E-01 149 0.488130101656E-03 -0.206859076111E-01 150 0.491140658740E-03 -0.208694758257E-01 151 0.494200662374E-03 -0.210541813529E-01 152 0.497311123635E-03 -0.212400428981E-01 153 0.500473082914E-03 -0.214270795506E-01 154 0.503687610971E-03 -0.216153107944E-01 155 0.506955810036E-03 -0.218047565200E-01 156 0.510278814955E-03 -0.219954370363E-01 157 0.513657794396E-03 -0.221873730829E-01 158 0.517093952097E-03 -0.223805858429E-01 159 0.520588528185E-03 -0.225750969567E-01 160 0.524142800537E-03 -0.227709285354E-01 161 0.527758086226E-03 -0.229681031751E-01 162 0.531435743011E-03 -0.231666439724E-01 163 0.535177170915E-03 -0.233665745392E-01 164 0.538983813866E-03 -0.235679190191E-01 165 0.542857161423E-03 -0.237707021044E-01 166 0.546798750578E-03 -0.239749490529E-01 167 0.550810167652E-03 -0.241806857062E-01 168 0.554893050279E-03 -0.243879385087E-01 169 0.559049089489E-03 -0.245967345270E-01 170 0.563280031891E-03 -0.248071014699E-01 171 0.567587681971E-03 -0.250190677101E-01 172 0.571973904503E-03 -0.252326623060E-01 173 0.576440627080E-03 -0.254479150245E-01 174 0.580989842776E-03 -0.256648563654E-01 175 0.585623612955E-03 -0.258835175859E-01 176 0.590344070206E-03 -0.261039307266E-01 177 0.595153421460E-03 -0.263261286392E-01 178 0.600053951245E-03 -0.265501450141E-01 179 0.605048025141E-03 -0.267760144106E-01 180 0.610138093402E-03 -0.270037722874E-01 181 0.615326694791E-03 -0.272334550351E-01 182 0.620616460618E-03 -0.274651000097E-01 183 0.626010119010E-03 -0.276987455683E-01 184 0.631510499413E-03 -0.279344311055E-01 185 0.637120537362E-03 -0.281721970925E-01 186 0.642843279518E-03 -0.284120851174E-01 187 0.648681888995E-03 -0.286541379275E-01 188 0.654639651012E-03 -0.288983994738E-01 189 0.660719978866E-03 -0.291449149577E-01 190 0.666926420273E-03 -0.293937308796E-01 191 0.673262664093E-03 -0.296448950906E-01 192 0.679732547459E-03 -0.298984568459E-01 193 0.686340063363E-03 -0.301544668618E-01 194 0.693089368699E-03 -0.304129773750E-01 195 0.699984792833E-03 -0.306740422054E-01 196 0.707030846713E-03 -0.309377168215E-01 197 0.714232232569E-03 -0.312040584102E-01 198 0.721593854258E-03 -0.314731259496E-01 199 0.729120828290E-03 -0.317449802864E-01 200 0.736818495593E-03 -0.320196842165E-01 201 0.744692434088E-03 -0.322973025713E-01 202 0.752748472125E-03 -0.325779023079E-01 203 0.760992702852E-03 -0.328615526052E-01 204 0.769431499611E-03 -0.331483249647E-01 205 0.778071532428E-03 -0.334382933179E-01 206 0.786919785704E-03 -0.337315341394E-01 207 0.795983577204E-03 -0.340281265675E-01 208 0.805270578466E-03 -0.343281525313E-01 209 0.814788836747E-03 -0.346316968864E-01 210 0.824546798658E-03 -0.349388475582E-01 211 0.834553335631E-03 -0.352496956948E-01 212 0.844817771395E-03 -0.355643358295E-01 213 0.855349911662E-03 -0.358828660542E-01 214 0.866160076204E-03 -0.362053882032E-01 215 0.877259133604E-03 -0.365320080503E-01 216 0.888658538890E-03 -0.368628355189E-01 217 0.900370374397E-03 -0.371979849062E-01 218 0.912407394146E-03 -0.375375751235E-01 219 0.924783072130E-03 -0.378817299535E-01 220 0.937511654920E-03 -0.382305783255E-01 221 0.950608219040E-03 -0.385842546117E-01 222 0.964088733661E-03 -0.389428989447E-01 223 0.977970129187E-03 -0.393066575595E-01 224 0.992270372407E-03 -0.396756831614E-01 225 0.100700854898E-02 -0.400501353235E-01 226 0.102220495414E-02 -0.404301809144E-01 227 0.103788119252E-02 -0.408159945622E-01 228 0.105406028835E-02 -0.412077591559E-01 229 0.107076680725E-02 -0.416056663890E-01 230 0.108802699102E-02 -0.420099173500E-01 231 0.110586890733E-02 -0.424207231645E-01 232 0.112432261604E-02 -0.428383056945E-01 233 0.114342035465E-02 -0.432628983013E-01 234 0.116319674529E-02 -0.436947466798E-01 235 0.118368902658E-02 -0.441341097713E-01 236 0.120493731369E-02 -0.445812607653E-01 237 0.122698489101E-02 -0.450364882008E-01 238 0.124987854224E-02 -0.455000971792E-01 239 0.127366892382E-02 -0.459724107031E-01 240 0.129841098854E-02 -0.464537711577E-01 241 0.132416446758E-02 -0.469445419535E-01 242 0.135099442075E-02 -0.474451093528E-01 243 0.137897186667E-02 -0.479558845051E-01 244 0.140817450702E-02 -0.484773057221E-01 245 0.143868756193E-02 -0.490098410277E-01 246 0.147060473716E-02 -0.495539910244E-01 247 0.150402934853E-02 -0.501102921252E-01 248 0.153907563444E-02 -0.506793202109E-01 249 0.157587029486E-02 -0.512616947812E-01 250 0.161455430414E-02 -0.518580836847E-01 251 0.165528505685E-02 -0.524692085287E-01 252 0.169823892095E-02 -0.530958508913E-01 253 0.174361429181E-02 -0.537388594846E-01 254 0.179163526663E-02 -0.543991584518E-01 255 0.184255609160E-02 -0.550777570230E-01 256 0.189666657894E-02 -0.557757608057E-01 257 0.195429874974E-02 -0.564943850584E-01 258 0.201583503846E-02 -0.572349703777E-01 259 0.208171850306E-02 -0.579990013474E-01 260 0.215246563365E-02 -0.587881288407E-01 261 0.222868255897E-02 -0.596041968635E-01 262 0.231108573972E-02 -0.604492750776E-01 263 0.240052864910E-02 -0.613256984830E-01 264 0.249803653233E-02 -0.622361161912E-01 265 0.260485219880E-02 -0.631835518268E-01 266 0.272249707419E-02 -0.641714789228E-01 267 0.285285365210E-02 -0.652039157904E-01 268 0.299827840162E-02 -0.662855458672E-01 269 0.316175871734E-02 -0.674218716126E-01 270 0.334713466579E-02 -0.686194127919E-01 271 0.355941785579E-02 -0.698859636277E-01 272 0.380525885689E-02 -0.712309278186E-01 273 0.409364683370E-02 -0.726657553570E-01 274 0.443698085172E-02 -0.742045084790E-01 275 0.485275130300E-02 -0.758645798587E-01 276 0.536625008040E-02 -0.776675568104E-01 277 0.601506392047E-02 -0.796401216144E-01 278 0.685674229597E-02 -0.818145612112E-01 279 0.798224156006E-02 -0.842275294198E-01 280 0.953995143758E-02 -0.869129810009E-01 281 0.117784069864E-01 -0.898771418372E-01 282 0.151161908455E-01 -0.930196972006E-01 283 0.202151714487E-01 -0.959017051496E-01 284 0.278170496440E-01 -0.971584209300E-01 285 0.373309408225E-01 -0.937436961487E-01 286 0.435533213426E-01 -0.832507717349E-01 287 0.402681521494E-01 -0.714075134098E-01 288 0.314150906073E-01 -0.662078631348E-01 289 0.235704348627E-01 -0.669214521382E-01 290 0.183396509660E-01 -0.701487395911E-01 291 0.151304969939E-01 -0.740951240998E-01 292 0.132249709245E-01 -0.781459679969E-01 293 0.121506433345E-01 -0.821524361315E-01 294 0.116319504461E-01 -0.861207361436E-01 295 0.115141076779E-01 -0.901042467419E-01 296 0.117143387445E-01 -0.941693827719E-01 297 0.121951754686E-01 -0.983865545578E-01 298 0.129511250270E-01 -0.102829683618 299 0.140034681381E-01 -0.107578807500 300 0.154008077014E-01 -0.112724056990 301 0.172249566414E-01 -0.118370545548 302 0.196034604536E-01 -0.124644009671 303 0.227321967758E-01 -0.131696683777 304 0.269150081630E-01 -0.139711387524 305 0.326337120211E-01 -0.148897245653 306 0.406734118710E-01 -0.159457079909 307 0.523459847009E-01 -0.171466961908 308 0.698620449654E-01 -0.184491792958 309 0.967631268138E-01 -0.196441282084 310 0.137327667285 -0.200592637293 311 0.189971068925 -0.181135948501 312 0.229306197916 -0.122507207905 313 0.218159236646 -0.507467861025E-01 314 0.172385832908 -0.133287594965E-01 315 0.130860619935 -0.109037589487E-01 316 0.105873788119 -0.242974820631E-01 317 0.960503078794E-01 -0.421791822038E-01 318 0.995470869954E-01 -0.591846185086E-01 319 0.116284817516 -0.697763798825E-01 320 0.143396624763 -0.634472509784E-01 321 0.163112452724 -0.303138564527E-01 322 0.150745849824 0.122170626798E-01 323 0.116439622335 0.334096775217E-01 324 0.847458086919E-01 0.330774077093E-01 325 0.627645221081E-01 0.235361438719E-01 326 0.485446977220E-01 0.117570895768E-01 327 0.393557923804E-01 0.181641046575E-03 328 0.333495338132E-01 -0.105801194924E-01 329 0.294274889506E-01 -0.205232325690E-01 330 0.269577769583E-01 -0.298173308265E-01 331 0.255896748999E-01 -0.386683045682E-01 332 0.251543924970E-01 -0.472773647739E-01 333 0.256215478120E-01 -0.558276584432E-01 334 0.270920967777E-01 -0.644659032398E-01 335 0.298050580809E-01 -0.732465156194E-01 336 0.340754775206E-01 -0.820151628954E-01 337 0.400219171854E-01 -0.904358964705E-01 338 0.477076813083E-01 -0.985892514432E-01 339 0.584947546865E-01 -0.106321396874 340 0.736773378511E-01 -0.110483811454 341 0.890938759342E-01 -0.106300813190 342 0.954624369267E-01 -0.976714240983E-01 343 0.950514869497E-01 -0.971326390237E-01 344 0.100241168802 -0.106427850840 345 0.118778933819 -0.118141257986 346 0.154063879620 -0.121041845677 347 0.200398150734 -0.968318792945E-01 348 0.226615584022 -0.344532845702E-01 349 0.201879690183 0.312724528053E-01 350 0.151395450457 0.605468767217E-01 351 0.108361900988 0.604408472910E-01 352 0.794770325430E-01 0.487461404264E-01 353 0.612112033266E-01 0.343420612582E-01 354 0.498126961355E-01 0.202110406302E-01 355 0.429226928758E-01 0.709057647559E-02 356 0.392929731049E-01 -0.494773617751E-02 357 0.384118594666E-01 -0.158293488537E-01 358 0.401045477880E-01 -0.249719394303E-01 359 0.434719854112E-01 -0.309492845460E-01 360 0.452817723966E-01 -0.332733968572E-01 361 0.430612045208E-01 -0.358125542683E-01 362 0.396521560804E-01 -0.420708534524E-01 363 0.380831575354E-01 -0.512775965654E-01 364 0.391139349098E-01 -0.620067328278E-01 365 0.428926744528E-01 -0.735909749738E-01 366 0.497394034409E-01 -0.856486687615E-01 367 0.600363480815E-01 -0.978306503353E-01 368 0.746459058427E-01 -0.110291691010 369 0.965608830620E-01 -0.122492541687 370 0.129873602186 -0.130019193095 371 0.176566857345 -0.122448597513 372 0.226346734219 -0.814212963371E-01 373 0.241239550704 -0.555736980272E-02 374 0.202918761536 0.574911750321E-01 375 0.149338151957 0.787459279879E-01 376 0.108387540977 0.738286369657E-01 377 0.825025502247E-01 0.597037979005E-01 378 0.676093576852E-01 0.437389318377E-01 379 0.605358325472E-01 0.284131150055E-01 380 0.597747996107E-01 0.147697841713E-01 381 0.650370298384E-01 0.409117224304E-02 382 0.763197693254E-01 -0.352064194115E-03 383 0.892346116853E-01 0.758722577048E-02 384 0.905131463890E-01 0.271147667832E-01 385 0.754581537018E-01 0.419692628711E-01 386 0.567321995513E-01 0.440109596121E-01 387 0.424253236844E-01 0.386394968920E-01 388 0.328535463839E-01 0.310068614292E-01 389 0.265302510342E-01 0.232460614816E-01 390 0.222546004175E-01 0.159892918049E-01 391 0.192779109119E-01 0.933921084934E-02 392 0.171541857321E-01 0.323823484328E-02 393 0.156155783805E-01 -0.240841773299E-02 394 0.144980039163E-01 -0.769492931429E-02 395 0.136996043734E-01 -0.127053753796E-01 396 0.131578538852E-01 -0.175133053571E-01 397 0.128371787334E-01 -0.221839968604E-01 398 0.127229233433E-01 -0.267772687758E-01 399 0.128198223336E-01 -0.313501316971E-01 400 0.131547106988E-01 -0.359588054252E-01 401 0.137846888286E-01 -0.406590668390E-01 402 0.148138993393E-01 -0.455018025007E-01 403 0.164245499722E-01 -0.505143303201E-01 404 0.189272544697E-01 -0.556395581283E-01 405 0.228066261681E-01 -0.605566250611E-01 406 0.285574671863E-01 -0.642425120596E-01 407 0.355344012037E-01 -0.645306480994E-01 408 0.397923737141E-01 -0.602601905858E-01 409 0.377692466262E-01 -0.561446502130E-01 410 0.330742448122E-01 -0.570732773622E-01 411 0.300383647656E-01 -0.620030828597E-01 412 0.297979844445E-01 -0.686596818015E-01 413 0.325036597194E-01 -0.756553797255E-01 414 0.384649466438E-01 -0.815903719909E-01 415 0.473575424273E-01 -0.837928249711E-01 416 0.551177476881E-01 -0.792346307081E-01 417 0.547275177699E-01 -0.715441726876E-01 418 0.477616438199E-01 -0.696161203589E-01 419 0.413780794026E-01 -0.746074740272E-01 420 0.383189176189E-01 -0.832597260861E-01 421 0.385394406657E-01 -0.935942461885E-01 422 0.418467168865E-01 -0.104979535711 423 0.486506729222E-01 -0.117271534022 424 0.602203784017E-01 -0.130175111590 425 0.789437982779E-01 -0.142327647029 426 0.108004469377 -0.149174254862 427 0.147123073946 -0.139456756770 428 0.179311871478 -0.100002212660 429 0.174559760195 -0.462457934391E-01 430 0.139703652786 -0.161109031036E-01 431 0.105244187195 -0.140454931353E-01 432 0.823019007293E-01 -0.254896257955E-01 433 0.695638694564E-01 -0.413558544549E-01 434 0.643412186629E-01 -0.583496133279E-01 435 0.652536311533E-01 -0.755107440466E-01 436 0.723690317362E-01 -0.922645696155E-01 437 0.868705668478E-01 -0.106969610036 438 0.109374115765 -0.115223007964 439 0.135196941769 -0.111153657637 440 0.155795261460 -0.963781379032E-01 441 0.170498695417 -0.748627446920E-01 442 0.173608197250 -0.452484612177E-01 443 0.157713095201 -0.200760876145E-01 444 0.133868766319 -0.132206689264E-01 445 0.118062331322 -0.217486297077E-01 446 0.116522866140 -0.342699557312E-01 447 0.127372247624 -0.391800927550E-01 448 0.138879143962 -0.276824577253E-01 449 0.134361743071 -0.839374296156E-02 450 0.118697096940 0.208374368192E-03 451 0.106451550557 -0.143647040215E-03 452 0.969888205320E-01 -0.162814479919E-03 453 0.842938050787E-01 -0.192182915540E-02 454 0.717376739068E-01 -0.104601089575E-01 455 0.641244339308E-01 -0.238093748762E-01 456 0.624226606564E-01 -0.386919735752E-01 457 0.665543978268E-01 -0.528692582488E-01 458 0.761448615683E-01 -0.637241275415E-01 459 0.884303852031E-01 -0.684931417330E-01 460 0.996269561446E-01 -0.686262770370E-01 461 0.111722502684 -0.653883036682E-01 462 0.122355497640 -0.525074744774E-01 463 0.119018659359 -0.334353511985E-01 464 0.102505563546 -0.239462801880E-01 465 0.857572580780E-01 -0.280585414641E-01 466 0.760283310952E-01 -0.397725027693E-01 467 0.742898512624E-01 -0.528069578146E-01 468 0.785403248719E-01 -0.620271882252E-01 469 0.825818145617E-01 -0.643497396384E-01 470 0.794532478723E-01 -0.652058710574E-01 471 0.725561951708E-01 -0.729089965526E-01 472 0.686564221630E-01 -0.872459954130E-01 473 0.700148037991E-01 -0.105117760219 474 0.771773054240E-01 -0.124822430263 475 0.913653694067E-01 -0.145255080210 476 0.114983935912 -0.163970300763 477 0.149841318043 -0.174284966960 478 0.189038696297 -0.165056474527 479 0.211269386331 -0.138552753915 480 0.213400089378 -0.122074751471 481 0.222331796676 -0.122971609341 482 0.251144114986 -0.118557953115 483 0.282555050144 -0.876339184049E-01 484 0.289693394715 -0.400901935500E-01 485 0.271728201366 0.961264110138E-03 486 0.238223052032 0.236543524507E-01 487 0.205054723202 0.215015690598E-01 488 0.188994813093 0.396053183319E-02 489 0.192886591864 -0.112863945178E-01 490 0.205190562672 -0.109120869193E-01 491 0.208677193109 0.154145227826E-02 492 0.199962803496 0.120354792854E-01 493 0.186121712936 0.110201599284E-01 494 0.180948896913 -0.157523438981E-02 495 0.191736322162 -0.116173692385E-01 496 0.207221753726 -0.408024690866E-02 497 0.205881689003 0.132579351115E-01 498 0.192889120495 0.164918189067E-01 499 0.190310356317 0.749492127732E-02 500 0.201599343827 0.584195567202E-02 501 0.208304812455 0.215655189877E-01 502 0.194236941726 0.379347171005E-01 503 0.170256387852 0.351685345913E-01 504 0.154577462485 0.141642057009E-01 505 0.154961199330 -0.153035766840E-01 506 0.173807870238 -0.450465310757E-01 507 0.213103488722 -0.651009081687E-01 508 0.267442033993 -0.582742550672E-01 509 0.308825528943 -0.145874774240E-01 510 0.313148700274 0.374986308615E-01 511 0.299483368924 0.734558492189E-01 512 0.279452977498 0.100238065412 513 0.252780491265 0.114494456947 514 0.228089340952 0.116201141334 515 0.206332754337 0.107439349775 516 0.194523238760 0.858219165961E-01 517 0.202157534797 0.591532488290E-01 518 0.230798118475 0.404274378289E-01 519 0.275000961433 0.421689031585E-01 520 0.320423296783 0.766777549876E-01 521 0.337355983009 0.138758389520 522 0.319569726146 0.195053613901 523 0.286561551220 0.233826885497 524 0.248937307623 0.255293101988 525 0.216618862403 0.265723450333 526 0.186425320970 0.274791267455 527 0.151181257035 0.278427726341 528 0.116947317142 0.269608744043 529 0.914532949323E-01 0.252634514972 530 0.750617581177E-01 0.233688469336 531 0.658011918760E-01 0.215804655187 532 0.622149045723E-01 0.200575053923 533 0.628473799427E-01 0.189970512992 534 0.640212893298E-01 0.185612305640 535 0.615680535670E-01 0.184707303981 536 0.564480830266E-01 0.183527567920 537 0.497415418855E-01 0.181949780714 538 0.413737003934E-01 0.178620377521 539 0.334586563279E-01 0.172636960030 540 0.274335488816E-01 0.165347888985 541 0.231377727378E-01 0.158000025192 542 0.200390912111E-01 0.151085791596 543 0.177272805666E-01 0.144711975221 544 0.159416834407E-01 0.138853734058 545 0.145208823142E-01 0.133452247197 546 0.133628080504E-01 0.128446403337 547 0.124007156855E-01 0.123781665201 548 0.115894096281E-01 0.119411550270 549 0.108972843580E-01 0.115296917184 550 0.103016059511E-01 0.111404761249 551 0.978562789364E-02 0.107707049304 552 0.933677349292E-02 0.104179730821 553 0.894545774787E-02 0.100801934671 554 0.860430479622E-02 0.975553245038E-01 555 0.830761787238E-02 0.944235798198E-01 556 0.805101572187E-02 0.913919730610E-01 557 0.783118264055E-02 0.884470183134E-01 558 0.764569931969E-02 0.855761719879E-01 559 0.749293422433E-02 0.827675695656E-01 560 0.737198353625E-02 0.800097850915E-01 561 0.728265365656E-02 0.772916016754E-01 562 0.722548510503E-02 0.746017819102E-01 563 0.720182127465E-02 0.719288268778E-01 564 0.721393073067E-02 0.692607112538E-01 565 0.726519856610E-02 0.665845798202E-01 566 0.736041212862E-02 0.638863872714E-01 567 0.750618142535E-02 0.611504583126E-01 568 0.771155843798E-02 0.583589385324E-01 569 0.798895903573E-02 0.554910986480E-01 570 0.835555813796E-02 0.525224470477E-01 571 0.883544560369E-02 0.494236036706E-01 572 0.946303969733E-02 0.461589086751E-01 573 0.102886399324E-01 0.426848290890E-01 574 0.113877242024E-01 0.389485184036E-01 575 0.128769674510E-01 0.348877576777E-01 576 0.149425134536E-01 0.304360740887E-01 577 0.178902843889E-01 0.255444168531E-01 578 0.222319482393E-01 0.202532372794E-01 579 0.288023226557E-01 0.149123956954E-01 580 0.387419977007E-01 0.107844984260E-01 581 0.524294260119E-01 0.111892442273E-01 582 0.654903421649E-01 0.207756273769E-01 583 0.680301706190E-01 0.363696612389E-01 584 0.603642141958E-01 0.452633663931E-01 585 0.533180433909E-01 0.443585757389E-01 586 0.525752272073E-01 0.391006126742E-01 587 0.589939220331E-01 0.352020288701E-01 588 0.701465219174E-01 0.389034812467E-01 589 0.764460836300E-01 0.535752742234E-01 590 0.688182414997E-01 0.690760079033E-01 591 0.545314281114E-01 0.739764569137E-01 592 0.430974119771E-01 0.703118717333E-01 593 0.365294735648E-01 0.630932897378E-01 594 0.341047755187E-01 0.547753567569E-01 595 0.353059678110E-01 0.462143219871E-01 596 0.404317528770E-01 0.379276785105E-01 597 0.506396806174E-01 0.311638057525E-01 598 0.671971147319E-01 0.295709153555E-01 599 0.873026147119E-01 0.406107000221E-01 600 0.969672211283E-01 0.676732927015E-01 601 0.847303223558E-01 0.942921865477E-01 602 0.629864052698E-01 0.105053506698 603 0.449593732274E-01 0.104136477882 604 0.328071923513E-01 0.988756531965E-01 605 0.249177098001E-01 0.927579018745E-01 606 0.197080942152E-01 0.869347027536E-01 607 0.161599306426E-01 0.816815167871E-01 608 0.136673791332E-01 0.769943962200E-01 609 0.118701584783E-01 0.727943561171E-01 610 0.105493846204E-01 0.689925558813E-01 611 0.956888038703E-02 0.655088428212E-01 612 0.884260749278E-02 0.622750828106E-01 613 0.831654154351E-02 0.592338350030E-01 614 0.795874644538E-02 0.563358883050E-01 615 0.775451257774E-02 0.535378106511E-01 616 0.770523808062E-02 0.507999569747E-01 617 0.783102396644E-02 0.480854481430E-01 618 0.817825032091E-02 0.453615381351E-01 619 0.883498121819E-02 0.426076773741E-01 620 0.995780368439E-02 0.398431521327E-01 621 0.118039216020E-01 0.372107404225E-01 622 0.146901286967E-01 0.351963953480E-01 623 0.185134783840E-01 0.349676015628E-01 624 0.214066833027E-01 0.377240958289E-01 625 0.205166970261E-01 0.415977349495E-01 626 0.169083439399E-01 0.429667943835E-01 627 0.135038993561E-01 0.416959538698E-01 628 0.112178913333E-01 0.392206485048E-01 629 0.985904759475E-02 0.363730646583E-01 630 0.912950944172E-02 0.334427052466E-01 631 0.883722588418E-02 0.304958221813E-01 632 0.888835934465E-02 0.275252987340E-01 633 0.926183661704E-02 0.245106739431E-01 634 0.999395378691E-02 0.214586409064E-01 635 0.111433724452E-01 0.184653028227E-01 636 0.126290054235E-01 0.157670057235E-01 637 0.139627458695E-01 0.134305673244E-01 638 0.147938201566E-01 0.107501663013E-01 639 0.157318364093E-01 0.705852827224E-02 640 0.174861538573E-01 0.242440768217E-02 641 0.204738356566E-01 -0.296778142550E-02 642 0.251956672071E-01 -0.903472287719E-02 643 0.325428671547E-01 -0.155850364191E-01 644 0.440295061513E-01 -0.218106957689E-01 645 0.616790433291E-01 -0.250426536362E-01 646 0.856723321483E-01 -0.185661063281E-01 647 0.106395734978 0.617870734664E-02 648 0.104896294311 0.413101577564E-01 649 0.834259647106E-01 0.629759457180E-01 650 0.611029016019E-01 0.668963807109E-01 651 0.456405558772E-01 0.620719569232E-01 652 0.363735343438E-01 0.545019673620E-01 653 0.314935646034E-01 0.464424353187E-01 654 0.299067367206E-01 0.385804247400E-01 655 0.313232170581E-01 0.312522560052E-01 656 0.360654858889E-01 0.252366773036E-01 657 0.442974371130E-01 0.227186287717E-01 658 0.532397490417E-01 0.272543307420E-01 659 0.554597902728E-01 0.377793497882E-01 660 0.494628628927E-01 0.452452898983E-01 661 0.424771661174E-01 0.466583092253E-01 662 0.372430817802E-01 0.458786581988E-01 663 0.321487802109E-01 0.440427578824E-01 664 0.275421704458E-01 0.400373943976E-01 665 0.246914543219E-01 0.343436298879E-01 666 0.238209317638E-01 0.278776590645E-01 667 0.248438509638E-01 0.210460811253E-01 668 0.279461524029E-01 0.139969568341E-01 669 0.337731312884E-01 0.704243238353E-02 670 0.434178634353E-01 0.132950003211E-02 671 0.574726519773E-01 0.496130182518E-04 672 0.721403538618E-01 0.819812111394E-02 673 0.772520879306E-01 0.238384923156E-01 674 0.717583270012E-01 0.339923329450E-01 675 0.672999847800E-01 0.347957461097E-01 676 0.703514178997E-01 0.337959314871E-01 677 0.781195005167E-01 0.399359688152E-01 678 0.795336850961E-01 0.549641735194E-01 679 0.694436991009E-01 0.671731103368E-01 680 0.570652155609E-01 0.700465554802E-01 681 0.481898656215E-01 0.679559531867E-01 682 0.427101253647E-01 0.641006932811E-01 683 0.408781281328E-01 0.600952181913E-01 684 0.419845923426E-01 0.589657042828E-01 685 0.416303635507E-01 0.623216697104E-01 686 0.361672276588E-01 0.657257495827E-01 687 0.287973513895E-01 0.649196845541E-01 688 0.230063845942E-01 0.610565305113E-01 689 0.192719385129E-01 0.561098924977E-01 690 0.170939250559E-01 0.509667900596E-01 691 0.160363429351E-01 0.458615275012E-01 692 0.158748887499E-01 0.407836689793E-01 693 0.165680108448E-01 0.356448442647E-01 694 0.182461782367E-01 0.303451765703E-01 695 0.212513587486E-01 0.248326755565E-01 696 0.262317181103E-01 0.192416241931E-01 697 0.342324945317E-01 0.142829352800E-01 698 0.463334192048E-01 0.121779585414E-01 699 0.612254601823E-01 0.175069418869E-01 700 0.711615241436E-01 0.326691101648E-01 701 0.697455681947E-01 0.494105506597E-01 702 0.624190230939E-01 0.604895972053E-01 703 0.536912661820E-01 0.675732106151E-01 704 0.433635073202E-01 0.711321026451E-01 705 0.334826226306E-01 0.699854727831E-01 706 0.264044758777E-01 0.658176555734E-01 707 0.222412702298E-01 0.606922869032E-01 708 0.204199642951E-01 0.556212688712E-01 709 0.205964178458E-01 0.511157318852E-01 710 0.226836278968E-01 0.478739545004E-01 711 0.260357258221E-01 0.472995538683E-01 712 0.279978428900E-01 0.501422224058E-01 713 0.262123575938E-01 0.537060462539E-01 714 0.220896446866E-01 0.550639987687E-01 715 0.179134037545E-01 0.539007923906E-01 716 0.149247597729E-01 0.512277580533E-01 717 0.132250974138E-01 0.480755806215E-01 718 0.124748655943E-01 0.448997677613E-01 719 0.124954759100E-01 0.417091535890E-01 720 0.134658977852E-01 0.385108971225E-01 721 0.157534393110E-01 0.355995957731E-01 722 0.197527001722E-01 0.338242987496E-01 723 0.250703189349E-01 0.350379134065E-01 724 0.285228299215E-01 0.407378721715E-01 725 0.262332296619E-01 0.474722725495E-01 726 0.205295780514E-01 0.502812556123E-01 727 0.154757565707E-01 0.495480035459E-01 728 0.121046710721E-01 0.473640229793E-01 729 0.100941533084E-01 0.448646228172E-01 730 0.905391427675E-02 0.425094795372E-01 731 0.869788870746E-02 0.405882623768E-01 732 0.858771649838E-02 0.393700629805E-01 733 0.804635727479E-02 0.386519128832E-01 734 0.701164064219E-02 0.376947940856E-01 735 0.601261207367E-02 0.362985104253E-01 736 0.527825004032E-02 0.347079629890E-01 737 0.477548332733E-02 0.330968135224E-01 738 0.443187566893E-02 0.315251428661E-01 739 0.419470148522E-02 0.300032403686E-01 740 0.403120903020E-02 0.285251509679E-01 741 0.392153634546E-02 0.270807184824E-01 742 0.385356815149E-02 0.256593640621E-01 743 0.381991884249E-02 0.242510683227E-01 744 0.381624211403E-02 0.228464473266E-01 745 0.384029884390E-02 0.214365489076E-01 746 0.389146573239E-02 0.200125696771E-01 747 0.397052101868E-02 0.185655484264E-01 748 0.407963174831E-02 0.170860413123E-01 749 0.422252229092E-02 0.155637656018E-01 750 0.440484761350E-02 0.139871907865E-01 751 0.463484315487E-02 0.123430522462E-01 752 0.492439315198E-02 0.106157642659E-01 753 0.529077707917E-02 0.878672545950E-02 754 0.575956699754E-02 0.683356917790E-02 755 0.636954816742E-02 0.472959595632E-02 756 0.718129205204E-02 0.244416943123E-02 757 0.829239903549E-02 -0.535469384955E-04 758 0.986459152233E-02 -0.278041616555E-02 759 0.121687728645E-01 -0.569370641453E-02 760 0.156377536598E-01 -0.855490902119E-02 761 0.207976918518E-01 -0.105750618101E-01 762 0.274875977653E-01 -0.988425816231E-02 763 0.327445174505E-01 -0.463282808463E-02 764 0.322354866402E-01 0.217399758903E-02 765 0.277408628524E-01 0.510986781000E-02 766 0.235298965820E-01 0.401574373554E-02 767 0.210874162910E-01 0.780189721119E-03 768 0.205294618291E-01 -0.322343191375E-02 769 0.214244965370E-01 -0.711341697285E-02 770 0.230588957088E-01 -0.105798081101E-01 771 0.247540283166E-01 -0.140866273722E-01 772 0.268729304480E-01 -0.187575881668E-01 773 0.309245097002E-01 -0.248302919097E-01 774 0.383759677740E-01 -0.314716315855E-01 775 0.507062501504E-01 -0.369047756432E-01 776 0.687480075159E-01 -0.371403580649E-01 777 0.887110078007E-01 -0.258737002172E-01 778 0.989279878673E-01 -0.270477844293E-02 779 0.931869409723E-01 0.193304926628E-01 780 0.809014051378E-01 0.303806797144E-01 781 0.714461507909E-01 0.346936255398E-01 782 0.631595007868E-01 0.383101407643E-01 783 0.530981039655E-01 0.388966257229E-01 784 0.446755889061E-01 0.344026208077E-01 785 0.406208923862E-01 0.271886486681E-01 786 0.413026187748E-01 0.198472385237E-01 787 0.463903202404E-01 0.147684997829E-01 788 0.541117016819E-01 0.147861358411E-01 789 0.599666463678E-01 0.213267111341E-01 790 0.585972954326E-01 0.309828531485E-01 791 0.504263648577E-01 0.362967356211E-01 792 0.416428206732E-01 0.346701190104E-01 793 0.361063334696E-01 0.287045170874E-01 794 0.344238364084E-01 0.209689770016E-01 795 0.365123462641E-01 0.127202206212E-01 796 0.428643359538E-01 0.483950253774E-02 797 0.546585708869E-01 -0.814957566887E-03 798 0.722492326393E-01 0.356752464491E-03 799 0.899973509871E-01 0.148722880913E-01 800 0.949995694265E-01 0.406068114805E-01 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.524100998 30 atime=1623670096.524100998 30 ctime=1623670096.524100998 elk-7.2.42/tests/test_004/TEST_800.OUT_0000644002504400250440000000051714061636520020571 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 8 0.100000000000E-07 1 867.855963688 2 112.499817004 3 25.5315015099 4 79.0562837272 5 27.5430274822 6 39.9023686609 7 18.7274424851 8 14.7204937058 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_187.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.526100996 30 atime=1623670096.525100998 30 ctime=1623670096.526100996 elk-7.2.42/tests/test_004/TEST_187.OUT_0000644002504400250440000012274314061636520020607 0ustar00dewhurstdewhurst00000000000000'BSE optical conductivity' 3 800 0.100000000000E-02 1 0.290493022077E-03 0.00000000000 2 -0.187269329460E-05 0.00000000000 3 -0.116424109597E-05 0.00000000000 4 -0.187269740911E-05 0.00000000000 5 0.290686768563E-03 0.00000000000 6 -0.456000268135E-06 0.00000000000 7 -0.116423878387E-05 0.00000000000 8 -0.455997448607E-06 0.00000000000 9 0.291787450297E-03 0.00000000000 10 0.290503104778E-03 -0.108918216122E-03 11 -0.187282228252E-05 0.702046454625E-06 12 -0.116435288357E-05 0.436405769764E-06 13 -0.187282581904E-05 0.702049540023E-06 14 0.290696849172E-03 -0.108990874513E-03 15 -0.456088142819E-06 0.170855024129E-06 16 -0.116435089626E-05 0.436404035969E-06 17 -0.456085719217E-06 0.170852909934E-06 18 0.291797556321E-03 -0.109403588154E-03 19 0.290533355585E-03 -0.217843989794E-03 20 -0.187320929550E-05 0.140418935166E-05 21 -0.116468829266E-05 0.872895425719E-06 22 -0.187321109784E-05 0.140419552359E-05 23 0.290727093702E-03 -0.217989305014E-03 24 -0.456351807296E-06 0.341776036262E-06 25 -0.116468727984E-05 0.872891957478E-06 26 -0.456350571669E-06 0.341771806814E-06 27 0.291827877101E-03 -0.218814751346E-03 28 0.290583782621E-03 -0.326784880595E-03 29 -0.187385448125E-05 0.210652517029E-05 30 -0.116524746213E-05 0.130955288875E-05 31 -0.187385339258E-05 0.210653443102E-05 32 0.290777510266E-03 -0.327002849514E-03 33 -0.456791382874E-06 0.512829054739E-06 34 -0.116524807385E-05 0.130954768476E-05 35 -0.456792127865E-06 0.512822707926E-06 36 0.291878420765E-03 -0.328241066646E-03 37 0.290654399425E-03 -0.435748452157E-03 38 -0.187475808608E-05 0.280915046327E-05 39 -0.116603062356E-05 0.174646214917E-05 40 -0.187475294850E-05 0.280916281622E-05 41 0.290848112386E-03 -0.436039070076E-03 42 -0.457407071845E-06 0.684080158606E-06 43 -0.116603351050E-05 0.174645520748E-05 44 -0.457410591084E-06 0.684071691257E-06 45 0.291949200866E-03 -0.437690115179E-03 46 0.290745224965E-03 -0.544742274199E-03 47 -0.187592045507E-05 0.351216189381E-05 48 -0.116703810146E-05 0.218370730150E-05 49 -0.187591010921E-05 0.351217734352E-05 50 0.290938919011E-03 -0.545105534841E-03 51 -0.458199157645E-06 0.855595518023E-06 52 -0.116704391514E-05 0.218369861950E-05 53 -0.458206246151E-06 0.855584925905E-06 54 0.292040236388E-03 -0.547169484165E-03 55 0.290856283648E-03 -0.653773924562E-03 56 -0.187734203237E-05 0.421565627250E-05 57 -0.116827031345E-05 0.262137257931E-05 58 -0.187732531692E-05 0.421567482465E-05 59 0.291049954518E-03 -0.654209820063E-03 60 -0.459168005089E-06 0.102744142475E-05 61 -0.116827970650E-05 0.262136215375E-05 62 -0.459179459661E-06 0.102742870257E-05 63 0.292151551761E-03 -0.656686768949E-03 64 0.290987605335E-03 -0.762850991244E-03 65 -0.187902336150E-05 0.491973059435E-05 66 -0.116972777066E-05 0.305954239022E-05 67 -0.187899911282E-05 0.491975225579E-05 68 0.291181248735E-03 -0.763359512142E-03 69 -0.460314060665E-06 0.119968432274E-05 70 -0.116974139703E-05 0.305953021716E-05 71 -0.460330680287E-06 0.119966946414E-05 72 0.292283176874E-03 -0.766249575048E-03 73 0.291139225360E-03 -0.871981074451E-03 74 -0.188096508579E-05 0.562448207603E-05 75 -0.117141107806E-05 0.349830135098E-05 76 -0.188093213747E-05 0.562450685474E-05 77 0.291332836956E-03 -0.872562209671E-03 78 -0.461637852899E-06 0.137239083884E-05 79 -0.117142959333E-05 0.349828742586E-05 80 -0.461660439135E-06 0.137237383638E-05 81 0.292435147092E-03 -0.875865520192E-03 82 0.291311184553E-03 -0.981171788645E-03 83 -0.188316794887E-05 0.633000819321E-05 84 -0.117332093501E-05 0.393773432275E-05 85 -0.188312513129E-05 0.633003609833E-05 86 0.291504759964E-03 -0.981825525487E-03 87 -0.463139992788E-06 0.154562781365E-05 88 -0.117334499656E-05 0.393771864033E-05 89 -0.463169350188E-06 0.154560865882E-05 90 0.292607503281E-03 -0.985542236386E-03 91 0.291503529262E-03 -0.109043076461E-02 92 -0.188563279524E-05 0.703640671810E-05 93 -0.117545813574E-05 0.437792644659E-05 94 -0.188557893512E-05 0.703643775995E-05 95 0.291697064053E-03 -0.109115708873E-02 96 -0.464821174296E-06 0.171946233257E-05 97 -0.117548840306E-05 0.437790900096E-05 98 -0.464858110796E-06 0.171944101578E-05 99 0.292800291832E-03 -0.109528737197E-02 100 0.291716311385E-03 -0.119976565153E-02 101 -0.188836057090E-05 0.774377575731E-05 102 -0.117782357004E-05 0.481896317908E-05 103 -0.188829449091E-05 0.774380994736E-05 104 0.291909801063E-03 -0.120056454690E-02 105 -0.466682174922E-06 0.189396175701E-05 106 -0.117786070495E-05 0.481894396368E-05 107 -0.466727502254E-06 0.189393826758E-05 108 0.293013564689E-03 -0.120510859369E-02 109 0.291949588399E-03 -0.130918411906E-02 110 -0.189135232410E-05 0.845221378983E-05 111 -0.118041822392E-05 0.526093032832E-05 112 -0.189127284238E-05 0.845225114074E-05 113 0.292143028404E-03 -0.131005556797E-02 114 -0.468723856341E-06 0.206919375585E-05 115 -0.118046289082E-05 0.526090933590E-05 116 -0.468778390439E-06 0.206916808202E-05 117 0.293247379381E-03 -0.131501358880E-02 118 0.292203423400E-03 -0.141869385942E-02 119 -0.189460920616E-05 0.916181970540E-05 120 -0.118324318040E-05 0.570391409010E-05 121 -0.189451513588E-05 0.916186023103E-05 122 0.292396809099E-03 -0.141963784246E-02 123 -0.470947165104E-06 0.224522633718E-05 124 -0.118329604653E-05 0.570389131274E-05 125 -0.471011726517E-06 0.224519846606E-05 126 0.293501799060E-03 -0.142501006713E-02 127 0.292477885136E-03 -0.152830258953E-02 128 -0.189813247231E-05 0.987269284318E-05 129 -0.118629962037E-05 0.614800108443E-05 130 -0.189802262124E-05 0.987273655855E-05 131 0.292671211819E-03 -0.152931908551E-02 132 -0.473353133421E-06 0.242212788026E-05 133 -0.118636135607E-05 0.614797651352E-05 134 -0.473428547728E-06 0.242209779786E-05 135 0.293776892538E-03 -0.153510576323E-02 136 0.292773048057E-03 -0.163801805310E-02 137 -0.190192348269E-05 0.105849330307E-04 138 -0.118958882353E-05 0.659327839237E-05 139 -0.190179665275E-05 0.105849799521E-04 140 0.292966310926E-03 -0.163910703908E-02 141 -0.475942880010E-06 0.259996716780E-05 142 -0.118966010249E-05 0.659325201864E-05 143 -0.476029978237E-06 0.259993485901E-05 144 0.294072734328E-03 -0.164530843846E-02 145 0.293088992356E-03 -0.174784802280E-02 146 -0.190598370344E-05 0.112986406232E-04 147 -0.119311216943E-05 0.703983359329E-05 148 -0.190583869023E-05 0.112986907681E-04 149 0.293282186521E-03 -0.174900947402E-02 150 -0.478717611021E-06 0.277881341862E-05 151 -0.119319366893E-05 0.703980540674E-05 152 -0.478817230063E-06 0.277877886719E-05 153 0.294389404697E-03 -0.175562588319E-02 154 0.293425804021E-03 -0.185780030242E-02 155 -0.191031470775E-05 0.120139165437E-04 156 -0.119687113852E-05 0.748775480244E-05 157 -0.191015030010E-05 0.120139699307E-04 158 0.293618924492E-03 -0.185903419228E-02 159 -0.481678621031E-06 0.295873632062E-05 160 -0.119696353973E-05 0.748772479240E-05 161 -0.481791604078E-06 0.295869950917E-05 162 0.294726989709E-03 -0.186606591890E-02 163 0.293783574891E-03 -0.196788272903E-02 164 -0.191491817718E-05 0.127308623227E-04 165 -0.120086731337E-05 0.793713070902E-05 166 -0.191473315669E-05 0.127309189718E-04 167 0.293976616572E-03 -0.196918902904E-02 168 -0.484827294119E-06 0.313980606413E-05 169 -0.120097130158E-05 0.793709886411E-05 170 -0.484954491087E-06 0.313976697412E-05 171 0.295085581283E-03 -0.197663640040E-02 172 0.294162402709E-03 -0.207810317519E-02 173 -0.191979590292E-05 0.134495801394E-04 174 -0.120510237995E-05 0.838805061467E-05 175 -0.191958904348E-05 0.134496400719E-04 176 0.294355360389E-03 -0.207948185493E-02 177 -0.488165105020E-06 0.332209337574E-05 178 -0.120521864484E-05 0.838801692280E-05 179 -0.488307372984E-06 0.332205198746E-05 180 0.295465277250E-03 -0.208734521804E-02 181 0.294562391189E-03 -0.218846955118E-02 182 -0.192494978719E-05 0.141701728625E-04 183 -0.120957812895E-05 0.884060447248E-05 184 -0.192471985451E-05 0.141702361008E-04 185 0.294755259538E-03 -0.218992057827E-02 186 -0.491693620349E-06 0.350566955249E-05 187 -0.120970736487E-05 0.884056892084E-05 188 -0.491851823983E-06 0.350562584505E-05 189 0.295866181415E-03 -0.219820029989E-02 190 0.294983650079E-03 -0.229898980725E-02 191 -0.193038184476E-05 0.148927440924E-04 192 -0.121429645724E-05 0.929488292647E-05 193 -0.193012759591E-05 0.148928106603E-04 194 0.295176423635E-03 -0.230051314728E-02 195 -0.495414499915E-06 0.369060649663E-05 196 -0.121443936347E-05 0.929484550151E-05 197 -0.495589511939E-06 0.369056044795E-05 198 0.296288403621E-03 -0.230920961404E-02 199 0.295426295228E-03 -0.240967193586E-02 200 -0.193609420453E-05 0.156173982031E-04 201 -0.121925936943E-05 0.975097735169E-05 202 -0.193581438743E-05 0.156174681256E-04 203 0.295618968395E-03 -0.241126755237E-02 204 -0.499329498112E-06 0.387697675078E-05 205 -0.121941665046E-05 0.975093803914E-05 206 -0.499522199740E-06 0.387692833755E-05 207 0.296732059819E-03 -0.242038117083E-02 208 0.295890448666E-03 -0.252052397402E-02 209 -0.194208911122E-05 0.163442403852E-04 210 -0.122446897945E-05 0.102089798949E-04 211 -0.194178246414E-05 0.163443136887E-04 212 0.296083015704E-03 -0.252219182842E-02 213 -0.503440465397E-06 0.406485353372E-05 214 -0.122464134526E-05 0.102089386797E-04 215 -0.503651746792E-06 0.406480273144E-05 216 0.297197272146E-03 -0.253172302518E-02 217 0.296376238676E-03 -0.263155400560E-02 218 -0.194836892711E-05 0.170733766896E-04 219 -0.122992751232E-05 0.106689835158E-04 220 -0.194803417821E-05 0.170734534020E-04 221 0.296568693694E-03 -0.263329405714E-02 222 -0.507749349849E-06 0.425431077672E-05 223 -0.123011567865E-05 0.106689403823E-04 224 -0.507980110588E-06 0.425425755961E-05 225 0.297684168995E-03 -0.264324327892E-02 226 0.296883799879E-03 -0.274277016368E-02 227 -0.195493613400E-05 0.178049140720E-04 228 -0.123563730594E-05 0.111310820290E-04 229 -0.195457200077E-05 0.178049942223E-04 230 0.297076136825E-03 -0.274458236936E-02 231 -0.512258198825E-06 0.444542316043E-05 232 -0.123584199456E-05 0.111310369606E-04 233 -0.512509348366E-06 0.444536750146E-05 234 0.298192885105E-03 -0.275495008314E-02 235 0.297413273323E-03 -0.285418063296E-02 236 -0.196179333511E-05 0.185389604373E-04 237 -0.124160081301E-05 0.115953701469E-04 238 -0.196139852389E-05 0.185390440561E-04 239 0.297605485977E-03 -0.285606494749E-02 240 -0.516969160697E-06 0.463826615245E-05 241 -0.124182275206E-05 0.115953231263E-04 242 -0.517241618855E-06 0.463820802333E-05 243 0.298723561643E-03 -0.286685164055E-02 244 0.297964806568E-03 -0.296579365215E-02 245 -0.196894325723E-05 0.192756246857E-04 246 -0.124782060308E-05 0.120619435226E-04 247 -0.196851646269E-05 0.192757118049E-04 248 0.298156888534E-03 -0.296775002789E-02 249 -0.521884486689E-06 0.483291604559E-05 250 -0.124806052729E-05 0.120618945316E-04 251 -0.522179184122E-06 0.483285541670E-05 252 0.299276346297E-03 -0.297895620798E-02 253 0.298538553786E-03 -0.307761751644E-02 254 -0.197638875290E-05 0.200150167594E-04 255 -0.125429936463E-05 0.125308987945E-04 256 -0.197592865749E-05 0.200151074122E-04 257 0.298730498484E-03 -0.307964590334E-02 258 -0.527006532810E-06 0.502944999676E-05 259 -0.125455801567E-05 0.125308478144E-04 260 -0.527324411502E-06 0.502938683718E-05 261 0.299851393369E-03 -0.309127209876E-02 262 0.299134675861E-03 -0.318966058003E-02 263 -0.198413280272E-05 0.207572476896E-04 264 -0.126103990735E-05 0.130023336311E-04 265 -0.198363807613E-05 0.207573419109E-04 266 0.299326476515E-03 -0.319176092551E-02 267 -0.532337761876E-06 0.522794606667E-05 268 -0.126131803410E-05 0.130022806421E-04 269 -0.532679775642E-06 0.522788034413E-05 270 0.300448863880E-03 -0.320380768526E-02 271 0.299753340495E-03 -0.330193125861E-02 272 -0.199217851778E-05 0.215024296450E-04 273 -0.126804516446E-05 0.134763467769E-04 274 -0.199164781640E-05 0.215025274710E-04 275 0.299944990127E-03 -0.330410350753E-02 276 -0.537880745646E-06 0.542848326028E-05 277 -0.126834352333E-05 0.134762917586E-04 278 -0.538247860635E-06 0.542841494114E-05 279 0.301068925672E-03 -0.331657140140E-02 280 0.300394722313E-03 -0.341443803193E-02 281 -0.200052914217E-05 0.222506759809E-04 282 -0.127531819516E-05 0.139530380991E-04 283 -0.199996110854E-05 0.222507774494E-04 284 0.300586213735E-03 -0.341668212653E-02 285 -0.543638167052E-06 0.563114156806E-05 286 -0.127563755040E-05 0.139529810300E-04 287 -0.544031362266E-06 0.563107061730E-05 288 0.301711753519E-03 -0.342957174526E-02 289 0.301059002987E-03 -0.352718944649E-02 290 -0.200918805572E-05 0.230021012895E-04 291 -0.128286218725E-05 0.144325086352E-04 292 -0.200858131793E-05 0.230022064399E-04 293 0.301250328785E-03 -0.352950532624E-02 294 -0.549612822543E-06 0.583600200812E-05 295 -0.128320331125E-05 0.144324494932E-04 296 -0.550033090356E-06 0.583592838931E-05 297 0.302377529242E-03 -0.354281728167E-02 298 0.301746371348E-03 -0.364019411810E-02 299 -0.201815877669E-05 0.237568214509E-04 300 -0.129068045978E-05 0.149148606418E-04 301 -0.201751194783E-05 0.237569303241E-04 302 0.301937523880E-03 -0.364258171969E-02 303 -0.555807624537E-06 0.604314666926E-05 304 -0.129104413340E-05 0.149147994040E-04 305 -0.556255971232E-06 0.604307034453E-05 306 0.303066441829E-03 -0.365631664484E-02 307 0.302457023517E-03 -0.375346073466E-02 308 -0.202744496479E-05 0.245149536856E-04 309 -0.129877646591E-05 0.154001976444E-04 310 -0.202675664233E-05 0.245150663241E-04 311 0.302647994899E-03 -0.375591999185E-02 312 -0.562225603984E-06 0.625265875490E-05 313 -0.129916347880E-05 0.154001342867E-04 314 -0.562703050297E-06 0.625257968490E-05 315 0.303778687562E-03 -0.377007854114E-02 316 0.303191163034E-03 -0.386699805885E-02 317 -0.203705042416E-05 0.252766166075E-04 318 -0.130715379586E-05 0.158886244878E-04 319 -0.203631918937E-05 0.252767330554E-04 320 0.303381945129E-03 -0.386952890243E-02 321 -0.568869913057E-06 0.646462262803E-05 322 -0.130756494677E-05 0.158885589855E-04 323 -0.569377494730E-06 0.646454077193E-05 324 0.304514470148E-03 -0.388411175180E-02 325 0.303949000997E-03 -0.398081493100E-02 326 -0.204697910658E-05 0.260419302788E-04 327 -0.131581617996E-05 0.163802473884E-04 328 -0.204620352391E-05 0.260420505819E-04 329 0.304139585406E-03 -0.398341728866E-02 330 -0.575743827951E-06 0.667912385720E-05 331 -0.131625227712E-05 0.163801797157E-04 332 -0.576282596297E-06 0.667903917265E-05 333 0.305274000857E-03 -0.399842513571E-02 334 0.304730756202E-03 -0.409492027190E-02 335 -0.205723511482E-05 0.268110162655E-04 336 -0.132476749193E-05 0.168751739870E-04 337 -0.205641373125E-05 0.268111404712E-04 338 0.304921134253E-03 -0.409759406813E-02 339 -0.582850751822E-06 0.689624926358E-05 340 -0.132522935335E-05 0.168751041174E-04 341 -0.583421774301E-06 0.689616170666E-05 342 0.306057498660E-03 -0.411302763234E-02 343 0.305536655297E-03 -0.420932308570E-02 344 -0.206782270611E-05 0.275839976944E-04 345 -0.133401175221E-05 0.173735134035E-04 346 -0.206695405053E-05 0.275841258520E-04 347 0.305726818033E-03 -0.421206824171E-02 348 -0.590194217847E-06 0.711608696909E-05 349 -0.133450020604E-05 0.173734413093E-04 350 -0.590798578652E-06 0.711599649431E-05 351 0.306865190387E-03 -0.422792826456E-02 352 0.306366932929E-03 -0.432403246293E-02 353 -0.207874629576E-05 0.283609993116E-04 354 -0.134355313149E-05 0.178753762920E-04 355 -0.207782887831E-05 0.283611314720E-04 356 0.306556871097E-03 -0.432684889652E-02 357 -0.597777892421E-06 0.733872644577E-05 358 -0.134406901638E-05 0.178753019448E-04 359 -0.598416693080E-06 0.733863300601E-05 360 0.307697310873E-03 -0.434313614168E-02 361 0.307221831914E-03 -0.443905758348E-02 362 -0.209001046096E-05 0.291421475422E-04 363 -0.135339595439E-05 0.183808748981E-04 364 -0.208904277236E-05 0.291422837583E-04 365 0.307411535953E-03 -0.444194520893E-02 366 -0.605605578497E-06 0.756425856636E-05 367 -0.135394011985E-05 0.183807982685E-04 368 -0.606279938485E-06 0.756416211284E-05 369 0.308554103124E-03 -0.445866046246E-02 370 0.308101603401E-03 -0.455440771968E-02 371 -0.210161994473E-05 0.299275705512E-04 372 -0.136354470326E-05 0.188901231174E-04 373 -0.210060045558E-05 0.299277108777E-04 374 0.308291063428E-03 -0.455736644764E-02 375 -0.613681219070E-06 0.779277565610E-05 376 -0.136411801002E-05 0.188900441747E-04 377 -0.614392276432E-06 0.779267613837E-05 378 0.309435818486E-03 -0.457451051819E-02 379 0.309006507047E-03 -0.467009223950E-02 380 -0.211357966007E-05 0.307173983067E-04 381 -0.137400402219E-05 0.194032365548E-04 382 -0.211250682016E-05 0.307175428000E-04 383 0.309195712848E-03 -0.467312197687E-02 384 -0.622008900803E-06 0.802437154594E-05 385 -0.137460734257E-05 0.194031552677E-04 386 -0.622757812797E-06 0.802426891182E-05 387 0.310342716819E-03 -0.469069569582E-02 388 0.309936811199E-03 -0.478612060973E-02 389 -0.212589469420E-05 0.315117626434E-04 390 -0.138477872118E-05 0.199203325862E-04 391 -0.212476693178E-05 0.315119113621E-04 392 0.310125752213E-03 -0.478922125951E-02 393 -0.630592857825E-06 0.825914162711E-05 394 -0.138541293950E-05 0.199202489222E-04 395 -0.631380801570E-06 0.825903582265E-05 396 0.311275066675E-03 -0.480722548124E-02 397 0.310892793087E-03 -0.490250239927E-02 398 -0.213857031309E-05 0.323107973294E-04 399 -0.139587378046E-05 0.204415304217E-04 400 -0.213738603416E-05 0.323109503339E-04 401 0.311081458391E-03 -0.490567386047E-02 402 -0.639437475673E-06 0.849718290708E-05 403 -0.139653979339E-05 0.204414443471E-04 404 -0.640265648822E-06 0.849707387652E-05 405 0.312233145496E-03 -0.492410946252E-02 406 0.311874739014E-03 -0.501924728252E-02 407 -0.215161196609E-05 0.331146381327E-04 408 -0.140729435502E-05 0.209669511694E-04 409 -0.215036955363E-05 0.331147954856E-04 410 0.312063117314E-03 -0.502248944996E-02 411 -0.648547295415E-06 0.873859406715E-05 412 -0.140799307200E-05 0.209668626496E-04 413 -0.649416916835E-06 0.873848175289E-05 414 0.313217239802E-03 -0.504135733330E-02 415 0.312882944567E-03 -0.513636504276E-02 416 -0.216502529083E-05 0.339234228916E-04 417 -0.141904577932E-05 0.214967179025E-04 418 -0.216372310403E-05 0.339235846575E-04 419 0.313071024180E-03 -0.513967780700E-02 420 -0.657927017939E-06 0.898347552148E-05 421 -0.141977812297E-05 0.214966269018E-04 422 -0.658839328413E-06 0.898335986403E-05 423 0.314227645402E-03 -0.515897889619E-02 424 0.313917714828E-03 -0.525386557571E-02 425 -0.217881611827E-05 0.347372915853E-04 426 -0.143113357220E-05 0.220309557270E-04 427 -0.217745249173E-05 0.347374578309E-04 428 0.314105483667E-03 -0.525724882286E-02 429 -0.667581508429E-06 0.923192947787E-05 430 -0.143190047874E-05 0.220308622086E-04 431 -0.668537771366E-06 0.923181041581E-05 432 0.315264667605E-03 -0.527698406634E-02 433 0.314979364593E-03 -0.537175889313E-02 434 -0.219299047796E-05 0.355563864070E-04 435 -0.144356344200E-05 0.225697918518E-04 436 -0.219156372091E-05 0.355565572013E-04 437 0.315166810152E-03 -0.537521250468E-02 438 -0.677515801022E-06 0.948406000020E-05 439 -0.144436586165E-05 0.225696957776E-04 440 -0.678517303197E-06 0.948393747012E-05 441 0.316328621438E-03 -0.539538287499E-02 442 0.316068218605E-03 -0.549005512644E-02 443 -0.220755460358E-05 0.363808518395E-04 444 -0.145634129189E-05 0.231133556605E-04 445 -0.220606299901E-05 0.363810272537E-04 446 0.316255327944E-03 -0.549357897916E-02 447 -0.687735103667E-06 0.973997307261E-05 448 -0.145718018932E-05 0.231132569914E-04 449 -0.688783155966E-06 0.973984700907E-05 450 0.317419831881E-03 -0.551418547316E-02 451 0.317184611790E-03 -0.560876453056E-02 452 -0.222251493862E-05 0.372108347321E-04 453 -0.146947322540E-05 0.236617787858E-04 454 -0.222095674245E-05 0.372110148396E-04 455 0.317371371519E-03 -0.561235849627E-02 456 -0.698244803188E-06 0.999977666565E-05 457 -0.147034958017E-05 0.236616774814E-04 458 -0.699340741377E-06 0.999964700114E-05 459 0.318538634102E-03 -0.563340213543E-02 460 0.318328889509E-03 -0.572789748770E-02 461 -0.223787814238E-05 0.380464843799E-04 462 -0.148296555223E-05 0.242151951850E-04 463 -0.223625158258E-05 0.380466692567E-04 464 0.318515285767E-03 -0.573156143314E-02 465 -0.709050470549E-06 0.102635808042E-04 466 -0.148388035923E-05 0.242150912037E-04 467 -0.710195656066E-06 0.102634474691E-04 468 0.319685373707E-03 -0.575304326380E-02 469 0.319501407810E-03 -0.584746451137E-02 470 -0.225365109615E-05 0.388879526060E-04 471 -0.149682479425E-05 0.247737412187E-04 472 -0.225195437185E-05 0.388881423303E-04 473 0.319687426252E-03 -0.585119829801E-02 474 -0.720157866351E-06 0.105314976377E-04 475 -0.149777906418E-05 0.247736345176E-04 476 -0.721353687109E-06 0.105313605601E-04 477 0.320860406997E-03 -0.587311939162E-02 478 0.320702533701E-03 -0.596747625038E-02 479 -0.226984090971E-05 0.397353938449E-04 480 -0.151105769177E-05 0.253375557312E-04 481 -0.226807219026E-05 0.397355884977E-04 482 0.320888159478E-03 -0.597127973422E-02 483 -0.731572946554E-06 0.108036415119E-04 484 -0.151205245161E-05 0.253374462663E-04 485 -0.732820817772E-06 0.108035006178E-04 486 0.322064101236E-03 -0.599364118768E-02 487 0.321932645427E-03 -0.608794349303E-02 488 -0.228645492805E-05 0.405889652297E-04 489 -0.152567121009E-05 0.259067801338E-04 490 -0.228461235208E-05 0.405891648942E-04 491 0.322117863165E-03 -0.609181652442E-02 492 -0.743301868436E-06 0.110801290436E-04 493 -0.152670750359E-05 0.259066678596E-04 494 -0.744603233487E-06 0.110799842566E-04 495 0.323296834929E-03 -0.611461946031E-02 496 0.323192132755E-03 -0.620887717134E-02 497 -0.230350073836E-05 0.414488266805E-04 498 -0.154067254630E-05 0.264815584898E-04 499 -0.230158241281E-05 0.414490314427E-04 500 0.323376926539E-03 -0.621281959480E-02 501 -0.755350996802E-06 0.113610791969E-04 502 -0.154175143445E-05 0.264814433596E-04 503 -0.756707328085E-06 0.113609304383E-04 504 0.324558998111E-03 -0.623606516169E-02 505 0.324481397281E-03 -0.633028836542E-02 506 -0.232098617740E-05 0.423151409966E-04 507 -0.155606913634E-05 0.270620376030E-04 508 -0.231899017651E-05 0.423153509453E-04 509 0.324665750631E-03 -0.633430001941E-02 510 -0.767726910457E-06 0.116466133624E-04 511 -0.155719169790E-05 0.270619195686E-04 512 -0.769139710292E-06 0.116464605510E-04 513 0.325850992647E-03 -0.635798939220E-02 514 0.325800852736E-03 -0.645218830799E-02 515 -0.233891933903E-05 0.431880739509E-04 516 -0.157186866242E-05 0.276483671081E-04 517 -0.233684370331E-05 0.431882891776E-04 518 0.325984748588E-03 -0.645626902469E-02 519 -0.780436408944E-06 0.119368554384E-04 520 -0.157303599444E-05 0.276482461200E-04 521 -0.781907210491E-06 0.119366984906E-04 522 0.327173232543E-03 -0.648040340490E-02 523 0.327150925313E-03 -0.657458838893E-02 524 -0.235730858219E-05 0.440677943872E-04 525 -0.158807906067E-05 0.282406995649E-04 526 -0.235515131738E-05 0.440680149863E-04 527 0.327334345997E-03 -0.657873799404E-02 528 -0.793486519569E-06 0.122319319152E-04 529 -0.158929227902E-05 0.282405755720E-04 530 -0.795016887768E-06 0.122317707447E-04 531 0.328526144274E-03 -0.660331861014E-02 532 0.328532054002E-03 -0.669750016004E-02 533 -0.237616253915E-05 0.449544743210E-04 534 -0.160470852918E-05 0.288391905539E-04 535 -0.237392161510E-05 0.449547003899E-04 536 0.328714981218E-03 -0.670171847252E-02 537 -0.806884504717E-06 0.125319719614E-04 538 -0.160596876910E-05 0.288390635039E-04 539 -0.808476037259E-06 0.125318064795E-04 540 0.329910167113E-03 -0.672674658026E-02 541 0.329944690940E-03 -0.682093533985E-02 542 -0.239549012407E-05 0.458482890425E-04 543 -0.162176553633E-05 0.294439987768E-04 544 -0.239316347365E-05 0.458485206815E-04 545 0.330127105737E-03 -0.682522217172E-02 546 -0.820637869480E-06 0.128371075138E-04 547 -0.162307395296E-05 0.294438686156E-04 548 -0.822292197802E-06 0.128369376289E-04 549 0.331325753487E-03 -0.685069905451E-02 550 0.331389301774E-03 -0.694490581867E-02 551 -0.241530054202E-05 0.467494172240E-04 552 -0.163925882950E-05 0.300552861588E-04 553 -0.241288605992E-05 0.467496545367E-04 554 0.331571184522E-03 -0.694926097472E-02 555 -0.834754369605E-06 0.131474733694E-04 556 -0.164061659848E-05 0.300551528309E-04 557 -0.836473159910E-06 0.131472989873E-04 558 0.332773369337E-03 -0.697518794394E-02 559 0.332866366040E-03 -0.706942366365E-02 560 -0.243560329825E-05 0.476580410297E-04 561 -0.165719744409E-05 0.306732179546E-04 562 -0.243309883984E-05 0.476582841228E-04 563 0.333047696406E-03 -0.707384694121E-02 564 -0.849242019776E-06 0.134632072811E-04 565 -0.165860576215E-05 0.306730814030E-04 566 -0.851026974086E-06 0.134630283046E-04 567 0.334253494497E-03 -0.710022533662E-02 568 0.334376377551E-03 -0.719450112410E-02 569 -0.245640820795E-05 0.485743462299E-04 570 -0.167559071299E-05 0.312979628584E-04 571 -0.245381158803E-05 0.485745952135E-04 572 0.334557134474E-03 -0.719899231276E-02 573 -0.864109102248E-06 0.137844500562E-04 574 -0.167705079855E-05 0.312978230243E-04 575 -0.865961959484E-06 0.137842663853E-04 576 0.335766623083E-03 -0.722582350285E-02 577 0.335919844810E-03 -0.732015063685E-02 578 -0.247772540639E-05 0.494985223182E-04 579 -0.169444827645E-05 0.319296931166E-04 580 -0.247503439793E-05 0.494987773059E-04 581 0.336100006470E-03 -0.732470951819E-02 582 -0.879364175849E-06 0.141113456583E-04 583 -0.169596137022E-05 0.319295499395E-04 584 -0.881286712941E-06 0.141111571898E-04 585 0.337313263903E-03 -0.735199490061E-02 586 0.337497291426E-03 -0.744638483189E-02 587 -0.249956535945E-05 0.504307626332E-04 588 -0.171378009226E-05 0.325685846447E-04 589 -0.249677769230E-05 0.504310237420E-04 590 0.337676835222E-03 -0.745101117919E-02 591 -0.895016085364E-06 0.144440413126E-04 592 -0.171534745788E-05 0.325684380626E-04 593 -0.897010118396E-06 0.144438479405E-04 594 0.338893940880E-03 -0.747875218109E-02 595 0.339109256563E-03 -0.757321653804E-02 596 -0.252193887467E-05 0.513712644833E-04 597 -0.173359644649E-05 0.332148171484E-04 598 -0.251905223418E-05 0.513715318339E-04 599 0.339288159076E-03 -0.757791011596E-02 600 -0.911073971324E-06 0.147826876148E-04 601 -0.173521937120E-05 0.332146670974E-04 602 -0.913141356705E-06 0.147824892296E-04 603 0.340509193491E-03 -0.760610819448E-02 604 0.340756295390E-03 -0.770065878889E-02 605 -0.254485711270E-05 0.523202292770E-04 606 -0.175390796465E-05 0.338685742484E-04 607 -0.254186913839E-05 0.523205029939E-04 608 0.340934532354E-03 -0.770541935320E-02 609 -0.927547280204E-06 0.151274386439E-04 610 -0.175558775992E-05 0.338684206628E-04 611 -0.929689915883E-06 0.151272351330E-04 612 0.342159577224E-03 -0.773407599585E-02 613 0.342438979558E-03 -0.782872482885E-02 614 -0.256833159926E-05 0.532778626563E-04 615 -0.177472562327E-05 0.345300436094E-04 616 -0.256523988336E-05 0.532781428677E-04 617 0.342616525833E-03 -0.783355212608E-02 618 -0.944445775074E-06 0.154784520783E-04 619 -0.177646362552E-05 0.345298864216E-04 620 -0.946665601783E-06 0.154782433257E-04 621 0.343845664056E-03 -0.786266885121E-02 622 0.344157897698E-03 -0.795742811944E-02 623 -0.259237423765E-05 0.542443746354E-04 624 -0.179606076206E-05 0.351994170736E-04 625 -0.258917632364E-05 0.542446614736E-04 626 0.344334727231E-03 -0.796232188655E-02 627 -0.961779546703E-06 0.158358893171E-04 628 -0.179785833334E-05 0.351992562143E-04 629 -0.964078549237E-06 0.158356752033E-04 630 0.345568042942E-03 -0.799190024377E-02 631 0.345913655930E-03 -0.808678234569E-02 632 -0.261699732174E-05 0.552199797438E-04 633 -0.181792509651E-05 0.358768907994E-04 634 -0.261369070284E-05 0.552202733454E-04 635 0.346089741722E-03 -0.809174230973E-02 636 -0.979559025141E-06 0.161999156044E-04 637 -0.181978362525E-05 0.358767261971E-04 638 -0.981939233679E-06 0.161996960063E-04 639 0.347327320334E-03 -0.812178388043E-02 640 0.347706878402E-03 -0.821680142282E-02 641 -0.264221354957E-05 0.562048971748E-04 642 -0.184033073115E-05 0.365626654038E-04 643 -0.263879566713E-05 0.562051976803E-04 644 0.347882192471E-03 -0.822182730056E-02 645 -0.997794991811E-06 0.165707001587E-04 646 -0.184225163285E-05 0.365624969850E-04 647 -0.100025848328E-05 0.165704749495E-04 648 0.349124120714E-03 -0.825233369836E-02 649 0.349538207842E-03 -0.834749950306E-02 650 -0.266803603749E-05 0.571993509384E-04 651 -0.186329017325E-05 0.372569461108E-04 652 -0.266450427941E-05 0.571996584931E-04 653 0.349712721189E-03 -0.835259100062E-02 654 -0.101649859213E-05 0.169484163069E-04 655 -0.186527489129E-05 0.372567738001E-04 656 -0.101904749160E-05 0.169481853561E-04 657 0.350959087147E-03 -0.838356387188E-02 658 0.351408306141E-03 -0.847889098271E-02 659 -0.269447833495E-05 0.582035700206E-04 660 -0.188681634723E-05 0.379599429046E-04 661 -0.269083003401E-05 0.582038847740E-04 662 0.351581988706E-03 -0.848404779519E-02 663 -0.103568134867E-05 0.173332416229E-04 664 -0.188886635362E-05 0.379597666245E-04 665 -0.103831783080E-05 0.173330047961E-04 666 0.352832881864E-03 -0.851548881951E-02 667 0.353317854949E-03 -0.861099050944E-02 668 -0.272155443994E-05 0.592177885471E-04 669 -0.191092260961E-05 0.386718706885E-04 670 -0.271778687205E-05 0.592181106537E-04 671 0.353490675574E-03 -0.861621232046E-02 672 -0.105535517494E-05 0.177253580716E-04 673 -0.191303940582E-05 0.386716903592E-04 674 -0.105808146545E-05 0.177251152302E-04 675 0.354746186861E-03 -0.864812321126E-02 676 0.355267556307E-03 -0.874381298973E-02 677 -0.274927881509E-05 0.602422459543E-04 678 -0.193562276472E-05 0.393929494493E-04 679 -0.274538919753E-05 0.602425755732E-04 680 0.355439482690E-03 -0.874909947110E-02 681 -0.107553238971E-05 0.181249521575E-04 682 -0.193780788248E-05 0.393927649889E-04 683 -0.107835076695E-05 0.181247031588E-04 684 0.356699704523E-03 -0.878148197610E-02 685 0.357258133295E-03 -0.887737359670E-02 686 -0.277766640449E-05 0.612771871652E-04 687 -0.196093108101E-05 0.401234044280E-04 688 -0.277365189402E-05 0.612775244607E-04 689 0.357429131950E-03 -0.888272440791E-02 690 -0.109622573204E-05 0.185322150794E-04 691 -0.196318608316E-05 0.401232157521E-04 692 -0.109913852854E-05 0.185319597764E-04 693 0.358694158280E-03 -0.891558030975E-02 694 0.359290330712E-03 -0.901168777805E-02 695 -0.280673265124E-05 0.623228627721E-04 696 -0.198686230811E-05 0.408634662961E-04 697 -0.280259034223E-05 0.623232079136E-04 698 0.359460366918E-03 -0.901710256584E-02 699 -0.111744837695E-05 0.189473428906E-04 700 -0.198918878950E-05 0.408632733181E-04 701 -0.112045798104E-05 0.189470811320E-04 702 0.360730293284E-03 -0.905043368264E-02 703 0.361364915782E-03 -0.914677126430E-02 704 -0.283649351579E-05 0.633795292264E-04 705 -0.201343169474E-05 0.416133713392E-04 706 -0.283222043825E-05 0.633798823887E-04 707 0.361533953540E-03 -0.915224966222E-02 708 -0.113921395177E-05 0.193705366651E-04 709 -0.201583128308E-05 0.416131739700E-04 710 -0.114232280931E-05 0.193702682949E-04 711 0.362808877111E-03 -0.918605784817E-02 712 0.363482678890E-03 -0.928264007736E-02 713 -0.286696549514E-05 0.644474490351E-04 714 -0.204065500725E-05 0.423733616470E-04 715 -0.286255861266E-05 0.644478103985E-04 716 0.363650680870E-03 -0.928818170522E-02 717 -0.116153655330E-05 0.198020026701E-04 718 -0.204312936408E-05 0.423731597951E-04 719 -0.116474716937E-05 0.198017275276E-04 720 0.364930700503E-03 -0.932246885125E-02 721 0.365644434351E-03 -0.941931053927E-02 722 -0.289816564283E-05 0.655268909640E-04 723 -0.206854854916E-05 0.431436853104E-04 724 -0.289362185047E-05 0.655272607147E-04 725 0.365811361837E-03 -0.942491500270E-02 726 -0.118443076566E-05 0.202419525449E-04 727 -0.207109937078E-05 0.431434788816E-04 728 -0.118774570636E-05 0.202416704645E-04 729 0.367096578131E-03 -0.945968303706E-02 730 0.367851021201E-03 -0.955679928134E-02 731 -0.293011158991E-05 0.666181302496E-04 732 -0.209712918153E-05 0.439245966261E-04 733 -0.292542771203E-05 0.666185085796E-04 734 0.368016834042E-03 -0.956246617124E-02 735 -0.120791167904E-05 0.206906034868E-04 736 -0.209975819994E-05 0.439243855236E-04 737 -0.121133357333E-05 0.206903142980E-04 738 0.369307349391E-03 -0.959771706020E-02 739 0.370103304036E-03 -0.969512325354E-02 740 -0.296282156680E-05 0.677214488183E-04 741 -0.212641434418E-05 0.447163563090E-04 742 -0.295799435476E-05 0.677218359258E-04 743 0.370267960586E-03 -0.970085214550E-02 744 -0.123199490921E-05 0.211481784440E-04 745 -0.212912332814E-05 0.447161404333E-04 746 -0.123552645085E-05 0.211478819711E-04 747 0.371563879240E-03 -0.973658789401E-02 748 0.372402173877E-03 -0.983429973418E-02 749 -0.299631442618E-05 0.688371355140E-04 750 -0.215642207805E-05 0.455192317126E-04 751 -0.299134055605E-05 0.688375316036E-04 752 0.372565630934E-03 -0.984009018796E-02 753 -0.125669661805E-05 0.216149063162E-04 754 -0.215921283406E-05 0.455190109614E-04 755 -0.126034056754E-05 0.216146023781E-04 756 0.373867059057E-03 -0.987631284038E-02 757 0.374748549072E-03 -0.997434634000E-02 758 -0.303060966696E-05 0.699654863346E-04 759 -0.218717104841E-05 0.463334970582E-04 760 -0.302548573704E-05 0.699658916174E-04 761 0.374910761820E-03 -0.998019789889E-02 762 -0.128203353493E-05 0.220910221626E-04 763 -0.219004542182E-05 0.463332713264E-04 764 -0.128579272154E-05 0.220907105727E-04 765 0.376217807552E-03 -0.100169095397E-01 766 0.377143376241E-03 -0.101152810365E-01 767 -0.306572745929E-05 0.711068046773E-04 768 -0.221868056927E-05 0.471594336726E-04 769 -0.306044998765E-05 0.711072193714E-04 770 0.377304298181E-03 -0.101211932268E-01 771 -0.130802297913E-05 0.225767674189E-04 772 -0.222164044533E-05 0.471592028519E-04 773 -0.131190030301E-05 0.225764479849E-04 774 0.378617071706E-03 -0.101583959813E-01 775 0.379587631256E-03 -0.102571221488E-01 776 -0.310168867081E-05 0.722614015939E-04 777 -0.225097062888E-05 0.479973302353E-04 778 -0.309625409262E-05 0.722618259246E-04 779 0.379747214141E-03 -0.102630944789E-01 780 -0.133468288332E-05 0.230723901217E-04 781 -0.225401793389E-05 0.479970942147E-04 782 -0.133868131767E-05 0.230720626453E-04 783 0.381065827753E-03 -0.103007905142E-01 784 0.382082320270E-03 -0.103998883725E-01 785 -0.313851489405E-05 0.734295960560E-04 786 -0.228406191644E-05 0.488474830356E-04 787 -0.313291955896E-05 0.734300302556E-04 788 0.382240514031E-03 -0.104059203328E-01 789 -0.136203181813E-05 0.235781451428E-04 790 -0.228719861890E-05 0.488472417007E-04 791 -0.136615441143E-05 0.235778094197E-04 792 0.383565082203E-03 -0.104441118583E-01 793 0.384628480782E-03 -0.105435987857E-01 794 -0.317622847522E-05 0.746117152297E-04 795 -0.231797585005E-05 0.497101962395E-04 796 -0.317046864448E-05 0.746121595385E-04 797 0.384785233458E-03 -0.105496898471E-01 798 -0.139008901786E-05 0.240942944327E-04 799 -0.232120396184E-05 0.497099494728E-04 800 -0.139433889621E-05 0.240939502523E-04 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.528100995 30 atime=1623670096.528100995 30 ctime=1623670096.528100995 elk-7.2.42/tests/test_004/TEST_500.OUT_0000644002504400250440000000013514061636520020562 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.507612944006E-12 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.529100994 30 atime=1623670096.529100994 30 ctime=1623670096.529100994 elk-7.2.42/tests/test_004/TEST_510.OUT_0000644002504400250440000000014514061636520020564 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.324637504049 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.531100992 30 atime=1623670096.530100993 30 ctime=1623670096.531100992 elk-7.2.42/tests/test_004/TEST_705.OUT_0000644002504400250440000000010114061636520020562 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.532100991 30 atime=1623670096.532100991 30 ctime=1623670096.532100991 elk-7.2.42/tests/test_004/TEST_900.OUT_0000644002504400250440000000007014061636520020564 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 749 elk-7.2.42/tests/test_004/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.534100989 30 atime=1623670096.534100989 30 ctime=1623670096.534100989 elk-7.2.42/tests/test_004/TEST_910.OUT_0000644002504400250440000000144714061636520020576 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.206465308646 5 0.206465308646 6 -0.206465308646 7 0.412930617293 8 0.412930617293 9 -0.412930617293 10 0.412930617293 11 0.00000000000 12 0.00000000000 13 0.619395925939 14 0.206465308646 15 -0.206465308646 16 0.825861234586 17 0.412930617293 18 -0.412930617293 19 0.825861234586 20 0.00000000000 21 0.00000000000 22 0.825861234586 23 0.412930617293 24 0.00000000000 elk-7.2.42/tests/test_004/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015736 xustar0030 mtime=1623670096.536100987 30 atime=1623670096.535100988 30 ctime=1623670096.536100987 elk-7.2.42/tests/test_004/elk.in0000644002504400250440000000136014061636520017773 0ustar00dewhurstdewhurst00000000000000 tasks 0 120 121 180 185 186 187 500 test .true. mixtype 3 nxoapwlo 1 scissor 0.21 lmaxo 5 gmaxvr 0.0 nvbse 3 ncbse 3 gmaxrf 2.0 swidth 0.005 nempty 8 wplot 800 100 0 0.0 1.5 avec 3.80402 3.80402 0.00000 3.80402 0.00000 3.80402 0.00000 3.80402 3.80402 sppath '../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms 0.0000 0.0000 0.0000 0.0 0.0 0.0 : atposl, bfcmt 'F.in' : spfname 1 : natoms 0.5000 0.5000 0.5000 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 elk-7.2.42/tests/PaxHeaders.21776/test_0080000644000000000000000000000013214061636520014562 xustar0030 mtime=1623670096.549100975 30 atime=1623670096.537100986 30 ctime=1623670096.549100975 elk-7.2.42/tests/test_008/0000755002504400250440000000000014061636520016674 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.538100985 30 atime=1623670096.538100985 30 ctime=1623670096.538100985 elk-7.2.42/tests/test_008/TEST_500.OUT_0000644002504400250440000000013514061636520020566 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 238.639941981 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.540100984 30 atime=1623670096.540100984 30 ctime=1623670096.540100984 elk-7.2.42/tests/test_008/TEST_510.OUT_0000644002504400250440000000014514061636520020570 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.141876418301E-02 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.541100983 30 atime=1623670096.541100983 30 ctime=1623670096.541100983 elk-7.2.42/tests/test_008/TEST_400.OUT_0000644002504400250440000000014114061636520020562 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 51.9943489727 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.543100981 30 atime=1623670096.542100982 30 ctime=1623670096.543100981 elk-7.2.42/tests/test_008/TEST_450.OUT_0000644002504400250440000000014014061636520020566 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.179711098243E-17 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000012714061636520016531 xustar0029 mtime=1623670096.54410098 29 atime=1623670096.54410098 29 ctime=1623670096.54410098 elk-7.2.42/tests/test_008/TEST_000.OUT_0000644002504400250440000000012614061636520020561 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -2540.92553041 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.546100978 30 atime=1623670096.545100979 30 ctime=1623670096.546100978 elk-7.2.42/tests/test_008/TEST_705.OUT_0000644002504400250440000000010114061636520020566 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 96 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.547100977 30 atime=1623670096.547100977 30 ctime=1623670096.547100977 elk-7.2.42/tests/test_008/TEST_900.OUT_0000644002504400250440000000007014061636520020570 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 8385 elk-7.2.42/tests/test_008/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.548100976 30 atime=1623670096.548100976 30 ctime=1623670096.548100976 elk-7.2.42/tests/test_008/TEST_910.OUT_0000644002504400250440000000174114061636520020577 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 30 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.237999443454 5 0.00000000000 6 0.00000000000 7 0.475998886908 8 0.00000000000 9 0.00000000000 10 0.237999443454 11 0.237999443454 12 0.00000000000 13 0.475998886908 14 0.237999443454 15 0.00000000000 16 0.475998886908 17 0.475998886908 18 0.00000000000 19 0.237999443454 20 0.237999443454 21 0.237999443454 22 0.475998886908 23 0.237999443454 24 0.237999443454 25 0.475998886908 26 0.475998886908 27 0.237999443454 28 0.475998886908 29 0.475998886908 30 0.475998886908 elk-7.2.42/tests/test_008/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015742 xustar0030 mtime=1623670096.550100974 30 atime=1623670096.550100974 30 ctime=1623670096.550100974 elk-7.2.42/tests/test_008/elk.in0000644002504400250440000000114314061636520017776 0ustar00dewhurstdewhurst00000000000000 ! Antiferromagnetic bcc iron example with fixed spin moment in muffin-tin. tasks 0 500 test .true. mixtype 1 fsmtype 2 mommtfix 1 1 0.0 0.0 1.0 : is, ia, mommtfix 1 2 0.0 0.0 -1.0 : is, ia, mommtfix swidth 0.01 rgkmax 6.0 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale 6.6 sppath '../../species/' atoms 1 : nspecies 'Fe.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.001 : atposl, bfcmt 0.5 0.5 0.5 0.0 0.0 -0.001 ngridk 4 4 4 elk-7.2.42/tests/PaxHeaders.21776/test_0120000644000000000000000000000013014061636520014553 xustar0029 mtime=1623670096.56510096 30 atime=1623670096.551100973 29 ctime=1623670096.56510096 elk-7.2.42/tests/test_012/0000755002504400250440000000000014061636520016667 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.552100973 30 atime=1623670096.552100973 30 ctime=1623670096.552100973 elk-7.2.42/tests/test_012/TEST_400.OUT_0000644002504400250440000000014114061636520020555 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 25.9808139618 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016520 xustar0030 mtime=1623670096.554100971 30 atime=1623670096.554100971 30 ctime=1623670096.554100971 elk-7.2.42/tests/test_012/TEST_000.OUT_0000644002504400250440000000012614061636520020554 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -483.830347581 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000012714061636520016531 xustar0029 mtime=1623670096.55510097 29 atime=1623670096.55510097 29 ctime=1623670096.55510097 elk-7.2.42/tests/test_012/TEST_500.OUT_0000644002504400250440000000013514061636520020561 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 126.871484710 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.557100968 30 atime=1623670096.556100969 30 ctime=1623670096.557100968 elk-7.2.42/tests/test_012/TEST_510.OUT_0000644002504400250440000000014514061636520020563 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.361958276467E-01 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.558100967 30 atime=1623670096.558100967 30 ctime=1623670096.558100967 elk-7.2.42/tests/test_012/TEST_910.OUT_0000644002504400250440000000144714061636520020575 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.205241634672 5 0.205241634672 6 -0.205241634672 7 0.410483269343 8 0.410483269343 9 -0.410483269343 10 0.410483269343 11 0.00000000000 12 0.00000000000 13 0.615724904015 14 0.205241634672 15 -0.205241634672 16 0.820966538686 17 0.410483269343 18 -0.410483269343 19 0.820966538686 20 0.00000000000 21 0.00000000000 22 0.820966538686 23 0.410483269343 24 0.00000000000 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.560100965 30 atime=1623670096.559100966 30 ctime=1623670096.560100965 elk-7.2.42/tests/test_012/TEST_705.OUT_0000644002504400250440000000010114061636520020561 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.561100964 30 atime=1623670096.561100964 30 ctime=1623670096.561100964 elk-7.2.42/tests/test_012/TEST_900.OUT_0000644002504400250440000000007014061636520020563 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 3287 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.563100962 30 atime=1623670096.562100963 30 ctime=1623670096.563100962 elk-7.2.42/tests/test_012/TEST_750.OUT_0000644002504400250440000000036114061636520020571 0ustar00dewhurstdewhurst00000000000000'total forces' 2 6 0.100000000000E-02 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 elk-7.2.42/tests/test_012/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015735 xustar0030 mtime=1623670096.564100961 30 atime=1623670096.564100961 30 ctime=1623670096.564100961 elk-7.2.42/tests/test_012/elk.in0000644002504400250440000000126014061636520017771 0ustar00dewhurstdewhurst00000000000000 ! Phonon and electron-phonon coupling test for Nb. tasks 0 200 220 240 245 250 500 test .true. mixtype 3 wplot 50 100 2 0.0 1.0 ngridq 2 2 2 radkpt 20.0 ngridk 4 4 4 rgkmax 6.0 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.8267 sppath '../../species/' atoms 1 : nspecies 'Al.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt plot1d 9 400 0.5 0.5 0.5 0.25 0.25 0.25 0.0 0.0 0.0 -0.5 0.5 0.5 -0.5 0.5 0.0 -0.75 0.25 0.25 -0.5 0.5 0.0 0.0 0.0 0.0 0.5 0.5 0.0 elk-7.2.42/tests/test_012/PaxHeaders.21776/TEST_251.OUT_0000644000000000000000000000012714061636520016534 xustar0029 mtime=1623670096.56510096 29 atime=1623670096.56510096 29 ctime=1623670096.56510096 elk-7.2.42/tests/test_012/TEST_251.OUT_0000644002504400250440000000016314061636520020565 0ustar00dewhurstdewhurst00000000000000'electron-phonon coupling constant, lambda' 2 1 0.500000000000E-01 1 11.8169157388 elk-7.2.42/tests/PaxHeaders.21776/test_0160000644000000000000000000000013214061636520014561 xustar0030 mtime=1623670096.585100942 30 atime=1623670096.566100959 30 ctime=1623670096.585100942 elk-7.2.42/tests/test_016/0000755002504400250440000000000014061636520016673 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.567100958 30 atime=1623670096.567100958 30 ctime=1623670096.567100958 elk-7.2.42/tests/test_016/TEST_500.OUT_0000644002504400250440000000013514061636520020565 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 52.4280948128 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.569100957 30 atime=1623670096.569100957 30 ctime=1623670096.569100957 elk-7.2.42/tests/test_016/TEST_510.OUT_0000644002504400250440000000014514061636520020567 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.212820897505E-01 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.570100956 30 atime=1623670096.570100956 30 ctime=1623670096.570100956 elk-7.2.42/tests/test_016/TEST_000.OUT_0000644002504400250440000000012614061636520020560 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -28450.0801749 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_820.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.572100954 30 atime=1623670096.572100954 30 ctime=1623670096.572100954 elk-7.2.42/tests/test_016/TEST_820.OUT_0000644002504400250440000000014014061636520020566 0ustar00dewhurstdewhurst00000000000000'Norm of tensor moments' 2 1 0.100000000000E-03 1 10.4191777592 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_830.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.573100953 30 atime=1623670096.573100953 30 ctime=1623670096.573100953 elk-7.2.42/tests/test_016/TEST_830.OUT_0000644002504400250440000000016614061636520020577 0ustar00dewhurstdewhurst00000000000000'Norm of DFT+U Hartree-Fock exchange energies' 2 1 0.100000000000E-03 1 0.673450120995E-01 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.575100951 30 atime=1623670096.574100952 30 ctime=1623670096.575100951 elk-7.2.42/tests/test_016/TEST_705.OUT_0000644002504400250440000000010114061636520020565 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 6 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000012714061636520016541 xustar0029 mtime=1623670096.57610095 29 atime=1623670096.57610095 29 ctime=1623670096.57610095 elk-7.2.42/tests/test_016/TEST_900.OUT_0000644002504400250440000000007014061636520020567 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7991 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.578100948 30 atime=1623670096.577100949 30 ctime=1623670096.578100948 elk-7.2.42/tests/test_016/TEST_910.OUT_0000644002504400250440000000023414061636520020572 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 3 0.100000000000E-07 1 0.530584787921 2 0.227393480538 3 0.757978268459E-01 elk-7.2.42/tests/test_016/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015741 xustar0030 mtime=1623670096.579100947 30 atime=1623670096.579100947 30 ctime=1623670096.579100947 elk-7.2.42/tests/test_016/elk.in0000644002504400250440000000132214061636520017774 0ustar00dewhurstdewhurst00000000000000 ! DFT+U test tasks 0 400 500 maxscl 2 test .true. swidth 0.05 dft+u 3 5 : dftu,inpdftu 1 3 0.1469972 : is, l, U fixed spinpol .true. spinorb .true. scale 10.36175041 avec 0.0 0.5 0.5 0.5 0.0 0.5 0.5 0.5 0.0 atoms 2 : nspecies 'U.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'S.in' : spfname 1 : natoms 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt bfieldc -2.0 -2.0 -2.0 reducebf 0.5 sppath '../../species/' ngridk 1 1 1 vkloff 0.25 0.5 0.625 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.581100946 30 atime=1623670096.580100946 30 ctime=1623670096.581100946 elk-7.2.42/tests/test_016/TEST_400.OUT_0000644002504400250440000000014114061636520020561 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 107.995994386 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.582100945 30 atime=1623670096.582100945 30 ctime=1623670096.582100945 elk-7.2.42/tests/test_016/TEST_450.OUT_0000644002504400250440000000014014061636520020565 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 2.25873743538 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.583100944 30 atime=1623670096.583100944 30 ctime=1623670096.583100944 elk-7.2.42/tests/test_016/TEST_800.OUT_0000644002504400250440000000014414061636520020570 0ustar00dewhurstdewhurst00000000000000'DFT+U energy for each atom' 2 1 0.100000000000E-03 1 0.284223549814E-02 elk-7.2.42/tests/test_016/PaxHeaders.21776/TEST_810.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.585100942 30 atime=1623670096.585100942 30 ctime=1623670096.585100942 elk-7.2.42/tests/test_016/TEST_810.OUT_0000644002504400250440000000475514061636520020605 0ustar00dewhurstdewhurst00000000000000'U and J parameters' 2 80 0.100000000000E-03 1 0.146997241390 2 0.221042638132E-01 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 7 0.00000000000 8 0.00000000000 9 0.00000000000 10 0.00000000000 11 0.00000000000 12 0.00000000000 13 0.00000000000 14 0.00000000000 15 0.00000000000 16 0.00000000000 17 0.00000000000 18 0.00000000000 19 0.00000000000 20 0.00000000000 21 0.00000000000 22 0.00000000000 23 0.00000000000 24 0.00000000000 25 0.00000000000 26 0.00000000000 27 0.00000000000 28 0.00000000000 29 0.00000000000 30 0.00000000000 31 0.00000000000 32 0.00000000000 33 0.00000000000 34 0.00000000000 35 0.00000000000 36 0.00000000000 37 0.00000000000 38 0.00000000000 39 0.00000000000 40 0.00000000000 41 0.00000000000 42 0.00000000000 43 0.00000000000 44 0.00000000000 45 0.00000000000 46 0.00000000000 47 0.00000000000 48 0.00000000000 49 0.00000000000 50 0.00000000000 51 0.00000000000 52 0.00000000000 53 0.00000000000 54 0.00000000000 55 0.00000000000 56 0.00000000000 57 0.00000000000 58 0.00000000000 59 0.00000000000 60 0.00000000000 61 0.00000000000 62 0.00000000000 63 0.00000000000 64 0.00000000000 65 0.00000000000 66 0.00000000000 67 0.00000000000 68 0.00000000000 69 0.00000000000 70 0.00000000000 71 0.00000000000 72 0.00000000000 73 0.00000000000 74 0.00000000000 75 0.00000000000 76 0.00000000000 77 0.00000000000 78 0.00000000000 79 0.00000000000 80 0.00000000000 elk-7.2.42/tests/PaxHeaders.21776/test_0200000644000000000000000000000013214061636520014554 xustar0030 mtime=1623670096.599100929 30 atime=1623670096.586100941 30 ctime=1623670096.599100929 elk-7.2.42/tests/test_020/0000755002504400250440000000000014061636520016666 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_610.OUT_0000644000000000000000000000012714061636520016532 xustar0029 mtime=1623670096.58710094 29 atime=1623670096.58710094 29 ctime=1623670096.58710094 elk-7.2.42/tests/test_020/TEST_610.OUT_0000644002504400250440000001417514061636520020573 0ustar00dewhurstdewhurst00000000000000'total GW spectral function' 2 200 0.500000000000E-01 1 0.643445764404 2 0.634496885783 3 0.625844894078 4 0.617478292124 5 0.609386173229 6 0.601558185456 7 0.593984498437 8 0.586655772542 9 0.579563130200 10 0.572698129338 11 0.566052738533 12 0.559619313171 13 0.553390574491 14 0.547359589344 15 0.541519751114 16 0.535864762130 17 0.530388617195 18 0.525085588112 19 0.519950209198 20 0.514977263757 21 0.510161771386 22 0.505498975985 23 0.500984334727 24 0.496613507400 25 0.492382346704 26 0.488286888659 27 0.484323344320 28 0.480488091242 29 0.476777665882 30 0.473188756412 31 0.469718195628 32 0.466362954834 33 0.463120138199 34 0.459986975100 35 0.456960817219 36 0.454039131611 37 0.451219498385 38 0.448499601881 39 0.445877230901 40 0.443350272199 41 0.440916707392 42 0.438574609208 43 0.436322138340 44 0.434157540376 45 0.432079142451 46 0.430085350649 47 0.428174647667 48 0.426345589667 49 0.424596804436 50 0.422926988905 51 0.421334909020 52 0.419819393644 53 0.418379336592 54 0.417013693832 55 0.415721481460 56 0.414501774911 57 0.413353707223 58 0.412276467951 59 0.411269302094 60 0.410331509252 61 0.409462442896 62 0.408661508682 63 0.407928164638 64 0.407261920316 65 0.406662336275 66 0.406129023493 67 0.405661643186 68 0.405259906610 69 0.404923575312 70 0.404652458870 71 0.404446419354 72 0.404305367124 73 0.404229263161 74 0.404218118908 75 0.404271997129 76 0.404391011639 77 0.404575329019 78 0.404825168763 79 0.405140804166 80 0.405522563332 81 0.405970830530 82 0.406486047549 83 0.407068714463 84 0.407719392132 85 0.408438703201 86 0.409227334426 87 0.410086038562 88 0.411015636872 89 0.412017021259 90 0.413091155422 91 0.414239080322 92 0.415461923226 93 0.416760881145 94 0.418137246583 95 0.419592401941 96 0.421127821930 97 0.422745085946 98 0.424445877347 99 0.426231984306 100 0.428105315366 101 0.430067903637 102 0.432121908808 103 0.434269633664 104 0.436513525216 105 0.438856189158 106 0.441300432830 107 0.443849088202 108 0.446505397880 109 0.449272650059 110 0.452154354578 111 0.455154202022 112 0.458276278637 113 0.461525075550 114 0.464905102620 115 0.468420372617 116 0.472077037859 117 0.475880834279 118 0.479837182810 119 0.483954943405 120 0.488242530740 121 0.492697460272 122 0.497335827852 123 0.502164365068 124 0.507193380801 125 0.512434249440 126 0.517894057464 127 0.523586662469 128 0.529524787199 129 0.535722821461 130 0.542195551085 131 0.548959876014 132 0.556034996329 133 0.563440036360 134 0.571196888751 135 0.579332183120 136 0.587871919564 137 0.596847414301 138 0.606293244795 139 0.616248062611 140 0.626757523145 141 0.637831129327 142 0.649560890412 143 0.661907885803 144 0.675213479387 145 0.689381706714 146 0.704498980954 147 0.720694662239 148 0.738110401756 149 0.756890768551 150 0.777236323055 151 0.799364197706 152 0.823546731428 153 0.850105787007 154 0.879435667844 155 0.911991216059 156 0.948341465883 157 0.989205491527 158 1.03540574342 159 1.08780136039 160 1.14739475786 161 1.21502400700 162 1.29122928021 163 1.37555416652 164 1.46589875314 165 1.55774848665 166 1.64377989402 167 1.71534408660 168 1.76547581361 169 1.79272368186 170 1.80210537580 171 1.80276454326 172 1.80426881857 173 1.81409053279 174 1.83697250673 175 1.87564074712 176 1.93197121320 177 2.00717094975 178 2.10297527018 179 2.22132711926 180 2.36506154232 181 2.53789076771 182 2.74456723882 183 2.99097553037 184 3.28408438872 185 3.63162535830 186 4.04113989031 187 4.51795689945 188 5.06143439827 189 5.65910047148 190 6.27974167180 191 6.86971619164 192 7.35985356461 193 7.68910642343 194 7.83322929379 195 7.81664509741 196 7.69482426520 197 7.52031167146 198 7.31931797684 199 7.09121022351 200 6.82610762462 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.589100938 30 atime=1623670096.589100938 30 ctime=1623670096.589100938 elk-7.2.42/tests/test_020/TEST_400.OUT_0000644002504400250440000000014114061636520020554 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 12.0281676211 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016517 xustar0030 mtime=1623670096.590100937 30 atime=1623670096.590100937 30 ctime=1623670096.590100937 elk-7.2.42/tests/test_020/TEST_000.OUT_0000644002504400250440000000012614061636520020553 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -106.905850836 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.592100935 30 atime=1623670096.592100935 30 ctime=1623670096.592100935 elk-7.2.42/tests/test_020/TEST_800.OUT_0000644002504400250440000000026414061636520020566 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 3 0.100000000000E-07 1 216.963990922 2 28.1249542511 3 19.7640709318 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.593100934 30 atime=1623670096.593100934 30 ctime=1623670096.593100934 elk-7.2.42/tests/test_020/TEST_500.OUT_0000644002504400250440000000013514061636520020560 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.115177788557E-02 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.594100934 30 atime=1623670096.594100934 30 ctime=1623670096.594100934 elk-7.2.42/tests/test_020/TEST_510.OUT_0000644002504400250440000000014514061636520020562 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.323820711187 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.596100932 30 atime=1623670096.595100932 30 ctime=1623670096.596100932 elk-7.2.42/tests/test_020/TEST_705.OUT_0000644002504400250440000000010114061636520020560 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.597100931 30 atime=1623670096.597100931 30 ctime=1623670096.597100931 elk-7.2.42/tests/test_020/TEST_900.OUT_0000644002504400250440000000007014061636520020562 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 3215 elk-7.2.42/tests/test_020/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000012714061636520016535 xustar0029 mtime=1623670096.59810093 29 atime=1623670096.59810093 29 ctime=1623670096.59810093 elk-7.2.42/tests/test_020/TEST_910.OUT_0000644002504400250440000000144714061636520020574 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.206465308646 5 0.206465308646 6 -0.206465308646 7 0.412930617293 8 0.412930617293 9 -0.412930617293 10 0.412930617293 11 0.00000000000 12 0.00000000000 13 0.619395925939 14 0.206465308646 15 -0.206465308646 16 0.825861234586 17 0.412930617293 18 -0.412930617293 19 0.825861234586 20 0.00000000000 21 0.00000000000 22 0.825861234586 23 0.412930617293 24 0.00000000000 elk-7.2.42/tests/test_020/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015734 xustar0030 mtime=1623670096.599100929 30 atime=1623670096.599100929 30 ctime=1623670096.599100929 elk-7.2.42/tests/test_020/elk.in0000644002504400250440000000052714061636520017775 0ustar00dewhurstdewhurst00000000000000 tasks 0 600 610 500 test .true. gmaxrf 3.0 tempk 5000.0 nempty 6 wplot 200 100 0 -0.1 0.3 avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../species/' atoms 2 'Li.in' 1 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 ngridk 4 4 4 ngridq 2 2 2 elk-7.2.42/tests/PaxHeaders.21776/test_0240000644000000000000000000000013214061636520014560 xustar0030 mtime=1623670096.610100919 30 atime=1623670096.601100927 30 ctime=1623670096.610100919 elk-7.2.42/tests/test_024/0000755002504400250440000000000014061636520016672 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.602100926 30 atime=1623670096.602100926 30 ctime=1623670096.602100926 elk-7.2.42/tests/test_024/TEST_705.OUT_0000644002504400250440000000010114061636520020564 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 2 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.603100925 30 atime=1623670096.603100925 30 ctime=1623670096.603100925 elk-7.2.42/tests/test_024/TEST_900.OUT_0000644002504400250440000000007014061636520020566 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 22257 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.605100923 30 atime=1623670096.604100924 30 ctime=1623670096.605100923 elk-7.2.42/tests/test_024/TEST_910.OUT_0000644002504400250440000000052614061636520020575 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 9 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.338173181022 5 -0.195244417682 6 0.00000000000 7 0.676346362044 8 0.00000000000 9 0.00000000000 elk-7.2.42/tests/test_024/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015740 xustar0030 mtime=1623670096.606100922 30 atime=1623670096.606100922 30 ctime=1623670096.606100922 elk-7.2.42/tests/test_024/elk.in0000644002504400250440000000100514061636520017771 0ustar00dewhurstdewhurst00000000000000 tasks 0 500 test .true. rgkmax 6.0 lmaxi 3 maxscl 2 ngridk 2 2 1 avec 4.644946479927 -8.045281629256 0.0 4.644946479927 8.045281629256 0.0 0.0 0.0 10.21472485866 sppath '../../species/' atoms 2 'Si.in' 3 0.4650 0.0000 0.0000 0.0000 0.4650 0.666666667 0.5350 0.5350 0.333333333 'O.in' 6 0.415 0.272 0.1200 0.728 0.143 0.786666667 0.857 0.585 0.453333333 0.272 0.415 0.546666667 0.143 0.728 0.8800 0.585 0.857 0.213333333 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.607100921 30 atime=1623670096.607100921 30 ctime=1623670096.607100921 elk-7.2.42/tests/test_024/TEST_500.OUT_0000644002504400250440000000013514061636520020564 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.551428634218E-11 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012714061636520016535 xustar0029 mtime=1623670096.60810092 29 atime=1623670096.60810092 29 ctime=1623670096.60810092 elk-7.2.42/tests/test_024/TEST_510.OUT_0000644002504400250440000000014514061636520020566 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.287035111991 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.610100919 30 atime=1623670096.609100919 30 ctime=1623670096.610100919 elk-7.2.42/tests/test_024/TEST_400.OUT_0000644002504400250440000000014114061636520020560 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 89.9132303250 elk-7.2.42/tests/test_024/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.611100918 30 atime=1623670096.611100918 30 ctime=1623670096.611100918 elk-7.2.42/tests/test_024/TEST_000.OUT_0000644002504400250440000000012614061636520020557 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1334.10496730 elk-7.2.42/tests/PaxHeaders.21776/test_0260000644000000000000000000000013214061636520014562 xustar0030 mtime=1623670096.625100905 30 atime=1623670096.612100917 30 ctime=1623670096.625100905 elk-7.2.42/tests/test_026/0000755002504400250440000000000014061636520016674 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_026/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015742 xustar0030 mtime=1623670096.613100916 30 atime=1623670096.613100916 30 ctime=1623670096.613100916 elk-7.2.42/tests/test_026/elk.in0000644002504400250440000000104414061636520017776 0ustar00dewhurstdewhurst00000000000000 ! Twice-integrated electron momentum density (EMD) plot for ferromagnetic Ni. tasks 0 170 171 500 test .true. plot1d 2 10 0.0 0.0 0.0 1.0 1.0 0.0 hkmax 4.d0 ngridk 8 8 8 spinpol .true. bfieldc 0.0 0.0 -0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.322 sppath '../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.614100915 30 atime=1623670096.614100915 30 ctime=1623670096.614100915 elk-7.2.42/tests/test_026/TEST_705.OUT_0000644002504400250440000000010114061636520020566 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.616100913 30 atime=1623670096.615100914 30 ctime=1623670096.616100913 elk-7.2.42/tests/test_026/TEST_900.OUT_0000644002504400250440000000007014061636520020570 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2109 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.617100912 30 atime=1623670096.617100912 30 ctime=1623670096.617100912 elk-7.2.42/tests/test_026/TEST_910.OUT_0000644002504400250440000000531014061636520020573 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 87 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.118211644100 5 0.118211644100 6 -0.118211644100 7 0.236423288199 8 0.236423288199 9 -0.236423288199 10 0.354634932299 11 0.354634932299 12 -0.354634932299 13 0.472846576398 14 0.472846576398 15 -0.472846576398 16 0.236423288199 17 0.00000000000 18 0.00000000000 19 0.354634932299 20 0.118211644100 21 -0.118211644100 22 0.472846576398 23 0.236423288199 24 -0.236423288199 25 0.591058220498 26 0.354634932299 27 -0.354634932299 28 0.709269864597 29 0.472846576398 30 -0.472846576398 31 0.827481508697 32 0.591058220498 33 -0.591058220498 34 0.945693152796 35 0.709269864597 36 -0.709269864597 37 0.472846576398 38 0.00000000000 39 0.00000000000 40 0.591058220498 41 0.118211644100 42 -0.118211644100 43 0.709269864597 44 0.236423288199 45 -0.236423288199 46 0.827481508697 47 0.354634932299 48 -0.354634932299 49 0.945693152796 50 0.472846576398 51 -0.472846576398 52 0.709269864597 53 0.138777878078E-16 54 -0.138777878078E-16 55 0.827481508697 56 0.118211644100 57 -0.118211644100 58 0.945693152796 59 0.236423288199 60 -0.236423288199 61 0.945693152796 62 0.00000000000 63 0.00000000000 64 0.472846576398 65 0.236423288199 66 0.00000000000 67 0.591058220498 68 0.354634932299 69 -0.118211644100 70 0.709269864597 71 0.472846576398 72 -0.236423288199 73 0.709269864597 74 0.236423288199 75 -0.138777878078E-16 76 0.827481508697 77 0.354634932299 78 -0.118211644100 79 0.945693152796 80 0.472846576398 81 -0.236423288199 82 0.945693152796 83 0.236423288199 84 0.00000000000 85 0.945693152796 86 0.472846576398 87 0.00000000000 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.618100911 30 atime=1623670096.618100911 30 ctime=1623670096.618100911 elk-7.2.42/tests/test_026/TEST_500.OUT_0000644002504400250440000000013514061636520020566 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 50.8063077715 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012714061636520016537 xustar0029 mtime=1623670096.61910091 29 atime=1623670096.61910091 29 ctime=1623670096.61910091 elk-7.2.42/tests/test_026/TEST_510.OUT_0000644002504400250440000000014514061636520020570 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.137832582520E-02 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.621100908 30 atime=1623670096.620100909 30 ctime=1623670096.621100908 elk-7.2.42/tests/test_026/TEST_400.OUT_0000644002504400250440000000014114061636520020562 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9938369951 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.622100907 30 atime=1623670096.622100907 30 ctime=1623670096.622100907 elk-7.2.42/tests/test_026/TEST_450.OUT_0000644002504400250440000000014014061636520020566 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.698965619447 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.623100907 30 atime=1623670096.623100907 30 ctime=1623670096.623100907 elk-7.2.42/tests/test_026/TEST_000.OUT_0000644002504400250440000000012614061636520020561 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1518.39244469 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_170.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.625100905 30 atime=1623670096.624100906 30 ctime=1623670096.625100905 elk-7.2.42/tests/test_026/TEST_170.OUT_0000644002504400250440000000516014061636520020574 0ustar00dewhurstdewhurst00000000000000'electron momentum density' 2 84 0.100000000000E-03 1 0.628149607360 2 0.152157226560 3 0.628149456924 4 0.398371096365 5 0.152154705657 6 0.398371108518 7 0.228537399096 8 0.628149389482 9 0.228536520868 10 0.228538735058 11 0.113953490963 12 0.228535382092 13 0.628149401274 14 0.398371109990 15 0.182034761119 16 0.597158412286E-01 17 0.182034752787 18 0.426972176817E-01 19 0.228535146045 20 0.946585628685E-01 21 0.228538670065 22 0.597162166796E-01 23 0.956076445109E-01 24 0.152156459300 25 0.398371103635 26 0.946600965435E-01 27 0.152155287565 28 0.597166546672E-01 29 0.152154761714 30 0.392637652514E-01 31 0.496020913148E-01 32 0.113953493262 33 0.781273825605E-01 34 0.946582967607E-01 35 0.496018566021E-01 36 0.388402390487E-01 37 0.388410374161E-01 38 0.113953501407 39 0.228537422826 40 0.152157034479 41 0.956076447696E-01 42 0.956076429119E-01 43 0.182034754031 44 0.392636888277E-01 45 0.182034769335 46 0.946602768470E-01 47 0.228536583927 48 0.597153645518E-01 49 0.781273839199E-01 50 0.152155386528 51 0.496021401143E-01 52 0.496017243591E-01 53 0.152156621576 54 0.946585311740E-01 55 0.946600155805E-01 56 0.392640744618E-01 57 0.781273808103E-01 58 0.113953501913 59 0.392633923090E-01 60 0.946582989504E-01 61 0.426972274934E-01 62 0.388410151816E-01 63 0.496017645439E-01 64 0.496020699752E-01 65 0.426972232466E-01 66 0.388402434729E-01 67 0.597153706563E-01 68 0.946603162069E-01 69 0.597166809046E-01 70 0.392640654979E-01 71 0.388410064623E-01 72 0.426972250276E-01 73 0.388402485692E-01 74 0.392633754605E-01 75 0.781273811226E-01 76 0.597157668532E-01 77 0.597162453737E-01 78 0.956076358982E-01 79 0.388402572691E-01 80 0.496021741329E-01 81 0.496017418498E-01 82 0.388410291113E-01 83 0.392637581665E-01 84 0.392636960683E-01 elk-7.2.42/tests/test_026/PaxHeaders.21776/TEST_171.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.626100904 30 atime=1623670096.626100904 30 ctime=1623670096.626100904 elk-7.2.42/tests/test_026/TEST_171.OUT_0000644002504400250440000000573114061636520020601 0ustar00dewhurstdewhurst00000000000000'integrated EMD' 2 96 0.100000000000E-03 1 0.220450032485E-01 2 0.632822354453E-01 3 0.101418039214 4 0.134024557527 5 0.165793304400 6 0.196798698041 7 0.228647435925 8 0.259312754536 9 0.286260464430 10 0.310402889286 11 0.336895815110 12 0.366555755147 13 0.399441185409 14 0.433418304813 15 0.470219243082 16 0.516557258816 17 0.571068068629 18 0.631662762747 19 0.698730640881 20 0.775594219122 21 0.859949239200 22 0.946929986052 23 1.03539972735 24 1.11971410289 25 1.20492281464 26 1.29394564860 27 1.38908218050 28 1.48576071568 29 1.57748567452 30 1.64725200873 31 1.71427032148 32 1.78646088630 33 1.87576194119 34 1.97763085545 35 2.07409183623 36 2.16698982012 37 2.28048907716 38 2.47843202938 39 2.74658825881 40 3.05483199931 41 3.32855995228 42 3.58950175720 43 3.82723837461 44 3.97779352745 45 4.09758173742 46 4.18994665308 47 4.27139912642 48 4.35521803568 49 4.35521803506 50 4.27139904625 51 4.18994602850 52 4.09758032984 53 3.97779215830 54 3.82723803830 55 3.58950182080 56 3.32856011301 57 3.05483234047 58 2.74658840598 59 2.47843210999 60 2.28048907468 61 2.16698986180 62 2.07409179712 63 1.97763089886 64 1.87576204429 65 1.78646096752 66 1.71426997903 67 1.64725181411 68 1.57748564079 69 1.48576126172 70 1.38908497718 71 1.29395112449 72 1.20492560743 73 1.11971494413 74 1.03540027236 75 0.946930841764 76 0.859949848546 77 0.775594207932 78 0.698730566092 79 0.631662650831 80 0.571068001014 81 0.516557222047 82 0.470219243810 83 0.433418312590 84 0.399441195618 85 0.366555774841 86 0.336895834576 87 0.310402919399 88 0.286260365464 89 0.259312441568 90 0.228647124709 91 0.196798561853 92 0.165793157238 93 0.134024235729 94 0.101417719776 95 0.632820944802E-01 96 0.220449756519E-01 elk-7.2.42/tests/PaxHeaders.21776/test_0220000644000000000000000000000013214061636520014556 xustar0030 mtime=1623670096.640100891 30 atime=1623670096.626100904 30 ctime=1623670096.640100891 elk-7.2.42/tests/test_022/0000755002504400250440000000000014061636520016670 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.628100902 30 atime=1623670096.628100902 30 ctime=1623670096.628100902 elk-7.2.42/tests/test_022/TEST_900.OUT_0000644002504400250440000000007014061636520020564 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2109 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.629100901 30 atime=1623670096.629100901 30 ctime=1623670096.629100901 elk-7.2.42/tests/test_022/TEST_910.OUT_0000644002504400250440000001052214061636520020570 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 141 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.943421217294E-01 5 0.943421217294E-01 6 -0.943421217294E-01 7 0.188684243459 8 0.188684243459 9 -0.188684243459 10 0.283026365188 11 0.283026365188 12 -0.283026365188 13 0.377368486918 14 0.377368486918 15 -0.377368486918 16 0.471710608647 17 0.471710608647 18 -0.471710608647 19 0.188684243459 20 -0.308963289789E-17 21 0.308963289789E-17 22 0.283026365188 23 0.943421217294E-01 24 -0.943421217294E-01 25 0.377368486918 26 0.188684243459 27 -0.188684243459 28 0.471710608647 29 0.283026365188 30 -0.283026365188 31 0.566052730377 32 0.377368486918 33 -0.377368486918 34 0.660394852106 35 0.471710608647 36 -0.471710608647 37 0.754736973835 38 0.566052730377 39 -0.566052730377 40 0.849079095565 41 0.660394852106 42 -0.660394852106 43 0.943421217294 44 0.754736973835 45 -0.754736973835 46 0.377368486918 47 -0.617926579578E-17 48 0.617926579578E-17 49 0.471710608647 50 0.943421217294E-01 51 -0.943421217294E-01 52 0.566052730377 53 0.188684243459 54 -0.188684243459 55 0.660394852106 56 0.283026365188 57 -0.283026365188 58 0.754736973835 59 0.377368486918 60 -0.377368486918 61 0.849079095565 62 0.471710608647 63 -0.471710608647 64 0.943421217294 65 0.566052730377 66 -0.566052730377 67 0.566052730377 68 -0.247170631831E-16 69 0.247170631831E-16 70 0.660394852106 71 0.943421217294E-01 72 -0.943421217294E-01 73 0.754736973835 74 0.188684243459 75 -0.188684243459 76 0.849079095565 77 0.283026365188 78 -0.283026365188 79 0.943421217294 80 0.377368486918 81 -0.377368486918 82 0.754736973835 83 -0.123585315916E-16 84 0.123585315916E-16 85 0.849079095565 86 0.943421217294E-01 87 -0.943421217294E-01 88 0.943421217294 89 0.188684243459 90 -0.188684243459 91 0.943421217294 92 0.00000000000 93 0.00000000000 94 0.377368486918 95 0.188684243459 96 -0.169674207057E-16 97 0.471710608647 98 0.283026365188 99 -0.943421217294E-01 100 0.566052730377 101 0.377368486918 102 -0.188684243459 103 0.660394852106 104 0.471710608647 105 -0.283026365188 106 0.566052730377 107 0.188684243459 108 0.524215183334E-16 109 0.660394852106 110 0.283026365188 111 -0.943421217294E-01 112 0.754736973835 113 0.377368486918 114 -0.188684243459 115 0.849079095565 116 0.471710608647 117 -0.283026365188 118 0.943421217294 119 0.566052730377 120 -0.377368486918 121 0.754736973835 122 0.188684243459 123 0.385437305256E-16 124 0.849079095565 125 0.283026365188 126 -0.943421217294E-01 127 0.943421217294 128 0.377368486918 129 -0.188684243459 130 0.943421217294 131 0.188684243459 132 -0.724785719370E-16 133 0.754736973835 134 0.377368486918 135 -0.339348414114E-16 136 0.849079095565 137 0.471710608647 138 -0.943421217294E-01 139 0.943421217294 140 0.377368486918 141 -0.616904170270E-16 elk-7.2.42/tests/test_022/PaxHeaders.21776/elk.in0000644000000000000000000000012414061636520015737 xustar0028 mtime=1623670096.6301009 28 atime=1623670096.6301009 28 ctime=1623670096.6301009 elk-7.2.42/tests/test_022/elk.in0000644002504400250440000000110514061636520017770 0ustar00dewhurstdewhurst00000000000000 ! Magnetic response of fcc nickel. tasks 0 330 500 test .true. nempty 10 lorbcnd .true. emaxrf 1.5 gmaxrf 2.0 wplot 60 100 1 0 0.020 ! q-vector of response function vecql 0.1 0.3 0.0 ngridk 10 10 10 spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.632100898 30 atime=1623670096.631100899 30 ctime=1623670096.632100898 elk-7.2.42/tests/test_022/TEST_705.OUT_0000644002504400250440000000010114061636520020562 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.633100897 30 atime=1623670096.633100897 30 ctime=1623670096.633100897 elk-7.2.42/tests/test_022/TEST_500.OUT_0000644002504400250440000000013514061636520020562 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 52.6888436363 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.634100896 30 atime=1623670096.634100896 30 ctime=1623670096.634100896 elk-7.2.42/tests/test_022/TEST_510.OUT_0000644002504400250440000000014514061636520020564 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.728636163930E-03 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.635100895 30 atime=1623670096.635100895 30 ctime=1623670096.635100895 elk-7.2.42/tests/test_022/TEST_400.OUT_0000644002504400250440000000014114061636520020556 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9937748749 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.637100894 30 atime=1623670096.636100894 30 ctime=1623670096.637100894 elk-7.2.42/tests/test_022/TEST_450.OUT_0000644002504400250440000000014014061636520020562 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.721275606048 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016521 xustar0030 mtime=1623670096.638100893 30 atime=1623670096.638100893 30 ctime=1623670096.638100893 elk-7.2.42/tests/test_022/TEST_000.OUT_0000644002504400250440000000012614061636520020555 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1518.39249410 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.639100892 30 atime=1623670096.639100892 30 ctime=1623670096.639100892 elk-7.2.42/tests/test_022/TEST_800.OUT_0000644002504400250440000000301014061636520020560 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 47 0.100000000000E-07 1 4156.52649632 2 538.808845910 3 122.281077681 4 53.2067305730 5 29.7036699563 6 18.9436528129 7 378.633726982 8 131.915119909 9 59.6996144004 10 33.1294509551 11 20.8866383293 12 24.1480573225 13 39.8247961001 14 76.6221168207 15 191.109192697 16 89.6935829837 17 52.8305196423 18 32.3142045935 19 21.1792161666 20 18.7172333061 21 28.0029635091 22 44.9516730037 23 39.4977235641 24 27.8283415094 25 19.6878350783 26 14.3061427077 27 19.7706217330 28 22.1479831303 29 17.0639418646 30 13.1063464662 31 14.1544228910 32 70.5026233452 33 40.4627055245 34 25.3002738051 35 17.0626173734 36 35.3392864088 37 23.9798340158 38 16.8448151671 39 18.9724996792 40 27.4485942715 41 20.7913378523 42 15.5388968693 43 14.2001311974 44 13.5917268552 45 17.6443345168 46 13.2018441244 47 12.1733944017 elk-7.2.42/tests/test_022/PaxHeaders.21776/TEST_330.OUT_0000644000000000000000000000013014061636520016525 xustar0029 mtime=1623670096.64110089 30 atime=1623670096.640100891 29 ctime=1623670096.64110089 elk-7.2.42/tests/test_022/TEST_330.OUT_0000644002504400250440000000626314061636520020573 0ustar00dewhurstdewhurst00000000000000'transverse response function' 3 60 0.100000000000E-01 1 0.996580799549 -0.469470374673E-01 2 0.983398747574 -0.497274490118E-01 3 0.971183956003 -0.523112457605E-01 4 0.959252122957 -0.539683222028E-01 5 0.946487985673 -0.552442217555E-01 6 0.932977266238 -0.573283942629E-01 7 0.919449734708 -0.606922297579E-01 8 0.906431283593 -0.656085002218E-01 9 0.895178052194 -0.725410490133E-01 10 0.888011680377 -0.802252137379E-01 11 0.884949173316 -0.846981404739E-01 12 0.881878640102 -0.844224145068E-01 13 0.877039006894 -0.819860762917E-01 14 0.871237290892 -0.776552577550E-01 15 0.862748410451 -0.711093863680E-01 16 0.850452869081 -0.647486470722E-01 17 0.835644044392 -0.604043086196E-01 18 0.819682864128 -0.583083772304E-01 19 0.803230959579 -0.582732409781E-01 20 0.786607923215 -0.602815639016E-01 21 0.770171949218 -0.645893257962E-01 22 0.754704792583 -0.716226022974E-01 23 0.741849120316 -0.814449484888E-01 24 0.733792549822 -0.922844533600E-01 25 0.730256008584 -0.100093401180 26 0.727238579735 -0.103113100251 27 0.721992235264 -0.103024948415 28 0.712954915302 -0.101695163779 29 0.699582166262 -0.102616724366 30 0.684475485802 -0.108821744228 31 0.671108166646 -0.120835069477 32 0.662684322465 -0.137972758987 33 0.662772696344 -0.157744883705 34 0.673416965683 -0.175232971037 35 0.694507224793 -0.183265601867 36 0.717552961539 -0.172905113722 37 0.727000848966 -0.148448929496 38 0.720087249826 -0.124403690959 39 0.703956844667 -0.108133842271 40 0.684817351869 -0.100260042518 41 0.666470243681 -0.995746097357E-01 42 0.651889981076 -0.104213425621 43 0.643030017901 -0.110610507784 44 0.638473005568 -0.114564577382 45 0.634298062024 -0.115229076840 46 0.629017434047 -0.114935723930 47 0.623547319249 -0.114401203707 48 0.617574348230 -0.113391701917 49 0.611231322523 -0.112813849415 50 0.605602956702 -0.111891849415 51 0.599053794056 -0.109456515589 52 0.590217531941 -0.107557973475 53 0.580682001615 -0.107794265799 54 0.571970722622 -0.109503689755 55 0.563937349298 -0.111751567967 56 0.556455560394 -0.115163895837 57 0.551440728289 -0.119367484064 58 0.548610792085 -0.121132672939 59 0.544143338774 -0.120216658684 60 0.537105509434 -0.120068280973 elk-7.2.42/tests/PaxHeaders.21776/test_0010000644000000000000000000000013114061636520014552 xustar0030 mtime=1623670096.654100878 29 atime=1623670096.64110089 30 ctime=1623670096.654100878 elk-7.2.42/tests/test_001/0000755002504400250440000000000014061636520016665 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_001/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015733 xustar0030 mtime=1623670096.643100888 30 atime=1623670096.643100888 30 ctime=1623670096.643100888 elk-7.2.42/tests/test_001/elk.in0000644002504400250440000000222314061636520017767 0ustar00dewhurstdewhurst00000000000000 tasks 0 1 115 500 test .true. lmaxi 2 stype 1 swidth 0.01 mixtype 3 ! small cut-off for testing purposes rgkmax 6.0 maxscl 4 avec 7.2246 0.0 0.0 0.0 7.3442 0.0 0.0 0.0 22.0733 sppath '../../species/' atoms 4 : nspecies 'Y.in' : spfname 1 : natoms 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt 'Ba.in' 2 : natoms 0.5 0.5 0.1843 0.0 0.0 0.0 : atposl, bfcmt 0.5 0.5 0.8157 0.0 0.0 0.0 'Cu.in' 3 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 0.0 0.0 0.3556 0.0 0.0 0.0 0.0 0.0 0.6444 0.0 0.0 0.0 'O.in' 7 : natoms 0.0 0.5 0.0 0.0 0.0 0.0 : atposl, bfcmt 0.5 0.0 0.3773 0.0 0.0 0.0 0.5 0.0 0.6227 0.0 0.0 0.0 0.0 0.5 0.3789 0.0 0.0 0.0 0.0 0.5 0.6211 0.0 0.0 0.0 0.0 0.0 0.1584 0.0 0.0 0.0 0.0 0.0 0.8416 0.0 0.0 0.0 ngridk 2 2 1 vkloff 0.25 0.5 0.5 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.644100887 30 atime=1623670096.644100887 30 ctime=1623670096.644100887 elk-7.2.42/tests/test_001/TEST_500.OUT_0000644002504400250440000000013514061636520020557 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 30.3494495419 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.646100885 30 atime=1623670096.646100885 30 ctime=1623670096.646100885 elk-7.2.42/tests/test_001/TEST_510.OUT_0000644002504400250440000000014514061636520020561 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.215059763688E-01 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016522 xustar0030 mtime=1623670096.647100884 30 atime=1623670096.647100884 30 ctime=1623670096.647100884 elk-7.2.42/tests/test_001/TEST_400.OUT_0000644002504400250440000000014114061636520020553 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 294.004413959 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016516 xustar0030 mtime=1623670096.649100882 30 atime=1623670096.648100883 30 ctime=1623670096.649100882 elk-7.2.42/tests/test_001/TEST_000.OUT_0000644002504400250440000000012614061636520020552 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -25088.8810469 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_115.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.650100882 30 atime=1623670096.650100882 30 ctime=1623670096.650100882 elk-7.2.42/tests/test_001/TEST_115.OUT_0000644002504400250440000000053114061636520020561 0ustar00dewhurstdewhurst00000000000000'electric field gradient' 2 9 0.100000000000E-02 1 0.366071812579 2 0.664624598943E-16 3 0.182271996545E-15 4 0.664624598943E-16 5 0.481042848245 6 0.204196962395E-16 7 0.182271996545E-15 8 0.204196962395E-16 9 -0.847114660824 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000012714061636520016534 xustar0029 mtime=1623670096.65210088 29 atime=1623670096.65210088 29 ctime=1623670096.65210088 elk-7.2.42/tests/test_001/TEST_910.OUT_0000644002504400250440000000037114061636520020566 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 6 0.100000000000E-07 1 0.108711646790 2 0.213882564036 3 0.142325463505 4 0.543558233949 5 0.213882564036 6 0.142325463505 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.653100879 30 atime=1623670096.653100879 30 ctime=1623670096.653100879 elk-7.2.42/tests/test_001/TEST_705.OUT_0000644002504400250440000000010114061636520020557 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 8 elk-7.2.42/tests/test_001/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.655100877 30 atime=1623670096.655100877 30 ctime=1623670096.655100877 elk-7.2.42/tests/test_001/TEST_900.OUT_0000644002504400250440000000007014061636520020561 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 34171 elk-7.2.42/tests/PaxHeaders.21776/test_0050000644000000000000000000000013214061636520014557 xustar0030 mtime=1623670096.668100865 30 atime=1623670096.656100876 30 ctime=1623670096.668100865 elk-7.2.42/tests/test_005/0000755002504400250440000000000014061636520016671 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.658100874 30 atime=1623670096.657100875 30 ctime=1623670096.658100874 elk-7.2.42/tests/test_005/TEST_705.OUT_0000644002504400250440000000010114061636520020563 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 8 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.659100873 30 atime=1623670096.659100873 30 ctime=1623670096.659100873 elk-7.2.42/tests/test_005/TEST_910.OUT_0000644002504400250440000000144714061636520020577 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.581776417331E-01 2 0.174532925199 3 0.407243492132 4 0.523598775598 5 0.639954059065 6 -0.581776417331E-01 7 0.523598775598 8 -0.290888208666 9 0.872664625997 10 0.989019909463 11 0.174532925199 12 0.407243492132 13 -0.407243492132 14 0.639954059065 15 0.872664625997 16 0.581776417331E-01 17 1.10537519293 18 0.407243492132 19 0.581776417331E-01 20 0.174532925199 21 1.33808575986 22 0.523598775598 23 0.639954059065 24 0.872664625997 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.661100871 30 atime=1623670096.660100872 30 ctime=1623670096.661100871 elk-7.2.42/tests/test_005/TEST_500.OUT_0000644002504400250440000000013514061636520020563 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 33.9674460614 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012714061636520016534 xustar0029 mtime=1623670096.66210087 29 atime=1623670096.66210087 29 ctime=1623670096.66210087 elk-7.2.42/tests/test_005/TEST_510.OUT_0000644002504400250440000000014514061636520020565 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.373130903843E-02 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.663100869 30 atime=1623670096.663100869 30 ctime=1623670096.663100869 elk-7.2.42/tests/test_005/TEST_400.OUT_0000644002504400250440000000014114061636520020557 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 25.9973369269 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.665100868 30 atime=1623670096.664100868 30 ctime=1623670096.665100868 elk-7.2.42/tests/test_005/TEST_450.OUT_0000644002504400250440000000014014061636520020563 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 2.46663876336 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016522 xustar0030 mtime=1623670096.666100867 30 atime=1623670096.666100867 30 ctime=1623670096.666100867 elk-7.2.42/tests/test_005/TEST_000.OUT_0000644002504400250440000000012614061636520020556 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1270.46826012 elk-7.2.42/tests/test_005/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015737 xustar0030 mtime=1623670096.667100866 30 atime=1623670096.667100866 30 ctime=1623670096.667100866 elk-7.2.42/tests/test_005/elk.in0000644002504400250440000000076514061636520020004 0ustar00dewhurstdewhurst00000000000000 ! Spin-spiral state for Gamma-Fe. tasks 0 500 test .true. maxscl 5 spinsprl .true. vqlss 0.1 0.1 0.0 rgkmax 6.5 bfieldc 0.05 0.0 0.0 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.375 sppath '../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 2 2 2 vkloff 0.25 0.5 0.625 elk-7.2.42/tests/test_005/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.669100864 30 atime=1623670096.669100864 30 ctime=1623670096.669100864 elk-7.2.42/tests/test_005/TEST_900.OUT_0000644002504400250440000000007014061636520020565 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2229 elk-7.2.42/tests/PaxHeaders.21776/test_0090000644000000000000000000000013214061636520014563 xustar0030 mtime=1623670096.687100847 30 atime=1623670096.670100863 30 ctime=1623670096.687100847 elk-7.2.42/tests/test_009/0000755002504400250440000000000014061636520016675 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016542 xustar0030 mtime=1623670096.671100862 30 atime=1623670096.671100862 30 ctime=1623670096.671100862 elk-7.2.42/tests/test_009/TEST_705.OUT_0000644002504400250440000000010114061636520020567 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests/test_009/PaxHeaders.21776/elk.in0000644000000000000000000000013014061636520015741 xustar0029 mtime=1623670096.67310086 30 atime=1623670096.672100861 29 ctime=1623670096.67310086 elk-7.2.42/tests/test_009/elk.in0000644002504400250440000000064614061636520020006 0ustar00dewhurstdewhurst00000000000000 ! Electron loss near-edge spectroscopy (ELNES) for boron nitride. tasks 0 140 500 test .true. xctype 5 maxscl 6 rgkmax 6.0 lradstp 2 spinorb .true. vecql 0.0 0.0 0.5 wplot 50 100 3 18.5 19.0 emaxelnes -10.0 ngridk 2 2 2 avec 3.4204 3.4204 0.0000 3.4204 0.0000 3.4204 0.0000 3.4204 3.4204 atoms 2 'B.in' 1 0.00 0.00 0.00 0.0 0.0 0.0 'N+.in' 1 0.25 0.25 0.25 0.0 0.0 0.0 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.674100859 30 atime=1623670096.674100859 30 ctime=1623670096.674100859 elk-7.2.42/tests/test_009/TEST_900.OUT_0000644002504400250440000000007014061636520020571 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2277 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.675100858 30 atime=1623670096.675100858 30 ctime=1623670096.675100858 elk-7.2.42/tests/test_009/TEST_910.OUT_0000644002504400250440000000052614061636520020600 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 9 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.459243458892 5 0.459243458892 6 -0.459243458892 7 0.918486917784 8 0.00000000000 9 0.00000000000 elk-7.2.42/tests/test_009/PaxHeaders.21776/B.in0000644000000000000000000000013214061636520015351 xustar0030 mtime=1623670096.677100856 30 atime=1623670096.677100856 30 ctime=1623670096.677100856 elk-7.2.42/tests/test_009/B.in0000644002504400250440000000172214061636520017410 0ustar00dewhurstdewhurst00000000000000 'B' : spsymb 'boron' : spname -5.00000 : spzn 19707.24740 : spmass 0.894427E-06 1.8000 43.3288 300 : sprmin, rmt, sprmax, nrmt 3 : spnst 1 0 1 2.00000 T : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/tests/test_009/PaxHeaders.21776/N+.in0000644000000000000000000000013214061636520015440 xustar0030 mtime=1623670096.679100855 30 atime=1623670096.678100855 30 ctime=1623670096.679100855 elk-7.2.42/tests/test_009/N+.in0000644002504400250440000000253414061636520017501 0ustar00dewhurstdewhurst00000000000000 'N+' : spsymb 'nitrogen with pseudo core-hole' : spname -8.00000 : spzn 25532.72506 : spmass 0.755929E-06 1.4500 26.9237 300 : sprmin, rmt, sprmax, nrmt 4 : spnst 1 0 1 2.00000 F : spn, spl, spk, spocc, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 2 1 2 2.50000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 3 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F -0.6020 0 T 0 3 0.1500 0 F 0.1500 1 F -20.0000 0 T elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.680100854 30 atime=1623670096.680100854 30 ctime=1623670096.680100854 elk-7.2.42/tests/test_009/TEST_500.OUT_0000644002504400250440000000013514061636520020567 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 166.666666638 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.681100853 30 atime=1623670096.681100853 30 ctime=1623670096.681100853 elk-7.2.42/tests/test_009/TEST_510.OUT_0000644002504400250440000000014514061636520020571 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.484273556000E-01 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.683100851 30 atime=1623670096.683100851 30 ctime=1623670096.683100851 elk-7.2.42/tests/test_009/TEST_450.OUT_0000644002504400250440000000014014061636520020567 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.322632677020E-25 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013114061636520016531 xustar0030 mtime=1623670096.685100849 29 atime=1623670096.68410085 30 ctime=1623670096.685100849 elk-7.2.42/tests/test_009/TEST_400.OUT_0000644002504400250440000000014114061636520020563 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 12.5000313987 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.686100848 30 atime=1623670096.686100848 30 ctime=1623670096.686100848 elk-7.2.42/tests/test_009/TEST_000.OUT_0000644002504400250440000000012614061636520020562 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -99.9816651181 elk-7.2.42/tests/test_009/PaxHeaders.21776/TEST_140.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.688100846 30 atime=1623670096.687100847 30 ctime=1623670096.688100846 elk-7.2.42/tests/test_009/TEST_140.OUT_0000644002504400250440000000311414061636520020567 0ustar00dewhurstdewhurst00000000000000'ELNES cross-section' 2 50 0.100000000000E-01 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 7 0.00000000000 8 0.00000000000 9 0.00000000000 10 0.00000000000 11 0.119956766630E-10 12 0.296036648951E-09 13 0.314275301088E-08 14 0.160129784706E-07 15 0.589467143256E-07 16 0.176258730598E-06 17 0.478702639757E-06 18 0.139481395327E-05 19 0.377535835793E-05 20 0.789416311994E-05 21 0.125236403833E-04 22 0.148952428844E-04 23 0.134761292590E-04 24 0.918086150243E-05 25 0.473361283208E-05 26 0.187024320394E-05 27 0.621177592065E-06 28 0.204698275476E-06 29 0.536833357911E-07 30 0.183398328605E-07 31 0.276734646540E-06 32 0.220396694200E-05 33 0.134038727493E-04 34 0.855803563238E-04 35 0.221355713979E-03 36 0.402739577356E-03 37 0.480354723714E-03 38 0.448110161005E-03 39 0.327831911948E-03 40 0.273027789621E-03 41 0.295981699785E-03 42 0.394257867871E-03 43 0.528593328604E-03 44 0.699537511425E-03 45 0.891627313153E-03 46 0.106298959676E-02 47 0.118815490967E-02 48 0.128677078155E-02 49 0.140575607217E-02 50 0.155981254512E-02 elk-7.2.42/tests/PaxHeaders.21776/test_0130000644000000000000000000000013214061636520014556 xustar0030 mtime=1623670096.702100833 30 atime=1623670096.688100846 30 ctime=1623670096.702100833 elk-7.2.42/tests/test_013/0000755002504400250440000000000014061636520016670 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_013/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015736 xustar0030 mtime=1623670096.690100844 30 atime=1623670096.689100845 30 ctime=1623670096.690100844 elk-7.2.42/tests/test_013/elk.in0000644002504400250440000000125014061636520017771 0ustar00dewhurstdewhurst00000000000000 ! Force test with spin-orbit coupling, removal of the source term from B_xc and ! application of a constanst A-field tasks 0 500 test .true. spinorb .true. nosource .true. tforce .true. bfieldc 0.0 0.0 0.1 afieldc 0.0 0.5 0.0 rgkmax 6.0 maxscl 4 scale 5.496 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.1 0.2 0.3 : atposl, bfcmt 'Al.in' 1 0.51 0.52 0.485 0.4 0.4 -0.4 : atposl, bfcmt sppath '../../species/' ngridk 4 4 4 vkloff 0.25 0.5 0.625 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.691100843 30 atime=1623670096.691100843 30 ctime=1623670096.691100843 elk-7.2.42/tests/test_013/TEST_705.OUT_0000644002504400250440000000010114061636520020562 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 1 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.693100841 30 atime=1623670096.692100843 30 ctime=1623670096.693100841 elk-7.2.42/tests/test_013/TEST_900.OUT_0000644002504400250440000000007014061636520020564 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 4945 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.694100841 30 atime=1623670096.694100841 30 ctime=1623670096.694100841 elk-7.2.42/tests/test_013/TEST_910.OUT_0000644002504400250440000001357714061636520020605 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 192 0.100000000000E-07 1 0.714517979801E-01 2 0.142903595960 3 0.178629494950 4 0.357258989901 5 0.142903595960 6 0.178629494950 7 0.643066181821 8 0.142903595960 9 0.178629494950 10 0.928873373742 11 0.142903595960 12 0.178629494950 13 0.714517979801E-01 14 0.428710787881 15 0.178629494950 16 0.357258989901 17 0.428710787881 18 0.178629494950 19 0.643066181821 20 0.428710787881 21 0.178629494950 22 0.928873373742 23 0.428710787881 24 0.178629494950 25 0.714517979801E-01 26 0.714517979801 27 0.178629494950 28 0.357258989901 29 0.714517979801 30 0.178629494950 31 0.643066181821 32 0.714517979801 33 0.178629494950 34 0.928873373742 35 0.714517979801 36 0.178629494950 37 0.714517979801E-01 38 1.00032517172 39 0.178629494950 40 0.357258989901 41 1.00032517172 42 0.178629494950 43 0.643066181821 44 1.00032517172 45 0.178629494950 46 0.928873373742 47 1.00032517172 48 0.178629494950 49 0.714517979801E-01 50 0.142903595960 51 0.464436686871 52 0.357258989901 53 0.142903595960 54 0.464436686871 55 0.643066181821 56 0.142903595960 57 0.464436686871 58 0.928873373742 59 0.142903595960 60 0.464436686871 61 0.714517979801E-01 62 0.428710787881 63 0.464436686871 64 0.357258989901 65 0.428710787881 66 0.464436686871 67 0.643066181821 68 0.428710787881 69 0.464436686871 70 0.928873373742 71 0.428710787881 72 0.464436686871 73 0.714517979801E-01 74 0.714517979801 75 0.464436686871 76 0.357258989901 77 0.714517979801 78 0.464436686871 79 0.643066181821 80 0.714517979801 81 0.464436686871 82 0.928873373742 83 0.714517979801 84 0.464436686871 85 0.714517979801E-01 86 1.00032517172 87 0.464436686871 88 0.357258989901 89 1.00032517172 90 0.464436686871 91 0.643066181821 92 1.00032517172 93 0.464436686871 94 0.928873373742 95 1.00032517172 96 0.464436686871 97 0.714517979801E-01 98 0.142903595960 99 0.750243878791 100 0.357258989901 101 0.142903595960 102 0.750243878791 103 0.643066181821 104 0.142903595960 105 0.750243878791 106 0.928873373742 107 0.142903595960 108 0.750243878791 109 0.714517979801E-01 110 0.428710787881 111 0.750243878791 112 0.357258989901 113 0.428710787881 114 0.750243878791 115 0.643066181821 116 0.428710787881 117 0.750243878791 118 0.928873373742 119 0.428710787881 120 0.750243878791 121 0.714517979801E-01 122 0.714517979801 123 0.750243878791 124 0.357258989901 125 0.714517979801 126 0.750243878791 127 0.643066181821 128 0.714517979801 129 0.750243878791 130 0.928873373742 131 0.714517979801 132 0.750243878791 133 0.714517979801E-01 134 1.00032517172 135 0.750243878791 136 0.357258989901 137 1.00032517172 138 0.750243878791 139 0.643066181821 140 1.00032517172 141 0.750243878791 142 0.928873373742 143 1.00032517172 144 0.750243878791 145 0.714517979801E-01 146 0.142903595960 147 1.03605107071 148 0.357258989901 149 0.142903595960 150 1.03605107071 151 0.643066181821 152 0.142903595960 153 1.03605107071 154 0.928873373742 155 0.142903595960 156 1.03605107071 157 0.714517979801E-01 158 0.428710787881 159 1.03605107071 160 0.357258989901 161 0.428710787881 162 1.03605107071 163 0.643066181821 164 0.428710787881 165 1.03605107071 166 0.928873373742 167 0.428710787881 168 1.03605107071 169 0.714517979801E-01 170 0.714517979801 171 1.03605107071 172 0.357258989901 173 0.714517979801 174 1.03605107071 175 0.643066181821 176 0.714517979801 177 1.03605107071 178 0.928873373742 179 0.714517979801 180 1.03605107071 181 0.714517979801E-01 182 1.00032517172 183 1.03605107071 184 0.357258989901 185 1.00032517172 186 1.03605107071 187 0.643066181821 188 1.00032517172 189 1.03605107071 190 0.928873373742 191 1.00032517172 192 1.03605107071 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000012714061636520016532 xustar0029 mtime=1623670096.69510084 29 atime=1623670096.69510084 29 ctime=1623670096.69510084 elk-7.2.42/tests/test_013/TEST_500.OUT_0000644002504400250440000000013514061636520020562 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 117.676510445 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.697100838 30 atime=1623670096.697100838 30 ctime=1623670096.697100838 elk-7.2.42/tests/test_013/TEST_510.OUT_0000644002504400250440000000014514061636520020564 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.100334394303E-03 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.698100837 30 atime=1623670096.698100837 30 ctime=1623670096.698100837 elk-7.2.42/tests/test_013/TEST_400.OUT_0000644002504400250440000000014114061636520020556 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 38.9880840437 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.700100835 30 atime=1623670096.700100835 30 ctime=1623670096.700100835 elk-7.2.42/tests/test_013/TEST_450.OUT_0000644002504400250440000000014014061636520020562 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 1.36964954732 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016521 xustar0030 mtime=1623670096.701100834 30 atime=1623670096.701100834 30 ctime=1623670096.701100834 elk-7.2.42/tests/test_013/TEST_000.OUT_0000644002504400250440000000012614061636520020555 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1515.93184246 elk-7.2.42/tests/test_013/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.703100832 30 atime=1623670096.703100832 30 ctime=1623670096.703100832 elk-7.2.42/tests/test_013/TEST_750.OUT_0000644002504400250440000000036114061636520020572 0ustar00dewhurstdewhurst00000000000000'total forces' 2 6 0.100000000000E-02 1 -0.159456002110E-01 2 -0.363728131894E-01 3 0.280818063166E-01 4 0.159456002110E-01 5 0.363728131894E-01 6 -0.280818063166E-01 elk-7.2.42/tests/PaxHeaders.21776/test_0170000644000000000000000000000013214061636520014562 xustar0030 mtime=1623670096.718100818 30 atime=1623670096.704100831 30 ctime=1623670096.718100818 elk-7.2.42/tests/test_017/0000755002504400250440000000000014061636520016674 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000012714061636520016545 xustar0029 mtime=1623670096.70510083 29 atime=1623670096.70510083 29 ctime=1623670096.70510083 elk-7.2.42/tests/test_017/TEST_705.OUT_0000644002504400250440000000010114061636520020566 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.707100829 30 atime=1623670096.707100829 30 ctime=1623670096.707100829 elk-7.2.42/tests/test_017/TEST_900.OUT_0000644002504400250440000000007014061636520020570 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 725 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.708100828 30 atime=1623670096.708100828 30 ctime=1623670096.708100828 elk-7.2.42/tests/test_017/TEST_910.OUT_0000644002504400250440000000037114061636520020575 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 6 0.100000000000E-07 1 -0.138777878078E-16 2 0.146981971254 3 0.587927885017 4 0.293963942509 5 0.440945913763 6 0.293963942509 elk-7.2.42/tests/test_017/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015742 xustar0030 mtime=1623670096.710100826 30 atime=1623670096.710100826 30 ctime=1623670096.710100826 elk-7.2.42/tests/test_017/elk.in0000644002504400250440000000120314061636520017773 0ustar00dewhurstdewhurst00000000000000 ! RDMFT test tasks 0 300 500 test .true. rdmmaxscl 1 maxitn 2 maxitc 2 mixtype 3 rgkmax 6.0 lmaxo 5 gmaxvr 0.0 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms 0.00 0.00 0.00 0.0 0.0 0.0 : atposl, bfcmt 'As.in' : spfname 1 : natoms 0.25 0.25 0.25 0.0 0.0 0.0 : atposl, bfcmt ngridk 2 1 1 vkloff 0.25 0.5 0.625 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.711100825 30 atime=1623670096.711100825 30 ctime=1623670096.711100825 elk-7.2.42/tests/test_017/TEST_500.OUT_0000644002504400250440000000013514061636520020566 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.188737914285E-11 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.713100823 30 atime=1623670096.713100823 30 ctime=1623670096.713100823 elk-7.2.42/tests/test_017/TEST_510.OUT_0000644002504400250440000000014514061636520020570 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.117176067378 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.714100822 30 atime=1623670096.714100822 30 ctime=1623670096.714100822 elk-7.2.42/tests/test_017/TEST_400.OUT_0000644002504400250440000000014114061636520020562 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 63.9848926557 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013014061636520016523 xustar0029 mtime=1623670096.71610082 30 atime=1623670096.715100821 29 ctime=1623670096.71610082 elk-7.2.42/tests/test_017/TEST_000.OUT_0000644002504400250440000000012614061636520020561 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -4199.45151923 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.717100819 30 atime=1623670096.717100819 30 ctime=1623670096.717100819 elk-7.2.42/tests/test_017/TEST_800.OUT_0000644002504400250440000000022514061636520020571 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 2 0.100000000000E-07 1 159.645293857 2 40.1466806379 elk-7.2.42/tests/test_017/PaxHeaders.21776/TEST_300.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.718100818 30 atime=1623670096.718100818 30 ctime=1623670096.718100818 elk-7.2.42/tests/test_017/TEST_300.OUT_0000644002504400250440000000013414061636520020563 0ustar00dewhurstdewhurst00000000000000'RDMFT total energy' 2 1 0.100000000000E-05 1 -4061.15741384 elk-7.2.42/tests/PaxHeaders.21776/test_0210000644000000000000000000000013214061636520014555 xustar0030 mtime=1623670096.736100802 30 atime=1623670096.720100816 30 ctime=1623670096.736100802 elk-7.2.42/tests/test_021/0000755002504400250440000000000014061636520016667 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.721100816 30 atime=1623670096.721100816 30 ctime=1623670096.721100816 elk-7.2.42/tests/test_021/TEST_705.OUT_0000644002504400250440000000010114061636520020561 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.723100814 30 atime=1623670096.722100815 30 ctime=1623670096.723100814 elk-7.2.42/tests/test_021/TEST_910.OUT_0000644002504400250440000000237014061636520020571 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 39 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.280567949614 5 -0.935226498715E-01 6 -0.935226498715E-01 7 0.561135899229 8 -0.187045299743 9 -0.187045299743 10 0.187045299743 11 0.187045299743 12 -0.187045299743 13 0.467613249357 14 0.935226498715E-01 15 -0.280567949614 16 0.748181198972 17 0.416333634234E-16 18 -0.374090599486 19 0.374090599486 20 0.374090599486 21 -0.374090599486 22 0.935226498715E-01 23 0.935226498715E-01 24 0.935226498715E-01 25 0.374090599486 26 0.416333634234E-16 27 0.555111512313E-16 28 0.654658549100 29 -0.935226498715E-01 30 -0.935226498715E-01 31 0.280567949614 32 0.280567949614 33 -0.935226498715E-01 34 0.561135899229 35 0.187045299743 36 -0.187045299743 37 0.187045299743 38 0.187045299743 39 0.187045299743 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016520 xustar0030 mtime=1623670096.724100813 30 atime=1623670096.724100813 30 ctime=1623670096.724100813 elk-7.2.42/tests/test_021/TEST_000.OUT_0000644002504400250440000000012614061636520020554 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -2462.70040632 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_196.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.726100811 30 atime=1623670096.725100812 30 ctime=1623670096.726100811 elk-7.2.42/tests/test_021/TEST_196.OUT_0000644002504400250440000000500014061636520020570 0ustar00dewhurstdewhurst00000000000000'magnetic structure factors' 3 47 0.100000000000E-03 1 0.360662979879E-17 -0.752316384526E-35 2 0.268160030473E-01 0.174442587749E-16 3 0.204349623262E-01 -0.295425916892E-17 4 0.343103864039E-17 -0.177199292566E-17 5 0.333946734739E-19 0.271186068393E-16 6 0.349610699680E-17 -0.258819387363E-16 7 0.158945129930E-01 -0.231730982241E-16 8 0.125662877341E-01 -0.156431079097E-16 9 0.123650629359E-01 -0.171396955003E-16 10 0.257242305141E-17 -0.392495769369E-17 11 0.670856983231E-18 -0.137693675906E-16 12 0.101549635630E-01 0.715857005925E-17 13 0.837998994307E-02 -0.635982518000E-17 14 0.852459608710E-18 -0.999668284350E-17 15 0.108994038147E-17 0.239134341669E-16 16 0.922176900710E-18 0.111876111673E-16 17 0.134567099513E-17 0.470780912084E-17 18 -0.270631223350E-18 -0.208912206111E-16 19 0.692621737160E-02 0.327002192070E-16 20 0.648561881437E-02 0.953973857581E-17 21 0.542643158559E-02 -0.168150300082E-16 22 0.583535548224E-02 0.179188008853E-16 23 0.253218498953E-18 0.151313965698E-16 24 0.450096174614E-02 -0.415696294621E-17 25 0.391282776716E-02 0.325613624054E-17 26 0.406516639407E-02 0.304333917599E-17 27 0.404079555187E-18 0.130443073877E-17 28 0.116687286570E-17 0.103134731658E-16 29 0.660426314751E-18 -0.110656384229E-16 30 0.488600272079E-19 -0.220567379465E-17 31 0.692903488748E-18 0.222735783810E-16 32 0.328095477303E-02 0.312554349175E-17 33 0.329522832899E-02 -0.786002681333E-17 34 0.277977148342E-02 -0.844518491276E-17 35 0.329296975286E-18 0.753859323056E-17 36 -0.411438249030E-18 -0.128918414572E-17 37 0.322693493950E-18 0.590890184005E-17 38 0.234877914992E-02 -0.582236069366E-17 39 0.239281686733E-02 0.166768160478E-17 40 0.221389769953E-02 -0.102493080121E-16 41 0.198785905308E-02 -0.143550144392E-17 42 0.179402522246E-02 -0.831982685290E-17 43 0.253519148070E-18 -0.212435863171E-17 44 0.184169513299E-18 0.479081834967E-17 45 0.418451462994E-18 0.483825219472E-17 46 0.753528807804E-18 0.580725788638E-17 47 0.288999343574E-19 0.599699326656E-18 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000012714061636520016535 xustar0029 mtime=1623670096.72710081 29 atime=1623670096.72710081 29 ctime=1623670096.72710081 elk-7.2.42/tests/test_021/TEST_900.OUT_0000644002504400250440000000007014061636520020563 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 8623 elk-7.2.42/tests/test_021/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015735 xustar0030 mtime=1623670096.729100808 30 atime=1623670096.728100809 30 ctime=1623670096.729100808 elk-7.2.42/tests/test_021/elk.in0000644002504400250440000000060314061636520017771 0ustar00dewhurstdewhurst00000000000000 tasks 0 195 196 500 test .true. spinpol .true. scale 8.397946 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 'Mn.in' 2 0.0 0.0 0.0 0.0 0.0 -0.01 0.5 0.5 0.5 0.0 0.0 0.01 'O.in' 2 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 sppath '../../species/' ngridk 4 4 4 hmaxvr 4.0 reduceh .true. elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.730100807 30 atime=1623670096.730100807 30 ctime=1623670096.730100807 elk-7.2.42/tests/test_021/TEST_500.OUT_0000644002504400250440000000013514061636520020561 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.364462465345E-04 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.732100805 30 atime=1623670096.731100806 30 ctime=1623670096.732100805 elk-7.2.42/tests/test_021/TEST_510.OUT_0000644002504400250440000000014514061636520020563 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.297252590802E-01 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.733100804 30 atime=1623670096.733100804 30 ctime=1623670096.733100804 elk-7.2.42/tests/test_021/TEST_400.OUT_0000644002504400250440000000014114061636520020555 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 66.0189750624 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.735100803 30 atime=1623670096.734100803 30 ctime=1623670096.735100803 elk-7.2.42/tests/test_021/TEST_450.OUT_0000644002504400250440000000014014061636520020561 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.190358142232E-16 elk-7.2.42/tests/test_021/PaxHeaders.21776/TEST_195.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.736100802 30 atime=1623670096.736100802 30 ctime=1623670096.736100802 elk-7.2.42/tests/test_021/TEST_195.OUT_0000644002504400250440000000477714061636520020613 0ustar00dewhurstdewhurst00000000000000'density structure factors' 3 47 0.100000000000E-04 1 0.222781435049 -0.422188091550E-20 2 0.279227815598E-16 -0.100613961607E-15 3 -0.499672690647E-17 0.208166817117E-16 4 0.897007263975E-01 0.135152018688E-16 5 0.897768785632E-01 -0.180311484630E-15 6 0.159095660612 0.186495395185E-15 7 -0.454329203628E-16 0.175207071074E-15 8 -0.383059051417E-16 0.131838984174E-15 9 0.386910154599E-16 0.147451495458E-15 10 0.128978032193 0.351884567384E-16 11 0.129015063858 0.131678818255E-15 12 0.176367710446E-16 -0.711236625150E-16 13 0.142193705461E-16 0.676542155631E-16 14 0.709436814581E-01 0.112758925900E-15 15 0.709341248128E-01 -0.272338629723E-15 16 0.709477925096E-01 -0.130872505244E-15 17 0.110367577233 -0.585743802893E-16 18 0.110427114574 0.251856285785E-15 19 0.942729468141E-16 -0.409394740331E-15 20 -0.317247762292E-16 -0.130104260698E-15 21 -0.569907707573E-16 0.249800180541E-15 22 0.589359969812E-16 -0.260208521397E-15 23 0.980833639283E-01 -0.246063963717E-15 24 -0.188196496129E-16 0.763278329430E-16 25 0.116252787585E-16 -0.555111512313E-16 26 0.149561685161E-16 -0.624500451352E-16 27 0.583608605111E-01 -0.239360482710E-16 28 0.582951480310E-01 -0.200844158044E-15 29 0.583174080396E-01 0.219343636467E-15 30 0.886603807723E-01 0.468098844888E-16 31 0.886390603924E-01 -0.465159784733E-15 32 0.171031763893E-16 -0.780625564190E-16 33 -0.367501630734E-16 0.170002900646E-15 34 0.464200545546E-16 0.215105711021E-15 35 0.816397356155E-01 -0.205649513993E-15 36 0.816031991382E-01 0.362014962831E-16 37 0.816175977784E-01 -0.172322801706E-15 38 0.357218849923E-16 0.164798730218E-15 39 0.100857532958E-16 -0.468375338514E-16 40 -0.642570321362E-16 0.300974523082E-15 41 0.103723934382E-16 0.546437894933E-16 42 -0.581154871633E-16 0.274953670942E-15 43 0.505039365445E-01 0.738723790411E-16 44 0.502376906810E-01 -0.156536268617E-15 45 0.504649595069E-01 -0.172111463728E-15 46 0.505015282088E-01 -0.203490800318E-15 47 0.502809158028E-01 -0.235818252568E-16 elk-7.2.42/tests/PaxHeaders.21776/test_0230000644000000000000000000000013214061636520014557 xustar0030 mtime=1623670096.756100783 30 atime=1623670096.737100801 30 ctime=1623670096.756100783 elk-7.2.42/tests/test_023/0000755002504400250440000000000014061636520016671 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_023/PaxHeaders.21776/elk.in0000644000000000000000000000012414061636520015740 xustar0028 mtime=1623670096.7381008 28 atime=1623670096.7381008 28 ctime=1623670096.7381008 elk-7.2.42/tests/test_023/elk.in0000644002504400250440000000123714061636520017777 0ustar00dewhurstdewhurst00000000000000 ! Time-dependent density functional theory (TDDFT) optical spectrum of lithium ! fluoride. tasks 0 120 121 125 320 500 test .true. spinorb .true. scissor 0.192 xctype 3 ! bootstrap kernel fxctype 210 lmaxi 2 swidth 0.01 gmaxrf 1.5 nempty 10 ngridk 8 8 8 wplot 50 100 0 0.0 1.5 avec 3.80402 3.80402 0.0 3.80402 0.0 3.80402 0.0 3.80402 3.80402 sppath '../../species/' atoms 2 : nspecies 'Li.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'F.in' 1 0.5 0.5 0.5 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.740100798 30 atime=1623670096.740100798 30 ctime=1623670096.740100798 elk-7.2.42/tests/test_023/TEST_705.OUT_0000644002504400250440000000010114061636520020563 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.741100797 30 atime=1623670096.741100797 30 ctime=1623670096.741100797 elk-7.2.42/tests/test_023/TEST_900.OUT_0000644002504400250440000000007014061636520020565 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 3215 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.743100795 30 atime=1623670096.743100795 30 ctime=1623670096.743100795 elk-7.2.42/tests/test_023/TEST_910.OUT_0000644002504400250440000000531014061636520020570 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 87 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.103232654323 5 0.103232654323 6 -0.103232654323 7 0.206465308646 8 0.206465308646 9 -0.206465308646 10 0.309697962970 11 0.309697962970 12 -0.309697962970 13 0.412930617293 14 0.412930617293 15 -0.412930617293 16 0.206465308646 17 0.00000000000 18 0.00000000000 19 0.309697962970 20 0.103232654323 21 -0.103232654323 22 0.412930617293 23 0.206465308646 24 -0.206465308646 25 0.516163271616 26 0.309697962970 27 -0.309697962970 28 0.619395925939 29 0.412930617293 30 -0.412930617293 31 0.722628580263 32 0.516163271616 33 -0.516163271616 34 0.825861234586 35 0.619395925939 36 -0.619395925939 37 0.412930617293 38 0.00000000000 39 0.00000000000 40 0.516163271616 41 0.103232654323 42 -0.103232654323 43 0.619395925939 44 0.206465308646 45 -0.206465308646 46 0.722628580263 47 0.309697962970 48 -0.309697962970 49 0.825861234586 50 0.412930617293 51 -0.412930617293 52 0.619395925939 53 -0.277555756156E-16 54 0.277555756156E-16 55 0.722628580263 56 0.103232654323 57 -0.103232654323 58 0.825861234586 59 0.206465308646 60 -0.206465308646 61 0.825861234586 62 0.00000000000 63 0.00000000000 64 0.412930617293 65 0.206465308646 66 0.00000000000 67 0.516163271616 68 0.309697962970 69 -0.103232654323 70 0.619395925939 71 0.412930617293 72 -0.206465308646 73 0.619395925939 74 0.206465308646 75 0.277555756156E-16 76 0.722628580263 77 0.309697962970 78 -0.103232654323 79 0.825861234586 80 0.412930617293 81 -0.206465308646 82 0.825861234586 83 0.206465308646 84 0.00000000000 85 0.825861234586 86 0.412930617293 87 0.00000000000 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.744100794 30 atime=1623670096.744100794 30 ctime=1623670096.744100794 elk-7.2.42/tests/test_023/TEST_500.OUT_0000644002504400250440000000013514061636520020563 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.192561446616E-05 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.746100792 30 atime=1623670096.746100792 30 ctime=1623670096.746100792 elk-7.2.42/tests/test_023/TEST_510.OUT_0000644002504400250440000000014514061636520020565 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.323124184984 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.747100791 30 atime=1623670096.747100791 30 ctime=1623670096.747100791 elk-7.2.42/tests/test_023/TEST_400.OUT_0000644002504400250440000000014114061636520020557 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 12.0281690144 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000012714061636520016537 xustar0029 mtime=1623670096.74910079 29 atime=1623670096.74910079 29 ctime=1623670096.74910079 elk-7.2.42/tests/test_023/TEST_450.OUT_0000644002504400250440000000014014061636520020563 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.886343112592E-24 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016522 xustar0030 mtime=1623670096.750100789 30 atime=1623670096.750100789 30 ctime=1623670096.750100789 elk-7.2.42/tests/test_023/TEST_000.OUT_0000644002504400250440000000012614061636520020556 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -106.905945873 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_121.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.752100787 30 atime=1623670096.751100788 30 ctime=1623670096.752100787 elk-7.2.42/tests/test_023/TEST_121.OUT_0000644002504400250440000000523114061636520020564 0ustar00dewhurstdewhurst00000000000000'optical conductivity' 3 50 0.100000000000E-01 1 0.580625460398E-03 0.00000000000 2 0.583383601703E-03 -0.174401408745E-02 3 0.591768921781E-03 -0.350466374121E-02 4 0.606123247018E-03 -0.529925498946E-02 5 0.627054057695E-03 -0.714650066825E-02 6 0.655497691600E-03 -0.906739971017E-02 7 0.692826025389E-03 -0.110863651937E-01 8 0.741019331268E-03 -0.132327596747E-01 9 0.802950103975E-03 -0.155430943449E-01 10 0.882862448081E-03 -0.180643311839E-01 11 0.987216824354E-03 -0.208590846200E-01 12 0.112626706127E-02 -0.240142642863E-01 13 0.131723034824E-02 -0.276563663971E-01 14 0.159131915600E-02 -0.319807577434E-01 15 0.201162965048E-02 -0.373139920219E-01 16 0.272919007120E-02 -0.442680821752E-01 17 0.423854743345E-02 -0.542260556982E-01 18 0.102346275186E-01 -0.709448225228E-01 19 0.322621064474E-01 -0.853776406404E-01 20 0.651150348675E-01 -0.952972624236E-01 21 0.981985848713E-01 -0.784091072882E-01 22 0.769861747058E-01 -0.631100011591E-02 23 0.784879022684E-01 -0.116291498776E-01 24 0.493351670079E-01 -0.616345123681E-02 25 0.453338093073E-01 -0.214196315447E-01 26 0.363511806440E-01 -0.353027170888E-01 27 0.609903134268E-01 -0.644176309894E-01 28 0.124506483475 -0.230190451055E-01 29 0.754508340193E-01 -0.149331973953E-01 30 0.104831019415 -0.741008369048E-01 31 0.193512154767 -0.138267655723E-01 32 0.145558423214 0.408289000179E-01 33 0.164610177372 0.985512459192E-01 34 0.675644403445E-01 0.133517313196 35 0.286390795337E-01 0.101774762485 36 0.286459298283E-01 0.698009631460E-01 37 0.202345380269E-01 0.588945539750E-01 38 0.184733801185E-01 0.455347241340E-01 39 0.333914472978E-01 0.381563377604E-01 40 0.232585465138E-01 0.505105996531E-01 41 0.144284270292E-01 0.361247080014E-01 42 0.299215454713E-01 0.360939501467E-01 43 0.166587328087E-01 0.346529020690E-01 44 0.245082832556E-01 0.298299348148E-01 45 0.206227565595E-01 0.331457181089E-01 46 0.232751858253E-01 0.330133935292E-01 47 0.174514277224E-01 0.299007405205E-01 48 0.160158467431E-01 0.269737086530E-01 49 0.178214322863E-01 0.234677333854E-01 50 0.170700256593E-01 0.231146987018E-01 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_125.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.753100786 30 atime=1623670096.753100786 30 ctime=1623670096.753100786 elk-7.2.42/tests/test_023/TEST_125.OUT_0000644002504400250440000001237014061636520020572 0ustar00dewhurstdewhurst00000000000000'non-linear susceptibility' 3 100 0.100000000000E-01 1 0.529631443028E-05 -0.224398445301E-06 2 0.547579800596E-05 -0.227576775036E-06 3 0.567105494713E-05 -0.230691274493E-06 4 0.588481378908E-05 -0.233594749304E-06 5 0.612057876926E-05 -0.235989831350E-06 6 0.638294752021E-05 -0.237237475567E-06 7 0.667810496468E-05 -0.235823997836E-06 8 0.701464458040E-05 -0.227555270647E-06 9 0.740530950443E-05 -0.196955413492E-06 10 0.789664420460E-05 -0.143531015025E-07 11 0.862583650072E-05 -0.707865668664E-06 12 0.930234663225E-05 -0.583602000781E-06 13 0.102216398982E-04 -0.608008349619E-06 14 0.116097989584E-04 -0.798191185217E-06 15 0.141464976809E-04 -0.861511945997E-06 16 0.194234262778E-04 -0.167266119953E-05 17 0.449784461356E-04 -0.144050663433E-04 18 -0.245919992383E-04 -0.706249262559E-05 19 -0.504200321860E-05 -0.158676710724E-05 20 -0.868636681325E-07 -0.808976582757E-06 21 0.273671866929E-05 -0.136931501626E-05 22 -0.116008862571E-04 0.153824314318E-04 23 0.121230382269E-05 -0.271265024016E-05 24 0.612524396168E-05 -0.579628675640E-06 25 0.755098573609E-05 -0.599910734117E-06 26 0.804020151173E-05 -0.724253805290E-06 27 0.936560637958E-05 -0.417591048907E-06 28 0.117721739953E-04 -0.952398080623E-06 29 0.122156412557E-04 -0.937571720261E-06 30 0.126652577829E-04 -0.542213153487E-06 31 0.144569303197E-04 -0.552503027995E-06 32 0.164497863505E-04 -0.397035600952E-06 33 0.196532954116E-04 -0.816115116986E-06 34 0.163695976501E-04 -0.857724540304E-05 35 0.215892943917E-04 -0.538970664571E-06 36 0.270391794167E-04 -0.110422465484E-05 37 0.335463898334E-04 -0.146571291303E-05 38 0.431839832480E-04 -0.218747381742E-05 39 0.594271033583E-04 -0.417862212305E-05 40 0.936536357766E-04 -0.930013917667E-05 41 0.214102591970E-03 -0.490151559778E-04 42 -0.448903089344E-03 -0.281113516028E-03 43 -0.129500140199E-03 -0.170517474281E-04 44 -0.735253789176E-04 -0.617371271345E-05 45 -0.572271536446E-04 0.810957484183E-05 46 -0.387795425076E-04 -0.803392838783E-07 47 -0.312684166032E-04 0.616271593666E-06 48 -0.216950434406E-04 -0.343786463435E-05 49 -0.210519027082E-04 -0.837248553823E-05 50 -0.224207988062E-04 -0.448136396046E-05 51 -0.532795324540E-05 -0.156404714525E-05 52 -0.551474410111E-05 -0.175202237741E-05 53 -0.572040294522E-05 -0.199163548252E-05 54 -0.594968067598E-05 -0.230690708708E-05 55 -0.621005186735E-05 -0.273910740525E-05 56 -0.651478487377E-05 -0.336532866760E-05 57 -0.689204356028E-05 -0.434727156410E-05 58 -0.742025924023E-05 -0.608810687653E-05 59 -0.844111353461E-05 -0.993323065362E-05 60 -0.139708145562E-04 -0.242960372808E-04 61 -0.315462993580E-04 0.449859709067E-04 62 -0.140091363238E-04 0.165357824600E-04 63 -0.105937833579E-04 0.112796885013E-04 64 -0.979602830963E-05 0.129067053970E-04 65 -0.122958445037E-04 0.313796322807E-05 66 -0.104175146932E-04 -0.209207536606E-05 67 -0.448797966211E-04 0.135483187041E-04 68 0.245964475798E-04 0.768649273377E-05 69 0.504907946722E-05 0.233565801131E-05 70 0.816957176023E-07 0.162377013889E-05 71 -0.275484518330E-05 0.218524004214E-05 72 0.893567832741E-05 -0.131359410105E-04 73 0.465691265250E-06 -0.118935277947E-05 74 -0.668911657984E-05 0.101351963159E-05 75 -0.749350848583E-05 0.153299976193E-05 76 -0.506288280297E-05 0.307297745609E-05 77 -0.924972097337E-05 0.140259104067E-06 78 -0.105621290827E-04 0.270061953199E-07 79 -0.121663751979E-04 0.654137460676E-06 80 -0.126243323180E-04 0.380823244440E-06 81 -0.144250233739E-04 0.469279784433E-06 82 -0.164221807200E-04 0.390047381074E-06 83 -0.201014795023E-04 0.895314581316E-06 84 -0.160108344918E-04 0.921205833139E-05 85 -0.142753514053E-04 -0.434654985461E-05 86 -0.270033006585E-04 -0.687192026587E-06 87 -0.335819958229E-04 -0.567472749303E-08 88 -0.440572160331E-04 0.478440819796E-06 89 -0.605339243889E-04 0.539866688697E-05 90 -0.940486064735E-04 0.882154629877E-05 91 -0.214159620537E-03 0.487592917523E-04 92 0.448882230694E-03 0.280584666373E-03 93 0.129395460789E-03 0.163102927527E-04 94 0.735179044609E-04 0.532862897635E-05 95 0.570624018208E-04 -0.957708145184E-05 96 0.366506169514E-04 -0.398566876705E-05 97 0.301205123659E-04 -0.123375369084E-06 98 0.201393733740E-04 0.453763144494E-05 99 0.204215886380E-04 0.102138078793E-04 100 0.229460106257E-04 0.524312852137E-05 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.755100784 30 atime=1623670096.755100784 30 ctime=1623670096.755100784 elk-7.2.42/tests/test_023/TEST_800.OUT_0000644002504400250440000000173214061636520020572 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 29 0.100000000000E-07 1 3471.42385475 2 449.999268017 3 102.126006040 4 44.4368907338 5 24.8077399615 6 316.225134909 7 110.172109929 8 49.8595800454 9 27.6688640011 10 33.2606437898 11 63.9928181320 12 159.609474644 13 74.9097699406 14 44.1226890559 15 26.9879912411 16 23.3873537479 17 37.5424793079 18 32.9874812327 19 23.2415139523 20 16.4427726861 21 18.4974249639 22 58.8819748233 23 33.7934093072 24 21.1301369304 25 29.5144616450 26 20.0273396337 27 22.9243588415 28 17.3643897759 29 14.7360936588 elk-7.2.42/tests/test_023/PaxHeaders.21776/TEST_320.OUT_0000644000000000000000000000013014061636520016525 xustar0029 mtime=1623670096.75910078 30 atime=1623670096.756100783 29 ctime=1623670096.75910078 elk-7.2.42/tests/test_023/TEST_320.OUT_0000644002504400250440000116230414061636520020573 0ustar00dewhurstdewhurst00000000000000'inverse epsilon' 3 6050 0.100000000000E-01 1 0.447750184245 -0.217020080104E-14 2 -0.307935023403E-05 0.157782107523E-15 3 0.200616430204E-05 -0.805871234364E-16 4 -0.381870369656E-01 0.537496711368E-05 5 -0.381861534154E-01 -0.809461875555E-05 6 0.381758899126E-01 -0.584232221218E-05 7 0.381940150131E-01 0.173572146246E-05 8 0.381870369656E-01 0.537496711320E-05 9 -0.381940150131E-01 0.173572146300E-05 10 0.381861534154E-01 -0.809461875605E-05 11 -0.381758899126E-01 -0.584232221173E-05 12 -0.307990362429E-05 -0.210584831117E-15 13 0.447750636310 -0.106095845509E-14 14 0.532168240746E-06 -0.129980665028E-16 15 -0.381905196947E-01 0.398413186506E-05 16 0.381909950013E-01 0.453485970848E-05 17 0.381817614913E-01 -0.534501325500E-05 18 -0.381834009311E-01 -0.720926991085E-05 19 0.381905196947E-01 0.398413186468E-05 20 0.381834009311E-01 -0.720926991118E-05 21 -0.381909950013E-01 0.453485970882E-05 22 -0.381817614913E-01 -0.534501325463E-05 23 0.200603652873E-05 0.145125777915E-15 24 0.532563004544E-06 0.198429922906E-15 25 0.447748431514 -0.382820175815E-15 26 -0.381766640754E-01 0.287425071795E-05 27 0.381886134225E-01 0.474520168575E-06 28 -0.381707571127E-01 -0.612581806840E-05 29 0.381933188781E-01 0.627145098812E-06 30 0.381766640754E-01 0.287425071772E-05 31 -0.381933188781E-01 0.627145099094E-06 32 -0.381886134225E-01 0.474520168821E-06 33 0.381707571127E-01 -0.612581806871E-05 34 -0.381870369235E-01 -0.537527269793E-05 35 -0.381905197629E-01 -0.398436473432E-05 36 -0.381766640622E-01 -0.287399218621E-05 37 0.819710474099 0.434622189131E-08 38 -0.493561418334E-01 -0.711863241495E-05 39 -0.493995869901E-01 -0.609735796174E-05 40 -0.493498929687E-01 0.298836052224E-06 41 -0.366270632713E-01 -0.168595254818E-04 42 -0.639559721753E-01 0.148202735909E-04 43 -0.639492357862E-01 0.650571326368E-05 44 -0.639114344692E-01 0.167462080518E-04 45 -0.381861534568E-01 0.809423137114E-05 46 0.381909950030E-01 -0.453449686433E-05 47 0.381886133912E-01 -0.475086743644E-06 48 -0.493561418940E-01 0.711852441125E-05 49 0.819799751768 0.240858166469E-08 50 -0.493266577500E-01 -0.251272774378E-04 51 -0.493265871739E-01 -0.739426571987E-06 52 -0.639492358777E-01 0.650752575064E-05 53 -0.639867727123E-01 -0.129148714344E-06 54 -0.367213078677E-01 0.445303230699E-04 55 -0.639795562010E-01 -0.276097727716E-04 56 0.381758898863E-01 0.584271383598E-05 57 0.381817614880E-01 0.534487947454E-05 58 -0.381707571360E-01 0.612647761211E-05 59 -0.493995869625E-01 0.609679863563E-05 60 -0.493266578545E-01 0.251275609974E-04 61 0.819636340764 -0.650673261971E-08 62 -0.493300847632E-01 0.316682792167E-04 63 -0.639114345184E-01 0.167525688468E-04 64 -0.639668609375E-01 -0.105559315091E-04 65 -0.639795562313E-01 -0.276049982213E-04 66 -0.365671119506E-01 -0.258821274033E-04 67 0.381940150420E-01 -0.173476235572E-05 68 -0.381834008620E-01 0.720971745070E-05 69 0.381933189068E-01 -0.627667393201E-06 70 -0.493498929284E-01 -0.299378311644E-06 71 -0.493265871990E-01 0.738466084797E-06 72 -0.493300847707E-01 -0.316666243070E-04 73 0.819783074012 0.322053784913E-10 74 -0.639559721470E-01 0.148220804584E-04 75 -0.367166792347E-01 0.323564981439E-04 76 -0.639867727280E-01 -0.127394633415E-06 77 -0.639668609830E-01 -0.105593680096E-04 78 0.381870369235E-01 -0.537527269844E-05 79 0.381905197629E-01 -0.398436473464E-05 80 0.381766640622E-01 -0.287399218649E-05 81 -0.366270632713E-01 0.168595254820E-04 82 -0.639492357862E-01 -0.650571326347E-05 83 -0.639114344692E-01 -0.167462080516E-04 84 -0.639559721753E-01 -0.148202735907E-04 85 0.819710474099 -0.434622146764E-08 86 -0.493498929687E-01 -0.298836052069E-06 87 -0.493561418334E-01 0.711863241513E-05 88 -0.493995869901E-01 0.609735796191E-05 89 -0.381940150420E-01 -0.173476235527E-05 90 0.381834008620E-01 0.720971745030E-05 91 -0.381933189068E-01 -0.627667392924E-06 92 -0.639559721470E-01 -0.148220804582E-04 93 -0.639867727280E-01 0.127394633635E-06 94 -0.639668609830E-01 0.105593680098E-04 95 -0.367166792347E-01 -0.323564981437E-04 96 -0.493498929284E-01 0.299378311829E-06 97 0.819783074012 -0.322049555363E-10 98 -0.493265871990E-01 -0.738466084637E-06 99 -0.493300847707E-01 0.316666243072E-04 100 0.381861534568E-01 0.809423137066E-05 101 -0.381909950030E-01 -0.453449686399E-05 102 -0.381886133912E-01 -0.475086743360E-06 103 -0.639492358777E-01 -0.650752575042E-05 104 -0.367213078677E-01 -0.445303230698E-04 105 -0.639795562010E-01 0.276097727718E-04 106 -0.639867727123E-01 0.129148714553E-06 107 -0.493561418940E-01 -0.711852441109E-05 108 -0.493265871739E-01 0.739426572168E-06 109 0.819799751768 -0.240858124188E-08 110 -0.493266577500E-01 0.251272774379E-04 111 -0.381758898863E-01 0.584271383653E-05 112 -0.381817614880E-01 0.534487947491E-05 113 0.381707571360E-01 0.612647761184E-05 114 -0.639114345184E-01 -0.167525688466E-04 115 -0.639795562313E-01 0.276049982215E-04 116 -0.365671119506E-01 0.258821274035E-04 117 -0.639668609375E-01 0.105559315094E-04 118 -0.493995869625E-01 -0.609679863545E-05 119 -0.493300847632E-01 -0.316682792166E-04 120 -0.493266578545E-01 -0.251275609973E-04 121 0.819636340764 0.650673304287E-08 122 0.447081529034 -0.446821931621E-03 123 -0.307633779482E-05 0.236013131477E-08 124 0.200962504897E-05 0.239794969847E-08 125 -0.382099446979E-01 -0.987271342462E-05 126 -0.382090186015E-01 -0.233530633343E-04 127 0.381987638797E-01 0.939659891170E-05 128 0.382169150053E-01 0.170188508127E-04 129 0.382099196576E-01 0.206587664075E-04 130 -0.382169260725E-01 -0.135263956730E-04 131 0.382090295810E-01 0.714554230719E-05 132 -0.381987512796E-01 -0.210980283421E-04 133 -0.307619844262E-05 0.212911556324E-08 134 0.447081981776 -0.446821476044E-03 135 0.536360557538E-06 0.256702578952E-08 136 -0.382134362824E-01 -0.112840193294E-04 137 0.382138970879E-01 0.198189725564E-04 138 0.382046376963E-01 0.989314935576E-05 139 -0.382062594755E-01 -0.224641613319E-04 140 0.382134248368E-01 0.192683804480E-04 141 0.382062730983E-01 0.802735315365E-05 142 -0.382139090890E-01 -0.107297640671E-04 143 -0.382046241725E-01 -0.206037761268E-04 144 0.200965750409E-05 0.234340432213E-08 145 0.536264216383E-06 0.272513474996E-08 146 0.447079773327 -0.446823924891E-03 147 -0.381995258206E-01 -0.123612684244E-04 148 0.382115039738E-01 0.157499399622E-04 149 -0.381936070130E-01 -0.213813758695E-04 150 0.382162196586E-01 0.158845854473E-04 151 0.381995192618E-01 0.181210546384E-04 152 -0.382162096962E-01 -0.146476193321E-04 153 -0.382115171181E-01 -0.147840991333E-04 154 0.381936269151E-01 0.910279952671E-05 155 -0.382099205214E-01 -0.206590641985E-04 156 -0.382134255475E-01 -0.192685956764E-04 157 -0.381995182658E-01 -0.181207831052E-04 158 0.819598585054 -0.747047680152E-04 159 -0.494081770358E-01 -0.418767547412E-04 160 -0.494516522495E-01 -0.408801704098E-04 161 -0.494019303098E-01 -0.344513251009E-04 162 -0.366670916356E-01 -0.435889505126E-04 163 -0.640054983092E-01 -0.182316797741E-04 164 -0.639987582000E-01 -0.265447311327E-04 165 -0.639609297200E-01 -0.162913157789E-04 166 -0.382090308436E-01 -0.714593897158E-05 167 0.382139101280E-01 0.107300882037E-04 168 0.382115152035E-01 0.147835218954E-04 169 -0.494081831259E-01 -0.276303803161E-04 170 0.819687911726 -0.746700704745E-04 171 -0.493786807667E-01 -0.598885420077E-04 172 -0.493785996339E-01 -0.354726552601E-04 173 -0.639987526960E-01 -0.265426394355E-04 174 -0.640363216840E-01 -0.332079566527E-04 175 -0.367614037887E-01 0.177768290194E-04 176 -0.640290790388E-01 -0.606868087588E-04 177 0.381987526450E-01 0.210984125978E-04 178 0.382046239085E-01 0.206036850578E-04 179 -0.381936250459E-01 -0.910212292994E-05 180 -0.494516629925E-01 -0.286699711176E-04 181 -0.493786967889E-01 -0.960953989530E-05 182 0.819524384667 -0.747383685520E-04 183 -0.493821279625E-01 -0.306428504466E-05 184 -0.639609102319E-01 -0.162847976428E-04 185 -0.640163737731E-01 -0.436254873050E-04 186 -0.640290644334E-01 -0.606819390676E-04 187 -0.366071070452E-01 -0.526183464732E-04 188 0.382169290770E-01 0.135273528799E-04 189 -0.382062716566E-01 -0.802692763170E-05 190 0.382162080732E-01 0.146471138773E-04 191 -0.494019281528E-01 -0.350528280700E-04 192 -0.493785975216E-01 -0.339978861665E-04 193 -0.493821037702E-01 -0.664354120427E-04 194 0.819671212323 -0.746820743558E-04 195 -0.640054927246E-01 -0.182299531429E-04 196 -0.367567651339E-01 0.559851566538E-05 197 -0.640363163099E-01 -0.332061545369E-04 198 -0.640163843398E-01 -0.436287885549E-04 199 0.382099438011E-01 0.987239941671E-05 200 0.382134356373E-01 0.112837683962E-04 201 0.381995268098E-01 0.123615106074E-04 202 -0.366670889929E-01 -0.987384807651E-05 203 -0.639987399893E-01 -0.395750497124E-04 204 -0.639609067474E-01 -0.497888834352E-04 205 -0.640054793877E-01 -0.478922367383E-04 206 0.819598558657 -0.747134642957E-04 207 -0.494019264243E-01 -0.350521638293E-04 208 -0.494081825416E-01 -0.276304608425E-04 209 -0.494516613682E-01 -0.286693316767E-04 210 -0.382169120268E-01 -0.170178892854E-04 211 0.382062608497E-01 0.224646310047E-04 212 -0.382162213002E-01 -0.158851248732E-04 213 -0.640054849199E-01 -0.478941247401E-04 214 -0.640363189435E-01 -0.329554927500E-04 215 -0.640163798586E-01 -0.225010046234E-04 216 -0.367567533915E-01 -0.591320769017E-04 217 -0.494019284963E-01 -0.344509048675E-04 218 0.819671212103 -0.746821387098E-04 219 -0.493785967169E-01 -0.354716151959E-04 220 -0.493821331756E-01 -0.306591905650E-05 221 0.382090173709E-01 0.233526863866E-04 222 -0.382138960642E-01 -0.198185690873E-04 223 -0.382115058648E-01 -0.157504940344E-04 224 -0.639987456733E-01 -0.395765838247E-04 225 -0.367613817199E-01 -0.713168811540E-04 226 -0.640290789593E-01 -0.544545594563E-05 227 -0.640363135403E-01 -0.329537857303E-04 228 -0.494081765758E-01 -0.418764590671E-04 229 -0.493785945521E-01 -0.339970043171E-04 230 0.819687897046 -0.746748895802E-04 231 -0.493786976641E-01 -0.961014593391E-05 232 -0.381987624935E-01 -0.939620186118E-05 233 -0.382046379418E-01 -0.989332811551E-05 234 0.381936089091E-01 0.213820207971E-04 235 -0.639609263329E-01 -0.497950903673E-04 236 -0.640290936246E-01 -0.545013813853E-05 237 -0.366071312008E-01 -0.817923203018E-06 238 -0.640163903362E-01 -0.225045784511E-04 239 -0.494516505712E-01 -0.408796904302E-04 240 -0.493821089662E-01 -0.664370886775E-04 241 -0.493786818517E-01 -0.598885028586E-04 242 0.819524424243 -0.747253495192E-04 243 0.445062413510 -0.902473208261E-03 244 -0.306622252819E-05 0.459732460062E-08 245 0.202036740203E-05 0.484207680860E-08 246 -0.382786705225E-01 -0.251008122539E-04 247 -0.382776515671E-01 -0.386466247254E-04 248 0.382673999044E-01 0.246350652245E-04 249 0.382856534098E-01 0.323405662370E-04 250 0.382786197624E-01 0.359962298707E-04 251 -0.382856759684E-01 -0.287844401612E-04 252 0.382776738383E-01 0.223837938434E-04 253 -0.382673744145E-01 -0.363872878798E-04 254 -0.306602543758E-05 0.447204579981E-08 255 0.445062868335 -0.902472262217E-03 256 0.548407967679E-06 0.537925848946E-08 257 -0.382822024948E-01 -0.265532430969E-04 258 0.382826429300E-01 0.351401748250E-04 259 0.382732794921E-01 0.251269586481E-04 260 -0.382748750896E-01 -0.377540246064E-04 261 0.382821792999E-01 0.345863465467E-04 262 0.382749026378E-01 0.232619622295E-04 263 -0.382826672659E-01 -0.259919937800E-04 264 -0.382732520658E-01 -0.358999589609E-04 265 0.202041322206E-05 0.481085764539E-08 266 0.548270719540E-06 0.545669235316E-08 267 0.445060648760 -0.902477271692E-03 268 -0.382681309354E-01 -0.276017159795E-04 269 0.382802159899E-01 0.310595123724E-04 270 -0.382622027629E-01 -0.366806981988E-04 271 0.382849394731E-01 0.311414578902E-04 272 0.382681175804E-01 0.333956952436E-04 273 -0.382849191673E-01 -0.299570322633E-04 274 -0.382802426248E-01 -0.300427476128E-04 275 0.382622430658E-01 0.243205698281E-04 276 -0.382786215101E-01 -0.359965328632E-04 277 -0.382821806868E-01 -0.345865273433E-04 278 -0.382681156022E-01 -0.333954189669E-04 279 0.819261547485 -0.150314176976E-03 280 -0.495650568391E-01 -0.771590651667E-04 281 -0.496086262205E-01 -0.761946429977E-04 282 -0.495588071523E-01 -0.697133856684E-04 283 -0.367877574874E-01 -0.707052413418E-04 284 -0.641546933491E-01 -0.516891354648E-04 285 -0.641479427396E-01 -0.600017772224E-04 286 -0.641100275049E-01 -0.497490344284E-04 287 -0.382776763421E-01 -0.223841862560E-04 288 0.382826693427E-01 0.259922841470E-04 289 0.382802388138E-01 0.300421711339E-04 290 -0.495650690265E-01 -0.628853115126E-04 291 0.819351033652 -0.150242324993E-03 292 -0.495355352905E-01 -0.951888656403E-04 293 -0.495354002658E-01 -0.707174947617E-04 294 -0.641479316386E-01 -0.599994045795E-04 295 -0.641855963306E-01 -0.667085396508E-04 296 -0.368822537546E-01 -0.933485501112E-05 297 -0.641782829133E-01 -0.942114613634E-04 298 0.382673771519E-01 0.363876705468E-04 299 0.382732515403E-01 0.358999053877E-04 300 -0.382622393061E-01 -0.243198687781E-04 301 -0.496086479153E-01 -0.639358852463E-04 302 -0.495355674240E-01 -0.448377281376E-04 303 0.819187211482 -0.150370803249E-03 304 -0.495390074293E-01 -0.382754657509E-04 305 -0.641099884684E-01 -0.497423552012E-04 306 -0.641655643126E-01 -0.771298437254E-04 307 -0.641782536634E-01 -0.942064935767E-04 308 -0.367276994444E-01 -0.797817366833E-04 309 0.382856819654E-01 0.287853882309E-04 310 -0.382748997902E-01 -0.232615757505E-04 311 0.382849159093E-01 0.299565339148E-04 312 -0.495588028517E-01 -0.703245525901E-04 313 -0.495353959868E-01 -0.692522976757E-04 314 -0.495389587215E-01 -0.101755776047E-03 315 0.819334283573 -0.150264085645E-03 316 -0.641546822031E-01 -0.516874893387E-04 317 -0.368775952199E-01 -0.215331619878E-04 318 -0.641855855645E-01 -0.667066879538E-04 319 -0.641655854083E-01 -0.771330112006E-04 320 0.382786687457E-01 0.251005015398E-04 321 0.382822011680E-01 0.265529564548E-04 322 0.382681329084E-01 0.276019432458E-04 323 -0.367877521161E-01 -0.370021131124E-04 324 -0.641479061332E-01 -0.730890437010E-04 325 -0.641099815460E-01 -0.832620599786E-04 326 -0.641546553106E-01 -0.814100086364E-04 327 0.819261494667 -0.150322884799E-03 328 -0.495587993525E-01 -0.703237672804E-04 329 -0.495650679222E-01 -0.628855807812E-04 330 -0.496086446375E-01 -0.639351644640E-04 331 -0.382856474364E-01 -0.323395940163E-04 332 0.382748778753E-01 0.377545336825E-04 333 -0.382849427466E-01 -0.311420053155E-04 334 -0.641546664045E-01 -0.814119798324E-04 335 -0.641855908038E-01 -0.664684552159E-04 336 -0.641655765203E-01 -0.559779623365E-04 337 -0.368775716384E-01 -0.863166878029E-04 338 -0.495588035675E-01 -0.697130866524E-04 339 0.819334283133 -0.150264149827E-03 340 -0.495353944029E-01 -0.707163747172E-04 341 -0.495390178499E-01 -0.382770800868E-04 342 0.382776490914E-01 0.386462470454E-04 343 -0.382826408694E-01 -0.351397317398E-04 344 -0.382802197802E-01 -0.310600616099E-04 345 -0.641479174141E-01 -0.730902993722E-04 346 -0.368822093982E-01 -0.985280837864E-04 347 -0.641782829006E-01 -0.389044547717E-04 348 -0.641855800089E-01 -0.664667948562E-04 349 -0.495650558594E-01 -0.771585833532E-04 350 -0.495353900711E-01 -0.692514929879E-04 351 0.819351004281 -0.150247149941E-03 352 -0.495355692787E-01 -0.448386563973E-04 353 -0.382673971487E-01 -0.246346724911E-04 354 -0.382732799981E-01 -0.251271817785E-04 355 0.382622065481E-01 0.366813260683E-04 356 -0.641100206797E-01 -0.832681162553E-04 357 -0.641783122103E-01 -0.389090472232E-04 358 -0.367277481177E-01 -0.278722677008E-04 359 -0.641655975269E-01 -0.559816761730E-04 360 -0.496086228886E-01 -0.761942420478E-04 361 -0.495389691248E-01 -0.101757474825E-03 362 -0.495355373552E-01 -0.951885035686E-04 363 0.819187290670 -0.150357767474E-03 364 0.441652600602 -0.137631609563E-02 365 -0.304909323891E-05 0.696080722989E-08 366 0.203871252718E-05 0.747097090842E-08 367 -0.383932822187E-01 -0.403149705379E-04 368 -0.383921175300E-01 -0.539827013699E-04 369 0.383818633056E-01 0.398790619742E-04 370 0.384002983718E-01 0.477092393673E-04 371 0.383932043320E-01 0.513960941162E-04 372 -0.384003333006E-01 -0.440448355445E-04 373 0.383921517383E-01 0.376261253585E-04 374 -0.383818243261E-01 -0.517174316841E-04 375 -0.304888200155E-05 0.687556363705E-08 376 0.441653059077 -0.137631458572E-02 377 0.569097357380E-06 0.843160939846E-08 378 -0.383968874861E-01 -0.418303844727E-04 379 0.383973011530E-01 0.505067495621E-04 380 0.383877521561E-01 0.403621632837E-04 381 -0.383893124670E-01 -0.530861419721E-04 382 0.383968519132E-01 0.499462569081E-04 383 0.383893545669E-01 0.385004615205E-04 384 -0.383973385140E-01 -0.412585620153E-04 385 -0.383877100432E-01 -0.512410686861E-04 386 0.203876163363E-05 0.744784612665E-08 387 0.568950125114E-06 0.847485297014E-08 388 0.441650820391 -0.137632238950E-02 389 -0.383825439462E-01 -0.428530483586E-04 390 0.383948169240E-01 0.464112794490E-04 391 -0.383766088290E-01 -0.520314559371E-04 392 0.383995459064E-01 0.464040518619E-04 393 0.383825233028E-01 0.487051700007E-04 394 -0.383995144675E-01 -0.453091294263E-04 395 -0.383948577680E-01 -0.453078620868E-04 396 0.383766705651E-01 0.395329190026E-04 397 -0.383932069654E-01 -0.513964004784E-04 398 -0.383968539811E-01 -0.499464070414E-04 399 -0.383825203613E-01 -0.487048917330E-04 400 0.818695275844 -0.227760168908E-03 401 -0.498291202531E-01 -0.113502984650E-03 402 -0.498728491918E-01 -0.112578759403E-03 403 -0.498228624651E-01 -0.106024521400E-03 404 -0.369908356536E-01 -0.986157311035E-04 405 -0.644054890304E-01 -0.859943323345E-04 406 -0.643987210124E-01 -0.943076588322E-04 407 -0.643606580647E-01 -0.840692956698E-04 408 -0.383921554779E-01 -0.376265147588E-04 409 0.383973416403E-01 0.412588201971E-04 410 0.383948520691E-01 0.453072866787E-04 411 -0.498291386787E-01 -0.991833753508E-04 412 0.818785034362 -0.227650098535E-03 413 -0.497995601093E-01 -0.131565915307E-03 414 -0.497993268912E-01 -0.107010859330E-03 415 -0.643987043089E-01 -0.943050042368E-04 416 -0.644365295226E-01 -0.101073782962E-03 417 -0.370856351085E-01 -0.372123228335E-04 418 -0.644290995514E-01 -0.128626797930E-03 419 0.383818284241E-01 0.517178092075E-04 420 0.383877092436E-01 0.512410507776E-04 421 -0.383766649008E-01 -0.395321916013E-04 422 -0.498728822106E-01 -0.100238100704E-03 423 -0.497996087505E-01 -0.810937893505E-04 424 0.818620734413 -0.227840380317E-03 425 -0.498030623229E-01 -0.745017990122E-04 426 -0.643605994566E-01 -0.840624519631E-04 427 -0.644163643169E-01 -0.111511900782E-03 428 -0.644290556388E-01 -0.128621729304E-03 429 -0.369306630761E-01 -0.107780494926E-03 430 0.384003422960E-01 0.440457764890E-04 431 -0.383893503093E-01 -0.385001104961E-04 432 0.383995095731E-01 0.453086397825E-04 433 -0.498228559629E-01 -0.106651859095E-03 434 -0.497993203885E-01 -0.105561809733E-03 435 -0.498029884557E-01 -0.138165682126E-03 436 0.818768203991 -0.227681878078E-03 437 -0.644054723166E-01 -0.859927658982E-04 438 -0.370809465281E-01 -0.494463493112E-04 439 -0.644365133583E-01 -0.101071880805E-03 440 -0.644163959551E-01 -0.111514936374E-03 441 0.383932795569E-01 0.403146599583E-04 442 0.383968854776E-01 0.418300650005E-04 443 0.383825468826E-01 0.428532562308E-04 444 -0.369908273790E-01 -0.649329923304E-04 445 -0.643986656338E-01 -0.107490754492E-03 446 -0.643605890912E-01 -0.117608096083E-03 447 -0.644054314747E-01 -0.115816702575E-03 448 0.818695196557 -0.227768896074E-03 449 -0.498228506926E-01 -0.106650952249E-03 450 -0.498291370590E-01 -0.991838345753E-04 451 -0.498728772749E-01 -0.100237297515E-03 452 -0.384002893997E-01 -0.477082573842E-04 453 0.383893166636E-01 0.530866871115E-04 454 -0.383995508159E-01 -0.464046095046E-04 455 -0.644054481361E-01 -0.115818757928E-03 456 -0.644365211473E-01 -0.100854518819E-03 457 -0.644163828129E-01 -0.903140366332E-04 458 -0.370809109103E-01 -0.114318584029E-03 459 -0.498228571089E-01 -0.106024344211E-03 460 0.818768203332 -0.227681941968E-03 461 -0.497993180765E-01 -0.107009658196E-03 462 -0.498030779567E-01 -0.745033942569E-04 463 0.383921138179E-01 0.539823267202E-04 464 -0.383972980429E-01 -0.505062643034E-04 465 -0.383948226025E-01 -0.464118201832E-04 466 -0.643986825174E-01 -0.107491732376E-03 467 -0.370855680178E-01 -0.126572517985E-03 468 -0.644290999044E-01 -0.732095856630E-04 469 -0.644365049541E-01 -0.100852904046E-03 470 -0.498291187583E-01 -0.113502317297E-03 471 -0.497993115209E-01 -0.105561081432E-03 472 0.818784990274 -0.227654933265E-03 473 -0.497996115838E-01 -0.810950399132E-04 474 -0.383818591896E-01 -0.398786741934E-04 475 -0.383877529361E-01 -0.403624338153E-04 476 0.383766145188E-01 0.520320700645E-04 477 -0.643606477963E-01 -0.117614005275E-03 478 -0.644291438767E-01 -0.732140912113E-04 479 -0.369307370085E-01 -0.556874569994E-04 480 -0.644164143618E-01 -0.903178927547E-04 481 -0.498728442016E-01 -0.112578436982E-03 482 -0.498030040720E-01 -0.138167404056E-03 483 -0.497995631528E-01 -0.131565229715E-03 484 0.818620853280 -0.227827316494E-03 485 0.436782303105 -0.187884767733E-02 486 -0.302461073603E-05 0.948093411905E-08 487 0.206534090205E-05 0.103862405589E-07 488 -0.385538414484E-01 -0.554978864862E-04 489 -0.385524739734E-01 -0.693473782892E-04 490 0.385422115752E-01 0.551122138639E-04 491 0.385609125231E-01 0.631122269084E-04 492 0.385537341993E-01 0.668464606664E-04 493 -0.385609612210E-01 -0.592915347867E-04 494 0.385525211427E-01 0.528561661050E-04 495 -0.385421581515E-01 -0.670744348255E-04 496 -0.302439147939E-05 0.941619279129E-08 497 0.436782767082 -0.187884548377E-02 498 0.599464449342E-06 0.119034179711E-07 499 -0.385575554053E-01 -0.571000595245E-04 500 0.385579352180E-01 0.659058228122E-04 501 0.385481130578E-01 0.555819998377E-04 502 -0.385496282128E-01 -0.684464333179E-04 503 0.385575064557E-01 0.653351387731E-04 504 0.385496858582E-01 0.537263679031E-04 505 -0.385579867009E-01 -0.565138910242E-04 506 -0.385480550114E-01 -0.666134110732E-04 507 0.206539188809E-05 0.103666366603E-07 508 0.599311597707E-06 0.119261739498E-07 509 0.436780500393 -0.187885645931E-02 510 -0.385428209774E-01 -0.580989517041E-04 511 0.385553682001E-01 0.617921058098E-04 512 -0.385368814615E-01 -0.674202952908E-04 513 0.385601003439E-01 0.616562249275E-04 514 0.385427922616E-01 0.640349867093E-04 515 -0.385600565126E-01 -0.606908233739E-04 516 -0.385554243977E-01 -0.605635002509E-04 517 0.385369662701E-01 0.547225768764E-04 518 -0.385537377230E-01 -0.668467702676E-04 519 -0.385575092084E-01 -0.653352596669E-04 520 -0.385427883871E-01 -0.640347102609E-04 521 0.817892778009 -0.308054307955E-03 522 -0.502043782377E-01 -0.151492397351E-03 523 -0.502483343505E-01 -0.150617178559E-03 524 -0.501981070991E-01 -0.143968212739E-03 525 -0.372793687475E-01 -0.127762438080E-03 526 -0.647611913240E-01 -0.121624781596E-03 527 -0.647543987671E-01 -0.129939902511E-03 528 -0.647161248610E-01 -0.119730001195E-03 529 -0.385525261073E-01 -0.528565519385E-04 530 0.385579908955E-01 0.565141192485E-04 531 0.385554168261E-01 0.605629278141E-04 532 -0.502044031199E-01 -0.137107919479E-03 533 0.817982925792 -0.307904361229E-03 534 -0.501747658358E-01 -0.169604019108E-03 535 -0.501743883922E-01 -0.144935946068E-03 536 -0.647543764524E-01 -0.129936964702E-03 537 -0.647924292277E-01 -0.136782137867E-03 538 -0.373745947397E-01 -0.662976847310E-04 539 -0.647848350215E-01 -0.164411730111E-03 540 0.385421635938E-01 0.670748045376E-04 541 0.385480539175E-01 0.666134263903E-04 542 -0.385369586786E-01 -0.547218202147E-04 543 -0.502483792733E-01 -0.138159856444E-03 544 -0.501748316007E-01 -0.118960541111E-03 545 0.817817959209 -0.308158971470E-03 546 -0.501783037273E-01 -0.112325656827E-03 547 -0.647160466466E-01 -0.119722989603E-03 548 -0.647720798950E-01 -0.147250284556E-03 549 -0.647847764186E-01 -0.164406557879E-03 550 -0.372190391509E-01 -0.137058213941E-03 551 0.385609732222E-01 0.592924695729E-04 552 -0.385496801878E-01 -0.537260510365E-04 553 0.385600499781E-01 0.606903427505E-04 554 -0.501980983061E-01 -0.144618448372E-03 555 -0.501743795809E-01 -0.143509832276E-03 556 -0.501782036986E-01 -0.176249957361E-03 557 0.817965984519 -0.307946566376E-03 558 -0.647611690332E-01 -0.121623294330E-03 559 -0.373698654558E-01 -0.785835700091E-04 560 -0.647924076554E-01 -0.136780184283E-03 561 -0.647721220963E-01 -0.147253189957E-03 562 0.385538378962E-01 0.554975744941E-04 563 0.385575527121E-01 0.570997076946E-04 564 0.385428248466E-01 0.580991360489E-04 565 -0.372793573017E-01 -0.941091655370E-04 566 -0.647543240338E-01 -0.143259119143E-03 567 -0.647160328286E-01 -0.153304914587E-03 568 -0.647611136265E-01 -0.151591334828E-03 569 0.817892672181 -0.308063062425E-03 570 -0.501980912646E-01 -0.144617419523E-03 571 -0.502044009919E-01 -0.137108569911E-03 572 -0.502483726727E-01 -0.138158969546E-03 573 -0.385609005453E-01 -0.631112349761E-04 574 0.385496338223E-01 0.684470134864E-04 575 -0.385601068934E-01 -0.616567937618E-04 576 -0.647611358647E-01 -0.151593475570E-03 577 -0.647924179099E-01 -0.136592369088E-03 578 -0.647721049377E-01 -0.125987220266E-03 579 -0.373698174966E-01 -0.143581039141E-03 580 -0.501980999712E-01 -0.143968158056E-03 581 0.817965983641 -0.307946629844E-03 582 -0.501743766169E-01 -0.144934662780E-03 583 -0.501783245827E-01 -0.112327233524E-03 584 0.385524690361E-01 0.693470089212E-04 585 -0.385579310396E-01 -0.659052930777E-04 586 -0.385553757509E-01 -0.617926355618E-04 587 -0.647543465288E-01 -0.143259819627E-03 588 -0.373745042202E-01 -0.155893996515E-03 589 -0.647848362051E-01 -0.108838552109E-03 590 -0.647923963089E-01 -0.136590798908E-03 591 -0.502043762347E-01 -0.151491545141E-03 592 -0.501743677527E-01 -0.143509179536E-03 593 0.817982866952 -0.307909209749E-03 594 -0.501748354110E-01 -0.118962114149E-03 595 -0.385422061147E-01 -0.551118329597E-04 596 -0.385481141320E-01 -0.555823206371E-04 597 0.385368890788E-01 0.674208984341E-04 598 -0.647161111399E-01 -0.153310680250E-03 599 -0.647848948677E-01 -0.108842973588E-03 600 -0.372191394981E-01 -0.847042547125E-04 601 -0.647721470494E-01 -0.125991221166E-03 602 -0.502483276951E-01 -0.150616934363E-03 603 -0.501782245364E-01 -0.176251703412E-03 604 -0.501747698566E-01 -0.169603009234E-03 605 0.817818117861 -0.308145868074E-03 606 0.430347720000 -0.242245559846E-02 607 -0.299224736492E-05 0.122144693731E-07 608 0.210129104598E-05 0.137187618153E-07 609 -0.387603158532E-01 -0.705925434340E-04 610 -0.387586824583E-01 -0.846888838269E-04 611 0.387484061741E-01 0.702790733970E-04 612 0.387674651675E-01 0.784994377634E-04 613 0.387601760046E-01 0.822984267958E-04 614 -0.387675296637E-01 -0.744693283574E-04 615 0.387587440668E-01 0.680184650466E-04 616 -0.387483369214E-01 -0.824063826674E-04 617 -0.299202094011E-05 0.121620839324E-07 618 0.430348191775 -0.242245254155E-02 619 0.641079920046E-06 0.160051762973E-07 620 -0.387641777142E-01 -0.723080121595E-04 621 0.387645156689E-01 0.812869185519E-04 622 0.387543234447E-01 0.707304441230E-04 623 -0.387557825606E-01 -0.837829207837E-04 624 0.387641139428E-01 0.807023550579E-04 625 0.387558571879E-01 0.688841003631E-04 626 -0.387645828599E-01 -0.717034504377E-04 627 -0.387542476583E-01 -0.819655707564E-04 628 0.210134372258E-05 0.137007153736E-07 629 0.640922074260E-06 0.160130183590E-07 630 0.430345886804 -0.242246724740E-02 631 -0.387489214535E-01 -0.732841296145E-04 632 0.387618372925E-01 0.771512206183E-04 633 -0.387429804174E-01 -0.827963435262E-04 634 0.387665700582E-01 0.768426948835E-04 635 0.387488835272E-01 0.793325943249E-04 636 -0.387665120043E-01 -0.760514341893E-04 637 -0.387619105069E-01 -0.757546655026E-04 638 0.387430906685E-01 0.698327940233E-04 639 -0.387601804257E-01 -0.822987399440E-04 640 -0.387641173854E-01 -0.807024475820E-04 641 -0.387488787624E-01 -0.793323242612E-04 642 0.816843863187 -0.392329890433E-03 643 -0.506966935868E-01 -0.191786283544E-03 644 -0.507409477644E-01 -0.190969906574E-03 645 -0.506904036615E-01 -0.184202860777E-03 646 -0.376578022723E-01 -0.158643527563E-03 647 -0.652266185133E-01 -0.159115171040E-03 648 -0.652197939546E-01 -0.167433238985E-03 649 -0.651812425338E-01 -0.157266526669E-03 650 -0.387587502411E-01 -0.680188461755E-04 651 0.387645881488E-01 0.717036513817E-04 652 0.387619010841E-01 0.757540986634E-04 653 -0.506967252305E-01 -0.177317143292E-03 654 0.816934523101 -0.392137735336E-03 655 -0.506670147647E-01 -0.209962817371E-03 656 -0.506664444939E-01 -0.185150840742E-03 657 -0.652197660174E-01 -0.167430016524E-03 658 -0.652581166759E-01 -0.174369578124E-03 659 -0.377535843862E-01 -0.970890311821E-04 660 -0.652503078184E-01 -0.202102984796E-03 661 0.387483436856E-01 0.824067418872E-04 662 0.387542462424E-01 0.819656164380E-04 663 -0.387430811183E-01 -0.698320045441E-04 664 -0.507410054072E-01 -0.178359076910E-03 665 -0.506670985171E-01 -0.159095416526E-03 666 0.816768691968 -0.392460223880E-03 667 -0.506705945309E-01 -0.152403808787E-03 668 -0.651811446666E-01 -0.157259343809E-03 669 -0.652375295946E-01 -0.184881307041E-03 670 -0.652502344884E-01 -0.202097706188E-03 671 -0.375972711871E-01 -0.168115410643E-03 672 0.387675446808E-01 0.744702577256E-04 673 -0.387558501010E-01 -0.688838168605E-04 674 0.387665038245E-01 0.760509625891E-04 675 -0.506903924557E-01 -0.184883037389E-03 676 -0.506664332614E-01 -0.183754747761E-03 677 -0.506704669326E-01 -0.216668965480E-03 678 0.816917438854 -0.392190936549E-03 679 -0.652265906332E-01 -0.159113762628E-03 680 -0.377488030374E-01 -0.109443539609E-03 681 -0.652580896828E-01 -0.174367572121E-03 682 -0.652375823863E-01 -0.184884083787E-03 683 0.387603114034E-01 0.705922287872E-04 684 0.387641743317E-01 0.723076277969E-04 685 0.387489262128E-01 0.732842859631E-04 686 -0.376577872871E-01 -0.125029749404E-03 687 -0.652196990555E-01 -0.180930918829E-03 688 -0.651811273791E-01 -0.190887929375E-03 689 -0.652265197926E-01 -0.189270805797E-03 690 0.816843730722 -0.392338680411E-03 691 -0.506903836430E-01 -0.184881885971E-03 692 -0.506967226037E-01 -0.177317986324E-03 693 -0.507409971325E-01 -0.178358104777E-03 694 -0.387674501741E-01 -0.784984353523E-04 695 0.387557895862E-01 0.837835354740E-04 696 -0.387665782532E-01 -0.768432756328E-04 697 -0.652265476196E-01 -0.189273033328E-03 698 -0.652581022906E-01 -0.174218308503E-03 699 -0.652375615469E-01 -0.163532898664E-03 700 -0.377487423109E-01 -0.174603859719E-03 701 -0.506903947619E-01 -0.184202929475E-03 702 0.816917437759 -0.392190999452E-03 703 -0.506664297465E-01 -0.185149474223E-03 704 -0.506706206191E-01 -0.152405367370E-03 705 0.387586763115E-01 0.846885218413E-04 706 -0.387645103960E-01 -0.812863418926E-04 707 -0.387618466940E-01 -0.771517370286E-04 708 -0.652197271735E-01 -0.180931342105E-03 709 -0.377534694643E-01 -0.186993097761E-03 710 -0.652503104851E-01 -0.146326317918E-03 711 -0.652580752686E-01 -0.174216781936E-03 712 -0.506966910853E-01 -0.191785247193E-03 713 -0.506664184610E-01 -0.183754169758E-03 714 0.816934449458 -0.392142601758E-03 715 -0.506671033019E-01 -0.159097312300E-03 716 -0.387483993914E-01 -0.702787018907E-04 717 -0.387543248411E-01 -0.707308183123E-04 718 0.387429899941E-01 0.827969384889E-04 719 -0.651812253431E-01 -0.190893555086E-03 720 -0.652503838747E-01 -0.146330658186E-03 721 -0.375973995769E-01 -0.115419027810E-03 722 -0.652376142486E-01 -0.163537047015E-03 723 -0.507409394343E-01 -0.190969740470E-03 724 -0.506704930030E-01 -0.216670736616E-03 725 -0.506670197605E-01 -0.209961482255E-03 726 0.816768890546 -0.392447069058E-03 727 0.422203945623 -0.302245016582E-02 728 -0.295126748384E-05 0.152357134185E-07 729 0.214805192892E-05 0.176401762874E-07 730 -0.390124302863E-01 -0.854766638511E-04 731 -0.390104593838E-01 -0.998924489347E-04 732 0.390001632811E-01 0.852596875268E-04 733 0.390196836450E-01 0.937583506014E-04 734 0.390122533327E-01 0.976411854783E-04 735 -0.390197667709E-01 -0.894584457853E-04 736 0.390105374811E-01 0.829930679348E-04 737 -0.390000762677E-01 -0.975983228818E-04 738 -0.295103326479E-05 0.151915523179E-07 739 0.422204428143 -0.302244598413E-02 740 0.696225359468E-06 0.210144523380E-07 741 -0.390164847451E-01 -0.873358025401E-04 742 0.390167716063E-01 0.965369412894E-04 743 0.390060991624E-01 0.856867321644E-04 744 -0.390074900143E-01 -0.989805683955E-04 745 0.390164041428E-01 0.959345782641E-04 746 0.390075836187E-01 0.838535390019E-04 747 -0.390168567105E-01 -0.867084238638E-04 748 -0.390060031197E-01 -0.971832987147E-04 749 0.214810645080E-05 0.176226238219E-07 750 0.696062102098E-06 0.210100431798E-07 751 0.422202072602 -0.302246521954E-02 752 -0.390005586967E-01 -0.882888758438E-04 753 0.390139489415E-01 0.923751775180E-04 754 -0.389946195902E-01 -0.980461411366E-04 755 0.390186794021E-01 0.918436222322E-04 756 0.390005099702E-01 0.944821859162E-04 757 -0.390186045658E-01 -0.912776553127E-04 758 -0.390140414971E-01 -0.907619181153E-04 759 0.389947585772E-01 0.847418115987E-04 760 -0.390122586602E-01 -0.976415026705E-04 761 -0.390164082816E-01 -0.959346431296E-04 762 -0.390005043717E-01 -0.944819277040E-04 763 0.815534694126 -0.481900771016E-03 764 -0.513140567142E-01 -0.235154950918E-03 765 -0.513586843185E-01 -0.234408583750E-03 766 -0.513077422828E-01 -0.227497995211E-03 767 -0.381321916124E-01 -0.191840423185E-03 768 -0.658083127837E-01 -0.199085074998E-03 769 -0.658014482927E-01 -0.207407328130E-03 770 -0.657625483084E-01 -0.197299461674E-03 771 -0.390105448444E-01 -0.829934428205E-04 772 0.390168631284E-01 0.867086007346E-04 773 0.390140302519E-01 0.907613601678E-04 774 -0.513140955239E-01 -0.220580296189E-03 775 0.815625997169 -0.481663282310E-03 776 -0.512842966152E-01 -0.253413522708E-03 777 -0.512834813911E-01 -0.228424712850E-03 778 -0.658014147187E-01 -0.207403819424E-03 779 -0.658401380861E-01 -0.214457389815E-03 780 -0.382286679317E-01 -0.130167535988E-03 781 -0.658320604676E-01 -0.242322918432E-03 782 0.390000843240E-01 0.975986686168E-04 783 0.390060013446E-01 0.971833713931E-04 784 -0.389947470263E-01 -0.847409850253E-04 785 -0.513587557755E-01 -0.221604555022E-03 786 -0.512843995080E-01 -0.202266621061E-03 787 0.815459091188 -0.482058408874E-03 788 -0.512879251996E-01 -0.195503543724E-03 789 -0.657624307302E-01 -0.197292104200E-03 790 -0.658192560150E-01 -0.225026763454E-03 791 -0.658319723644E-01 -0.242317530684E-03 792 -0.380714118804E-01 -0.201536739756E-03 793 0.390197848171E-01 0.894593704462E-04 794 -0.390075751108E-01 -0.838532881774E-04 795 0.390185947337E-01 0.912771926225E-04 796 -0.513077285067E-01 -0.228215574126E-03 797 -0.512834675997E-01 -0.227066102373E-03 798 -0.512877681462E-01 -0.260194905003E-03 799 0.815608735892 -0.481728242598E-03 800 -0.658082792992E-01 -0.199083745325E-03 801 -0.382238221957E-01 -0.142608299110E-03 802 -0.658401056558E-01 -0.214455330381E-03 803 -0.658193194314E-01 -0.225029412931E-03 804 0.390124249296E-01 0.854763453046E-04 805 0.390164806672E-01 0.873353851769E-04 806 0.390005642892E-01 0.882889990504E-04 807 -0.381321726107E-01 -0.158277432417E-03 808 -0.658013321552E-01 -0.221128586336E-03 809 -0.657624099431E-01 -0.230977797842E-03 810 -0.658081918532E-01 -0.229477729646E-03 811 0.815534534902 -0.481909605042E-03 812 -0.513077179232E-01 -0.228214299458E-03 813 -0.513140924109E-01 -0.220581333395E-03 814 -0.513587458149E-01 -0.221603495885E-03 815 -0.390196656229E-01 -0.937573369738E-04 816 0.390074984604E-01 0.989812172487E-04 817 -0.390186892496E-01 -0.918442155989E-04 818 -0.658082252842E-01 -0.229480045504E-03 819 -0.658401204782E-01 -0.214354044217E-03 820 -0.658192953618E-01 -0.203571602838E-03 821 -0.382237481366E-01 -0.207970565332E-03 822 -0.513077316116E-01 -0.227498188415E-03 823 0.815608734581 -0.481728304775E-03 824 -0.512834636571E-01 -0.228423262003E-03 825 -0.512879565342E-01 -0.195505084475E-03 826 0.390104520484E-01 0.998920966596E-04 827 -0.390167652039E-01 -0.965363149179E-04 828 -0.390139601646E-01 -0.923756780213E-04 829 -0.658013659104E-01 -0.221128732414E-03 830 -0.382285273058E-01 -0.220454387551E-03 831 -0.658320654903E-01 -0.186292841143E-03 832 -0.658400880191E-01 -0.214352560286E-03 833 -0.513140537269E-01 -0.235153731196E-03 834 -0.512834498125E-01 -0.227065598296E-03 835 0.815625908662 -0.481668170888E-03 836 -0.512844052641E-01 -0.202268839903E-03 837 -0.390001552058E-01 -0.852593285051E-04 838 -0.390061009181E-01 -0.856871633382E-04 839 0.389946311681E-01 0.980467310094E-04 840 -0.657625276179E-01 -0.230983287220E-03 841 -0.658321536530E-01 -0.186297103093E-03 842 -0.380715704985E-01 -0.148410747994E-03 843 -0.658193586878E-01 -0.203575901489E-03 844 -0.513586743019E-01 -0.234408495778E-03 845 -0.512877994626E-01 -0.260196702171E-03 846 -0.512843025827E-01 -0.253411861170E-03 847 0.815459329870 -0.482045190316E-03 848 0.412154163811 -0.369856963897E-02 849 -0.290067795845E-05 0.186409033928E-07 850 0.220771213960E-05 0.223845290160E-07 851 -0.393094225243E-01 -0.999216163912E-04 852 -0.393070309738E-01 -0.114739840688E-03 853 0.392967087621E-01 0.998286819795E-04 854 0.393168092501E-01 0.108673788499E-03 855 0.393092022799E-01 0.112661928871E-03 856 -0.393169149049E-01 -0.104033687302E-03 857 0.393071283601E-01 0.975546181334E-04 858 -0.392966013284E-01 -0.112431790503E-03 859 -0.290043463164E-05 0.186026039493E-07 860 0.412154660967 -0.369856395447E-02 861 0.768157501088E-06 0.273183266217E-07 862 -0.393137219165E-01 -0.101960072316E-03 863 0.393139467771E-01 0.111439895746E-03 864 0.393026655756E-01 0.100224374119E-03 865 -0.393039741539E-01 -0.113820788715E-03 866 0.393136217282E-01 0.110815494989E-03 867 0.393040894679E-01 0.984090993651E-04 868 -0.393140528181E-01 -0.101304941632E-03 869 -0.393025458191E-01 -0.112049091046E-03 870 0.220776882841E-05 0.223667798274E-07 871 0.767987931639E-06 0.273029986768E-07 872 0.412152239709 -0.369858885336E-02 873 -0.392969546640E-01 -0.102888169177E-03 874 0.393109408401E-01 0.107247541905E-03 875 -0.392910217995E-01 -0.112953290463E-03 876 0.393156654555E-01 0.106433713073E-03 877 0.392968929454E-01 0.109264150253E-03 878 -0.393155703028E-01 -0.106153248947E-03 879 -0.393110559446E-01 -0.105360523684E-03 880 0.392911940345E-01 0.992217979185E-04 881 -0.393092085253E-01 -0.112662250738E-03 882 -0.393136265712E-01 -0.110815532886E-03 883 -0.392968865869E-01 -0.109263910573E-03 884 0.813947136175 -0.578340259063E-03 885 -0.520669863631E-01 -0.282528491084E-03 886 -0.521120686442E-01 -0.281865018989E-03 887 -0.520606412962E-01 -0.274782697397E-03 888 -0.387105024921E-01 -0.228053989740E-03 889 -0.665148477136E-01 -0.242276115023E-03 890 -0.665079347138E-01 -0.250603944374E-03 891 -0.664686092185E-01 -0.240571815108E-03 892 -0.393071368852E-01 -0.975549847978E-04 893 0.393140604100E-01 0.101305098345E-03 894 0.393110429143E-01 0.105359978729E-03 895 -0.520670328623E-01 -0.267826085837E-03 896 0.814039224096 -0.578053346411E-03 897 -0.520371291720E-01 -0.300887417379E-03 898 -0.520360122238E-01 -0.275686223380E-03 899 -0.665078954858E-01 -0.250600147683E-03 900 -0.665470723533E-01 -0.257789449856E-03 901 -0.388078223101E-01 -0.166233616648E-03 902 -0.665386670415E-01 -0.285816831739E-03 903 0.392966106381E-01 0.112432119225E-03 904 0.393025436368E-01 0.112049186663E-03 905 -0.392911804293E-01 -0.992209290433E-04 906 -0.521121553474E-01 -0.268824335988E-03 907 -0.520372527075E-01 -0.249401479771E-03 908 0.813871016585 -0.578527350241E-03 909 -0.520408144596E-01 -0.242550964401E-03 910 -0.664684718591E-01 -0.240564279734E-03 911 -0.665258333358E-01 -0.268431221597E-03 912 -0.665385641093E-01 -0.285811332099E-03 913 -0.386494233818E-01 -0.238027321953E-03 914 0.393169359970E-01 0.104034608030E-03 915 -0.393040795331E-01 -0.984088804977E-04 916 0.393155588096E-01 0.106152794985E-03 917 -0.520606247541E-01 -0.275545668658E-03 918 -0.520359957152E-01 -0.274373003738E-03 919 -0.520406254841E-01 -0.307760362712E-03 920 0.814021749108 -0.578131063494E-03 921 -0.665148086063E-01 -0.242274864191E-03 922 -0.388028985801E-01 -0.178779421446E-03 923 -0.665470344663E-01 -0.257787335968E-03 924 -0.665259074184E-01 -0.268433745039E-03 925 0.393094162492E-01 0.999212925658E-04 926 0.393137171354E-01 0.101959621275E-03 927 0.392969610161E-01 0.102888253065E-03 928 -0.387104788794E-01 -0.194554683957E-03 929 -0.665077959581E-01 -0.264597508128E-03 930 -0.664684475185E-01 -0.274317649777E-03 931 -0.665147030097E-01 -0.272957772311E-03 932 0.813946950042 -0.578349146129E-03 933 -0.520606124006E-01 -0.275544269946E-03 934 -0.520670292791E-01 -0.267827319011E-03 935 -0.521121436866E-01 -0.268823187810E-03 936 -0.393167881827E-01 -0.108672762709E-03 937 0.393039840263E-01 0.113821471404E-03 938 -0.393156769646E-01 -0.106434319834E-03 939 -0.665147420628E-01 -0.272960178173E-03 940 -0.665470513425E-01 -0.257743958590E-03 941 -0.665258807099E-01 -0.246846234817E-03 942 -0.388028104565E-01 -0.244384663043E-03 943 -0.520606288541E-01 -0.274783016529E-03 944 0.814021747584 -0.578131124757E-03 945 -0.520359914856E-01 -0.275684687080E-03 946 -0.520408510562E-01 -0.242552487414E-03 947 0.393070224771E-01 0.114739500908E-03 948 -0.393139392002E-01 -0.111439216341E-03 949 -0.393109538471E-01 -0.107248023510E-03 950 -0.665078353679E-01 -0.264597376836E-03 951 -0.388076542792E-01 -0.256982756182E-03 952 -0.665386755601E-01 -0.229480270939E-03 953 -0.665470134268E-01 -0.257742516301E-03 954 -0.520669829058E-01 -0.282527088848E-03 955 -0.520359749238E-01 -0.274372572794E-03 956 0.814039120649 -0.578058261592E-03 957 -0.520372594305E-01 -0.249404022054E-03 958 -0.392966994327E-01 -0.998283392290E-04 959 -0.393026677386E-01 -0.100224866571E-03 960 0.392910354326E-01 0.112953878841E-03 961 -0.664685849742E-01 -0.274323006494E-03 962 -0.665387785517E-01 -0.229484457520E-03 963 -0.386496150960E-01 -0.184377009188E-03 964 -0.665259547014E-01 -0.246850686807E-03 965 -0.521120569265E-01 -0.281865009369E-03 966 -0.520406620623E-01 -0.307762186824E-03 967 -0.520371361071E-01 -0.300885427998E-03 968 0.813871295588 -0.578514055023E-03 969 0.399933267365 -0.447729959553E-02 970 -0.283915183192E-05 0.225581173086E-07 971 0.228319325821E-05 0.282836785150E-07 972 -0.396496417941E-01 -0.113523481670E-03 973 -0.396467306933E-01 -0.128841386824E-03 974 0.396363755551E-01 0.113586596254E-03 975 0.396571960787E-01 0.122860322598E-03 976 0.396493697559E-01 0.126978446743E-03 977 -0.396573296408E-01 -0.117795835883E-03 978 0.396468511943E-01 0.111303720649E-03 979 -0.396362440341E-01 -0.126516821512E-03 980 -0.283889757300E-05 0.225242228792E-07 981 0.399933784416 -0.447729185742E-02 982 0.861526646742E-06 0.354803282731E-07 983 -0.396542490381E-01 -0.115784165493E-03 984 0.396543986861E-01 0.125609205418E-03 985 0.396423548795E-01 0.113942381128E-03 986 -0.396435647706E-01 -0.127913427225E-03 987 0.396541254837E-01 0.124958100432E-03 988 0.396437055394E-01 0.112151052964E-03 989 -0.396545298139E-01 -0.115095651179E-03 990 -0.396422066524E-01 -0.126174283732E-03 991 0.228325255369E-05 0.282652035296E-07 992 0.861349508520E-06 0.354546789454E-07 993 0.399931278235 -0.447732403815E-02 994 -0.396364369823E-01 -0.116683023666E-03 995 0.396511621219E-01 0.121381157586E-03 996 -0.396305159071E-01 -0.127130658965E-03 997 0.396558764463E-01 0.120213583440E-03 998 0.396363592440E-01 0.123286973534E-03 999 -0.396557560900E-01 -0.120291323424E-03 1000 -0.396513042082E-01 -0.119151889821E-03 1001 0.396307275774E-01 0.112869958630E-03 1002 -0.396493769337E-01 -0.126978774059E-03 1003 -0.396541310410E-01 -0.124958112111E-03 1004 -0.396363522199E-01 -0.123286760758E-03 1005 0.812057826779 -0.683592355212E-03 1006 -0.529691015008E-01 -0.335064696124E-03 1007 -0.530147273246E-01 -0.334499215210E-03 1008 -0.529627190814E-01 -0.327213469679E-03 1009 -0.394030391978E-01 -0.268155107464E-03 1010 -0.673572678241E-01 -0.289604413671E-03 1011 -0.673502968490E-01 -0.297939470853E-03 1012 -0.673104612702E-01 -0.288001530655E-03 1013 -0.396468608459E-01 -0.111304076532E-03 1014 0.396545386373E-01 0.115095792638E-03 1015 0.396512894413E-01 0.119151363028E-03 1016 -0.529691563599E-01 -0.320210525438E-03 1017 0.812150855309 -0.683250716935E-03 1018 -0.529391300701E-01 -0.353543825497E-03 1019 -0.529376486311E-01 -0.328091375333E-03 1020 -0.673502519471E-01 -0.297935384297E-03 1021 -0.673899708781E-01 -0.305284855121E-03 1022 -0.395013663671E-01 -0.206157463152E-03 1023 -0.673811727502E-01 -0.333505648763E-03 1024 0.396362545479E-01 0.126517128892E-03 1025 0.396422040020E-01 0.126174397259E-03 1026 -0.396307118496E-01 -0.112869040977E-03 1027 -0.530148311282E-01 -0.321173529390E-03 1028 -0.529392761849E-01 -0.301654194958E-03 1029 0.811981098230 -0.683811708973E-03 1030 -0.529428811400E-01 -0.294698667798E-03 1031 -0.673103040475E-01 -0.287993814178E-03 1032 -0.673683069299E-01 -0.316014663498E-03 1033 -0.673810549236E-01 -0.333500034504E-03 1034 -0.393416052448E-01 -0.278463516207E-03 1035 0.396573537998E-01 0.117796753600E-03 1036 -0.396436941704E-01 -0.112150865211E-03 1037 0.396557429244E-01 0.120290877943E-03 1038 -0.529626995376E-01 -0.328030469980E-03 1039 -0.529376292380E-01 -0.326831948746E-03 1040 -0.529426570448E-01 -0.360526367764E-03 1041 0.812133126518 -0.683342484975E-03 1042 -0.673572230730E-01 -0.289603242039E-03 1043 -0.394963493275E-01 -0.218828608580E-03 1044 -0.673899275113E-01 -0.305282685746E-03 1045 -0.673683917273E-01 -0.316017061971E-03 1046 0.396496345861E-01 0.113523150952E-03 1047 0.396542435441E-01 0.115783679888E-03 1048 0.396364439993E-01 0.116683060553E-03 1049 -0.394030102579E-01 -0.234734350119E-03 1050 -0.673501337259E-01 -0.312258678901E-03 1051 -0.673102760555E-01 -0.321825646871E-03 1052 -0.673570973017E-01 -0.320632364884E-03 1053 0.812057613560 -0.683601304919E-03 1054 -0.529626854157E-01 -0.328028946317E-03 1055 -0.529691523262E-01 -0.320211956626E-03 1056 -0.530148177500E-01 -0.321172289828E-03 1057 -0.396571719451E-01 -0.122859283431E-03 1058 0.396435760763E-01 0.127914143413E-03 1059 -0.396558896282E-01 -0.120214204523E-03 1060 -0.673571419979E-01 -0.320634862554E-03 1061 -0.673899462695E-01 -0.305307717112E-03 1062 -0.673683631469E-01 -0.294274619260E-03 1063 -0.394962462009E-01 -0.284720343247E-03 1064 -0.529627048698E-01 -0.327213916499E-03 1065 0.812133124782 -0.683342545106E-03 1066 -0.529376248682E-01 -0.328089752436E-03 1067 -0.529429230163E-01 -0.294700172928E-03 1068 0.396467210707E-01 0.128841063024E-03 1069 -0.396543898772E-01 -0.125608468861E-03 1070 -0.396511768644E-01 -0.121381616628E-03 1071 -0.673501788103E-01 -0.312258269888E-03 1072 -0.395011687251E-01 -0.297454207820E-03 1073 -0.673811862400E-01 -0.276805456284E-03 1074 -0.673899028741E-01 -0.305306315449E-03 1075 -0.529690975934E-01 -0.335063112360E-03 1076 -0.529376054218E-01 -0.326831590157E-03 1077 0.812150736830 -0.683255663426E-03 1078 -0.529392838690E-01 -0.301657061066E-03 1079 -0.396363650210E-01 -0.113586274503E-03 1080 -0.396423575109E-01 -0.113942940154E-03 1081 0.396305316641E-01 0.127131250229E-03 1082 -0.673104333742E-01 -0.321830874672E-03 1083 -0.673813041258E-01 -0.276809570513E-03 1084 -0.393418337839E-01 -0.224184352617E-03 1085 -0.673684478524E-01 -0.294279227831E-03 1086 -0.530147138884E-01 -0.334499284367E-03 1087 -0.529426989021E-01 -0.360528219675E-03 1088 -0.529391379668E-01 -0.353541506587E-03 1089 0.811981417812 -0.683798323342E-03 1090 0.385182662803 -0.539563497922E-02 1091 -0.276491178430E-05 0.271639935210E-07 1092 0.237862098562E-05 0.358271256517E-07 1093 -0.400298780026E-01 -0.125582668558E-03 1094 -0.400263267351E-01 -0.141517075417E-03 1095 0.400159311124E-01 0.125839906550E-03 1096 0.400376407463E-01 0.135643991509E-03 1097 0.400295423413E-01 0.139921139963E-03 1098 -0.400378097285E-01 -0.130051820243E-03 1099 0.400264756333E-01 0.123547018019E-03 1100 -0.400157703855E-01 -0.139173037631E-03 1101 -0.276464423172E-05 0.271335703106E-07 1102 0.385183207015 -0.539562437038E-02 1103 0.983055094357E-06 0.463549367804E-07 1104 -0.400348707612E-01 -0.128118626961E-03 1105 0.400349287339E-01 0.138369299585E-03 1106 0.400219334232E-01 0.126145118370E-03 1107 -0.400230249101E-01 -0.140577799020E-03 1108 0.400347185935E-01 0.137686247152E-03 1109 0.400231963282E-01 0.124385527704E-03 1110 -0.400350907134E-01 -0.127390134877E-03 1111 -0.400217501028E-01 -0.138880261758E-03 1112 0.237868346136E-05 0.358074508559E-07 1113 0.982868761211E-06 0.463190765795E-07 1114 0.385180590868 -0.539566618119E-02 1115 -0.400157658511E-01 -0.128980530701E-03 1116 0.400314025121E-01 0.134099643042E-03 1117 -0.400098638404E-01 -0.139901759601E-03 1118 0.400361007979E-01 0.132489837728E-03 1119 0.400156678573E-01 0.135868149230E-03 1120 -0.400359483961E-01 -0.133015841541E-03 1121 -0.400315777828E-01 -0.131443763065E-03 1122 0.400101235290E-01 0.124988211089E-03 1123 -0.400295504690E-01 -0.139921473685E-03 1124 -0.400347248773E-01 -0.137686233489E-03 1125 -0.400156602889E-01 -0.135867974156E-03 1126 0.809836841348 -0.800136126699E-03 1127 -0.540379384119E-01 -0.394248404961E-03 1128 -0.540842064267E-01 -0.393798868809E-03 1129 -0.540315110741E-01 -0.386273514627E-03 1130 -0.402230551742E-01 -0.313258362066E-03 1131 -0.683497191644E-01 -0.342238325345E-03 1132 -0.683426795044E-01 -0.350582696722E-03 1133 -0.683022394694E-01 -0.340759298068E-03 1134 -0.400264863655E-01 -0.123547359726E-03 1135 0.400351008417E-01 0.127390267403E-03 1136 0.400315613410E-01 0.131443261081E-03 1137 -0.540380024883E-01 -0.379216179917E-03 1138 0.809930984318 -0.799732894138E-03 1139 -0.540078337061E-01 -0.412869532692E-03 1140 -0.540059173457E-01 -0.387122769458E-03 1141 -0.683426289058E-01 -0.350578318285E-03 1142 -0.683829885431E-01 -0.358115919704E-03 1143 -0.403225723779E-01 -0.251052641439E-03 1144 -0.683737245936E-01 -0.386563980501E-03 1145 0.400157820402E-01 0.139173318172E-03 1146 0.400217469064E-01 0.138880386765E-03 1147 -0.400101055918E-01 -0.124987236393E-03 1148 -0.540843297265E-01 -0.380133507657E-03 1149 -0.540080048945E-01 -0.360504958962E-03 1150 0.809759401876 -0.800391435283E-03 1151 -0.540116611688E-01 -0.353424742867E-03 1152 -0.683020622890E-01 -0.340751397398E-03 1153 -0.683608240506E-01 -0.368950492928E-03 1154 -0.683735917972E-01 -0.386558248940E-03 1155 -0.401612045990E-01 -0.323966872032E-03 1156 0.400378369812E-01 0.130052736137E-03 1157 -0.400231835157E-01 -0.124385370012E-03 1158 0.400359335442E-01 0.133015404192E-03 1159 -0.540314882533E-01 -0.387153948340E-03 1160 -0.540058949145E-01 -0.385926031243E-03 1161 -0.540113978060E-01 -0.419981932007E-03 1162 0.809912957208 -0.799840395748E-03 1163 -0.683496687458E-01 -0.342237233577E-03 1164 -0.403174444241E-01 -0.263871396769E-03 1165 -0.683829396699E-01 -0.358113693794E-03 1166 -0.683609196188E-01 -0.368952767311E-03 1167 0.400298698440E-01 0.125582328987E-03 1168 0.400348645423E-01 0.128118105654E-03 1169 0.400157734116E-01 0.128980510705E-03 1170 -0.402230200769E-01 -0.279933343344E-03 1171 -0.683424898109E-01 -0.365286716752E-03 1172 -0.683020304650E-01 -0.374672877766E-03 1173 -0.683495201413E-01 -0.373676817273E-03 1174 0.809836600833 -0.800145149465E-03 1175 -0.540314723659E-01 -0.387152298709E-03 1176 -0.540379980283E-01 -0.379217811454E-03 1177 -0.540843146108E-01 -0.380132174028E-03 1178 -0.400376135199E-01 -0.135642937359E-03 1179 0.400230376584E-01 0.140578548348E-03 1180 -0.400361156667E-01 -0.132490474298E-03 1181 -0.683495705041E-01 -0.373679408676E-03 1182 -0.683829601517E-01 -0.358218216415E-03 1183 -0.683608901589E-01 -0.347027385055E-03 1184 -0.403173250907E-01 -0.330096329674E-03 1185 -0.540314950957E-01 -0.386274091297E-03 1186 0.809912955263 -0.799840454483E-03 1187 -0.540058905348E-01 -0.387121058809E-03 1188 -0.540117083437E-01 -0.353426229676E-03 1189 0.400263160326E-01 0.141516772111E-03 1190 -0.400349186194E-01 -0.138368500570E-03 1191 -0.400314189277E-01 -0.134100074843E-03 1192 -0.683425405928E-01 -0.365286029484E-03 1193 -0.403223422535E-01 -0.342989853304E-03 1194 -0.683737449655E-01 -0.329437761698E-03 1195 -0.683829112499E-01 -0.358216854318E-03 1196 -0.540379340786E-01 -0.394246640835E-03 1197 -0.540058680501E-01 -0.385925744251E-03 1198 0.809930850703 -0.799737877000E-03 1199 -0.540080135319E-01 -0.360508149245E-03 1200 -0.400159194365E-01 -0.125839611845E-03 1201 -0.400219366007E-01 -0.126145750714E-03 1202 0.400098818082E-01 0.139902359325E-03 1203 -0.683022077409E-01 -0.374677980493E-03 1204 -0.683738778208E-01 -0.329441806689E-03 1205 -0.401614748121E-01 -0.268941573527E-03 1206 -0.683609856342E-01 -0.347032153666E-03 1207 -0.540841912518E-01 -0.393799017404E-03 1208 -0.540114449615E-01 -0.419983812478E-03 1209 -0.540078425569E-01 -0.412866882273E-03 1210 0.809759762341 -0.800377944370E-03 1211 0.367410394124 -0.650751983110E-02 1212 -0.267554784614E-05 0.327122269288E-07 1213 0.249993442494E-05 0.457684239063E-07 1214 -0.404442097236E-01 -0.134883936688E-03 1215 -0.404398671731E-01 -0.151578931344E-03 1216 0.404294224905E-01 0.135381668644E-03 1217 0.404522311312E-01 0.145845740140E-03 1218 0.404437936221E-01 0.150316909155E-03 1219 -0.404524462655E-01 -0.139595631645E-03 1220 0.404400519088E-01 0.133077932700E-03 1221 -0.404292252573E-01 -0.149212001013E-03 1222 -0.267526396052E-05 0.326846808580E-07 1223 0.367410975781 -0.650750510661E-02 1224 0.114267517104E-05 0.612953258993E-07 1225 -0.404496865303E-01 -0.137762679947E-03 1226 0.404496316467E-01 0.148538842015E-03 1227 0.404354466087E-01 0.135622670640E-03 1228 -0.404363953081E-01 -0.150624961318E-03 1229 0.404494983106E-01 0.147817810974E-03 1230 0.404366047345E-01 0.133905113062E-03 1231 -0.404498326621E-01 -0.136986253886E-03 1232 -0.404352187734E-01 -0.148981009841E-03 1233 0.250000082738E-05 0.457470596810E-07 1234 0.114247754985E-05 0.612489737490E-07 1235 0.367408216054 -0.650756004389E-02 1236 -0.404289782834E-01 -0.138574520815E-03 1237 0.404457401435E-01 0.144220448275E-03 1238 -0.404231050046E-01 -0.150083580584E-03 1239 0.404504147854E-01 0.142055827163E-03 1240 0.404288539739E-01 0.145816249290E-03 1241 -0.404502205521E-01 -0.143144685854E-03 1242 -0.404459574658E-01 -0.141031189922E-03 1243 0.404234248739E-01 0.134363268983E-03 1244 -0.404438027215E-01 -0.150317250507E-03 1245 -0.404495053363E-01 -0.147817773058E-03 1246 -0.404288460175E-01 -0.145816126287E-03 1247 0.807245748245 -0.931240690361E-03 1248 -0.552961341687E-01 -0.462043171675E-03 1249 -0.553431555993E-01 -0.461731255242E-03 1250 -0.552896530908E-01 -0.453924305701E-03 1251 -0.411876347436E-01 -0.364833869971E-03 1252 -0.695103701328E-01 -0.401719615184E-03 1253 -0.695032492962E-01 -0.410076107658E-03 1254 -0.694620978197E-01 -0.400389830187E-03 1255 -0.404400636617E-01 -0.133078255594E-03 1256 0.404498441896E-01 0.136986385900E-03 1257 0.404459394291E-01 0.141030721522E-03 1258 -0.552962085679E-01 -0.446803686065E-03 1259 0.807341202999 -0.930766904544E-03 1260 -0.552658743991E-01 -0.480830546685E-03 1261 -0.552634429214E-01 -0.454741145584E-03 1262 -0.695031929752E-01 -0.410071435197E-03 1263 -0.695443050863E-01 -0.417829771834E-03 1264 -0.412885491163E-01 -0.302387753072E-03 1265 -0.695344922930E-01 -0.446541807797E-03 1266 0.404292379718E-01 0.149212247490E-03 1267 0.404352149317E-01 0.148981137831E-03 1268 -0.404234046166E-01 -0.134362226372E-03 1269 -0.553433015024E-01 -0.447663364861E-03 1270 -0.552660738926E-01 -0.427911269623E-03 1271 0.807167483118 -0.931536881455E-03 1272 -0.552697908556E-01 -0.420683910940E-03 1273 -0.694619005748E-01 -0.400381742390E-03 1274 -0.695215548259E-01 -0.428787131251E-03 1275 -0.695343444414E-01 -0.446535956317E-03 1276 -0.411252971955E-01 -0.376016289870E-03 1277 0.404524766456E-01 0.139596547358E-03 1278 -0.404365904667E-01 -0.133904984046E-03 1279 0.404502039963E-01 0.143144256123E-03 1280 -0.552896266861E-01 -0.454878455595E-03 1281 -0.552634173594E-01 -0.453616384330E-03 1282 -0.552694827993E-01 -0.488095992237E-03 1283 0.807322827273 -0.930892352361E-03 1284 -0.695103140207E-01 -0.401718604330E-03 1285 -0.412832895269E-01 -0.315378971264E-03 1286 -0.695442506763E-01 -0.417827488324E-03 1287 -0.695216612284E-01 -0.428789282209E-03 1288 0.404442005923E-01 0.134883585802E-03 1289 0.404496795715E-01 0.137762121458E-03 1290 0.404289862309E-01 0.138574430759E-03 1291 -0.411875925857E-01 -0.331624405162E-03 1292 -0.695030302613E-01 -0.425231448153E-03 1293 -0.694618645786E-01 -0.434404798261E-03 1294 -0.695101390513E-01 -0.433642073705E-03 1295 0.807245480191 -0.931249797732E-03 1296 -0.552896090374E-01 -0.454876678867E-03 1297 -0.552962037109E-01 -0.446805520605E-03 1298 -0.553432846261E-01 -0.447661934087E-03 1299 -0.404522007784E-01 -0.145844668797E-03 1300 0.404364095106E-01 0.150625743426E-03 1301 -0.404504313588E-01 -0.142056480760E-03 1302 -0.695101951066E-01 -0.433644760867E-03 1303 -0.695442727905E-01 -0.418023072386E-03 1304 -0.695216321761E-01 -0.406649384724E-03 1305 -0.412831524270E-01 -0.381987912104E-03 1306 -0.552896353497E-01 -0.453925014858E-03 1307 0.807322825124 -0.930892409379E-03 1308 -0.552634130360E-01 -0.454739346025E-03 1309 -0.552698433488E-01 -0.420685378616E-03 1310 0.404398554507E-01 0.151578654587E-03 1311 -0.404496201320E-01 -0.148537973426E-03 1312 -0.404457581520E-01 -0.144220846621E-03 1313 -0.695030867663E-01 -0.425230481914E-03 1314 -0.412882827222E-01 -0.395068168370E-03 1315 -0.695345220447E-01 -0.388920381410E-03 1316 -0.695442183520E-01 -0.418021748724E-03 1317 -0.552961294388E-01 -0.462041228590E-03 1318 -0.552633874204E-01 -0.453616168198E-03 1319 0.807341054125 -0.930771929324E-03 1320 -0.552660834733E-01 -0.427914784345E-03 1321 -0.404294097535E-01 -0.135381408939E-03 1322 -0.404354504318E-01 -0.135623385190E-03 1323 0.404231252942E-01 0.150084196188E-03 1324 -0.694620619183E-01 -0.434409779885E-03 1325 -0.695346699549E-01 -0.388924360398E-03 1326 -0.411256154371E-01 -0.320110935896E-03 1327 -0.695217384847E-01 -0.406654317077E-03 1328 -0.553431386623E-01 -0.461731484228E-03 1329 -0.552695352724E-01 -0.488097901893E-03 1330 -0.552658841939E-01 -0.480827562446E-03 1331 0.807167884816 -0.931523268856E-03 1332 0.345925376814 -0.789557312308E-02 1333 -0.256772114838E-05 0.395846359393E-07 1334 0.265593161471E-05 0.593266847499E-07 1335 -0.408819482646E-01 -0.139271455113E-03 1336 -0.408766191913E-01 -0.156909952756E-03 1337 0.408661155031E-01 0.140067539857E-03 1338 0.408902916348E-01 0.151362288049E-03 1339 0.408814270448E-01 0.156070725702E-03 1340 -0.408905687625E-01 -0.144284916627E-03 1341 0.408768505612E-01 0.137752882749E-03 1342 -0.408658710207E-01 -0.154516114196E-03 1343 -0.256741694664E-05 0.395596297203E-07 1344 0.345926010874 -0.789555231582E-02 1345 0.135552791945E-05 0.825552707229E-07 1346 -0.408880379474E-01 -0.142581805233E-03 1347 0.408878419205E-01 0.154011255434E-03 1348 0.408721577219E-01 0.140226386077E-03 1349 -0.408729324059E-01 -0.155936467349E-03 1350 0.408878027941E-01 0.153245107096E-03 1351 0.408731905988E-01 0.138564813176E-03 1352 -0.408880939689E-01 -0.141747496545E-03 1353 -0.408718715361E-01 -0.154362335689E-03 1354 0.265600292580E-05 0.593030593551E-07 1355 0.135531626933E-05 0.824977602948E-07 1356 0.345923060980 -0.789562577557E-02 1357 -0.408653258640E-01 -0.143321589193E-03 1358 0.408834852346E-01 0.149635026059E-03 1359 -0.408594942793E-01 -0.155566284878E-03 1360 0.408881259649E-01 0.146767928794E-03 1361 0.408651662804E-01 0.151009343639E-03 1362 -0.408878754625E-01 -0.148569818291E-03 1363 -0.408837576869E-01 -0.145773162319E-03 1364 0.408598921120E-01 0.138841728165E-03 1365 -0.408814371432E-01 -0.156071076314E-03 1366 -0.408878105809E-01 -0.153245046361E-03 1367 -0.408651581400E-01 -0.151009292562E-03 1368 0.804234690694 -0.108138305745E-02 1369 -0.567731823303E-01 -0.541133885583E-03 1370 -0.568210846822E-01 -0.540986160376E-03 1371 -0.567666367636E-01 -0.532848059220E-03 1372 -0.423189948972E-01 -0.424884393106E-03 1373 -0.708627974640E-01 -0.470163557442E-03 1374 -0.708555803041E-01 -0.478536177071E-03 1375 -0.708135940621E-01 -0.469012065373E-03 1376 -0.408768632554E-01 -0.137753180237E-03 1377 0.408881070187E-01 0.141747639711E-03 1378 0.408837381595E-01 0.145772739454E-03 1379 -0.567732685016E-01 -0.525654144940E-03 1380 0.804331685425 -0.108082687665E-02 1381 -0.567427415329E-01 -0.560114822232E-03 1382 -0.567397022868E-01 -0.533627819211E-03 1383 -0.708555182324E-01 -0.478531208311E-03 1384 -0.708975118744E-01 -0.486549137164E-03 1385 -0.424215456776E-01 -0.362163221849E-03 1386 -0.708870544715E-01 -0.515565373409E-03 1387 0.408658846900E-01 0.154516316740E-03 1388 0.408718669203E-01 0.154362454980E-03 1389 -0.408598693918E-01 -0.138840602803E-03 1390 -0.568212572522E-01 -0.526442236515E-03 1391 -0.567429735728E-01 -0.506549993541E-03 1392 0.804155467935 -0.108172688242E-02 1393 -0.567467622205E-01 -0.499149312262E-03 1394 -0.708133766333E-01 -0.469003787720E-03 1395 -0.708740785532E-01 -0.497648767301E-03 1396 -0.708868914687E-01 -0.515559399499E-03 1397 -0.422560880756E-01 -0.436625534945E-03 1398 0.408906023139E-01 0.144285834594E-03 1399 -0.408731748602E-01 -0.138564710924E-03 1400 0.408878571802E-01 0.148569395366E-03 1401 -0.567666064628E-01 -0.533887152019E-03 1402 -0.567396736608E-01 -0.532584412543E-03 1403 -0.567464022569E-01 -0.567560418162E-03 1404 0.804312903116 -0.108097324178E-02 1405 -0.708627356300E-01 -0.470162629057E-03 1406 -0.424161293727E-01 -0.375355197107E-03 1407 -0.708974518932E-01 -0.486546794956E-03 1408 -0.708741958613E-01 -0.497650795235E-03 1409 0.408819381333E-01 0.139271089707E-03 1410 0.408880302298E-01 0.142581207585E-03 1411 0.408653339942E-01 0.143321410792E-03 1412 -0.423189448270E-01 -0.391813000545E-03 1413 -0.708553284364E-01 -0.494218595541E-03 1414 -0.708133358068E-01 -0.503141763146E-03 1415 -0.708625295119E-01 -0.502655709090E-03 1416 0.804234394822 -0.108139226257E-02 1417 -0.567665870595E-01 -0.533885246938E-03 1418 -0.567732632829E-01 -0.525656185473E-03 1419 -0.568212385889E-01 -0.526440705077E-03 1420 -0.408902581120E-01 -0.151361196308E-03 1421 0.408729480779E-01 0.155937281935E-03 1422 -0.408881442655E-01 -0.146768601561E-03 1423 -0.708625912876E-01 -0.502658494099E-03 1424 -0.708974757337E-01 -0.486845165336E-03 1425 -0.708741688966E-01 -0.475260196038E-03 1426 -0.424159724441E-01 -0.442404320344E-03 1427 -0.567666172661E-01 -0.532848904062E-03 1428 0.804312900768 -0.108097329668E-02 1429 -0.567396692975E-01 -0.533625929606E-03 1430 -0.567468200518E-01 -0.499150759526E-03 1431 0.408766065284E-01 0.156909710974E-03 1432 -0.408878288824E-01 -0.154010307291E-03 1433 -0.408835047312E-01 -0.149635382343E-03 1434 -0.708553906931E-01 -0.494217349442E-03 1435 -0.424212378959E-01 -0.455702741527E-03 1436 -0.708870969270E-01 -0.457370662774E-03 1437 -0.708974157242E-01 -0.486843878864E-03 1438 -0.567731772392E-01 -0.541131765226E-03 1439 -0.567396406178E-01 -0.532584266569E-03 1440 0.804331521151 -0.108083194959E-02 1441 -0.567429840835E-01 -0.506553832817E-03 1442 -0.408661018101E-01 -0.140067325980E-03 1443 -0.408721623195E-01 -0.140227195010E-03 1444 0.408595170342E-01 0.155566926719E-03 1445 -0.708135533297E-01 -0.503146627810E-03 1446 -0.708872599880E-01 -0.457374579158E-03 1447 -0.422564627927E-01 -0.379684265396E-03 1448 -0.708742861096E-01 -0.475265296095E-03 1449 -0.568210659563E-01 -0.540986471093E-03 1450 -0.567464600674E-01 -0.567562357436E-03 1451 -0.567427522585E-01 -0.560111501497E-03 1452 0.804155911273 -0.108171312955E-02 1453 0.319722764282 -0.969412264709E-02 1454 -0.243665709303E-05 0.483890937361E-07 1455 0.286017232143E-05 0.785993410670E-07 1456 -0.413237739720E-01 -0.134766926292E-03 1457 -0.413171965656E-01 -0.153588949250E-03 1458 0.413066221490E-01 0.135935425282E-03 1459 0.413325214018E-01 0.148294755460E-03 1460 0.413231097794E-01 0.153295381582E-03 1461 -0.413328850090E-01 -0.140161901962E-03 1462 0.413174909103E-01 0.133611322787E-03 1463 -0.413063139105E-01 -0.151163382998E-03 1464 -0.243632718724E-05 0.483665300391E-07 1465 0.319723473260 -0.969409249302E-02 1466 0.164569035784E-05 0.114130473712E-06 1467 -0.413306509073E-01 -0.138630523296E-03 1468 0.413302742220E-01 0.150882762868E-03 1469 0.413126747900E-01 0.135987633301E-03 1470 -0.413132336724E-01 -0.152588856842E-03 1471 0.413303521821E-01 0.150062730887E-03 1472 0.413135570648E-01 0.134401553429E-03 1473 -0.413305957004E-01 -0.137725340767E-03 1474 -0.413123090088E-01 -0.151107200329E-03 1475 0.286024988697E-05 0.785727136096E-07 1476 0.164546097931E-05 0.114060681170E-06 1477 0.319720266127 -0.969419321769E-02 1478 -0.413053997675E-01 -0.139260678351E-03 1479 0.413253154427E-01 0.146436076594E-03 1480 -0.412996273216E-01 -0.152439406591E-03 1481 0.413299081447E-01 0.142665803253E-03 1482 0.413051910466E-01 0.147518900727E-03 1483 -0.413295791421E-01 -0.145384439288E-03 1484 -0.413256631633E-01 -0.141713588873E-03 1485 0.413001302892E-01 0.134448042907E-03 1486 -0.413231209111E-01 -0.153295743744E-03 1487 -0.413303607542E-01 -0.150062649330E-03 1488 -0.413051829941E-01 -0.147518950299E-03 1489 0.800737822704 -0.125698016133E-02 1490 -0.585081284315E-01 -0.635336744301E-03 1491 -0.585570605519E-01 -0.635386300946E-03 1492 -0.585015045189E-01 -0.626857467174E-03 1493 -0.436464676918E-01 -0.496239402372E-03 1494 -0.724381661690E-01 -0.550613268895E-03 1495 -0.724308333726E-01 -0.559008045164E-03 1496 -0.723878676484E-01 -0.549673564174E-03 1497 -0.413175044384E-01 -0.133611585048E-03 1498 0.413306104361E-01 0.137725512035E-03 1499 0.413256422842E-01 0.141713228513E-03 1500 -0.585082283294E-01 -0.619578724781E-03 1501 0.800836626759 -0.125632561271E-02 1502 -0.584774739808E-01 -0.654542316899E-03 1503 -0.584737183873E-01 -0.627594376681E-03 1504 -0.724307655186E-01 -0.559002777691E-03 1505 -0.724737929696E-01 -0.567327860253E-03 1506 -0.437509370659E-01 -0.433204668535E-03 1507 -0.724625789502E-01 -0.596692837469E-03 1508 0.413063283958E-01 0.151163527500E-03 1509 0.413123034486E-01 0.151107294086E-03 1510 -0.413001049173E-01 -0.134446813589E-03 1511 -0.585572651653E-01 -0.620278833600E-03 1512 -0.584777442475E-01 -0.600226401630E-03 1513 0.800657486275 -0.125738125026E-02 1514 -0.584816177167E-01 -0.592621080120E-03 1515 -0.723876299031E-01 -0.549665094207E-03 1516 -0.724495642207E-01 -0.578590763379E-03 1517 -0.724624006892E-01 -0.596686738784E-03 1518 -0.435828919789E-01 -0.508637684411E-03 1519 0.413329217901E-01 0.140162826064E-03 1520 -0.413135398346E-01 -0.134401475141E-03 1521 0.413295591035E-01 0.145384021789E-03 1522 -0.585014700780E-01 -0.627993605510E-03 1523 -0.584736871367E-01 -0.626641054331E-03 1524 -0.584811960099E-01 -0.662200529986E-03 1525 0.800817369445 -0.125649701860E-02 1526 -0.724380985836E-01 -0.550612425242E-03 1527 -0.437453326270E-01 -0.446630396238E-03 1528 -0.724737273786E-01 -0.567325458181E-03 1529 -0.724496925136E-01 -0.578592668347E-03 1530 0.413237628063E-01 0.134766542023E-03 1531 0.413306424071E-01 0.138629883744E-03 1532 0.413054078082E-01 0.139260384973E-03 1533 -0.436464092457E-01 -0.463330763048E-03 1534 -0.724305442603E-01 -0.575304983157E-03 1535 -0.723875829232E-01 -0.583934121882E-03 1536 -0.724378546423E-01 -0.583777728225E-03 1537 0.800737498689 -0.125698947966E-02 1538 -0.585014489294E-01 -0.627991570654E-03 1539 -0.585082227912E-01 -0.619580974599E-03 1540 -0.585572446855E-01 -0.620277197499E-03 1541 -0.413324846509E-01 -0.148293638383E-03 1542 0.413132508346E-01 0.152589703818E-03 1543 -0.413299282024E-01 -0.142666498344E-03 1544 -0.724379221679E-01 -0.583780613141E-03 1545 -0.724737534946E-01 -0.567737628779E-03 1546 -0.724496698464E-01 -0.555909178575E-03 1547 -0.437451530481E-01 -0.514183077900E-03 1548 -0.585014832740E-01 -0.626858451556E-03 1549 0.800817366903 -0.125649707088E-02 1550 -0.584736822618E-01 -0.627592395947E-03 1551 -0.584816809048E-01 -0.592622505106E-03 1552 0.413171830697E-01 0.153588754724E-03 1553 -0.413302594965E-01 -0.150881720427E-03 1554 -0.413253362879E-01 -0.146436378298E-03 1555 -0.724306123001E-01 -0.575303456161E-03 1556 -0.437505807132E-01 -0.527737289559E-03 1557 -0.724626386625E-01 -0.537834836953E-03 1558 -0.724736878756E-01 -0.567736378056E-03 1559 -0.585081230212E-01 -0.635334448660E-03 1560 -0.584736509574E-01 -0.626640977865E-03 1561 0.800836446923 -0.125633074111E-02 1562 -0.584777556713E-01 -0.600230565356E-03 1563 -0.413066076383E-01 -0.135935272613E-03 1564 -0.413126803322E-01 -0.135988554109E-03 1565 0.412996527311E-01 0.152440089939E-03 1566 -0.723878207616E-01 -0.583938873965E-03 1567 -0.724628169809E-01 -0.537838694353E-03 1568 -0.435833346475E-01 -0.450475183019E-03 1569 -0.724497980428E-01 -0.555914450584E-03 1570 -0.585570400072E-01 -0.635386695287E-03 1571 -0.584812591764E-01 -0.662202499063E-03 1572 -0.584774856203E-01 -0.654538656586E-03 1573 0.800657971720 -0.125736733532E-02 1574 0.287268797266 -0.121391569924E-01 1575 -0.227521794786E-05 0.601644512653E-07 1576 0.313472318589E-05 0.107499766904E-06 1577 -0.417339458044E-01 -0.113553777897E-03 1578 -0.417257516446E-01 -0.133887133012E-03 1579 0.417150927337E-01 0.115192070676E-03 1580 0.417432069637E-01 0.128953460121E-03 1581 0.417330768378E-01 0.134318113220E-03 1582 -0.417436974529E-01 -0.119443145502E-03 1583 0.417261352258E-01 0.112863194106E-03 1584 -0.417146938065E-01 -0.131423809577E-03 1585 -0.227485472301E-05 0.601445228380E-07 1586 0.287269616612 -0.121391116996E-01 1587 0.205369894783E-05 0.163710916691E-06 1588 -0.417418562347E-01 -0.118145971412E-03 1589 0.417412404351E-01 0.131456149853E-03 1590 0.417211416287E-01 0.115102562589E-03 1591 -0.417214254575E-01 -0.132849509039E-03 1592 0.417414668359E-01 0.130570911045E-03 1593 0.417218407503E-01 0.113620452523E-03 1594 -0.417416614107E-01 -0.117152020399E-03 1595 -0.417206615016E-01 -0.131493194794E-03 1596 0.313480894698E-05 0.107469081937E-06 1597 0.205344662752E-05 0.163627078156E-06 1598 0.287266050940 -0.121392548366E-01 1599 -0.417133184132E-01 -0.118599359022E-03 1600 0.417354828974E-01 0.126919294818E-03 1601 -0.417076283800E-01 -0.132991045491E-03 1602 0.417400078755E-01 0.121960581134E-03 1603 0.417130376670E-01 0.127604509952E-03 1604 -0.417395640454E-01 -0.125884389916E-03 1605 -0.417359388124E-01 -0.121071015185E-03 1606 0.417082806678E-01 0.113367879993E-03 1607 -0.417330890473E-01 -0.134318490360E-03 1608 -0.417414762254E-01 -0.130570811638E-03 1609 -0.417130300761E-01 -0.127604704312E-03 1610 0.796665742249 -0.146778756565E-02 1611 -0.605539054402E-01 -0.750340684097E-03 1612 -0.606040446744E-01 -0.750629385467E-03 1613 -0.605471839616E-01 -0.741636693798E-03 1614 -0.452096413968E-01 -0.583069230743E-03 1615 -0.742788755893E-01 -0.647726181723E-03 1616 -0.742714008242E-01 -0.656152639978E-03 1617 -0.742272825187E-01 -0.647036840710E-03 1618 -0.417261494379E-01 -0.112863405553E-03 1619 0.417416780577E-01 0.117152245999E-03 1620 0.417359167713E-01 0.121070742793E-03 1621 -0.605540218257E-01 -0.734259438616E-03 1622 0.796766681231 -0.146701246883E-02 1623 -0.605229933562E-01 -0.769806342385E-03 1624 -0.605183924621E-01 -0.742323650518E-03 1625 -0.742713271535E-01 -0.656147071191E-03 1626 -0.743155727946E-01 -0.664839600823E-03 1627 -0.453163706642E-01 -0.519675500534E-03 1628 -0.743034695130E-01 -0.694603136480E-03 1629 0.417147089192E-01 0.131423874654E-03 1630 0.417206547656E-01 0.131493237234E-03 1631 -0.417082523875E-01 -0.113366514530E-03 1632 -0.606042885371E-01 -0.734852211937E-03 1633 -0.605233096927E-01 -0.714613862421E-03 1634 0.796584100839 -0.146826051721E-02 1635 -0.605272839883E-01 -0.706765205258E-03 1636 -0.742270243105E-01 -0.647028176318E-03 1637 -0.742904177552E-01 -0.676288032728E-03 1638 -0.743032758756E-01 -0.694596910937E-03 1639 -0.451452706809E-01 -0.596239309703E-03 1640 0.417437375448E-01 0.119444082429E-03 1641 -0.417218219991E-01 -0.113620393795E-03 1642 0.417395422096E-01 0.125883975320E-03 1643 -0.605471454083E-01 -0.742882421655E-03 1644 -0.605183598912E-01 -0.741466793603E-03 1645 -0.605267866113E-01 -0.777717251892E-03 1646 0.796746865649 -0.146721493681E-02 1647 -0.742788022228E-01 -0.647725426130E-03 1648 -0.453105369202E-01 -0.533374638127E-03 1649 -0.743155015500E-01 -0.664837137568E-03 1650 -0.742905571204E-01 -0.676289814297E-03 1651 0.417339335599E-01 0.113553368575E-03 1652 0.417418469205E-01 0.118145285935E-03 1653 0.417133259903E-01 0.118598909391E-03 1654 -0.452095754181E-01 -0.550347983465E-03 1655 -0.742710688955E-01 -0.673166326870E-03 1656 -0.742269683619E-01 -0.681450141227E-03 1657 -0.742785107349E-01 -0.681689592460E-03 1658 0.796665389713 -0.146779701634E-02 1659 -0.605471225272E-01 -0.742880255306E-03 1660 -0.605540160177E-01 -0.734261901114E-03 1661 -0.606042662082E-01 -0.734850466721E-03 1662 -0.417431669039E-01 -0.128952309511E-03 1663 0.417214441395E-01 0.132850388930E-03 1664 -0.417400297311E-01 -0.121961303549E-03 1665 -0.742785840397E-01 -0.681692579112E-03 1666 -0.743155316064E-01 -0.665371291143E-03 1667 -0.742905416746E-01 -0.653263368847E-03 1668 -0.453103306051E-01 -0.601504356699E-03 1669 -0.605471609818E-01 -0.741637822313E-03 1670 0.796746862921 -0.146721498580E-02 1671 -0.605183531655E-01 -0.742321577681E-03 1672 -0.605273525499E-01 -0.706766605405E-03 1673 0.417257374655E-01 0.133887004757E-03 1674 -0.417412237965E-01 -0.131454989845E-03 1675 -0.417355049003E-01 -0.126919522577E-03 1676 -0.742711427532E-01 -0.673164517861E-03 1677 -0.453159550530E-01 -0.615361292490E-03 1678 -0.743035530083E-01 -0.634975254269E-03 1679 -0.743154603341E-01 -0.665370074375E-03 1680 -0.605538997604E-01 -0.750338215339E-03 1681 -0.605183205406E-01 -0.741466786087E-03 1682 0.796766485647 -0.146701766165E-02 1683 -0.605233220079E-01 -0.714618350234E-03 1684 -0.417150775935E-01 -0.115192002328E-03 1685 -0.417211483471E-01 -0.115103621988E-03 1686 0.417076567020E-01 0.132991794430E-03 1687 -0.742272266619E-01 -0.681454785458E-03 1688 -0.743037467024E-01 -0.634979056601E-03 1689 -0.451457973892E-01 -0.536629662298E-03 1690 -0.742906809414E-01 -0.653268817337E-03 1691 -0.606040222779E-01 -0.750629866204E-03 1692 -0.605268551502E-01 -0.777719250670E-03 1693 -0.605230058879E-01 -0.769802339012E-03 1694 0.796584628934 -0.146824641332E-02 1695 0.246053584853 -0.156927046629E-01 1696 -0.207204669135E-05 0.768628326391E-07 1697 0.351837147283E-05 0.154219493943E-06 1698 -0.420429510313E-01 -0.586880500663E-04 1699 -0.420325852692E-01 -0.810038786298E-04 1700 0.420218269557E-01 0.609273573835E-04 1701 0.420528764077E-01 0.766141176294E-04 1702 0.420417666973E-01 0.824396878080E-04 1703 -0.420535672409E-01 -0.652428274292E-04 1704 0.420331042685E-01 0.586052604213E-04 1705 -0.420212893829E-01 -0.784944902103E-04 1706 -0.207163866995E-05 0.768461715290E-07 1707 0.246054573995 -0.156926329058E-01 1708 0.265347416590E-05 0.247910906931E-06 1709 -0.420522624617E-01 -0.642801372761E-04 1710 0.420513139405E-01 0.789951012123E-04 1711 0.420278467411E-01 0.606420406109E-04 1712 -0.420277642416E-01 -0.799105777330E-04 1713 0.420517338575E-01 0.780288841941E-04 1714 0.420283189548E-01 0.593082551260E-04 1715 -0.420518884241E-01 -0.631710833444E-04 1716 -0.420271898178E-01 -0.787299564438E-04 1717 0.351846842464E-05 0.154183093134E-06 1718 0.265319110430E-05 0.247810214380E-06 1719 0.246050486515 -0.156928473893E-01 1720 -0.420193294368E-01 -0.644268577753E-04 1721 0.420444562052E-01 0.743317678013E-04 1722 -0.420137512913E-01 -0.804491399321E-04 1723 0.420488859720E-01 0.677539095526E-04 1724 0.420189350645E-01 0.744453691093E-04 1725 -0.420482626028E-01 -0.733152168768E-04 1726 -0.420450790587E-01 -0.669614654131E-04 1727 0.420146317010E-01 0.586553536808E-04 1728 -0.420417800442E-01 -0.824400855007E-04 1729 -0.420517441076E-01 -0.780287717436E-04 1730 -0.420189284726E-01 -0.744457821052E-04 1731 0.791891862531 -0.172991507313E-02 1732 -0.629847597914E-01 -0.895171413872E-03 1733 -0.630363225393E-01 -0.895752945156E-03 1734 -0.629779113862E-01 -0.886204478538E-03 1735 -0.470635801297E-01 -0.691828805211E-03 1736 -0.764452096384E-01 -0.769277482221E-03 1737 -0.764375535394E-01 -0.777751392983E-03 1738 -0.763920714550E-01 -0.768881857187E-03 1739 -0.420331189454E-01 -0.586053940280E-04 1740 0.420519073077E-01 0.631714076007E-04 1741 0.420450561270E-01 0.669613223566E-04 1742 -0.629848968786E-01 -0.878711881899E-03 1743 0.791995341672 -0.172898730421E-02 1744 -0.629535249257E-01 -0.914936792915E-03 1745 -0.629479240510E-01 -0.886832894059E-03 1746 -0.764374740135E-01 -0.777745519941E-03 1747 -0.764831685349E-01 -0.786885893259E-03 1748 -0.471729956432E-01 -0.628016689860E-03 1749 -0.764700177159E-01 -0.817104273519E-03 1750 0.420213048559E-01 0.784944406762E-04 1751 0.420271815761E-01 0.787299045784E-04 1752 -0.420146001458E-01 -0.586537988760E-04 1753 -0.630366153863E-01 -0.879174766691E-03 1754 -0.629538986851E-01 -0.858714152487E-03 1755 0.791808669050 -0.173048422636E-02 1756 -0.629579937571E-01 -0.850572189950E-03 1757 -0.763917926230E-01 -0.768872996651E-03 1758 -0.764569350082E-01 -0.798542272655E-03 1759 -0.764698085714E-01 -0.817097919473E-03 1760 -0.469982445066E-01 -0.705902512178E-03 1761 0.420536107634E-01 0.652437899290E-04 1762 -0.420282986382E-01 -0.593082082982E-04 1763 0.420482389101E-01 0.733148001205E-04 1764 -0.629778696216E-01 -0.887571309963E-03 1765 -0.629478935971E-01 -0.886072498468E-03 1766 -0.629573997964E-01 -0.923151856748E-03 1767 0.791974862091 -0.172923037128E-02 1768 -0.764451304631E-01 -0.769276819813E-03 1769 -0.471668751070E-01 -0.642038816727E-03 1770 -0.764830915866E-01 -0.786883367124E-03 1771 -0.764570855410E-01 -0.798543929608E-03 1772 0.420429376483E-01 0.586876062184E-04 1773 0.420522522910E-01 0.642793995303E-04 1774 0.420193360121E-01 0.644261821323E-04 1775 -0.470635114773E-01 -0.659312667765E-03 1776 -0.764371718769E-01 -0.795602658770E-03 1777 -0.763917211687E-01 -0.803482505759E-03 1778 -0.764447762972E-01 -0.804202541237E-03 1779 0.791891481030 -0.172992468164E-02 1780 -0.629778450246E-01 -0.887569009724E-03 1781 -0.629848908576E-01 -0.878714559872E-03 1782 -0.630365911741E-01 -0.879172907703E-03 1783 -0.420528329198E-01 -0.766129184729E-04 1784 0.420277844878E-01 0.799114927445E-04 1785 -0.420489096849E-01 -0.677546680081E-04 1786 -0.764448554084E-01 -0.804205630729E-03 1787 -0.764831301726E-01 -0.787539510019E-03 1788 -0.764570811523E-01 -0.775114108682E-03 1789 -0.471666355338E-01 -0.710834306348E-03 1790 -0.629778866875E-01 -0.886205756447E-03 1791 0.791974859187 -0.172923041609E-02 1792 -0.629478815459E-01 -0.886830728347E-03 1793 -0.629580677055E-01 -0.850573561994E-03 1794 0.420325706258E-01 0.810038487229E-04 1795 -0.420512950627E-01 -0.789937834317E-04 1796 -0.420444790932E-01 -0.743318889900E-04 1797 -0.764372515908E-01 -0.795600566746E-03 1798 -0.471725033351E-01 -0.725056128803E-03 1799 -0.764701350762E-01 -0.756575481728E-03 1800 -0.764830531969E-01 -0.787538324707E-03 1801 -0.629847538988E-01 -0.895168773751E-03 1802 -0.629478510380E-01 -0.886072559523E-03 1803 0.791995130120 -0.172899257335E-02 1804 -0.629539118645E-01 -0.858718963862E-03 1805 -0.420218114527E-01 -0.609274109746E-04 1806 -0.420278549654E-01 -0.606432830188E-04 1807 0.420137828938E-01 0.804499960415E-04 1808 -0.763920000908E-01 -0.803487047413E-03 1809 -0.764703442761E-01 -0.756579233333E-03 1810 -0.469988788748E-01 -0.644561690892E-03 1811 -0.764572315846E-01 -0.775119738410E-03 1812 -0.630362982558E-01 -0.895753516684E-03 1813 -0.629574737209E-01 -0.923153884941E-03 1814 -0.629535383224E-01 -0.914932442740E-03 1815 0.791809240432 -0.173046989789E-02 1816 0.191510551767 -0.214260783821E-01 1817 -0.180735186751E-05 0.102700657526E-06 1818 0.408775292574E-05 0.239310810189E-06 1819 -0.421026284339E-01 0.731099501277E-04 1820 -0.420891610531E-01 0.480865285025E-04 1821 0.420782950448E-01 -0.700931658099E-04 1822 0.421134243879E-01 -0.515723666990E-04 1823 0.421008991260E-01 -0.451525695609E-04 1824 -0.421144720989E-01 0.656024792087E-04 1825 0.420899097671E-01 -0.723807368515E-04 1826 -0.420775205963E-01 0.506564690988E-04 1827 -0.180687983149E-05 0.102688607784E-06 1828 0.191511820267 -0.214259543115E-01 1829 0.359691961066E-05 0.409716787619E-06 1830 -0.421139340339E-01 0.660500665912E-04 1831 0.421124828001E-01 -0.493688346361E-04 1832 0.420842396714E-01 -0.706686859468E-04 1833 -0.420836300162E-01 0.492699249321E-04 1834 0.421131645809E-01 -0.504409952926E-04 1835 0.420844222053E-01 -0.717770052444E-04 1836 -0.421133239756E-01 0.673161870750E-04 1837 -0.420832750001E-01 0.501911616776E-04 1838 0.408786619436E-05 0.239265782533E-06 1839 0.359659306648E-05 0.409594383760E-06 1840 0.191506921064 -0.214263047541E-01 1841 -0.420748094566E-01 0.664989951564E-04 1842 0.421040150893E-01 -0.542430476598E-04 1843 -0.420693710013E-01 0.481583769276E-04 1844 0.421083142123E-01 -0.631519064403E-04 1845 0.420742129767E-01 -0.550251273843E-04 1846 -0.421073790301E-01 0.552487216555E-04 1847 -0.421049253987E-01 0.637797457111E-04 1848 0.420706429073E-01 -0.729927510572E-04 1849 -0.421009136954E-01 0.451521411040E-04 1850 -0.421131757544E-01 0.504411120019E-04 1851 -0.420742082140E-01 0.550243545300E-04 1852 0.786224617334 -0.207364579729E-02 1853 -0.659101220016E-01 -0.108543887224E-02 1854 -0.659633802774E-01 -0.108638222619E-02 1855 -0.659030953906E-01 -0.107615893596E-02 1856 -0.492879041931E-01 -0.832970134094E-03 1857 -0.790291136586E-01 -0.930106404112E-03 1858 -0.790212089160E-01 -0.938655097800E-03 1859 -0.789741011497E-01 -0.930048023387E-03 1860 -0.420899245637E-01 0.723807349654E-04 1861 0.421133456020E-01 -0.673156782463E-04 1862 0.421049019906E-01 -0.637796831368E-04 1863 -0.659102872131E-01 -0.106852960648E-02 1864 0.786331160571 -0.207251567141E-02 1865 -0.658784542391E-01 -0.110554337252E-02 1866 -0.658716683395E-01 -0.107671908310E-02 1867 -0.790211234912E-01 -0.938648916661E-03 1868 -0.790685688511E-01 -0.948353642080E-03 1869 -0.494005645370E-01 -0.768647565679E-03 1870 -0.790541836740E-01 -0.979091545322E-03 1871 0.420775360254E-01 -0.506566990867E-04 1872 0.420832647489E-01 -0.501913896369E-04 1873 -0.420706075149E-01 0.729945954897E-04 1874 -0.659637349371E-01 -0.106883792066E-02 1875 -0.658789033024E-01 -0.104809481771E-02 1876 0.786139525080 -0.207435881204E-02 1877 -0.658831447663E-01 -0.103959051264E-02 1878 -0.789738015161E-01 -0.930038965254E-03 1879 -0.790410860190E-01 -0.960237418202E-03 1880 -0.790539588788E-01 -0.979085061925E-03 1881 -0.492213525329E-01 -0.848087680542E-03 1882 0.421145192451E-01 -0.656014630457E-04 1883 -0.420844002495E-01 0.717770556833E-04 1884 0.421073533859E-01 -0.552491522508E-04 1885 -0.659030542996E-01 -0.107765259955E-02 1886 -0.658716494838E-01 -0.107603823143E-02 1887 -0.658824194556E-01 -0.111413241661E-02 1888 0.786309873476 -0.207281674354E-02 1889 -0.790290286538E-01 -0.930105843607E-03 1890 -0.493940685474E-01 -0.783057935021E-03 1891 -0.790684861397E-01 -0.948351050288E-03 1892 -0.790412478224E-01 -0.960238947797E-03 1893 0.421026138280E-01 -0.731104446266E-04 1894 0.421139229446E-01 -0.660508677914E-04 1895 0.420748141987E-01 -0.665000318033E-04 1896 -0.492878512163E-01 -0.800648262589E-03 1897 -0.790207696937E-01 -0.957487238751E-03 1898 -0.789736969750E-01 -0.964902060928E-03 1899 -0.790285855055E-01 -0.966214638808E-03 1900 0.786224206331 -0.207365560156E-02 1901 -0.659030280057E-01 -0.107765016099E-02 1902 -0.659102810388E-01 -0.106853249949E-02 1903 -0.659637088093E-01 -0.106883594421E-02 1904 -0.421133772797E-01 0.515736461805E-04 1905 0.420836519014E-01 -0.492689675161E-04 1906 -0.421083398766E-01 0.631510944079E-04 1907 -0.790286704431E-01 -0.966217830088E-03 1908 -0.790685467533E-01 -0.949106102760E-03 1909 -0.790412591452E-01 -0.936332093323E-03 1910 -0.493937832253E-01 -0.852634193962E-03 1911 -0.659030689914E-01 -0.107616036837E-02 1912 0.786309870407 -0.207281678294E-02 1913 -0.658716225866E-01 -0.107671682411E-02 1914 -0.658832241115E-01 -0.103959185330E-02 1915 0.420891462894E-01 -0.480863980609E-04 1916 -0.421124611759E-01 0.493703900506E-04 1917 -0.421040384455E-01 0.542430958598E-04 1918 -0.790208553076E-01 -0.957484863472E-03 1919 -0.493999621983E-01 -0.867311656606E-03 1920 -0.790543527719E-01 -0.917491041604E-03 1921 -0.790684640153E-01 -0.949104944751E-03 1922 -0.659101159555E-01 -0.108543605966E-02 1923 -0.658716036769E-01 -0.107603836102E-02 1924 0.786330932786 -0.207252103483E-02 1925 -0.658789173138E-01 -0.104809995275E-02 1926 -0.420782795823E-01 0.700929208235E-04 1927 -0.420842499053E-01 0.706671762573E-04 1928 0.420694064499E-01 -0.481573312956E-04 1929 -0.789739966965E-01 -0.964906506321E-03 1930 -0.790545776206E-01 -0.917494747441E-03 1931 -0.492221319207E-01 -0.784643533703E-03 1932 -0.790414208452E-01 -0.936337908946E-03 1933 -0.659633540737E-01 -0.108638289655E-02 1934 -0.658824987755E-01 -0.111413447457E-02 1935 -0.658784684685E-01 -0.110553867236E-02 1936 0.786140140520 -0.207434420577E-02 1937 0.113681697132 -0.327663523315E-01 1938 -0.144125184406E-05 0.149335564742E-06 1939 0.502763923466E-05 0.435519204615E-06 1940 -0.415377485437E-01 0.434621517262E-03 1941 -0.415192696014E-01 0.405677250837E-03 1942 0.415083539102E-01 -0.430650105898E-03 1943 0.415496290503E-01 -0.407336678915E-03 1944 0.415348363683E-01 -0.400155745595E-03 1945 -0.415514894897E-01 0.425577572601E-03 1946 0.415205087672E-01 -0.432829235981E-03 1947 -0.415070781938E-01 0.408349470707E-03 1948 -0.144067362151E-05 0.149329897025E-06 1949 0.113683482754 -0.327660965295E-01 1950 0.526524071801E-05 0.805024416215E-06 1951 -0.415521292233E-01 0.425106315013E-03 1952 0.415497753457E-01 -0.405385446117E-03 1953 0.415141390790E-01 -0.431726145214E-03 1954 -0.415126280816E-01 0.407036430101E-03 1955 0.415508276317E-01 -0.406615765072E-03 1956 0.415139287980E-01 -0.432441179660E-03 1957 -0.415512047069E-01 0.426600589865E-03 1958 -0.415124935661E-01 0.407540624748E-03 1959 0.502777840325E-05 0.435459889579E-06 1960 0.526484686534E-05 0.804869890904E-06 1961 0.113677164506 -0.327667781314E-01 1962 -0.415034184377E-01 0.427006863097E-03 1963 0.415386766238E-01 -0.410756372800E-03 1964 -0.414980679931E-01 0.405006870091E-03 1965 0.415428348936E-01 -0.423377596557E-03 1966 0.415023630693E-01 -0.413213943651E-03 1967 -0.415412355285E-01 0.411812008409E-03 1968 -0.415401984419E-01 0.423668362772E-03 1969 0.415001875164E-01 -0.434521825965E-03 1970 -0.415348522944E-01 0.400155263223E-03 1971 -0.415508398291E-01 0.406615866083E-03 1972 -0.415023615895E-01 0.413212461609E-03 1973 0.779337886232 -0.257171445245E-02 1974 -0.695038405126E-01 -0.135153371086E-02 1975 -0.695591517638E-01 -0.135292231288E-02 1976 -0.694965253070E-01 -0.134186148632E-02 1977 -0.520021591055E-01 -0.102190197379E-02 1978 -0.821891298484E-01 -0.116622583946E-02 1979 -0.821808326670E-01 -0.117489666044E-02 1980 -0.821317804808E-01 -0.116652108072E-02 1981 -0.415205230650E-01 0.432829506408E-03 1982 0.415512299732E-01 -0.426599680004E-03 1983 0.415401752705E-01 -0.423667914262E-03 1984 -0.695040517258E-01 -0.133407080157E-02 1985 0.779448210473 -0.257029486422E-02 1986 -0.694715113319E-01 -0.137198543662E-02 1987 -0.694633319191E-01 -0.134234571996E-02 1988 -0.821807412884E-01 -0.117489016369E-02 1989 -0.822303607731E-01 -0.118535945215E-02 1990 -0.521188685862E-01 -0.956881437325E-03 1991 -0.822145423412E-01 -0.121669873910E-02 1992 0.415070928918E-01 -0.408350039258E-03 1993 0.415124804343E-01 -0.407541229123E-03 1994 -0.415001473085E-01 0.434524202851E-03 1995 -0.695595807484E-01 -0.133420483448E-02 1996 -0.694720702597E-01 -0.131304381629E-02 1997 0.779250327886 -0.257270005858E-02 1998 -0.694764930431E-01 -0.130406908538E-02 1999 -0.821314598465E-01 -0.116651182222E-02 2000 -0.822014759471E-01 -0.119748148978E-02 2001 -0.822143017371E-01 -0.121669212714E-02 2002 -0.519339598680E-01 -0.103814475150E-02 2003 0.415515406201E-01 -0.425576421875E-03 2004 -0.415139050606E-01 0.432441275343E-03 2005 0.415412077582E-01 -0.411812487942E-03 2006 -0.694965023258E-01 -0.134346413680E-02 2007 -0.694633572582E-01 -0.134167730619E-02 2008 -0.694755642410E-01 -0.138105161331E-02 2009 0.779425895191 -0.257069661890E-02 2010 -0.821890390136E-01 -0.116622539942E-02 2011 -0.521118327831E-01 -0.971769779843E-03 2012 -0.822302722223E-01 -0.118535678774E-02 2013 -0.822016491285E-01 -0.119748288525E-02 2014 0.415377325835E-01 -0.434622095918E-03 2015 0.415521171156E-01 -0.425107203715E-03 2016 0.415034198906E-01 -0.427008599394E-03 2017 -0.520022009447E-01 -0.989654877747E-03 2018 -0.821803323125E-01 -0.119487447182E-02 2019 -0.821312586724E-01 -0.120178882864E-02 2020 -0.821884494430E-01 -0.120385039347E-02 2021 0.779337445036 -0.257172452337E-02 2022 -0.694964743479E-01 -0.134346154691E-02 2023 -0.695040454404E-01 -0.133407389289E-02 2024 -0.695595526883E-01 -0.133420274409E-02 2025 -0.415495779626E-01 0.407338126335E-03 2026 0.415126517516E-01 -0.407035402819E-03 2027 -0.415428626813E-01 0.423376685080E-03 2028 -0.821885402065E-01 -0.120385367768E-02 2029 -0.822304058567E-01 -0.118611356693E-02 2030 -0.822016786250E-01 -0.117301148318E-02 2031 -0.521114663444E-01 -0.104230005190E-02 2032 -0.694964972192E-01 -0.134186307271E-02 2033 0.779425891974 -0.257069665103E-02 2034 -0.694632828785E-01 -0.134234336793E-02 2035 -0.694765777979E-01 -0.130407039662E-02 2036 0.415192553316E-01 -0.405676804189E-03 2037 -0.415497500762E-01 0.405387445907E-03 2038 -0.415386997291E-01 0.410756747042E-03 2039 -0.821804238814E-01 -0.119487181677E-02 2040 -0.521180683988E-01 -0.105759357780E-02 2041 -0.822148062617E-01 -0.115377707061E-02 2042 -0.822303172804E-01 -0.118611242672E-02 2043 -0.695038343548E-01 -0.135153070918E-02 2044 -0.694633081637E-01 -0.134167750509E-02 2045 0.779447966119 -0.257030035673E-02 2046 -0.694720850717E-01 -0.131304928077E-02 2047 -0.415083391748E-01 0.430649505709E-03 2048 -0.415141521913E-01 0.431724162519E-03 2049 0.414981082734E-01 -0.405005423660E-03 2050 -0.821315793917E-01 -0.120179318718E-02 2051 -0.822150469161E-01 -0.115378073673E-02 2052 -0.519349529427E-01 -0.972077403437E-03 2053 -0.822018516991E-01 -0.117301748758E-02 2054 -0.695591236208E-01 -0.135292310179E-02 2055 -0.694756489688E-01 -0.138105370746E-02 2056 -0.694715263628E-01 -0.137198038876E-02 2057 0.779250988369 -0.257268507432E-02 2058 -0.130693541212E-01 -0.758539957551E-01 2059 -0.877534005619E-06 0.280519882266E-06 2060 0.684570445073E-05 0.137492218644E-05 2061 -0.392827636177E-01 0.231486993954E-02 2062 -0.392530762887E-01 0.228133564283E-02 2063 0.392432762966E-01 -0.231175199006E-02 2064 0.392938762215E-01 -0.227624371879E-02 2065 0.392746084796E-01 -0.226867377119E-02 2066 -0.392997249222E-01 0.230229296311E-02 2067 0.392565506670E-01 -0.231344116403E-02 2068 -0.392399318996E-01 0.228436388784E-02 2069 -0.876710040708E-06 0.280875303630E-06 2070 -0.130664402464E-01 -0.758530549513E-01 2071 0.875442992731E-05 0.278692907380E-05 2072 -0.393020937820E-01 0.229937403090E-02 2073 0.392965732146E-01 -0.227403449508E-02 2074 0.392490367748E-01 -0.231409176541E-02 2075 -0.392444384837E-01 0.228330588236E-02 2076 0.392982282234E-01 -0.227570249878E-02 2077 0.392479850960E-01 -0.231382427601E-02 2078 -0.393007511042E-01 0.230110960380E-02 2079 -0.392441746703E-01 0.228320961869E-02 2080 0.684591031785E-05 0.137469853168E-05 2081 0.875390924649E-05 0.278674435153E-05 2082 -0.130756872404E-01 -0.758554290544E-01 2083 -0.392360479408E-01 0.230858535843E-02 2084 0.392805403422E-01 -0.228217009460E-02 2085 -0.392291251093E-01 0.227951411923E-02 2086 0.392856092442E-01 -0.230221390195E-02 2087 0.392327484916E-01 -0.229047261342E-02 2088 -0.392813508640E-01 0.228398945369E-02 2089 -0.392845616191E-01 0.230119465185E-02 2090 0.392350652916E-01 -0.231740722896E-02 2091 -0.392746259997E-01 0.226867311395E-02 2092 -0.392982416232E-01 0.227570251143E-02 2093 -0.392327533321E-01 0.229046857859E-02 2094 0.770562391123 -0.357234372320E-02 2095 -0.740909289294E-01 -0.174493082651E-02 2096 -0.741488564142E-01 -0.174682738542E-02 2097 -0.740830186366E-01 -0.173456138449E-02 2098 -0.554156524507E-01 -0.118902051451E-02 2099 -0.862616426097E-01 -0.163856342096E-02 2100 -0.862524984300E-01 -0.164730556734E-02 2101 -0.862013283473E-01 -0.163897929104E-02 2102 -0.392565631169E-01 0.231344251617E-02 2103 0.393007819222E-01 -0.230110710590E-02 2104 0.392845401286E-01 -0.230119292979E-02 2105 -0.740912943634E-01 -0.172673373807E-02 2106 0.770677574490 -0.357040263154E-02 2107 -0.740573582010E-01 -0.176528550411E-02 2108 -0.740475773250E-01 -0.173499276036E-02 2109 -0.862524010129E-01 -0.164729870936E-02 2110 -0.863047643701E-01 -0.165908263368E-02 2111 -0.555381207159E-01 -0.112287094101E-02 2112 -0.862874356585E-01 -0.169132247428E-02 2113 0.392399444981E-01 -0.228436557434E-02 2114 0.392441568716E-01 -0.228321166172E-02 2115 -0.392350182543E-01 0.231741137180E-02 2116 -0.741492846852E-01 -0.172668767011E-02 2117 -0.740581806115E-01 -0.170444865221E-02 2118 0.770471231286 -0.357445274444E-02 2119 -0.740628684013E-01 -0.169477313078E-02 2120 -0.862009864772E-01 -0.163896980122E-02 2121 -0.862746360150E-01 -0.167163141162E-02 2122 -0.862871790674E-01 -0.169131573390E-02 2123 -0.553450893911E-01 -0.120570866760E-02 2124 0.392997808699E-01 -0.230229121194E-02 2125 -0.392479592364E-01 0.231382463961E-02 2126 0.392813205670E-01 -0.228399019736E-02 2127 -0.740831757326E-01 -0.173617412474E-02 2128 -0.740478808099E-01 -0.173410912460E-02 2129 -0.740614171848E-01 -0.177498341660E-02 2130 0.770653821760 -0.357115332630E-02 2131 -0.862615460028E-01 -0.163856318425E-02 2132 -0.555301044499E-01 -0.113825044304E-02 2133 -0.863046698624E-01 -0.165907985264E-02 2134 -0.862748206773E-01 -0.167163264028E-02 2135 0.392827460886E-01 -0.231487072070E-02 2136 0.393020804759E-01 -0.229937511921E-02 2137 0.392360430536E-01 -0.230858960697E-02 2138 -0.554165127080E-01 -0.115636056462E-02 2139 -0.862520115194E-01 -0.166858872635E-02 2140 -0.862001624806E-01 -0.167511374827E-02 2141 -0.862605526004E-01 -0.167829398174E-02 2142 0.770561918741 -0.357235432677E-02 2143 -0.740831460425E-01 -0.173617128740E-02 2144 -0.740912879145E-01 -0.172673684267E-02 2145 -0.741492547376E-01 -0.172668555057E-02 2146 -0.392938203259E-01 0.227624586446E-02 2147 0.392444643008E-01 -0.228330456351E-02 2148 -0.392856395390E-01 0.230221263259E-02 2149 -0.862606491305E-01 -0.167829729196E-02 2150 -0.863053055885E-01 -0.165950536495E-02 2151 -0.862748148072E-01 -0.164650593809E-02 2152 -0.555293738382E-01 -0.121004872045E-02 2153 -0.740829888284E-01 -0.173456304390E-02 2154 0.770653818418 -0.357115334902E-02 2155 -0.740475249573E-01 -0.173499031584E-02 2156 -0.740629586124E-01 -0.169477449588E-02 2157 0.392530638329E-01 -0.228133405654E-02 2158 -0.392965423797E-01 0.227403807026E-02 2159 -0.392805617250E-01 0.228217165144E-02 2160 -0.862521091271E-01 -0.166858583164E-02 2161 -0.555365529918E-01 -0.122643949265E-02 2162 -0.862880595671E-01 -0.162664842773E-02 2163 -0.863052110592E-01 -0.165950419092E-02 2164 -0.740909226067E-01 -0.174492745437E-02 2165 -0.740478283873E-01 -0.173410939666E-02 2166 0.770677313077 -0.357040839671E-02 2167 -0.740581962214E-01 -0.170445452057E-02 2168 -0.392432636553E-01 0.231175019567E-02 2169 -0.392490545366E-01 0.231408827322E-02 2170 0.392291722755E-01 -0.227951111612E-02 2171 -0.862005044339E-01 -0.167511805930E-02 2172 -0.862883161986E-01 -0.162665206326E-02 2173 -0.553465109320E-01 -0.113621094143E-02 2174 -0.862749993550E-01 -0.164651211758E-02 2175 -0.741488263691E-01 -0.174682840377E-02 2176 -0.740615073678E-01 -0.177498563076E-02 2177 -0.740573740330E-01 -0.176528018255E-02 2178 0.770471938225 -0.357443699690E-02 2179 -0.121038023824 -0.220168768986 2180 -0.110188709981E-06 0.684758524333E-06 2181 0.751554149900E-05 0.455209876442E-05 2182 -0.392417600174E-01 0.907979208532E-02 2183 -0.391973505454E-01 0.905336657687E-02 2184 0.391937916558E-01 -0.908877654614E-02 2185 0.392400586703E-01 -0.903010146815E-02 2186 0.392151055256E-01 -0.902688416433E-02 2187 -0.392592101855E-01 0.905855053445E-02 2188 0.392076415446E-01 -0.908788962281E-02 2189 -0.391828847871E-01 0.905755588115E-02 2190 -0.109292861734E-06 0.685357912487E-06 2191 -0.121034980459 -0.220165338458 2192 0.962596641139E-05 0.994788054402E-05 2193 -0.392602486712E-01 0.905141413169E-02 2194 0.392443684702E-01 -0.902402663409E-02 2195 0.392014328499E-01 -0.909199994692E-02 2196 -0.391861590755E-01 0.905807059263E-02 2197 0.392483477937E-01 -0.902594414989E-02 2198 0.391972917185E-01 -0.909157808825E-02 2199 -0.392577101660E-01 0.905381083323E-02 2200 -0.391859990673E-01 0.905841681310E-02 2201 0.751589841617E-05 0.455171498059E-05 2202 0.962546779358E-05 0.994751550236E-05 2203 -0.121044722068 -0.220173610345 2204 -0.391844885272E-01 0.908711789162E-02 2205 0.392277519441E-01 -0.904084034296E-02 2206 -0.391681988387E-01 0.905249651794E-02 2207 0.392428379666E-01 -0.906961922934E-02 2208 0.391738265649E-01 -0.906765831913E-02 2209 -0.392280337185E-01 0.904610236228E-02 2210 -0.392413546302E-01 0.906446775903E-02 2211 0.391871210300E-01 -0.909464205303E-02 2212 -0.392151253191E-01 0.902688321813E-02 2213 -0.392483628751E-01 0.902594386629E-02 2214 -0.391738373333E-01 0.906764535912E-02 2215 0.759397553060 -0.685815283090E-02 2216 -0.807668131358E-01 -0.313761763849E-02 2217 -0.808285050230E-01 -0.314045705441E-02 2218 -0.807587140545E-01 -0.312547998292E-02 2219 -0.609835386370E-01 -0.198790541940E-02 2220 -0.917451881780E-01 -0.347812383299E-02 2221 -0.917349830068E-01 -0.348584139560E-02 2222 -0.916818106531E-01 -0.347847171636E-02 2223 -0.392076529236E-01 0.908789510947E-02 2224 0.392577459430E-01 -0.905380266185E-02 2225 0.392413348463E-01 -0.906446209215E-02 2226 -0.807676517035E-01 -0.311877254997E-02 2227 0.759518996292 -0.685487720516E-02 2228 -0.807330964870E-01 -0.315622070059E-02 2229 -0.807200076679E-01 -0.312575403119E-02 2230 -0.917348796327E-01 -0.348583406981E-02 2231 -0.917898734182E-01 -0.349970318367E-02 2232 -0.611150550804E-01 -0.192259689688E-02 2233 -0.917699582020E-01 -0.353395853148E-02 2234 0.391828947725E-01 -0.905756106769E-02 2235 0.391859761871E-01 -0.905842368293E-02 2236 -0.391870668471E-01 0.909465190572E-02 2237 -0.808287127805E-01 -0.311802800072E-02 2238 -0.807344649294E-01 -0.309335027606E-02 2239 0.759303931843 -0.686391753686E-02 2240 -0.807399605647E-01 -0.308273358922E-02 2241 -0.916814475465E-01 -0.347846194449E-02 2242 -0.917578239897E-01 -0.351444881430E-02 2243 -0.917696855584E-01 -0.353395167118E-02 2244 -0.609126965803E-01 -0.200388054201E-02 2245 0.392592704524E-01 -0.905854592770E-02 2246 -0.391972642379E-01 0.909157974738E-02 2247 0.392280010598E-01 -0.904610448241E-02 2248 -0.807595420155E-01 -0.312753904991E-02 2249 -0.807215076413E-01 -0.312508622440E-02 2250 -0.807369716922E-01 -0.316649497915E-02 2251 0.759493965638 -0.685679048084E-02 2252 -0.917450857885E-01 -0.347812409854E-02 2253 -0.611058345365E-01 -0.193768343004E-02 2254 -0.917897729649E-01 -0.349970012025E-02 2255 -0.917580202159E-01 -0.351444978829E-02 2256 0.392417402209E-01 -0.907979324857E-02 2257 0.392602337378E-01 -0.905141558407E-02 2258 0.391844776479E-01 -0.908713100197E-02 2259 -0.609873947704E-01 -0.195677738603E-02 2260 -0.917348952918E-01 -0.350904715188E-02 2261 -0.916783995073E-01 -0.351424448232E-02 2262 -0.917427091249E-01 -0.352022385085E-02 2263 0.759397048556 -0.685816492161E-02 2264 -0.807595109732E-01 -0.312753564894E-02 2265 -0.807676457650E-01 -0.311877505631E-02 2266 -0.808286806812E-01 -0.311802617931E-02 2267 -0.392399985472E-01 0.903010652076E-02 2268 0.391861865717E-01 -0.905806795447E-02 2269 -0.392428705659E-01 0.906961650297E-02 2270 -0.917428114213E-01 -0.352022690765E-02 2271 -0.917922224821E-01 -0.350081785345E-02 2272 -0.917577916659E-01 -0.348821857742E-02 2273 -0.611041781123E-01 -0.201014905630E-02 2274 -0.807586828781E-01 -0.312548143342E-02 2275 0.759493962213 -0.685679047277E-02 2276 -0.807199519609E-01 -0.312575147785E-02 2277 -0.807400558452E-01 -0.308273529243E-02 2278 0.391973390460E-01 -0.905336081522E-02 2279 -0.392443326264E-01 0.902403592756E-02 2280 -0.392277714520E-01 0.904084576312E-02 2281 -0.917349988562E-01 -0.350904413189E-02 2282 -0.611110294328E-01 -0.202834823550E-02 2283 -0.917716364836E-01 -0.346781150314E-02 2284 -0.917921220194E-01 -0.350081648228E-02 2285 -0.807668073133E-01 -0.313761328343E-02 2286 -0.807214518704E-01 -0.312508654457E-02 2287 0.759518717431 -0.685488371259E-02 2288 -0.807344809680E-01 -0.309335678947E-02 2289 -0.391937815987E-01 0.908877116402E-02 2290 -0.392014556489E-01 0.909199154842E-02 2291 0.391682533764E-01 -0.905248798970E-02 2292 -0.916787626919E-01 -0.351424882472E-02 2293 -0.917719091321E-01 -0.346781510446E-02 2294 -0.609152951334E-01 -0.193002207126E-02 2295 -0.917579877529E-01 -0.348822485406E-02 2296 -0.808284727838E-01 -0.314045865989E-02 2297 -0.807370669445E-01 -0.316649761249E-02 2298 -0.807331127601E-01 -0.315621535278E-02 2299 0.759304686531 -0.686389969486E-02 2300 -0.230519170937 -0.383898149000 2301 0.105070350152E-05 0.197268642543E-05 2302 0.758379488018E-05 0.727127252374E-05 2303 -0.416362361673E-01 0.146932184907E-01 2304 -0.415822896651E-01 0.146712982964E-01 2305 0.415852209674E-01 -0.147106423804E-01 2306 0.416240773161E-01 -0.146378706673E-01 2307 0.415957437209E-01 -0.146390661604E-01 2308 -0.416504999074E-01 0.146644761003E-01 2309 0.415976282961E-01 -0.147083296071E-01 2310 -0.415672016032E-01 0.146773640650E-01 2311 0.105167261809E-05 0.197356571906E-05 2312 -0.230516950134 -0.383892721898 2313 0.810781738367E-05 0.162574471998E-04 2314 -0.416509299961E-01 0.146551993129E-01 2315 0.416280038281E-01 -0.146295482008E-01 2316 0.415931445702E-01 -0.147136150136E-01 2317 -0.415695800325E-01 0.146802770269E-01 2318 0.416343831640E-01 -0.146292639592E-01 2319 0.415865345409E-01 -0.147151010407E-01 2320 -0.416472561986E-01 0.146595147644E-01 2321 -0.415709231024E-01 0.146795690227E-01 2322 0.758434372736E-05 0.727063099813E-05 2323 0.810685604592E-05 0.162568474583E-04 2324 -0.230525254664 -0.383905353875 2325 -0.415721215084E-01 0.147105026086E-01 2326 0.416128494993E-01 -0.146497766540E-01 2327 -0.415486794270E-01 0.146738551028E-01 2328 0.416396964686E-01 -0.146823389218E-01 2329 0.415571879925E-01 -0.146918197838E-01 2330 -0.416146711130E-01 0.146567609695E-01 2331 -0.416353581707E-01 0.146753089178E-01 2332 0.415768714303E-01 -0.147171496176E-01 2333 -0.415957646926E-01 0.146390626959E-01 2334 -0.416343997205E-01 0.146292611958E-01 2335 -0.415572062611E-01 0.146917932843E-01 2336 0.747767481406 -0.108540826925E-01 2337 -0.878191003971E-01 -0.494768899425E-02 2338 -0.878850960950E-01 -0.495283427623E-02 2339 -0.878116127228E-01 -0.493412941452E-02 2340 -0.669453298698E-01 -0.372804409946E-02 2341 -0.967435597621E-01 -0.498070571879E-02 2342 -0.967333082165E-01 -0.498749923832E-02 2343 -0.966758399367E-01 -0.498139983027E-02 2344 -0.415976367463E-01 0.147083394801E-01 2345 0.416472989364E-01 -0.146594968085E-01 2346 0.416353399553E-01 -0.146752978684E-01 2347 -0.878201137134E-01 -0.492834666525E-02 2348 0.747896513791 -0.108482548678E-01 2349 -0.877865232122E-01 -0.496618763661E-02 2350 -0.877686305343E-01 -0.493329976369E-02 2351 -0.967331988132E-01 -0.498749141638E-02 2352 -0.967913954451E-01 -0.500363969207E-02 2353 -0.670855173762E-01 -0.366627977642E-02 2354 -0.967671719537E-01 -0.503891936927E-02 2355 0.415672096463E-01 -0.146773758255E-01 2356 0.415708948592E-01 -0.146795856058E-01 2357 -0.415768090009E-01 0.147171722077E-01 2358 -0.878861380166E-01 -0.492712609930E-02 2359 -0.877883476493E-01 -0.490078364334E-02 2360 0.747672476354 -0.108619778520E-01 2361 -0.877949450225E-01 -0.488952248092E-02 2362 -0.966754549715E-01 -0.498138969727E-02 2363 -0.967548846521E-01 -0.501986462543E-02 2364 -0.967668826671E-01 -0.503891235794E-02 2365 -0.668743064249E-01 -0.374667282663E-02 2366 0.416505668047E-01 -0.146644656320E-01 2367 -0.415865042652E-01 0.147151049568E-01 2368 0.416146353152E-01 -0.146567654982E-01 2369 -0.878125945576E-01 -0.493726106784E-02 2370 -0.877708756461E-01 -0.493367294863E-02 2371 -0.877903964432E-01 -0.497721553618E-02 2372 0.747870527297 -0.108509194987E-01 2373 -0.967434512147E-01 -0.498070642724E-02 2374 -0.670756105948E-01 -0.368131324951E-02 2375 -0.967912889473E-01 -0.500363633741E-02 2376 -0.967550929187E-01 -0.501986530401E-02 2377 0.416362152755E-01 -0.146932222493E-01 2378 0.416509136368E-01 -0.146552033494E-01 2379 0.415721030465E-01 -0.147105291576E-01 2380 -0.669496234155E-01 -0.370074014819E-02 2381 -0.967329170828E-01 -0.501365630572E-02 2382 -0.966717492537E-01 -0.501542332361E-02 2383 -0.967394927927E-01 -0.502512237583E-02 2384 0.747766944248 -0.108540969896E-01 2385 -0.878125623036E-01 -0.493725711662E-02 2386 -0.878201086052E-01 -0.492834868197E-02 2387 -0.878861035355E-01 -0.492712441603E-02 2388 -0.416240106990E-01 0.146378816845E-01 2389 0.415696103660E-01 -0.146802721363E-01 2390 -0.416397319669E-01 0.146823336744E-01 2391 -0.967396012252E-01 -0.502512525253E-02 2392 -0.967944594290E-01 -0.500658663649E-02 2393 -0.967549933512E-01 -0.499206266869E-02 2394 -0.670742607212E-01 -0.375404718647E-02 2395 -0.878115802973E-01 -0.493413067378E-02 2396 0.747870523786 -0.108509195293E-01 2397 -0.877685713363E-01 -0.493329697732E-02 2398 -0.877950454141E-01 -0.488952463249E-02 2399 0.415822809068E-01 -0.146712879807E-01 2400 -0.416279609931E-01 0.146295672839E-01 2401 -0.416128672562E-01 0.146497874006E-01 2402 -0.967330266684E-01 -0.501365318234E-02 2403 -0.670804507583E-01 -0.377345519382E-02 2404 -0.967691399406E-01 -0.497140682972E-02 2405 -0.967943529415E-01 -0.500658505341E-02 2406 -0.878190954016E-01 -0.494768376006E-02 2407 -0.877708163738E-01 -0.493367320755E-02 2408 0.747896217272 -0.108482625244E-01 2409 -0.877883640180E-01 -0.490079082149E-02 2410 -0.415852127315E-01 0.147106303640E-01 2411 -0.415931727412E-01 0.147135968069E-01 2412 0.415487423832E-01 -0.146738340293E-01 2413 -0.966721342826E-01 -0.501542779464E-02 2414 -0.967694292055E-01 -0.497141043905E-02 2415 -0.668788323708E-01 -0.366763272731E-02 2416 -0.967552014379E-01 -0.499206902141E-02 2417 -0.878850614169E-01 -0.495283632321E-02 2418 -0.877904968063E-01 -0.497721872227E-02 2419 -0.877865398218E-01 -0.496618228308E-02 2420 0.747673279542 -0.108619567300E-01 2421 -0.244853418379 -0.597811466463 2422 0.964940671361E-06 0.431180896665E-05 2423 0.694730999721E-05 0.973317273494E-05 2424 -0.475127596584E-01 0.197150216749E-01 2425 -0.474505924978E-01 0.196960664522E-01 2426 0.474605920694E-01 -0.197381946700E-01 2427 0.474906772532E-01 -0.196572818209E-01 2428 0.474611471345E-01 -0.196627440877E-01 2429 -0.475207186440E-01 0.196817103316E-01 2430 0.474709550959E-01 -0.197355668031E-01 2431 -0.474356025143E-01 0.197049409436E-01 2432 0.965773988795E-06 0.431300210194E-05 2433 -0.244852796852 -0.597805111945 2434 0.382773076988E-05 0.204706531375E-04 2435 -0.475211358753E-01 0.196712627169E-01 2436 0.474931152678E-01 -0.196487830578E-01 2437 0.474676672769E-01 -0.197404859527E-01 2438 -0.474383208152E-01 0.197099314254E-01 2439 0.475006449364E-01 -0.196445288126E-01 2440 0.474603622704E-01 -0.197452716428E-01 2441 -0.475173514816E-01 0.196784476394E-01 2442 -0.474411834470E-01 0.197066417590E-01 2443 0.694821677042E-05 0.973333212432E-05 2444 0.382668201419E-05 0.204696765263E-04 2445 -0.244858532916 -0.597820347504 2446 -0.474432865962E-01 0.197418750570E-01 2447 0.474797598764E-01 -0.196688891597E-01 2448 -0.474147492045E-01 0.197050711660E-01 2449 0.475175915002E-01 -0.196991323099E-01 2450 0.474256396781E-01 -0.197241248044E-01 2451 -0.474842420146E-01 0.196757044834E-01 2452 -0.475102604943E-01 0.196926907789E-01 2453 0.474495278270E-01 -0.197477290432E-01 2454 -0.474611695528E-01 0.196627432202E-01 2455 -0.475006616802E-01 0.196445282953E-01 2456 -0.474256565608E-01 0.197240889088E-01 2457 0.730462959856 -0.213222148632E-01 2458 -0.993508432571E-01 -0.125044292901E-01 2459 -0.994232492138E-01 -0.125143388456E-01 2460 -0.993446381928E-01 -0.124898525434E-01 2461 -0.765985083587E-01 -0.113724851865E-01 2462 -0.104510282418 -0.111815789537E-01 2463 -0.104500522650 -0.111879554575E-01 2464 -0.104435013493 -0.111827180014E-01 2465 -0.474709653498E-01 0.197355841825E-01 2466 0.475173934117E-01 -0.196784262518E-01 2467 0.475102415101E-01 -0.196926721801E-01 2468 -0.993520826343E-01 -0.124841988567E-01 2469 0.730603910268 -0.213114176523E-01 2470 -0.993196675295E-01 -0.125249653758E-01 2471 -0.992953075488E-01 -0.124864283136E-01 2472 -0.104500407397 -0.111879473691E-01 2473 -0.104563824500 -0.112074493646E-01 2474 -0.767506208978E-01 -0.113170021107E-01 2475 -0.104532486570 -0.112427076733E-01 2476 0.474356105506E-01 -0.197049558136E-01 2477 0.474411553178E-01 -0.197066613568E-01 2478 -0.474494657182E-01 0.197477536138E-01 2479 -0.994262629160E-01 -0.124834752292E-01 2480 -0.993224468037E-01 -0.124551430921E-01 2481 0.730365703425 -0.213312694759E-01 2482 -0.993306537661E-01 -0.124433508421E-01 2483 -0.104434606614 -0.111827080098E-01 2484 -0.104519329527 -0.112239131111E-01 2485 -0.104532180460 -0.112427007466E-01 2486 -0.765251201507E-01 -0.113977259851E-01 2487 0.475207852995E-01 -0.196817002805E-01 2488 -0.474603322443E-01 0.197452742073E-01 2489 0.474842057526E-01 -0.196757082195E-01 2490 -0.993450718501E-01 -0.124942652904E-01 2491 -0.992976143926E-01 -0.124884150837E-01 2492 -0.993236122258E-01 -0.125371907332E-01 2493 0.730576362371 -0.213147727273E-01 2494 -0.104510167730 -0.111815805260E-01 2495 -0.767396365454E-01 -0.113324498141E-01 2496 -0.104563712070 -0.112074457560E-01 2497 -0.104519550145 -0.112239134122E-01 2498 0.475127374181E-01 -0.197150228932E-01 2499 0.475211194161E-01 -0.196712645378E-01 2500 0.474432694056E-01 -0.197419110698E-01 2501 -0.766010081324E-01 -0.113504361807E-01 2502 -0.104498863494 -0.112185402760E-01 2503 -0.104431675792 -0.112140788160E-01 2504 -0.104504164997 -0.112294134527E-01 2505 0.730462388546 -0.213222320138E-01 2506 -0.993450395662E-01 -0.124942617466E-01 2507 -0.993520803706E-01 -0.124842016505E-01 2508 -0.994262255260E-01 -0.124834735322E-01 2509 -0.474906108358E-01 0.196572922116E-01 2510 0.474383511240E-01 -0.197099278720E-01 2511 -0.475176275508E-01 0.196991280292E-01 2512 -0.104504279501 -0.112294157677E-01 2513 -0.104566386770 -0.112130685824E-01 2514 -0.104520518366 -0.111935558834E-01 2515 -0.767391016084E-01 -0.114065001268E-01 2516 -0.993446056480E-01 -0.124898546349E-01 2517 0.730576359014 -0.213147726119E-01 2518 -0.992952451749E-01 -0.124864258931E-01 2519 -0.993307575393E-01 -0.124433517213E-01 2520 0.474505820020E-01 -0.196960488331E-01 2521 -0.474930729577E-01 0.196488056181E-01 2522 -0.474797782679E-01 0.196689074012E-01 2523 -0.104498978929 -0.112185368019E-01 2524 -0.767446085887E-01 -0.114265270635E-01 2525 -0.104534692049 -0.111727845271E-01 2526 -0.104566274386 -0.112130668398E-01 2527 -0.993508410721E-01 -0.125044244723E-01 2528 -0.992975519687E-01 -0.124884158369E-01 2529 0.730603595510 -0.213114265129E-01 2530 -0.993224623325E-01 -0.124551498479E-01 2531 -0.474605838109E-01 0.197381795466E-01 2532 -0.474676953084E-01 0.197404646634E-01 2533 0.474148122012E-01 -0.197050481127E-01 2534 -0.104432082640 -0.112140829772E-01 2535 -0.104534998079 -0.111727879226E-01 2536 -0.765333276436E-01 -0.113104364878E-01 2537 -0.104520738766 -0.111935622358E-01 2538 -0.994232114950E-01 -0.125143412288E-01 2539 -0.993237159227E-01 -0.125371927888E-01 2540 -0.993196832548E-01 -0.125249589588E-01 2541 0.730366556990 -0.213312445192E-01 2542 0.335837991711 -0.986545400094 2543 -0.413669367113E-05 0.292594267949E-05 2544 -0.479000451241E-05 0.975206942248E-05 2545 -0.753324476830E-01 0.315462845573E-01 2546 -0.752697381174E-01 0.315817731975E-01 2547 0.753043010232E-01 -0.316020223337E-01 2548 0.752626817754E-01 -0.315154813189E-01 2549 0.752442862457E-01 -0.315476427498E-01 2550 -0.753108956087E-01 0.315103568843E-01 2551 0.753070448783E-01 -0.315984193836E-01 2552 -0.752594273288E-01 0.315971544956E-01 2553 -0.413716448829E-05 0.292700183866E-05 2554 0.335830383454 -0.986542483991 2555 -0.226681631932E-04 0.105227311942E-04 2556 -0.752956181596E-01 0.314962632958E-01 2557 0.752619661720E-01 -0.315028090349E-01 2558 0.753137378397E-01 -0.316058520013E-01 2559 -0.752700088207E-01 0.316065000804E-01 2560 0.752625504847E-01 -0.314907084954E-01 2561 0.753106979040E-01 -0.316169582280E-01 2562 -0.753007818270E-01 0.315075152038E-01 2563 -0.752665466930E-01 0.315996868271E-01 2564 -0.478993095699E-05 0.975155131446E-05 2565 -0.226675656332E-04 0.105227455241E-04 2566 0.335843203858 -0.986553653346 2567 -0.752928001200E-01 0.316207420368E-01 2568 0.752620686377E-01 -0.315358050140E-01 2569 -0.752389359047E-01 0.316031041403E-01 2570 0.753305846941E-01 -0.315337084881E-01 2571 0.752655480239E-01 -0.316211563677E-01 2572 -0.752703046426E-01 0.315454285503E-01 2573 -0.753145370088E-01 0.315282794232E-01 2574 0.753006060691E-01 -0.316096279479E-01 2575 -0.752443057695E-01 0.315476338614E-01 2576 -0.752625651224E-01 0.314907038627E-01 2577 -0.752655269143E-01 0.316210919674E-01 2578 0.736096568148 -0.296574100240E-01 2579 -0.959999936307E-01 -0.168199977712E-01 2580 -0.960776770113E-01 -0.168367568900E-01 2581 -0.959972114729E-01 -0.168037966554E-01 2582 -0.679804562989E-01 -0.140697764883E-01 2583 -0.963381954405E-01 -0.134331360206E-01 2584 -0.963296611478E-01 -0.134364760922E-01 2585 -0.962585257155E-01 -0.134323887702E-01 2586 -0.753070717079E-01 0.315984433395E-01 2587 0.753008018006E-01 -0.315074760954E-01 2588 0.753144973076E-01 -0.315282484520E-01 2589 -0.960016862870E-01 -0.167993954324E-01 2590 0.736246462498 -0.296381537469E-01 2591 -0.959734038778E-01 -0.168409938923E-01 2592 -0.959424321031E-01 -0.167946865715E-01 2593 -0.963295399410E-01 -0.134364672053E-01 2594 -0.963938213740E-01 -0.134594788382E-01 2595 -0.681445216575E-01 -0.140281630675E-01 2596 -0.963539007261E-01 -0.134963150064E-01 2597 0.752594546270E-01 -0.315971876990E-01 2598 0.752665410746E-01 -0.315997249718E-01 2599 -0.753005680079E-01 0.316096711278E-01 2600 -0.960833845466E-01 -0.168001637277E-01 2601 -0.959790364055E-01 -0.167660554882E-01 2602 0.736005029522 -0.296713380015E-01 2603 -0.959893000444E-01 -0.167555564636E-01 2604 -0.962580947946E-01 -0.134323778126E-01 2605 -0.963398326153E-01 -0.134779445678E-01 2606 -0.963535759555E-01 -0.134963073949E-01 2607 -0.679099195252E-01 -0.140980198534E-01 2608 0.753109562533E-01 -0.315103443719E-01 2609 -0.753106698734E-01 0.316169645442E-01 2610 0.752702708752E-01 -0.315454364612E-01 2611 -0.959974288020E-01 -0.168091438078E-01 2612 -0.959461189184E-01 -0.168004559207E-01 2613 -0.959768851541E-01 -0.168521138230E-01 2614 0.736219454073 -0.296431833014E-01 2615 -0.963380716855E-01 -0.134331384438E-01 2616 -0.681329094627E-01 -0.140392421282E-01 2617 -0.963937032272E-01 -0.134594748442E-01 2618 -0.963400672682E-01 -0.134779450727E-01 2619 0.753324285559E-01 -0.315462936147E-01 2620 0.752956039516E-01 -0.314962689910E-01 2621 0.752928206593E-01 -0.316208069185E-01 2622 -0.679837612329E-01 -0.140566197839E-01 2623 -0.963268948474E-01 -0.134709305107E-01 2624 -0.962535384545E-01 -0.134567943048E-01 2625 -0.963277860496E-01 -0.134804436295E-01 2626 0.736095969942 -0.296574321339E-01 2627 -0.959973968342E-01 -0.168091397981E-01 2628 -0.960016882458E-01 -0.167993977156E-01 2629 -0.960833426944E-01 -0.168001627693E-01 2630 -0.752626214286E-01 0.315154941167E-01 2631 0.752700372567E-01 -0.316064925771E-01 2632 -0.753306182140E-01 0.315337000362E-01 2633 -0.963279095826E-01 -0.134804452215E-01 2634 -0.963974119019E-01 -0.134724497450E-01 2635 -0.963424427032E-01 -0.134450684755E-01 2636 -0.681312901419E-01 -0.141173742980E-01 2637 -0.959971791593E-01 -0.168037985238E-01 2638 0.736219450382 -0.296431827264E-01 2639 -0.959423661793E-01 -0.167946841786E-01 2640 -0.959894077714E-01 -0.167555573040E-01 2641 0.752697109381E-01 -0.315817491320E-01 2642 -0.752619457156E-01 0.315028496068E-01 2643 -0.752621072738E-01 0.315358363773E-01 2644 -0.963270162249E-01 -0.134709271621E-01 2645 -0.681343949755E-01 -0.141357549195E-01 2646 -0.963589121112E-01 -0.134242421054E-01 2647 -0.963972938243E-01 -0.134724477303E-01 2648 -0.959999956557E-01 -0.168199919825E-01 2649 -0.959460529386E-01 -0.168004568705E-01 2650 0.736246132846 -0.296381651790E-01 2651 -0.959790510241E-01 -0.167660628494E-01 2652 -0.753042732745E-01 0.316019891394E-01 2653 -0.753137432979E-01 0.316058122383E-01 2654 0.752389753675E-01 -0.316030617348E-01 2655 -0.962539693248E-01 -0.134567990937E-01 2656 -0.963592367446E-01 -0.134242458933E-01 2657 -0.679243858894E-01 -0.140057868725E-01 2658 -0.963426770817E-01 -0.134450752720E-01 2659 -0.960776347219E-01 -0.168367600533E-01 2660 -0.959769927905E-01 -0.168521158827E-01 2661 -0.959734187037E-01 -0.168409873441E-01 2662 0.736005923675 -0.296713063197E-01 2663 0.317961470878 -0.917132663893 2664 -0.344041676279E-05 0.319133211460E-05 2665 -0.221257833614E-05 0.106792340532E-04 2666 -0.779124715229E-01 0.218755653393E-01 2667 -0.778448937617E-01 0.218919089889E-01 2668 0.778753345788E-01 -0.219177739749E-01 2669 0.778511841733E-01 -0.218395292413E-01 2670 0.778363989345E-01 -0.218689028605E-01 2671 -0.778894607058E-01 0.218446327033E-01 2672 0.778751023827E-01 -0.219174997481E-01 2673 -0.778356371122E-01 0.219112134789E-01 2674 -0.344071379792E-05 0.319220038490E-05 2675 0.317956121364 -0.917129481136 2676 -0.160746059647E-04 0.112884662842E-04 2677 -0.778793664190E-01 0.218334395118E-01 2678 0.778537389249E-01 -0.218334011256E-01 2679 0.778798855423E-01 -0.219223420198E-01 2680 -0.778471577498E-01 0.219171585030E-01 2681 0.778521635602E-01 -0.218190527430E-01 2682 0.778810044327E-01 -0.219327060118E-01 2683 -0.778873615872E-01 0.218446482629E-01 2684 -0.778430731534E-01 0.219069713127E-01 2685 -0.221237868469E-05 0.106798399740E-04 2686 -0.160743233742E-04 0.112872637305E-04 2687 0.317964299344 -0.917141744240 2688 -0.778626835975E-01 0.219395523853E-01 2689 0.778447253453E-01 -0.218574529809E-01 2690 -0.778165136095E-01 0.219166887783E-01 2691 0.779060602488E-01 -0.218521666629E-01 2692 0.778407973160E-01 -0.219341298202E-01 2693 -0.778526850568E-01 0.218645226406E-01 2694 -0.778920733837E-01 0.218494934056E-01 2695 0.778669531143E-01 -0.219324586302E-01 2696 -0.778364205646E-01 0.218688986524E-01 2697 -0.778521804970E-01 0.218190499919E-01 2698 -0.778407748785E-01 0.219340683224E-01 2699 0.708284024000 -0.482776372209E-01 2700 -0.113771099798 -0.336811168759E-01 2701 -0.113853756742 -0.337144468014E-01 2702 -0.113769269570 -0.336662890328E-01 2703 -0.822850191516E-01 -0.239382910639E-01 2704 -0.108436247670 -0.194594874570E-01 2705 -0.108427938698 -0.194653557585E-01 2706 -0.108337952699 -0.194516385779E-01 2707 -0.778751311327E-01 0.219175270282E-01 2708 0.778873823867E-01 -0.218446126113E-01 2709 0.778920334536E-01 -0.218494634979E-01 2710 -0.113773102699 -0.336585858103E-01 2711 0.708452838323 -0.482337007842E-01 2712 -0.113740475514 -0.337113966383E-01 2713 -0.113705389907 -0.336455185618E-01 2714 -0.108427811499 -0.194653468345E-01 2715 -0.108503445044 -0.194996430749E-01 2716 -0.824620558002E-01 -0.239199038931E-01 2717 -0.108449481282 -0.195252758464E-01 2718 0.778356642097E-01 -0.219112411992E-01 2719 0.778430648619E-01 -0.219070057546E-01 2720 -0.778669104582E-01 0.219324981729E-01 2721 -0.113872153978 -0.336704927639E-01 2722 -0.113754274192 -0.336285448650E-01 2723 0.708184438966 -0.482881148540E-01 2724 -0.113766382546 -0.336181577621E-01 2725 -0.108337499039 -0.194516259409E-01 2726 -0.108432663189 -0.195050679890E-01 2727 -0.108449138925 -0.195252664263E-01 2728 -0.821959063972E-01 -0.239800949876E-01 2729 0.778895241449E-01 -0.218446183994E-01 2730 -0.778809763243E-01 0.219327104132E-01 2731 0.778526507075E-01 -0.218645299012E-01 2732 -0.113767805924 -0.336731519976E-01 2733 -0.113706663708 -0.336528816373E-01 2734 -0.113744056218 -0.337260385260E-01 2735 0.708422147794 -0.482400572955E-01 2736 -0.108436117722 -0.194594891975E-01 2737 -0.824500032729E-01 -0.239323047797E-01 2738 -0.108503320586 -0.194996386365E-01 2739 -0.108432910641 -0.195050696385E-01 2740 0.779124502872E-01 -0.218755696440E-01 2741 0.778793498364E-01 -0.218334433981E-01 2742 0.778627055141E-01 -0.219396143888E-01 2743 -0.822748419402E-01 -0.239296363466E-01 2744 -0.108418971863 -0.195064913355E-01 2745 -0.108342833305 -0.194743800067E-01 2746 -0.108419830792 -0.195130631503E-01 2747 0.708283386966 -0.482776644351E-01 2748 -0.113767774546 -0.336731511113E-01 2749 -0.113773108467 -0.336585935461E-01 2750 -0.113872108768 -0.336704896386E-01 2751 -0.778511209718E-01 0.218395437266E-01 2752 0.778471862850E-01 -0.219171527271E-01 2753 -0.779060943224E-01 0.218521589573E-01 2754 -0.108419960395 -0.195130658394E-01 2755 -0.108498141038 -0.195145995931E-01 2756 -0.108441043383 -0.194688637526E-01 2757 -0.824465169448E-01 -0.240139639255E-01 2758 -0.113769237665 -0.336662945481E-01 2759 0.708422144259 -0.482400567045E-01 2760 -0.113705320631 -0.336455169788E-01 2761 -0.113766493218 -0.336181539665E-01 2762 0.778448646634E-01 -0.218918816323E-01 2763 -0.778537176294E-01 0.218334384330E-01 2764 -0.778447642295E-01 0.218574831005E-01 2765 -0.108419099222 -0.195064874140E-01 2766 -0.824522713266E-01 -0.240338425590E-01 2767 -0.108456023660 -0.194475324816E-01 2768 -0.108498016694 -0.195145972169E-01 2769 -0.113771105543 -0.336811162210E-01 2770 -0.113706594412 -0.336528835285E-01 2771 0.708452488292 -0.482337139859E-01 2772 -0.113754287325 -0.336285490754E-01 2773 -0.778753070839E-01 0.219177463500E-01 2774 -0.778798937202E-01 0.219223058015E-01 2775 0.778165576441E-01 -0.219166500579E-01 2776 -0.108343286696 -0.194743864065E-01 2777 -0.108456365750 -0.194475380404E-01 2778 -0.822271280733E-01 -0.238743076804E-01 2779 -0.108441290463 -0.194688721727E-01 2780 -0.113853710904 -0.337144482941E-01 2781 -0.113744166699 -0.337260361417E-01 2782 -0.113740488750 -0.337113863151E-01 2783 0.708185390306 -0.482880759843E-01 2784 0.659888763720 -0.679497264056 2785 -0.252892463146E-05 0.778305483466E-06 2786 -0.681058993425E-05 0.490840182300E-05 2787 -0.934550268218E-01 0.127417724159E-01 2788 -0.934065509116E-01 0.128002019708E-01 2789 0.934408972659E-01 -0.127970179244E-01 2790 0.933838827399E-01 -0.127490635557E-01 2791 0.933918336433E-01 -0.127733905172E-01 2792 -0.934245948100E-01 0.127352742605E-01 2793 0.934451715754E-01 -0.128076768166E-01 2794 -0.934112007028E-01 0.128126216844E-01 2795 -0.252921043599E-05 0.778636633144E-06 2796 0.659883352626 -0.679497933152 2797 -0.157570496099E-04 -0.122299116462E-05 2798 -0.934077707670E-01 0.127250672350E-01 2799 0.933877428284E-01 -0.127318320354E-01 2800 0.934534846538E-01 -0.128087105394E-01 2801 -0.934250045609E-01 0.128166694643E-01 2802 0.933746308788E-01 -0.127246529564E-01 2803 0.934558609757E-01 -0.128127508128E-01 2804 -0.934185280768E-01 0.127263700990E-01 2805 -0.934113939964E-01 0.128140248333E-01 2806 -0.681064787549E-05 0.490854762336E-05 2807 -0.157566234625E-04 -0.122313193265E-05 2808 0.659895272067 -0.679501312247 2809 -0.934453939124E-01 0.128212459946E-01 2810 0.933922377711E-01 -0.127698444375E-01 2811 -0.933900625361E-01 0.128201542652E-01 2812 0.934408445528E-01 -0.127362560262E-01 2813 0.934218886318E-01 -0.128273812993E-01 2814 -0.934029009330E-01 0.127758925655E-01 2815 -0.934261256504E-01 0.127386679386E-01 2816 0.934404880070E-01 -0.128088134746E-01 2817 -0.933918574835E-01 0.127733849400E-01 2818 -0.933746475954E-01 0.127246492720E-01 2819 -0.934218411920E-01 0.128273357235E-01 2820 0.719085937516 -0.605790504400E-01 2821 -0.103979827225 -0.449782544935E-01 2822 -0.104040252742 -0.450174768184E-01 2823 -0.103978822744 -0.449655898023E-01 2824 -0.829329053076E-01 -0.269110343703E-01 2825 -0.114204966377 -0.195143896467E-01 2826 -0.114196306383 -0.195187697717E-01 2827 -0.114118032514 -0.194866815564E-01 2828 -0.934452154584E-01 0.128076953995E-01 2829 0.934185345994E-01 -0.127263426806E-01 2830 0.934260714096E-01 -0.127386434099E-01 2831 -0.103982353554 -0.449558746982E-01 2832 0.719220630449 -0.605134214929E-01 2833 -0.103942823282 -0.450054908028E-01 2834 -0.103931376219 -0.449319428427E-01 2835 -0.114196174423 -0.195187603492E-01 2836 -0.114256494687 -0.195642266398E-01 2837 -0.830751647668E-01 -0.269156294969E-01 2838 -0.114213211357 -0.195710984696E-01 2839 0.934112374212E-01 -0.128126457898E-01 2840 0.934113992179E-01 -0.128140535121E-01 2841 -0.934404600154E-01 0.128088468557E-01 2842 -0.104068771831 -0.449889447290E-01 2843 -0.103967492405 -0.449355018953E-01 2844 0.718989127937 -0.605923737448E-01 2845 -0.103979104009 -0.449280547739E-01 2846 -0.114117561661 -0.194866659769E-01 2847 -0.114198089682 -0.195487521184E-01 2848 -0.114212855953 -0.195710863220E-01 2849 -0.828360592087E-01 -0.269379133199E-01 2850 0.934246518881E-01 -0.127352642833E-01 2851 -0.934558336572E-01 0.128127534345E-01 2852 0.934028674835E-01 -0.127758964664E-01 2853 -0.103974886494 -0.449718811745E-01 2854 -0.103929934043 -0.449415721674E-01 2855 -0.103944784481 -0.450193341770E-01 2856 0.719192814875 -0.605217986514E-01 2857 -0.114204831033 -0.195143899576E-01 2858 -0.830668608398E-01 -0.269263779195E-01 2859 -0.114256365734 -0.195642218637E-01 2860 -0.114198346935 -0.195487558289E-01 2861 0.934550032972E-01 -0.127417778965E-01 2862 0.934077542780E-01 -0.127250719771E-01 2863 0.934454409271E-01 -0.128212922996E-01 2864 -0.829145418928E-01 -0.268956552639E-01 2865 -0.114180335353 -0.195560820511E-01 2866 -0.114128780270 -0.195161258167E-01 2867 -0.114183240505 -0.195566438373E-01 2868 0.719085275931 -0.605790822405E-01 2869 -0.103974852115 -0.449718831171E-01 2870 -0.103982358488 -0.449558876344E-01 2871 -0.104068724262 -0.449889397468E-01 2872 -0.933838258424E-01 0.127490737209E-01 2873 0.934250322036E-01 -0.128166652477E-01 2874 -0.934408778081E-01 0.127362517476E-01 2875 -0.114183375451 -0.195566481741E-01 2876 -0.114244900989 -0.195725880438E-01 2877 -0.114210961261 -0.195196512071E-01 2878 -0.830577261455E-01 -0.270025732332E-01 2879 -0.103978787718 -0.449655983544E-01 2880 0.719192811385 -0.605217978011E-01 2881 -0.103931301926 -0.449319419029E-01 2882 -0.103979223221 -0.449280470738E-01 2883 0.934065067139E-01 -0.128001834358E-01 2884 -0.933877359578E-01 0.127318613145E-01 2885 -0.933922912469E-01 0.127698696280E-01 2886 -0.114180467471 -0.195560780277E-01 2887 -0.830609205257E-01 -0.270234170578E-01 2888 -0.114226179982 -0.194999653282E-01 2889 -0.114244772166 -0.195725854632E-01 2890 -0.103979832075 -0.449782585495E-01 2891 -0.103929859722 -0.449415748387E-01 2892 0.719220266596 -0.605134367162E-01 2893 -0.103967507881 -0.449355035981E-01 2894 -0.934408602494E-01 0.127969940442E-01 2895 -0.934534793407E-01 0.128086801197E-01 2896 0.933900915344E-01 -0.128201211983E-01 2897 -0.114129250693 -0.195161348490E-01 2898 -0.114226535059 -0.194999733325E-01 2899 -0.828824122542E-01 -0.268562594712E-01 2900 -0.114211218080 -0.195196619462E-01 2901 -0.104040204406 -0.450174765671E-01 2902 -0.103944903433 -0.450193279421E-01 2903 -0.103942838825 -0.450054772789E-01 2904 0.718990115831 -0.605923284065E-01 2905 0.545998923314 -0.512305051917 2906 -0.110522784222E-05 0.117696566292E-05 2907 -0.399706764161E-05 0.529045890550E-05 2908 -0.972977569217E-01 0.564276100816E-02 2909 -0.972457178832E-01 0.568299237424E-02 2910 0.972732645943E-01 -0.568542323212E-02 2911 0.972341886866E-01 -0.565034966929E-02 2912 0.972510632141E-01 -0.567183324979E-02 2913 -0.972652801789E-01 0.564486756405E-02 2914 0.972740931548E-01 -0.570091970913E-02 2915 -0.972529185725E-01 0.570018422401E-02 2916 -0.110530694757E-05 0.117729330002E-05 2917 0.545994931429 -0.512304774584 2918 -0.110257139852E-04 0.139363857655E-05 2919 -0.972507872238E-01 0.563968385316E-02 2920 0.972448310419E-01 -0.563721814093E-02 2921 0.972828360296E-01 -0.569855420225E-02 2922 -0.972676281614E-01 0.570035886460E-02 2923 0.972262553820E-01 -0.562982038645E-02 2924 0.972908253581E-01 -0.569847061444E-02 2925 -0.972670625894E-01 0.563834148971E-02 2926 -0.972510274744E-01 0.569569118063E-02 2927 -0.399702429405E-05 0.529050022224E-05 2928 -0.110255032807E-04 0.139337612528E-05 2929 0.546003283862 -0.512309560292 2930 -0.972743701265E-01 0.570991488220E-02 2931 0.972435662994E-01 -0.566918512262E-02 2932 -0.972277626567E-01 0.570577380561E-02 2933 0.972804135008E-01 -0.563165107394E-02 2934 0.972582201097E-01 -0.570867135242E-02 2935 -0.972525618614E-01 0.567678842352E-02 2936 -0.972664208258E-01 0.563745050796E-02 2937 0.972659652337E-01 -0.570064603764E-02 2938 -0.972510842710E-01 0.567182702276E-02 2939 -0.972262712567E-01 0.562981710328E-02 2940 -0.972581784695E-01 0.570863496650E-02 2941 0.729139274500 -0.697394307615E-01 2942 -0.873750251813E-01 -0.526369747295E-01 2943 -0.874424633037E-01 -0.526811923125E-01 2944 -0.873732384279E-01 -0.526254495790E-01 2945 -0.595577738087E-01 -0.365699104452E-01 2946 -0.937509659296E-01 -0.268572894266E-01 2947 -0.937433077013E-01 -0.268627006794E-01 2948 -0.936524842969E-01 -0.268296906996E-01 2949 -0.972741315376E-01 0.570093249024E-02 2950 0.972670745689E-01 -0.563832058912E-02 2951 0.972663675741E-01 -0.563743199694E-02 2952 -0.873785816851E-01 -0.526116705793E-01 2953 0.729289630950 -0.696688517095E-01 2954 -0.873346596354E-01 -0.526686732779E-01 2955 -0.873189710951E-01 -0.525881499701E-01 2956 -0.937431674074E-01 -0.268626916435E-01 2957 -0.938105484291E-01 -0.269113831715E-01 2958 -0.597103472366E-01 -0.365755869300E-01 2959 -0.937607170027E-01 -0.269191570491E-01 2960 0.972529575044E-01 -0.570020493023E-02 2961 0.972510308906E-01 -0.569571350166E-02 2962 -0.972659326372E-01 0.570067148803E-02 2963 -0.874742632138E-01 -0.526460306796E-01 2964 -0.873597857743E-01 -0.525907115979E-01 2965 0.729035115070 -0.697519994905E-01 2966 -0.873717558386E-01 -0.525845103932E-01 2967 -0.936519832917E-01 -0.268296760234E-01 2968 -0.937436002606E-01 -0.268935643657E-01 2969 -0.937603390330E-01 -0.269191451917E-01 2970 -0.594465642107E-01 -0.366029097602E-01 2971 0.972653446938E-01 -0.564486176062E-02 2972 -0.972907954749E-01 0.569847235746E-02 2973 0.972525259430E-01 -0.567679207938E-02 2974 -0.873694267224E-01 -0.526289986876E-01 2975 -0.873148893152E-01 -0.525973970290E-01 2976 -0.873367948359E-01 -0.526834823385E-01 2977 0.729259059069 -0.696776710632E-01 2978 -0.937508203232E-01 -0.268572902134E-01 2979 -0.596999316519E-01 -0.365854291797E-01 2980 -0.938104117581E-01 -0.269113787466E-01 2981 -0.937438739015E-01 -0.268935678831E-01 2982 0.972977361264E-01 -0.564276717045E-02 2983 0.972507715855E-01 -0.563968835311E-02 2984 0.972744114351E-01 -0.570995193999E-02 2985 -0.595330420556E-01 -0.365525700775E-01 2986 -0.937236740585E-01 -0.269035232674E-01 2987 -0.936657205865E-01 -0.268583767961E-01 2988 -0.937284091763E-01 -0.269037911548E-01 2989 0.729138582056 -0.697394649997E-01 2990 -0.873693898595E-01 -0.526290021768E-01 2991 -0.873785859806E-01 -0.526116867163E-01 2992 -0.874742127995E-01 -0.526460248263E-01 2993 -0.972341243098E-01 0.565035572038E-02 2994 0.972676582999E-01 -0.570035558080E-02 2995 -0.972804492772E-01 0.563164701521E-02 2996 -0.937285542675E-01 -0.269037950412E-01 2997 -0.937975843553E-01 -0.269202012925E-01 2998 -0.937574308016E-01 -0.268634599029E-01 2999 -0.596914016810E-01 -0.366698876684E-01 3000 -0.873732007876E-01 -0.526254598150E-01 3001 0.729259054665 -0.696776697607E-01 3002 -0.873188927918E-01 -0.525881489622E-01 3003 -0.873718828587E-01 -0.525845006980E-01 3004 0.972456792992E-01 -0.568297962035E-02 3005 -0.972448187558E-01 0.563724085464E-02 3006 -0.972436189359E-01 0.566920420683E-02 3007 -0.937238144817E-01 -0.269035180278E-01 3008 -0.596989279055E-01 -0.366883192452E-01 3009 -0.937729139368E-01 -0.268401331700E-01 3010 -0.937974478565E-01 -0.269201992416E-01 3011 -0.873750293564E-01 -0.526369814471E-01 3012 -0.873148110410E-01 -0.525973998856E-01 3013 0.729289249257 -0.696688676204E-01 3014 -0.873598029776E-01 -0.525907122473E-01 3015 -0.972732254050E-01 0.568540270559E-02 3016 -0.972828325478E-01 0.569852999237E-02 3017 0.972277960524E-01 -0.570574886071E-02 3018 -0.936662209892E-01 -0.268583842663E-01 3019 -0.937732915200E-01 -0.268401404936E-01 3020 -0.594962325858E-01 -0.365107112198E-01 3021 -0.937577039557E-01 -0.268634706868E-01 3022 -0.874424119877E-01 -0.526811911132E-01 3023 -0.873369215277E-01 -0.526834740532E-01 3024 -0.873346768250E-01 -0.526686577244E-01 3025 0.729036150411 -0.697519514963E-01 3026 0.474430168833 -0.351008701232 3027 -0.259126412600E-06 0.121532058503E-05 3028 -0.316818678649E-05 0.397070095086E-05 3029 -0.990190378293E-01 0.137841875375E-02 3030 -0.989795354140E-01 0.142845136409E-02 3031 0.990008990261E-01 -0.141967683786E-02 3032 0.989656454121E-01 -0.139732847532E-02 3033 0.989868135811E-01 -0.140529767013E-02 3034 -0.989965109417E-01 0.139099103152E-02 3035 0.990098029951E-01 -0.143919102241E-02 3036 -0.989911616846E-01 0.143750125360E-02 3037 -0.259067095254E-06 0.121559353523E-05 3038 0.474426527696 -0.351008347991 3039 -0.948923662368E-05 0.162142087801E-05 3040 -0.989828781508E-01 0.138461357658E-02 3041 0.989740810343E-01 -0.137621573127E-02 3042 0.990171057227E-01 -0.143671062722E-02 3043 -0.990043986386E-01 0.143564282057E-02 3044 0.989547789888E-01 -0.137767267616E-02 3045 0.990196770849E-01 -0.143168789165E-02 3046 -0.989937279879E-01 0.137655917033E-02 3047 -0.989865246619E-01 0.143852966931E-02 3048 -0.316808369925E-05 0.397071619528E-05 3049 -0.948920014734E-05 0.162114888699E-05 3050 0.474433933576 -0.351011855561 3051 -0.990098295289E-01 0.144289593788E-02 3052 0.989803452385E-01 -0.141191307625E-02 3053 -0.989638864606E-01 0.144454829687E-02 3054 0.990046254687E-01 -0.137507532529E-02 3055 0.989916106347E-01 -0.144480950825E-02 3056 -0.989921600015E-01 0.141802895968E-02 3057 -0.989936178272E-01 0.138082268623E-02 3058 0.989958574238E-01 -0.143771208776E-02 3059 -0.989868392622E-01 0.140529278523E-02 3060 -0.989547980180E-01 0.137766991874E-02 3061 -0.989915710904E-01 0.144478436593E-02 3062 0.684269457229 -0.719127527652E-01 3063 -0.120271953058 -0.455294992824E-01 3064 -0.120327030217 -0.455706530705E-01 3065 -0.120268827979 -0.455153327967E-01 3066 -0.104169525866 -0.360729124178E-01 3067 -0.139468726629 -0.170390215259E-01 3068 -0.139459052893 -0.170435955826E-01 3069 -0.139377324324 -0.170003663616E-01 3070 -0.990098441706E-01 0.143919965035E-02 3071 0.989937415626E-01 -0.137654510617E-02 3072 0.989935661613E-01 -0.138080957224E-02 3073 -0.120277492063 -0.455041091673E-01 3074 0.684397510443 -0.718338869287E-01 3075 -0.120229746132 -0.455545802959E-01 3076 -0.120226391069 -0.454748436480E-01 3077 -0.139458909795 -0.170435853140E-01 3078 -0.139517080743 -0.170992187763E-01 3079 -0.104299483120 -0.360837467309E-01 3080 -0.139479033826 -0.170968502663E-01 3081 0.989911967398E-01 -0.143751600830E-02 3082 0.989865229695E-01 -0.143854606878E-02 3083 -0.989958184687E-01 0.143773108129E-02 3084 -0.120363702799 -0.455489779834E-01 3085 -0.120257567091 -0.454875079471E-01 3086 0.684159050955 -0.719282991168E-01 3087 -0.120269297525 -0.454798112783E-01 3088 -0.139376812535 -0.170003472258E-01 3089 -0.139465220231 -0.170718129024E-01 3090 -0.139478647071 -0.170968348141E-01 3091 -0.104056967098 -0.360946659810E-01 3092 0.989965760564E-01 -0.139098663370E-02 3093 -0.990196476135E-01 0.143168836905E-02 3094 0.989921230875E-01 -0.141803121914E-02 3095 -0.120266214811 -0.455228150541E-01 3096 -0.120222313294 -0.454855433663E-01 3097 -0.120231202557 -0.455722329216E-01 3098 0.684365676995 -0.718436524047E-01 3099 -0.139468580474 -0.170390206619E-01 3100 -0.104292897038 -0.360987587206E-01 3101 -0.139516940019 -0.170992133541E-01 3102 -0.139465500260 -0.170718188418E-01 3103 0.990190122984E-01 -0.137842357651E-02 3104 0.989828593044E-01 -0.138461755064E-02 3105 0.990098688324E-01 -0.144292176326E-02 3106 -0.104142156744 -0.360524051350E-01 3107 -0.139435925123 -0.170845860092E-01 3108 -0.139394729538 -0.170375113570E-01 3109 -0.139444085399 -0.170817406872E-01 3110 0.684268723484 -0.719127905039E-01 3111 -0.120266178066 -0.455228187927E-01 3112 -0.120277499728 -0.455041268431E-01 3113 -0.120363649522 -0.455489705953E-01 3114 -0.989655804280E-01 0.139733313804E-02 3115 0.990044282416E-01 -0.143564066172E-02 3116 -0.990046622818E-01 0.137507258283E-02 3117 -0.139444231037 -0.170817469762E-01 3118 -0.139505011540 -0.171008126997E-01 3119 -0.139478364653 -0.170455471296E-01 3120 -0.104285819602 -0.361723994630E-01 3121 -0.120268790436 -0.455153440599E-01 3122 0.684365673545 -0.718436513198E-01 3123 -0.120226308147 -0.454748424820E-01 3124 -0.120269428302 -0.454798010422E-01 3125 0.989794941168E-01 -0.142844275907E-02 3126 -0.989740672606E-01 0.137623173237E-02 3127 -0.989803964563E-01 0.141192665430E-02 3128 -0.139436068484 -0.170845816357E-01 3129 -0.104291224296 -0.361980409017E-01 3130 -0.139492957170 -0.170236973051E-01 3131 -0.139504870917 -0.171008096571E-01 3132 -0.120271960708 -0.455295073214E-01 3133 -0.120222230330 -0.454855461018E-01 3134 0.684397108325 -0.718339047809E-01 3135 -0.120257582885 -0.454875080148E-01 3136 -0.990008637731E-01 0.141966223223E-02 3137 -0.990171074013E-01 0.143669236207E-02 3138 0.989639260009E-01 -0.144452997632E-02 3139 -0.139395240746 -0.170375237227E-01 3140 -0.139493343643 -0.170237084152E-01 3141 -0.104113536792 -0.360170980320E-01 3142 -0.139478644147 -0.170455610136E-01 3143 -0.120326976076 -0.455706513317E-01 3144 -0.120231332961 -0.455722245013E-01 3145 -0.120229762024 -0.455545638270E-01 3146 0.684160145313 -0.719282454817E-01 3147 0.193464711199 -0.415483163168 3148 0.105421801399E-05 0.240301009854E-05 3149 -0.519488052771E-06 0.816874717856E-05 3150 -0.107277211818 0.184057717495E-03 3151 -0.107214615493 0.221201173099E-03 3152 0.107235036907 -0.224748655616E-03 3153 0.107228185541 -0.194303583161E-03 3154 0.107252598833 -0.188672344599E-03 3155 -0.107261583567 0.205340787289E-03 3156 0.107250026175 -0.250728857277E-03 3157 -0.107232177148 0.230926094334E-03 3158 0.105454799810E-05 0.240346646901E-05 3159 0.193461106252 -0.415481145294 3160 -0.850482193690E-05 0.656773930844E-05 3161 -0.107254631803 0.196930426244E-03 3162 0.107244141599 -0.168642360358E-03 3163 0.107254160848 -0.246469971958E-03 3164 -0.107243771748 0.226158821984E-03 3165 0.107220787041 -0.173662554505E-03 3166 0.107255252986 -0.233944957214E-03 3167 -0.107264477628 0.184310485631E-03 3168 -0.107222054465 0.231000042765E-03 3169 -0.519403396860E-06 0.816885254553E-05 3170 -0.850465006069E-05 0.656725070679E-05 3171 0.193466215407 -0.415489730541 3172 -0.107238321009 0.253468740326E-03 3173 0.107245516135 -0.201812044884E-03 3174 -0.107193698891 0.244646269329E-03 3175 0.107259483595 -0.172655431540E-03 3176 0.107217531091 -0.243820812844E-03 3177 -0.107258156802 0.208103551845E-03 3178 -0.107251954661 0.181062302671E-03 3179 0.107224701860 -0.257117745353E-03 3180 -0.107252625823 0.188666395646E-03 3181 -0.107220806480 0.173659284978E-03 3182 -0.107217512171 0.243788758908E-03 3183 0.672186910381 -0.781107127449E-01 3184 -0.131747050888 -0.543941981217E-01 3185 -0.131837726764 -0.544453157837E-01 3186 -0.131747027295 -0.543771208427E-01 3187 -0.823319228557E-01 -0.414867544751E-01 3188 -0.132346452714 -0.259300858509E-01 3189 -0.132337986549 -0.259363670808E-01 3190 -0.132223127968 -0.259001869526E-01 3191 -0.107250058482 0.250739561280E-03 3192 0.107264504951 -0.184293061719E-03 3193 0.107251911309 -0.181045364468E-03 3194 -0.131754069928 -0.543625052353E-01 3195 0.672372693883 -0.780314274485E-01 3196 -0.131708219401 -0.544297593697E-01 3197 -0.131675896756 -0.543329750702E-01 3198 -0.132337835638 -0.259363572725E-01 3199 -0.132423999747 -0.259930418010E-01 3200 -0.825198139090E-01 -0.414947163202E-01 3201 -0.132356537993 -0.260080195100E-01 3202 0.107232204071 -0.230944855088E-03 3203 0.107222041983 -0.231020392398E-03 3204 -0.107224649822 0.257141269034E-03 3205 -0.131874723523 -0.543990529008E-01 3206 -0.131735357097 -0.543360899029E-01 3207 0.672063198580 -0.781280664568E-01 3208 -0.131749260874 -0.543267744302E-01 3209 -0.132222584837 -0.259001696170E-01 3210 -0.132339342977 -0.259779588179E-01 3211 -0.132356126979 -0.260080052436E-01 3212 -0.822062662893E-01 -0.415328799656E-01 3213 0.107261655246 -0.205336198977E-03 3214 -0.107255219813 0.233945384445E-03 3215 0.107258115985 -0.208106425367E-03 3216 -0.131744002755 -0.543845033008E-01 3217 -0.131670225630 -0.543495225578E-01 3218 -0.131710509498 -0.544499343417E-01 3219 0.672333557084 -0.780415343683E-01 3220 -0.132346295972 -0.259300858991E-01 3221 -0.825070829800E-01 -0.415069202835E-01 3222 -0.132423851484 -0.259930366730E-01 3223 -0.132339641124 -0.259779636646E-01 3224 0.107277184981 -0.184063801347E-03 3225 0.107254612594 -0.196935091131E-03 3226 0.107238339632 -0.253501320768E-03 3227 -0.823021634504E-01 -0.414766961426E-01 3228 -0.132313550490 -0.259896126665E-01 3229 -0.132241424158 -0.259331197175E-01 3230 -0.132321293693 -0.259881462967E-01 3231 0.672186138233 -0.781107526822E-01 3232 -0.131743968217 -0.543845082683E-01 3233 -0.131754084491 -0.543625252985E-01 3234 -0.131874665450 -0.543990448596E-01 3235 -0.107228114021 0.194308469284E-03 3236 0.107243804995 -0.226156988486E-03 3237 -0.107259524312 0.172652021129E-03 3238 -0.132321449823 -0.259881518351E-01 3239 -0.132413085324 -0.260056479643E-01 3240 -0.132352411726 -0.259376669907E-01 3241 -0.825023239452E-01 -0.416052714512E-01 3242 -0.131746991842 -0.543771337145E-01 3243 0.672333553719 -0.780415328687E-01 3244 -0.131675811152 -0.543329741960E-01 3245 -0.131749392517 -0.543267619733E-01 3246 0.107214583079 -0.221190340399E-03 3247 -0.107244114067 0.168661521851E-03 3248 -0.107245558854 0.201829157315E-03 3249 -0.132313701567 -0.259896071099E-01 3250 -0.825137854058E-01 -0.416277035421E-01 3251 -0.132370977451 -0.259109535936E-01 3252 -0.132412937217 -0.260056452476E-01 3253 -0.131747065324 -0.543942082745E-01 3254 -0.131670140028 -0.543495257336E-01 3255 0.672372271253 -0.780314459309E-01 3256 -0.131735369989 -0.543360888961E-01 3257 -0.107235009706 0.224729986473E-03 3258 -0.107254173346 0.246447602750E-03 3259 0.107193751695 -0.244623851093E-03 3260 -0.132241966517 -0.259331299200E-01 3261 -0.132371388048 -0.259109634831E-01 3262 -0.822636151147E-01 -0.414172609233E-01 3263 -0.132352709273 -0.259376801195E-01 3264 -0.131837667634 -0.544453136728E-01 3265 -0.131710640695 -0.544499236980E-01 3266 -0.131708232273 -0.544297410837E-01 3267 0.672064349892 -0.781280102317E-01 3268 0.773818578338E-01 -0.926143785910 3269 -0.432328423868E-06 0.486904610719E-05 3270 -0.230357682809E-04 0.281100363698E-04 3271 -0.117933437149 0.291126193008E-02 3272 -0.117788878586 0.308161963998E-02 3273 0.117866812013 -0.305663469359E-02 3274 0.117819116303 -0.293747156062E-02 3275 0.117843797222 -0.289922201680E-02 3276 -0.117943308850 0.295450027292E-02 3277 0.117922442679 -0.310523596433E-02 3278 -0.117850130219 0.306047824336E-02 3279 -0.432378365405E-06 0.487027376218E-05 3280 0.773650885642E-01 -0.926133668876 3281 -0.442022531708E-04 0.295013044720E-04 3282 -0.117933220947 0.290534795532E-02 3283 0.117846800121 -0.284512895368E-02 3284 0.117925078074 -0.311366905771E-02 3285 -0.117850283585 0.306277210201E-02 3286 0.117807950660 -0.288265604286E-02 3287 0.117892726017 -0.307534047498E-02 3288 -0.117921269678 0.286567758408E-02 3289 -0.117803857780 0.309818139488E-02 3290 -0.230356859356E-04 0.281106870416E-04 3291 -0.442032017494E-04 0.295002605452E-04 3292 0.774011980218E-01 -0.926166758776 3293 -0.117915075500 0.311547196621E-02 3294 0.117839536600 -0.295594349304E-02 3295 -0.117801031145 0.310132468725E-02 3296 0.117866024552 -0.293757176923E-02 3297 0.117833065656 -0.310848051587E-02 3298 -0.117859966505 0.296278509558E-02 3299 -0.117868082613 0.294064560294E-02 3300 0.117914469942 -0.312146383673E-02 3301 -0.117843826700 0.289920968764E-02 3302 -0.117807971034 0.288264822513E-02 3303 -0.117833044646 0.310840354907E-02 3304 0.624912035442 -0.145938145482 3305 -0.165018093753 -0.119063854432 3306 -0.165040048872 -0.119155567979 3307 -0.165019798571 -0.119052094290 3308 -0.148260443368 -0.682619784942E-01 3309 -0.204189683746 -0.533097151535E-01 3310 -0.204173023455 -0.533118231465E-01 3311 -0.204094276836 -0.531978993947E-01 3312 -0.117922476719 0.310526332165E-02 3313 0.117921292674 -0.286563455804E-02 3314 0.117868042959 -0.294060577989E-02 3315 -0.165033831816 -0.119041038010 3316 0.625000385494 -0.145757570194 3317 -0.164956156354 -0.119093343820 3318 -0.165001662987 -0.118960809424 3319 -0.204172873672 -0.533118138114E-01 3320 -0.204216133114 -0.534241029805E-01 3321 -0.148349521230 -0.683613006287E-01 3322 -0.204176082419 -0.533659346975E-01 3323 0.117850153372 -0.306052159467E-02 3324 0.117803843680 -0.309822957157E-02 3325 -0.117914419860 0.312151600207E-02 3326 -0.165122961777 -0.119162150037 3327 -0.165025352083 -0.119036382027 3328 0.624783979993 -0.145980839968 3329 -0.165041262514 -0.119033386869 3330 -0.204093738213 -0.531978774879E-01 3331 -0.204167337512 -0.533345079297E-01 3332 -0.204175673859 -0.533659150563E-01 3333 -0.148093181656 -0.682508358265E-01 3334 0.117943374109 -0.295448942238E-02 3335 -0.117892697608 0.307534380500E-02 3336 0.117859929032 -0.296279253189E-02 3337 -0.165012152289 -0.119067840780 3338 -0.164982162187 -0.118977147749 3339 -0.164948907631 -0.119118306665 3340 0.624963963834 -0.145779451728 3341 -0.204189532335 -0.533097159234E-01 3342 -0.148347960698 -0.683787262588E-01 3343 -0.204215984032 -0.534240968476E-01 3344 -0.204167633955 -0.533345169905E-01 3345 0.117933408211 -0.291127457931E-02 3346 0.117933201173 -0.290535725891E-02 3347 0.117915095843 -0.311554928366E-02 3348 -0.148197124322 -0.682257624560E-01 3349 -0.204120384910 -0.533554409332E-01 3350 -0.204126126025 -0.532612501448E-01 3351 -0.204136633238 -0.533429701085E-01 3352 0.624911226087 -0.145938214370 3353 -0.165012115421 -0.119067856548 3354 -0.165033846972 -0.119041075077 3355 -0.165122902090 -0.119162137013 3356 -0.117819051288 0.293748256706E-02 3357 0.117850312717 -0.306276768755E-02 3358 -0.117866061799 0.293756393849E-02 3359 -0.204136783556 -0.533429759726E-01 3360 -0.204189073321 -0.534182547032E-01 3361 -0.204205702600 -0.533116605213E-01 3362 -0.148318341092 -0.684560799409E-01 3363 -0.165019760007 -0.119052118864 3364 0.624963961955 -0.145779448737 3365 -0.165001569557 -0.118960812071 3366 -0.165041403339 -0.119033357757 3367 0.117788844227 -0.308159208242E-02 3368 -0.117846776300 0.284517352040E-02 3369 -0.117839575055 0.295598359474E-02 3370 -0.204120534660 -0.533554347353E-01 3371 -0.148323047772 -0.685003691735E-01 3372 -0.204221819510 -0.532930552745E-01 3373 -0.204188924669 -0.534182509097E-01 3374 -0.165018108227 -0.119063881330 3375 -0.164982068920 -0.118977154313 3376 0.624999945326 -0.145757600349 3377 -0.165025366578 -0.119036369562 3378 -0.117866788334 0.305659142716E-02 3379 -0.117925092053 0.311361861477E-02 3380 0.117801082823 -0.310127355741E-02 3381 -0.204126663006 -0.532612656101E-01 3382 -0.204222226994 -0.532930707132E-01 3383 -0.148220970660 -0.682021788301E-01 3384 -0.204205998029 -0.533116785359E-01 3385 -0.165039987078 -0.119155562041 3386 -0.164949047742 -0.119118279869 3387 -0.164956170423 -0.119093313876 3388 0.624785183034 -0.145980744216 3389 0.493555314745 -0.716853416690 3390 0.242938984156E-05 0.356132629598E-06 3391 -0.221143535843E-04 -0.651756122654E-05 3392 -0.148556032796 0.144081530571E-02 3393 -0.148612948379 0.165219998601E-02 3394 0.148620989977 -0.157212790651E-02 3395 0.148502423579 -0.154828814343E-02 3396 0.148482786825 -0.149743860742E-02 3397 -0.148601268590 0.145398278779E-02 3398 0.148699718975 -0.155262333509E-02 3399 -0.148618376383 0.158519121347E-02 3400 0.242900197643E-05 0.356811248784E-06 3401 0.493541442815 -0.716862101742 3402 -0.344682143354E-04 -0.219475765070E-04 3403 -0.148539838086 0.142094378238E-02 3404 0.148438400297 -0.146047561225E-02 3405 0.148717906265 -0.156053007295E-02 3406 -0.148629638157 0.159270344325E-02 3407 0.148445493168 -0.151016732627E-02 3408 0.148658299676 -0.156993512169E-02 3409 -0.148498185860 0.142248196038E-02 3410 -0.148636656421 0.165696467733E-02 3411 -0.221143204706E-04 -0.651783394474E-05 3412 -0.344677665195E-04 -0.219480639393E-04 3413 0.493575920585 -0.716849730342 3414 -0.148686955985 0.157813326303E-02 3415 0.148542569849 -0.152198133013E-02 3416 -0.148597305113 0.165364194109E-02 3417 0.148562060027 -0.149334565923E-02 3418 0.148630597285 -0.164663836501E-02 3419 -0.148560889601 0.151807235171E-02 3420 -0.148555963374 0.148711370532E-02 3421 0.148682331283 -0.157397443920E-02 3422 -0.148482811205 0.149742295563E-02 3423 -0.148445510282 0.151015813967E-02 3424 -0.148630541621 0.164658062630E-02 3425 0.643577525826 -0.204344731504 3426 -0.125762966327 -0.172147414636 3427 -0.125810502439 -0.172215680344 3428 -0.125766228516 -0.172131665052 3429 -0.100875428833 -0.139331032440 3430 -0.163906211324 -0.125272149693 3431 -0.163896524143 -0.125269638955 3432 -0.163814630829 -0.125196584284 3433 -0.148699766055 0.155263899171E-02 3434 0.148498192109 -0.142245249105E-02 3435 0.148555902220 -0.148708048285E-02 3436 -0.125772375547 -0.172117633321 3437 0.643693933864 -0.204223393654 3438 -0.125708250512 -0.172174427484 3439 -0.125732874196 -0.172067756513 3440 -0.163896364058 -0.125269636329 3441 -0.163944444767 -0.125363937292 3442 -0.100998210955 -0.139379661752 3443 -0.163901415478 -0.125345340837 3444 0.148618421994 -0.158523124604E-02 3445 0.148636664309 -0.165700563440E-02 3446 -0.148682300238 0.157401635368E-02 3447 -0.125859434600 -0.172209754060 3448 -0.125756086847 -0.172109095885 3449 0.643447500493 -0.204400985217 3450 -0.125773595176 -0.172103830402 3451 -0.163814052708 -0.125196586204 3452 -0.163889352040 -0.125313040138 3453 -0.163900977019 -0.125345337855 3454 -0.100726476289 -0.139337223044 3455 0.148601334788 -0.145398097294E-02 3456 -0.148658270270 0.156993354466E-02 3457 0.148560852261 -0.151807565751E-02 3458 -0.125748998093 -0.172143636437 3459 -0.125707576108 -0.172082479472 3460 -0.125700527273 -0.172199973224 3461 0.643650633437 -0.204246064603 3462 -0.163906042803 -0.125272162134 3463 -0.100983951713 -0.139400500805 3464 -0.163944287115 -0.125363935643 3465 -0.163889671102 -0.125313036858 3466 0.148556008800 -0.144083092032E-02 3467 0.148539821274 -0.142095402019E-02 3468 0.148687011065 -0.157819176361E-02 3469 -0.100821817025 -0.139302001146 3470 -0.163843167676 -0.125320550081 3471 -0.163822619902 -0.125255180581 3472 -0.163867135593 -0.125316987866 3473 0.643576690987 -0.204344812205 3474 -0.125748959604 -0.172143657058 3475 -0.125772393468 -0.172117678115 3476 -0.125859369472 -0.172209740600 3477 -0.148502357549 0.154829014306E-02 3478 0.148629667912 -0.159270329938E-02 3479 -0.148562097188 0.149334186685E-02 3480 -0.163867302083 -0.125316981901 3481 -0.163929777160 -0.125366685498 3482 -0.163921423947 -0.125292285879 3483 -0.100967596165 -0.139487532614 3484 -0.125766187454 -0.172131694395 3485 0.643650630093 -0.204246059295 3486 -0.125732775237 -0.172067758861 3487 -0.125773745968 -0.172103793829 3488 0.148612900887 -0.165218430463E-02 3489 -0.148438393559 0.146050715799E-02 3490 -0.148542629988 0.152201516668E-02 3491 -0.163843327133 -0.125320536071 3492 -0.100962104137 -0.139523815420 3493 -0.163933862109 -0.125265124650 3494 -0.163929620258 -0.125366686536 3495 -0.125762983163 -0.172147448465 3496 -0.125707477628 -0.172082486106 3497 0.643693477422 -0.204223426191 3498 -0.125756103428 -0.172109078687 3499 -0.148620943952 0.157208822771E-02 3500 -0.148717898362 0.156048716003E-02 3501 0.148597337445 -0.165360036036E-02 3502 -0.163823194904 -0.125255171271 3503 -0.163934298628 -0.125265122789 3504 -0.100815073626 -0.139273713591 3505 -0.163921741417 -0.125292291707 3506 -0.125810433792 -0.172215673493 3507 -0.125700676704 -0.172199938861 3508 -0.125708265755 -0.172174391585 3509 0.643448744239 -0.204400876693 3510 0.752397058709E-01 -0.534664160349 3511 0.935009063661E-05 0.378047741003E-05 3512 -0.200518954847E-04 -0.135032731625E-05 3513 -0.184551037853 -0.166979629532E-01 3514 -0.184630606842 -0.165547274794E-01 3515 0.184615033098 0.166096649165E-01 3516 0.184525814545 0.166111816446E-01 3517 0.184488259660 0.166454891349E-01 3518 -0.184590627510 -0.167078744766E-01 3519 0.184665506801 0.166500576627E-01 3520 -0.184613516550 -0.166023528874E-01 3521 0.935019287975E-05 0.378128929697E-05 3522 0.752235082055E-01 -0.534670198746 3523 -0.372251528442E-04 -0.132961923306E-04 3524 -0.184521583971 -0.167210994706E-01 3525 0.184448257528 0.166648612105E-01 3526 0.184693273942 0.166471198871E-01 3527 -0.184627596290 -0.166009965041E-01 3528 0.184465383386 0.166305074956E-01 3529 0.184646126931 0.166188485394E-01 3530 -0.184495653965 -0.166992580944E-01 3531 -0.184656851340 -0.165544924972E-01 3532 -0.200516931293E-04 -0.135050254261E-05 3533 -0.372255247654E-04 -0.132962949684E-04 3534 0.752604541060E-01 -0.534663823777 3535 -0.184676036805 -0.166135269996E-01 3536 0.184534047761 0.166492304441E-01 3537 -0.184611971510 -0.165389481615E-01 3538 0.184554415589 0.166750865384E-01 3539 0.184647406434 0.165438409971E-01 3540 -0.184548465906 -0.166509083481E-01 3541 -0.184542409703 -0.166807210613E-01 3542 0.184664326665 0.166152374580E-01 3543 -0.184488282993 -0.166455029716E-01 3544 -0.184465397764 -0.166305159376E-01 3545 -0.184647379643 -0.165438824561E-01 3546 0.668619632965 -0.250203414093 3547 -0.784724986010E-01 -0.196763718384 3548 -0.784552388623E-01 -0.196864542378 3549 -0.784761077335E-01 -0.196754100075 3550 -0.872532386686E-01 -0.133590284536 3551 -0.166616787938 -0.117759304422 3552 -0.166600597152 -0.117754530095 3553 -0.166544579867 -0.117612028329 3554 -0.184665537860 -0.166500481372E-01 3555 0.184495676681 0.166992759818E-01 3556 0.184542363600 0.166807479865E-01 3557 -0.784945891543E-01 -0.196736593200 3558 0.668654140205 -0.249989933595 3559 -0.783953022232E-01 -0.196783007853 3560 -0.784878517145E-01 -0.196648843034 3561 -0.166600433864 -0.117754524928 3562 -0.166604517429 -0.117896810079 3563 -0.872806015476E-01 -0.133712524100 3564 -0.166582649310 -0.117813502039 3565 0.184613551959 0.166023205203E-01 3566 0.184656846282 0.165544603152E-01 3567 -0.184664280701 -0.166152055610E-01 3568 -0.785447453300E-01 -0.196903855025 3569 -0.784750700776E-01 -0.196748547112 3570 0.668496859184 -0.250286716385 3571 -0.784937160191E-01 -0.196752133918 3572 -0.166543992222 -0.117612013834 3573 -0.166578884183 -0.117773645633 3574 -0.166582203842 -0.117813484813 3575 -0.870544647073E-01 -0.133536273473 3576 0.184590698544 0.167078714832E-01 3577 -0.184646096318 -0.166188543167E-01 3578 0.184548426004 0.166509079274E-01 3579 -0.784540370678E-01 -0.196764162045 3580 -0.784502956151E-01 -0.196650828087 3581 -0.783717397438E-01 -0.196811507515 3582 0.668613710558 -0.250030407777 3583 -0.166616614098 -0.117759309477 3584 -0.872715723903E-01 -0.133735738955 3585 -0.166604357445 -0.117896805447 3586 -0.166579209138 -0.117773653333 3587 0.184551014679 0.166979489160E-01 3588 0.184521570055 0.167210898815E-01 3589 0.184676063111 0.166134849883E-01 3590 -0.871553087422E-01 -0.133518864040 3591 -0.166511666576 -0.117787305246 3592 -0.166560061603 -0.117690534443 3593 -0.166540891010 -0.117781400173 3594 0.668618787454 -0.250203517223 3595 -0.784539882598E-01 -0.196764193462 3596 -0.784945979569E-01 -0.196736656232 3597 -0.785446780179E-01 -0.196903835040 3598 -0.184525743647 -0.166111843834E-01 3599 0.184627627105 0.166009918910E-01 3600 -0.184554455570 -0.166750872904E-01 3601 -0.166541062668 -0.117781401759 3602 -0.166566887267 -0.117881637073 3603 -0.166623033933 -0.117779034231 3604 -0.872334870321E-01 -0.133809807905 3605 -0.784760558736E-01 -0.196754140093 3606 0.668613706571 -0.250030402404 3607 -0.784877415348E-01 -0.196648848045 3608 -0.784938900777E-01 -0.196752084309 3609 0.184630575711 0.165547371524E-01 3610 -0.184448234372 -0.166648414368E-01 3611 -0.184534092919 -0.166492032064E-01 3612 -0.166511829420 -0.117787292954 3613 -0.872214408921E-01 -0.133857699531 3614 -0.166638194742 -0.117746724670 3615 -0.166566728165 -0.117881635455 3616 -0.784725061522E-01 -0.196763769520 3617 -0.784501858831E-01 -0.196650837498 3618 0.668653675922 -0.249989976482 3619 -0.784750965673E-01 -0.196748520084 3620 -0.184614997386 -0.166096969647E-01 3621 -0.184693278989 -0.166471539500E-01 3622 0.184612018454 0.165389790990E-01 3623 -0.166560645791 -0.117690540771 3624 -0.166638638064 -0.117746736341 3625 -0.872012682939E-01 -0.133530850104 3626 -0.166623357041 -0.117779051106 3627 -0.784551676287E-01 -0.196864528594 3628 -0.783719122566E-01 -0.196811460057 3629 -0.783953274286E-01 -0.196782961152 3630 0.668498120109 -0.250286575960 3631 -0.229115374877 -0.939228396387 3632 0.122138760518E-04 0.156801424739E-04 3633 -0.207267975528E-04 -0.176282924843E-04 3634 -0.221077264074 -0.678985547214E-01 3635 -0.221237363878 -0.678205273613E-01 3636 0.221191310463 0.678674412887E-01 3637 0.221127843797 0.677877640601E-01 3638 0.221070426814 0.678160157261E-01 3639 -0.221120482079 -0.679259667881E-01 3640 0.221209264142 0.679308471901E-01 3641 -0.221199338243 -0.678615272448E-01 3642 0.122147435297E-04 0.156810455220E-04 3643 -0.229131590454 -0.939250906341 3644 -0.353830978982E-04 -0.497316041642E-04 3645 -0.221045927255 -0.678995388326E-01 3646 0.221019725908 0.677974112394E-01 3647 0.221242412117 0.679489722008E-01 3648 -0.221209478945 -0.678623717879E-01 3649 0.221051940708 0.677766161903E-01 3650 0.221206327224 0.678939449332E-01 3651 -0.221039221184 -0.678562912541E-01 3652 -0.221271995292 -0.678386278129E-01 3653 -0.207275226729E-04 -0.176261207984E-04 3654 -0.353827656900E-04 -0.497353863440E-04 3655 -0.229090242440 -0.939211303458 3656 -0.221241071828 -0.679084068913E-01 3657 0.221105259218 0.678552146394E-01 3658 -0.221230102658 -0.677918522935E-01 3659 0.221106363039 0.678777943715E-01 3660 0.221255048341 0.678218362972E-01 3661 -0.221127858294 -0.678585171944E-01 3662 -0.221090875416 -0.678750394242E-01 3663 0.221220692533 0.678926132791E-01 3664 -0.221070458672 -0.678160074367E-01 3665 -0.221051986597 -0.677766009837E-01 3666 -0.221255062076 -0.678219115356E-01 3667 0.676311511460 -0.208139769807 3668 -0.361714670804E-01 -0.122277651263 3669 -0.361566091362E-01 -0.122314353669 3670 -0.361696631373E-01 -0.122255106181 3671 -0.577073546914E-01 -0.109906540494 3672 -0.145470352504 -0.981045041991E-01 3673 -0.145455615837 -0.980889068278E-01 3674 -0.145439089379 -0.979854852857E-01 3675 -0.221209294389 -0.679307997642E-01 3676 0.221039260748 0.678563352643E-01 3677 0.221090855292 0.678750754571E-01 3678 -0.361987691969E-01 -0.122248285943 3679 0.676313641006 -0.208003456186 3680 -0.361033776932E-01 -0.122257749820 3681 -0.361904677263E-01 -0.122188231058 3682 -0.145455442986 -0.980889043409E-01 3683 -0.145428769801 -0.981965826822E-01 3684 -0.577344505961E-01 -0.109932982590 3685 -0.145433333000 -0.981563386879E-01 3686 0.221199318377 0.678615090314E-01 3687 0.221271949487 0.678386016879E-01 3688 -0.221220621197 -0.678925795438E-01 3689 -0.361973159804E-01 -0.122369960069 3690 -0.361574156817E-01 -0.122232629997 3691 0.676208867977 -0.208239132551 3692 -0.361699473805E-01 -0.122232689101 3693 -0.145438466419 -0.979854822350E-01 3694 -0.145448953390 -0.981131264045E-01 3695 -0.145432861409 -0.981563298259E-01 3696 -0.575638763471E-01 -0.109795883314 3697 0.221120546625 0.679259818610E-01 3698 -0.221206289039 -0.678939416961E-01 3699 0.221127833522 0.678585084817E-01 3700 -0.361554824987E-01 -0.122252683124 3701 -0.361769389717E-01 -0.122176816710 3702 -0.360754766501E-01 -0.122267837285 3703 0.676280338775 -0.208050846420 3704 -0.145470166356 -0.981045066953E-01 3705 -0.577156671956E-01 -0.109949226493 3706 -0.145428601379 -0.981965824975E-01 3707 -0.145449297555 -0.981131293293E-01 3708 0.221077232532 0.678985620689E-01 3709 0.221045882179 0.678995533981E-01 3710 0.221241057802 0.679083314206E-01 3711 -0.576799232563E-01 -0.109794776207 3712 -0.145389063772 -0.980992774238E-01 3713 -0.145424186738 -0.980564206776E-01 3714 -0.145412227332 -0.981062032142E-01 3715 0.676310645301 -0.208139849732 3716 -0.361554293653E-01 -0.122252706653 3717 -0.361987815422E-01 -0.122248341748 3718 -0.361972392471E-01 -0.122369938398 3719 -0.221127779677 -0.677877486258E-01 3720 0.221209518060 0.678623753938E-01 3721 -0.221106387739 -0.678778046482E-01 3722 -0.145412411578 -0.981062075957E-01 3723 -0.145421711305 -0.981662752484E-01 3724 -0.145458621653 -0.981284428150E-01 3725 -0.576822587765E-01 -0.110022280750 3726 -0.361696076249E-01 -0.122255138142 3727 0.676280334286 -0.208050841839 3728 -0.361903466529E-01 -0.122188228897 3729 -0.361701372829E-01 -0.122232656123 3730 0.221237333445 0.678205753556E-01 3731 -0.221019685059 -0.677973664046E-01 3732 -0.221105277560 -0.678551777590E-01 3733 -0.145389236467 -0.980992615615E-01 3734 -0.576590105046E-01 -0.110062139839 3735 -0.145497963270 -0.980893308904E-01 3736 -0.145421543145 -0.981662785600E-01 3737 -0.361714792239E-01 -0.122277694394 3738 -0.361768180346E-01 -0.122176819039 3739 0.676313163456 -0.208003489235 3740 -0.361574450723E-01 -0.122232612009 3741 -0.221191329946 -0.678674600569E-01 3742 -0.221242458413 -0.679489998910E-01 3743 0.221230175710 0.677918852977E-01 3744 -0.145424806721 -0.980564147419E-01 3745 -0.145498433563 -0.980893334834E-01 3746 -0.576589514017E-01 -0.109811148359 3747 -0.145458964336 -0.981284551507E-01 3748 -0.361565293181E-01 -0.122314337668 3749 -0.360756650417E-01 -0.122267806547 3750 -0.361034061511E-01 -0.122257710821 3751 0.676210161372 -0.208239023767 3752 0.655328442622E-01 -1.31124980113 3753 0.543904663969E-05 0.186578964641E-04 3754 -0.450250319623E-05 -0.137630601465E-04 3755 -0.227200090245 -0.122449492147 3756 -0.227310670503 -0.122491550102 3757 0.227255763882 0.122489492792 3758 0.227317075696 0.122418396399 3759 0.227233557435 0.122424934959 3760 -0.227244325914 -0.122497389830 3761 0.227241378354 0.122535306156 3762 -0.227262469283 -0.122513875728 3763 0.543821043168E-05 0.186598634482E-04 3764 0.655338049481E-01 -1.31126948817 3765 0.492399012584E-05 -0.387865537473E-04 3766 -0.227203950987 -0.122451234647 3767 0.227240057393 0.122374823113 3768 0.227247284872 0.122565612690 3769 -0.227275981946 -0.122506267073 3770 0.227255623623 0.122376012551 3771 0.227245231215 0.122509601228 3772 -0.227237616316 -0.122414254487 3773 -0.227329647595 -0.122528139080 3774 -0.450231610902E-05 -0.137636854830E-04 3775 0.492464879634E-05 -0.387878424196E-04 3776 0.655430283742E-01 -1.31123015164 3777 -0.227271138971 -0.122543664529 3778 0.227229059841 0.122464873105 3779 -0.227322263106 -0.122477396373 3780 0.227221714539 0.122451105470 3781 0.227317924738 0.122494521941 3782 -0.227245123065 -0.122481327800 3783 -0.227221214377 -0.122443489620 3784 0.227267518643 0.122517696966 3785 -0.227233582698 -0.122424947217 3786 -0.227255643667 -0.122376022575 3787 -0.227317888128 -0.122494627014 3788 0.639832154627 -0.312212387562 3789 -0.660760776137E-01 -0.181317155763 3790 -0.660899995754E-01 -0.181329214772 3791 -0.660907463267E-01 -0.181296713033 3792 -0.485212352165E-01 -0.197933931777 3793 -0.187067019402 -0.193215132594 3794 -0.187067432973 -0.193182948552 3795 -0.187062335012 -0.193124984705 3796 -0.227241416951 -0.122535264824 3797 0.227237632242 0.122414300312 3798 0.227221166360 0.122443557570 3799 -0.660993430283E-01 -0.181300880016 3800 0.639819525663 -0.312140023776 3801 -0.660501164286E-01 -0.181301383634 3802 -0.661112585137E-01 -0.181253175586 3803 -0.187067258544 -0.193182957155 3804 -0.187025449681 -0.193260478093 3805 -0.485573549277E-01 -0.197921772430 3806 -0.187033396398 -0.193241623105 3807 0.227262501572 0.122513805439 3808 0.227329643251 0.122528074790 3809 -0.227267477706 -0.122517640335 3810 -0.660869376960E-01 -0.181378935677 3811 -0.660825132599E-01 -0.181276025421 3812 0.639759849192 -0.312310807393 3813 -0.660984660595E-01 -0.181281390667 3814 -0.187061703004 -0.193125013595 3815 -0.187053983653 -0.193223289397 3816 -0.187032917065 -0.193241635011 3817 -0.484502650776E-01 -0.197842987591 3818 0.227244391308 0.122497379807 3819 -0.227245201296 -0.122509609042 3820 0.227245087778 0.122481333118 3821 -0.660698898118E-01 -0.181297588234 3822 -0.661031031946E-01 -0.181264007962 3823 -0.660300509456E-01 -0.181298613188 3824 0.639802894834 -0.312190749171 3825 -0.187066829755 -0.193215148289 3826 -0.485368418861E-01 -0.197937730162 3827 -0.187025278393 -0.193260485432 3828 -0.187054334553 -0.193223278608 3829 0.227200065983 0.122449479453 3830 0.227203931024 0.122451224351 3831 0.227271174362 0.122543558426 3832 -0.485220536612E-01 -0.197850299525 3833 -0.187006011786 -0.193202539274 3834 -0.187030418944 -0.193184126529 3835 -0.187026615472 -0.193198755811 3836 0.639831246314 -0.312212478080 3837 -0.660698356653E-01 -0.181297620853 3838 -0.660993558013E-01 -0.181300957785 3839 -0.660868602593E-01 -0.181378904337 3840 -0.227317010709 -0.122418406812 3841 0.227276013452 0.122506259829 3842 -0.227221749857 -0.122451100869 3843 -0.187026801461 -0.193198747686 3844 -0.187034969786 -0.193238536699 3845 -0.187045112280 -0.193221977954 3846 -0.485135462179E-01 -0.198011647876 3847 -0.660906883270E-01 -0.181296754646 3848 0.639802890932 -0.312190741052 3849 -0.661111322078E-01 -0.181253166528 3850 -0.660986622314E-01 -0.181281350732 3851 0.227310631476 0.122491591990 3852 -0.227240040341 -0.122374775331 3853 -0.227229106621 -0.122464804289 3854 -0.187006185529 -0.193202511814 3855 -0.484777839572E-01 -0.198026334790 3856 -0.187087063349 -0.193203155327 3857 -0.187034799367 -0.193238547550 3858 -0.660760895857E-01 -0.181317220911 3859 -0.661029780011E-01 -0.181264003508 3860 0.639819027412 -0.312140056161 3861 -0.660825438039E-01 -0.181275997959 3862 -0.227255731208 -0.122489562461 3863 -0.227247289996 -0.122565678979 3864 0.227322305832 0.122477452603 3865 -0.187031045922 -0.193184088754 3866 -0.187087540450 -0.193203137419 3867 -0.484997809544E-01 -0.197870840527 3868 -0.187045461012 -0.193221976903 3869 -0.660899174591E-01 -0.181329190238 3870 -0.660302447714E-01 -0.181298575171 3871 -0.660501450299E-01 -0.181301334782 3872 0.639761203077 -0.312310690869 3873 -0.346229316932 -1.66230349265 3874 0.146109564846E-04 0.404934461690E-04 3875 -0.207751337722E-04 -0.216838624633E-04 3876 -0.305660491821 -0.215355837596 3877 -0.305713571895 -0.215364424179 3878 0.305672209859 0.215373065767 3879 0.305768749603 0.215424615477 3880 0.305639045071 0.215389270525 3881 -0.305714239467 -0.215469399509 3882 0.305662574089 0.215420294779 3883 -0.305650121450 -0.215401016981 3884 0.146103709355E-04 0.404961964941E-04 3885 -0.346240112807 -1.66233684395 3886 -0.243362383839E-04 -0.602306123668E-04 3887 -0.305663736410 -0.215452925045 3888 0.305690052358 0.215389460684 3889 0.305669495075 0.215412686172 3890 -0.305683309375 -0.215394472555 3891 0.305699347235 0.215356611932 3892 0.305650918895 0.215353634272 3893 -0.305703892937 -0.215441973803 3894 -0.305728410393 -0.215415327765 3895 -0.207750005581E-04 -0.216826565772E-04 3896 -0.243345705775E-04 -0.602332122644E-04 3897 -0.346206830248 -1.66226686187 3898 -0.305686074044 -0.215443671845 3899 0.305622850287 0.215395493881 3900 -0.305717784702 -0.215393960698 3901 0.305681605406 0.215344323532 3902 0.305720050622 0.215375769647 3903 -0.305635294149 -0.215422241741 3904 -0.305686462292 -0.215372414095 3905 0.305691839872 0.215400989889 3906 -0.305639071800 -0.215389277063 3907 -0.305699367419 -0.215356616432 3908 -0.305720042382 -0.215375899728 3909 0.669799454350 -0.464169693149 3910 0.672485629070E-02 -0.274235470425 3911 0.671601004972E-02 -0.274250657783 3912 0.671360949088E-02 -0.274232079850 3913 0.771473843499E-01 -0.250609596087 3914 -0.137638567920 -0.329923628903 3915 -0.137666868335 -0.329879980341 3916 -0.137648424311 -0.329851359468 3917 -0.305662599848 -0.215420236802 3918 0.305703918326 0.215442026180 3919 0.305686434550 0.215372501162 3920 0.672112032992E-02 -0.274206449410 3921 0.669784994458 -0.464138251620 3922 0.675220414457E-02 -0.274244210937 3923 0.668638594815E-02 -0.274187602625 3924 -0.137666682549 -0.329880007391 3925 -0.137598713258 -0.329941799584 3926 0.771480484349E-01 -0.250574077766 3927 -0.137614950140 -0.329917448549 3928 0.305650131337 0.215400934000 3929 0.305728391160 0.215415256769 3930 -0.305691788680 -0.215400934193 3931 0.673895215653E-02 -0.274287184438 3932 0.672237780261E-02 -0.274230783608 3933 0.669756982092 -0.464256463606 3934 0.671824761057E-02 -0.274248048507 3935 -0.137647743980 -0.329851438434 3936 -0.137620726882 -0.329913901368 3937 -0.137614433198 -0.329917492533 3938 0.772225305259E-01 -0.250553368367 3939 0.305714295357 0.215469377835 3940 -0.305650893320 -0.215353648737 3941 0.305635263995 0.215422254369 3942 0.674492696076E-02 -0.274214965207 3943 0.672042438155E-02 -0.274216317715 3944 0.675953525388E-02 -0.274242241747 3945 0.669778563641 -0.464180078365 3946 -0.137638351044 -0.329923658585 3947 0.771667735868E-01 -0.250594004465 3948 -0.137598534284 -0.329941820557 3949 -0.137621107931 -0.329913871157 3950 0.305660465614 0.215355830461 3951 0.305663715535 0.215452922275 3952 0.305686080925 0.215443542341 3953 0.771721357829E-01 -0.250518465554 3954 -0.137576776055 -0.329906286429 3955 -0.137607542886 -0.329879772663 3956 -0.137619837270 -0.329879853878 3957 0.669798544692 -0.464169803247 3958 0.674498675220E-02 -0.274215018313 3959 0.672110452901E-02 -0.274206567425 3960 0.673903975254E-02 -0.274287137412 3961 -0.305768693575 -0.215424638225 3962 0.305683337071 0.215394458265 3963 -0.305681635060 -0.215344313812 3964 -0.137620048665 -0.329879831337 3965 -0.137616939307 -0.329928279745 3966 -0.137618032996 -0.329907669130 3967 0.771959523419E-01 -0.250665101458 3968 0.671367456776E-02 -0.274232140722 3969 0.669778557588 -0.464180065268 3970 0.668652540749E-02 -0.274187588027 3971 0.671802852940E-02 -0.274247989499 3972 0.305713545210 0.215364484599 3973 -0.305690024498 -0.215389407976 3974 -0.305622875776 -0.215395406368 3975 -0.137576959685 -0.329906238986 3976 0.772066527846E-01 -0.250662196264 3977 -0.137640337652 -0.329895940466 3978 -0.137616761783 -0.329928304936 3979 0.672484232274E-02 -0.274235575184 3980 0.672056179636E-02 -0.274216307445 3981 0.669784490522 -0.464138285181 3982 0.672233984265E-02 -0.274230737311 3983 -0.305672199283 -0.215373149629 3984 -0.305669515252 -0.215412759815 3985 0.305717837387 0.215394016606 3986 -0.137608215428 -0.329879682718 3987 -0.137640850652 -0.329895889562 3988 0.772050935137E-01 -0.250583278503 3989 -0.137618410878 -0.329907648165 3990 0.671610501452E-02 -0.274250615884 3991 0.675931954445E-02 -0.274242184031 3992 0.675216997766E-02 -0.274244141612 3993 0.669758343281 -0.464256328804 3994 0.608042401159 -4.03176787828 3995 -0.113834210710E-03 0.602184777068E-04 3996 0.529861288294E-04 -0.304307186649E-04 3997 -0.979652533809E-01 -0.660692172618 3998 -0.979532403964E-01 -0.660737262976 3999 0.978960133494E-01 0.660696264942 4000 0.978358898227E-01 0.660912719492 4001 0.977703179432E-01 0.660669242197 4002 -0.977940780875E-01 -0.660922945565 4003 0.977464533309E-01 0.660718831820 4004 -0.978650312019E-01 -0.660690648585 4005 -0.113844342738E-03 0.602216382965E-04 4006 0.608143759226 -4.03180492519 4007 0.178237513512E-03 -0.701953015670E-04 4008 -0.976918321481E-01 -0.660823585390 4009 0.978150372042E-01 0.660751689754 4010 0.978908483686E-01 0.660740610754 4011 -0.978220414582E-01 -0.660720407943 4012 0.979170849959E-01 0.660735715094 4013 0.979079333228E-01 0.660611504999 4014 -0.977296179343E-01 -0.660847209637 4015 -0.978955853473E-01 -0.660833450159 4016 0.529826668231E-04 -0.304323162790E-04 4017 0.178246713772E-03 -0.701955980964E-04 4018 0.607942232074 -4.03172517201 4019 -0.977485287923E-01 -0.660757262318 4020 0.977876647231E-01 0.660669411508 4021 -0.979028146081E-01 -0.660795653159 4022 0.980159018161E-01 0.660729137178 4023 0.979343567586E-01 0.660710191733 4024 -0.977562891866E-01 -0.660719912018 4025 -0.978834019246E-01 -0.660769822798 4026 0.979313408749E-01 0.660760016937 4027 -0.977703719473E-01 -0.660669271654 4028 -0.979171162450E-01 -0.660735734675 4029 -0.979342657123E-01 -0.660710479678 4030 1.03117038569 -0.734090675619 4031 0.178468120658 -0.206880090574 4032 0.178419831151 -0.206913080542 4033 0.178445169363 -0.206868285388 4034 0.204674025871 -0.411174822983E-01 4035 0.128361883446 -0.429092556242 4036 0.128236464354 -0.429095742967 4037 0.128334154274 -0.429033108452 4038 -0.977465352836E-01 -0.660718710731 4039 0.977296153060E-01 0.660847298297 4040 0.978833272935E-01 0.660770052109 4041 0.178386470368 -0.206822167955 4042 1.03121915741 -0.734093206217 4043 0.178468853315 -0.206898831703 4044 0.178352870345 -0.206837403896 4045 0.128236692624 -0.429095788983 4046 0.128349196839 -0.429086995549 4047 0.204548751805 -0.410199584918E-01 4048 0.128309811228 -0.429057970599 4049 0.978650767114E-01 0.660690412285 4050 0.978955893292E-01 0.660833275133 4051 -0.979312919531E-01 -0.660759903259 4052 0.178456097233 -0.206885998731 4053 0.178476982516 -0.206887052620 4054 1.03113912060 -0.734185178012 4055 0.178482368297 -0.206879339191 4056 0.128334959033 -0.429033181457 4057 0.128326296607 -0.429064813545 4058 0.128310409566 -0.429057993322 4059 0.204732028302 -0.410454038329E-01 4060 0.977941498849E-01 0.660922835605 4061 -0.979079037930E-01 -0.660611564796 4062 0.977562478170E-01 0.660719970622 4063 0.178454246610 -0.206834684425 4064 0.178493671846 -0.206834667460 4065 0.178485582022 -0.206919644159 4066 1.03121890974 -0.734152585112 4067 0.128362135054 -0.429092543625 4068 0.204616094486 -0.410476513412E-01 4069 0.128349410160 -0.429087032936 4070 0.128325865319 -0.429064814014 4071 0.979652060985E-01 0.660692141368 4072 0.976917932847E-01 0.660823563508 4073 0.977486185573E-01 0.660756971347 4074 0.204634286373 -0.410093155006E-01 4075 0.128430062378 -0.429042868111 4076 0.128323092701 -0.429034951087 4077 0.128279973166 -0.429067423037 4078 1.03116950201 -0.734090728331 4079 0.178454354431 -0.206834758936 4080 0.178386548508 -0.206822369208 4081 0.178456144349 -0.206885893651 4082 -0.978358160136E-01 -0.660912829708 4083 0.978220831577E-01 0.660720347768 4084 -0.980159398500E-01 -0.660729077497 4085 0.128279730622 -0.429067438690 4086 0.128336992530 -0.429114082296 4087 0.128324198670 -0.429047227787 4088 0.204659393375 -0.410915348199E-01 4089 0.178445280409 -0.206868364517 4090 1.03121889278 -0.734152567670 4091 0.178353001414 -0.206837340791 4092 0.178482101268 -0.206879305899 4093 0.979531528329E-01 0.660737382242 4094 -0.978150357562E-01 -0.660751596272 4095 -0.977877392806E-01 -0.660669181037 4096 0.128429834801 -0.429042799591 4097 0.204671029856 -0.411259454932E-01 4098 0.128307201016 -0.429037407345 4099 0.128337206649 -0.429114124236 4100 0.178468202518 -0.206880275844 4101 0.178493798837 -0.206834611665 4102 1.03121865043 -0.734093201959 4103 0.178476898547 -0.206886991588 4104 -0.978959687079E-01 -0.660696496572 4105 -0.978908474636E-01 -0.660740788858 4106 0.979028661416E-01 0.660795766565 4107 0.128322296259 -0.429034860425 4108 0.128306606339 -0.429037373747 4109 0.204732800522 -0.410433131065E-01 4110 0.128323770805 -0.429047237014 4111 0.178419886138 -0.206912975755 4112 0.178485317807 -0.206919608958 4113 0.178468772819 -0.206898744111 4114 1.03114046336 -0.734185137615 4115 3.29192268690 -1.92228601512 4116 -0.130211994079E-04 -0.399041571302E-04 4117 0.748128053873E-05 0.667557708603E-05 4118 0.325729384635 -0.271497947973 4119 0.325716733645 -0.271492432446 4120 -0.325721666720 0.271450046347 4121 -0.325841827503 0.271475530170 4122 -0.325744118393 0.271364832011 4123 0.325896159500 -0.271459166614 4124 -0.325748004701 0.271365405992 4125 0.325753129407 -0.271431630922 4126 -0.130203164676E-04 -0.399085900476E-04 4127 3.29192293705 -1.92224347657 4128 0.483063001952E-05 0.739793867339E-04 4129 0.325845756371 -0.271345770113 4130 -0.325769399358 0.271419040403 4131 -0.325776817372 0.271486769478 4132 0.325727050747 -0.271403512535 4133 -0.325742914954 0.271477149153 4134 -0.325662938547 0.271449353070 4135 0.325824163619 -0.271375871418 4136 0.325797638379 -0.271486706339 4137 0.748284680761E-05 0.667207696534E-05 4138 0.482931535486E-05 0.739836334829E-04 4139 3.29192102515 -1.92231352075 4140 0.325768250413 -0.271377620982 4141 -0.325751083097 0.271379490968 4142 0.325786547501 -0.271458785618 4143 -0.325745894816 0.271536613542 4144 -0.325698647407 0.271486060355 4145 0.325787899655 -0.271365291840 4146 0.325764675617 -0.271453932485 4147 -0.325784545049 0.271482921384 4148 0.325744110940 -0.271364855926 4149 0.325742905522 -0.271477161275 4150 0.325698924715 -0.271486194352 4151 1.27828356014 -0.296572976128 4152 0.152221271601 -0.914349481339E-01 4153 0.152199025236 -0.914708437900E-01 4154 0.152201713289 -0.914416905615E-01 4155 0.655589501649E-01 -0.454579740533E-01 4156 0.240097142399 -0.168071728824 4157 0.240058100709 -0.168149199972 4158 0.240089032437 -0.168062384554 4159 0.325747859842 -0.271365351001 4160 -0.325824218640 0.271375915804 4161 -0.325764920846 0.271454044056 4162 0.152175043859 -0.914675479676E-01 4163 1.27834692537 -0.296548317366 4164 0.152253125703 -0.914709930723E-01 4165 0.152189438618 -0.914772736280E-01 4166 0.240058360372 -0.168149210467 4167 0.240077262656 -0.168103311266 4168 0.654541057058E-01 -0.454680006577E-01 4169 0.240053438025 -0.168121069131 4170 -0.325752904038 0.271431516051 4171 -0.325797502738 0.271486615257 4172 0.325784504443 -0.271482850766 4173 0.152192286419 -0.914521568853E-01 4174 0.152246646994 -0.914255347391E-01 4175 1.27829146676 -0.296624195563 4176 0.152237208724 -0.914227644402E-01 4177 0.240089864748 -0.168062396887 4178 0.240064219119 -0.168111274042 4179 0.240054038771 -0.168121065208 4180 0.655828800221E-01 -0.454377401600E-01 4181 -0.325895989865 0.271459120622 4182 0.325663023046 -0.271449384869 4183 -0.325787990778 0.271365318567 4184 0.152198260921 -0.914300626823E-01 4185 0.152218938521 -0.913896820374E-01 4186 0.152268286188 -0.914632715395E-01 4187 1.27837898512 -0.296584350357 4188 0.240097363381 -0.168071721417 4189 0.654792786096E-01 -0.454372169049E-01 4190 0.240077499664 -0.168103322793 4191 0.240063801810 -0.168111280067 4192 -0.325729391778 0.271497927501 4193 -0.325845765833 0.271345751491 4194 -0.325767975025 0.271377482514 4195 0.655220033783E-01 -0.454346255716E-01 4196 0.240101965623 -0.168030182361 4197 0.240086807589 -0.168101550835 4198 0.240074591191 -0.168138067541 4199 1.27828257746 -0.296573010859 4200 0.152198395316 -0.914300923776E-01 4201 0.152175203944 -0.914676371856E-01 4202 0.152192285191 -0.914521152836E-01 4203 0.325841997097 -0.271475575144 4204 -0.325726964259 0.271403489235 4205 0.325745802850 -0.271536583909 4206 0.240074373050 -0.168138075511 4207 0.240079340967 -0.168117521520 4208 0.240075949808 -0.168090613270 4209 0.654835552629E-01 -0.454844804599E-01 4210 0.152201850344 -0.914417263548E-01 4211 1.27837896362 -0.296584341632 4212 0.152189531565 -0.914772445306E-01 4213 0.152236947569 -0.914227486837E-01 4214 -0.325716878839 0.271492482648 4215 0.325769346609 -0.271418988393 4216 0.325750841009 -0.271379376432 4217 0.240101706618 -0.168030148772 4218 0.655137033435E-01 -0.454861085319E-01 4219 0.240043815477 -0.168071819464 4220 0.240079577496 -0.168117536488 4221 0.152221432081 -0.914350200529E-01 4222 0.152219030386 -0.913896620633E-01 4223 1.27834635253 -0.296548320305 4224 0.152246542691 -0.914255169878E-01 4225 0.325721893012 -0.271450158852 4226 0.325776951882 -0.271486864954 4227 -0.325786585987 0.271458857635 4228 0.240085978920 -0.168101519062 4229 0.240043215966 -0.168071812420 4230 0.655865641353E-01 -0.454080534353E-01 4231 0.240075533665 -0.168090627345 4232 0.152199026810 -0.914708020725E-01 4233 0.152268026502 -0.914632541336E-01 4234 0.152253022525 -0.914709469228E-01 4235 1.27829297017 -0.296624163067 4236 2.14006433699 -0.887368355470 4237 -0.109366202737E-04 -0.504859847323E-05 4238 0.360680648754E-05 -0.441898359736E-05 4239 0.154417828001 -0.102653578989 4240 0.154404614130 -0.102622107014 4241 -0.154399907203 0.102596600124 4242 -0.154491793295 0.102591115617 4243 -0.154405542173 0.102555845200 4244 0.154504753060 -0.102593698544 4245 -0.154388054694 0.102544792403 4246 0.154408140637 -0.102583131333 4247 -0.109363261248E-04 -0.504983840265E-05 4248 2.14006523194 -0.887362871647 4249 0.336979740551E-05 0.815656533706E-05 4250 0.154462465320 -0.102547200811 4251 -0.154463503423 0.102590661155 4252 -0.154422902988 0.102603224986 4253 0.154376179195 -0.102585760173 4254 -0.154456926071 0.102617608540 4255 -0.154363312747 0.102608317882 4256 0.154464053564 -0.102572006951 4257 0.154429430457 -0.102600237267 4258 0.360727677032E-05 -0.441921954619E-05 4259 0.336910774378E-05 0.815861060144E-05 4260 2.14006295019 -0.887368697262 4261 0.154395181958 -0.102559052915 4262 -0.154421495993 0.102554780196 4263 0.154433434258 -0.102574507028 4264 -0.154440508763 0.102657051927 4265 -0.154391275295 0.102619037333 4266 0.154419983725 -0.102535649434 4267 0.154436747743 -0.102617855759 4268 -0.154431359367 0.102594819859 4269 0.154405524670 -0.102555857044 4270 0.154456911028 -0.102617615128 4271 0.154391467762 -0.102619106702 4272 1.04837349753 -0.116689247331 4273 0.594115044247E-01 -0.424486133292E-01 4274 0.593877109232E-01 -0.424833100358E-01 4275 0.594087797095E-01 -0.424537062355E-01 4276 0.199903857511E-01 -0.261150214912E-01 4277 0.101151654443 -0.576907933451E-01 4278 0.101152969025 -0.577489740479E-01 4279 0.101185001520 -0.576771995915E-01 4280 0.154387943427 -0.102544764316 4281 -0.154464076225 0.102572032906 4282 -0.154436930354 0.102617907974 4283 0.593976542959E-01 -0.424560493865E-01 4284 1.04846157397 -0.116643809261 4285 0.594585696499E-01 -0.424800288613E-01 4286 0.594254378599E-01 -0.424579161916E-01 4287 0.101153217964 -0.577489678747E-01 4288 0.101131034525 -0.577309200990E-01 4289 0.198990111621E-01 -0.261176098678E-01 4290 0.101133383374 -0.577410750284E-01 4291 -0.154407979195 0.102583077961 4292 -0.154429345829 0.102600191475 4293 0.154431356768 -0.102594780235 4294 0.593715875348E-01 -0.424630650510E-01 4295 0.594430307166E-01 -0.424300459776E-01 4296 1.04834388503 -0.116702308297 4297 0.594373164692E-01 -0.424242129624E-01 4298 0.101185831347 -0.576771880978E-01 4299 0.101145575794 -0.577249051944E-01 4300 0.101133992789 -0.577410617750E-01 4301 0.200624541016E-01 -0.261170010593E-01 4302 -0.154504606624 0.102593683632 4303 0.154363385398 -0.102608331006 4304 -0.154420063287 0.102535658590 4305 0.594100240524E-01 -0.424437551560E-01 4306 0.594264317235E-01 -0.424047029723E-01 4307 0.594657593549E-01 -0.424803343192E-01 4308 1.04847210863 -0.116658435284 4309 0.101151882207 -0.576907880357E-01 4310 0.199085045779E-01 -0.261081605964E-01 4311 0.101131267583 -0.577309206187E-01 4312 0.101145145859 -0.577249111687E-01 4313 -0.154417845194 0.102653568793 4314 -0.154462480138 0.102547190826 4315 -0.154394990366 0.102558981431 4316 0.199953807194E-01 -0.260824505767E-01 4317 0.101162757311 -0.576812849296E-01 4318 0.101182506700 -0.577147521161E-01 4319 0.101163283584 -0.577452569231E-01 4320 1.04837244728 -0.116689275762 4321 0.594101342303E-01 -0.424437667954E-01 4322 0.593977544499E-01 -0.424560939145E-01 4323 0.593716190728E-01 -0.424630453472E-01 4324 0.154491939652 -0.102591129837 4325 -0.154376105576 0.102585752701 4326 0.154440429122 -0.102657042726 4327 0.101163057141 -0.577452656314E-01 4328 0.101141466083 -0.577436442862E-01 4329 0.101143792186 -0.577016053427E-01 4330 0.199156816566E-01 -0.261695348387E-01 4331 0.594088912337E-01 -0.424537254721E-01 4332 1.04847209220 -0.116658431819 4333 0.594255482127E-01 -0.424579035234E-01 4334 0.594370674448E-01 -0.424242027326E-01 4335 -0.154404725727 0.102622133806 4336 0.154463481907 -0.102590630166 4337 0.154421314926 -0.102554725795 4338 0.101162508338 -0.576812673955E-01 4339 0.199184113770E-01 -0.261760295287E-01 4340 0.101117940911 -0.576850495316E-01 4341 0.101141698878 -0.577436490029E-01 4342 0.594116045640E-01 -0.424486413975E-01 4343 0.594265415784E-01 -0.424046980865E-01 4344 1.04846097606 -0.116643818428 4345 0.594429521465E-01 -0.424300444487E-01 4346 0.154400069041 -0.102596652870 4347 0.154422987316 -0.102603275197 4348 -0.154433435571 0.102574547135 4349 0.101181678512 -0.577147471268E-01 4350 0.101117332108 -0.576850533017E-01 4351 0.200422600462E-01 -0.260729321179E-01 4352 0.101143362920 -0.577016210545E-01 4353 0.593877438254E-01 -0.424832931533E-01 4354 0.594655110648E-01 -0.424803243411E-01 4355 0.594584915512E-01 -0.424799996642E-01 4356 1.04834547636 -0.116702273155 4357 1.92069761828 -0.507566837133 4358 -0.921134068154E-05 -0.194080863677E-05 4359 0.509510832350E-05 -0.451997485350E-05 4360 0.108149142711 -0.569396654308E-01 4361 0.108125891916 -0.568999372406E-01 4362 -0.108125599195 0.568870197199E-01 4363 -0.108202963051 0.568820271091E-01 4364 -0.108140540375 0.568682735569E-01 4365 0.108200124295 -0.568877630541E-01 4366 -0.108100641564 0.568536759023E-01 4367 0.108130730446 -0.568769670394E-01 4368 -0.921208482614E-05 -0.194114388404E-05 4369 1.92069904046 -0.507565508280 4370 0.348425603123E-05 0.117570367739E-05 4371 0.108170876253 -0.568606448877E-01 4372 -0.108189196246 0.568919658737E-01 4373 -0.108132845297 0.568910486901E-01 4374 0.108105192723 -0.568830324195E-01 4375 -0.108183363964 0.569060711848E-01 4376 -0.108094131302 0.568994515593E-01 4377 0.108179155913 -0.568803209207E-01 4378 0.108145012055 -0.568815863531E-01 4379 0.509551587170E-05 -0.452011028169E-05 4380 0.348466597895E-05 0.117648434730E-05 4381 1.92069479756 -0.507564259643 4382 0.108114326691 -0.568622513327E-01 4383 -0.108138152206 0.568589303268E-01 4384 0.108150396771 -0.568644647039E-01 4385 -0.108162853127 0.569308932836E-01 4386 -0.108123489275 0.569032610907E-01 4387 0.108133297698 -0.568422441467E-01 4388 0.108155700052 -0.569055349075E-01 4389 -0.108143642250 0.568852294444E-01 4390 0.108140519550 -0.568682812661E-01 4391 0.108183346903 -0.569060743301E-01 4392 0.108123671592 -0.569033012998E-01 4393 1.02437275023 -0.985275590707E-01 4394 0.753343593264E-01 -0.472217438113E-01 4395 0.753252526176E-01 -0.472416782969E-01 4396 0.753364885073E-01 -0.472281173348E-01 4397 0.480658682552E-01 -0.386237143839E-01 4398 0.899711247239E-01 -0.465576310735E-01 4399 0.899808035500E-01 -0.466035676823E-01 4400 0.899979774755E-01 -0.465373572503E-01 4401 0.108100532028 -0.568536602805E-01 4402 -0.108179176097 0.568803364067E-01 4403 -0.108155873884 0.569055633140E-01 4404 0.753248575585E-01 -0.472284200064E-01 4405 1.02442805919 -0.984892853569E-01 4406 0.753822563829E-01 -0.472513183514E-01 4407 0.753408763405E-01 -0.472291163586E-01 4408 0.899810590667E-01 -0.466035581448E-01 4409 0.899644534945E-01 -0.465901857309E-01 4410 0.480180599154E-01 -0.386023967513E-01 4411 0.899473907826E-01 -0.465968901288E-01 4412 -0.108130578898 0.568769361454E-01 4413 -0.108144935384 0.568815614316E-01 4414 0.108143644615 -0.568852058524E-01 4415 0.753098775967E-01 -0.472387769753E-01 4416 0.753763956947E-01 -0.472082762977E-01 4417 1.02432958166 -0.985285783049E-01 4418 0.753708483395E-01 -0.472063345550E-01 4419 0.899988349386E-01 -0.465373422493E-01 4420 0.899609258192E-01 -0.465812529303E-01 4421 0.899480220148E-01 -0.465968757933E-01 4422 0.481484562624E-01 -0.386160728151E-01 4423 -0.108199984402 0.568877555700E-01 4424 0.108094201296 -0.568994586415E-01 4425 -0.108133375079 0.568422479240E-01 4426 0.753383409146E-01 -0.472192227446E-01 4427 0.753387370359E-01 -0.471867089603E-01 4428 0.753898110586E-01 -0.472506303675E-01 4429 1.02443547417 -0.984973283663E-01 4430 0.899713650116E-01 -0.465576289563E-01 4431 0.480255188214E-01 -0.386004596451E-01 4432 0.899646926125E-01 -0.465901831605E-01 4433 0.899604783568E-01 -0.465812572342E-01 4434 -0.108149163206 0.569396589902E-01 4435 -0.108170893646 0.568606388759E-01 4436 -0.108114144818 0.568622087832E-01 4437 0.480804759567E-01 -0.385752606658E-01 4438 0.899855399730E-01 -0.465495189402E-01 4439 0.899901990586E-01 -0.465835123379E-01 4440 0.899850846921E-01 -0.465957285732E-01 4441 1.02437167218 -0.985275990779E-01 4442 0.753384563627E-01 -0.472192327860E-01 4443 0.753249561467E-01 -0.472284573994E-01 4444 0.753099167528E-01 -0.472387625968E-01 4445 0.108203103139 -0.568820340441E-01 4446 -0.108105121977 0.568830302768E-01 4447 0.108162775886 -0.569308896925E-01 4448 0.899848456147E-01 -0.465957345455E-01 4449 0.899751275447E-01 -0.465930987233E-01 4450 0.899618109646E-01 -0.465615615203E-01 4451 0.480204288536E-01 -0.386644732850E-01 4452 0.753366051546E-01 -0.472281350886E-01 4453 1.02443545724 -0.984973259237E-01 4454 0.753409981071E-01 -0.472291080939E-01 4455 0.753705818589E-01 -0.472063225738E-01 4456 -0.108126001804 0.568999517914E-01 4457 0.108189176585 -0.568919454353E-01 4458 0.108137979151 -0.568588994975E-01 4459 0.899852842977E-01 -0.465495039568E-01 4460 0.480215477361E-01 -0.386717607625E-01 4461 0.899411013697E-01 -0.465443551606E-01 4462 0.899753665279E-01 -0.465931006961E-01 4463 0.753344580598E-01 -0.472217642333E-01 4464 0.753388585721E-01 -0.471867086000E-01 4465 1.02442744518 -0.984893013298E-01 4466 0.753763129571E-01 -0.472082765102E-01 4467 0.108125750818 -0.568870498003E-01 4468 0.108132921767 -0.568910777856E-01 4469 -0.108150393869 0.568644888998E-01 4470 0.899893429134E-01 -0.465835101638E-01 4471 0.899404705908E-01 -0.465443594948E-01 4472 0.481316222343E-01 -0.385893627648E-01 4473 0.899613642621E-01 -0.465615757688E-01 4474 0.753252931728E-01 -0.472416667963E-01 4475 0.753895452461E-01 -0.472506184698E-01 4476 0.753821738491E-01 -0.472512896675E-01 4477 1.02433121540 -0.985285248791E-01 4478 1.62703381198 -0.361541926216 4479 -0.921870604670E-05 -0.401298658446E-06 4480 0.606944857826E-05 -0.230393999637E-05 4481 0.670322345875E-01 -0.378080651827E-01 4482 0.669824944286E-01 -0.377858820793E-01 4483 -0.669881983701E-01 0.377727050401E-01 4484 -0.670627872555E-01 0.377403769099E-01 4485 -0.670089887166E-01 0.377341851536E-01 4486 0.670723628233E-01 -0.377605844622E-01 4487 -0.669652255532E-01 0.377531395953E-01 4488 0.669916633298E-01 -0.377634205958E-01 4489 -0.921955549528E-05 -0.400774391525E-06 4490 1.62703685551 -0.361541272018 4491 0.666309704770E-05 0.975511833561E-06 4492 0.670475953126E-01 -0.377344711342E-01 4493 -0.670653211676E-01 0.377435333948E-01 4494 -0.669959604124E-01 0.377849816311E-01 4495 0.669653420043E-01 -0.377735854068E-01 4496 -0.670554433650E-01 0.377610674569E-01 4497 -0.669626975638E-01 0.377890059919E-01 4498 0.670589513887E-01 -0.377435218256E-01 4499 0.669926194229E-01 -0.377680657432E-01 4500 0.607003464378E-05 -0.230433753540E-05 4501 0.666287531318E-05 0.975798542438E-06 4502 1.62702905546 -0.361540228196 4503 0.669735284444E-01 -0.377594067051E-01 4504 -0.670078024644E-01 0.377357810976E-01 4505 0.670003444034E-01 -0.377470152849E-01 4506 -0.670340973933E-01 0.378023518266E-01 4507 -0.669791152807E-01 0.377853841978E-01 4508 0.669974859772E-01 -0.377237700448E-01 4509 0.670293489640E-01 -0.377815235249E-01 4510 -0.670072073782E-01 0.377744026009E-01 4511 0.670089647229E-01 -0.377341895685E-01 4512 0.670554240085E-01 -0.377610687384E-01 4513 0.669792796917E-01 -0.377854138513E-01 4514 0.956877257617 -0.776026461662E-01 4515 0.563671135299E-01 -0.249859566215E-01 4516 0.563361425200E-01 -0.250249088948E-01 4517 0.563696993567E-01 -0.249852912671E-01 4518 0.348053013820E-01 -0.228437193440E-01 4519 0.657267931921E-01 -0.870456006919E-02 4520 0.657428163418E-01 -0.874806269801E-02 4521 0.657849727146E-01 -0.866922760227E-02 4522 0.669651226525E-01 -0.377531268605E-01 4523 -0.670589632257E-01 0.377435345596E-01 4524 -0.670295103502E-01 0.377815422590E-01 4525 0.563545686806E-01 -0.249811143784E-01 4526 0.956973255400 -0.775303349991E-01 4527 0.564247522911E-01 -0.250141597166E-01 4528 0.563942134106E-01 -0.249654016286E-01 4529 0.657430781559E-01 -0.874804580578E-02 4530 0.657005358076E-01 -0.875792333205E-02 4531 0.347077242936E-01 -0.228421798817E-01 4532 0.657163468418E-01 -0.876181355803E-02 4533 -0.669915245994E-01 0.377634001979E-01 4534 -0.669925557429E-01 0.377680482197E-01 4535 0.670072216923E-01 -0.377743842324E-01 4536 0.563080864710E-01 -0.250107790140E-01 4537 0.563999368007E-01 -0.249513025884E-01 4538 0.956810246515 -0.776138413096E-01 4539 0.563936480722E-01 -0.249457630168E-01 4540 0.657858622515E-01 -0.866919134570E-02 4541 0.657263694507E-01 -0.873607827730E-02 4542 0.657170046305E-01 -0.876178445560E-02 4543 0.349128293401E-01 -0.228334672759E-01 4544 -0.670722236018E-01 0.377605834343E-01 4545 0.669627659259E-01 -0.377890094101E-01 4546 -0.669975620237E-01 0.377237710832E-01 4547 0.563692137692E-01 -0.249774097567E-01 4548 0.563890490158E-01 -0.249299669508E-01 4549 0.564310714588E-01 -0.250167740545E-01 4550 0.956968643255 -0.775416140700E-01 4551 0.657270448953E-01 -0.870455123212E-02 4552 0.347158108385E-01 -0.228401533228E-01 4553 0.657007824222E-01 -0.875791544775E-02 4554 0.657259009305E-01 -0.873609226647E-02 4555 -0.670322583013E-01 0.378080617576E-01 4556 -0.670476147676E-01 0.377344673813E-01 4557 -0.669733642947E-01 0.377593746887E-01 4558 0.348210056874E-01 -0.227954164149E-01 4559 0.657486587544E-01 -0.871097329359E-02 4560 0.657769382056E-01 -0.871821084963E-02 4561 0.657519099145E-01 -0.875250597351E-02 4562 0.956876121004 -0.776026938451E-01 4563 0.563693256183E-01 -0.249774171269E-01 4564 0.563546528153E-01 -0.249811472588E-01 4565 0.563081368102E-01 -0.250107652639E-01 4566 0.670629266601E-01 -0.377403775728E-01 4567 -0.669652730534E-01 0.377735863911E-01 4568 0.670340212580E-01 -0.378023510571E-01 4569 0.657516589560E-01 -0.875251958416E-02 4570 0.657162845036E-01 -0.876666670574E-02 4571 0.657201130071E-01 -0.870991660359E-02 4572 0.347285015875E-01 -0.229233853401E-01 4573 0.563698121238E-01 -0.249853072162E-01 4574 0.956968627607 -0.775416127914E-01 4575 0.563943437370E-01 -0.249653950397E-01 4576 0.563933773929E-01 -0.249457527205E-01 4577 -0.669825975860E-01 0.377858941063E-01 4578 0.670653095267E-01 -0.377435158800E-01 4579 0.670076417872E-01 -0.377357601928E-01 4580 0.657483961832E-01 -0.871096462377E-02 4581 0.347230451386E-01 -0.229404185132E-01 4582 0.656905913479E-01 -0.869063313906E-02 4583 0.657165311685E-01 -0.876666349461E-02 4584 0.563671973514E-01 -0.249859719852E-01 4585 0.563891794377E-01 -0.249299683297E-01 4586 0.956972611857 -0.775303575557E-01 4587 0.563998595020E-01 -0.249513051132E-01 4588 0.669883369834E-01 -0.377727244331E-01 4589 0.669960241121E-01 -0.377850032630E-01 4590 -0.670003296094E-01 0.377470339671E-01 4591 0.657760491731E-01 -0.871823009645E-02 4592 0.656899333955E-01 -0.869065215295E-02 4593 0.348738711998E-01 -0.227839562920E-01 4594 0.657196451503E-01 -0.870994134313E-02 4595 0.563361935775E-01 -0.250248989251E-01 4596 0.564308012007E-01 -0.250167642093E-01 4597 0.564246745129E-01 -0.250141325063E-01 4598 0.956811964853 -0.776137732994E-01 4599 1.39975874677 -0.544844436900 4600 -0.101722815872E-04 0.108557621615E-05 4601 0.385834268681E-05 -0.441668635866E-05 4602 0.380030939908E-01 -0.579952778511E-01 4603 0.379584808164E-01 -0.579515765576E-01 4604 -0.379565903453E-01 0.579481128044E-01 4605 -0.380248823165E-01 0.579176125127E-01 4606 -0.379799626489E-01 0.579257268079E-01 4607 0.380291383448E-01 -0.579492521231E-01 4608 -0.379291285105E-01 0.579289748045E-01 4609 0.379583913361E-01 -0.579412498532E-01 4610 -0.101727816162E-04 0.108504983884E-05 4611 1.39976153754 -0.544845529808 4612 0.525445433426E-05 -0.314914584555E-05 4613 0.380070455052E-01 -0.579377008261E-01 4614 -0.380321831855E-01 0.579345446791E-01 4615 -0.379550358894E-01 0.579538855055E-01 4616 0.379401581730E-01 -0.579493016203E-01 4617 -0.380230941847E-01 0.579469298690E-01 4618 -0.379379262343E-01 0.579599303937E-01 4619 0.380246543491E-01 -0.579436489837E-01 4620 0.379604514755E-01 -0.579353812891E-01 4621 0.385781146378E-05 -0.441788597326E-05 4622 0.525456748816E-05 -0.314828289136E-05 4623 1.39975462248 -0.544841171879 4624 0.379363297900E-01 -0.579374251191E-01 4625 -0.379784273383E-01 0.579256873180E-01 4626 0.379698538176E-01 -0.579170578703E-01 4627 -0.380004101385E-01 0.579812062534E-01 4628 -0.379499532773E-01 0.579526453573E-01 4629 0.379656378989E-01 -0.579170998094E-01 4630 0.379958879057E-01 -0.579666560680E-01 4631 -0.379645961504E-01 0.579423935641E-01 4632 0.379799334872E-01 -0.579257304885E-01 4633 0.380230716985E-01 -0.579469303658E-01 4634 0.379501039961E-01 -0.579526962017E-01 4635 0.909284088926 -0.716836493890E-01 4636 0.282064446524E-01 -0.169315070474E-01 4637 0.281741607729E-01 -0.169744405235E-01 4638 0.282083792759E-01 -0.169326271057E-01 4639 0.176823335157E-01 -0.579034309375E-02 4640 0.247034311094E-01 -0.834608698173E-02 4641 0.247225927986E-01 -0.838435118176E-02 4642 0.247664083573E-01 -0.830657975085E-02 4643 0.379290289198E-01 -0.579289506942E-01 4644 -0.380246605940E-01 0.579436715165E-01 4645 -0.379960387218E-01 0.579666884085E-01 4646 0.281940494185E-01 -0.169222599956E-01 4647 0.909382302662 -0.716041299953E-01 4648 0.282669102977E-01 -0.169635293136E-01 4649 0.282343766723E-01 -0.169078834977E-01 4650 0.247228574863E-01 -0.838433563628E-02 4651 0.246763393083E-01 -0.840220337572E-02 4652 0.175824817703E-01 -0.579082613199E-02 4653 0.246952514988E-01 -0.839807193512E-02 4654 -0.379582651125E-01 0.579412184697E-01 4655 -0.379603987698E-01 0.579353535411E-01 4656 0.379646202088E-01 -0.579423665626E-01 4657 0.281431262178E-01 -0.169605738905E-01 4658 0.282367410305E-01 -0.169002246602E-01 4659 0.909208555657 -0.716907088528E-01 4660 0.282282871511E-01 -0.168945326687E-01 4661 0.247673141501E-01 -0.830654621199E-02 4662 0.247055931220E-01 -0.837081350604E-02 4663 0.246959235598E-01 -0.839804414026E-02 4664 0.177979826318E-01 -0.578482812543E-02 4665 -0.380290020062E-01 0.579492499417E-01 4666 0.379379918789E-01 -0.579599347376E-01 4667 -0.379657128754E-01 0.579171018201E-01 4668 0.282096585597E-01 -0.169232803424E-01 4669 0.282287186392E-01 -0.168784153875E-01 4670 0.282720083624E-01 -0.169666893818E-01 4671 0.909374473784 -0.716154321568E-01 4672 0.247036873585E-01 -0.834607622469E-02 4673 0.175897191844E-01 -0.579347871093E-02 4674 0.246765902833E-01 -0.840219743367E-02 4675 0.247051133001E-01 -0.837082725089E-02 4676 -0.380031226780E-01 0.579952751031E-01 4677 -0.380070681977E-01 0.579376974940E-01 4678 -0.379361797106E-01 0.579373722293E-01 4679 0.177019448121E-01 -0.573453495423E-02 4680 0.247270140663E-01 -0.835760101857E-02 4681 0.247599318985E-01 -0.835522479171E-02 4682 0.247318571486E-01 -0.838918293752E-02 4683 0.909282904746 -0.716836865148E-01 4684 0.282097686929E-01 -0.169232880230E-01 4685 0.281941236346E-01 -0.169222966627E-01 4686 0.281431838255E-01 -0.169605565824E-01 4687 0.380250183660E-01 -0.579176145690E-01 4688 -0.379400914539E-01 0.579493017711E-01 4689 0.380003354114E-01 -0.579812040837E-01 4690 0.247316015658E-01 -0.838919923260E-02 4691 0.246976450574E-01 -0.840706044242E-02 4692 0.246968121131E-01 -0.834599613693E-02 4693 0.176087508249E-01 -0.588011161034E-02 4694 0.282084901662E-01 -0.169326442393E-01 4695 0.909374459457 -0.716154309955E-01 4696 0.282345151381E-01 -0.169078748761E-01 4697 0.282280111193E-01 -0.168945236509E-01 4698 -0.379585812054E-01 0.579515994172E-01 4699 0.380321776771E-01 -0.579345177581E-01 4700 0.379782773076E-01 -0.579256531942E-01 4701 0.247267486402E-01 -0.835759056212E-02 4702 0.176032951176E-01 -0.589725076008E-02 4703 0.246683905185E-01 -0.832815129593E-02 4704 0.246978962568E-01 -0.840705907781E-02 4705 0.282065186142E-01 -0.169315259102E-01 4706 0.282288570063E-01 -0.168784148111E-01 4707 0.909381636059 -0.716041471194E-01 4708 0.282366665489E-01 -0.169002272318E-01 4709 0.379567167000E-01 -0.579481436899E-01 4710 0.379550884062E-01 -0.579539173024E-01 4711 -0.379698288005E-01 0.579170850062E-01 4712 0.247590265843E-01 -0.835524177556E-02 4713 0.246677183086E-01 -0.832816939772E-02 4714 0.177557478234E-01 -0.573197755909E-02 4715 0.246963327891E-01 -0.834602136066E-02 4716 0.281742189322E-01 -0.169744279773E-01 4717 0.282717327272E-01 -0.169666811932E-01 4718 0.282668354367E-01 -0.169635016374E-01 4719 0.909210341352 -0.716906561814E-01 4720 1.64818349789 -0.439227557733 4721 -0.948701221562E-05 -0.168313027539E-05 4722 0.702514598927E-05 -0.186338705156E-05 4723 0.603243701795E-01 -0.461558311948E-01 4724 0.602626682665E-01 -0.461413393169E-01 4725 -0.602653131027E-01 0.461373374124E-01 4726 -0.603139829587E-01 0.460838086403E-01 4727 -0.602775697896E-01 0.461072883230E-01 4728 0.603325343093E-01 -0.461003867956E-01 4729 -0.602354081200E-01 0.461313197654E-01 4730 0.602678360865E-01 -0.461292352079E-01 4731 -0.948702206709E-05 -0.168333576836E-05 4732 1.64818775827 -0.439225979055 4733 0.913411672185E-05 0.405737086807E-05 4734 0.603124870732E-01 -0.460844255170E-01 4735 -0.603304310857E-01 0.460770774839E-01 4736 -0.602721153818E-01 0.461551639081E-01 4737 0.602489989547E-01 -0.461514263787E-01 4738 -0.603263104145E-01 0.460936117171E-01 4739 -0.602486108824E-01 0.461617580760E-01 4740 0.603197734692E-01 -0.460827074222E-01 4741 0.602617006865E-01 -0.461397821236E-01 4742 0.702485878999E-05 -0.186332211384E-05 4743 0.913446385776E-05 0.405772565176E-05 4744 1.64817828430 -0.439225993611 4745 0.602499891190E-01 -0.461333503511E-01 4746 -0.602706875308E-01 0.460995538997E-01 4747 0.602631787824E-01 -0.461042761880E-01 4748 -0.603226271920E-01 0.461451184430E-01 4749 -0.602611728088E-01 0.461445124191E-01 4750 0.602541163451E-01 -0.460972747128E-01 4751 0.603118389822E-01 -0.461303118340E-01 4752 -0.602786207773E-01 0.461299238994E-01 4753 0.602775401029E-01 -0.461072941727E-01 4754 0.603262868141E-01 -0.460936138074E-01 4755 0.602613561549E-01 -0.461445530858E-01 4756 0.907314149538 -0.821805839447E-01 4757 0.249463933458E-01 -0.308347074486E-01 4758 0.249304825577E-01 -0.308471972065E-01 4759 0.249547099316E-01 -0.308294247107E-01 4760 0.694977828095E-02 -0.237448906755E-01 4761 0.178986555743E-01 -0.209005899331E-01 4762 0.179234768932E-01 -0.209268742910E-01 4763 0.179403442492E-01 -0.208653882203E-01 4764 0.602352911887E-01 -0.461313026048E-01 4765 -0.603197935475E-01 0.460827248305E-01 4766 -0.603120116650E-01 0.461303379448E-01 4767 0.249378918348E-01 -0.308311050028E-01 4768 0.907370366543 -0.821277869672E-01 4769 0.250035306336E-01 -0.308501440824E-01 4770 0.249639264404E-01 -0.308169167537E-01 4771 0.179237514361E-01 -0.209268593481E-01 4772 0.178886162555E-01 -0.209389571941E-01 4773 0.689082149286E-02 -0.237093252300E-01 4774 0.178785857107E-01 -0.209440064390E-01 4775 -0.602676903437E-01 0.461292072993E-01 4776 -0.602616317932E-01 0.461397580340E-01 4777 0.602786326572E-01 -0.461299000319E-01 4778 0.249084297524E-01 -0.308531978628E-01 4779 0.249892453770E-01 -0.308016902840E-01 4780 0.907232496903 -0.821850339331E-01 4781 0.249821301551E-01 -0.307946250653E-01 4782 0.179412783902E-01 -0.208653587412E-01 4783 0.178851767957E-01 -0.209255167275E-01 4784 0.178792776828E-01 -0.209439816749E-01 4785 0.704813811999E-02 -0.237143488613E-01 4786 -0.603323932406E-01 0.461003836492E-01 4787 0.602486796401E-01 -0.461617628317E-01 4788 -0.602541946873E-01 0.460972766133E-01 4789 0.249501079934E-01 -0.308253550490E-01 4790 0.249506624393E-01 -0.307928171799E-01 4791 0.250063738448E-01 -0.308508253426E-01 4792 0.907363209643 -0.821357786910E-01 4793 0.178989161595E-01 -0.209005832462E-01 4794 0.689205246773E-02 -0.237127888980E-01 4795 0.178888768877E-01 -0.209389511985E-01 4796 0.178846838656E-01 -0.209255274776E-01 4797 -0.603243995751E-01 0.461558264678E-01 4798 -0.603125108524E-01 0.460844206363E-01 4799 -0.602498061805E-01 0.461333073056E-01 4800 0.695612294356E-02 -0.236847548895E-01 4801 0.179169950885E-01 -0.209036332482E-01 4802 0.179329615497E-01 -0.209237775015E-01 4803 0.179185122005E-01 -0.209340446370E-01 4804 0.907312916130 -0.821806301881E-01 4805 0.249502261034E-01 -0.308253636033E-01 4806 0.249379768304E-01 -0.308311424913E-01 4807 0.249084849249E-01 -0.308531815996E-01 4808 0.603141238129E-01 -0.460838111614E-01 4809 -0.602489294465E-01 0.461514263704E-01 4810 0.603225491254E-01 -0.461451168179E-01 4811 0.179182526123E-01 -0.209340572237E-01 4812 0.178995924800E-01 -0.209359510481E-01 4813 0.178846581309E-01 -0.209038337803E-01 4814 0.689639629312E-02 -0.237878605859E-01 4815 0.249548291550E-01 -0.308294431915E-01 4816 0.907363194883 -0.821357769283E-01 4817 0.249640702465E-01 -0.308169089960E-01 4818 0.249818399408E-01 -0.307946131774E-01 4819 -0.602627857189E-01 0.461413555878E-01 4820 0.603304116749E-01 -0.460770551814E-01 4821 0.602705155573E-01 -0.460995252818E-01 4822 0.179167199710E-01 -0.209036213797E-01 4823 0.689540725490E-02 -0.238157752943E-01 4824 0.178595291880E-01 -0.208867219421E-01 4825 0.178998531309E-01 -0.209359498446E-01 4826 0.249464781841E-01 -0.308347266350E-01 4827 0.249508060707E-01 -0.307928176216E-01 4828 0.907369672494 -0.821278076873E-01 4829 0.249891643576E-01 -0.308016918854E-01 4830 0.602654590157E-01 -0.461373644445E-01 4831 0.602721839465E-01 -0.461551922421E-01 4832 -0.602631660850E-01 0.461043004883E-01 4833 0.179320282746E-01 -0.209237898503E-01 4834 0.178588373615E-01 -0.208867366366E-01 4835 0.702044259871E-02 -0.236854316512E-01 4836 0.178841659036E-01 -0.209038564582E-01 4837 0.249305387858E-01 -0.308471861765E-01 4838 0.250060842587E-01 -0.308508143471E-01 4839 0.250034494640E-01 -0.308501143947E-01 4840 0.907234356313 -0.821849693190E-01 4841 1.43344012059 -0.223893812306 4842 -0.806894383498E-05 -0.619308889024E-07 4843 0.491219127340E-05 -0.104625633680E-05 4844 0.326860682904E-01 -0.270498936305E-01 4845 0.326322484713E-01 -0.270348934761E-01 4846 -0.326429335017E-01 0.270319498291E-01 4847 -0.326898415114E-01 0.269999930068E-01 4848 -0.326663386948E-01 0.270073189136E-01 4849 0.326946523254E-01 -0.270187235894E-01 4850 -0.326191908946E-01 0.270283020047E-01 4851 0.326436188532E-01 -0.270245729463E-01 4852 -0.806892306383E-05 -0.619820225309E-07 4853 1.43344263401 -0.223893450667 4854 0.443297092536E-05 0.112313926937E-05 4855 0.326805259306E-01 -0.270073332294E-01 4856 -0.326979864606E-01 0.269978974232E-01 4857 -0.326458623988E-01 0.270422375275E-01 4858 0.326301361182E-01 -0.270384521874E-01 4859 -0.326896096390E-01 0.270100691210E-01 4860 -0.326290414310E-01 0.270453767988E-01 4861 0.326907875619E-01 -0.270083594664E-01 4862 0.326415249324E-01 -0.270285106775E-01 4863 0.491224198374E-05 -0.104635749668E-05 4864 0.443302554375E-05 0.112343586476E-05 4865 1.43343573674 -0.223892749090 4866 0.326293912515E-01 -0.270302853832E-01 4867 -0.326514382615E-01 0.270061569764E-01 4868 0.326452260250E-01 -0.270129015023E-01 4869 -0.326763449443E-01 0.270390496649E-01 4870 -0.326358065392E-01 0.270378227655E-01 4871 0.326427272552E-01 -0.270032174269E-01 4872 0.326724739800E-01 -0.270316296088E-01 4873 -0.326507582094E-01 0.270318358587E-01 4874 0.326663059881E-01 -0.270073236398E-01 4875 0.326895841026E-01 -0.270100705071E-01 4876 0.326359740121E-01 -0.270378402642E-01 4877 0.873575673070 -0.835460053973E-01 4878 0.152318495326E-01 -0.282158016213E-01 4879 0.152254893439E-01 -0.282423820826E-01 4880 0.152376150982E-01 -0.282122408026E-01 4881 -0.337882080970E-02 -0.215753962029E-01 4882 -0.111512652546E-01 -0.141425115097E-02 4883 -0.111272068702E-01 -0.144085204745E-02 4884 -0.111113648108E-01 -0.135526063068E-02 4885 0.326190791367E-01 -0.270282958134E-01 4886 -0.326907994807E-01 0.270083657774E-01 4887 -0.326726366263E-01 0.270316409397E-01 4888 0.152211696325E-01 -0.282100162438E-01 4889 0.873614900592 -0.834659424735E-01 4890 0.152957805673E-01 -0.282330982492E-01 4891 0.152349153904E-01 -0.281846826034E-01 4892 -0.111269284889E-01 -0.144083123783E-02 4893 -0.111544314293E-01 -0.146941226969E-02 4894 -0.342451642734E-02 -0.215581098707E-01 4895 -0.111675385531E-01 -0.145536974334E-02 4896 -0.326434838583E-01 0.270245589349E-01 4897 -0.326414667765E-01 0.270284997493E-01 4898 0.326507807066E-01 -0.270318235227E-01 4899 0.151935667002E-01 -0.282607093747E-01 4900 0.152693695739E-01 -0.281883392851E-01 4901 0.873485202060 -0.835585642334E-01 4902 0.152613842985E-01 -0.281834358584E-01 4903 -0.111104130880E-01 -0.135521278267E-02 4904 -0.111608718897E-01 -0.143490851506E-02 4905 -0.111668319401E-01 -0.145533173849E-02 4906 -0.326591056380E-02 -0.215341934659E-01 4907 -0.326945114444E-01 0.270187217289E-01 4908 0.326291096890E-01 -0.270453804192E-01 4909 -0.326428054701E-01 0.270032180291E-01 4910 0.152364001276E-01 -0.282112876851E-01 4911 0.152301249688E-01 -0.281626486690E-01 4912 0.152993973317E-01 -0.282385918335E-01 4913 0.873604948107 -0.834777056670E-01 4914 -0.111509991906E-01 -0.141424001798E-02 4915 -0.342583426441E-02 -0.215706127451E-01 4916 -0.111541659202E-01 -0.146940116815E-02 4917 -0.111613764844E-01 -0.143492779431E-02 4918 -0.326861008710E-01 0.270498898709E-01 4919 -0.326805514926E-01 0.270073290071E-01 4920 -0.326292239830E-01 0.270302655783E-01 4921 -0.336008348338E-02 -0.215078500704E-01 4922 -0.111189925647E-01 -0.141923116144E-02 4923 -0.111208667573E-01 -0.142500952547E-02 4924 -0.111233752906E-01 -0.144447902218E-02 4925 0.873574395401 -0.835460688459E-01 4926 0.152365205404E-01 -0.282112964423E-01 4927 0.152212504146E-01 -0.282100533328E-01 4928 0.151936285535E-01 -0.282606935236E-01 4929 0.326899823208E-01 -0.269999943164E-01 4930 -0.326300675327E-01 0.270384531036E-01 4931 0.326762667778E-01 -0.270390494198E-01 4932 -0.111236405637E-01 -0.144449678380E-02 4933 -0.111358376292E-01 -0.146387184320E-02 4934 -0.111687092023E-01 -0.141494609786E-02 4935 -0.341007060632E-02 -0.216463995039E-01 4936 0.152377366536E-01 -0.282122601212E-01 4937 0.873604934147 -0.834777044940E-01 4938 0.152350692072E-01 -0.281846770329E-01 4939 0.152610818718E-01 -0.281834216459E-01 4940 -0.326323603897E-01 0.270348988002E-01 4941 0.326979748108E-01 -0.269978863421E-01 4942 0.326512759299E-01 -0.270061433843E-01 4943 -0.111192719464E-01 -0.141922449218E-02 4944 -0.340770485518E-02 -0.216796390179E-01 4945 -0.111920879216E-01 -0.140028584188E-02 4946 -0.111355720677E-01 -0.146386565064E-02 4947 0.152319299818E-01 -0.282158198755E-01 4948 0.152302789049E-01 -0.281626513910E-01 4949 0.873614183947 -0.834659731612E-01 4950 0.152692877648E-01 -0.281883403287E-01 4951 0.326430685522E-01 -0.270319630339E-01 4952 0.326459204011E-01 -0.270422527181E-01 4953 -0.326452031784E-01 0.270129139656E-01 4954 -0.111218179567E-01 -0.142504034838E-02 4955 -0.111927946035E-01 -0.140031378140E-02 4956 -0.331119877914E-02 -0.215184085200E-01 4957 -0.111692129947E-01 -0.141497796090E-02 4958 0.152255520853E-01 -0.282423722073E-01 4959 0.152990954576E-01 -0.282385788715E-01 4960 0.152956980906E-01 -0.282330673139E-01 4961 0.873487125294 -0.835584728613E-01 4962 1.36140305306 -0.432807116125 4963 -0.919791822265E-05 0.482912297498E-06 4964 0.372343201897E-05 -0.270299484296E-05 4965 0.236326275396E-01 -0.526623054737E-01 4966 0.235963705930E-01 -0.526330024137E-01 4967 -0.235954329198E-01 0.526303844487E-01 4968 -0.236407473891E-01 0.525971811192E-01 4969 -0.236051965080E-01 0.526230408478E-01 4970 0.236350484753E-01 -0.526122695655E-01 4971 -0.235599303113E-01 0.526201041472E-01 4972 0.235934917544E-01 -0.526247942973E-01 4973 -0.919808107678E-05 0.482336541859E-06 4974 1.36140576623 -0.432807836685 4975 0.466903764859E-05 -0.118271064933E-05 4976 0.236201530863E-01 -0.526145052279E-01 4977 -0.236474663788E-01 0.526107035450E-01 4978 -0.235877479811E-01 0.526305049453E-01 4979 0.235806536267E-01 -0.526442894571E-01 4980 -0.236479314853E-01 0.526222269873E-01 4981 -0.235787816230E-01 0.526447709100E-01 4982 0.236338328327E-01 -0.526153841013E-01 4983 0.235957302646E-01 -0.526216039423E-01 4984 0.372382379137E-05 -0.270248515002E-05 4985 0.466919218914E-05 -0.118264838490E-05 4986 1.36139953676 -0.432805271459 4987 0.235729723592E-01 -0.526254197418E-01 4988 -0.235995213052E-01 0.526104010529E-01 4989 0.236019796488E-01 -0.525999680673E-01 4990 -0.236345664354E-01 0.526509319379E-01 4991 -0.235940219644E-01 0.526365169574E-01 4992 0.235851914434E-01 -0.526052310606E-01 4993 0.236276092947E-01 -0.526423921548E-01 4994 -0.235956886749E-01 0.526180942927E-01 4995 0.236051606148E-01 -0.526230451163E-01 4996 0.236479038737E-01 -0.526222278613E-01 4997 0.235941897249E-01 -0.526365587534E-01 4998 0.845265989091 -0.911695360919E-01 4999 0.351922577088E-02 -0.207225742332E-01 5000 0.350501803618E-02 -0.207473770498E-01 5001 0.352282681195E-02 -0.207185156397E-01 5002 -0.160770289235E-01 -0.168837424628E-01 5003 -0.335020514942E-01 -0.116789221252E-01 5004 -0.334688925620E-01 -0.117041473428E-01 5005 -0.334576773617E-01 -0.116276067321E-01 5006 0.235598161437E-01 -0.526200854409E-01 5007 -0.236338441362E-01 0.526154019817E-01 5008 -0.236277723355E-01 0.526424188317E-01 5009 0.350931206553E-02 -0.207159167701E-01 5010 0.845315362519 -0.910962721439E-01 5011 0.358281846976E-02 -0.207454362960E-01 5012 0.353021333040E-02 -0.206988742233E-01 5013 -0.334686077271E-01 -0.117041295278E-01 5014 -0.335126032725E-01 -0.117313770229E-01 5015 -0.161375174057E-01 -0.168624373646E-01 5016 -0.335166852140E-01 -0.117232582760E-01 5017 -0.235933581445E-01 0.526247663855E-01 5018 -0.235956749469E-01 0.526215805450E-01 5019 0.235957153437E-01 -0.526180720823E-01 5020 0.347928407207E-02 -0.207633254967E-01 5021 0.355634477995E-02 -0.206957213619E-01 5022 0.845169934879 -0.911776871645E-01 5023 0.354553916257E-02 -0.206867680390E-01 5024 -0.334567018270E-01 -0.116275675448E-01 5025 -0.335087980621E-01 -0.117021388332E-01 5026 -0.335159600720E-01 -0.117232259084E-01 5027 -0.159684987367E-01 -0.168611809602E-01 5028 -0.236349059318E-01 0.526122659598E-01 5029 0.235788496881E-01 -0.526447758342E-01 5030 -0.235852705056E-01 0.526052337751E-01 5031 0.352839697777E-02 -0.207210015488E-01 5032 0.352001424756E-02 -0.206778284697E-01 5033 0.358977210713E-02 -0.207519921429E-01 5034 0.845301204309 -0.911086124916E-01 5035 -0.335017801607E-01 -0.116789113804E-01 5036 -0.161328738126E-01 -0.168842891509E-01 5037 -0.335123306448E-01 -0.117313689482E-01 5038 -0.335093164062E-01 -0.117021548706E-01 5039 -0.236326631754E-01 0.526623023735E-01 5040 -0.236201808356E-01 0.526145013077E-01 5041 -0.235728049681E-01 0.526253757466E-01 5042 -0.160529160861E-01 -0.168190491894E-01 5043 -0.334704063856E-01 -0.116867373416E-01 5044 -0.334608895028E-01 -0.116974734052E-01 5045 -0.334695048077E-01 -0.117106686147E-01 5046 0.845264658572 -0.911695908761E-01 5047 0.352852061229E-02 -0.207210101922E-01 5048 0.350939198249E-02 -0.207159583471E-01 5049 0.347934991226E-02 -0.207633052046E-01 5050 0.236408900416E-01 -0.525971837991E-01 5051 -0.235805848767E-01 0.526442893973E-01 5052 0.236344874655E-01 -0.526509300723E-01 5053 -0.334697752091E-01 -0.117106866680E-01 5054 -0.334861443279E-01 -0.117281801480E-01 5055 -0.335194353027E-01 -0.116789929994E-01 5056 -0.161218005739E-01 -0.169586383160E-01 5057 0.352295149098E-02 -0.207185356292E-01 5058 0.845301191087 -0.911086108249E-01 5059 0.353037548235E-02 -0.206988645255E-01 5060 0.354522541132E-02 -0.206867574329E-01 5061 -0.235964849892E-01 0.526330206484E-01 5062 0.236474556651E-01 -0.526106810315E-01 5063 0.235993589994E-01 -0.526103720915E-01 5064 -0.334706921781E-01 -0.116867269172E-01 5065 -0.161108498754E-01 -0.169923315344E-01 5066 -0.335401796889E-01 -0.116635383727E-01 5067 -0.334858715859E-01 -0.117281771157E-01 5068 0.351930519540E-02 -0.207225964446E-01 5069 0.352017646480E-02 -0.206778271405E-01 5070 0.845314618294 -0.910962976174E-01 5071 0.355626126209E-02 -0.206957228339E-01 5072 0.235955666238E-01 -0.526304117777E-01 5073 0.235878030320E-01 -0.526305327374E-01 5074 -0.236019523445E-01 0.525999904670E-01 5075 -0.334618643152E-01 -0.116974955313E-01 5076 -0.335409048319E-01 -0.116635605770E-01 5077 -0.160043201648E-01 -0.168383595577E-01 5078 -0.335199527707E-01 -0.116790221542E-01 5079 0.350508479509E-02 -0.207473634971E-01 5080 0.358945907403E-02 -0.207519831078E-01 5081 0.358273446194E-02 -0.207454049167E-01 5082 0.845171935023 -0.911776096109E-01 5083 1.38344358498 -0.237655647070 5084 -0.819211163621E-05 0.316979635712E-07 5085 0.514085993581E-05 -0.156995497186E-05 5086 0.278392442438E-01 -0.349118598484E-01 5087 0.277762826673E-01 -0.348806475147E-01 5088 -0.277870165494E-01 0.348862317453E-01 5089 -0.278429400288E-01 0.348489777934E-01 5090 -0.278237597020E-01 0.348648011537E-01 5091 0.278404175585E-01 -0.348805586988E-01 5092 -0.277581455356E-01 0.348906281647E-01 5093 0.277863427659E-01 -0.348761091739E-01 5094 -0.819219146257E-05 0.316588809577E-07 5095 1.38344682852 -0.237655728799 5096 0.571920462840E-05 0.789000402199E-07 5097 0.278407057244E-01 -0.348730596256E-01 5098 -0.278616685669E-01 0.348531637075E-01 5099 -0.277768585629E-01 0.349011866590E-01 5100 0.277765262686E-01 -0.348925538497E-01 5101 -0.278559680319E-01 0.348608676092E-01 5102 -0.277698423381E-01 0.348997254360E-01 5103 0.278506097630E-01 -0.348688114653E-01 5104 0.277782923295E-01 -0.348762046138E-01 5105 0.514104353516E-05 -0.156984109428E-05 5106 0.571927308402E-05 0.791880949244E-07 5107 1.38343933621 -0.237654217667 5108 0.277682042170E-01 -0.348864682905E-01 5109 -0.278031247778E-01 0.348612893971E-01 5110 0.277867082422E-01 -0.348546296294E-01 5111 -0.278318406236E-01 0.348999985772E-01 5112 -0.277786781974E-01 0.348826612149E-01 5113 0.277927304461E-01 -0.348584148059E-01 5114 0.278302794330E-01 -0.348934625639E-01 5115 -0.277867106363E-01 0.348875433253E-01 5116 0.278237177196E-01 -0.348648076513E-01 5117 0.278559352378E-01 -0.348608699490E-01 5118 0.277788545952E-01 -0.348826795111E-01 5119 0.796602776487 -0.108681698679 5120 -0.186980009551E-01 -0.358024168522E-01 5121 -0.187384426759E-01 -0.358105203519E-01 5122 -0.186909118857E-01 -0.357937683504E-01 5123 -0.434346616598E-01 -0.356035560570E-01 5124 -0.538651110127E-01 -0.278839525545E-01 5125 -0.538389723194E-01 -0.278984750612E-01 5126 -0.538078102223E-01 -0.278496458258E-01 5127 0.277580218627E-01 -0.348906228936E-01 5128 -0.278506232281E-01 0.348688160519E-01 5129 -0.278304486475E-01 0.348934765107E-01 5130 -0.187049868171E-01 -0.357892253583E-01 5131 0.796681331223 -0.108643360131 5132 -0.186329156142E-01 -0.358234969639E-01 5133 -0.186684929669E-01 -0.357844023676E-01 5134 -0.538386780867E-01 -0.278984577484E-01 5135 -0.538932376025E-01 -0.279273878509E-01 5136 -0.435275330359E-01 -0.355347090886E-01 5137 -0.538981813444E-01 -0.279405805623E-01 5138 -0.277862066037E-01 0.348760914508E-01 5139 -0.277782380322E-01 0.348761919901E-01 5140 0.277867420903E-01 -0.348875306529E-01 5141 -0.187489985543E-01 -0.358161120166E-01 5142 -0.186444234719E-01 -0.357613745781E-01 5143 0.796479671533 -0.108696230042 5144 -0.186578283177E-01 -0.357516684336E-01 5145 -0.538068005097E-01 -0.278496123122E-01 5146 -0.538868619262E-01 -0.279196041768E-01 5147 -0.538974296884E-01 -0.279405521663E-01 5148 -0.433174488947E-01 -0.355864986772E-01 5149 -0.278402708502E-01 0.348805526606E-01 5150 0.277699123394E-01 -0.348997317197E-01 5151 -0.277928126074E-01 0.348584174856E-01 5152 -0.186855947935E-01 -0.357931862398E-01 5153 -0.186738494371E-01 -0.357706052646E-01 5154 -0.186305281710E-01 -0.358322021237E-01 5155 0.796660362318 -0.108655180312 5156 -0.538648332833E-01 -0.278839482358E-01 5157 -0.435147219131E-01 -0.355595310806E-01 5158 -0.538929543762E-01 -0.279273797205E-01 5159 -0.538873992198E-01 -0.279196160997E-01 5160 -0.278392860669E-01 0.349118543538E-01 5161 -0.278407385592E-01 0.348730543870E-01 5162 -0.277680280075E-01 0.348864476264E-01 5163 -0.434208094054E-01 -0.355332895922E-01 5164 -0.538357409080E-01 -0.279003974888E-01 5165 -0.538042777112E-01 -0.279231194707E-01 5166 -0.538460422325E-01 -0.279242272324E-01 5167 0.796601365160 -0.108681769467 5168 -0.186854679295E-01 -0.357931942556E-01 5169 -0.187049082489E-01 -0.357892658496E-01 5170 -0.187489291550E-01 -0.358160934185E-01 5171 0.278430868737E-01 -0.348489833426E-01 5172 -0.277764559506E-01 0.348925522854E-01 5173 0.278317585467E-01 -0.348999962976E-01 5174 -0.538463185503E-01 -0.279242399278E-01 5175 -0.538778770701E-01 -0.279178058318E-01 5176 -0.538907257749E-01 -0.278926806389E-01 5177 -0.435133204689E-01 -0.356497026158E-01 5178 -0.186907834715E-01 -0.357937888797E-01 5179 0.796660349908 -0.108655177917 5180 -0.186683212502E-01 -0.357843927677E-01 5181 -0.186581542212E-01 -0.357516562788E-01 5182 -0.277764065246E-01 0.348806519381E-01 5183 0.278616554445E-01 -0.348531542585E-01 5184 0.278029559378E-01 -0.348612730379E-01 5185 -0.538360358782E-01 -0.279003855725E-01 5186 -0.435029052606E-01 -0.356822064093E-01 5187 -0.539104997448E-01 -0.278696045383E-01 5188 -0.538775938918E-01 -0.279178026423E-01 5189 -0.186979226071E-01 -0.358024374594E-01 5190 -0.186736777752E-01 -0.357706041767E-01 5191 0.796680545534 -0.108643392744 5192 -0.186445082569E-01 -0.357613760492E-01 5193 0.277871527142E-01 -0.348862487238E-01 5194 0.277769126634E-01 -0.349012038151E-01 5195 -0.277866764542E-01 0.348546423507E-01 5196 -0.538052862185E-01 -0.279231360824E-01 5197 -0.539112511111E-01 -0.278696227496E-01 5198 -0.433351250931E-01 -0.355396309453E-01 5199 -0.538912619593E-01 -0.278927067941E-01 5200 -0.187383716712E-01 -0.358105097267E-01 5201 -0.186308531890E-01 -0.358321918877E-01 5202 -0.186330007263E-01 -0.358234644634E-01 5203 0.796481789172 -0.108696130548 5204 1.28947570956 -0.315411654027 5205 -0.868450647436E-05 0.227849094249E-06 5206 0.587733352423E-05 -0.175340610100E-05 5207 0.196783377361E-01 -0.410662677125E-01 5208 0.195778890709E-01 -0.410495214773E-01 5209 -0.196020256134E-01 0.410522702698E-01 5210 -0.196533330182E-01 0.409726665295E-01 5211 -0.196333838321E-01 0.410073299700E-01 5212 0.196678647380E-01 -0.410222324335E-01 5213 -0.195692179543E-01 0.410638889967E-01 5214 0.195887659949E-01 -0.410484376238E-01 5215 -0.868468108492E-05 0.227781581626E-06 5216 1.28947963575 -0.315411682052 5217 0.777137230370E-05 0.230486616036E-06 5218 0.196648738942E-01 -0.410073848506E-01 5219 -0.196856206239E-01 0.409736046600E-01 5220 -0.195909640486E-01 0.410824367391E-01 5221 0.195816329751E-01 -0.410663089350E-01 5222 -0.196718520815E-01 0.409848018739E-01 5223 -0.195837355203E-01 0.410792915922E-01 5224 0.196823792065E-01 -0.409958025558E-01 5225 0.195750409846E-01 -0.410455022686E-01 5226 0.587742704832E-05 -0.175363585783E-05 5227 0.777146706334E-05 0.230772113260E-06 5228 1.28947066307 -0.315409952328 5229 0.195772399547E-01 -0.410642998397E-01 5230 -0.196074916454E-01 0.410130116285E-01 5231 0.195845356963E-01 -0.410135509944E-01 5232 -0.196611351627E-01 0.410484670953E-01 5233 -0.195815677084E-01 0.410563887860E-01 5234 0.195932481416E-01 -0.410113475017E-01 5235 0.196573150347E-01 -0.410388501265E-01 5236 -0.196023616965E-01 0.410555196138E-01 5237 0.196333378410E-01 -0.410073446476E-01 5238 0.196718163231E-01 -0.409848117138E-01 5239 0.195817407907E-01 -0.410564146572E-01 5240 0.779079734991 -0.191064118078 5241 -0.319717698280E-01 -0.771090339990E-01 5242 -0.319861622934E-01 -0.771560957898E-01 5243 -0.319699938843E-01 -0.771008606636E-01 5244 -0.453165426642E-01 -0.732659036332E-01 5245 -0.699644536626E-01 -0.603279452235E-01 5246 -0.699314669103E-01 -0.603441871352E-01 5247 -0.699102975568E-01 -0.602328816315E-01 5248 0.195690922598E-01 -0.410638871893E-01 5249 -0.196823909904E-01 0.409958083192E-01 5250 -0.196574820348E-01 0.410388723044E-01 5251 -0.319904700748E-01 -0.770949392454E-01 5252 0.779119319635 -0.190941847541 5253 -0.318856624333E-01 -0.771256730053E-01 5254 -0.319681287728E-01 -0.770535152775E-01 5255 -0.699311658954E-01 -0.603441726721E-01 5256 -0.699712038648E-01 -0.604145874146E-01 5257 -0.453897177446E-01 -0.732630093317E-01 5258 -0.699759254538E-01 -0.603861174589E-01 5259 -0.195886354612E-01 0.410484057779E-01 5260 -0.195749923295E-01 0.410454771702E-01 5261 0.196023979049E-01 -0.410554976295E-01 5262 -0.320246587360E-01 -0.771877444229E-01 5263 -0.319324759180E-01 -0.770704816407E-01 5264 0.778944852467 -0.191109208722 5265 -0.319504100416E-01 -0.770651350753E-01 5266 -0.699092622492E-01 -0.602328522005E-01 5267 -0.699696206004E-01 -0.603560584477E-01 5268 -0.699751544126E-01 -0.603860897942E-01 5269 -0.451613124091E-01 -0.732061885418E-01 5270 -0.196677182671E-01 0.410222210337E-01 5271 0.195838044670E-01 -0.410793013144E-01 5272 -0.195933301077E-01 0.410113532556E-01 5273 -0.319603714653E-01 -0.771032406992E-01 5274 -0.319676633472E-01 -0.770355986392E-01 5275 -0.318735962094E-01 -0.771382389697E-01 5276 0.779094734066 -0.190967575236 5277 -0.699641695238E-01 -0.603279468222E-01 5278 -0.453743427679E-01 -0.732920444572E-01 5279 -0.699709131732E-01 -0.604145792085E-01 5280 -0.699701725182E-01 -0.603560704962E-01 5281 -0.196783834958E-01 0.410662540374E-01 5282 -0.196649096331E-01 0.410073718899E-01 5283 -0.195770672207E-01 0.410642716737E-01 5284 -0.452912275032E-01 -0.731743233398E-01 5285 -0.699072555247E-01 -0.603377595380E-01 5286 -0.699086880997E-01 -0.603276554390E-01 5287 -0.699189959129E-01 -0.603611128696E-01 5288 0.779078276323 -0.191064236397 5289 -0.319602457805E-01 -0.771032593177E-01 5290 -0.319903966300E-01 -0.770950003240E-01 5291 -0.320245852129E-01 -0.771877181943E-01 5292 0.196534794791E-01 -0.409726773585E-01 5293 -0.195815633930E-01 0.410663038874E-01 5294 0.196610532739E-01 -0.410484618322E-01 5295 -0.699192775462E-01 -0.603611202106E-01 5296 -0.699413110693E-01 -0.604007276511E-01 5297 -0.699921075929E-01 -0.603364271732E-01 5298 -0.453454035379E-01 -0.733865215473E-01 5299 -0.319698653483E-01 -0.771008925177E-01 5300 0.779094722367 -0.190967569559 5301 -0.319679519396E-01 -0.770535036078E-01 5302 -0.319507414973E-01 -0.770651109137E-01 5303 -0.195780150837E-01 0.410495224491E-01 5304 0.196856093600E-01 -0.409735940681E-01 5305 0.196073251245E-01 -0.410129872984E-01 5306 -0.699075572584E-01 -0.603377440219E-01 5307 -0.453230915766E-01 -0.734312608400E-01 5308 -0.700175235000E-01 -0.603145919476E-01 5309 -0.699410205210E-01 -0.604007244486E-01 5310 -0.319716962351E-01 -0.771090747656E-01 5311 -0.319674867205E-01 -0.770355956290E-01 5312 0.779118509168 -0.190941899926 5313 -0.319325592141E-01 -0.770704716341E-01 5314 0.196021561181E-01 -0.410523013374E-01 5315 0.195910125540E-01 -0.410824665668E-01 5316 -0.195844990263E-01 0.410135729745E-01 5317 -0.699097207034E-01 -0.603276679132E-01 5318 -0.700182935573E-01 -0.603146096835E-01 5319 -0.452331754052E-01 -0.731897139371E-01 5320 -0.699926573471E-01 -0.603364540697E-01 5321 -0.319860853749E-01 -0.771560783523E-01 5322 -0.318739259464E-01 -0.771382169509E-01 5323 -0.318857457351E-01 -0.771256284671E-01 5324 0.778947039056 -0.191109045723 5325 1.33432247745 -0.269556503216 5326 -0.802098602062E-05 -0.167773807349E-06 5327 0.411811291745E-05 0.387296581418E-06 5328 0.220718436637E-01 -0.403624546983E-01 5329 0.220185537379E-01 -0.403839296619E-01 5330 -0.220343353908E-01 0.403712701172E-01 5331 -0.220384550571E-01 0.403232022294E-01 5332 -0.220299385857E-01 0.403440559717E-01 5333 0.220623093842E-01 -0.403347612740E-01 5334 -0.220128709573E-01 0.403765443062E-01 5335 0.220308256904E-01 -0.403750782759E-01 5336 -0.802103564908E-05 -0.167899018996E-06 5337 1.33432514779 -0.269555534786 5338 0.397153951188E-05 0.298144922403E-05 5339 0.220523113371E-01 -0.403258581074E-01 5340 -0.220520571308E-01 0.403127971077E-01 5341 -0.220393029085E-01 0.403869007679E-01 5342 0.220238620256E-01 -0.403902916185E-01 5343 -0.220509459215E-01 0.403280330955E-01 5344 -0.220271941641E-01 0.403856376970E-01 5345 0.220534903494E-01 -0.403162770656E-01 5346 0.220213836184E-01 -0.403838332660E-01 5347 0.411807281298E-05 0.387376939077E-06 5348 0.397166496974E-05 0.298175544174E-05 5349 1.33431894753 -0.269556831523 5350 0.220250388699E-01 -0.403776741243E-01 5351 -0.220237261835E-01 0.403454415367E-01 5352 0.220204563013E-01 -0.403568931834E-01 5353 -0.220628087878E-01 0.403655005895E-01 5354 -0.220268869232E-01 0.403857181180E-01 5355 0.220132663372E-01 -0.403433347995E-01 5356 0.220573396447E-01 -0.403579096920E-01 5357 -0.220397709109E-01 0.403704045478E-01 5358 0.220299005232E-01 -0.403440684700E-01 5359 0.220509155527E-01 -0.403280376782E-01 5360 0.220270689022E-01 -0.403857378230E-01 5361 0.838572295922 -0.199365569871 5362 0.228175683679E-01 -0.856645844838E-01 5363 0.228186745108E-01 -0.856782870023E-01 5364 0.228188411946E-01 -0.856601897552E-01 5365 -0.281729369143E-02 -0.838114361100E-01 5366 -0.317906707626E-01 -0.877177658683E-01 5367 -0.317660220146E-01 -0.877285838533E-01 5368 -0.317818144236E-01 -0.876523377239E-01 5369 0.220127479061E-01 -0.403765425498E-01 5370 -0.220534997953E-01 0.403162797882E-01 5371 -0.220575180788E-01 0.403579274189E-01 5372 0.228004736609E-01 -0.856596310797E-01 5373 0.838570577833 -0.199311614864 5374 0.228843296709E-01 -0.856638692494E-01 5375 0.228023688941E-01 -0.856457563896E-01 5376 -0.317657046516E-01 -0.877285707561E-01 5377 -0.317705482518E-01 -0.877691012187E-01 5378 -0.285645290520E-02 -0.837719247767E-01 5379 -0.318057400466E-01 -0.877654685822E-01 5380 -0.220306780357E-01 0.403750543734E-01 5381 -0.220213235309E-01 0.403838159078E-01 5382 0.220398020685E-01 -0.403703881794E-01 5383 0.228142474085E-01 -0.857163770597E-01 5384 0.228621858129E-01 -0.856320380049E-01 5385 0.838477683076 -0.199422346985 5386 0.228468738043E-01 -0.856315511840E-01 5387 -0.317807310796E-01 -0.876523128705E-01 5388 -0.318021941060E-01 -0.877469130391E-01 5389 -0.318049358145E-01 -0.877654437273E-01 5390 -0.271576894719E-02 -0.837438253527E-01 5391 -0.220621498879E-01 0.403347498713E-01 5392 0.220272714059E-01 -0.403856481374E-01 5393 -0.220133546613E-01 0.403433384891E-01 5394 0.228321798059E-01 -0.856574476721E-01 5395 0.228014108618E-01 -0.856205859338E-01 5396 0.229008957412E-01 -0.856713424693E-01 5397 0.838562800607 -0.199339503803 5398 -0.317903681756E-01 -0.877177692006E-01 5399 -0.283188195389E-02 -0.838008989507E-01 5400 -0.317702453160E-01 -0.877690937847E-01 5401 -0.318027690386E-01 -0.877469226510E-01 5402 -0.220718816684E-01 0.403624431824E-01 5403 -0.220523419244E-01 0.403258503238E-01 5404 -0.220248573784E-01 0.403776520343E-01 5405 -0.281077176320E-02 -0.837270751244E-01 5406 -0.317445457477E-01 -0.877022968794E-01 5407 -0.317549440875E-01 -0.877308715975E-01 5408 -0.317565524335E-01 -0.877357142712E-01 5409 0.838570821853 -0.199365690622 5410 0.228323268368E-01 -0.856574655733E-01 5411 0.228005748403E-01 -0.856596907579E-01 5412 0.228143173624E-01 -0.857163533817E-01 5413 0.220386146929E-01 -0.403232129131E-01 5414 -0.220237845457E-01 0.403902861774E-01 5415 0.220627206842E-01 -0.403654973865E-01 5416 -0.317568521225E-01 -0.877357189905E-01 5417 -0.317552200407E-01 -0.877507141601E-01 5418 -0.318070424749E-01 -0.877341481996E-01 5419 -0.281745848577E-02 -0.838669981377E-01 5420 0.228189912939E-01 -0.856602200077E-01 5421 0.838562785129 -0.199339497613 5422 0.228025568774E-01 -0.856457432562E-01 5423 0.228465057976E-01 -0.856315285084E-01 5424 -0.220186772247E-01 0.403839305713E-01 5425 0.220520482168E-01 -0.403127892190E-01 5426 0.220235482517E-01 -0.403454214077E-01 5427 -0.317448635387E-01 -0.877022784837E-01 5428 -0.278213227765E-02 -0.838915580134E-01 5429 -0.318296606055E-01 -0.877136735242E-01 5430 -0.317549174707E-01 -0.877507124240E-01 5431 0.228176697668E-01 -0.856646223853E-01 5432 0.228015984221E-01 -0.856205822314E-01 5433 0.838569751689 -0.199311667284 5434 0.228620820632E-01 -0.856320299063E-01 5435 0.220344833250E-01 -0.403712933009E-01 5436 0.220393629965E-01 -0.403869229724E-01 5437 -0.220204249060E-01 0.403569095242E-01 5438 -0.317560241986E-01 -0.877308770995E-01 5439 -0.318304633755E-01 -0.877136868656E-01 5440 -0.274031097603E-02 -0.837520245869E-01 5441 -0.318076150869E-01 -0.877341723764E-01 5442 0.228187484012E-01 -0.856782704214E-01 5443 0.229005296254E-01 -0.856713213521E-01 5444 0.228842263969E-01 -0.856638244415E-01 5445 0.838479900672 -0.199422181843 5446 1.31676077827 -0.295253608743 5447 -0.836543886371E-05 0.190116668200E-06 5448 0.462810429709E-05 -0.130746078927E-05 5449 0.228035849475E-01 -0.513065178639E-01 5450 0.227423645168E-01 -0.512859437455E-01 5451 -0.227478067329E-01 0.512849604897E-01 5452 -0.227815135909E-01 0.512438053553E-01 5453 -0.227816385248E-01 0.512728527541E-01 5454 0.227835285742E-01 -0.512815121870E-01 5455 -0.227218961953E-01 0.512998572295E-01 5456 0.227482293921E-01 -0.512843132868E-01 5457 -0.836536756138E-05 0.190000665680E-06 5458 1.31676379123 -0.295253435667 5459 0.456674416596E-05 0.718529253741E-06 5460 0.227804251934E-01 -0.512775657617E-01 5461 -0.228023349560E-01 0.512468340653E-01 5462 -0.227441067330E-01 0.513054370412E-01 5463 0.227520580634E-01 -0.512972794688E-01 5464 -0.227988420218E-01 0.512553229809E-01 5465 -0.227437513811E-01 0.513041691541E-01 5466 0.227881647845E-01 -0.512693083376E-01 5467 0.227419340060E-01 -0.512835271573E-01 5468 0.462819899263E-05 -0.130765640688E-05 5469 0.456680570126E-05 0.718752281346E-06 5470 1.31675645333 -0.295252141119 5471 0.227280880837E-01 -0.512949750118E-01 5472 -0.227556525614E-01 0.512763848929E-01 5473 0.227372208459E-01 -0.512578969085E-01 5474 -0.227950377696E-01 0.512848450683E-01 5475 -0.227446392798E-01 0.512869710481E-01 5476 0.227397407641E-01 -0.512737146488E-01 5477 0.227891859400E-01 -0.512818073337E-01 5478 -0.227430564559E-01 0.512892099988E-01 5479 0.227816030705E-01 -0.512728708613E-01 5480 0.227988142580E-01 -0.512553334127E-01 5481 0.227448235594E-01 -0.512869885311E-01 5482 0.888454234565 -0.264166914128 5483 0.438209829391E-01 -0.971682255094E-01 5484 0.437827197157E-01 -0.971975407767E-01 5485 0.438208658687E-01 -0.971679978334E-01 5486 0.389627074038E-01 -0.115218715416 5487 0.743399596330E-02 -0.110956169472 5488 0.745933857652E-02 -0.110967326352 5489 0.749639373204E-02 -0.110899817616 5490 0.227217738046E-01 -0.512998612286E-01 5491 -0.227881719692E-01 0.512693067288E-01 5492 -0.227893696918E-01 0.512818282418E-01 5493 0.438074297326E-01 -0.971565779401E-01 5494 0.888528624807 -0.264100505712 5495 0.438894298468E-01 -0.971935574395E-01 5496 0.438444989176E-01 -0.971422224644E-01 5497 0.745967265066E-02 -0.110967314640 5498 0.741183444524E-02 -0.111016279134 5499 0.388667034593E-01 -0.115180100012 5500 0.741837824989E-02 -0.111016887523 5501 -0.227480746507E-01 0.512842821266E-01 5502 -0.227418698737E-01 0.512835043870E-01 5503 0.227430870250E-01 -0.512891910656E-01 5504 0.437692166041E-01 -0.972022490263E-01 5505 0.438687263734E-01 -0.971217114165E-01 5506 0.888342921629 -0.264202672033 5507 0.438485575165E-01 -0.971243285016E-01 5508 0.749753653053E-02 -0.110899795972 5509 0.743655062051E-02 -0.110992650894 5510 0.741922550405E-02 -0.111016863655 5511 0.391079543726E-01 -0.115192032091 5512 -0.227833615285E-01 0.512814944145E-01 5513 0.227438324420E-01 -0.513041833961E-01 5514 -0.227398324210E-01 0.512737219484E-01 5515 0.438377952045E-01 -0.971561093393E-01 5516 0.438403018946E-01 -0.971225910811E-01 5517 0.439058955672E-01 -0.971982600129E-01 5518 0.888516098850 -0.264123174612 5519 0.743432121628E-02 -0.110956176453 5520 0.389042406173E-01 -0.115198280183 5521 0.741215123596E-02 -0.111016271020 5522 0.743594448455E-02 -0.110992660020 5523 -0.228036202767E-01 0.513065008607E-01 5524 -0.227804531155E-01 0.512775521096E-01 5525 -0.227279041987E-01 0.512949549454E-01 5526 0.389965340491E-01 -0.115131957784 5527 0.747556892846E-02 -0.110956709313 5528 0.750899726295E-02 -0.110970967278 5529 0.747290085485E-02 -0.110985956076 5530 0.888452731165 -0.264167071772 5531 0.438379476905E-01 -0.971561302946E-01 5532 0.438075378430E-01 -0.971566474940E-01 5533 0.437692878813E-01 -0.972022205998E-01 5534 0.227816807113E-01 -0.512438224655E-01 5535 -0.227519765714E-01 0.512972702697E-01 5536 0.227949462167E-01 -0.512848382040E-01 5537 0.747257977381E-02 -0.110985956000 5538 0.744255229518E-02 -0.111002499582 5539 0.742339079483E-02 -0.110965680495 5540 0.389028593079E-01 -0.115307272369 5541 0.438210225762E-01 -0.971680302980E-01 5542 0.888516080567 -0.264123166272 5543 0.438446894266E-01 -0.971422022454E-01 5544 0.438481773469E-01 -0.971243077171E-01 5545 -0.227424871305E-01 0.512859387489E-01 5546 0.228023283332E-01 -0.512468303720E-01 5547 0.227554692962E-01 -0.512763615320E-01 5548 0.747523413928E-02 -0.110956688258 5549 0.389302648815E-01 -0.115316752122 5550 0.739983732120E-02 -0.110935810794 5551 0.744286850593E-02 -0.111002497874 5552 0.438210909597E-01 -0.971682725741E-01 5553 0.438404916404E-01 -0.971225812219E-01 5554 0.888527778084 -0.264100574428 5555 0.438686171223E-01 -0.971217005912E-01 5556 0.227479616465E-01 -0.512849907540E-01 5557 0.227441706306E-01 -0.513054646776E-01 5558 -0.227371899526E-01 0.512579158614E-01 5559 0.750785864477E-02 -0.110970967723 5560 0.739899175694E-02 -0.110935822364 5561 0.390760933997E-01 -0.115148925933 5562 0.742278759621E-02 -0.110965704522 5563 0.437827960966E-01 -0.971975185441E-01 5564 0.439055178617E-01 -0.971982406055E-01 5565 0.438893210713E-01 -0.971935081840E-01 5566 0.888345189129 -0.264202456990 5567 1.29025035589 -0.210097891841 5568 -0.785364519761E-05 -0.838504749982E-07 5569 0.431012214119E-05 0.264308551973E-06 5570 0.251164449409E-01 -0.332480441861E-01 5571 0.250401142264E-01 -0.332631423696E-01 5572 -0.250611384845E-01 0.332532347876E-01 5573 -0.250793681563E-01 0.331976382318E-01 5574 -0.250747154692E-01 0.332121390447E-01 5575 0.251105355963E-01 -0.332270402104E-01 5576 -0.250437339409E-01 0.332627737056E-01 5577 0.250569665897E-01 -0.332558247862E-01 5578 -0.785360052114E-05 -0.839189495792E-07 5579 1.29025312586 -0.210097040276 5580 0.439972711916E-05 0.218107778984E-05 5581 0.251064240331E-01 -0.332081001915E-01 5582 -0.251039556206E-01 0.331861193290E-01 5583 -0.250649836330E-01 0.332796201048E-01 5584 0.250488813518E-01 -0.332635201801E-01 5585 -0.250965907605E-01 0.331990568917E-01 5586 -0.250512253081E-01 0.332693889232E-01 5587 0.251089499700E-01 -0.331993984113E-01 5588 0.250418573942E-01 -0.332628260981E-01 5589 0.430998342759E-05 0.264285934113E-06 5590 0.439974127489E-05 0.218128639417E-05 5591 1.29024651481 -0.210097893775 5592 0.250489015033E-01 -0.332651372566E-01 5593 -0.250639738094E-01 0.332238282463E-01 5594 0.250411741976E-01 -0.332360811558E-01 5595 -0.251006429525E-01 0.332427806828E-01 5596 -0.250473150929E-01 0.332646148025E-01 5597 0.250486638185E-01 -0.332205733918E-01 5598 0.250972471935E-01 -0.332344170113E-01 5599 -0.250705540184E-01 0.332639425337E-01 5600 0.250746832505E-01 -0.332121567108E-01 5601 0.250965646886E-01 -0.331990665744E-01 5602 0.250474985223E-01 -0.332646223431E-01 5603 0.920041902609 -0.250640353985 5604 0.822803516458E-01 -0.801210486276E-01 5605 0.822581685710E-01 -0.801953818927E-01 5606 0.822806247687E-01 -0.801284124474E-01 5607 0.643545630645E-01 -0.110836896269 5608 0.435117509028E-01 -0.847050815661E-01 5609 0.435307346488E-01 -0.847221333354E-01 5610 0.435641209194E-01 -0.846090115654E-01 5611 0.250436147663E-01 -0.332627825994E-01 5612 -0.251089496752E-01 0.331993942030E-01 5613 -0.250974371448E-01 0.332344296750E-01 5614 0.822549940195E-01 -0.801180178384E-01 5615 0.920103597014 -0.250516893287 5616 0.823686770991E-01 -0.801442160257E-01 5617 0.822943076047E-01 -0.800741655796E-01 5618 0.435310863969E-01 -0.847221129394E-01 5619 0.435045625452E-01 -0.847997006060E-01 5620 0.642466451275E-01 -0.110867411185 5621 0.435154582455E-01 -0.847694895480E-01 5622 -0.250568031515E-01 0.332558020205E-01 5623 -0.250417913617E-01 0.332628097169E-01 5624 0.250705887201E-01 -0.332639267260E-01 5625 0.822292131193E-01 -0.802009093910E-01 5626 0.823116356142E-01 -0.800739717146E-01 5627 0.919942399098 -0.250716706632 5628 0.822956966348E-01 -0.800868272519E-01 5629 0.435653201475E-01 -0.846089644768E-01 5630 0.435268126902E-01 -0.847406836041E-01 5631 0.435163454491E-01 -0.847694478974E-01 5632 0.645215798105E-01 -0.110773415523 5633 -0.251103545867E-01 0.332270272718E-01 5634 0.250513138836E-01 -0.332694007199E-01 5635 -0.250487618897E-01 0.332205779341E-01 5636 0.822979855100E-01 -0.801080275012E-01 5637 0.822982976466E-01 -0.800432642945E-01 5638 0.823931311615E-01 -0.801440709368E-01 5639 0.920102063043 -0.250553311607 5640 0.435120956385E-01 -0.847050818589E-01 5641 0.643048426173E-01 -0.110869960543 5642 0.435048936283E-01 -0.847996860491E-01 5643 0.435261777537E-01 -0.847407046364E-01 5644 -0.251164770100E-01 0.332480275882E-01 5645 -0.251064501542E-01 0.332080871814E-01 5646 -0.250487184555E-01 0.332651271270E-01 5647 0.643798406535E-01 -0.110737822780 5648 0.435714896384E-01 -0.846901119007E-01 5649 0.435891548897E-01 -0.846758013157E-01 5650 0.435653325415E-01 -0.847287179928E-01 5651 0.920040362480 -0.250640524320 5652 0.822981514183E-01 -0.801080441906E-01 5653 0.822551182379E-01 -0.801180799828E-01 5654 0.822292852377E-01 -0.802008848235E-01 5655 0.250795490866E-01 -0.331976504160E-01 5656 -0.250487925660E-01 0.332635135462E-01 5657 0.251005449868E-01 -0.332427767292E-01 5658 0.435649915296E-01 -0.847287243485E-01 5659 0.435371453883E-01 -0.847796671833E-01 5660 0.435005281350E-01 -0.847123830010E-01 5661 0.643423078106E-01 -0.110978656518 5662 0.822807947006E-01 -0.801284404898E-01 5663 0.920102042040 -0.250553304268 5664 0.822945054739E-01 -0.800741459096E-01 5665 0.822952915956E-01 -0.800868120016E-01 5666 -0.250402336663E-01 0.332631326323E-01 5667 0.251039562101E-01 -0.331861181581E-01 5668 0.250637842116E-01 -0.332238131608E-01 5669 0.435711365342E-01 -0.846900976010E-01 5670 0.643593441931E-01 -0.110981969193 5671 0.434672547979E-01 -0.846885748679E-01 5672 0.435374762656E-01 -0.847796593463E-01 5673 0.822804753268E-01 -0.801210866296E-01 5674 0.822984953108E-01 -0.800432553843E-01 5675 0.920102724384 -0.250516970888 5676 0.823115149949E-01 -0.800739660841E-01 5677 0.250613021401E-01 -0.332532567476E-01 5678 0.250650495921E-01 -0.332796416021E-01 5679 -0.250411391615E-01 0.332360967846E-01 5680 0.435879590678E-01 -0.846758247908E-01 5681 0.434663683983E-01 -0.846886026421E-01 5682 0.644566898938E-01 -0.110739164229 5683 0.434998961395E-01 -0.847124182814E-01 5684 0.822582451356E-01 -0.801953619038E-01 5685 0.823927284831E-01 -0.801440560318E-01 5686 0.823685559359E-01 -0.801441695855E-01 5687 0.919944727582 -0.250716470062 5688 1.25417301251 -0.181533290672 5689 -0.752624096616E-05 -0.267062309941E-07 5690 0.439600181193E-05 -0.297851750530E-06 5691 0.197443886638E-01 -0.232631526920E-01 5692 0.196569710819E-01 -0.232661363116E-01 5693 -0.196748844457E-01 0.232659637504E-01 5694 -0.197006873022E-01 0.232054701651E-01 5695 -0.197033492633E-01 0.232318686612E-01 5696 0.197240866149E-01 -0.232414568691E-01 5697 -0.196489861511E-01 0.232865796714E-01 5698 0.196755097417E-01 -0.232665634301E-01 5699 -0.752616157063E-05 -0.264477238778E-07 5700 1.25417567310 -0.181532831320 5701 0.439388524709E-05 0.141773144071E-05 5702 0.197208585846E-01 -0.232299255752E-01 5703 -0.197340025657E-01 0.231960529703E-01 5704 -0.196749869414E-01 0.232950741485E-01 5705 0.196661999188E-01 -0.232810653012E-01 5706 -0.197237043000E-01 0.232052876415E-01 5707 -0.196694971978E-01 0.232883757473E-01 5708 0.197303138980E-01 -0.232160141079E-01 5709 0.196548723067E-01 -0.232684634975E-01 5710 0.439571792699E-05 -0.298779638157E-06 5711 0.439398187750E-05 0.141782699402E-05 5712 1.25416917943 -0.181532800802 5713 0.196627029609E-01 -0.232811270522E-01 5714 -0.196799698430E-01 0.232423758173E-01 5715 0.196573401178E-01 -0.232420431533E-01 5716 -0.197196496579E-01 0.232529579817E-01 5717 -0.196676463566E-01 0.232684938106E-01 5718 0.196642784284E-01 -0.232453461202E-01 5719 0.197123519177E-01 -0.232498759652E-01 5720 -0.196828369377E-01 0.232707434663E-01 5721 0.197033164950E-01 -0.232318794341E-01 5722 0.197236781992E-01 -0.232052930141E-01 5723 0.196678291235E-01 -0.232685055252E-01 5724 0.935858989639 -0.166547251361 5725 0.778815918950E-01 -0.214370207954E-01 5726 0.779011977840E-01 -0.214234436015E-01 5727 0.779082625270E-01 -0.214410784997E-01 5728 0.731359916830E-01 -0.501696859825E-01 5729 0.269161068122E-01 -0.382666757954E-01 5730 0.269463184542E-01 -0.382797534696E-01 5731 0.269158547361E-01 -0.382090067382E-01 5732 0.196488666677E-01 -0.232865805611E-01 5733 -0.197303118381E-01 0.232160170454E-01 5734 -0.197125431519E-01 0.232498855830E-01 5735 0.778748924649E-01 -0.214353298395E-01 5736 0.935834619235 -0.166530796394 5737 0.779791009441E-01 -0.214340313220E-01 5738 0.778813239866E-01 -0.214375511692E-01 5739 0.269466752559E-01 -0.382797277068E-01 5740 0.269472983417E-01 -0.383088406656E-01 5741 0.731360954110E-01 -0.500618023138E-01 5742 0.268728780394E-01 -0.383136492906E-01 5743 -0.196753457006E-01 0.232665472317E-01 5744 -0.196548064829E-01 0.232684505083E-01 5745 0.196828729864E-01 -0.232707279784E-01 5746 0.779066456696E-01 -0.214685658796E-01 5747 0.779666991695E-01 -0.213993145006E-01 5748 0.935742300842 -0.166579307748 5749 0.779683191999E-01 -0.214058934405E-01 5750 0.269170683246E-01 -0.382089538711E-01 5751 0.268863387258E-01 -0.382796293407E-01 5752 0.268737760181E-01 -0.383136074802E-01 5753 0.732722842309E-01 -0.500643309801E-01 5754 -0.197239031578E-01 0.232414545099E-01 5755 0.196695873980E-01 -0.232883812388E-01 5756 -0.196643785095E-01 0.232453465407E-01 5757 0.779077605541E-01 -0.214159466776E-01 5758 0.778724780316E-01 -0.214027712556E-01 5759 0.779877837952E-01 -0.214252656757E-01 5760 0.935830868972 -0.166538355629 5761 0.269164552374E-01 -0.382666704509E-01 5762 0.731656297958E-01 -0.500615993802E-01 5763 0.269476345073E-01 -0.383088254720E-01 5764 0.268856968009E-01 -0.382796488967E-01 5765 -0.197444211979E-01 0.232631433512E-01 5766 -0.197208846292E-01 0.232299171549E-01 5767 -0.196625204454E-01 0.232811121693E-01 5768 0.731267404713E-01 -0.500269782017E-01 5769 0.269460379109E-01 -0.382427571075E-01 5770 0.269352005024E-01 -0.382972464958E-01 5771 0.269311724952E-01 -0.382702921475E-01 5772 0.935857414523 -0.166547373688 5773 0.779079361563E-01 -0.214159455907E-01 5774 0.778750249580E-01 -0.214353637021E-01 5775 0.779067207487E-01 -0.214685480661E-01 5776 0.197008705067E-01 -0.232054726391E-01 5777 -0.196661094468E-01 0.232810648916E-01 5778 0.197195497388E-01 -0.232529577527E-01 5779 0.269308263944E-01 -0.382703046218E-01 5780 0.269515505695E-01 -0.382552072675E-01 5781 0.268771562269E-01 -0.382789121964E-01 5782 0.731784947254E-01 -0.501536140804E-01 5783 0.779084405015E-01 -0.214410889164E-01 5784 0.935830847121 -0.166538352394 5785 0.778815314710E-01 -0.214375290189E-01 5786 0.779678952418E-01 -0.214059027679E-01 5787 -0.196570908152E-01 0.232661342093E-01 5788 0.197340049042E-01 -0.231960444733E-01 5789 0.196797787512E-01 -0.232423643208E-01 5790 0.269456794273E-01 -0.382427480488E-01 5791 0.731803514822E-01 -0.501698414814E-01 5792 0.268578364608E-01 -0.382456809287E-01 5793 0.269518869796E-01 -0.382551983835E-01 5794 0.778817231642E-01 -0.214370301077E-01 5795 0.778726855511E-01 -0.214027601880E-01 5796 0.935833727067 -0.166530856162 5797 0.779665714500E-01 -0.213993273280E-01 5798 0.196750487081E-01 -0.232659785089E-01 5799 0.196750526413E-01 -0.232950925316E-01 5800 -0.196573036209E-01 0.232420590749E-01 5801 0.269339881363E-01 -0.382972751663E-01 5802 0.268569384210E-01 -0.382457089404E-01 5803 0.732670050782E-01 -0.500713365763E-01 5804 0.268765160806E-01 -0.382789468825E-01 5805 0.779012751498E-01 -0.214234313868E-01 5806 0.779873612012E-01 -0.214252749933E-01 5807 0.779789718791E-01 -0.214340028331E-01 5808 0.935744682068 -0.166579133867 5809 1.20771722551 -0.188501757699 5810 -0.734653540914E-05 0.257577882737E-06 5811 0.492623109700E-05 -0.656171588111E-06 5812 0.685559194856E-02 -0.204260903111E-01 5813 0.674629593465E-02 -0.204293298531E-01 5814 -0.677551582747E-02 0.204391210826E-01 5815 -0.680411347974E-02 0.203742836172E-01 5816 -0.682255164577E-02 0.203876018907E-01 5817 0.683553341128E-02 -0.204242592997E-01 5818 -0.675892204251E-02 0.204667121881E-01 5819 0.677336139374E-02 -0.204335467399E-01 5820 -0.734630706788E-05 0.257644808222E-06 5821 1.20772013763 -0.188501661574 5822 0.482506624432E-05 0.397487438280E-06 5823 0.684104946924E-02 -0.204118568425E-01 5824 -0.684167949563E-02 0.203608330745E-01 5825 -0.677525682965E-02 0.204713461500E-01 5826 0.677173533025E-02 -0.204388449351E-01 5827 -0.682538080548E-02 0.203691952329E-01 5828 -0.677447139100E-02 0.204512352727E-01 5829 0.684888547143E-02 -0.203941504606E-01 5830 0.675003729191E-02 -0.204351946684E-01 5831 0.492582217069E-05 -0.656290081356E-06 5832 0.482506571560E-05 0.397737758612E-06 5833 1.20771281992 -0.188500878750 5834 0.676400597236E-02 -0.204576961815E-01 5835 -0.679359760439E-02 0.204122007438E-01 5836 0.675036062694E-02 -0.204141100498E-01 5837 -0.681906589920E-02 0.204165988902E-01 5838 -0.675767465560E-02 0.204343765054E-01 5839 0.678298843679E-02 -0.204160097366E-01 5840 0.681739306454E-02 -0.204181256337E-01 5841 -0.677749469729E-02 0.204516500882E-01 5842 0.682251460632E-02 -0.203876107919E-01 5843 0.682535173368E-02 -0.203691993210E-01 5844 0.675786074052E-02 -0.204343919729E-01 5845 0.911168448718 -0.159782993120 5846 0.384654032382E-01 0.109645734100E-02 5847 0.384387050435E-01 0.108236137765E-02 5848 0.384904317859E-01 0.110516892534E-02 5849 0.602336504182E-01 -0.140592218316E-01 5850 -0.338863019248E-02 -0.273619029218E-01 5851 -0.335860779175E-02 -0.273694469145E-01 5852 -0.335276472737E-02 -0.272789468115E-01 5853 0.675879764682E-02 -0.204667100904E-01 5854 -0.684888698754E-02 0.203941566415E-01 5855 -0.681758339876E-02 0.204181355123E-01 5856 0.384516231879E-01 0.111186438044E-02 5857 0.911210794479 -0.159735774374 5858 0.385763597906E-01 0.110266556948E-02 5859 0.384909148520E-01 0.112840589778E-02 5860 -0.335824649921E-02 -0.273694170933E-01 5861 -0.338534607227E-02 -0.274316003904E-01 5862 0.601219190694E-01 -0.139561975893E-01 5863 -0.342216972207E-02 -0.274447961744E-01 5864 -0.677320048450E-02 0.204335316970E-01 5865 -0.674997354926E-02 0.204351814958E-01 5866 0.677753164595E-02 -0.204516332059E-01 5867 0.384378769087E-01 0.105588288612E-02 5868 0.385387566937E-01 0.117186403687E-02 5869 0.911005101512 -0.159851412308 5870 0.385358074670E-01 0.117252930273E-02 5871 -0.335152624087E-02 -0.272788849618E-01 5872 -0.341667256112E-02 -0.273921377163E-01 5873 -0.342125050254E-02 -0.274447488934E-01 5874 0.603898761758E-01 -0.139393682765E-01 5875 -0.683535369824E-02 0.204242595756E-01 5876 0.677455878938E-02 -0.204512389513E-01 5877 -0.678308696602E-02 0.204160090434E-01 5878 0.384846057696E-01 0.112349423910E-02 5879 0.384859114286E-01 0.115391844034E-02 5880 0.385810146255E-01 0.110027688315E-02 5881 0.911185912489 -0.159750820371 5882 -0.338827576502E-02 -0.273618933234E-01 5883 0.601497548685E-01 -0.139650673293E-01 5884 -0.338500367546E-02 -0.274315827155E-01 5885 -0.341733095929E-02 -0.273921609834E-01 5886 -0.685562872276E-02 0.204260825414E-01 5887 -0.684107835152E-02 0.204118494791E-01 5888 -0.676382042619E-02 0.204576781054E-01 5889 0.601935123904E-01 -0.139151776356E-01 5890 -0.334392075890E-02 -0.273596943000E-01 5891 -0.331669923769E-02 -0.273834565828E-01 5892 -0.336895431488E-02 -0.273853246319E-01 5893 0.911166813452 -0.159783111723 5894 0.384847746429E-01 0.112350416124E-02 5895 0.384517397417E-01 0.111184110312E-02 5896 0.384379600115E-01 0.105590024379E-02 5897 0.680429278469E-02 -0.203742828761E-01 5898 -0.677164793301E-02 0.204388465431E-01 5899 0.681896764747E-02 -0.204166001521E-01 5900 -0.336930699283E-02 -0.273853420853E-01 5901 -0.339479566556E-02 -0.273831906585E-01 5902 -0.343278871814E-02 -0.273842649527E-01 5903 0.602009458000E-01 -0.140895988269E-01 5904 0.384906026113E-01 0.110516609655E-02 5905 0.911185892473 -0.159750818405 5906 0.384911265419E-01 0.112843249653E-02 5907 0.385353876556E-01 0.117250606869E-02 5908 -0.674642060997E-02 0.204293311297E-01 5909 0.684167824365E-02 -0.203608213545E-01 5910 0.679340739638E-02 -0.204121886459E-01 5911 -0.334428396618E-02 -0.273596886561E-01 5912 0.602060523847E-01 -0.141182493567E-01 5913 -0.346810467861E-02 -0.273442181822E-01 5914 -0.339445276777E-02 -0.273831792934E-01 5915 0.384655185082E-01 0.109645821538E-02 5916 0.384861233587E-01 0.115393426000E-02 5917 0.911209873579 -0.159735834933 5918 0.385386372447E-01 0.117184313807E-02 5919 0.677567724485E-02 -0.204391351849E-01 5920 0.677532045009E-02 -0.204713647870E-01 5921 -0.675032295574E-02 0.204141268202E-01 5922 -0.331793714567E-02 -0.273834951524E-01 5923 -0.346902412539E-02 -0.273442523882E-01 5924 0.603522114268E-01 -0.139060769586E-01 5925 -0.343344567030E-02 -0.273843038218E-01 5926 0.384387898879E-01 0.108237203929E-02 5927 0.385805960553E-01 0.110025308971E-02 5928 0.385762384026E-01 0.110268612597E-02 5929 0.911007568325 -0.159851241125 5930 1.19911690455 -0.173754888164 5931 -0.693709270977E-05 0.945753117432E-07 5932 0.429348873756E-05 0.488958078089E-06 5933 -0.783757800896E-02 -0.157531864074E-01 5934 -0.792452559854E-02 -0.157839149802E-01 5935 0.789628686515E-02 0.157788949198E-01 5936 0.788716351757E-02 0.157224296166E-01 5937 0.787488259561E-02 0.157305741130E-01 5938 -0.785011827354E-02 -0.157487083139E-01 5939 0.790604615760E-02 0.157989060592E-01 5940 -0.789983077011E-02 -0.157762449179E-01 5941 -0.693699696198E-05 0.943516517844E-07 5942 1.19911942046 -0.173754128605 5943 0.390565923141E-05 0.218174733096E-05 5944 -0.785562582471E-02 -0.157331599003E-01 5945 0.786452688495E-02 0.156965300212E-01 5946 0.788335970540E-02 0.158064776934E-01 5947 -0.790117558935E-02 -0.157852028999E-01 5948 0.787660176755E-02 0.157131135549E-01 5949 0.789617951326E-02 0.157910196871E-01 5950 -0.785512942342E-02 -0.157189129527E-01 5951 -0.791482877442E-02 -0.157909680630E-01 5952 0.429318308283E-05 0.489365344002E-06 5953 0.390575670735E-05 0.218184212084E-05 5954 1.19911293799 -0.173754666396 5955 -0.790288088693E-02 -0.157936757715E-01 5956 0.789354786753E-02 0.157521132219E-01 5957 -0.792001659609E-02 -0.157665643115E-01 5958 0.786711566485E-02 0.157516359620E-01 5959 0.791225565775E-02 0.157823454778E-01 5960 -0.790477025695E-02 -0.157557271162E-01 5961 -0.786741056171E-02 -0.157532026195E-01 5962 0.788779161340E-02 0.157851513749E-01 5963 -0.787492334042E-02 -0.157305834167E-01 5964 -0.787663306092E-02 -0.157131177535E-01 5965 -0.791206007644E-02 -0.157823599016E-01 5966 0.891119611989 -0.152712104357 5967 0.122629637561E-02 -0.202928930452E-03 5968 0.119821627219E-02 -0.213055489112E-03 5969 0.124609671219E-02 -0.187583643085E-03 5970 0.359894593422E-01 -0.256107742449E-01 5971 -0.362912854933E-01 -0.252304716715E-01 5972 -0.362602671489E-01 -0.252426655856E-01 5973 -0.362637874118E-01 -0.251717637466E-01 5974 -0.790617844440E-02 -0.157989049784E-01 5975 0.785512045401E-02 0.157189194290E-01 5976 0.786721728976E-02 0.157532108289E-01 5977 0.121111169827E-02 -0.186057452243E-03 5978 0.891170832220 -0.152679652881 5979 0.132333037927E-02 -0.186221383910E-03 5980 0.124885748521E-02 -0.178174018732E-03 5981 -0.362599029707E-01 -0.252426356122E-01 5982 -0.362857536911E-01 -0.252901528387E-01 5983 0.358632609869E-01 -0.255310863993E-01 5984 -0.363145236190E-01 -0.253112178944E-01 5985 0.789999171808E-02 0.157762308905E-01 5986 0.791489442757E-02 0.157909550642E-01 5987 -0.788775806204E-02 -0.157851338542E-01 5988 0.120769535902E-02 -0.232339312485E-03 5989 0.128777716437E-02 -0.131722996492E-03 5990 0.890977449864 -0.152786306477 5991 0.128173876730E-02 -0.122356516042E-03 5992 -0.362625309887E-01 -0.251717029166E-01 5993 -0.363178056056E-01 -0.252659948870E-01 5994 -0.363135885846E-01 -0.253111714306E-01 5995 0.361076306805E-01 -0.255108320111E-01 5996 0.785029246786E-02 0.157487095486E-01 5997 -0.789609553011E-02 -0.157910226417E-01 5998 0.790467360139E-02 0.157557257638E-01 5999 0.124322249516E-02 -0.177427352275E-03 6000 0.124204930224E-02 -0.149825746185E-03 6001 0.132795811967E-02 -0.193595199349E-03 6002 0.891140908885 -0.152696746746 6003 -0.362909270716E-01 -0.252304638153E-01 6004 0.358914740438E-01 -0.255476023081E-01 6005 -0.362854060858E-01 -0.252901348190E-01 6006 -0.363184764255E-01 -0.252660171705E-01 6007 0.783753753517E-02 0.157531780594E-01 6008 0.785559463875E-02 0.157331522527E-01 6009 0.790307612282E-02 0.157936586924E-01 6010 0.359428440451E-01 -0.255086645951E-01 6011 -0.362502786367E-01 -0.252321167845E-01 6012 -0.362203500175E-01 -0.252546407013E-01 6013 -0.362743674346E-01 -0.252677088158E-01 6014 0.891117918333 -0.152712226989 6015 0.124338506165E-02 -0.177417366244E-03 6016 0.121121320982E-02 -0.186080460710E-03 6017 0.120778608240E-02 -0.232321958620E-03 6018 -0.788698959247E-02 -0.157224272813E-01 6019 0.790125976383E-02 0.157852052201E-01 6020 -0.786721204334E-02 -0.157516380883E-01 6021 -0.362747238347E-01 -0.252677253838E-01 6022 -0.362966106514E-01 -0.252628372800E-01 6023 -0.363331210497E-01 -0.252661429029E-01 6024 0.359411520602E-01 -0.256362867253E-01 6025 0.124626132255E-02 -0.187587586197E-03 6026 0.891140890770 -0.152696744850 6027 0.124907418063E-02 -0.178148386741E-03 6028 0.128132189880E-02 -0.122377972870E-03 6029 0.792439296247E-02 0.157839151402E-01 6030 -0.786453556520E-02 -0.156965181198E-01 6031 -0.789374099622E-02 -0.157521021058E-01 6032 -0.362506448045E-01 -0.252321109275E-01 6033 0.359564165895E-01 -0.256662049585E-01 6034 -0.363643037565E-01 -0.252335271302E-01 6035 -0.362962625683E-01 -0.252628256985E-01 6036 0.122639642568E-02 -0.202928009849E-03 6037 0.124226614102E-02 -0.149810624107E-03 6038 0.891169883768 -0.152679715116 6039 0.128766519561E-02 -0.131743443763E-03 6040 -0.789612555311E-02 -0.157789083696E-01 6041 -0.788329407983E-02 -0.158064957389E-01 6042 0.792005066017E-02 0.157665814434E-01 6043 -0.362216059136E-01 -0.252546791689E-01 6044 -0.363652391019E-01 -0.252335612625E-01 6045 0.360801685277E-01 -0.254832074609E-01 6046 -0.363337902183E-01 -0.252661813092E-01 6047 0.119830881844E-02 -0.213046171462E-03 6048 0.132754242582E-02 -0.193618012430E-03 6049 0.132321650995E-02 -0.186199976205E-03 6050 0.890979999220 -0.152786129537 elk-7.2.42/tests/PaxHeaders.21776/test_0250000644000000000000000000000013214061636520014561 xustar0030 mtime=1623670096.775100765 30 atime=1623670096.761100778 30 ctime=1623670096.775100765 elk-7.2.42/tests/test_025/0000755002504400250440000000000014061636520016673 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.762100777 30 atime=1623670096.762100777 30 ctime=1623670096.762100777 elk-7.2.42/tests/test_025/TEST_900.OUT_0000644002504400250440000000007014061636520020567 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2133 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.764100776 30 atime=1623670096.763100777 30 ctime=1623670096.764100776 elk-7.2.42/tests/test_025/TEST_910.OUT_0000644002504400250440000001622514061636520020601 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 234 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.117405848391 5 0.117405848391 6 -0.117405848391 7 0.234811696782 8 0.234811696782 9 -0.234811696782 10 0.352217545173 11 0.352217545173 12 -0.352217545173 13 0.469623393565 14 0.469623393565 15 -0.469623393565 16 0.234811696782 17 0.00000000000 18 0.00000000000 19 0.352217545173 20 0.117405848391 21 -0.117405848391 22 0.469623393565 23 0.234811696782 24 -0.234811696782 25 0.587029241956 26 0.352217545173 27 -0.352217545173 28 0.704435090347 29 0.469623393565 30 -0.469623393565 31 0.821840938738 32 0.587029241956 33 -0.587029241956 34 0.939246787129 35 0.704435090347 36 -0.704435090347 37 0.352217545173 38 -0.117405848391 39 0.117405848391 40 0.469623393565 41 0.00000000000 42 0.00000000000 43 0.587029241956 44 0.117405848391 45 -0.117405848391 46 0.704435090347 47 0.234811696782 48 -0.234811696782 49 0.821840938738 50 0.352217545173 51 -0.352217545173 52 0.939246787129 53 0.469623393565 54 -0.469623393565 55 1.05665263552 56 0.587029241956 57 -0.587029241956 58 0.469623393565 59 -0.234811696782 60 0.234811696782 61 0.587029241956 62 -0.117405848391 63 0.117405848391 64 0.704435090347 65 -0.277555756156E-16 66 0.277555756156E-16 67 0.821840938738 68 0.117405848391 69 -0.117405848391 70 0.939246787129 71 0.234811696782 72 -0.234811696782 73 1.05665263552 74 0.352217545173 75 -0.352217545173 76 1.17405848391 77 0.469623393565 78 -0.469623393565 79 0.587029241956 80 -0.352217545173 81 0.352217545173 82 0.704435090347 83 -0.234811696782 84 0.234811696782 85 0.821840938738 86 -0.117405848391 87 0.117405848391 88 0.939246787129 89 0.00000000000 90 0.00000000000 91 0.00000000000 92 0.00000000000 93 0.234811696782 94 0.234811696782 95 0.234811696782 96 0.00000000000 97 0.352217545173 98 0.352217545173 99 -0.117405848391 100 0.469623393565 101 0.469623393565 102 -0.234811696782 103 0.587029241956 104 0.587029241956 105 -0.352217545173 106 0.704435090347 107 0.704435090347 108 -0.469623393565 109 0.821840938738 110 0.821840938738 111 -0.587029241956 112 0.469623393565 113 0.234811696782 114 0.00000000000 115 0.587029241956 116 0.352217545173 117 -0.117405848391 118 0.704435090347 119 0.469623393565 120 -0.234811696782 121 0.821840938738 122 0.587029241956 123 -0.352217545173 124 0.939246787129 125 0.704435090347 126 -0.469623393565 127 0.469623393565 128 -0.277555756156E-16 129 0.234811696782 130 0.704435090347 131 0.234811696782 132 0.277555756156E-16 133 0.821840938738 134 0.352217545173 135 -0.117405848391 136 0.939246787129 137 0.469623393565 138 -0.234811696782 139 1.05665263552 140 0.587029241956 141 -0.352217545173 142 0.587029241956 143 -0.117405848391 144 0.352217545173 145 0.704435090347 146 0.00000000000 147 0.234811696782 148 0.939246787129 149 0.234811696782 150 0.00000000000 151 1.05665263552 152 0.352217545173 153 -0.117405848391 154 1.17405848391 155 0.469623393565 156 -0.234811696782 157 0.704435090347 158 -0.234811696782 159 0.469623393565 160 0.821840938738 161 -0.117405848391 162 0.352217545173 163 0.939246787129 164 0.277555756156E-16 165 0.234811696782 166 1.17405848391 167 0.234811696782 168 -0.277555756156E-16 169 1.29146433230 170 0.352217545173 171 -0.117405848391 172 0.821840938738 173 -0.352217545173 174 0.587029241956 175 0.939246787129 176 -0.234811696782 177 0.469623393565 178 1.05665263552 179 -0.117405848391 180 0.352217545173 181 1.40887018069 182 0.234811696782 183 0.555111512313E-16 184 0.00000000000 185 0.00000000000 186 0.469623393565 187 0.469623393565 188 0.469623393565 189 0.00000000000 190 0.587029241956 191 0.587029241956 192 -0.117405848391 193 0.704435090347 194 0.704435090347 195 -0.234811696782 196 0.821840938738 197 0.821840938738 198 -0.352217545173 199 0.704435090347 200 0.469623393565 201 0.277555756156E-16 202 0.821840938738 203 0.587029241956 204 -0.117405848391 205 0.939246787129 206 0.704435090347 207 -0.234811696782 208 0.939246787129 209 0.469623393565 210 0.00000000000 211 1.05665263552 212 0.587029241956 213 -0.117405848391 214 1.17405848391 215 0.469623393565 216 -0.277555756156E-16 217 0.939246787129 218 -0.555111512313E-16 219 0.469623393565 220 0.277555756156E-16 221 -0.277555756156E-16 222 0.704435090347 223 0.704435090347 224 0.704435090347 225 0.277555756156E-16 226 0.821840938738 227 0.821840938738 228 -0.117405848391 229 0.939246787129 230 0.704435090347 231 -0.277555756156E-16 232 0.00000000000 233 0.00000000000 234 0.939246787129 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.765100775 30 atime=1623670096.765100775 30 ctime=1623670096.765100775 elk-7.2.42/tests/test_025/TEST_705.OUT_0000644002504400250440000000010114061636520020565 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 8 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.767100773 30 atime=1623670096.766100774 30 ctime=1623670096.767100773 elk-7.2.42/tests/test_025/TEST_500.OUT_0000644002504400250440000000013514061636520020565 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 54.5616810221 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.768100772 30 atime=1623670096.768100772 30 ctime=1623670096.768100772 elk-7.2.42/tests/test_025/TEST_510.OUT_0000644002504400250440000000014514061636520020567 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.763751005576E-03 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.769100771 30 atime=1623670096.769100771 30 ctime=1623670096.769100771 elk-7.2.42/tests/test_025/TEST_400.OUT_0000644002504400250440000000014114061636520020561 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 26.9957255510 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.771100769 30 atime=1623670096.771100769 30 ctime=1623670096.771100769 elk-7.2.42/tests/test_025/TEST_450.OUT_0000644002504400250440000000014014061636520020565 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 1.69601931816 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.772100768 30 atime=1623670096.772100768 30 ctime=1623670096.772100768 elk-7.2.42/tests/test_025/TEST_000.OUT_0000644002504400250440000000012614061636520020560 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1391.14531330 elk-7.2.42/tests/test_025/PaxHeaders.21776/TEST_110.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.774100766 30 atime=1623670096.774100766 30 ctime=1623670096.774100766 elk-7.2.42/tests/test_025/TEST_110.OUT_0000644002504400250440000000022714061636520020564 0ustar00dewhurstdewhurst00000000000000'hyperfine field' 2 3 0.100000000000E-03 1 -0.340090424683E-20 2 0.396169903440E-20 3 0.115535438996E-03 elk-7.2.42/tests/test_025/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015741 xustar0030 mtime=1623670096.775100765 30 atime=1623670096.775100765 30 ctime=1623670096.775100765 elk-7.2.42/tests/test_025/elk.in0000644002504400250440000000111014061636520017767 0ustar00dewhurstdewhurst00000000000000 ! Mossbauer hyperfine field for fcc Co including spin and orbital dipole terms. tasks 0 110 500 test .true. tbdip .true. tjr .true. spinorb .true. spincore .true. lorbcnd .true. bfieldc 0.0 0.0 0.01 nempty 10 ! large number of k-points required ngridk 8 8 8 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.3448 sppath '../../species/' atoms 1 : nspecies 'Co.in' : spfname 1 : natoms; atposl, bfcmt below 0.0 0.0 0.0 elk-7.2.42/tests/PaxHeaders.21776/test_0020000644000000000000000000000013214061636520014554 xustar0030 mtime=1623670096.789100752 30 atime=1623670096.776100764 30 ctime=1623670096.789100752 elk-7.2.42/tests/test_002/0000755002504400250440000000000014061636520016666 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.778100763 30 atime=1623670096.777100764 30 ctime=1623670096.778100763 elk-7.2.42/tests/test_002/TEST_705.OUT_0000644002504400250440000000010114061636520020560 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_002/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015734 xustar0030 mtime=1623670096.779100762 30 atime=1623670096.779100762 30 ctime=1623670096.779100762 elk-7.2.42/tests/test_002/elk.in0000644002504400250440000000064214061636520017773 0ustar00dewhurstdewhurst00000000000000 tasks 0 500 test .true. maxscl 5 rgkmax 6.5 spinpol .true. bfieldc 0.0 0.0 0.5 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 2.708 sppath '../../species/' atoms 1 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.780100761 30 atime=1623670096.780100761 30 ctime=1623670096.780100761 elk-7.2.42/tests/test_002/TEST_900.OUT_0000644002504400250440000000007014061636520020562 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2315 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.782100759 30 atime=1623670096.782100759 30 ctime=1623670096.782100759 elk-7.2.42/tests/test_002/TEST_910.OUT_0000644002504400250440000000144714061636520020574 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.290028863884 5 0.290028863884 6 -0.652074116947E-17 7 0.580057727768 8 0.580057727768 9 -0.130414823389E-16 10 0.580057727768 11 0.290028863884 12 0.290028863884 13 0.580057727768 14 0.580057727768 15 0.580057727768 16 1.16011545554 17 1.16011545554 18 0.580057727768 19 1.16011545554 20 0.870086591652 21 0.870086591652 22 1.16011545554 23 1.16011545554 24 1.16011545554 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.783100758 30 atime=1623670096.783100758 30 ctime=1623670096.783100758 elk-7.2.42/tests/test_002/TEST_500.OUT_0000644002504400250440000000013514061636520020560 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 27.0587039573 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.785100756 30 atime=1623670096.785100756 30 ctime=1623670096.785100756 elk-7.2.42/tests/test_002/TEST_510.OUT_0000644002504400250440000000014514061636520020562 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.433821754615E-02 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.786100755 30 atime=1623670096.786100755 30 ctime=1623670096.786100755 elk-7.2.42/tests/test_002/TEST_400.OUT_0000644002504400250440000000014114061636520020554 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 25.9972158035 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.788100753 30 atime=1623670096.788100753 30 ctime=1623670096.788100753 elk-7.2.42/tests/test_002/TEST_450.OUT_0000644002504400250440000000014014061636520020560 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 2.73278028082 elk-7.2.42/tests/test_002/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016517 xustar0030 mtime=1623670096.789100752 30 atime=1623670096.789100752 30 ctime=1623670096.789100752 elk-7.2.42/tests/test_002/TEST_000.OUT_0000644002504400250440000000012614061636520020553 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1270.55032831 elk-7.2.42/tests/PaxHeaders.21776/test_0060000644000000000000000000000013214061636520014560 xustar0030 mtime=1623670096.812100731 30 atime=1623670096.790100752 30 ctime=1623670096.812100731 elk-7.2.42/tests/test_006/0000755002504400250440000000000014061636520016672 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000012714061636520016543 xustar0029 mtime=1623670096.79210075 29 atime=1623670096.79210075 29 ctime=1623670096.79210075 elk-7.2.42/tests/test_006/TEST_705.OUT_0000644002504400250440000000010114061636520020564 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.793100749 30 atime=1623670096.793100749 30 ctime=1623670096.793100749 elk-7.2.42/tests/test_006/TEST_900.OUT_0000644002504400250440000000007014061636520020566 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 8873 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.795100747 30 atime=1623670096.794100748 30 ctime=1623670096.795100747 elk-7.2.42/tests/test_006/TEST_910.OUT_0000644002504400250440000001357714061636520020607 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 192 0.100000000000E-07 1 0.183727464068E-01 2 0.551182392204E-01 3 0.128609224848 4 0.165354717661 5 0.202100210475 6 -0.183727464068E-01 7 0.312336688915 8 0.349082181729 9 -0.165354717661 10 0.459318660170 11 0.496064152983 12 -0.312336688915 13 0.165354717661 14 -0.918637320339E-01 15 0.275591196102 16 0.312336688915 17 0.551182392204E-01 18 0.128609224848 19 0.459318660170 20 0.202100210475 21 -0.183727464068E-01 22 0.606300631424 23 0.349082181729 24 -0.165354717661 25 0.312336688915 26 -0.238845703288 27 0.422573167356 28 0.459318660170 29 -0.918637320339E-01 30 0.275591196102 31 0.606300631424 32 0.551182392204E-01 33 0.128609224848 34 0.753282602678 35 0.202100210475 36 -0.183727464068E-01 37 0.459318660170 38 -0.385827674543 39 0.569555138610 40 0.606300631424 41 -0.238845703288 42 0.422573167356 43 0.753282602678 44 -0.918637320339E-01 45 0.275591196102 46 0.900264573933 47 0.551182392204E-01 48 0.128609224848 49 -0.128609224848 50 0.202100210475 51 0.275591196102 52 0.183727464068E-01 53 0.349082181729 54 0.128609224848 55 0.165354717661 56 0.496064152983 57 -0.183727464068E-01 58 0.312336688915 59 0.643046124238 60 -0.165354717661 61 0.183727464068E-01 62 0.551182392204E-01 63 0.422573167356 64 0.165354717661 65 0.202100210475 66 0.275591196102 67 0.312336688915 68 0.349082181729 69 0.128609224848 70 0.459318660170 71 0.496064152983 72 -0.183727464068E-01 73 0.165354717661 74 -0.918637320339E-01 75 0.569555138610 76 0.312336688915 77 0.551182392204E-01 78 0.422573167356 79 0.459318660170 80 0.202100210475 81 0.275591196102 82 0.606300631424 83 0.349082181729 84 0.128609224848 85 0.312336688915 86 -0.238845703288 87 0.716537109865 88 0.459318660170 89 -0.918637320339E-01 90 0.569555138610 91 0.606300631424 92 0.551182392204E-01 93 0.422573167356 94 0.753282602678 95 0.202100210475 96 0.275591196102 97 -0.275591196102 98 0.349082181729 99 0.422573167356 100 -0.128609224848 101 0.496064152983 102 0.275591196102 103 0.183727464068E-01 104 0.643046124238 105 0.128609224848 106 0.165354717661 107 0.790028095492 108 -0.183727464068E-01 109 -0.128609224848 110 0.202100210475 111 0.569555138610 112 0.183727464068E-01 113 0.349082181729 114 0.422573167356 115 0.165354717661 116 0.496064152983 117 0.275591196102 118 0.312336688915 119 0.643046124238 120 0.128609224848 121 0.183727464068E-01 122 0.551182392204E-01 123 0.716537109865 124 0.165354717661 125 0.202100210475 126 0.569555138610 127 0.312336688915 128 0.349082181729 129 0.422573167356 130 0.459318660170 131 0.496064152983 132 0.275591196102 133 0.165354717661 134 -0.918637320339E-01 135 0.863519081119 136 0.312336688915 137 0.551182392204E-01 138 0.716537109865 139 0.459318660170 140 0.202100210475 141 0.569555138610 142 0.606300631424 143 0.349082181729 144 0.422573167356 145 -0.422573167356 146 0.496064152983 147 0.569555138610 148 -0.275591196102 149 0.643046124238 150 0.422573167356 151 -0.128609224848 152 0.790028095492 153 0.275591196102 154 0.183727464068E-01 155 0.937010066746 156 0.128609224848 157 -0.275591196102 158 0.349082181729 159 0.716537109865 160 -0.128609224848 161 0.496064152983 162 0.569555138610 163 0.183727464068E-01 164 0.643046124238 165 0.422573167356 166 0.165354717661 167 0.790028095492 168 0.275591196102 169 -0.128609224848 170 0.202100210475 171 0.863519081119 172 0.183727464068E-01 173 0.349082181729 174 0.716537109865 175 0.165354717661 176 0.496064152983 177 0.569555138610 178 0.312336688915 179 0.643046124238 180 0.422573167356 181 0.183727464068E-01 182 0.551182392204E-01 183 1.01050105237 184 0.165354717661 185 0.202100210475 186 0.863519081119 187 0.312336688915 188 0.349082181729 189 0.716537109865 190 0.459318660170 191 0.496064152983 192 0.569555138610 elk-7.2.42/tests/test_006/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015740 xustar0030 mtime=1623670096.796100746 30 atime=1623670096.796100746 30 ctime=1623670096.796100746 elk-7.2.42/tests/test_006/elk.in0000644002504400250440000000135714061636520020003 0ustar00dewhurstdewhurst00000000000000 ! GaAs using the Perdew-Burke-Ernzerhof GGA functional and spin-orbit coupling. tasks 0 10 25 120 121 125 180 185 186 187 500 test .true. bsefull .true. swidth 0.01 wplot 50 100 4 0.0 0.5 rgkmax 6.0 xctype 20 spinorb .true. avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms 0.00 0.00 0.00 0.0 0.0 0.0 : atposl, bfcmt 'As.in' : spfname 1 : natoms 0.25 0.25 0.25 0.0 0.0 0.0 : atposl, bfcmt ngridk 4 4 4 vkloff 0.25 0.5 0.625 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.798100744 30 atime=1623670096.797100745 30 ctime=1623670096.798100744 elk-7.2.42/tests/test_006/TEST_500.OUT_0000644002504400250440000000013514061636520020564 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 1.09584638942 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.799100743 30 atime=1623670096.799100743 30 ctime=1623670096.799100743 elk-7.2.42/tests/test_006/TEST_510.OUT_0000644002504400250440000000014514061636520020566 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.687664057384E-01 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.801100741 30 atime=1623670096.800100742 30 ctime=1623670096.801100741 elk-7.2.42/tests/test_006/TEST_400.OUT_0000644002504400250440000000014114061636520020560 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 63.9851369261 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000012714061636520016540 xustar0029 mtime=1623670096.80210074 29 atime=1623670096.80210074 29 ctime=1623670096.80210074 elk-7.2.42/tests/test_006/TEST_450.OUT_0000644002504400250440000000014014061636520020564 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.731763086095E-20 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.803100739 30 atime=1623670096.803100739 30 ctime=1623670096.803100739 elk-7.2.42/tests/test_006/TEST_000.OUT_0000644002504400250440000000012614061636520020557 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -4205.21476167 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_010.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.805100738 30 atime=1623670096.805100738 30 ctime=1623670096.805100738 elk-7.2.42/tests/test_006/TEST_010.OUT_0000644002504400250440000000612014061636520020560 0ustar00dewhurstdewhurst00000000000000'total DOS' 2 100 0.200000000000E-01 1 0.00000000000 2 0.295787200865E-01 3 0.226752015598 4 0.966612414599 5 2.67934514281 6 5.38397608013 7 8.20656819373 8 9.91960888238 9 9.98048822365 10 9.26998514973 11 9.10010586418 12 9.88034275399 13 10.6185512018 14 10.2355044269 15 8.73434857970 16 7.27767199193 17 6.88877746403 18 7.60004179141 19 8.59714817968 20 9.10135871450 21 8.94671458326 22 8.42909309822 23 7.95480696909 24 7.71187649695 25 7.69107454735 26 7.71586658842 27 7.67288347948 28 7.65987632122 29 8.05167524719 30 9.09340940949 31 10.5250992930 32 11.5274368422 33 11.4392888689 34 10.4094443104 35 9.39737400669 36 9.31257883264 37 10.2486975110 38 11.5010066540 39 12.2479622531 40 12.1690464990 41 11.5047253671 42 10.7312934134 43 10.2621190672 44 10.3018964800 45 10.8495426950 46 11.6670562126 47 12.4180929053 48 12.8223762347 49 12.8338406129 50 12.5976573510 51 0.00000000000 52 0.296358158220E-01 53 0.228198059822 54 0.972396906816 55 2.69064950420 56 5.39661191527 57 8.20973276225 58 9.90824409624 59 9.95891645042 60 9.25306274798 61 9.09489141365 62 9.88567912191 63 10.6251558057 64 10.2386469899 65 8.73319339109 66 7.27563622464 67 6.89061890592 68 7.61076711861 69 8.61767370721 70 9.12587556451 71 8.96439839904 72 8.42930072703 73 7.93424101286 74 7.67457387970 75 7.65272776268 76 7.68962459242 77 7.66759361156 78 7.66783394901 79 8.06611983237 80 9.10878277071 81 10.5423311049 82 11.5433181967 83 11.4498309110 84 10.4143177626 85 9.40050402205 86 9.31742026025 87 10.2537831608 88 11.5027422748 89 12.2446374935 90 12.1617139511 91 11.4968231384 92 10.7253063691 93 10.2595885879 94 10.3017247045 95 10.8506239242 96 11.6689852834 97 12.4219925943 98 12.8287861611 99 12.8418393368 100 12.6058483182 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_025.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.806100737 30 atime=1623670096.806100737 30 ctime=1623670096.806100737 elk-7.2.42/tests/test_006/TEST_025.OUT_0000644002504400250440000000022614061636520020567 0ustar00dewhurstdewhurst00000000000000'effective mass' 2 3 0.100000000000E-05 1 0.709875051567 2 0.709877207332 3 0.709877988628 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_121.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.808100735 30 atime=1623670096.808100735 30 ctime=1623670096.808100735 elk-7.2.42/tests/test_006/TEST_121.OUT_0000644002504400250440000000523114061636520020565 0ustar00dewhurstdewhurst00000000000000'optical conductivity' 3 50 0.100000000000E-01 1 0.784830441454E-02 0.00000000000 2 0.805613916128E-02 -0.763462377010E-02 3 0.859460172249E-02 -0.153617048741E-01 4 0.938720780578E-02 -0.233686047080E-01 5 0.103955486738E-01 -0.322935327582E-01 6 0.122845721435E-01 -0.425186167438E-01 7 0.153770586144E-01 -0.546157746712E-01 8 0.217832861694E-01 -0.697008010780E-01 9 0.362976447188E-01 -0.842350519252E-01 10 0.489177838428E-01 -0.945490242888E-01 11 0.749999461934E-01 -0.109971730363 12 0.106312908731 -0.108853635181 13 0.126481595513 -0.970370634605E-01 14 0.157772240006 -0.995467936799E-01 15 0.194647495903 -0.622961076822E-01 16 0.201036131942 -0.156841804533E-01 17 0.180559939433 0.127098189213E-01 18 0.164296375219 0.178839736076E-01 19 0.164189238460 0.157397036950E-01 20 0.172660779809 0.307688083937E-01 21 0.184879176828 0.409154194455E-01 22 0.182934072125 0.904129011234E-01 23 0.147746350877 0.110473349499 24 0.115279145093 0.108624226030 25 0.107547705246 0.961859971439E-01 26 0.102838967581 0.101944039011 27 0.938979897713E-01 0.102537885341 28 0.794894062477E-01 0.105742904462 29 0.714130908987E-01 0.998698905249E-01 30 0.636354953480E-01 0.985504279889E-01 31 0.563779426202E-01 0.937454507965E-01 32 0.541406671479E-01 0.857560841387E-01 33 0.574703520359E-01 0.906323807642E-01 34 0.451005547915E-01 0.938595055443E-01 35 0.357133042580E-01 0.869844242685E-01 36 0.331322474929E-01 0.798935916884E-01 37 0.318716580343E-01 0.743166383871E-01 38 0.329530401827E-01 0.709134888898E-01 39 0.327933920041E-01 0.696854257516E-01 40 0.328924762058E-01 0.670144081803E-01 41 0.347867061053E-01 0.683336921036E-01 42 0.308457529624E-01 0.719471455730E-01 43 0.257576898143E-01 0.689543915700E-01 44 0.244775653831E-01 0.665975832766E-01 45 0.232924150756E-01 0.641737064763E-01 46 0.222575826298E-01 0.640817666500E-01 47 0.194563452125E-01 0.619407742099E-01 48 0.190816542076E-01 0.591626413806E-01 49 0.192069511441E-01 0.585967622732E-01 50 0.175794179589E-01 0.580335567132E-01 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_125.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.810100733 30 atime=1623670096.809100734 30 ctime=1623670096.810100733 elk-7.2.42/tests/test_006/TEST_125.OUT_0000644002504400250440000001237014061636520020573 0ustar00dewhurstdewhurst00000000000000'non-linear susceptibility' 3 100 0.100000000000E-01 1 -0.275459574106 -0.599868366272E-01 2 -0.316948646955 -0.615137209350E-01 3 -0.364873399301 -0.616255543498E-01 4 -0.390865811732 -0.677651941849E-01 5 -0.237142739629 -0.527313741831 6 -2.30048890680 0.201702935482 7 -1.07224299779 1.07047253535 8 0.990548737749 1.00597896882 9 -1.18431759697 2.00973193079 10 -0.190574337797 2.13841868683 11 0.354761508294 3.49406681273 12 7.41378461059 4.00720718606 13 4.22456478762 -4.70869685246 14 -1.72584793859 -2.73487636458 15 -0.769392196007E-01 -1.18867240013 16 -0.610068133144 -0.178881424933 17 -0.549897120398E-01 -1.04645197566 18 0.439734940495 -0.226053989747 19 -1.19792429766 -1.06030329218 20 -0.343954634226 -0.404153262717 21 -1.56145710547 0.996587054877 22 0.576791108724 1.06054851505 23 0.913169977464E-01 0.129126084876 24 0.488192380954 0.330933644328 25 0.636079601012E-01 -0.499276264406 26 0.343899534851 0.187155676608 27 -0.307768225594 -0.327343600174 28 0.325345292292E-01 0.736100259513 29 0.103945304342 -0.519787323244 30 -0.142621633132 -0.137204863681 31 -0.265560623935 0.181681465197 32 0.146537112055 0.109675580372 33 -0.360521783284E-01 0.443267902216E-01 34 0.488186895492E-01 0.101103198228 35 0.112059342158 0.815530346337E-01 36 0.857698424570E-01 0.128997098565E-01 37 0.768510071576E-01 0.667712023244E-01 38 0.116261209133 -0.986516651858E-01 39 -0.200617309150E-01 -0.277010634711E-01 40 -0.129187702547E-02 0.903012475030E-02 41 0.182907127565E-01 0.306250636173E-01 42 0.396600595173E-01 0.276471747986E-02 43 0.101382422576E-01 0.574515117498E-02 44 -0.893090155994E-02 -0.160580603939E-02 45 -0.706315020728E-02 0.541174017852E-01 46 0.355922199873E-01 0.255906846798E-01 47 0.238665573333E-01 0.587689905330E-02 48 0.473237861419E-02 0.144737785374E-01 49 -0.761903955418E-02 0.279329894069E-01 50 0.187841382796E-01 0.352470397174E-01 51 -1.42978641689 -16.3379529649 52 -2.59187354419 -20.8861383453 53 -5.55661480363 -28.9080712521 54 -16.9738899422 -45.8797914750 55 -94.5929471681 -45.3493018084 56 -57.5576375974 33.8352633377 57 -22.4364419727 39.8232130429 58 2.63090509234 20.8467224116 59 -9.62556772813 10.7169942163 60 -19.1598258627 -0.996370312697 61 -12.0608194351 32.9606630879 62 7.45614745455 13.4305498642 63 0.259736517621 8.52315055013 64 -2.46896205652 7.59927835749 65 -1.06247224791 8.85214585622 66 -1.55642189848 7.21203316904 67 -0.332153381076 7.66294049921 68 -0.473925484713 5.84757163710 69 -0.242429215510 5.72968096039 70 -0.479243683882 4.86688570533 71 -0.804904588301 4.76714737942 72 -0.742474672487 4.77604532364 73 -0.582174766729 4.60488521760 74 -0.458368368377 4.45408874237 75 -0.143306290569 4.12091696071 76 -0.141333845436 3.79556531966 77 -0.178598280337 3.48765398890 78 -0.245507177465 3.30635829921 79 -0.279178115468 3.25295378005 80 -0.285061523153 3.16368576130 81 -0.238309211501 3.01817539645 82 -0.243357123161 2.93251174340 83 -0.188639654780 2.81421785768 84 -0.182753028459 2.72801378401 85 -0.157360870996 2.61435071712 86 -0.159719557827 2.52131849386 87 -0.143707363681 2.42308082851 88 -0.147192525501 2.34605960220 89 -0.157717060997 2.27639449828 90 -0.152522491022 2.21756784655 91 -0.153410956967 2.15156423636 92 -0.157596533920 2.10838410039 93 -0.136143661199 2.06280130163 94 -0.120872958646 2.00409472101 95 -0.118508145517 1.94784193349 96 -0.109269126953 1.90082648288 97 -0.104787117802 1.84858330134 98 -0.102114796002 1.80244513776 99 -0.101021062699 1.76015893319 100 -0.996356097973E-01 1.71420592418 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.811100732 30 atime=1623670096.811100732 30 ctime=1623670096.811100732 elk-7.2.42/tests/test_006/TEST_800.OUT_0000644002504400250440000000061514061636520020572 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 10 0.100000000000E-07 1 1712.43342568 2 221.982051261 3 50.3781715177 4 221.982051260 5 155.992040644 6 54.3472682978 7 78.7344360286 8 36.9525587541 9 54.3472682979 10 29.0461395875 elk-7.2.42/tests/test_006/PaxHeaders.21776/TEST_187.OUT_0000644000000000000000000000013014061636520016541 xustar0029 mtime=1623670096.81310073 30 atime=1623670096.812100731 29 ctime=1623670096.81310073 elk-7.2.42/tests/test_006/TEST_187.OUT_0000644002504400250440000000523514061636520020605 0ustar00dewhurstdewhurst00000000000000'BSE optical conductivity' 3 50 0.100000000000E-02 1 0.603986088645E-02 0.00000000000 2 -0.260725754765E-02 0.00000000000 3 -0.432881388566E-02 0.00000000000 4 -0.537571762167E-03 0.00000000000 5 0.816060294839E-02 0.00000000000 6 -0.232968075166E-02 0.00000000000 7 0.396818125296E-02 0.00000000000 8 0.236662364126E-03 0.00000000000 9 0.400490632243E-02 0.00000000000 10 0.619908658089E-02 -0.598274457890E-02 11 -0.269120937763E-02 0.152836274121E-02 12 -0.439386413917E-02 0.437013931681E-04 13 -0.605253449778E-03 0.156022019660E-02 14 0.841358512472E-02 -0.806901766737E-02 15 -0.237825863649E-02 0.101587686670E-02 16 0.403051230831E-02 0.316214061238E-03 17 0.204464811682E-03 0.104766413248E-02 18 0.407743326488E-02 -0.397944392763E-02 19 0.671348237456E-02 -0.122692116435E-01 20 -0.296891170907E-02 0.319845417482E-02 21 -0.459737867144E-02 0.682725300744E-04 22 -0.834351786110E-03 0.326014694006E-02 23 0.923851623237E-02 -0.166171805345E-01 24 -0.253535851855E-02 0.210916884348E-02 25 0.422760198331E-02 0.657841091464E-03 26 0.960265352416E-04 0.216997857736E-02 27 0.430668604818E-02 -0.809945540894E-02 28 0.771588627113E-02 -0.192256730468E-01 29 -0.353809153806E-02 0.519568360070E-02 30 -0.496643475427E-02 0.435278791448E-04 31 -0.132413726345E-02 0.527873270397E-02 32 0.108773171558E-01 -0.262342516189E-01 33 -0.284255018261E-02 0.337914137671E-02 34 0.459415678106E-02 0.105920527538E-02 35 -0.132658138865E-03 0.345846194750E-02 36 0.473310691347E-02 -0.125214955486E-01 37 0.953323410496E-02 -0.273701567936E-01 38 -0.466046525159E-02 0.781689850873E-02 39 -0.555213837075E-02 -0.935964665303E-04 40 -0.234259239939E-02 0.789011719161E-02 41 0.139399784721E-01 -0.377813030121E-01 42 -0.340460660975E-02 0.498235417582E-02 43 0.520666147439E-02 0.158151234930E-02 44 -0.594152077116E-03 0.504339139857E-02 45 0.544799788062E-02 -0.174563267919E-01 46 0.130222144788E-01 -0.375069970474E-01 47 -0.710640577573E-02 0.115761242284E-01 48 -0.642773991659E-02 -0.499286887140E-03 49 -0.467588213668E-02 0.115247469622E-01 50 0.200735910543E-01 -0.526338761968E-01 elk-7.2.42/tests/PaxHeaders.21776/test_0100000644000000000000000000000012714061636520014557 xustar0029 mtime=1623670096.82410072 29 atime=1623670096.81310073 29 ctime=1623670096.82410072 elk-7.2.42/tests/test_010/0000755002504400250440000000000014061636520016665 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016522 xustar0030 mtime=1623670096.815100728 30 atime=1623670096.815100728 30 ctime=1623670096.815100728 elk-7.2.42/tests/test_010/TEST_400.OUT_0000644002504400250440000000014114061636520020553 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 9.99660565444 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016516 xustar0030 mtime=1623670096.816100727 30 atime=1623670096.816100727 30 ctime=1623670096.816100727 elk-7.2.42/tests/test_010/TEST_000.OUT_0000644002504400250440000000012614061636520020552 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -79.0782174520 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.818100725 30 atime=1623670096.818100725 30 ctime=1623670096.818100725 elk-7.2.42/tests/test_010/TEST_500.OUT_0000644002504400250440000000013514061636520020557 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.666133814564E-12 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.819100725 30 atime=1623670096.819100725 30 ctime=1623670096.819100725 elk-7.2.42/tests/test_010/TEST_510.OUT_0000644002504400250440000000014514061636520020561 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.184259173457 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.821100723 30 atime=1623670096.820100724 30 ctime=1623670096.821100723 elk-7.2.42/tests/test_010/TEST_705.OUT_0000644002504400250440000000010114061636520020557 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 2 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.822100722 30 atime=1623670096.822100722 30 ctime=1623670096.822100722 elk-7.2.42/tests/test_010/TEST_900.OUT_0000644002504400250440000000007014061636520020561 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 9771 elk-7.2.42/tests/test_010/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015733 xustar0030 mtime=1623670096.823100721 30 atime=1623670096.823100721 30 ctime=1623670096.823100721 elk-7.2.42/tests/test_010/elk.in0000644002504400250440000000103614061636520017770 0ustar00dewhurstdewhurst00000000000000 ! Water molecule in a box. tasks 0 500 test .true. xctype 2 tefvit .true. maxscl 2 molecule .true. avec 5.0 0.0 0.0 0.0 5.0 0.0 0.0 0.0 5.0 rgkmax 7.0 gmaxvr 14.0 sppath '../../species/' atoms 2 : nspecies 'O.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atpos, bfcmt 'H.in' 2 1.811 0.0 0.0 0.0 0.0 0.0 -0.451907959 1.753710409 0.0 0.0 0.0 0.0 elk-7.2.42/tests/test_010/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.825100719 30 atime=1623670096.825100719 30 ctime=1623670096.825100719 elk-7.2.42/tests/test_010/TEST_910.OUT_0000644002504400250440000000023414061636520020564 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 3 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 elk-7.2.42/tests/PaxHeaders.21776/test_0140000644000000000000000000000013214061636520014557 xustar0030 mtime=1623670096.838100707 30 atime=1623670096.825100719 30 ctime=1623670096.838100707 elk-7.2.42/tests/test_014/0000755002504400250440000000000014061636520016671 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.827100717 30 atime=1623670096.827100717 30 ctime=1623670096.827100717 elk-7.2.42/tests/test_014/TEST_800.OUT_0000644002504400250440000000026414061636520020571 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 3 0.100000000000E-07 1 394.581580334 2 51.1494504119 3 35.9439292598 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.829100715 30 atime=1623670096.828100716 30 ctime=1623670096.829100715 elk-7.2.42/tests/test_014/TEST_910.OUT_0000644002504400250440000000144714061636520020577 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.153099057192 5 0.153099057192 6 -0.153099057192 7 0.306198114385 8 0.306198114385 9 -0.306198114385 10 0.306198114385 11 0.00000000000 12 0.00000000000 13 0.459297171577 14 0.153099057192 15 -0.153099057192 16 0.612396228770 17 0.306198114385 18 -0.306198114385 19 0.612396228770 20 0.00000000000 21 0.00000000000 22 0.612396228770 23 0.306198114385 24 0.00000000000 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.830100714 30 atime=1623670096.830100714 30 ctime=1623670096.830100714 elk-7.2.42/tests/test_014/TEST_705.OUT_0000644002504400250440000000010114061636520020563 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.832100713 30 atime=1623670096.831100713 30 ctime=1623670096.832100713 elk-7.2.42/tests/test_014/TEST_900.OUT_0000644002504400250440000000007014061636520020565 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7799 elk-7.2.42/tests/test_014/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015737 xustar0030 mtime=1623670096.833100712 30 atime=1623670096.833100712 30 ctime=1623670096.833100712 elk-7.2.42/tests/test_014/elk.in0000644002504400250440000000071414061636520017776 0ustar00dewhurstdewhurst00000000000000 ! Optimised effective potential (OEP) test tasks 0 500 test .true. xctype -1 maxscl 4 maxitoep 100 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 0.25 0.25 0.25 0.0 0.0 0.0 ngridk 4 4 4 ngridq 2 2 2 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.834100711 30 atime=1623670096.834100711 30 ctime=1623670096.834100711 elk-7.2.42/tests/test_014/TEST_500.OUT_0000644002504400250440000000013514061636520020563 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 76.3337188320 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.836100709 30 atime=1623670096.836100709 30 ctime=1623670096.836100709 elk-7.2.42/tests/test_014/TEST_510.OUT_0000644002504400250440000000014514061636520020565 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.101834193353E-01 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.837100708 30 atime=1623670096.837100708 30 ctime=1623670096.837100708 elk-7.2.42/tests/test_014/TEST_400.OUT_0000644002504400250440000000014114061636520020557 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9784638947 elk-7.2.42/tests/test_014/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016522 xustar0030 mtime=1623670096.839100706 30 atime=1623670096.839100706 30 ctime=1623670096.839100706 elk-7.2.42/tests/test_014/TEST_000.OUT_0000644002504400250440000000012614061636520020556 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -530.380772300 elk-7.2.42/tests/PaxHeaders.21776/test_0180000644000000000000000000000013214061636520014563 xustar0030 mtime=1623670096.854100692 30 atime=1623670096.840100705 30 ctime=1623670096.854100692 elk-7.2.42/tests/test_018/0000755002504400250440000000000014061636520016675 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016542 xustar0030 mtime=1623670096.841100704 30 atime=1623670096.841100704 30 ctime=1623670096.841100704 elk-7.2.42/tests/test_018/TEST_705.OUT_0000644002504400250440000000010114061636520020567 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.842100703 30 atime=1623670096.842100703 30 ctime=1623670096.842100703 elk-7.2.42/tests/test_018/TEST_900.OUT_0000644002504400250440000000007014061636520020571 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 3511 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.844100701 30 atime=1623670096.844100701 30 ctime=1623670096.844100701 elk-7.2.42/tests/test_018/TEST_910.OUT_0000644002504400250440000000144714061636520020603 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 24 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.251891649582 5 0.251891649582 6 0.384969705319E-17 7 0.503783299164 8 0.503783299164 9 0.769939410638E-17 10 0.503783299164 11 0.251891649582 12 0.251891649582 13 0.503783299164 14 0.503783299164 15 0.503783299164 16 1.00756659833 17 1.00756659833 18 0.503783299164 19 1.00756659833 20 0.755674948747 21 0.755674948747 22 1.00756659833 23 1.00756659833 24 1.00756659833 elk-7.2.42/tests/test_018/PaxHeaders.21776/elk.in0000644000000000000000000000012414061636520015744 xustar0028 mtime=1623670096.8451007 28 atime=1623670096.8451007 28 ctime=1623670096.8451007 elk-7.2.42/tests/test_018/elk.in0000644002504400250440000000066314061636520020005 0ustar00dewhurstdewhurst00000000000000 tasks 0 205 210 500 test .true. wplot 200 100 10 0.0 1.0 swidth 0.01 rgkmax 6.5 ngridq 2 2 2 ngridk 4 4 4 avec 1.0 1.0 -1.0 1.0 -1.0 1.0 -1.0 1.0 1.0 scale 3.118 sppath '../../species/' atoms 1 : nspecies 'Nb.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.847100699 30 atime=1623670096.847100699 30 ctime=1623670096.847100699 elk-7.2.42/tests/test_018/TEST_500.OUT_0000644002504400250440000000013514061636520020567 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 25.5286833860 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.848100698 30 atime=1623670096.848100698 30 ctime=1623670096.848100698 elk-7.2.42/tests/test_018/TEST_510.OUT_0000644002504400250440000000014514061636520020571 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.157007976838E-01 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.850100696 30 atime=1623670096.850100696 30 ctime=1623670096.850100696 elk-7.2.42/tests/test_018/TEST_400.OUT_0000644002504400250440000000014114061636520020563 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 41.0025904631 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.851100695 30 atime=1623670096.851100695 30 ctime=1623670096.851100695 elk-7.2.42/tests/test_018/TEST_000.OUT_0000644002504400250440000000012614061636520020562 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -3816.44181165 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.853100693 30 atime=1623670096.852100694 30 ctime=1623670096.853100693 elk-7.2.42/tests/test_018/TEST_800.OUT_0000644002504400250440000000026414061636520020575 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 3 0.100000000000E-07 1 231.402239370 2 29.8969231706 3 12.8329633332 elk-7.2.42/tests/test_018/PaxHeaders.21776/TEST_210.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.854100692 30 atime=1623670096.854100692 30 ctime=1623670096.854100692 elk-7.2.42/tests/test_018/TEST_210.OUT_0000644002504400250440000001415514061636520020574 0ustar00dewhurstdewhurst00000000000000'phonon DOS' 2 200 0.100000000000E-01 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 7 0.00000000000 8 0.00000000000 9 0.753171514035E-05 10 0.753171514035E-04 11 0.444371193281E-03 12 0.188292878509E-02 13 0.634923586331E-02 14 0.179857357552E-01 15 0.447383879337E-01 16 0.101115786331 17 0.213210302765 18 0.425265742541 19 0.804590533298 20 1.43784961058 21 2.41589554356 22 3.81160018679 23 5.66621474410 24 7.99404194252 25 10.8030327627 26 14.1096992348 27 17.9355770429 28 22.2880472679 29 27.1533871248 30 32.5137313854 31 38.3826496896 32 44.8231046656 33 51.9339325004 34 59.8026918933 35 68.4605239757 36 77.8580307387 37 87.8836524174 38 98.4086971060 39 109.342121432 40 120.666803296 41 132.449082045 42 144.827270095 43 157.977890767 44 172.068047711 45 187.192811259 46 203.345342612 47 220.431656009 48 238.341236081 49 257.006940101 50 276.435516483 51 296.687680895 52 317.851795418 53 340.008861138 54 363.205303548 55 387.430337231 56 412.635407731 57 438.802700030 58 466.038642284 59 494.617629940 60 524.920084909 61 557.272170624 62 591.782911173 63 628.292543814 64 666.489632128 65 706.124755834 66 747.193687130 67 789.968983723 68 834.890136257 69 882.388119512 70 932.781891584 71 986.298839972 72 1043.20388523 73 1103.91147755 74 1168.98978944 75 1239.06876853 76 1314.79362674 77 1396.96024040 78 1486.81450583 79 1586.35662564 80 1698.39888201 81 1826.15224094 82 1972.15949480 83 2136.68561436 84 2316.17406851 85 2502.82694115 86 2686.12329490 87 2856.01058972 88 3006.28476106 89 3136.33611657 90 3250.43727774 91 3355.26597871 92 3457.27232006 93 3561.19674824 94 3670.03863323 95 3785.93221708 96 3911.12831268 97 4048.45207140 98 4200.75586924 99 4369.03859743 100 4549.33738881 101 4729.50835192 102 4888.15849345 103 4998.05669647 104 5034.40597890 105 4984.92657211 106 4856.35441533 107 4673.07609753 108 4468.13466397 109 4271.51047331 110 4101.84933581 111 3964.94411450 112 3857.80688259 113 3774.49108988 114 3710.19762790 115 3662.49251746 116 3630.52940466 117 3613.82663130 118 3611.57587363 119 3622.60810402 120 3645.73076073 121 3680.21050074 122 3726.30669121 123 3785.73773815 124 3861.89454023 125 3959.75600299 126 4085.55549944 127 4245.99322326 128 4446.25136103 129 4686.27638233 130 4956.31704084 131 5234.71736589 132 5491.09922887 133 5695.22297173 134 5827.52079434 135 5885.34531389 136 5881.16328638 137 5834.03960677 138 5759.56869126 139 5663.89173720 140 5544.24513484 141 5394.81199248 142 5213.78042296 143 5007.63352584 144 4790.37335708 145 4578.72722334 146 4386.23657102 147 4219.60510610 148 4078.49698188 149 3958.07100517 150 3852.13504919 151 3755.53249503 152 3665.16684372 153 3580.06086023 154 3500.78798425 155 3428.77285225 156 3365.73223083 157 3313.62217670 158 3274.99799997 159 3253.51791995 160 3254.03812045 161 3282.10247104 162 3342.87585540 163 3440.00226796 164 3574.85794388 165 3746.59843730 166 3952.89562477 167 4190.58336908 168 4454.76040659 169 4735.11380078 170 5010.23595686 171 5243.68138730 172 5387.24813951 173 5393.94632475 174 5236.49943999 175 4920.97283065 176 4486.31926211 177 3988.68695774 178 3479.55569264 179 2989.91684776 180 2527.99440831 181 2088.69794410 182 1667.09598430 183 1267.62355930 184 905.036976104 185 598.105610293 186 360.729161815 187 195.667753213 188 93.9230184564 189 39.1335867948 190 13.8039015578 191 3.97840257144 192 0.886015905680 193 0.137378484160 194 0.114933973042E-01 195 0.00000000000 196 0.00000000000 197 0.00000000000 198 0.00000000000 199 0.00000000000 200 0.00000000000 elk-7.2.42/tests/PaxHeaders.21776/test_0280000644000000000000000000000013214061636520014564 xustar0030 mtime=1623670096.870100677 30 atime=1623670096.855100691 30 ctime=1623670096.870100677 elk-7.2.42/tests/test_028/0000755002504400250440000000000014061636520016676 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.857100689 30 atime=1623670096.857100689 30 ctime=1623670096.857100689 elk-7.2.42/tests/test_028/TEST_400.OUT_0000644002504400250440000000014114061636520020564 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 155.990251759 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636520016543 xustar0030 mtime=1623670096.858100688 30 atime=1623670096.858100688 30 ctime=1623670096.858100688 elk-7.2.42/tests/test_028/TEST_750.OUT_0000644002504400250440000000051614061636520020602 0ustar00dewhurstdewhurst00000000000000'total forces' 2 9 0.100000000000E-02 1 0.380571577963E-02 2 0.229146648016E-19 3 0.00000000000 4 -0.190285788982E-02 5 0.329584653315E-02 6 -0.765295801317E-41 7 -0.190285788982E-02 8 -0.329584653315E-02 9 0.765295801317E-41 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_440.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.860100686 30 atime=1623670096.859100688 30 ctime=1623670096.860100686 elk-7.2.42/tests/test_028/TEST_440.OUT_0000644002504400250440000000020114061636520020565 0ustar00dewhurstdewhurst00000000000000'Stress tensor components' 2 2 0.100000000000E-01 1 0.217000917473E-01 2 0.539785760338E-02 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.861100686 30 atime=1623670096.861100686 30 ctime=1623670096.861100686 elk-7.2.42/tests/test_028/TEST_510.OUT_0000644002504400250440000000014514061636520020572 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.215371690688E-01 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.863100684 30 atime=1623670096.862100685 30 ctime=1623670096.863100684 elk-7.2.42/tests/test_028/TEST_500.OUT_0000644002504400250440000000013514061636520020570 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 26.5934368192 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.864100683 30 atime=1623670096.864100683 30 ctime=1623670096.864100683 elk-7.2.42/tests/test_028/TEST_910.OUT_0000644002504400250440000000301714061636520020577 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 48 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.184209741270 5 -0.106353544083 6 0.00000000000 7 0.368419482539 8 -0.212707088167 9 0.00000000000 10 0.368419482539 11 0.00000000000 12 0.00000000000 13 0.921048706349 14 -0.106353544083 15 0.00000000000 16 0.00000000000 17 0.00000000000 18 0.139678490521 19 0.184209741270 20 -0.106353544083 21 0.139678490521 22 0.368419482539 23 -0.212707088167 24 0.139678490521 25 0.552629223809 26 -0.319060632250 27 0.139678490521 28 0.368419482539 29 0.00000000000 30 0.139678490521 31 0.921048706349 32 -0.106353544083 33 0.139678490521 34 0.00000000000 35 0.00000000000 36 0.279356981042 37 0.184209741270 38 -0.106353544083 39 0.279356981042 40 0.368419482539 41 -0.212707088167 42 0.279356981042 43 0.368419482539 44 0.00000000000 45 0.279356981042 46 0.921048706349 47 -0.106353544083 48 0.279356981042 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.866100681 30 atime=1623670096.865100682 30 ctime=1623670096.866100681 elk-7.2.42/tests/test_028/TEST_900.OUT_0000644002504400250440000000007014061636520020572 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 20599 elk-7.2.42/tests/test_028/PaxHeaders.21776/elk.in0000644000000000000000000000012714061636520015750 xustar0029 mtime=1623670096.86710068 29 atime=1623670096.86710068 29 ctime=1623670096.86710068 elk-7.2.42/tests/test_028/elk.in0000644002504400250440000000122414061636520020000 0ustar00dewhurstdewhurst00000000000000 ! Stress tensor of hexagonal tellurium. tasks 0 440 500 test .true. tforce .true. epsengy 1.e-6 msmooth 4 ptnucl .false. maxlatvstp 1 lorbcnd .true. autolinengy .true. ngridk 4 4 4 swidth 0.01 avec 4.2636082 -7.3847860 0.0000000 4.2636082 7.3847860 0.0000000 0.0000000 0.0000000 11.2457997 sppath '../../species/' atoms 1 : nspecies 'Te.in' : spfname 3 : natoms; atposl below -0.268334780 -0.268334780 0.000000000 0.268334780 0.000000000 0.333333333 0.000000000 0.268334780 0.666666666 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016543 xustar0030 mtime=1623670096.869100678 30 atime=1623670096.868100679 30 ctime=1623670096.869100678 elk-7.2.42/tests/test_028/TEST_705.OUT_0000644002504400250440000000010114061636520020570 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 6 elk-7.2.42/tests/test_028/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.870100677 30 atime=1623670096.870100677 30 ctime=1623670096.870100677 elk-7.2.42/tests/test_028/TEST_000.OUT_0000644002504400250440000000012614061636520020563 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -20455.5724274 elk-7.2.42/tests/PaxHeaders.21776/test_0270000644000000000000000000000013214061636520014563 xustar0030 mtime=1623670096.882100666 30 atime=1623670096.871100676 30 ctime=1623670096.882100666 elk-7.2.42/tests/test_027/0000755002504400250440000000000014061636520016675 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016542 xustar0030 mtime=1623670096.872100675 30 atime=1623670096.872100675 30 ctime=1623670096.872100675 elk-7.2.42/tests/test_027/TEST_705.OUT_0000644002504400250440000000010114061636520020567 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 4 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.873100674 30 atime=1623670096.873100674 30 ctime=1623670096.873100674 elk-7.2.42/tests/test_027/TEST_900.OUT_0000644002504400250440000000007014061636520020571 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 8873 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.875100673 30 atime=1623670096.874100674 30 ctime=1623670096.875100673 elk-7.2.42/tests/test_027/TEST_910.OUT_0000644002504400250440000001052214061636520020575 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 141 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.294085021773 5 0.294085021773 6 -0.294085021773 7 0.588170043546 8 0.00000000000 9 0.00000000000 10 -0.367606277216E-01 11 0.367606277216E-01 12 0.367606277216E-01 13 0.257324394051 14 0.330845649494 15 -0.257324394051 16 0.551409415824 17 0.367606277216E-01 18 0.367606277216E-01 19 -0.735212554432E-01 20 0.735212554432E-01 21 0.735212554432E-01 22 0.220563766330 23 0.367606277216 24 -0.220563766330 25 0.514648788102 26 0.735212554432E-01 27 0.735212554432E-01 28 -0.110281883165 29 0.110281883165 30 0.110281883165 31 0.183803138608 32 0.404366904938 33 -0.183803138608 34 0.477888160381 35 0.110281883165 36 0.110281883165 37 -0.147042510886 38 0.147042510886 39 0.147042510886 40 0.147042510886 41 0.441127532659 42 -0.147042510886 43 0.441127532659 44 0.147042510886 45 0.147042510886 46 -0.183803138608 47 0.183803138608 48 0.183803138608 49 0.110281883165 50 0.477888160381 51 -0.110281883165 52 0.404366904938 53 0.183803138608 54 0.183803138608 55 -0.220563766330 56 0.220563766330 57 0.220563766330 58 0.735212554432E-01 59 0.514648788102 60 -0.735212554432E-01 61 0.367606277216 62 0.220563766330 63 0.220563766330 64 -0.257324394051 65 0.257324394051 66 0.257324394051 67 0.367606277216E-01 68 0.551409415824 69 -0.367606277216E-01 70 0.330845649494 71 0.257324394051 72 0.257324394051 73 -0.294085021773 74 0.294085021773 75 0.294085021773 76 0.00000000000 77 0.588170043546 78 0.00000000000 79 -0.330845649494 80 0.330845649494 81 0.330845649494 82 -0.367606277216E-01 83 0.624930671267 84 0.367606277216E-01 85 0.257324394051 86 0.330845649494 87 0.330845649494 88 -0.367606277216 89 0.367606277216 90 0.367606277216 91 -0.735212554432E-01 92 0.661691298989 93 0.735212554432E-01 94 0.220563766330 95 0.367606277216 96 0.367606277216 97 -0.404366904938 98 0.404366904938 99 0.404366904938 100 -0.110281883165 101 0.698451926710 102 0.110281883165 103 0.183803138608 104 0.404366904938 105 0.404366904938 106 -0.441127532659 107 0.441127532659 108 0.441127532659 109 -0.147042510886 110 0.735212554432 111 0.147042510886 112 0.147042510886 113 0.441127532659 114 0.441127532659 115 -0.477888160381 116 0.477888160381 117 0.477888160381 118 -0.183803138608 119 0.771973182154 120 0.183803138608 121 0.110281883165 122 0.477888160381 123 0.477888160381 124 -0.514648788102 125 0.514648788102 126 0.514648788102 127 -0.220563766330 128 0.808733809875 129 0.220563766330 130 0.735212554432E-01 131 0.514648788102 132 0.514648788102 133 -0.551409415824 134 0.551409415824 135 0.551409415824 136 -0.257324394051 137 0.845494437597 138 0.257324394051 139 0.367606277216E-01 140 0.551409415824 141 0.551409415824 elk-7.2.42/tests/test_027/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015743 xustar0030 mtime=1623670096.876100672 30 atime=1623670096.876100672 30 ctime=1623670096.876100672 elk-7.2.42/tests/test_027/elk.in0000644002504400250440000000046714061636520020007 0ustar00dewhurstdewhurst00000000000000 ! Calculation of the Born effective charges for GaAs. tasks 208 500 test .true. deltaph 0.01 ngridk 2 2 2 nkspolar 8 avec 0.5 0.5 0.0 0.5 0.0 0.5 0.0 0.5 0.5 scale 10.6826 sppath '../../species/' atoms 2 'Ga.in' 1 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.877100671 30 atime=1623670096.877100671 30 ctime=1623670096.877100671 elk-7.2.42/tests/test_027/TEST_500.OUT_0000644002504400250440000000013514061636520020567 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 5.40374552954 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012714061636520016540 xustar0029 mtime=1623670096.87810067 29 atime=1623670096.87810067 29 ctime=1623670096.87810067 elk-7.2.42/tests/test_027/TEST_510.OUT_0000644002504400250440000000014514061636520020571 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.560022467131E-02 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.880100668 30 atime=1623670096.879100669 30 ctime=1623670096.880100668 elk-7.2.42/tests/test_027/TEST_400.OUT_0000644002504400250440000000014114061636520020563 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 63.9851353992 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.881100667 30 atime=1623670096.881100667 30 ctime=1623670096.881100667 elk-7.2.42/tests/test_027/TEST_000.OUT_0000644002504400250440000000012614061636520020562 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -4198.64842022 elk-7.2.42/tests/test_027/PaxHeaders.21776/TEST_208.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.882100666 30 atime=1623670096.882100666 30 ctime=1623670096.882100666 elk-7.2.42/tests/test_027/TEST_208.OUT_0000644002504400250440000000023514061636520020575 0ustar00dewhurstdewhurst00000000000000'Born effective charge' 2 3 0.100000000000E-02 1 -2.19737642162 2 -0.418107058480E-03 3 -0.934399804095E-03 elk-7.2.42/tests/PaxHeaders.21776/test_0030000644000000000000000000000013214061636520014555 xustar0030 mtime=1623670096.895100654 30 atime=1623670096.883100665 30 ctime=1623670096.895100654 elk-7.2.42/tests/test_003/0000755002504400250440000000000014061636520016667 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_003/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015735 xustar0030 mtime=1623670096.884100664 30 atime=1623670096.884100664 30 ctime=1623670096.884100664 elk-7.2.42/tests/test_003/elk.in0000644002504400250440000000067314061636520020000 0ustar00dewhurstdewhurst00000000000000 tasks 0 500 test .true. xctype 21 maxscl 10 tforce .true. mixtype 3 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 0.27 0.27 0.27 0.0 0.0 0.0 ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.886100662 30 atime=1623670096.886100662 30 ctime=1623670096.886100662 elk-7.2.42/tests/test_003/TEST_705.OUT_0000644002504400250440000000010114061636520020561 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 12 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.887100661 30 atime=1623670096.887100661 30 ctime=1623670096.887100661 elk-7.2.42/tests/test_003/TEST_900.OUT_0000644002504400250440000000007014061636520020563 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7799 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013014061636520016530 xustar0029 mtime=1623670096.88910066 30 atime=1623670096.888100661 29 ctime=1623670096.88910066 elk-7.2.42/tests/test_003/TEST_910.OUT_0000644002504400250440000000037114061636520020570 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 6 0.100000000000E-07 1 0.153099057192 2 0.153099057192 3 0.153099057192 4 0.459297171577 5 0.459297171577 6 -0.153099057192 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.890100659 30 atime=1623670096.890100659 30 ctime=1623670096.890100659 elk-7.2.42/tests/test_003/TEST_500.OUT_0000644002504400250440000000013514061636520020561 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.555111986930E-12 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016526 xustar0030 mtime=1623670096.892100657 30 atime=1623670096.891100658 30 ctime=1623670096.892100657 elk-7.2.42/tests/test_003/TEST_510.OUT_0000644002504400250440000000014514061636520020563 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.846319056770E-01 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.893100656 30 atime=1623670096.893100656 30 ctime=1623670096.893100656 elk-7.2.42/tests/test_003/TEST_400.OUT_0000644002504400250440000000014114061636520020555 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9921531661 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016520 xustar0030 mtime=1623670096.894100655 30 atime=1623670096.894100655 30 ctime=1623670096.894100655 elk-7.2.42/tests/test_003/TEST_000.OUT_0000644002504400250440000000012614061636520020554 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -580.223475221 elk-7.2.42/tests/test_003/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.896100653 30 atime=1623670096.896100653 30 ctime=1623670096.896100653 elk-7.2.42/tests/test_003/TEST_750.OUT_0000644002504400250440000000036114061636520020571 0ustar00dewhurstdewhurst00000000000000'total forces' 2 6 0.100000000000E-02 1 0.177938835190E-01 2 0.177938835190E-01 3 0.177938835190E-01 4 -0.177938835190E-01 5 -0.177938835190E-01 6 -0.177938835190E-01 elk-7.2.42/tests/PaxHeaders.21776/test_0070000644000000000000000000000013214061636520014561 xustar0030 mtime=1623670096.919100632 30 atime=1623670096.897100652 30 ctime=1623670096.919100632 elk-7.2.42/tests/test_007/0000755002504400250440000000000014061636520016673 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013014061636520016533 xustar0029 mtime=1623670096.89910065 30 atime=1623670096.898100651 29 ctime=1623670096.89910065 elk-7.2.42/tests/test_007/TEST_900.OUT_0000644002504400250440000000007014061636520020567 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2801 elk-7.2.42/tests/test_007/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015741 xustar0030 mtime=1623670096.900100649 30 atime=1623670096.900100649 30 ctime=1623670096.900100649 elk-7.2.42/tests/test_007/elk.in0000644002504400250440000000136614061636520020004 0ustar00dewhurstdewhurst00000000000000 ! FeAl in CsCl (B2) structure using GGA+U and interpolation between AMF and ! FLL double counting. tasks 0 15 16 500 test .true. kstlist 4 8 mixtype 1 msmooth 4 wplot 50 100 2 0.0 0.25 gmaxvr 10.0 xctype 20 dft+u 3 1 : dftu, inpdftu 1 2 0.183 0.034911967 : is, l, U, J spinpol .true. bfieldc 0.0 0.0 -0.01 scale 5.496 avec 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 'Al.in' 1 0.5 0.5 0.5 0.0 0.0 0.0 : atposl, bfcmt sppath '../../species/' ngridk 4 4 4 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.902100648 30 atime=1623670096.902100648 30 ctime=1623670096.902100648 elk-7.2.42/tests/test_007/TEST_705.OUT_0000644002504400250440000000010114061636520020565 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016536 xustar0030 mtime=1623670096.904100646 30 atime=1623670096.904100646 30 ctime=1623670096.904100646 elk-7.2.42/tests/test_007/TEST_910.OUT_0000644002504400250440000000174114061636520020576 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 30 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.285807191920 5 0.00000000000 6 0.00000000000 7 0.571614383841 8 0.00000000000 9 0.00000000000 10 0.285807191920 11 0.285807191920 12 0.00000000000 13 0.571614383841 14 0.285807191920 15 0.00000000000 16 0.571614383841 17 0.571614383841 18 0.00000000000 19 0.285807191920 20 0.285807191920 21 0.285807191920 22 0.571614383841 23 0.285807191920 24 0.285807191920 25 0.571614383841 26 0.571614383841 27 0.285807191920 28 0.571614383841 29 0.571614383841 30 0.571614383841 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.906100644 30 atime=1623670096.906100644 30 ctime=1623670096.906100644 elk-7.2.42/tests/test_007/TEST_500.OUT_0000644002504400250440000000013514061636520020565 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 85.1145929024 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.908100642 30 atime=1623670096.907100643 30 ctime=1623670096.908100642 elk-7.2.42/tests/test_007/TEST_510.OUT_0000644002504400250440000000014514061636520020567 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.110435201142E-02 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.909100641 30 atime=1623670096.909100641 30 ctime=1623670096.909100641 elk-7.2.42/tests/test_007/TEST_400.OUT_0000644002504400250440000000014114061636520020561 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 38.9880138586 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.911100639 30 atime=1623670096.911100639 30 ctime=1623670096.911100639 elk-7.2.42/tests/test_007/TEST_450.OUT_0000644002504400250440000000014014061636520020565 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.531032238472 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.913100637 30 atime=1623670096.913100637 30 ctime=1623670096.913100637 elk-7.2.42/tests/test_007/TEST_800.OUT_0000644002504400250440000000014414061636520020570 0ustar00dewhurstdewhurst00000000000000'DFT+U energy for each atom' 2 1 0.100000000000E-03 1 0.122669742967E-01 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_810.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.915100636 30 atime=1623670096.914100636 30 ctime=1623670096.915100636 elk-7.2.42/tests/test_007/TEST_810.OUT_0000644002504400250440000000475514061636520020605 0ustar00dewhurstdewhurst00000000000000'U and J parameters' 2 80 0.100000000000E-03 1 0.183000000000 2 0.349119670000E-01 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 7 0.00000000000 8 0.00000000000 9 0.00000000000 10 0.00000000000 11 0.00000000000 12 0.00000000000 13 0.00000000000 14 0.00000000000 15 0.00000000000 16 0.00000000000 17 0.00000000000 18 0.00000000000 19 0.00000000000 20 0.00000000000 21 0.00000000000 22 0.00000000000 23 0.00000000000 24 0.00000000000 25 0.00000000000 26 0.00000000000 27 0.00000000000 28 0.00000000000 29 0.00000000000 30 0.00000000000 31 0.00000000000 32 0.00000000000 33 0.00000000000 34 0.00000000000 35 0.00000000000 36 0.00000000000 37 0.00000000000 38 0.00000000000 39 0.00000000000 40 0.00000000000 41 0.00000000000 42 0.00000000000 43 0.00000000000 44 0.00000000000 45 0.00000000000 46 0.00000000000 47 0.00000000000 48 0.00000000000 49 0.00000000000 50 0.00000000000 51 0.00000000000 52 0.00000000000 53 0.00000000000 54 0.00000000000 55 0.00000000000 56 0.00000000000 57 0.00000000000 58 0.00000000000 59 0.00000000000 60 0.00000000000 61 0.00000000000 62 0.00000000000 63 0.00000000000 64 0.00000000000 65 0.00000000000 66 0.00000000000 67 0.00000000000 68 0.00000000000 69 0.00000000000 70 0.00000000000 71 0.00000000000 72 0.00000000000 73 0.00000000000 74 0.00000000000 75 0.00000000000 76 0.00000000000 77 0.00000000000 78 0.00000000000 79 0.00000000000 80 0.00000000000 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.916100634 30 atime=1623670096.916100634 30 ctime=1623670096.916100634 elk-7.2.42/tests/test_007/TEST_000.OUT_0000644002504400250440000000012614061636520020560 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1515.73951144 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_015.OUT_0000644000000000000000000000013214061636520016532 xustar0030 mtime=1623670096.918100633 30 atime=1623670096.918100633 30 ctime=1623670096.918100633 elk-7.2.42/tests/test_007/TEST_015.OUT_0000644002504400250440000000040614061636520020567 0ustar00dewhurstdewhurst00000000000000'total muffin-tin angular momentum' 2 6 0.100000000000E-02 1 0.377657086577E-17 2 -0.919065354963E-18 3 0.259466620087 4 0.483583453545E-18 5 0.334120609772E-17 6 -0.554513869150E-02 elk-7.2.42/tests/test_007/PaxHeaders.21776/TEST_016.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.920100631 30 atime=1623670096.920100631 30 ctime=1623670096.920100631 elk-7.2.42/tests/test_007/TEST_016.OUT_0000644002504400250440000000041614061636520020571 0ustar00dewhurstdewhurst00000000000000'muffin-tin angular momentum for one state' 2 6 0.100000000000E-02 1 0.104883896277E-06 2 0.332930327660E-06 3 0.132660349122 4 -0.936830057932E-06 5 0.916928052435E-06 6 0.156280379029 elk-7.2.42/tests/PaxHeaders.21776/test_0110000644000000000000000000000013114061636520014553 xustar0030 mtime=1623670096.935100617 29 atime=1623670096.92110063 30 ctime=1623670096.935100617 elk-7.2.42/tests/test_011/0000755002504400250440000000000014061636520016666 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016530 xustar0030 mtime=1623670096.923100628 30 atime=1623670096.922100629 30 ctime=1623670096.923100628 elk-7.2.42/tests/test_011/TEST_900.OUT_0000644002504400250440000000007014061636520020562 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7799 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.924100627 30 atime=1623670096.924100627 30 ctime=1623670096.924100627 elk-7.2.42/tests/test_011/TEST_705.OUT_0000644002504400250440000000010114061636520020560 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.926100625 30 atime=1623670096.925100626 30 ctime=1623670096.926100625 elk-7.2.42/tests/test_011/TEST_910.OUT_0000644002504400250440000000037114061636520020567 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 6 0.100000000000E-07 1 0.153099057192 2 0.153099057192 3 0.153099057192 4 0.459297171577 5 0.459297171577 6 -0.153099057192 elk-7.2.42/tests/test_011/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015734 xustar0030 mtime=1623670096.927100624 30 atime=1623670096.927100624 30 ctime=1623670096.927100624 elk-7.2.42/tests/test_011/elk.in0000644002504400250440000000066714061636520020002 0ustar00dewhurstdewhurst00000000000000 ! Hartree-Fock calculation of silicon. tasks 0 5 500 test .true. maxscl 2 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt 0.25 0.25 0.25 0.0 0.0 0.0 ngridk 2 2 2 vkloff 0.5 0.5 0.5 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016524 xustar0030 mtime=1623670096.929100622 30 atime=1623670096.929100622 30 ctime=1623670096.929100622 elk-7.2.42/tests/test_011/TEST_500.OUT_0000644002504400250440000000013514061636520020560 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.695818068940E-12 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016525 xustar0030 mtime=1623670096.931100621 30 atime=1623670096.931100621 30 ctime=1623670096.931100621 elk-7.2.42/tests/test_011/TEST_510.OUT_0000644002504400250440000000014514061636520020562 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.348480655365 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013114061636520016522 xustar0030 mtime=1623670096.933100619 29 atime=1623670096.93210062 30 ctime=1623670096.933100619 elk-7.2.42/tests/test_011/TEST_400.OUT_0000644002504400250440000000014114061636520020554 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9921684681 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016517 xustar0030 mtime=1623670096.934100618 30 atime=1623670096.934100618 30 ctime=1623670096.934100618 elk-7.2.42/tests/test_011/TEST_000.OUT_0000644002504400250440000000012614061636520020553 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -579.532441954 elk-7.2.42/tests/test_011/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.935100617 30 atime=1623670096.935100617 30 ctime=1623670096.935100617 elk-7.2.42/tests/test_011/TEST_800.OUT_0000644002504400250440000000026414061636520020566 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 3 0.100000000000E-07 1 394.581580334 2 51.1494504119 3 35.9439292598 elk-7.2.42/tests/PaxHeaders.21776/test_0150000644000000000000000000000013214061636520014560 xustar0030 mtime=1623670096.954100599 30 atime=1623670096.936100616 30 ctime=1623670096.954100599 elk-7.2.42/tests/test_015/0000755002504400250440000000000014061636520016672 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016537 xustar0030 mtime=1623670096.938100614 30 atime=1623670096.937100615 30 ctime=1623670096.938100614 elk-7.2.42/tests/test_015/TEST_705.OUT_0000644002504400250440000000010114061636520020564 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.939100613 30 atime=1623670096.939100613 30 ctime=1623670096.939100613 elk-7.2.42/tests/test_015/TEST_900.OUT_0000644002504400250440000000007014061636520020566 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7247 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.940100612 30 atime=1623670096.940100612 30 ctime=1623670096.940100612 elk-7.2.42/tests/test_015/TEST_910.OUT_0000644002504400250440000000066314061636520020577 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 12 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.597004528775 5 -0.199001509592 6 -0.199001509592 7 0.398003019183 8 0.398003019183 9 -0.398003019183 10 0.199001509592 11 0.199001509592 12 0.199001509592 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000012714061636520016534 xustar0029 mtime=1623670096.94210061 29 atime=1623670096.94210061 29 ctime=1623670096.94210061 elk-7.2.42/tests/test_015/TEST_500.OUT_0000644002504400250440000000013514061636520020564 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 49.6073399761 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016531 xustar0030 mtime=1623670096.943100609 30 atime=1623670096.943100609 30 ctime=1623670096.943100609 elk-7.2.42/tests/test_015/TEST_510.OUT_0000644002504400250440000000014514061636520020566 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.614743356983E-01 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.945100608 30 atime=1623670096.945100608 30 ctime=1623670096.945100608 elk-7.2.42/tests/test_015/TEST_400.OUT_0000644002504400250440000000014114061636520020560 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 72.0070954290 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.946100607 30 atime=1623670096.946100607 30 ctime=1623670096.946100607 elk-7.2.42/tests/test_015/TEST_450.OUT_0000644002504400250440000000014014061636520020564 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.376223233397E-16 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520016533 xustar0030 mtime=1623670096.948100605 30 atime=1623670096.947100606 30 ctime=1623670096.948100605 elk-7.2.42/tests/test_015/TEST_800.OUT_0000644002504400250440000000020314061636520020563 0ustar00dewhurstdewhurst00000000000000'DFT+U energy for each atom' 2 2 0.100000000000E-03 1 0.836291508083 2 0.836291508083 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_810.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.949100604 30 atime=1623670096.949100604 30 ctime=1623670096.949100604 elk-7.2.42/tests/test_015/TEST_810.OUT_0000644002504400250440000000475514061636520020604 0ustar00dewhurstdewhurst00000000000000'U and J parameters' 2 80 0.100000000000E-03 1 0.293989988143 2 0.460208922680E-01 3 0.00000000000 4 0.00000000000 5 0.00000000000 6 0.00000000000 7 0.00000000000 8 0.00000000000 9 0.00000000000 10 0.00000000000 11 0.00000000000 12 0.00000000000 13 0.00000000000 14 0.00000000000 15 0.00000000000 16 0.00000000000 17 0.00000000000 18 0.00000000000 19 0.00000000000 20 0.00000000000 21 0.00000000000 22 0.00000000000 23 0.00000000000 24 0.00000000000 25 0.00000000000 26 0.00000000000 27 0.00000000000 28 0.00000000000 29 0.00000000000 30 0.00000000000 31 0.00000000000 32 0.00000000000 33 0.00000000000 34 0.00000000000 35 0.00000000000 36 0.00000000000 37 0.00000000000 38 0.00000000000 39 0.00000000000 40 0.00000000000 41 0.00000000000 42 0.00000000000 43 0.00000000000 44 0.00000000000 45 0.00000000000 46 0.00000000000 47 0.00000000000 48 0.00000000000 49 0.00000000000 50 0.00000000000 51 0.00000000000 52 0.00000000000 53 0.00000000000 54 0.00000000000 55 0.00000000000 56 0.00000000000 57 0.00000000000 58 0.00000000000 59 0.00000000000 60 0.00000000000 61 0.00000000000 62 0.00000000000 63 0.00000000000 64 0.00000000000 65 0.00000000000 66 0.00000000000 67 0.00000000000 68 0.00000000000 69 0.00000000000 70 0.00000000000 71 0.00000000000 72 0.00000000000 73 0.00000000000 74 0.00000000000 75 0.00000000000 76 0.00000000000 77 0.00000000000 78 0.00000000000 79 0.00000000000 80 0.00000000000 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016523 xustar0030 mtime=1623670096.951100602 30 atime=1623670096.950100603 30 ctime=1623670096.951100602 elk-7.2.42/tests/test_015/TEST_000.OUT_0000644002504400250440000000012614061636520020557 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -3197.50498280 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_820.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.952100601 30 atime=1623670096.952100601 30 ctime=1623670096.952100601 elk-7.2.42/tests/test_015/TEST_820.OUT_0000644002504400250440000000014014061636520020565 0ustar00dewhurstdewhurst00000000000000'Norm of tensor moments' 2 1 0.100000000000E-03 1 91.2305548010 elk-7.2.42/tests/test_015/PaxHeaders.21776/TEST_830.OUT_0000644000000000000000000000012414061636520016537 xustar0028 mtime=1623670096.9531006 28 atime=1623670096.9531006 28 ctime=1623670096.9531006 elk-7.2.42/tests/test_015/TEST_830.OUT_0000644002504400250440000000016614061636520020576 0ustar00dewhurstdewhurst00000000000000'Norm of DFT+U Hartree-Fock exchange energies' 2 1 0.100000000000E-03 1 2.16721144871 elk-7.2.42/tests/test_015/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015740 xustar0030 mtime=1623670096.955100598 30 atime=1623670096.955100598 30 ctime=1623670096.955100598 elk-7.2.42/tests/test_015/elk.in0000644002504400250440000000132214061636520017773 0ustar00dewhurstdewhurst00000000000000 ! DFT+U test tasks 0 400 500 maxscl 3 test .true. dft+u 1 5 : dftu, inpdftu 1 2 0.29399 : is, l, U fixed swidth 0.05 spinpol .true. scale 7.893389 avec 1.0 0.5 0.5 0.5 1.0 0.5 0.5 0.5 1.0 atoms 2 : nspecies 'Ni.in' : spfname 2 : natoms; atpos, bfcmt below 0.0 0.0 0.0 0.0 0.0 -2.0 0.5 0.5 0.5 0.0 0.0 2.0 'O.in' : spfname 2 : natoms; atpos, bfcmt below 0.25 0.25 0.25 0.0 0.0 0.0 0.75 0.75 0.75 0.0 0.0 0.0 reducebf 0.5 sppath '../../species/' ngridk 2 2 2 elk-7.2.42/tests/PaxHeaders.21776/test_0190000644000000000000000000000013214061636520014564 xustar0030 mtime=1623670096.968100586 30 atime=1623670096.955100598 30 ctime=1623670096.968100586 elk-7.2.42/tests/test_019/0000755002504400250440000000000014061636520016676 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests/test_019/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520015744 xustar0030 mtime=1623670096.957100597 30 atime=1623670096.957100597 30 ctime=1623670096.957100597 elk-7.2.42/tests/test_019/elk.in0000644002504400250440000000071714061636520020006 0ustar00dewhurstdewhurst00000000000000 ! TDDFT time evolution test tasks 0 450 460 500 test .true. ramdisk .true. tshift .false. lradstp 5 rgkmax 6.0 ngridk 4 4 4 nempty 6 tstime 50.0 dtimes 1.0 pulse 1 0.0 0.0 250.0 0.03 0.0 0.0 30.0 10.0 ntswrite 0 spinpol .true. spinorb .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../species/' atoms 1 'Ni.in' 1 0.0 0.0 0.0 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520016543 xustar0030 mtime=1623670096.958100595 30 atime=1623670096.958100595 30 ctime=1623670096.958100595 elk-7.2.42/tests/test_019/TEST_705.OUT_0000644002504400250440000000010114061636520020570 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 4 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.959100595 30 atime=1623670096.959100595 30 ctime=1623670096.959100595 elk-7.2.42/tests/test_019/TEST_900.OUT_0000644002504400250440000000007014061636520020572 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2109 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.961100593 30 atime=1623670096.960100594 30 ctime=1623670096.961100593 elk-7.2.42/tests/test_019/TEST_910.OUT_0000644002504400250440000000360314061636520020600 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 60 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.235855304324 5 0.235855304324 6 -0.235855304324 7 0.471710608647 8 0.471710608647 9 -0.471710608647 10 0.707565912971 11 0.707565912971 12 -0.707565912971 13 0.471710608647 14 0.00000000000 15 0.00000000000 16 0.707565912971 17 0.235855304324 18 -0.235855304324 19 0.943421217294 20 0.471710608647 21 -0.471710608647 22 0.707565912971 23 -0.235855304324 24 0.235855304324 25 0.943421217294 26 0.00000000000 27 0.00000000000 28 1.17927652162 29 0.235855304324 30 -0.235855304324 31 0.943421217294 32 -0.471710608647 33 0.471710608647 34 1.17927652162 35 -0.235855304324 36 0.235855304324 37 0.00000000000 38 0.00000000000 39 0.471710608647 40 0.471710608647 41 0.471710608647 42 0.00000000000 43 0.707565912971 44 0.707565912971 45 -0.235855304324 46 0.943421217294 47 0.471710608647 48 0.00000000000 49 0.943421217294 50 0.00000000000 51 0.471710608647 52 0.00000000000 53 0.00000000000 54 0.943421217294 55 0.707565912971 56 0.707565912971 57 0.235855304324 58 0.00000000000 59 0.00000000000 60 1.41513182594 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520016534 xustar0030 mtime=1623670096.962100592 30 atime=1623670096.962100592 30 ctime=1623670096.962100592 elk-7.2.42/tests/test_019/TEST_500.OUT_0000644002504400250440000000013514061636520020570 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 70.1899859819 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636520016535 xustar0030 mtime=1623670096.963100591 30 atime=1623670096.963100591 30 ctime=1623670096.963100591 elk-7.2.42/tests/test_019/TEST_510.OUT_0000644002504400250440000000014514061636520020572 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.182636792935E-02 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000012714061636520016537 xustar0029 mtime=1623670096.96410059 29 atime=1623670096.96410059 29 ctime=1623670096.96410059 elk-7.2.42/tests/test_019/TEST_400.OUT_0000644002504400250440000000014114061636520020564 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9993302808 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636520016540 xustar0030 mtime=1623670096.966100588 30 atime=1623670096.966100588 30 ctime=1623670096.966100588 elk-7.2.42/tests/test_019/TEST_450.OUT_0000644002504400250440000000014014061636520020570 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.591058878524 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520016527 xustar0030 mtime=1623670096.967100587 30 atime=1623670096.967100587 30 ctime=1623670096.967100587 elk-7.2.42/tests/test_019/TEST_000.OUT_0000644002504400250440000000012614061636520020563 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1518.38040797 elk-7.2.42/tests/test_019/PaxHeaders.21776/TEST_460.OUT_0000644000000000000000000000013214061636520016541 xustar0030 mtime=1623670096.968100586 30 atime=1623670096.968100586 30 ctime=1623670096.968100586 elk-7.2.42/tests/test_019/TEST_460.OUT_0000644002504400250440000000024714061636520020601 0ustar00dewhurstdewhurst00000000000000'total current of last time step' 2 3 0.100000000000E-03 1 0.00000000000 2 0.173472347598E-17 3 0.108735818842 elk-7.2.42/PaxHeaders.21776/tests-libxc0000644000000000000000000000013114061636521014313 xustar0030 mtime=1623670097.052100508 29 atime=1623670096.97510058 30 ctime=1623670097.052100508 elk-7.2.42/tests-libxc/0000755002504400250440000000000014061636521016426 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0060000644000000000000000000000013214061636520015657 xustar0030 mtime=1623670096.989100567 30 atime=1623670096.976100579 30 ctime=1623670096.989100567 elk-7.2.42/tests-libxc/test_006/0000755002504400250440000000000014061636520017771 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520017633 xustar0030 mtime=1623670096.978100577 30 atime=1623670096.978100577 30 ctime=1623670096.978100577 elk-7.2.42/tests-libxc/test_006/TEST_900.OUT_0000644002504400250440000000007014061636520021665 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7799 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017037 xustar0030 mtime=1623670096.979100576 30 atime=1623670096.979100576 30 ctime=1623670096.979100576 elk-7.2.42/tests-libxc/test_006/elk.in0000644002504400250440000000043314061636520021074 0ustar00dewhurstdewhurst00000000000000 ! Hybrid functional test. tasks 0 5 500 test .true. xctype 100 0 406 ngridk 6 6 6 ngridq 3 3 3 nempty 8 avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../species/' atoms 1 'Si.in' 2 0.00 0.00 0.00 0.25 0.25 0.25 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520017634 xustar0030 mtime=1623670096.981100574 30 atime=1623670096.981100574 30 ctime=1623670096.981100574 elk-7.2.42/tests-libxc/test_006/TEST_910.OUT_0000644002504400250440000000301714061636520021672 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 48 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.102066038128 5 0.102066038128 6 -0.102066038128 7 0.204132076257 8 0.204132076257 9 -0.204132076257 10 0.306198114385 11 0.306198114385 12 -0.306198114385 13 0.204132076257 14 0.358605526043E-17 15 -0.358605526043E-17 16 0.306198114385 17 0.102066038128 18 -0.102066038128 19 0.408264152513 20 0.204132076257 21 -0.204132076257 22 0.510330190642 23 0.306198114385 24 -0.306198114385 25 0.612396228770 26 0.408264152513 27 -0.408264152513 28 0.408264152513 29 0.717211052085E-17 30 -0.717211052085E-17 31 0.510330190642 32 0.102066038128 33 -0.102066038128 34 0.612396228770 35 0.204132076257 36 -0.204132076257 37 0.612396228770 38 0.00000000000 39 0.00000000000 40 0.408264152513 41 0.204132076257 42 -0.241695203552E-16 43 0.510330190642 44 0.306198114385 45 -0.102066038128 46 0.612396228770 47 0.204132076257 48 0.174638430682E-16 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520017636 xustar0030 mtime=1623670096.982100573 30 atime=1623670096.982100573 30 ctime=1623670096.982100573 elk-7.2.42/tests-libxc/test_006/TEST_705.OUT_0000644002504400250440000000010114061636520021663 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520017627 xustar0030 mtime=1623670096.984100571 30 atime=1623670096.984100571 30 ctime=1623670096.984100571 elk-7.2.42/tests-libxc/test_006/TEST_500.OUT_0000644002504400250440000000013514061636520021663 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.390500825608E-11 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012714061636520017634 xustar0029 mtime=1623670096.98510057 29 atime=1623670096.98510057 29 ctime=1623670096.98510057 elk-7.2.42/tests-libxc/test_006/TEST_510.OUT_0000644002504400250440000000014514061636520021665 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.827208033236E-01 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636520017626 xustar0030 mtime=1623670096.987100569 30 atime=1623670096.987100569 30 ctime=1623670096.987100569 elk-7.2.42/tests-libxc/test_006/TEST_400.OUT_0000644002504400250440000000014114061636520021657 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9912511507 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636520017622 xustar0030 mtime=1623670096.988100568 30 atime=1623670096.988100568 30 ctime=1623670096.988100568 elk-7.2.42/tests-libxc/test_006/TEST_000.OUT_0000644002504400250440000000012614061636520021656 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -580.163931813 elk-7.2.42/tests-libxc/test_006/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636520017632 xustar0030 mtime=1623670096.990100566 30 atime=1623670096.990100566 30 ctime=1623670096.990100566 elk-7.2.42/tests-libxc/test_006/TEST_800.OUT_0000644002504400250440000000032314061636520021665 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 4 0.100000000000E-07 1 887.808555744 2 115.086263427 3 80.8738408354 4 40.8197509399 elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0040000644000000000000000000000013214061636521015656 xustar0030 mtime=1623670097.004100553 30 atime=1623670096.991100565 30 ctime=1623670097.004100553 elk-7.2.42/tests-libxc/test_004/0000755002504400250440000000000014061636521017770 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636520017634 xustar0030 mtime=1623670096.992100564 30 atime=1623670096.992100564 30 ctime=1623670096.992100564 elk-7.2.42/tests-libxc/test_004/TEST_705.OUT_0000644002504400250440000000010114061636520021661 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636520017631 xustar0030 mtime=1623670096.994100562 30 atime=1623670096.994100562 30 ctime=1623670096.994100562 elk-7.2.42/tests-libxc/test_004/TEST_900.OUT_0000644002504400250440000000007014061636520021663 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 7799 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636520017632 xustar0030 mtime=1623670096.995100561 30 atime=1623670096.995100561 30 ctime=1623670096.995100561 elk-7.2.42/tests-libxc/test_004/TEST_910.OUT_0000644002504400250440000000531014061636520021666 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 87 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.765495285962E-01 5 0.765495285962E-01 6 -0.765495285962E-01 7 0.153099057192 8 0.153099057192 9 -0.153099057192 10 0.229648585789 11 0.229648585789 12 -0.229648585789 13 0.306198114385 14 0.306198114385 15 -0.306198114385 16 0.153099057192 17 0.00000000000 18 0.00000000000 19 0.229648585789 20 0.765495285962E-01 21 -0.765495285962E-01 22 0.306198114385 23 0.153099057192 24 -0.153099057192 25 0.382747642981 26 0.229648585789 27 -0.229648585789 28 0.459297171577 29 0.306198114385 30 -0.306198114385 31 0.535846700174 32 0.382747642981 33 -0.382747642981 34 0.612396228770 35 0.459297171577 36 -0.459297171577 37 0.306198114385 38 0.00000000000 39 0.00000000000 40 0.382747642981 41 0.765495285962E-01 42 -0.765495285962E-01 43 0.459297171577 44 0.153099057192 45 -0.153099057192 46 0.535846700174 47 0.229648585789 48 -0.229648585789 49 0.612396228770 50 0.306198114385 51 -0.306198114385 52 0.459297171577 53 0.138777878078E-16 54 -0.138777878078E-16 55 0.535846700174 56 0.765495285962E-01 57 -0.765495285962E-01 58 0.612396228770 59 0.153099057192 60 -0.153099057192 61 0.612396228770 62 0.00000000000 63 0.00000000000 64 0.306198114385 65 0.153099057192 66 0.00000000000 67 0.382747642981 68 0.229648585789 69 -0.765495285962E-01 70 0.459297171577 71 0.306198114385 72 -0.153099057192 73 0.459297171577 74 0.153099057192 75 -0.138777878078E-16 76 0.535846700174 77 0.229648585789 78 -0.765495285962E-01 79 0.612396228770 80 0.306198114385 81 -0.153099057192 82 0.612396228770 83 0.153099057192 84 0.00000000000 85 0.612396228770 86 0.306198114385 87 0.00000000000 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636520017035 xustar0030 mtime=1623670096.997100559 30 atime=1623670096.997100559 30 ctime=1623670096.997100559 elk-7.2.42/tests-libxc/test_004/elk.in0000644002504400250440000000072414061636520021075 0ustar00dewhurstdewhurst00000000000000 ! Tran-Blaha meta-GGA functional test. tasks 0 120 121 500 test .true. xctype 100 208 12 nrmtscf 2 nxoapwlo 1 msmooth 2 ptnucl .false. avec 5.13 5.13 0.00 5.13 0.00 5.13 0.00 5.13 5.13 sppath '../../species/' atoms 1 : nspecies 'Si.in' : spfname 2 : natoms; atposl below 0.0 0.0 0.0 0.25 0.25 0.25 ngridk 8 8 8 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636520017625 xustar0030 mtime=1623670096.998100558 30 atime=1623670096.998100558 30 ctime=1623670096.998100558 elk-7.2.42/tests-libxc/test_004/TEST_500.OUT_0000644002504400250440000000013514061636520021661 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.339003194219E-08 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636521017627 xustar0030 mtime=1623670097.000100557 30 atime=1623670097.000100557 30 ctime=1623670097.000100557 elk-7.2.42/tests-libxc/test_004/TEST_510.OUT_0000644002504400250440000000014514061636521021664 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.460326559149E-01 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636521017625 xustar0030 mtime=1623670097.001100556 30 atime=1623670097.001100556 30 ctime=1623670097.001100556 elk-7.2.42/tests-libxc/test_004/TEST_400.OUT_0000644002504400250440000000014114061636521021656 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9973348103 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636521017621 xustar0030 mtime=1623670097.003100554 30 atime=1623670097.003100554 30 ctime=1623670097.003100554 elk-7.2.42/tests-libxc/test_004/TEST_000.OUT_0000644002504400250440000000012614061636521021655 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -538.189221047 elk-7.2.42/tests-libxc/test_004/PaxHeaders.21776/TEST_121.OUT_0000644000000000000000000000013214061636521017625 xustar0030 mtime=1623670097.005100552 30 atime=1623670097.004100553 30 ctime=1623670097.005100552 elk-7.2.42/tests-libxc/test_004/TEST_121.OUT_0000644002504400250440000006370314061636521021673 0ustar00dewhurstdewhurst00000000000000'optical conductivity' 3 500 0.100000000000E-01 1 0.790149431269E-03 0.00000000000 2 0.790245256092E-03 -0.790117479646E-03 3 0.790532820425E-03 -0.158042657900E-02 4 0.791012393981E-03 -0.237111909737E-02 5 0.791684426925E-03 -0.316238719368E-02 6 0.792549550851E-03 -0.395442356725E-02 7 0.793608580154E-03 -0.474742163975E-02 8 0.794862513792E-03 -0.554157573870E-02 9 0.796312537464E-03 -0.633708128295E-02 10 0.797960026203E-03 -0.713413497056E-02 11 0.799806547391E-03 -0.793293496945E-02 12 0.801853864216E-03 -0.873368111128E-02 13 0.804103939583E-03 -0.953657508903E-02 14 0.806558940488E-03 -0.103418206587E-01 15 0.809221242885E-03 -0.111496238457E-01 16 0.812093437057E-03 -0.119601931561E-01 17 0.815178333512E-03 -0.127737397939E-01 18 0.818478969444E-03 -0.135904778840E-01 19 0.821998615764E-03 -0.144106247025E-01 20 0.825740784753E-03 -0.152344009136E-01 21 0.829709238357E-03 -0.160620308150E-01 22 0.833907997164E-03 -0.168937425921E-01 23 0.838341350105E-03 -0.177297685803E-01 24 0.843013864925E-03 -0.185703455394E-01 25 0.847930399469E-03 -0.194157149367E-01 26 0.853096113833E-03 -0.202661232434E-01 27 0.858516483450E-03 -0.211218222427E-01 28 0.864197313156E-03 -0.219830693520E-01 29 0.870144752330E-03 -0.228501279591E-01 30 0.876365311154E-03 -0.237232677747E-01 31 0.882865878104E-03 -0.246027652012E-01 32 0.889653738749E-03 -0.254889037200E-01 33 0.896736595951E-03 -0.263819742978E-01 34 0.904122591599E-03 -0.272822758144E-01 35 0.911820329966E-03 -0.281901155126E-01 36 0.919838902849E-03 -0.291058094723E-01 37 0.928187916617E-03 -0.300296831109E-01 38 0.936877521333E-03 -0.309620717113E-01 39 0.945918442128E-03 -0.319033209806E-01 40 0.955322013010E-03 -0.328537876405E-01 41 0.965100213334E-03 -0.338138400540E-01 42 0.975265707150E-03 -0.347838588886E-01 43 0.985831885708E-03 -0.357642378209E-01 44 0.996812913382E-03 -0.367553842855E-01 45 0.100822377736E-02 -0.377577202715E-01 46 0.102008034141E-02 -0.387716831697E-01 47 0.103239940420E-02 -0.397977266772E-01 48 0.104519876243E-02 -0.408363217611E-01 49 0.105849727951E-02 -0.418879576890E-01 50 0.107231496009E-02 -0.429531431298E-01 51 0.108667303117E-02 -0.440324073334E-01 52 0.110159403047E-02 -0.451263013931E-01 53 0.111710190273E-02 -0.462353996020E-01 54 0.113322210490E-02 -0.473603009078E-01 55 0.114998172102E-02 -0.485016304790E-01 56 0.116740958807E-02 -0.496600413895E-01 57 0.118553643380E-02 -0.508362164354E-01 58 0.120439502807E-02 -0.520308700956E-01 59 0.122402034906E-02 -0.532447506503E-01 60 0.124444976639E-02 -0.544786424736E-01 61 0.126572324283E-02 -0.557333685172E-01 62 0.128788355717E-02 -0.570097930064E-01 63 0.131097655060E-02 -0.583088243680E-01 64 0.133505139984E-02 -0.596314184181E-01 65 0.136016092018E-02 -0.609785818357E-01 66 0.138636190261E-02 -0.623513759544E-01 67 0.141371548937E-02 -0.637509209095E-01 68 0.144228759342E-02 -0.651784001787E-01 69 0.147214936759E-02 -0.666350655658E-01 70 0.150337773088E-02 -0.681222426780E-01 71 0.153605595984E-02 -0.696413369588E-01 72 0.157027435496E-02 -0.711938403451E-01 73 0.160613099325E-02 -0.727813386292E-01 74 0.164373258049E-02 -0.744055196161E-01 75 0.168319541895E-02 -0.760681821848E-01 76 0.172464650931E-02 -0.777712463753E-01 77 0.176822480915E-02 -0.795167646454E-01 78 0.181408267477E-02 -0.813069344661E-01 79 0.186238751832E-02 -0.831441124512E-01 80 0.191332371904E-02 -0.850308302536E-01 81 0.196709483543E-02 -0.869698125019E-01 82 0.202392617540E-02 -0.889639971015E-01 83 0.208406779431E-02 -0.910165582881E-01 84 0.214779800662E-02 -0.931309328954E-01 85 0.221542751759E-02 -0.953108503959E-01 86 0.228730430706E-02 -0.975603673877E-01 87 0.236381943094E-02 -0.998839073462E-01 88 0.244541394915E-02 -0.102286306642 89 0.253258724479E-02 -0.104772868061 90 0.262590707358E-02 -0.107349423340 91 0.272602178047E-02 -0.110022406642 92 0.283367525176E-02 -0.112798941327 93 0.294972534886E-02 -0.115686943076 94 0.307516681269E-02 -0.118695243191 95 0.321115996432E-02 -0.121833737067 96 0.335906699928E-02 -0.125113564279 97 0.352049834327E-02 -0.128547328778 98 0.369737250645E-02 -0.132149370501 99 0.389199429526E-02 -0.135936103577 100 0.410715837085E-02 -0.139926441902 101 0.434628839573E-02 -0.144142340847 102 0.461362710030E-02 -0.148609495680 103 0.491450077276E-02 -0.153358254978 104 0.525569519713E-02 -0.158424834628 105 0.564600320843E-02 -0.163852961070 106 0.609704523099E-02 -0.169696142715 107 0.662454089589E-02 -0.176020886780 108 0.725036049856E-02 -0.182911386345 109 0.800599986026E-02 -0.190476582518 110 0.893883015550E-02 -0.198861237851 111 0.101242130271E-01 -0.208264138299 112 0.116913198838E-01 -0.218969681562 113 0.138852526597E-01 -0.231405819638 114 0.172417550034E-01 -0.246252898703 115 0.231850360796E-01 -0.264603948625 116 0.364947628160E-01 -0.287352630360 117 0.695207392563E-01 -0.300872897987 118 0.708861590574E-01 -0.281962461129 119 0.568363110861E-01 -0.313341246473 120 0.701029418999E-01 -0.364460926412 121 0.116939452104 -0.432798428985 122 0.254045151842 -0.500555667116 123 0.470857167456 -0.371928011028 124 0.391530248429 -0.176448683433 125 0.414965121788 -0.161551047390 126 0.343424828721 0.190088324277E-01 127 0.183565392552 -0.103659049068E-01 128 0.173494251501 -0.764502194156E-01 129 0.151132289693 -0.361739688831E-01 130 0.802128177644E-01 -0.711130492912E-01 131 0.553286729764E-01 -0.123377835921 132 0.487002459027E-01 -0.169896633586 133 0.531537915456E-01 -0.215136812060 134 0.767900961421E-01 -0.261956091193 135 0.141561701774 -0.271808894016 136 0.117681168101 -0.221100954436 137 0.774674433953E-01 -0.265877539690 138 0.776784442062E-01 -0.328806669133 139 0.109562531597 -0.400353931638 140 0.210951907428 -0.453756582115 141 0.266326821805 -0.354280622211 142 0.194240176657 -0.399631563368 143 0.261194555065 -0.511624445603 144 0.390555006536 -0.454994936969 145 0.315791902861 -0.491413246945 146 0.438279610150 -0.687436448380 147 0.847143945337 -0.672472821840 148 1.01177484546 -0.275955741833 149 0.821259994061 -0.574640935582E-01 150 0.740888714232 0.283335807310E-01 151 0.589638764688 0.297558767025E-01 152 0.563950056388 -0.147532539363 153 0.757563681621 -0.119477325675 154 0.850343032757 -0.539763709217E-01 155 0.918307250409 0.108570797923 156 0.893852254915 0.307479847692 157 0.783568412026 0.409877137530 158 0.771176222169 0.640957966993 159 0.412507606239 0.744801792064 160 0.217079034827 0.595208718181 161 0.171626914352 0.477772405461 162 0.139899904143 0.440788486163 163 0.856256449798E-01 0.383172287433 164 0.610337000502E-01 0.321381210805 165 0.497843844142E-01 0.270151161495 166 0.448202625181E-01 0.225532218377 167 0.460230530058E-01 0.183663823847 168 0.595433516501E-01 0.142661404835 169 0.100065413301 0.122250382671 170 0.102144318238 0.162067568647 171 0.607437534389E-01 0.140594479683 172 0.541441477154E-01 0.983919943189E-01 173 0.719804226882E-01 0.599528839269E-01 174 0.119632537943 0.327627239735E-01 175 0.169106500888 0.108826974104 176 0.865599265699E-01 0.130990795771 177 0.522900676663E-01 0.891543318262E-01 178 0.443806398612E-01 0.482900525493E-01 179 0.490732058975E-01 0.897065557213E-02 180 0.639929664567E-01 -0.299490757148E-01 181 0.951071241835E-01 -0.634280541073E-01 182 0.122932902592 -0.107979365924 183 0.237290444976 -0.169032934113 184 0.423598558846 -0.408676294946E-01 185 0.353732960929 0.166003799930 186 0.197292351019 0.218334918002 187 0.104892999404 0.150221118645 188 0.818273905877E-01 0.783250380696E-01 189 0.973198362696E-01 0.101977831061E-01 190 0.179592791364 -0.413250975562E-01 191 0.281073989834 0.741359383304E-01 192 0.173170355890 0.147609912411 193 0.104350869163 0.128166537070 194 0.706507093959E-01 0.787489538885E-01 195 0.670774948117E-01 0.432434642542E-01 196 0.558814431702E-01 0.854150759475E-02 197 0.590389103559E-01 -0.389416831975E-01 198 0.848089798360E-01 -0.907373621986E-01 199 0.138586485596 -0.123986260610 200 0.224098897121 -0.136980282504 201 0.248565528562 -0.272544784690E-01 202 0.189529372289 -0.467212404753E-01 203 0.197215204483 -0.732098263831E-01 204 0.204467046307 -0.988802859552E-01 205 0.243694555486 -0.175619341469 206 0.369720940759 -0.172537568059 207 0.466426674968 -0.951364244060E-01 208 0.468913609246 -0.406509657595E-01 209 0.520084624794 0.872827384790E-01 210 0.445445088598 0.180463431515 211 0.334825352605 0.183070685431 212 0.355641847378 0.125067194459 213 0.337450421142 0.186779395951 214 0.287211867964 0.102742576372 215 0.446522056051 0.623717532541E-01 216 0.497832011361 0.265289830425 217 0.344869518756 0.364831397128 218 0.294745401790 0.297757572091 219 0.289104930781 0.367678574136 220 0.165186760685 0.370456875721 221 0.109999868734 0.289965972025 222 0.124822072090 0.218152717246 223 0.175388842152 0.225119016925 224 0.141120663810 0.228217150198 225 0.180896303722 0.204041452239 226 0.171588753414 0.274274123909 227 0.103335610762 0.276894164520 228 0.623912843701E-01 0.236057090354 229 0.508346751151E-01 0.190757424324 230 0.571687751063E-01 0.148295328733 231 0.767350802111E-01 0.117333448474 232 0.106119352119 0.808569101107E-01 233 0.154106633332 0.748925415157E-01 234 0.230411769727 0.636902703670E-01 235 0.285431183336 0.176979043446 236 0.236119128323 0.256196475118 237 0.154902405292 0.255218900435 238 0.171696006425 0.222575833433 239 0.147378831634 0.291911312111 240 0.790979000196E-01 0.267204642095 241 0.571025981974E-01 0.228208689569 242 0.579715693839E-01 0.188282227255 243 0.904286045244E-01 0.167125236364 244 0.101050459738 0.181108936128 245 0.115211116371 0.182190663165 246 0.124018272253 0.209619112245 247 0.896547773343E-01 0.249635926870 248 0.454763209608E-01 0.229228824290 249 0.324920981044E-01 0.200496305387 250 0.353237388424E-01 0.175249453011 251 0.585075461215E-01 0.165268099581 252 0.519054057728E-01 0.190194673133 253 0.302403482364E-01 0.176565063494 254 0.280889393401E-01 0.155837722906 255 0.415977291772E-01 0.142689776692 256 0.434813526251E-01 0.148915267269 257 0.442055380149E-01 0.134995964236 258 0.618246300894E-01 0.142809263792 259 0.487111287775E-01 0.146821338091 260 0.462528082733E-01 0.142572801118 261 0.454940985018E-01 0.130945063893 262 0.691317760958E-01 0.123964939054 263 0.713321815420E-01 0.164369618317 264 0.353758324956E-01 0.164250879584 265 0.222330838645E-01 0.145635623303 266 0.203083646936E-01 0.128554245926 267 0.247067300158E-01 0.115548841100 268 0.283046751700E-01 0.101890250642 269 0.472999287212E-01 0.835391381229E-01 270 0.896063723124E-01 0.932985807517E-01 271 0.824506489482E-01 0.143471436771 272 0.525312051364E-01 0.150486529378 273 0.337482317205E-01 0.134199884376 274 0.387488694072E-01 0.119103838548 275 0.378398595949E-01 0.124911627417 276 0.278460568119E-01 0.111864643200 277 0.359900942696E-01 0.926961605506E-01 278 0.663077740563E-01 0.957600202702E-01 279 0.508486520342E-01 0.122867789876 280 0.353578158144E-01 0.106301806363 281 0.469859119108E-01 0.861679522086E-01 282 0.695565070766E-01 0.948803569039E-01 283 0.791897029452E-01 0.107232882975 284 0.616204323935E-01 0.132229908136 285 0.464828706503E-01 0.118673827429 286 0.529143371378E-01 0.120828158490 287 0.354819974829E-01 0.118073277734 288 0.369486710446E-01 0.982436172157E-01 289 0.634706447429E-01 0.967794583684E-01 290 0.522700508279E-01 0.128586842602 291 0.301640158976E-01 0.116386119982 292 0.314448375695E-01 0.989508664519E-01 293 0.442357498507E-01 0.973629691694E-01 294 0.379653296529E-01 0.108373856833 295 0.272703887809E-01 0.975417759336E-01 296 0.289880894602E-01 0.883180898425E-01 297 0.259204065851E-01 0.768280726467E-01 298 0.338439895701E-01 0.568701480554E-01 299 0.602403348245E-01 0.396891515223E-01 300 0.110836111262 0.577241123681E-01 301 0.986185353458E-01 0.111533823742 302 0.763550861168E-01 0.112925236060 303 0.664945394351E-01 0.110910480460 304 0.718669633132E-01 0.102893467123 305 0.731811982595E-01 0.126929244672 306 0.437445546314E-01 0.127918000056 307 0.351994596381E-01 0.111130761986 308 0.346322022640E-01 0.101364351054 309 0.334068438331E-01 0.883628985732E-01 310 0.467733792069E-01 0.739480060894E-01 311 0.664113846494E-01 0.757774526690E-01 312 0.817007234871E-01 0.911471811715E-01 313 0.623895223518E-01 0.120420578929 314 0.402725525267E-01 0.102072129243 315 0.483153535828E-01 0.777249834916E-01 316 0.886703924176E-01 0.777954980748E-01 317 0.802453643581E-01 0.122092115387 318 0.650563743941E-01 0.127066189216 319 0.411041698836E-01 0.125541409429 320 0.333326845197E-01 0.107046444826 321 0.426999679050E-01 0.949925110736E-01 322 0.490184089311E-01 0.960611511070E-01 323 0.520730181025E-01 0.978022107318E-01 324 0.542565309628E-01 0.970573476127E-01 325 0.560069180233E-01 0.113000855329 326 0.389092845500E-01 0.107737675113 327 0.369582039503E-01 0.952645112013E-01 328 0.478675130127E-01 0.870150889202E-01 329 0.603121891625E-01 0.922757178957E-01 330 0.535230821799E-01 0.111645290047 331 0.394383207309E-01 0.982976463185E-01 332 0.539255868436E-01 0.848558227566E-01 333 0.744562386735E-01 0.104012493675 334 0.521376177358E-01 0.128684129871 335 0.329914172879E-01 0.115134271055 336 0.328519259931E-01 0.105508122617 337 0.321144880460E-01 0.939183339673E-01 338 0.479436968009E-01 0.864062062543E-01 339 0.692877829754E-01 0.104193073580 340 0.440362083133E-01 0.131552981948 341 0.224861353144E-01 0.120342791007 342 0.169712815829E-01 0.107198632106 343 0.155139896049E-01 0.988915208288E-01 344 0.137073224039E-01 0.897651366229E-01 345 0.154454732821E-01 0.788027463777E-01 346 0.209196861980E-01 0.677349530825E-01 347 0.347592176555E-01 0.557307625586E-01 348 0.618172573854E-01 0.679421841821E-01 349 0.443703325542E-01 0.820191827411E-01 350 0.457353201408E-01 0.630269493011E-01 351 0.716033140111E-01 0.667169533873E-01 352 0.682169244506E-01 0.762013214851E-01 353 0.854396245607E-01 0.805033859023E-01 354 0.903832881530E-01 0.959524118960E-01 355 0.886068340625E-01 0.119682066609 356 0.716596527348E-01 0.132906365047 357 0.616454981890E-01 0.131260405540 358 0.582343218955E-01 0.144239202180 359 0.315667947511E-01 0.146053831012 360 0.196196901115E-01 0.132535550376 361 0.170529262229E-01 0.122007177707 362 0.156816509518E-01 0.117466454549 363 0.120788045430E-01 0.110042656818 364 0.133890244561E-01 0.101301991353 365 0.195362426581E-01 0.958601690574E-01 366 0.241695427108E-01 0.971681413749E-01 367 0.258690653201E-01 0.973057883040E-01 368 0.261760983185E-01 0.941663296008E-01 369 0.382568376617E-01 0.978679750865E-01 370 0.327413682715E-01 0.110417731217 371 0.299740372616E-01 0.112453925331 372 0.181343685094E-01 0.118287556074 373 0.943725930857E-02 0.111778617369 374 0.631737351805E-02 0.105680968280 375 0.495557903116E-02 0.100751437535 376 0.439025914634E-02 0.967531485819E-01 377 0.395233452251E-02 0.930590176000E-01 378 0.394626968386E-02 0.893285389076E-01 379 0.446832821102E-02 0.854240938984E-01 380 0.607526755007E-02 0.809951556508E-01 381 0.110349433023E-01 0.762559189362E-01 382 0.215638269567E-01 0.800678571305E-01 383 0.164979921838E-01 0.903758633166E-01 384 0.917018985560E-02 0.877282953388E-01 385 0.817583782937E-02 0.835822918973E-01 386 0.773775499532E-02 0.812489157056E-01 387 0.806758212021E-02 0.793363765101E-01 388 0.799188529993E-02 0.782126118226E-01 389 0.590854403837E-02 0.765790017192E-01 390 0.489881554849E-02 0.725218214064E-01 391 0.536320103725E-02 0.679925377104E-01 392 0.747730165271E-02 0.628591837602E-01 393 0.130612134199E-01 0.584830325489E-01 394 0.203273332767E-01 0.573252978140E-01 395 0.272616387338E-01 0.625756781241E-01 396 0.282791958173E-01 0.734559626996E-01 397 0.186976773886E-01 0.747260734390E-01 398 0.134030602232E-01 0.712259277563E-01 399 0.123789649209E-01 0.650795149524E-01 400 0.143241043408E-01 0.601789804789E-01 401 0.149889233757E-01 0.580047892846E-01 402 0.173715028593E-01 0.495398071826E-01 403 0.314495113340E-01 0.451822402077E-01 404 0.379462688222E-01 0.577544518925E-01 405 0.338754346449E-01 0.594749399888E-01 406 0.359321896817E-01 0.637738182318E-01 407 0.260355926120E-01 0.620224655955E-01 408 0.284511880436E-01 0.474449652179E-01 409 0.497760164679E-01 0.443906499823E-01 410 0.528462429251E-01 0.602422465487E-01 411 0.540348126297E-01 0.617529035406E-01 412 0.541940025167E-01 0.664239921887E-01 413 0.581919093080E-01 0.676545807812E-01 414 0.702036073328E-01 0.725942310808E-01 415 0.705789519461E-01 0.980081830291E-01 416 0.474012869855E-01 0.108278644167 417 0.409424595756E-01 0.997716474230E-01 418 0.330804303917E-01 0.103841064287 419 0.264741274083E-01 0.945871099032E-01 420 0.335830740328E-01 0.904281246996E-01 421 0.292302200119E-01 0.101778420521 422 0.171821239664E-01 0.968852918441E-01 423 0.144584175083E-01 0.863673140061E-01 424 0.210296667403E-01 0.769561502067E-01 425 0.347725646656E-01 0.818072301098E-01 426 0.299965691383E-01 0.944930541224E-01 427 0.233442918168E-01 0.975857492069E-01 428 0.142618002053E-01 0.957121213118E-01 429 0.927949333053E-02 0.899758776790E-01 430 0.797207325948E-02 0.832731428923E-01 431 0.103118390442E-01 0.766807766479E-01 432 0.196583501369E-01 0.742933617930E-01 433 0.194948284143E-01 0.863900060870E-01 434 0.106083435445E-01 0.840203300147E-01 435 0.949548685292E-02 0.782548397807E-01 436 0.120341441086E-01 0.774791190409E-01 437 0.830696640487E-02 0.766358805038E-01 438 0.716254744116E-02 0.713460066526E-01 439 0.911776709273E-02 0.657777825664E-01 440 0.152972874502E-01 0.616824033647E-01 441 0.219368804819E-01 0.634651666015E-01 442 0.223511430242E-01 0.677579576376E-01 443 0.239524353677E-01 0.649125456686E-01 444 0.320305349135E-01 0.678949047343E-01 445 0.331914283405E-01 0.794401005830E-01 446 0.257895091440E-01 0.858184982401E-01 447 0.165588417757E-01 0.867933645073E-01 448 0.106927277793E-01 0.807668319948E-01 449 0.106403494790E-01 0.756752404216E-01 450 0.104309834787E-01 0.731329894765E-01 451 0.116738966311E-01 0.687430263287E-01 452 0.140613635457E-01 0.682782493261E-01 453 0.139052138097E-01 0.641931662448E-01 454 0.236400454480E-01 0.599783296968E-01 455 0.294070391754E-01 0.719313362607E-01 456 0.249891612171E-01 0.784703482087E-01 457 0.164890244557E-01 0.769605380758E-01 458 0.186583838644E-01 0.713528456226E-01 459 0.208588343244E-01 0.742872826693E-01 460 0.204802454635E-01 0.777303474943E-01 461 0.151505190376E-01 0.775342317463E-01 462 0.166879895894E-01 0.752250658033E-01 463 0.128653449019E-01 0.778938882919E-01 464 0.993051620382E-02 0.728025694659E-01 465 0.135120293973E-01 0.669313750117E-01 466 0.237808306008E-01 0.720124989027E-01 467 0.150495002792E-01 0.806270348387E-01 468 0.105184545053E-01 0.761833576801E-01 469 0.114372700666E-01 0.747955284690E-01 470 0.840604026332E-02 0.761862282039E-01 471 0.527007186791E-02 0.727046784413E-01 472 0.479837219581E-02 0.686438419783E-01 473 0.625646969224E-02 0.647482734822E-01 474 0.100390299340E-01 0.618607118288E-01 475 0.152117900539E-01 0.650942886586E-01 476 0.128517781177E-01 0.659307105867E-01 477 0.164844916763E-01 0.670176984105E-01 478 0.128391734630E-01 0.712929596134E-01 479 0.100733784191E-01 0.679308434411E-01 480 0.131548433267E-01 0.670230062489E-01 481 0.128955142061E-01 0.707377726632E-01 482 0.813668624571E-02 0.710772367215E-01 483 0.577186089331E-02 0.674996494384E-01 484 0.701193471588E-02 0.638354885545E-01 485 0.101068807566E-01 0.647308225107E-01 486 0.801615720438E-02 0.660407575052E-01 487 0.619432812545E-02 0.642311361935E-01 488 0.650124300323E-02 0.613993679243E-01 489 0.829317354830E-02 0.598503362123E-01 490 0.101028223347E-01 0.594395675132E-01 491 0.126787857773E-01 0.624056904019E-01 492 0.819432552296E-02 0.639479962746E-01 493 0.596750837315E-02 0.611175750571E-01 494 0.577504085205E-02 0.577803389124E-01 495 0.736400472417E-02 0.546910008369E-01 496 0.117150037072E-01 0.523586024978E-01 497 0.134951319715E-01 0.570622420490E-01 498 0.111107103726E-01 0.547916705768E-01 499 0.140617918133E-01 0.521297521032E-01 500 0.168586596006E-01 0.521439581133E-01 elk-7.2.42/tests-libxc/PaxHeaders.21776/test.sh0000644000000000000000000000013214061636521015704 xustar0030 mtime=1623670097.006100551 30 atime=1623670097.006100551 30 ctime=1623670097.006100551 elk-7.2.42/tests-libxc/test.sh0000755002504400250440000000064414061636521017750 0ustar00dewhurstdewhurst00000000000000#! /bin/sh # Test suite script for the Elk Code for i in test_* do cd $i echo echo "Running test in directory $i..." \rm -f *.OUT gmon.out fort.* OMP_NUM_THREADS=8 OMP_STACKSIZE=20M ../../src/elk > test.log NERROR=`grep -c Error test.log` if test $NERROR -gt 0 then echo " Failed! See test.log and output files" else echo " Passed" \rm -f *.OUT test.log fort.* gmon.out fi cd .. done elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0010000644000000000000000000000013214061636521015653 xustar0030 mtime=1623670097.019100539 30 atime=1623670097.008100549 30 ctime=1623670097.019100539 elk-7.2.42/tests-libxc/test_001/0000755002504400250440000000000014061636521017765 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636521017627 xustar0030 mtime=1623670097.009100548 30 atime=1623670097.009100548 30 ctime=1623670097.009100548 elk-7.2.42/tests-libxc/test_001/TEST_900.OUT_0000644002504400250440000000007014061636521021661 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 8873 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636521017632 xustar0030 mtime=1623670097.011100546 30 atime=1623670097.011100546 30 ctime=1623670097.011100546 elk-7.2.42/tests-libxc/test_001/TEST_705.OUT_0000644002504400250440000000010114061636521021657 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 24 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636521017630 xustar0030 mtime=1623670097.012100545 30 atime=1623670097.012100545 30 ctime=1623670097.012100545 elk-7.2.42/tests-libxc/test_001/TEST_910.OUT_0000644002504400250440000000174114061636521021670 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 30 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.146981971254 5 0.146981971254 6 -0.146981971254 7 0.293963942509 8 0.293963942509 9 -0.293963942509 10 0.440945913763 11 0.440945913763 12 -0.440945913763 13 0.293963942509 14 0.00000000000 15 0.00000000000 16 0.440945913763 17 0.146981971254 18 -0.146981971254 19 0.587927885017 20 0.293963942509 21 -0.293963942509 22 0.587927885017 23 0.00000000000 24 0.00000000000 25 0.734909856272 26 0.146981971254 27 -0.146981971254 28 0.587927885017 29 0.293963942509 30 0.00000000000 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636521017033 xustar0030 mtime=1623670097.014100544 30 atime=1623670097.014100544 30 ctime=1623670097.014100544 elk-7.2.42/tests-libxc/test_001/elk.in0000644002504400250440000000074614061636521021077 0ustar00dewhurstdewhurst00000000000000 tasks 0 500 test .true. maxscl 2 ! set additional options required for meta-GGA metagga .true. ! regularised SCAN xctype 100 493 494 ngridk 4 4 4 avec 5.3435 5.3435 0.0000 5.3435 0.0000 5.3435 0.0000 5.3435 5.3435 sppath '../../species/' atoms 2 : nspecies 'Ga.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'As.in' 1 0.25 0.25 0.25 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636521017623 xustar0030 mtime=1623670097.015100543 30 atime=1623670097.015100543 30 ctime=1623670097.015100543 elk-7.2.42/tests-libxc/test_001/TEST_500.OUT_0000644002504400250440000000013514061636521021657 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 0.445518870377E-03 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636521017624 xustar0030 mtime=1623670097.017100541 30 atime=1623670097.016100542 30 ctime=1623670097.017100541 elk-7.2.42/tests-libxc/test_001/TEST_510.OUT_0000644002504400250440000000014514061636521021661 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.247937820660E-01 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000012714061636521017626 xustar0029 mtime=1623670097.01810054 29 atime=1623670097.01810054 29 ctime=1623670097.01810054 elk-7.2.42/tests-libxc/test_001/TEST_400.OUT_0000644002504400250440000000014114061636521021653 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 63.9987772467 elk-7.2.42/tests-libxc/test_001/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636521017616 xustar0030 mtime=1623670097.019100539 30 atime=1623670097.019100539 30 ctime=1623670097.019100539 elk-7.2.42/tests-libxc/test_001/TEST_000.OUT_0000644002504400250440000000012614061636521021652 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -4219.25406464 elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0020000644000000000000000000000013214061636521015654 xustar0030 mtime=1623670097.036100523 30 atime=1623670097.020100538 30 ctime=1623670097.036100523 elk-7.2.42/tests-libxc/test_002/0000755002504400250440000000000014061636521017766 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_800.OUT_0000644000000000000000000000013214061636521017627 xustar0030 mtime=1623670097.022100536 30 atime=1623670097.021100537 30 ctime=1623670097.022100536 elk-7.2.42/tests-libxc/test_002/TEST_800.OUT_0000644002504400250440000000301014061636521021656 0ustar00dewhurstdewhurst00000000000000'regularised Coulomb Green''s function (gclq)' 2 47 0.100000000000E-07 1 4156.52649632 2 538.808845910 3 122.281077681 4 53.2067305730 5 29.7036699563 6 18.9436528129 7 378.633726982 8 131.915119909 9 59.6996144004 10 33.1294509551 11 20.8866383293 12 24.1480573225 13 39.8247961001 14 76.6221168207 15 191.109192697 16 89.6935829837 17 52.8305196423 18 32.3142045935 19 21.1792161666 20 18.7172333061 21 28.0029635091 22 44.9516730037 23 39.4977235641 24 27.8283415094 25 19.6878350783 26 14.3061427077 27 19.7706217330 28 22.1479831303 29 17.0639418646 30 13.1063464662 31 14.1544228910 32 70.5026233452 33 40.4627055245 34 25.3002738051 35 17.0626173734 36 35.3392864088 37 23.9798340158 38 16.8448151671 39 18.9724996792 40 27.4485942715 41 20.7913378523 42 15.5388968693 43 14.2001311974 44 13.5917268552 45 17.6443345168 46 13.2018441244 47 12.1733944017 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636521017633 xustar0030 mtime=1623670097.023100535 30 atime=1623670097.023100535 30 ctime=1623670097.023100535 elk-7.2.42/tests-libxc/test_002/TEST_705.OUT_0000644002504400250440000000010114061636521021660 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 48 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636521017630 xustar0030 mtime=1623670097.024100534 30 atime=1623670097.024100534 30 ctime=1623670097.024100534 elk-7.2.42/tests-libxc/test_002/TEST_900.OUT_0000644002504400250440000000007014061636521021662 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 2109 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636521017631 xustar0030 mtime=1623670097.026100533 30 atime=1623670097.026100533 30 ctime=1623670097.026100533 elk-7.2.42/tests-libxc/test_002/TEST_910.OUT_0000644002504400250440000001052214061636521021666 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 141 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.943421217294E-01 5 0.943421217294E-01 6 -0.943421217294E-01 7 0.188684243459 8 0.188684243459 9 -0.188684243459 10 0.283026365188 11 0.283026365188 12 -0.283026365188 13 0.377368486918 14 0.377368486918 15 -0.377368486918 16 0.471710608647 17 0.471710608647 18 -0.471710608647 19 0.188684243459 20 -0.308963289789E-17 21 0.308963289789E-17 22 0.283026365188 23 0.943421217294E-01 24 -0.943421217294E-01 25 0.377368486918 26 0.188684243459 27 -0.188684243459 28 0.471710608647 29 0.283026365188 30 -0.283026365188 31 0.566052730377 32 0.377368486918 33 -0.377368486918 34 0.660394852106 35 0.471710608647 36 -0.471710608647 37 0.754736973835 38 0.566052730377 39 -0.566052730377 40 0.849079095565 41 0.660394852106 42 -0.660394852106 43 0.943421217294 44 0.754736973835 45 -0.754736973835 46 0.377368486918 47 -0.617926579578E-17 48 0.617926579578E-17 49 0.471710608647 50 0.943421217294E-01 51 -0.943421217294E-01 52 0.566052730377 53 0.188684243459 54 -0.188684243459 55 0.660394852106 56 0.283026365188 57 -0.283026365188 58 0.754736973835 59 0.377368486918 60 -0.377368486918 61 0.849079095565 62 0.471710608647 63 -0.471710608647 64 0.943421217294 65 0.566052730377 66 -0.566052730377 67 0.566052730377 68 -0.247170631831E-16 69 0.247170631831E-16 70 0.660394852106 71 0.943421217294E-01 72 -0.943421217294E-01 73 0.754736973835 74 0.188684243459 75 -0.188684243459 76 0.849079095565 77 0.283026365188 78 -0.283026365188 79 0.943421217294 80 0.377368486918 81 -0.377368486918 82 0.754736973835 83 -0.123585315916E-16 84 0.123585315916E-16 85 0.849079095565 86 0.943421217294E-01 87 -0.943421217294E-01 88 0.943421217294 89 0.188684243459 90 -0.188684243459 91 0.943421217294 92 0.00000000000 93 0.00000000000 94 0.377368486918 95 0.188684243459 96 -0.169674207057E-16 97 0.471710608647 98 0.283026365188 99 -0.943421217294E-01 100 0.566052730377 101 0.377368486918 102 -0.188684243459 103 0.660394852106 104 0.471710608647 105 -0.283026365188 106 0.566052730377 107 0.188684243459 108 0.524215183334E-16 109 0.660394852106 110 0.283026365188 111 -0.943421217294E-01 112 0.754736973835 113 0.377368486918 114 -0.188684243459 115 0.849079095565 116 0.471710608647 117 -0.283026365188 118 0.943421217294 119 0.566052730377 120 -0.377368486918 121 0.754736973835 122 0.188684243459 123 0.385437305256E-16 124 0.849079095565 125 0.283026365188 126 -0.943421217294E-01 127 0.943421217294 128 0.377368486918 129 -0.188684243459 130 0.943421217294 131 0.188684243459 132 -0.724785719370E-16 133 0.754736973835 134 0.377368486918 135 -0.339348414114E-16 136 0.849079095565 137 0.471710608647 138 -0.943421217294E-01 139 0.943421217294 140 0.377368486918 141 -0.616904170270E-16 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636521017034 xustar0030 mtime=1623670097.027100531 30 atime=1623670097.027100531 30 ctime=1623670097.027100531 elk-7.2.42/tests-libxc/test_002/elk.in0000644002504400250440000000116414061636521021073 0ustar00dewhurstdewhurst00000000000000 ! Magnetic response of fcc nickel. tasks 0 330 500 test .true. xctype 100 532 12 fxctype 100 532 12 nempty 10 lorbcnd .true. emaxrf 1.5 gmaxrf 2.0 wplot 60 100 1 0 0.020 ! q-vector of response function vecql 0.1 0.3 0.0 ngridk 10 10 10 spinpol .true. bfieldc 0.0 0.0 0.01 avec 1.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 1.0 scale 3.33 sppath '../../species/' atoms 1 : nspecies 'Ni.in' : spfname 1 : natoms 0.0 0.0 0.0 0.0 0.0 0.0 : atposl, bfcmt elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000012714061636521017630 xustar0029 mtime=1623670097.02910053 29 atime=1623670097.02910053 29 ctime=1623670097.02910053 elk-7.2.42/tests-libxc/test_002/TEST_500.OUT_0000644002504400250440000000013514061636521021660 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 53.6728337563 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636521017625 xustar0030 mtime=1623670097.030100529 30 atime=1623670097.030100529 30 ctime=1623670097.030100529 elk-7.2.42/tests-libxc/test_002/TEST_510.OUT_0000644002504400250440000000014514061636521021662 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.735401857616E-03 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636521017630 xustar0030 mtime=1623670097.032100527 30 atime=1623670097.032100527 30 ctime=1623670097.032100527 elk-7.2.42/tests-libxc/test_002/TEST_450.OUT_0000644002504400250440000000014014061636521021660 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 0.717102384687 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636521017623 xustar0030 mtime=1623670097.033100526 30 atime=1623670097.033100526 30 ctime=1623670097.033100526 elk-7.2.42/tests-libxc/test_002/TEST_400.OUT_0000644002504400250440000000014114061636521021654 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 27.9937806752 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636521017617 xustar0030 mtime=1623670097.035100524 30 atime=1623670097.034100525 30 ctime=1623670097.035100524 elk-7.2.42/tests-libxc/test_002/TEST_000.OUT_0000644002504400250440000000012614061636521021653 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -1517.12685504 elk-7.2.42/tests-libxc/test_002/PaxHeaders.21776/TEST_330.OUT_0000644000000000000000000000013214061636521017625 xustar0030 mtime=1623670097.036100523 30 atime=1623670097.036100523 30 ctime=1623670097.036100523 elk-7.2.42/tests-libxc/test_002/TEST_330.OUT_0000644002504400250440000000626314061636521021671 0ustar00dewhurstdewhurst00000000000000'transverse response function' 3 60 0.100000000000E-01 1 0.998468668586 -0.467042890415E-01 2 0.985261897011 -0.486037651406E-01 3 0.971912618420 -0.502850618013E-01 4 0.958102726051 -0.523419580670E-01 5 0.944201496382 -0.553721113013E-01 6 0.930730655250 -0.595414706669E-01 7 0.918178380178 -0.651052973886E-01 8 0.907978191269 -0.721874971119E-01 9 0.901924830318 -0.787094245618E-01 10 0.898436562487 -0.811604223683E-01 11 0.893750043204 -0.799875584366E-01 12 0.887748559229 -0.773913675379E-01 13 0.880643306880 -0.727474346220E-01 14 0.870467155338 -0.666074773645E-01 15 0.857042817548 -0.613756123922E-01 16 0.841788288865 -0.581728302883E-01 17 0.825728652153 -0.569616659916E-01 18 0.809289037295 -0.575833393136E-01 19 0.792690161340 -0.601180927884E-01 20 0.776278554441 -0.649169212772E-01 21 0.760900713235 -0.724766080842E-01 22 0.748340402278 -0.828295377633E-01 23 0.740839130170 -0.939616741375E-01 24 0.737794813543 -0.101658324942 25 0.735046563823 -0.104464986103 26 0.729983666129 -0.104025373616 27 0.720762340665 -0.102280282986 28 0.706964788296 -0.103126391868 29 0.691551386960 -0.109652621861 30 0.678341355731 -0.122250189178 31 0.670857091368 -0.139712982417 32 0.672277203998 -0.158543200705 33 0.682832721950 -0.173740736331 34 0.701713784809 -0.180551212822 35 0.722946901617 -0.171215506618 36 0.732249764812 -0.147995055563 37 0.725700355344 -0.124372409799 38 0.709773720630 -0.108053070388 39 0.690580085935 -0.999636062228E-01 40 0.671903572962 -0.990759417282E-01 41 0.656763378276 -0.103775743359 42 0.647494382827 -0.110679163245 43 0.643061965617 -0.115162947191 44 0.639165540102 -0.115912291152 45 0.633904554118 -0.115573028877 46 0.628496215701 -0.115082639294 47 0.622590002816 -0.113851263362 48 0.615839321359 -0.113042749875 49 0.609730146172 -0.112524673186 50 0.603380797421 -0.110643704804 51 0.594934596123 -0.108752585498 52 0.585483703316 -0.108835474560 53 0.576807157190 -0.110508422966 54 0.568867822837 -0.112611250499 55 0.561208336924 -0.115783159187 56 0.555842511749 -0.120171785482 57 0.553206834004 -0.122399134785 58 0.549315484639 -0.121392290026 59 0.542453345564 -0.120700834983 60 0.534983151095 -0.122666669642 elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0030000644000000000000000000000013214061636521015655 xustar0030 mtime=1623670097.051100509 30 atime=1623670097.037100522 30 ctime=1623670097.051100509 elk-7.2.42/tests-libxc/test_003/0000755002504400250440000000000014061636521017767 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013014061636521017632 xustar0029 mtime=1623670097.03910052 30 atime=1623670097.038100521 29 ctime=1623670097.03910052 elk-7.2.42/tests-libxc/test_003/TEST_705.OUT_0000644002504400250440000000010114061636521021661 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 1 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636521017035 xustar0030 mtime=1623670097.040100519 30 atime=1623670097.040100519 30 ctime=1623670097.040100519 elk-7.2.42/tests-libxc/test_003/elk.in0000644002504400250440000000111314061636521021066 0ustar00dewhurstdewhurst00000000000000 ! Test of Libxc GGA, spin-polarised and with forces. tasks 0 500 test .true. xctype 100 101 130 tforce .true. ngridk 4 4 4 autoswidth .true. autolinengy .true. msmooth 4 spinorb .true. cmagz .true. bfieldc 0.0 0.0 0.1 avec 0.5 0.5 0.0 0.0 1.0 0.0 0.0 0.0 1.0 scale1 6.8 scale2 6.8 scale3 7.0 sppath '../../species/' atoms 2 : nspecies 'Fe.in' : spfname 1 : natoms; atposl below 0.0 0.0 0.0 'Co.in' 1 0.1 0.51 0.48 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636521017631 xustar0030 mtime=1623670097.042100518 30 atime=1623670097.041100519 30 ctime=1623670097.042100518 elk-7.2.42/tests-libxc/test_003/TEST_900.OUT_0000644002504400250440000000007014061636521021663 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 4735 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636521017632 xustar0030 mtime=1623670097.043100517 30 atime=1623670097.043100517 30 ctime=1623670097.043100517 elk-7.2.42/tests-libxc/test_003/TEST_910.OUT_0000644002504400250440000001357714061636521021704 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 192 0.100000000000E-07 1 0.00000000000 2 0.00000000000 3 0.00000000000 4 0.461998919646 5 0.00000000000 6 0.00000000000 7 0.923997839291 8 0.00000000000 9 0.00000000000 10 1.38599675894 11 0.00000000000 12 0.00000000000 13 -0.230999459823 14 0.230999459823 15 0.00000000000 16 0.230999459823 17 0.230999459823 18 0.00000000000 19 0.692998379468 20 0.230999459823 21 0.00000000000 22 1.15499729911 23 0.230999459823 24 0.00000000000 25 -0.461998919646 26 0.461998919646 27 0.00000000000 28 0.00000000000 29 0.461998919646 30 0.00000000000 31 0.461998919646 32 0.461998919646 33 0.00000000000 34 0.923997839291 35 0.461998919646 36 0.00000000000 37 -0.692998379468 38 0.692998379468 39 0.00000000000 40 -0.230999459823 41 0.692998379468 42 0.00000000000 43 0.230999459823 44 0.692998379468 45 0.00000000000 46 0.692998379468 47 0.692998379468 48 0.00000000000 49 0.00000000000 50 0.00000000000 51 0.224399475256 52 0.461998919646 53 0.00000000000 54 0.224399475256 55 0.923997839291 56 0.00000000000 57 0.224399475256 58 1.38599675894 59 0.00000000000 60 0.224399475256 61 -0.230999459823 62 0.230999459823 63 0.224399475256 64 0.230999459823 65 0.230999459823 66 0.224399475256 67 0.692998379468 68 0.230999459823 69 0.224399475256 70 1.15499729911 71 0.230999459823 72 0.224399475256 73 -0.461998919646 74 0.461998919646 75 0.224399475256 76 0.00000000000 77 0.461998919646 78 0.224399475256 79 0.461998919646 80 0.461998919646 81 0.224399475256 82 0.923997839291 83 0.461998919646 84 0.224399475256 85 -0.692998379468 86 0.692998379468 87 0.224399475256 88 -0.230999459823 89 0.692998379468 90 0.224399475256 91 0.230999459823 92 0.692998379468 93 0.224399475256 94 0.692998379468 95 0.692998379468 96 0.224399475256 97 0.00000000000 98 0.00000000000 99 0.448798950513 100 0.461998919646 101 0.00000000000 102 0.448798950513 103 0.923997839291 104 0.00000000000 105 0.448798950513 106 1.38599675894 107 0.00000000000 108 0.448798950513 109 -0.230999459823 110 0.230999459823 111 0.448798950513 112 0.230999459823 113 0.230999459823 114 0.448798950513 115 0.692998379468 116 0.230999459823 117 0.448798950513 118 1.15499729911 119 0.230999459823 120 0.448798950513 121 -0.461998919646 122 0.461998919646 123 0.448798950513 124 0.00000000000 125 0.461998919646 126 0.448798950513 127 0.461998919646 128 0.461998919646 129 0.448798950513 130 0.923997839291 131 0.461998919646 132 0.448798950513 133 -0.692998379468 134 0.692998379468 135 0.448798950513 136 -0.230999459823 137 0.692998379468 138 0.448798950513 139 0.230999459823 140 0.692998379468 141 0.448798950513 142 0.692998379468 143 0.692998379468 144 0.448798950513 145 0.00000000000 146 0.00000000000 147 0.673198425769 148 0.461998919646 149 0.00000000000 150 0.673198425769 151 0.923997839291 152 0.00000000000 153 0.673198425769 154 1.38599675894 155 0.00000000000 156 0.673198425769 157 -0.230999459823 158 0.230999459823 159 0.673198425769 160 0.230999459823 161 0.230999459823 162 0.673198425769 163 0.692998379468 164 0.230999459823 165 0.673198425769 166 1.15499729911 167 0.230999459823 168 0.673198425769 169 -0.461998919646 170 0.461998919646 171 0.673198425769 172 0.00000000000 173 0.461998919646 174 0.673198425769 175 0.461998919646 176 0.461998919646 177 0.673198425769 178 0.923997839291 179 0.461998919646 180 0.673198425769 181 -0.692998379468 182 0.692998379468 183 0.673198425769 184 -0.230999459823 185 0.692998379468 186 0.673198425769 187 0.230999459823 188 0.692998379468 189 0.673198425769 190 0.692998379468 191 0.692998379468 192 0.673198425769 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636521017625 xustar0030 mtime=1623670097.045100515 30 atime=1623670097.044100516 30 ctime=1623670097.045100515 elk-7.2.42/tests-libxc/test_003/TEST_500.OUT_0000644002504400250440000000013514061636521021661 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 94.4986855083 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000013214061636521017626 xustar0030 mtime=1623670097.046100514 30 atime=1623670097.046100514 30 ctime=1623670097.046100514 elk-7.2.42/tests-libxc/test_003/TEST_510.OUT_0000644002504400250440000000014514061636521021663 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.416630653768E-03 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636521017624 xustar0030 mtime=1623670097.047100513 30 atime=1623670097.047100513 30 ctime=1623670097.047100513 elk-7.2.42/tests-libxc/test_003/TEST_400.OUT_0000644002504400250440000000014114061636521021655 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 52.9968822942 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_450.OUT_0000644000000000000000000000013214061636521017631 xustar0030 mtime=1623670097.049100511 30 atime=1623670097.049100511 30 ctime=1623670097.049100511 elk-7.2.42/tests-libxc/test_003/TEST_450.OUT_0000644002504400250440000000014014061636521021661 0ustar00dewhurstdewhurst00000000000000'total moment magnitude' 2 1 0.100000000000E-02 1 2.57197608251 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000012714061636521017624 xustar0029 mtime=1623670097.05010051 29 atime=1623670097.05010051 29 ctime=1623670097.05010051 elk-7.2.42/tests-libxc/test_003/TEST_000.OUT_0000644002504400250440000000012614061636521021654 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -2666.40054816 elk-7.2.42/tests-libxc/test_003/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636521017634 xustar0030 mtime=1623670097.052100508 30 atime=1623670097.052100508 30 ctime=1623670097.052100508 elk-7.2.42/tests-libxc/test_003/TEST_750.OUT_0000644002504400250440000000036114061636521021671 0ustar00dewhurstdewhurst00000000000000'total forces' 2 6 0.100000000000E-02 1 0.107027513496E-01 2 0.129273071582E-01 3 -0.108836085491E-01 4 -0.107027513496E-01 5 -0.129273071582E-01 6 0.108836085491E-01 elk-7.2.42/tests-libxc/PaxHeaders.21776/test_0050000644000000000000000000000013214061636521015657 xustar0030 mtime=1623670097.065100496 30 atime=1623670097.052100508 30 ctime=1623670097.065100496 elk-7.2.42/tests-libxc/test_005/0000755002504400250440000000000014061636521017771 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_705.OUT_0000644000000000000000000000013214061636521017636 xustar0030 mtime=1623670097.054100506 30 atime=1623670097.054100506 30 ctime=1623670097.054100506 elk-7.2.42/tests-libxc/test_005/TEST_705.OUT_0000644002504400250440000000010114061636521021663 0ustar00dewhurstdewhurst00000000000000'number of crystal symmetries' 1 1 1 8 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_900.OUT_0000644000000000000000000000013214061636521017633 xustar0030 mtime=1623670097.055100506 30 atime=1623670097.055100506 30 ctime=1623670097.055100506 elk-7.2.42/tests-libxc/test_005/TEST_900.OUT_0000644002504400250440000000007014061636521021665 0ustar00dewhurstdewhurst00000000000000'number of G-vectors' 1 1 1 34171 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636521017037 xustar0030 mtime=1623670097.057100504 30 atime=1623670097.057100504 30 ctime=1623670097.057100504 elk-7.2.42/tests-libxc/test_005/elk.in0000644002504400250440000000154014061636521021074 0ustar00dewhurstdewhurst00000000000000 ! Test of the finite temperature exchange-correlation functional KSDT. ! See Karasiev, et al., Phys. Rev. Lett. 112, 076403 (2014) tasks 0 500 test .true. xctype 100 259 0 ! temperature in Kelvin tempk 500.0 rgkmax 6.0 maxscl 10 tforce .true. avec 7.2246 0.0 0.0 0.0 7.3442 0.0 0.0 0.0 22.0733 sppath '../../species/' atoms 4 : nspecies 'Y.in' : spfname 1 : natoms; atposl below 0.5 0.5 0.5 'Ba.in' 2 0.5 0.5 0.1843 0.5 0.5 0.8157 'Cu.in' 3 0.0 0.0 0.0 0.0 0.0 0.3556 0.0 0.0 0.6444 'O.in' 7 0.0 0.5 0.0 0.5 0.0 0.3773 0.5 0.0 0.6227 0.0 0.5 0.3789 0.0 0.5 0.6211 0.0 0.0 0.1584 0.0 0.0 0.8416 ngridk 2 2 1 vkloff 0.25 0.5 0.5 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_910.OUT_0000644000000000000000000000013214061636521017634 xustar0030 mtime=1623670097.058100503 30 atime=1623670097.058100503 30 ctime=1623670097.058100503 elk-7.2.42/tests-libxc/test_005/TEST_910.OUT_0000644002504400250440000000037114061636521021672 0ustar00dewhurstdewhurst00000000000000'k-points (Cartesian)' 2 6 0.100000000000E-07 1 0.108711646790 2 0.213882564036 3 0.142325463505 4 0.543558233949 5 0.213882564036 6 0.142325463505 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_500.OUT_0000644000000000000000000000013214061636521017627 xustar0030 mtime=1623670097.060100501 30 atime=1623670097.059100502 30 ctime=1623670097.060100501 elk-7.2.42/tests-libxc/test_005/TEST_500.OUT_0000644002504400250440000000013514061636521021663 0ustar00dewhurstdewhurst00000000000000'DOS at Fermi energy' 2 1 0.500000000000E-02 1 4.11694522056 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_510.OUT_0000644000000000000000000000012414061636521017631 xustar0028 mtime=1623670097.0611005 28 atime=1623670097.0611005 28 ctime=1623670097.0611005 elk-7.2.42/tests-libxc/test_005/TEST_510.OUT_0000644002504400250440000000014514061636521021665 0ustar00dewhurstdewhurst00000000000000'estimated indirect band gap' 2 1 0.200000000000E-01 1 0.188330161805E-01 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_400.OUT_0000644000000000000000000000013214061636521017626 xustar0030 mtime=1623670097.063100498 30 atime=1623670097.062100499 30 ctime=1623670097.063100498 elk-7.2.42/tests-libxc/test_005/TEST_400.OUT_0000644002504400250440000000014114061636521021657 0ustar00dewhurstdewhurst00000000000000'calculated total charge' 2 1 0.100000000000E-05 1 294.001986280 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_000.OUT_0000644000000000000000000000013214061636521017622 xustar0030 mtime=1623670097.064100497 30 atime=1623670097.064100497 30 ctime=1623670097.064100497 elk-7.2.42/tests-libxc/test_005/TEST_000.OUT_0000644002504400250440000000012614061636521021656 0ustar00dewhurstdewhurst00000000000000'total energy' 2 1 0.100000000000E-03 1 -25129.0485518 elk-7.2.42/tests-libxc/test_005/PaxHeaders.21776/TEST_750.OUT_0000644000000000000000000000013214061636521017636 xustar0030 mtime=1623670097.065100496 30 atime=1623670097.065100496 30 ctime=1623670097.065100496 elk-7.2.42/tests-libxc/test_005/TEST_750.OUT_0000644002504400250440000000236014061636521021674 0ustar00dewhurstdewhurst00000000000000'total forces' 2 39 0.100000000000E-02 1 0.00000000000 2 -0.657911313253E-50 3 0.133440267383E-18 4 0.00000000000 5 -0.657911313253E-50 6 0.325493704577E-01 7 0.00000000000 8 -0.657911313253E-50 9 -0.325493704577E-01 10 0.00000000000 11 -0.657911313253E-50 12 0.133440267383E-18 13 0.00000000000 14 -0.657911313253E-50 15 0.127709979611E-01 16 0.00000000000 17 -0.657911313253E-50 18 -0.127709979611E-01 19 0.00000000000 20 -0.657911313253E-50 21 0.133440267383E-18 22 0.00000000000 23 -0.657911313253E-50 24 -0.332225990492E-02 25 0.00000000000 26 -0.657911313253E-50 27 0.332225990492E-02 28 0.00000000000 29 0.789493575904E-49 30 0.730387536037E-02 31 0.00000000000 32 -0.657911313253E-50 33 -0.730387536037E-02 34 0.00000000000 35 -0.657911313253E-50 36 0.645753500535E-02 37 0.00000000000 38 -0.657911313253E-50 39 -0.645753500535E-02 elk-7.2.42/PaxHeaders.21776/species0000644000000000000000000000013114061636521013505 xustar0030 mtime=1623670097.271100305 29 atime=1623670097.07210049 30 ctime=1623670097.271100305 elk-7.2.42/species/0000755002504400250440000000000014061636521015620 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/species/PaxHeaders.21776/Ac.in0000644000000000000000000000013214061636521014436 xustar0030 mtime=1623670097.079100483 30 atime=1623670097.079100483 30 ctime=1623670097.079100483 elk-7.2.42/species/Ac.in0000644002504400250440000000425214061636521016476 0ustar00dewhurstdewhurst00000000000000 'Ac' : spsymb 'actinium' : spname -89.0000 : spzn 413795.6860 : spmass 0.212000E-06 3.0000 58.5155 800 : rminsp, rmt, rmaxsp, nrmt 26 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.8323 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4862 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6749 0 T elk-7.2.42/species/PaxHeaders.21776/Ag.in0000644000000000000000000000013214061636521014442 xustar0030 mtime=1623670097.081100481 30 atime=1623670097.081100481 30 ctime=1623670097.081100481 elk-7.2.42/species/Ag.in0000644002504400250440000000356614061636521016511 0ustar00dewhurstdewhurst00000000000000 'Ag' : spsymb 'silver' : spname -47.0000 : spzn 196631.6997 : spmass 0.291730E-06 2.6000 49.0510 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.4920 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0961 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2735 0 T elk-7.2.42/species/PaxHeaders.21776/Al.in0000644000000000000000000000013214061636521014447 xustar0030 mtime=1623670097.083100479 30 atime=1623670097.083100479 30 ctime=1623670097.083100479 elk-7.2.42/species/Al.in0000644002504400250440000000227614061636521016513 0ustar00dewhurstdewhurst00000000000000 'Al' : spsymb 'aluminium' : spname -13.0000 : spzn 49184.33492 : spmass 0.554700E-06 2.2000 57.4918 400 : rminsp, rmt, rmaxsp, nrmt 6 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 2.00000 F 3 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5562 0 T elk-7.2.42/species/PaxHeaders.21776/Am.in0000644000000000000000000000013214061636521014450 xustar0030 mtime=1623670097.085100478 30 atime=1623670097.085100478 30 ctime=1623670097.085100478 elk-7.2.42/species/Am.in0000644002504400250440000000453214061636521016511 0ustar00dewhurstdewhurst00000000000000 'Am' : spsymb 'americium' : spname -95.0000 : spzn 442961.9018 : spmass 0.205196E-06 3.0000 51.9446 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 5 3 4 4.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0774 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8674 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7549 0 T elk-7.2.42/species/PaxHeaders.21776/Ar.in0000644000000000000000000000013214061636521014455 xustar0030 mtime=1623670097.087100476 30 atime=1623670097.086100477 30 ctime=1623670097.087100476 elk-7.2.42/species/Ar.in0000644002504400250440000000233214061636521016512 0ustar00dewhurstdewhurst00000000000000 'Ar' : spsymb 'argon' : spname -18.0000 : spzn 72820.74919 : spmass 0.471405E-06 2.0000 28.6848 400 : rminsp, rmt, rmaxsp, nrmt 7 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8916 0 T elk-7.2.42/species/PaxHeaders.21776/As.in0000644000000000000000000000013214061636521014456 xustar0030 mtime=1623670097.089100474 30 atime=1623670097.088100475 30 ctime=1623670097.089100474 elk-7.2.42/species/As.in0000644002504400250440000000321614061636521016515 0ustar00dewhurstdewhurst00000000000000 'As' : spsymb 'arsenic' : spname -33.0000 : spzn 136573.7219 : spmass 0.348155E-06 2.4000 42.0399 500 : rminsp, rmt, rmaxsp, nrmt 12 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 1.00000 F 4 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4917 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5401 0 T elk-7.2.42/species/PaxHeaders.21776/At.in0000644000000000000000000000013214061636521014457 xustar0030 mtime=1623670097.090100473 30 atime=1623670097.090100473 30 ctime=1623670097.090100473 elk-7.2.42/species/At.in0000644002504400250440000000373614061636521016525 0ustar00dewhurstdewhurst00000000000000 'At' : spsymb 'astatine' : spname -85.0000 : spzn 382806.5818 : spmass 0.216930E-06 2.8000 39.4078 700 : rminsp, rmt, rmaxsp, nrmt 24 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.3831 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7106 0 T elk-7.2.42/species/PaxHeaders.21776/Au.in0000644000000000000000000000013214061636521014460 xustar0030 mtime=1623670097.092100471 30 atime=1623670097.092100471 30 ctime=1623670097.092100471 elk-7.2.42/species/Au.in0000644002504400250440000000431614061636521016521 0ustar00dewhurstdewhurst00000000000000 'Au' : spsymb 'gold' : spname -79.0000 : spzn 359048.0559 : spmass 0.225018E-06 2.8000 39.2245 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 T 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.9275 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0422 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2406 0 T elk-7.2.42/species/PaxHeaders.21776/Ba.in0000644000000000000000000000013214061636521014435 xustar0030 mtime=1623670097.094100469 30 atime=1623670097.094100469 30 ctime=1623670097.094100469 elk-7.2.42/species/Ba.in0000644002504400250440000000371214061636521016475 0ustar00dewhurstdewhurst00000000000000 'Ba' : spsymb 'barium' : spname -56.0000 : spzn 250331.8069 : spmass 0.267261E-06 2.8000 55.5566 700 : rminsp, rmt, rmaxsp, nrmt 18 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.2515 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2408 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6670 0 T elk-7.2.42/species/PaxHeaders.21776/Be.in0000644000000000000000000000013214061636521014441 xustar0030 mtime=1623670097.096100467 30 atime=1623670097.096100467 30 ctime=1623670097.096100467 elk-7.2.42/species/Be.in0000644002504400250440000000167214061636521016504 0ustar00dewhurstdewhurst00000000000000 'Be' : spsymb 'beryllium' : spname -4.00000 : spzn 16428.20279 : spmass 0.100000E-05 1.8000 44.5601 300 : rminsp, rmt, rmaxsp, nrmt 2 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/species/PaxHeaders.21776/Bi.in0000644000000000000000000000013214061636521014445 xustar0030 mtime=1623670097.098100466 30 atime=1623670097.097100467 30 ctime=1623670097.098100466 elk-7.2.42/species/Bi.in0000644002504400250440000000373614061636521016513 0ustar00dewhurstdewhurst00000000000000 'Bi' : spsymb 'bismuth' : spname -83.0000 : spzn 380947.9282 : spmass 0.219529E-06 2.8000 45.2810 700 : rminsp, rmt, rmaxsp, nrmt 24 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 1.00000 F 6 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9498 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5393 0 T elk-7.2.42/species/PaxHeaders.21776/B.in0000644000000000000000000000013214061636521014274 xustar0030 mtime=1623670097.099100465 30 atime=1623670097.099100465 30 ctime=1623670097.099100465 elk-7.2.42/species/B.in0000644002504400250440000000172614061636521016337 0ustar00dewhurstdewhurst00000000000000 'B' : spsymb 'boron' : spname -5.00000 : spzn 19707.24741 : spmass 0.894427E-06 1.8000 50.1216 300 : rminsp, rmt, rmaxsp, nrmt 3 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/species/PaxHeaders.21776/Bk.in0000644000000000000000000000013214061636521014447 xustar0030 mtime=1623670097.101100463 30 atime=1623670097.101100463 30 ctime=1623670097.101100463 elk-7.2.42/species/Bk.in0000644002504400250440000000453214061636521016510 0ustar00dewhurstdewhurst00000000000000 'Bk' : spsymb 'berkelium' : spname -97.0000 : spzn 450253.4557 : spmass 0.203069E-06 3.0000 52.0199 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 5.00000 F 5 3 4 4.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1057 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9965 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7758 0 T elk-7.2.42/species/PaxHeaders.21776/Br.in0000644000000000000000000000013214061636521014456 xustar0030 mtime=1623670097.103100461 30 atime=1623670097.103100461 30 ctime=1623670097.103100461 elk-7.2.42/species/Br.in0000644002504400250440000000321614061636521016515 0ustar00dewhurstdewhurst00000000000000 'Br' : spsymb 'bromine' : spname -35.0000 : spzn 145656.0815 : spmass 0.338062E-06 2.4000 34.9262 500 : rminsp, rmt, rmaxsp, nrmt 12 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.4430 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7453 0 T elk-7.2.42/species/PaxHeaders.21776/Ca.in0000644000000000000000000000013214061636521014436 xustar0030 mtime=1623670097.105100459 30 atime=1623670097.105100459 30 ctime=1623670097.105100459 elk-7.2.42/species/Ca.in0000644002504400250440000000261214061636521016474 0ustar00dewhurstdewhurst00000000000000 'Ca' : spsymb 'calcium' : spname -20.0000 : spzn 73057.72469 : spmass 0.447214E-06 2.4000 50.3684 500 : rminsp, rmt, rmaxsp, nrmt 8 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7208 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0235 0 T elk-7.2.42/species/PaxHeaders.21776/Cd.in0000644000000000000000000000013214061636521014441 xustar0030 mtime=1623670097.107100457 30 atime=1623670097.107100457 30 ctime=1623670097.107100457 elk-7.2.42/species/Cd.in0000644002504400250440000000334214061636521016500 0ustar00dewhurstdewhurst00000000000000 'Cd' : spsymb 'cadmium' : spname -48.0000 : spzn 204912.7175 : spmass 0.288675E-06 2.6000 41.8471 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.3934 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4270 0 T elk-7.2.42/species/PaxHeaders.21776/Ce.in0000644000000000000000000000013214061636521014442 xustar0030 mtime=1623670097.109100455 30 atime=1623670097.108100456 30 ctime=1623670097.109100455 elk-7.2.42/species/Ce.in0000644002504400250440000000374614061636521016511 0ustar00dewhurstdewhurst00000000000000 'Ce' : spsymb 'cerium' : spname -58.0000 : spzn 255415.8429 : spmass 0.262613E-06 2.8000 75.2635 700 : rminsp, rmt, rmaxsp, nrmt 19 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 2.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.3797 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7361 0 T elk-7.2.42/species/PaxHeaders.21776/Cf.in0000644000000000000000000000013214061636521014443 xustar0030 mtime=1623670097.110100454 30 atime=1623670097.110100454 30 ctime=1623670097.110100454 elk-7.2.42/species/Cf.in0000644002504400250440000000453214061636521016504 0ustar00dewhurstdewhurst00000000000000 'Cf' : spsymb 'californium' : spname -98.0000 : spzn 457545.0097 : spmass 0.202031E-06 3.0000 52.0569 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 4.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1183 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0620 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7850 0 T elk-7.2.42/species/PaxHeaders.21776/C.in0000644000000000000000000000013214061636521014275 xustar0030 mtime=1623670097.112100453 30 atime=1623670097.112100453 30 ctime=1623670097.112100453 elk-7.2.42/species/C.in0000644002504400250440000000220614061636521016332 0ustar00dewhurstdewhurst00000000000000 'C' : spsymb 'carbon' : spname -6.00000 : spzn 21894.16672 : spmass 0.816497E-06 1.8000 39.9481 300 : rminsp, rmt, rmaxsp, nrmt 4 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 2 1 2 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5012 0 T elk-7.2.42/species/PaxHeaders.21776/Cl.in0000644000000000000000000000013214061636521014451 xustar0030 mtime=1623670097.114100451 30 atime=1623670097.114100451 30 ctime=1623670097.114100451 elk-7.2.42/species/Cl.in0000644002504400250440000000233214061636521016506 0ustar00dewhurstdewhurst00000000000000 'Cl' : spsymb 'chlorine' : spname -17.0000 : spzn 64626.86545 : spmass 0.485071E-06 2.2000 33.0920 400 : rminsp, rmt, rmaxsp, nrmt 7 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7601 0 T elk-7.2.42/species/PaxHeaders.21776/Cm.in0000644000000000000000000000013214061636521014452 xustar0030 mtime=1623670097.116100449 30 atime=1623670097.116100449 30 ctime=1623670097.116100449 elk-7.2.42/species/Cm.in0000644002504400250440000000456614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Cm' : spsymb 'curium' : spname -96.0000 : spzn 450253.4557 : spmass 0.204124E-06 3.0000 55.3054 800 : rminsp, rmt, rmaxsp, nrmt 28 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 5 3 4 4.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2184 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0481 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8489 0 T elk-7.2.42/species/PaxHeaders.21776/Co.in0000644000000000000000000000013214061636521014454 xustar0030 mtime=1623670097.118100447 30 atime=1623670097.117100448 30 ctime=1623670097.118100447 elk-7.2.42/species/Co.in0000644002504400250440000000312614061636521016513 0ustar00dewhurstdewhurst00000000000000 'Co' : spsymb 'cobalt' : spname -27.0000 : spzn 107428.6517 : spmass 0.384900E-06 2.4000 40.1486 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 3.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.3834 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3072 0 T elk-7.2.42/species/PaxHeaders.21776/Cr.in0000644000000000000000000000013214061636521014457 xustar0030 mtime=1623670097.120100445 30 atime=1623670097.119100446 30 ctime=1623670097.120100445 elk-7.2.42/species/Cr.in0000644002504400250440000000335214061636521016517 0ustar00dewhurstdewhurst00000000000000 'Cr' : spsymb 'chromium' : spname -24.0000 : spzn 94783.09194 : spmass 0.408248E-06 2.4000 51.1100 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 3.00000 F 3 2 3 2.00000 F 4 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.7020 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6530 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1134 0 T elk-7.2.42/species/PaxHeaders.21776/Cs.in0000644000000000000000000000013214061636521014460 xustar0030 mtime=1623670097.121100444 30 atime=1623670097.121100444 30 ctime=1623670097.121100444 elk-7.2.42/species/Cs.in0000644002504400250440000000371214061636521016520 0ustar00dewhurstdewhurst00000000000000 'Cs' : spsymb 'caesium' : spname -55.0000 : spzn 242271.8144 : spmass 0.269680E-06 2.8000 68.3104 700 : rminsp, rmt, rmaxsp, nrmt 18 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.6912 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9872 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4810 0 T elk-7.2.42/species/PaxHeaders.21776/Cu.in0000644000000000000000000000013214061636521014462 xustar0030 mtime=1623670097.123100442 30 atime=1623670097.123100442 30 ctime=1623670097.123100442 elk-7.2.42/species/Cu.in0000644002504400250440000000312614061636521016521 0ustar00dewhurstdewhurst00000000000000 'Cu' : spsymb 'copper' : spname -29.0000 : spzn 115837.2717 : spmass 0.371391E-06 2.4000 42.9740 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.6152 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1918 0 T elk-7.2.42/species/PaxHeaders.21776/Dy.in0000644000000000000000000000012714061636521014473 xustar0029 mtime=1623670097.12510044 29 atime=1623670097.12510044 29 ctime=1623670097.12510044 elk-7.2.42/species/Dy.in0000644002504400250440000000422614061636521016530 0ustar00dewhurstdewhurst00000000000000 'Dy' : spsymb 'dysprosium' : spname -66.0000 : spzn 296219.3788 : spmass 0.246183E-06 2.8000 48.9249 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 4.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1037 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7987 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8849 0 T elk-7.2.42/species/PaxHeaders.21776/elk.in0000644000000000000000000000013214061636521014666 xustar0030 mtime=1623670097.127100439 30 atime=1623670097.127100439 30 ctime=1623670097.127100439 elk-7.2.42/species/elk.in0000644002504400250440000006662314061636521016740 0ustar00dewhurstdewhurst00000000000000 ! This is a special input file for Elk which generates the default species ! files. No task is required: the code generates the file as soon as it ! encounters a 'species' block. Note the masses are the 'standard atomic weight' ! and are in relative atomic mass units (i.e. multiples of 1/12 times the mass ! of carbon-12); taken from J. S. Coursey, D. J. Schwab, and R. A. Dragoset ! (2005), Atomic Weights and Isotopic Compositions (version 2.4.1). species 1 : atomic number 'H' 'hydrogen' : symbol, name 1.00794 : standard atomic weight (units of 1/12 carbon-12) 1.4 : muffin-tin radius 1 : number of occupied states 1 0 1 1 : n, l, k, occupancy for each state species 2 'He' 'helium' 4.002602 1.4 1 1 0 1 2 species 3 'Li' 'lithium' 6.941 1.8 2 1 0 1 2 2 0 1 1 species 4 'Be' 'beryllium' 9.012182 1.8 2 1 0 1 2 2 0 1 2 species 5 'B' 'boron' 10.811 1.8 3 1 0 1 2 2 0 1 2 2 1 1 1 species 6 'C' 'carbon' 12.0107 1.8 4 1 0 1 2 2 0 1 2 2 1 1 1 2 1 2 1 species 7 'N' 'nitrogen' 14.0067 1.8 4 1 0 1 2 2 0 1 2 2 1 1 1 2 1 2 2 species 8 'O' 'oxygen' 15.9994 1.8 4 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 2 species 9 'F' 'fluorine' 18.9984032 2.0 4 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 3 species 10 'Ne' 'neon' 20.1797 1.6 4 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 species 11 'Na' 'sodium' 22.989770 2.2 5 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 1 species 12 'Mg' 'magnesium' 24.3050 2.2 5 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 species 13 'Al' 'aluminium' 26.981538 2.2 6 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 1 species 14 'Si' 'silicon' 28.0855 2.2 7 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 1 3 1 2 1 species 15 'P' 'phosphorus' 30.973761 2.2 7 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 1 3 1 2 2 species 16 'S' 'sulphur' 32.065 2.2 7 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 2 species 17 'Cl' 'chlorine' 35.453 2.2 7 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 3 species 18 'Ar' 'argon' 39.948 2.0 7 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 species 19 'K' 'potassium' 39.0983 2.4 8 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 4 0 1 1 species 20 'Ca' 'calcium' 40.078 2.4 8 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 4 0 1 2 species 21 'Sc' 'scandium' 44.955910 2.4 9 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 1 4 0 1 2 species 22 'Ti' 'titanium' 47.867 2.4 9 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 2 4 0 1 2 species 23 'V' 'vanadium' 50.9415 2.4 9 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 3 4 0 1 2 species 24 'Cr' 'chromium' 51.9961 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 3 3 2 3 2 4 0 1 1 species 25 'Mn' 'manganese' 54.938049 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 3 3 2 3 2 4 0 1 2 species 26 'Fe' 'iron' 55.845 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 2 4 0 1 2 species 27 'Co' 'cobalt' 58.933200 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 3 4 0 1 2 species 28 'Ni' 'nickel' 58.6934 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 4 4 0 1 2 species 29 'Cu' 'copper' 63.546 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 1 species 30 'Zn' 'zinc' 65.409 2.4 10 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 species 31 'Ga' 'gallium' 69.723 2.4 11 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 1 species 32 'Ge' 'germanium' 72.64 2.4 12 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 1 4 1 2 1 species 33 'As' 'arsenic' 74.92160 2.4 12 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 1 4 1 2 2 species 34 'Se' 'selenium' 78.96 2.4 12 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 2 species 35 'Br' 'bromine' 79.904 2.4 12 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 3 species 36 'Kr' 'krypton' 83.798 2.2 12 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 species 37 'Rb' 'rubidium' 85.4678 2.6 13 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 5 0 1 1 species 38 'Sr' 'strontium' 87.62 2.6 13 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 5 0 1 2 species 39 'Y' 'yttrium' 88.90585 2.6 14 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 1 5 0 1 2 species 40 'Zr' 'zirconium' 91.224 2.6 14 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 2 5 0 1 2 species 41 'Nb' 'niobium' 92.90638 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 3 4 2 3 1 5 0 1 1 species 42 'Mo' 'molybdenum' 95.94 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 3 4 2 3 2 5 0 1 1 species 43 'Tc' 'technetium' 98.0 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 2 5 0 1 1 species 44 'Ru' 'ruthenium' 101.07 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 3 5 0 1 1 species 45 'Rh' 'rhodium' 102.90550 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 4 5 0 1 1 species 46 'Pd' 'palladium' 106.42 2.6 14 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 species 47 'Ag' 'silver' 107.8682 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 1 species 48 'Cd' 'cadmium' 112.411 2.6 15 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 species 49 'In' 'indium' 114.818 2.6 16 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 1 species 50 'Sn' 'tin' 118.710 2.6 17 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 1 5 1 2 1 species 51 'Sb' 'antimony' 121.760 2.6 17 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 1 5 1 2 2 species 52 'Te' 'tellurium' 127.60 2.6 17 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 2 species 53 'I' 'iodine' 126.90447 2.6 17 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 3 species 54 'Xe' 'xenon' 131.293 2.4 17 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 4 species 55 'Cs' 'caesium' 132.90545 2.8 18 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 1 species 56 'Ba' 'barium' 137.327 2.8 18 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 57 'La' 'lanthanum' 138.9055 2.8 19 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 1 6 0 1 2 species 58 'Ce' 'cerium' 140.116 2.8 19 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 2 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 59 'Pr' 'praseodymium' 140.90765 2.8 19 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 60 'Nd' 'neodymium' 144.24 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 4 3 4 1 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 61 'Pm' 'promethium' 145.0 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 4 3 4 2 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 62 'Sm' 'samarium' 150.36 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 4 3 4 3 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 63 'Eu' 'europium' 151.964 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 4 3 4 4 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 64 'Gd' 'gadolinium' 157.25 2.8 21 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 3 4 3 4 4 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 1 6 0 1 2 species 65 'Tb' 'terbium' 158.92534 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 5 4 3 4 4 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 66 'Dy' 'dysprosium' 162.500 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 4 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 67 'Ho' 'holmium' 164.93032 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 5 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 68 'Er' 'erbium' 167.259 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 6 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 69 'Tm' 'thulium' 168.93421 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 7 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 70 'Yb' 'ytterbium' 173.04 2.8 20 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 6 0 1 2 species 71 'Lu' 'lutetium' 174.967 2.8 21 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 1 6 0 1 2 species 72 'Hf' 'hafnium' 178.49 2.8 21 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 2 6 0 1 2 species 73 'Ta' 'tantalum' 180.9479 2.8 21 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 3 6 0 1 2 species 74 'W' 'tungsten' 183.84 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 3 5 2 3 1 6 0 1 2 species 75 'Re' 'rhenium' 186.207 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 3 5 2 3 2 6 0 1 2 species 76 'Os' 'osmium' 190.23 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 2 6 0 1 2 species 77 'Ir' 'iridium' 192.217 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 3 6 0 1 2 species 78 'Pt' 'platinum' 195.078 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 5 6 0 1 1 species 79 'Au' 'gold' 196.96655 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 1 species 80 'Hg' 'mercury' 200.59 2.8 22 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 species 81 'Tl' 'thallium' 204.3833 2.8 23 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 1 species 82 'Pb' 'lead' 207.2 2.8 24 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 1 6 1 2 1 species 83 'Bi' 'bismuth' 208.98038 2.8 24 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 1 6 1 2 2 species 84 'Po' 'polonium' 209.0 2.8 24 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 2 species 85 'At' 'astatine' 210.0 2.8 24 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 3 species 86 'Rn' 'radon' 222.0 2.6 24 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 4 species 87 'Fr' 'francium' 223.0 3.0 25 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 1 species 88 'Ra' 'radium' 226.0 3.0 25 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 89 'Ac' 'actinium' 227.0 3.0 26 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 90 'Th' 'thorium' 232.0381 3.0 26 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 2 7 0 1 2 species 91 'Pa' 'protactinium' 231.03588 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 2 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 92 'U' 'uranium' 238.02891 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 3 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 93 'Np' 'neptunium' 237.0 3.0 28 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 3 5 3 4 1 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 94 'Pu' 'plutonium' 244.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 3 5 3 4 3 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 95 'Am' 'americium' 243.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 3 5 3 4 4 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 96 'Cm' 'curium' 247.0 3.0 28 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 3 5 3 4 4 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 97 'Bk' 'berkelium' 247.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 5 5 3 4 4 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 98 'Cf' 'californium' 251.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 4 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 99 'Es' 'einsteinium' 252.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 5 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 100 'Fm' 'fermium' 257.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 6 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 101 'Md' 'mendelevium' 258.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 7 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 102 'No' 'nobelium' 259.0 3.0 27 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 8 6 0 1 2 6 1 1 2 6 1 2 4 7 0 1 2 species 103 'Lr' 'lawrencium' 262.0 3.0 28 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 8 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 1 7 0 1 2 species 104 'Rf' 'rutherfordium' 261.0 3.0 28 1 0 1 2 2 0 1 2 2 1 1 2 2 1 2 4 3 0 1 2 3 1 1 2 3 1 2 4 3 2 2 4 3 2 3 6 4 0 1 2 4 1 1 2 4 1 2 4 4 2 2 4 4 2 3 6 4 3 3 6 4 3 4 8 5 0 1 2 5 1 1 2 5 1 2 4 5 2 2 4 5 2 3 6 5 3 3 6 5 3 4 8 6 0 1 2 6 1 1 2 6 1 2 4 6 2 2 2 7 0 1 2 elk-7.2.42/species/PaxHeaders.21776/Er.in0000644000000000000000000000013214061636521014461 xustar0030 mtime=1623670097.129100437 30 atime=1623670097.129100437 30 ctime=1623670097.129100437 elk-7.2.42/species/Er.in0000644002504400250440000000422614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Er' : spsymb 'erbium' : spname -68.0000 : spzn 304894.5051 : spmass 0.242536E-06 2.8000 49.0284 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1037 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9077 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9177 0 T elk-7.2.42/species/PaxHeaders.21776/Es.in0000644000000000000000000000013214061636521014462 xustar0030 mtime=1623670097.131100435 30 atime=1623670097.131100435 30 ctime=1623670097.131100435 elk-7.2.42/species/Es.in0000644002504400250440000000453214061636521016523 0ustar00dewhurstdewhurst00000000000000 'Es' : spsymb 'einsteinium' : spname -99.0000 : spzn 459367.8982 : spmass 0.201008E-06 3.0000 51.0277 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 5.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1339 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.1315 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7952 0 T elk-7.2.42/species/PaxHeaders.21776/Eu.in0000644000000000000000000000013214061636521014464 xustar0030 mtime=1623670097.133100433 30 atime=1623670097.133100433 30 ctime=1623670097.133100433 elk-7.2.42/species/Eu.in0000644002504400250440000000422614061636521016525 0ustar00dewhurstdewhurst00000000000000 'Eu' : spsymb 'europium' : spname -63.0000 : spzn 277013.4257 : spmass 0.251976E-06 2.8000 52.2803 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 4 3 4 4.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0972 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6436 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8355 0 T elk-7.2.42/species/PaxHeaders.21776/Fe.in0000644000000000000000000000013214061636521014445 xustar0030 mtime=1623670097.135100431 30 atime=1623670097.134100432 30 ctime=1623670097.135100431 elk-7.2.42/species/Fe.in0000644002504400250440000000335214061636521016505 0ustar00dewhurstdewhurst00000000000000 'Fe' : spsymb 'iron' : spname -26.0000 : spzn 101799.2074 : spmass 0.392232E-06 2.4000 42.6274 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 2.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.4344 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.1817 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2816 0 T elk-7.2.42/species/PaxHeaders.21776/F.in0000644000000000000000000000012714061636521014304 xustar0029 mtime=1623670097.13610043 29 atime=1623670097.13610043 29 ctime=1623670097.13610043 elk-7.2.42/species/F.in0000644002504400250440000000243214061636521016336 0ustar00dewhurstdewhurst00000000000000 'F' : spsymb 'fluorine' : spname -9.00000 : spzn 34631.97042 : spmass 0.666667E-06 2.0000 27.0542 300 : rminsp, rmt, rmaxsp, nrmt 4 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0894 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4142 0 T elk-7.2.42/species/PaxHeaders.21776/Fm.in0000644000000000000000000000013214061636521014455 xustar0030 mtime=1623670097.138100428 30 atime=1623670097.138100428 30 ctime=1623670097.138100428 elk-7.2.42/species/Fm.in0000644002504400250440000000453214061636521016516 0ustar00dewhurstdewhurst00000000000000 'Fm' : spsymb 'fermium' : spname -100.000 : spzn 468482.3406 : spmass 0.200000E-06 3.0000 55.4667 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1486 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2021 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8046 0 T elk-7.2.42/species/PaxHeaders.21776/Fr.in0000644000000000000000000000013214061636521014462 xustar0030 mtime=1623670097.140100427 30 atime=1623670097.140100427 30 ctime=1623670097.140100427 elk-7.2.42/species/Fr.in0000644002504400250440000000421614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Fr' : spsymb 'francium' : spname -87.0000 : spzn 406504.1321 : spmass 0.214423E-06 3.0000 70.3136 800 : rminsp, rmt, rmaxsp, nrmt 25 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0328 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0471 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4089 0 T elk-7.2.42/species/PaxHeaders.21776/Ga.in0000644000000000000000000000013214061636521014442 xustar0030 mtime=1623670097.142100425 30 atime=1623670097.142100425 30 ctime=1623670097.142100425 elk-7.2.42/species/Ga.in0000644002504400250440000000273614061636521016507 0ustar00dewhurstdewhurst00000000000000 'Ga' : spsymb 'gallium' : spname -31.0000 : spzn 127097.2538 : spmass 0.359211E-06 2.4000 55.5610 500 : rminsp, rmt, rmaxsp, nrmt 11 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7036 0 T elk-7.2.42/species/PaxHeaders.21776/Gd.in0000644000000000000000000000013214061636521014445 xustar0030 mtime=1623670097.144100423 30 atime=1623670097.143100424 30 ctime=1623670097.144100423 elk-7.2.42/species/Gd.in0000644002504400250440000000426214061636521016506 0ustar00dewhurstdewhurst00000000000000 'Gd' : spsymb 'gadolinium' : spname -64.0000 : spzn 286649.2142 : spmass 0.250000E-06 2.8000 51.1390 700 : rminsp, rmt, rmaxsp, nrmt 21 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 4 3 4 4.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 1.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3108 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8262 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9546 0 T elk-7.2.42/species/PaxHeaders.21776/Ge.in0000644000000000000000000000013214061636521014446 xustar0030 mtime=1623670097.146100421 30 atime=1623670097.145100422 30 ctime=1623670097.146100421 elk-7.2.42/species/Ge.in0000644002504400250440000000321614061636521016505 0ustar00dewhurstdewhurst00000000000000 'Ge' : spsymb 'germanium' : spname -32.0000 : spzn 132414.6195 : spmass 0.353553E-06 2.4000 46.1060 500 : rminsp, rmt, rmaxsp, nrmt 12 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 1.00000 F 4 1 2 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0759 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4380 0 T elk-7.2.42/species/PaxHeaders.21776/He.in0000644000000000000000000000012714061636521014453 xustar0029 mtime=1623670097.14710042 29 atime=1623670097.14710042 29 ctime=1623670097.14710042 elk-7.2.42/species/He.in0000644002504400250440000000206214061636521016504 0ustar00dewhurstdewhurst00000000000000 'He' : spsymb 'helium' : spname -2.00000 : spzn 7296.297095 : spmass 0.141421E-05 1.4000 24.1776 200 : rminsp, rmt, rmaxsp, nrmt 1 : nstsp 1 0 1 2.00000 F : nsp, lsp, ksp, occsp, spcore 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5703 0 T elk-7.2.42/species/PaxHeaders.21776/Hf.in0000644000000000000000000000013214061636521014450 xustar0030 mtime=1623670097.149100418 30 atime=1623670097.149100418 30 ctime=1623670097.149100418 elk-7.2.42/species/Hf.in0000644002504400250440000000426214061636521016511 0ustar00dewhurstdewhurst00000000000000 'Hf' : spsymb 'hafnium' : spname -72.0000 : spzn 325367.3656 : spmass 0.235702E-06 2.8000 49.2272 700 : rminsp, rmt, rmaxsp, nrmt 21 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 2.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5852 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.4529 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2221 0 T elk-7.2.42/species/PaxHeaders.21776/Hg.in0000644000000000000000000000013214061636521014451 xustar0030 mtime=1623670097.151100416 30 atime=1623670097.151100416 30 ctime=1623670097.151100416 elk-7.2.42/species/Hg.in0000644002504400250440000000364614061636521016517 0ustar00dewhurstdewhurst00000000000000 'Hg' : spsymb 'mercury' : spname -80.0000 : spzn 365653.2012 : spmass 0.223607E-06 2.8000 37.4626 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2710 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3442 0 T elk-7.2.42/species/PaxHeaders.21776/H.in0000644000000000000000000000013214061636521014302 xustar0030 mtime=1623670097.153100415 30 atime=1623670097.153100415 30 ctime=1623670097.153100415 elk-7.2.42/species/H.in0000644002504400250440000000163614061636521016345 0ustar00dewhurstdewhurst00000000000000 'H' : spsymb 'hydrogen' : spname -1.00000 : spzn 1837.362219 : spmass 0.200000E-05 1.4000 36.6488 200 : rminsp, rmt, rmaxsp, nrmt 1 : nstsp 1 0 1 1.00000 F : nsp, lsp, ksp, occsp, spcore 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/species/PaxHeaders.21776/Ho.in0000644000000000000000000000013214061636521014461 xustar0030 mtime=1623670097.155100413 30 atime=1623670097.154100414 30 ctime=1623670097.155100413 elk-7.2.42/species/Ho.in0000644002504400250440000000422614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Ho' : spsymb 'holmium' : spname -67.0000 : spzn 300649.5811 : spmass 0.244339E-06 2.8000 51.3086 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 5.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1044 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8527 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9014 0 T elk-7.2.42/species/PaxHeaders.21776/I.in0000644000000000000000000000013214061636521014303 xustar0030 mtime=1623670097.157100411 30 atime=1623670097.156100412 30 ctime=1623670097.157100411 elk-7.2.42/species/I.in0000644002504400250440000000343214061636521016342 0ustar00dewhurstdewhurst00000000000000 'I' : spsymb 'iodine' : spname -53.0000 : spzn 231332.6970 : spmass 0.274721E-06 2.6000 41.0205 600 : rminsp, rmt, rmaxsp, nrmt 17 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 3.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8184 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6456 0 T elk-7.2.42/species/PaxHeaders.21776/In.in0000644000000000000000000000012714061636521014465 xustar0029 mtime=1623670097.15810041 29 atime=1623670097.15810041 29 ctime=1623670097.15810041 elk-7.2.42/species/In.in0000644002504400250440000000337614061636521016527 0ustar00dewhurstdewhurst00000000000000 'In' : spsymb 'indium' : spname -49.0000 : spzn 209300.4100 : spmass 0.285714E-06 2.6000 56.2447 600 : rminsp, rmt, rmaxsp, nrmt 16 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.7840 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6687 0 T elk-7.2.42/species/PaxHeaders.21776/Ir.in0000644000000000000000000000013214061636521014465 xustar0030 mtime=1623670097.160100408 30 atime=1623670097.160100408 30 ctime=1623670097.160100408 elk-7.2.42/species/Ir.in0000644002504400250440000000431614061636521016526 0ustar00dewhurstdewhurst00000000000000 'Ir' : spsymb 'iridium' : spname -77.0000 : spzn 350390.1559 : spmass 0.227921E-06 2.8000 41.0330 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 T 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 3.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2294 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8716 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2478 0 T elk-7.2.42/species/PaxHeaders.21776/K.in0000644000000000000000000000013214061636521014305 xustar0030 mtime=1623670097.162100406 30 atime=1623670097.162100406 30 ctime=1623670097.162100406 elk-7.2.42/species/K.in0000644002504400250440000000261214061636521016343 0ustar00dewhurstdewhurst00000000000000 'K' : spsymb 'potassium' : spname -19.0000 : spzn 71271.84084 : spmass 0.458831E-06 2.4000 62.3191 500 : rminsp, rmt, rmaxsp, nrmt 8 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 4 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2928 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6889 0 T elk-7.2.42/species/PaxHeaders.21776/Kr.in0000644000000000000000000000013214061636521014467 xustar0030 mtime=1623670097.164100404 30 atime=1623670097.164100404 30 ctime=1623670097.164100404 elk-7.2.42/species/Kr.in0000644002504400250440000000321614061636521016526 0ustar00dewhurstdewhurst00000000000000 'Kr' : spsymb 'krypton' : spname -36.0000 : spzn 152754.4092 : spmass 0.333333E-06 2.2000 31.7038 500 : rminsp, rmt, rmaxsp, nrmt 12 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.9818 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8532 0 T elk-7.2.42/species/PaxHeaders.21776/La.in0000644000000000000000000000013214061636521014447 xustar0030 mtime=1623670097.166100403 30 atime=1623670097.165100403 30 ctime=1623670097.166100403 elk-7.2.42/species/La.in0000644002504400250440000000352214061636521016506 0ustar00dewhurstdewhurst00000000000000 'La' : spsymb 'lanthanum' : spname -57.0000 : spzn 253209.2364 : spmass 0.264906E-06 2.8000 50.7129 700 : rminsp, rmt, rmaxsp, nrmt 19 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 1.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4321 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7953 0 T elk-7.2.42/species/PaxHeaders.21776/Li.in0000644000000000000000000000013214061636521014457 xustar0030 mtime=1623670097.168100401 30 atime=1623670097.167100402 30 ctime=1623670097.168100401 elk-7.2.42/species/Li.in0000644002504400250440000000211614061636521016514 0ustar00dewhurstdewhurst00000000000000 'Li' : spsymb 'lithium' : spname -3.00000 : spzn 12652.66897 : spmass 0.115470E-05 1.8000 57.7730 300 : rminsp, rmt, rmaxsp, nrmt 2 : nstsp 1 0 1 2.00000 F : nsp, lsp, ksp, occsp, spcore 2 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8784 0 T elk-7.2.42/species/PaxHeaders.21776/Lr.in0000644000000000000000000000012414061636521014471 xustar0028 mtime=1623670097.1691004 28 atime=1623670097.1691004 28 ctime=1623670097.1691004 elk-7.2.42/species/Lr.in0000644002504400250440000000456614061636521016540 0ustar00dewhurstdewhurst00000000000000 'Lr' : spsymb 'lawrencium' : spname -103.000 : spzn 477596.7830 : spmass 0.197066E-06 3.0000 68.3662 800 : rminsp, rmt, rmaxsp, nrmt 28 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 8.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3668 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5853 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9447 0 T elk-7.2.42/species/PaxHeaders.21776/Lu.in0000644000000000000000000000013214061636521014473 xustar0030 mtime=1623670097.171100398 30 atime=1623670097.171100398 30 ctime=1623670097.171100398 elk-7.2.42/species/Lu.in0000644002504400250440000000426214061636521016534 0ustar00dewhurstdewhurst00000000000000 'Lu' : spsymb 'lutetium' : spname -71.0000 : spzn 318945.3295 : spmass 0.237356E-06 2.8000 60.6496 700 : rminsp, rmt, rmaxsp, nrmt 21 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 1.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3291 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2383 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0908 0 T elk-7.2.42/species/PaxHeaders.21776/Md.in0000644000000000000000000000013214061636521014453 xustar0030 mtime=1623670097.173100396 30 atime=1623670097.173100396 30 ctime=1623670097.173100396 elk-7.2.42/species/Md.in0000644002504400250440000000453214061636521016514 0ustar00dewhurstdewhurst00000000000000 'Md' : spsymb 'mendelevium' : spname -101.000 : spzn 470305.2291 : spmass 0.199007E-06 3.0000 49.0271 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 7.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1623 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2742 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8134 0 T elk-7.2.42/species/PaxHeaders.21776/Mg.in0000644000000000000000000000013214061636521014456 xustar0030 mtime=1623670097.175100394 30 atime=1623670097.175100394 30 ctime=1623670097.175100394 elk-7.2.42/species/Mg.in0000644002504400250440000000246614061636521016523 0ustar00dewhurstdewhurst00000000000000 'Mg' : spsymb 'magnesium' : spname -12.0000 : spzn 44305.30462 : spmass 0.577350E-06 2.2000 45.4518 400 : rminsp, rmt, rmaxsp, nrmt 5 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.9139 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7134 0 T elk-7.2.42/species/PaxHeaders.21776/Mn.in0000644000000000000000000000013214061636521014465 xustar0030 mtime=1623670097.177100392 30 atime=1623670097.177100392 30 ctime=1623670097.177100392 elk-7.2.42/species/Mn.in0000644002504400250440000000335214061636521016525 0ustar00dewhurstdewhurst00000000000000 'Mn' : spsymb 'manganese' : spname -25.0000 : spzn 100145.9369 : spmass 0.400000E-06 2.4000 41.1948 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 3.00000 F 3 2 3 2.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.1372 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9857 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2553 0 T elk-7.2.42/species/PaxHeaders.21776/Mo.in0000644000000000000000000000013014061636521014464 xustar0029 mtime=1623670097.17910039 30 atime=1623670097.178100391 29 ctime=1623670097.17910039 elk-7.2.42/species/Mo.in0000644002504400250440000000356614061636521016535 0ustar00dewhurstdewhurst00000000000000 'Mo' : spsymb 'molybdenum' : spname -42.0000 : spzn 174887.9212 : spmass 0.308607E-06 2.6000 48.6428 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 3.00000 F 4 2 3 2.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.3643 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.3863 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1404 0 T elk-7.2.42/species/PaxHeaders.21776/Na.in0000644000000000000000000000013114061636521014450 xustar0030 mtime=1623670097.181100389 29 atime=1623670097.18010039 30 ctime=1623670097.181100389 elk-7.2.42/species/Na.in0000644002504400250440000000246614061636521016516 0ustar00dewhurstdewhurst00000000000000 'Na' : spsymb 'sodium' : spname -11.0000 : spzn 41907.78700 : spmass 0.603023E-06 2.2000 56.6436 400 : rminsp, rmt, rmaxsp, nrmt 5 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 4.00000 F 3 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0701 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0570 0 T elk-7.2.42/species/PaxHeaders.21776/Nb.in0000644000000000000000000000013214061636521014452 xustar0030 mtime=1623670097.182100388 30 atime=1623670097.182100388 30 ctime=1623670097.182100388 elk-7.2.42/species/Nb.in0000644002504400250440000000356614061636521016521 0ustar00dewhurstdewhurst00000000000000 'Nb' : spsymb 'niobium' : spname -41.0000 : spzn 169357.9703 : spmass 0.312348E-06 2.6000 49.8649 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 3.00000 F 4 2 3 1.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.1446 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2440 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1141 0 T elk-7.2.42/species/PaxHeaders.21776/Nd.in0000644000000000000000000000013214061636521014454 xustar0030 mtime=1623670097.184100386 30 atime=1623670097.184100386 30 ctime=1623670097.184100386 elk-7.2.42/species/Nd.in0000644002504400250440000000422614061636521016515 0ustar00dewhurstdewhurst00000000000000 'Nd' : spsymb 'neodymium' : spname -60.0000 : spzn 262933.4350 : spmass 0.258199E-06 2.8000 57.1546 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 4 3 4 1.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0620 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4878 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7795 0 T elk-7.2.42/species/PaxHeaders.21776/Ne.in0000644000000000000000000000013214061636521014455 xustar0030 mtime=1623670097.186100384 30 atime=1623670097.186100384 30 ctime=1623670097.186100384 elk-7.2.42/species/Ne.in0000644002504400250440000000243214061636521016513 0ustar00dewhurstdewhurst00000000000000 'Ne' : spsymb 'neon' : spname -10.0000 : spzn 36785.34276 : spmass 0.632456E-06 1.6000 24.5143 300 : rminsp, rmt, rmaxsp, nrmt 4 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 4.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.3272 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4961 0 T elk-7.2.42/species/PaxHeaders.21776/Ni.in0000644000000000000000000000013214061636521014461 xustar0030 mtime=1623670097.188100382 30 atime=1623670097.188100382 30 ctime=1623670097.188100382 elk-7.2.42/species/Ni.in0000644002504400250440000000312614061636521016520 0ustar00dewhurstdewhurst00000000000000 'Ni' : spsymb 'nickel' : spname -28.0000 : spzn 106991.5230 : spmass 0.377964E-06 2.4000 42.8623 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 4.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5905 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3317 0 T elk-7.2.42/species/PaxHeaders.21776/N.in0000644000000000000000000000012714061636521014314 xustar0029 mtime=1623670097.19010038 29 atime=1623670097.19010038 29 ctime=1623670097.19010038 elk-7.2.42/species/N.in0000644002504400250440000000220614061636521016345 0ustar00dewhurstdewhurst00000000000000 'N' : spsymb 'nitrogen' : spname -7.00000 : spzn 25532.65214 : spmass 0.755929E-06 1.8000 34.9411 300 : rminsp, rmt, rmaxsp, nrmt 4 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 1.00000 F 2 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6770 0 T elk-7.2.42/species/PaxHeaders.21776/No.in0000644000000000000000000000013214061636521014467 xustar0030 mtime=1623670097.192100378 30 atime=1623670097.191100379 30 ctime=1623670097.192100378 elk-7.2.42/species/No.in0000644002504400250440000000453214061636521016530 0ustar00dewhurstdewhurst00000000000000 'No' : spsymb 'nobelium' : spname -102.000 : spzn 472128.1176 : spmass 0.198030E-06 3.0000 49.0598 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 8.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1751 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.3481 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8216 0 T elk-7.2.42/species/PaxHeaders.21776/Np.in0000644000000000000000000000013214061636521014470 xustar0030 mtime=1623670097.193100378 30 atime=1623670097.193100378 30 ctime=1623670097.193100378 elk-7.2.42/species/Np.in0000644002504400250440000000456614061636521016540 0ustar00dewhurstdewhurst00000000000000 'Np' : spsymb 'neptunium' : spname -93.0000 : spzn 432024.5709 : spmass 0.207390E-06 3.0000 54.0533 800 : rminsp, rmt, rmaxsp, nrmt 28 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 5 3 4 1.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1316 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8240 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7920 0 T elk-7.2.42/species/PaxHeaders.21776/O.in0000644000000000000000000000013214061636521014311 xustar0030 mtime=1623670097.195100376 30 atime=1623670097.195100376 30 ctime=1623670097.195100376 elk-7.2.42/species/O.in0000644002504400250440000000220614061636521016346 0ustar00dewhurstdewhurst00000000000000 'O' : spsymb 'oxygen' : spname -8.00000 : spzn 29165.12202 : spmass 0.707107E-06 1.8000 30.4661 300 : rminsp, rmt, rmaxsp, nrmt 4 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 F 2 1 1 2.00000 F 2 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8728 0 T elk-7.2.42/species/PaxHeaders.21776/Os.in0000644000000000000000000000013214061636521014474 xustar0030 mtime=1623670097.197100374 30 atime=1623670097.197100374 30 ctime=1623670097.197100374 elk-7.2.42/species/Os.in0000644002504400250440000000454214061636521016536 0ustar00dewhurstdewhurst00000000000000 'Os' : spsymb 'osmium' : spname -76.0000 : spzn 346768.0765 : spmass 0.229416E-06 2.8000 47.1620 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 2.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 8 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8559 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.3540 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7397 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2159 0 T elk-7.2.42/species/PaxHeaders.21776/Pa.in0000644000000000000000000000013214061636521014453 xustar0030 mtime=1623670097.199100372 30 atime=1623670097.199100372 30 ctime=1623670097.199100372 elk-7.2.42/species/Pa.in0000644002504400250440000000430614061636521016513 0ustar00dewhurstdewhurst00000000000000 'Pa' : spsymb 'protactinium' : spname -91.0000 : spzn 421152.6452 : spmass 0.209657E-06 3.0000 62.3511 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 2.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6682 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7444 0 T elk-7.2.42/species/PaxHeaders.21776/Pb.in0000644000000000000000000000012714061636521014460 xustar0029 mtime=1623670097.20110037 29 atime=1623670097.20110037 29 ctime=1623670097.20110037 elk-7.2.42/species/Pb.in0000644002504400250440000000373614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Pb' : spsymb 'lead' : spname -82.0000 : spzn 377702.4940 : spmass 0.220863E-06 2.8000 53.2955 700 : rminsp, rmt, rmaxsp, nrmt 24 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 1.00000 F 6 1 2 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7322 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4439 0 T elk-7.2.42/species/PaxHeaders.21776/Pd.in0000644000000000000000000000013214061636521014456 xustar0030 mtime=1623670097.203100368 30 atime=1623670097.203100368 30 ctime=1623670097.203100368 elk-7.2.42/species/Pd.in0000644002504400250440000000353214061636521016516 0ustar00dewhurstdewhurst00000000000000 'Pd' : spsymb 'palladium' : spname -46.0000 : spzn 193991.7925 : spmass 0.294884E-06 2.6000 41.5324 500 : rminsp, rmt, rmaxsp, nrmt 14 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 6.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.1380 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8352 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1522 0 T elk-7.2.42/species/PaxHeaders.21776/P.in0000644000000000000000000000013214061636521014312 xustar0030 mtime=1623670097.205100366 30 atime=1623670097.204100367 30 ctime=1623670097.205100366 elk-7.2.42/species/P.in0000644002504400250440000000233214061636521016347 0ustar00dewhurstdewhurst00000000000000 'P' : spsymb 'phosphorus' : spname -15.0000 : spzn 56461.71226 : spmass 0.516398E-06 2.2000 39.7177 400 : rminsp, rmt, rmaxsp, nrmt 7 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 1.00000 F 3 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5151 0 T elk-7.2.42/species/PaxHeaders.21776/Pm.in0000644000000000000000000000013214061636521014467 xustar0030 mtime=1623670097.207100364 30 atime=1623670097.206100365 30 ctime=1623670097.207100364 elk-7.2.42/species/Pm.in0000644002504400250440000000422614061636521016530 0ustar00dewhurstdewhurst00000000000000 'Pm' : spsymb 'promethium' : spname -61.0000 : spzn 264318.8303 : spmass 0.256074E-06 2.8000 52.1574 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 4 3 4 2.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0768 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5401 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7991 0 T elk-7.2.42/species/PaxHeaders.21776/Po.in0000644000000000000000000000013214061636521014471 xustar0030 mtime=1623670097.208100364 30 atime=1623670097.208100364 30 ctime=1623670097.208100364 elk-7.2.42/species/Po.in0000644002504400250440000000373614061636521016537 0ustar00dewhurstdewhurst00000000000000 'Po' : spsymb 'polonium' : spname -84.0000 : spzn 380983.6933 : spmass 0.218218E-06 2.8000 43.2445 700 : rminsp, rmt, rmaxsp, nrmt 24 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.1481 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6144 0 T elk-7.2.42/species/PaxHeaders.21776/Pr.in0000644000000000000000000000013214061636521014474 xustar0030 mtime=1623670097.210100362 30 atime=1623670097.210100362 30 ctime=1623670097.210100362 elk-7.2.42/species/Pr.in0000644002504400250440000000374614061636521016543 0ustar00dewhurstdewhurst00000000000000 'Pr' : spsymb 'praseodymium' : spname -59.0000 : spzn 256858.9326 : spmass 0.260378E-06 2.8000 55.7748 700 : rminsp, rmt, rmaxsp, nrmt 19 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4342 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7585 0 T elk-7.2.42/species/PaxHeaders.21776/Pt.in0000644000000000000000000000012714061636521014502 xustar0029 mtime=1623670097.21210036 29 atime=1623670097.21210036 29 ctime=1623670097.21210036 elk-7.2.42/species/Pt.in0000644002504400250440000000431614061636521016537 0ustar00dewhurstdewhurst00000000000000 'Pt' : spsymb 'platinum' : spname -78.0000 : spzn 355605.4398 : spmass 0.226455E-06 2.8000 40.1191 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 T 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 5.00000 F 6 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5235 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9151 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2143 0 T elk-7.2.42/species/PaxHeaders.21776/Pu.in0000644000000000000000000000013214061636521014477 xustar0030 mtime=1623670097.214100358 30 atime=1623670097.214100358 30 ctime=1623670097.214100358 elk-7.2.42/species/Pu.in0000644002504400250440000000453214061636521016540 0ustar00dewhurstdewhurst00000000000000 'Pu' : spsymb 'plutonium' : spname -94.0000 : spzn 444784.7903 : spmass 0.206284E-06 3.0000 57.5498 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 5 3 4 3.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0579 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7999 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7412 0 T elk-7.2.42/species/PaxHeaders.21776/Ra.in0000644000000000000000000000013214061636521014455 xustar0030 mtime=1623670097.216100356 30 atime=1623670097.215100357 30 ctime=1623670097.216100356 elk-7.2.42/species/Ra.in0000644002504400250440000000421614061636521016515 0ustar00dewhurstdewhurst00000000000000 'Ra' : spsymb 'radium' : spname -88.0000 : spzn 411972.7976 : spmass 0.213201E-06 3.0000 54.9631 800 : rminsp, rmt, rmaxsp, nrmt 25 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.4469 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2846 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5588 0 T elk-7.2.42/species/PaxHeaders.21776/Rb.in0000644000000000000000000000013214061636521014456 xustar0030 mtime=1623670097.218100354 30 atime=1623670097.217100355 30 ctime=1623670097.218100354 elk-7.2.42/species/Rb.in0000644002504400250440000000302614061636521016514 0ustar00dewhurstdewhurst00000000000000 'Rb' : spsymb 'rubidium' : spname -37.0000 : spzn 155798.2684 : spmass 0.328798E-06 2.6000 62.8187 600 : rminsp, rmt, rmaxsp, nrmt 13 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.1744 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5784 0 T elk-7.2.42/species/PaxHeaders.21776/Re.in0000644000000000000000000000013214061636521014461 xustar0030 mtime=1623670097.220100352 30 atime=1623670097.220100352 30 ctime=1623670097.220100352 elk-7.2.42/species/Re.in0000644002504400250440000000454214061636521016523 0ustar00dewhurstdewhurst00000000000000 'Re' : spsymb 'rhenium' : spname -75.0000 : spzn 339434.5961 : spmass 0.230940E-06 2.8000 40.0180 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 3.00000 F 5 2 3 2.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 8 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5110 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.1270 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6149 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1881 0 T elk-7.2.42/species/PaxHeaders.21776/Rf.in0000644000000000000000000000013214061636521014462 xustar0030 mtime=1623670097.222100351 30 atime=1623670097.222100351 30 ctime=1623670097.222100351 elk-7.2.42/species/Rf.in0000644002504400250440000000456614061636521016532 0ustar00dewhurstdewhurst00000000000000 'Rf' : spsymb 'rutherfordium' : spname -104.000 : spzn 475773.8945 : spmass 0.196116E-06 3.0000 53.3658 800 : rminsp, rmt, rmaxsp, nrmt 28 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 6.00000 F 5 3 4 8.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 2.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5604 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.8179 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0541 0 T elk-7.2.42/species/PaxHeaders.21776/Rh.in0000644000000000000000000000013214061636521014464 xustar0030 mtime=1623670097.224100349 30 atime=1623670097.224100349 30 ctime=1623670097.224100349 elk-7.2.42/species/Rh.in0000644002504400250440000000356614061636521016533 0ustar00dewhurstdewhurst00000000000000 'Rh' : spsymb 'rhodium' : spname -45.0000 : spzn 187585.2510 : spmass 0.298142E-06 2.6000 45.1320 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 4.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.0301 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.8089 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.2190 0 T elk-7.2.42/species/PaxHeaders.21776/Rn.in0000644000000000000000000000013214061636521014472 xustar0030 mtime=1623670097.226100347 30 atime=1623670097.226100347 30 ctime=1623670097.226100347 elk-7.2.42/species/Rn.in0000644002504400250440000000373614061636521016540 0ustar00dewhurstdewhurst00000000000000 'Rn' : spsymb 'radon' : spname -86.0000 : spzn 404681.2436 : spmass 0.215666E-06 2.6000 38.0087 700 : rminsp, rmt, rmaxsp, nrmt 24 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6273 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8085 0 T elk-7.2.42/species/PaxHeaders.21776/Ru.in0000644000000000000000000000013214061636521014501 xustar0030 mtime=1623670097.228100345 30 atime=1623670097.227100346 30 ctime=1623670097.228100345 elk-7.2.42/species/Ru.in0000644002504400250440000000356614061636521016550 0ustar00dewhurstdewhurst00000000000000 'Ru' : spsymb 'ruthenium' : spname -44.0000 : spzn 184239.3392 : spmass 0.301511E-06 2.6000 48.8112 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 3.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.8048 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6670 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1922 0 T elk-7.2.42/species/PaxHeaders.21776/Sb.in0000644000000000000000000000013214061636521014457 xustar0030 mtime=1623670097.229100344 30 atime=1623670097.229100344 30 ctime=1623670097.229100344 elk-7.2.42/species/Sb.in0000644002504400250440000000343214061636521016516 0ustar00dewhurstdewhurst00000000000000 'Sb' : spsymb 'antimony' : spname -51.0000 : spzn 221954.9019 : spmass 0.280056E-06 2.6000 44.3358 600 : rminsp, rmt, rmaxsp, nrmt 17 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 1.00000 F 5 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2137 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.4804 0 T elk-7.2.42/species/PaxHeaders.21776/Sc.in0000644000000000000000000000013214061636521014460 xustar0030 mtime=1623670097.231100342 30 atime=1623670097.231100342 30 ctime=1623670097.231100342 elk-7.2.42/species/Sc.in0000644002504400250440000000307214061636521016517 0ustar00dewhurstdewhurst00000000000000 'Sc' : spsymb 'scandium' : spname -21.0000 : spzn 81949.61066 : spmass 0.436436E-06 2.4000 55.5111 500 : rminsp, rmt, rmaxsp, nrmt 9 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 1.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0100 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.2267 0 T elk-7.2.42/species/PaxHeaders.21776/Se.in0000644000000000000000000000012714061636521014466 xustar0029 mtime=1623670097.23310034 29 atime=1623670097.23310034 29 ctime=1623670097.23310034 elk-7.2.42/species/Se.in0000644002504400250440000000321614061636521016521 0ustar00dewhurstdewhurst00000000000000 'Se' : spsymb 'selenium' : spname -34.0000 : spzn 143935.2748 : spmass 0.342997E-06 2.4000 38.3229 500 : rminsp, rmt, rmaxsp, nrmt 12 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9444 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6402 0 T elk-7.2.42/species/PaxHeaders.21776/Si.in0000644000000000000000000000013214061636521014466 xustar0030 mtime=1623670097.235100339 30 atime=1623670097.235100339 30 ctime=1623670097.235100339 elk-7.2.42/species/Si.in0000644002504400250440000000210614061636521016522 0ustar00dewhurstdewhurst00000000000000 'Si' : spsymb 'silicon' : spname -14.0000 : spzn 51196.73454 : spmass 0.534522E-06 2.2000 47.8169 400 : rminsp, rmt, rmaxsp, nrmt 7 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 1.00000 F 3 1 2 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 2 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F elk-7.2.42/species/PaxHeaders.21776/S.in0000644000000000000000000000013214061636521014315 xustar0030 mtime=1623670097.237100337 30 atime=1623670097.237100337 30 ctime=1623670097.237100337 elk-7.2.42/species/S.in0000644002504400250440000000233214061636521016352 0ustar00dewhurstdewhurst00000000000000 'S' : spsymb 'sulphur' : spname -16.0000 : spzn 58450.91926 : spmass 0.500000E-06 2.2000 36.9680 400 : rminsp, rmt, rmaxsp, nrmt 7 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 3 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.6346 0 T elk-7.2.42/species/PaxHeaders.21776/Sm.in0000644000000000000000000000013214061636521014472 xustar0030 mtime=1623670097.239100335 30 atime=1623670097.238100336 30 ctime=1623670097.239100335 elk-7.2.42/species/Sm.in0000644002504400250440000000422614061636521016533 0ustar00dewhurstdewhurst00000000000000 'Sm' : spsymb 'samarium' : spname -62.0000 : spzn 274089.5126 : spmass 0.254000E-06 2.8000 52.2193 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 3.00000 F 4 3 4 3.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0883 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5919 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8177 0 T elk-7.2.42/species/PaxHeaders.21776/Sn.in0000644000000000000000000000013214061636521014473 xustar0030 mtime=1623670097.240100334 30 atime=1623670097.240100334 30 ctime=1623670097.240100334 elk-7.2.42/species/Sn.in0000644002504400250440000000343214061636521016532 0ustar00dewhurstdewhurst00000000000000 'Sn' : spsymb 'tin' : spname -50.0000 : spzn 216395.0920 : spmass 0.282843E-06 2.6000 49.2770 600 : rminsp, rmt, rmaxsp, nrmt 17 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 1.00000 F 5 1 2 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.1993 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9327 0 T elk-7.2.42/species/PaxHeaders.21776/Sr.in0000644000000000000000000000013214061636521014477 xustar0030 mtime=1623670097.242100332 30 atime=1623670097.242100332 30 ctime=1623670097.242100332 elk-7.2.42/species/Sr.in0000644002504400250440000000302614061636521016535 0ustar00dewhurstdewhurst00000000000000 'Sr' : spsymb 'strontium' : spname -38.0000 : spzn 159721.4890 : spmass 0.324443E-06 2.6000 52.2837 600 : rminsp, rmt, rmaxsp, nrmt 13 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 5 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 4 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5031 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8259 0 T elk-7.2.42/species/PaxHeaders.21776/Ta.in0000644000000000000000000000012714061636521014463 xustar0029 mtime=1623670097.24410033 29 atime=1623670097.24410033 29 ctime=1623670097.24410033 elk-7.2.42/species/Ta.in0000644002504400250440000000426214061636521016520 0ustar00dewhurstdewhurst00000000000000 'Ta' : spsymb 'tantalum' : spname -73.0000 : spzn 329847.8433 : spmass 0.234082E-06 2.8000 43.8533 700 : rminsp, rmt, rmaxsp, nrmt 21 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 3.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8655 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.6690 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.3498 0 T elk-7.2.42/species/PaxHeaders.21776/Tb.in0000644000000000000000000000013214061636521014460 xustar0030 mtime=1623670097.246100328 30 atime=1623670097.246100328 30 ctime=1623670097.246100328 elk-7.2.42/species/Tb.in0000644002504400250440000000422614061636521016521 0ustar00dewhurstdewhurst00000000000000 'Tb' : spsymb 'terbium' : spname -65.0000 : spzn 289703.1722 : spmass 0.248069E-06 2.8000 52.3997 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 5.00000 F 4 3 4 4.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1036 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7464 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.8687 0 T elk-7.2.42/species/PaxHeaders.21776/Tc.in0000644000000000000000000000013214061636521014461 xustar0030 mtime=1623670097.248100326 30 atime=1623670097.248100326 30 ctime=1623670097.248100326 elk-7.2.42/species/Tc.in0000644002504400250440000000356614061636521016530 0ustar00dewhurstdewhurst00000000000000 'Tc' : spsymb 'technetium' : spname -43.0000 : spzn 178643.0715 : spmass 0.304997E-06 2.6000 48.7280 600 : rminsp, rmt, rmaxsp, nrmt 15 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 4.00000 F 4 2 3 2.00000 F 5 0 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5825 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5257 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1656 0 T elk-7.2.42/species/PaxHeaders.21776/Te.in0000644000000000000000000000013214061636521014463 xustar0030 mtime=1623670097.250100324 30 atime=1623670097.249100325 30 ctime=1623670097.250100324 elk-7.2.42/species/Te.in0000644002504400250440000000343214061636521016522 0ustar00dewhurstdewhurst00000000000000 'Te' : spsymb 'tellurium' : spname -52.0000 : spzn 232600.5707 : spmass 0.277350E-06 2.6000 40.9670 600 : rminsp, rmt, rmaxsp, nrmt 17 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.5022 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5594 0 T elk-7.2.42/species/PaxHeaders.21776/Th.in0000644000000000000000000000013214061636521014466 xustar0030 mtime=1623670097.251100324 30 atime=1623670097.251100324 30 ctime=1623670097.251100324 elk-7.2.42/species/Th.in0000644002504400250440000000425214061636521016526 0ustar00dewhurstdewhurst00000000000000 'Th' : spsymb 'thorium' : spname -90.0000 : spzn 422979.5805 : spmass 0.210819E-06 3.0000 51.7499 800 : rminsp, rmt, rmaxsp, nrmt 26 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 2.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.2122 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6772 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7795 0 T elk-7.2.42/species/PaxHeaders.21776/Ti.in0000644000000000000000000000013214061636521014467 xustar0030 mtime=1623670097.253100322 30 atime=1623670097.253100322 30 ctime=1623670097.253100322 elk-7.2.42/species/Ti.in0000644002504400250440000000307214061636521016526 0ustar00dewhurstdewhurst00000000000000 'Ti' : spsymb 'titanium' : spname -22.0000 : spzn 87256.20310 : spmass 0.426401E-06 2.4000 46.2267 500 : rminsp, rmt, rmaxsp, nrmt 9 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 2.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.2872 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4164 0 T elk-7.2.42/species/PaxHeaders.21776/Tl.in0000644000000000000000000000012714061636521014476 xustar0029 mtime=1623670097.25510032 29 atime=1623670097.25510032 29 ctime=1623670097.25510032 elk-7.2.42/species/Tl.in0000644002504400250440000000370214061636521016531 0ustar00dewhurstdewhurst00000000000000 'Tl' : spsymb 'thallium' : spname -81.0000 : spzn 372567.9640 : spmass 0.222222E-06 2.8000 57.1183 700 : rminsp, rmt, rmaxsp, nrmt 23 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 4.00000 F 5 2 3 6.00000 F 6 0 1 2.00000 F 6 1 1 1.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5798 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.5217 0 T elk-7.2.42/species/PaxHeaders.21776/Tm.in0000644000000000000000000000013214061636521014473 xustar0030 mtime=1623670097.257100318 30 atime=1623670097.256100319 30 ctime=1623670097.257100318 elk-7.2.42/species/Tm.in0000644002504400250440000000422614061636521016534 0ustar00dewhurstdewhurst00000000000000 'Tm' : spsymb 'thulium' : spname -69.0000 : spzn 307948.2261 : spmass 0.240772E-06 2.8000 53.8678 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 7.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1016 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.9638 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9340 0 T elk-7.2.42/species/PaxHeaders.21776/U.in0000644000000000000000000000013214061636521014317 xustar0030 mtime=1623670097.259100316 30 atime=1623670097.258100317 30 ctime=1623670097.259100316 elk-7.2.42/species/U.in0000644002504400250440000000430614061636521016357 0ustar00dewhurstdewhurst00000000000000 'U' : spsymb 'uranium' : spname -92.0000 : spzn 433900.1591 : spmass 0.208514E-06 3.0000 56.2869 800 : rminsp, rmt, rmaxsp, nrmt 27 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 T 4 3 4 8.00000 T 5 0 1 2.00000 T 5 1 1 2.00000 T 5 1 2 4.00000 T 5 2 2 4.00000 T 5 2 3 6.00000 T 5 3 3 3.00000 F 6 0 1 2.00000 F 6 1 1 2.00000 F 6 1 2 4.00000 F 6 2 2 1.00000 F 7 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 6 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7461 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7688 0 T elk-7.2.42/species/PaxHeaders.21776/V.in0000644000000000000000000000013214061636521014320 xustar0030 mtime=1623670097.260100315 30 atime=1623670097.260100315 30 ctime=1623670097.260100315 elk-7.2.42/species/V.in0000644002504400250440000000307214061636521016357 0ustar00dewhurstdewhurst00000000000000 'V' : spsymb 'vanadium' : spname -23.0000 : spzn 92860.67375 : spmass 0.417029E-06 2.4000 46.3855 500 : rminsp, rmt, rmaxsp, nrmt 9 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 F 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 3.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.5646 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.6038 0 T elk-7.2.42/species/PaxHeaders.21776/W.in0000644000000000000000000000013214061636521014321 xustar0030 mtime=1623670097.262100313 30 atime=1623670097.262100313 30 ctime=1623670097.262100313 elk-7.2.42/species/W.in0000644002504400250440000000454214061636521016363 0ustar00dewhurstdewhurst00000000000000 'W' : spsymb 'tungsten' : spname -74.0000 : spzn 335119.8190 : spmass 0.232495E-06 2.8000 47.0748 700 : rminsp, rmt, rmaxsp, nrmt 22 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 5 2 2 3.00000 F 5 2 3 1.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 8 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.1774 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.8962 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.4828 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.1560 0 T elk-7.2.42/species/PaxHeaders.21776/Xe.in0000644000000000000000000000013214061636521014467 xustar0030 mtime=1623670097.264100312 30 atime=1623670097.264100312 30 ctime=1623670097.264100312 elk-7.2.42/species/Xe.in0000644002504400250440000000343214061636521016526 0ustar00dewhurstdewhurst00000000000000 'Xe' : spsymb 'xenon' : spname -54.0000 : spzn 239332.4978 : spmass 0.272166E-06 2.4000 34.6139 600 : rminsp, rmt, rmaxsp, nrmt 17 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 F 4 2 3 6.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.1523 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.7334 0 T elk-7.2.42/species/PaxHeaders.21776/Yb.in0000644000000000000000000000012714061636521014471 xustar0029 mtime=1623670097.26610031 29 atime=1623670097.26610031 29 ctime=1623670097.26610031 elk-7.2.42/species/Yb.in0000644002504400250440000000422614061636521016526 0ustar00dewhurstdewhurst00000000000000 'Yb' : spsymb 'ytterbium' : spname -70.0000 : spzn 315432.6234 : spmass 0.239046E-06 2.8000 49.1291 700 : rminsp, rmt, rmaxsp, nrmt 20 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 T 4 1 1 2.00000 T 4 1 2 4.00000 T 4 2 2 4.00000 T 4 2 3 6.00000 T 4 3 3 6.00000 F 4 3 4 8.00000 F 5 0 1 2.00000 F 5 1 1 2.00000 F 5 1 2 4.00000 F 6 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 7 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 3 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.0982 0 T 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0212 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.9503 0 T elk-7.2.42/species/PaxHeaders.21776/Y.in0000644000000000000000000000013214061636521014323 xustar0030 mtime=1623670097.268100308 30 atime=1623670097.267100309 30 ctime=1623670097.268100308 elk-7.2.42/species/Y.in0000644002504400250440000000330614061636521016362 0ustar00dewhurstdewhurst00000000000000 'Y' : spsymb 'yttrium' : spname -39.0000 : spzn 162065.4502 : spmass 0.320256E-06 2.6000 53.7982 600 : rminsp, rmt, rmaxsp, nrmt 14 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 1.00000 F 5 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.7619 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.0082 0 T elk-7.2.42/species/PaxHeaders.21776/Zn.in0000644000000000000000000000013214061636521014502 xustar0030 mtime=1623670097.269100307 30 atime=1623670097.269100307 30 ctime=1623670097.269100307 elk-7.2.42/species/Zn.in0000644002504400250440000000312614061636521016541 0ustar00dewhurstdewhurst00000000000000 'Zn' : spsymb 'zinc' : spname -30.0000 : spzn 119233.3129 : spmass 0.365148E-06 2.4000 39.2020 500 : rminsp, rmt, rmaxsp, nrmt 10 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 F 3 1 2 4.00000 F 3 2 2 4.00000 F 3 2 3 6.00000 F 4 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -3.0221 0 T 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -0.3778 0 T elk-7.2.42/species/PaxHeaders.21776/Zr.in0000644000000000000000000000013214061636521014506 xustar0030 mtime=1623670097.271100305 30 atime=1623670097.271100305 30 ctime=1623670097.271100305 elk-7.2.42/species/Zr.in0000644002504400250440000000330614061636521016545 0ustar00dewhurstdewhurst00000000000000 'Zr' : spsymb 'zirconium' : spname -40.0000 : spzn 166291.1791 : spmass 0.316228E-06 2.6000 48.4669 600 : rminsp, rmt, rmaxsp, nrmt 14 : nstsp 1 0 1 2.00000 T : nsp, lsp, ksp, occsp, spcore 2 0 1 2.00000 T 2 1 1 2.00000 T 2 1 2 4.00000 T 3 0 1 2.00000 T 3 1 1 2.00000 T 3 1 2 4.00000 T 3 2 2 4.00000 T 3 2 3 6.00000 T 4 0 1 2.00000 F 4 1 1 2.00000 F 4 1 2 4.00000 F 4 2 2 2.00000 F 5 0 1 2.00000 F 1 : apword 0.1500 0 F : apwe0, apwdm, apwve 0 : nlx 5 : nlorb 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 2 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve 0.1500 1 F 0 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -2.0002 0 T 1 2 : lorbl, lorbord 0.1500 0 F : lorbe0, lorbdm, lorbve -1.1708 0 T elk-7.2.42/PaxHeaders.21776/utilities0000644000000000000000000000013214061636521014066 xustar0030 mtime=1623670097.289100288 30 atime=1623670097.277100299 30 ctime=1623670097.289100288 elk-7.2.42/utilities/0000755002504400250440000000000014061636521016200 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/PaxHeaders.21776/elk-bands0000644000000000000000000000013214061636521015726 xustar0030 mtime=1623670097.280100297 30 atime=1623670097.279100298 30 ctime=1623670097.280100297 elk-7.2.42/utilities/elk-bands/0000755002504400250440000000000014061636521020040 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/elk-bands/PaxHeaders.21776/elk-bands0000644000000000000000000000013214061636521017566 xustar0030 mtime=1623670097.281100296 30 atime=1623670097.280100297 30 ctime=1623670097.281100296 elk-7.2.42/utilities/elk-bands/elk-bands0000755002504400250440000001572614061636521021641 0ustar00dewhurstdewhurst00000000000000#!/bin/bash # # Copyright (C) 2010 M. G. Blaber # This file is distributed under the terms of the GNU General Public License. # See the file COPYING for license details. # # http://elk.sourceforge.net/ # # Marty's plotting program for elk band structures. # Changelog: # v0.2 - Fixed a bug regarding white space noticed by Kay Dewhurst # # Description: # -Plots the bands from elk, including labels that you have specified in your # elk.in file (see below for details) # -Notes on the necessary files and programs and Usage are given below. # -I recommend adding this script to your "path", a guide is given in the # Installation Notes below. # # A sample plot1d block is given below: # ------------- # plot1d # 3 100 : nvp1d, npp1d # 0.0 0.0 1.0 !G : vlvp1d # 0.5 0.5 1.0 !X # 0.0 0.0 0.0 !G # -------------- # #Some user defineable plot parameters (You may always change the parameters of #individual plots by editing elk-bands.gps) plot_width="15 cm" #For publication, change to 8.5 cm plot_height="10 cm" #For publication, change to 6 - 10 cm plot_font="Times, 18" #For publication, change to 12 border_linewidth="2" band_linewidth="1" #This number is scaled by border_linewidth internally by gnuplot # # # REQUIRED FILES: # elk.in BAND.OUT BANDLINES.OUT # # REQUIRED PROGRAMS: # awk gnuplot # # USAGE: # elk-bands # OR (energies in eV) # elk-bands [min_energy] [max_energy] # eg: elk-bands -5 10 # # INSTALLATION NOTES: # HOW TO ADD elk-bands TO YOUR PATH # -Make a new directory in your home folder named bin: # mkdir /home/username/bin # -Add this new directory to your path by editing your bashrc file, # /home/username/.bashrc # and add the following line: # export PATH=$PATH:/home/username/bin # To update the path variable for the terminal you are currently in, type: # source ~/.bashrc # ########### me="elk-bands" version="0.2" input_file=elk.in band_file=BAND.OUT bandlines_file=BANDLINES.OUT #Output: gps_file=$me.gps eps_file=$me.eps echo "- Welcome to $me version $version" echo "- Use ~ in front of any character in the labels list to make that letter greek!" echo "---------------------------------------------" ######### # Check Dependencies # Error Message dependencies_usage="ERROR - Programs required by $me not found. $me requires the following programs: - awk - gnuplot Your local package manager should have them, alternatively you can grab them from: http://www.gnu.org/software/gawk/ http://www.gnuplot.info/ " # awk check check=$(which awk 2>&1) if [ ! $? -eq 0 ]; then echo "Ahhhhhhhhhhhhhh - No awk found" echo "$dependencies_usage" exit 1 fi # gnuplot check check=$(which gnuplot 2>&1) if [ ! $? -eq 0 ]; then echo "Ahhhhhhhhhhhhhh - No gnuplot found" echo "$dependencies_usage" exit 1 fi echo "- Found awk and gnuplot" ######### # Check for input files # Error message inputfiles_usage="ERROR - Some file required by $me not found. $me requires the following files: $input_file $band_file $bandlines_file" # Check for f in $input_file $band_file $bandlines_file; do if [ ! -f $f ]; then echo "Ooops, can't find $f" echo "$inputfiles_usage" exit 1 fi done echo "- Found $input_file $band_file $bandlines_file" ######### # Check Parameters # Error message usage="Welcome to $me $version Usage (energies in eV): $me [min energy] [max energy] eg: elk-bands -5.5 10.0 " # Check if [ $1 ]; then if [ $2 ]; then min_energy=$1 max_energy=$2 else echo "ERROR - Please provide both energies" exit 1 fi else #no parameters provided min_energy="-15" max_energy="15" fi ######### # Get the labels and check them # Error for when someone forgets the labels in elk.in label_usage="ERROR - Labels not found. All tildes ~ convert the following letter to a greek symbol. $me requires the plot1d block in $input_file to look like: ------------------------ plot1d 7 400 : nvp1d, npp1d 0.0 0.0 1.0 ~G : vlvp1d 0.5 0.5 1.0 X 0.0 0.0 0.0 ~G 0.5 0.0 0.0 L 0.5 0.5 0.0 Merry Christmas 0.5 0.25 -0.25 W 0.5 0.0 0.0 L ------------------------- ERROR - Labels not defined correctly - scroll back up to see what went wrong " # Read the labels from elk.in and put them in a file label_names.tmp cat $input_file | awk '{ if($1=="plot1d"){go=1} if(go==2){number_of_labels=$1} if(go>number_of_labels+2){go=0} if(go>2){ for (i = 4; i <= NF; i++){printf("%s ", $i)} printf("\n") } if(go>0){go=go+1} }' | sed 's/://g' | sed 's/vlvp1d//g' | sed 's/ / /g' > label_names.tmp #Check the labels. no_label_line=$(cat label_names.tmp | awk '{if($1==""){print NR; exit}}') if [ $no_label_line ]; then echo "ERROR - No label found on line $((no_label_line+2)) of plot1d block" echo "$label_usage" exit 1 fi # Get the positions of the labels from bandlines file cat $bandlines_file | awk 'BEGIN{last=-1}{ if($1!=""){ if($1!=last){last=$1;print $1} } }' > label_positions.tmp # Match up the labels with their positions and remove the exclamation marks if they exist paste label_positions.tmp label_names.tmp | sed 's/!//' > labels.tmp rm label_names.tmp label_positions.tmp #this thing joins all the labels together into a format gnuplot can understand. labels=$(cat labels.tmp | awk '{ for (i = 2; i <= NF; i++){if (i==2){label=$i}else{label=label " " $i}} printf("%s%s%s %f, ",q,label,q,$1) label="" }' q=\" ) #Replace all instances of capital G with the gamma symbol labels=$(echo $labels | sed 's/~\(.\)/\{\/Symbol \1\}/g' ) if [[ $labels == *"{/Symbol }"* ]] then echo "WARNING -> There is a space after a \"~\" in the labels block... get rid of it."; fi echo "- Found labels" ######### # Write elk-bands.gps, the file which gnuplot uses. #this is a neat trick to spew out a file without having to use quotes. the end of the file is labeled _EOF cat > bands.tmp << _EOF set terminal postscript enhanced eps colour lw $border_linewidth dashlength 2 font "$plot_font" size $plot_width, $plot_height set style data lines set output "$eps_file" set ylabel "Energy (eV)" set grid noytics xtics #this puts vertical lines on the band structure according to xtics below set xtics( $labels ) set mytics 5 #minor y tics, the number of little tics in between labeled tics. unset key #change this to "set key top left" or something if you want the key in the plot #if you use "set key" then the title "Bands" will appear in the key plot [:][$min_energy:$max_energy] \ "BAND.OUT" using 1:((\$2)*27.21138386) title "Bands" lw $band_linewidth lt 1 lc rgb "black",\ 0.0 lt -1 notitle _EOF #this thing just removes the final comma from the end of the "set xtics ( )" line. cat bands.tmp | sed 's/, )/)/' > $gps_file rm bands.tmp rm labels.tmp echo "- Plotting file written to $gps_file" gnuplot $gps_file if [ ! $? -eq 0 ]; then echo "Unfortunately, some sort of unforseen error has occurred, try posting a message on the forum at http://sourceforge.net/projects/elk/forums/ " else echo "- Band plot is ready in $eps_file" fi echo "" exit 0 elk-7.2.42/utilities/PaxHeaders.21776/elk-optics0000644000000000000000000000013214061636521016140 xustar0030 mtime=1623670097.282100295 30 atime=1623670097.281100296 30 ctime=1623670097.282100295 elk-7.2.42/utilities/elk-optics/0000755002504400250440000000000014061636521020252 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/elk-optics/PaxHeaders.21776/elk-optics.py0000644000000000000000000000013214061636521020641 xustar0030 mtime=1623670097.283100294 30 atime=1623670097.283100294 30 ctime=1623670097.283100294 elk-7.2.42/utilities/elk-optics/elk-optics.py0000644002504400250440000000726514061636521022710 0ustar00dewhurstdewhurst00000000000000#!/usr/bin/python # # Copyright (C) 2015 by Markus Meinert # This file is distributed under the terms of the GNU General Public License. # See the file COPYING for license details. # # http://elk.sourceforge.net/ # # elk-optics.py v1.0 # # This script comes with no warranty. Check the results # carefully for production use. # # Description: # Reads all EPSILON_ii.OUT files in the present directory # and computes optical quantities. Diagonal components only. # # Input: EPSILON_ii.OUT # # Output: energy (eV), Re(eps), Im(eps), # refractive index Re(n), Im(n), # normal incidence reflectivity R, # absorption coefficient alpha (m^-1), # EELS -1/Im(eps) # # Output is written to optics_ii.out # import sys, os, math, cmath # check which files of type EPSILON_ii.OUT exist and # return a list of present components def get_components(): possible = ['11', '22', '33'] present = [] for p in possible: testfilename = 'EPSILON_%s.OUT' % p if os.path.isfile(testfilename): present.append(p) return present # read the EPSILON_ii.OUT file # return lists of energies and complex eps def read_epsilon(filename): handle = open(filename, 'r') content = handle.readlines() handle.close() data = [[],[]] for line in content: l = line.split() if l == []: continue data[0].append(float(l[0])) data[1].append(float(l[1])) # energies are read from first column of the first data block # real part of epsilon is read from the second column of the first data block (first half of the data) # imaginary part of epsilon is read from the second column of the second data block (second half of the data) datalength = int( len( data[0] ) / 2.) energies = data[0][0:datalength] eps_cplx = [complex(a,b) for a,b in zip(data[1][0:datalength], data[1][datalength:])] return energies, eps_cplx # compute optical properties from energies and complex epsilon def write_optical_properties(energies, eps_cplx, component): # complex refractive index N and extinction coefficient kappa # complex refractive index: N = n_r + ik N = [cmath.sqrt(x1) for x1 in eps_cplx] k = [cmath.sqrt(x1).imag for x1 in eps_cplx] # normal incidence reflectivity from complex refractive index R = [abs((1.-x1)/(1.+x1))**2 for x1 in N] # absorption coefficient in SI units from extinction coefficient and energy Ha_to_J = 27.21138602 * 1.6021766208E-19 hbar = 6.626070040E-34 / (2 * math.pi) c = 2.99792458E8 Ha_to_omegaSI = Ha_to_J / hbar alpha = [2 * (x1 * Ha_to_omegaSI) / c * x2 for x1, x2 in zip(energies, k)] # format data and write to file optics_ii.out data = zip(energies, eps_cplx, N, R, alpha) output = '%14s %14s %14s %14s %14s %14s %14s %14s\n' % ('# energy (eV)', 'Re(eps)', 'Im(eps)', 'Re(n)', 'Im(n)', 'R', 'alpha (m^-1)', 'EELS') for line in data: output += '%14.6e %14.6e %14.6e %14.6e %14.6e %14.6e %14.6e %14.6e\n' % (line[0]*27.21138602, line[1].real, line[1].imag, line[2].real, line[2].imag, line[3], line[4], -(1/line[1]).imag) outfilename = 'optics_%s.out' % component outfile = open(outfilename, 'w') outfile.write(output) outfile.close() # main loop over diagonal components of the epsilon tensor print('===================') print('| elk-optics v1.0 |') print('===================') print print('Looking for EPSILON_ii.OUT files...') components = get_components() if components == []: sys.exit('No EPSILON_ii.OUT files found. Exit.\n') else: print('Files found:') for c in components: print(' EPSILON_%s.OUT') % c print for c in components: filename = 'EPSILON_%s.OUT' % c print('Working on %s ...') % filename energies, eps_cplx = read_epsilon(filename) write_optical_properties(energies, eps_cplx, c) print('Optical properties written to optics_%s.out') % c print elk-7.2.42/utilities/PaxHeaders.21776/wien2k-elk0000644000000000000000000000013214061636521016036 xustar0030 mtime=1623670097.286100291 30 atime=1623670097.284100293 30 ctime=1623670097.286100291 elk-7.2.42/utilities/wien2k-elk/0000755002504400250440000000000014061636521020150 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/wien2k-elk/PaxHeaders.21776/se.pl0000644000000000000000000000013214061636521017057 xustar0030 mtime=1623670097.286100291 30 atime=1623670097.286100291 30 ctime=1623670097.286100291 elk-7.2.42/utilities/wien2k-elk/se.pl0000755002504400250440000000221614061636521021120 0ustar00dewhurstdewhurst00000000000000#!/usr/bin/perl if (@ARGV<1) { print "Script for conversion Wien2K struct files to spacegroup.in files used in exciting/elk\n"; print "The only argument is the name of the struct file, spacegroup.in is written to standard output\n"; print "Use at your own risk. \n Jerzy Goraus 2009\n"; exit; }; open(STR,$ARGV[0]) or die "can't open ",$ARGV[0]," file\n "; @STRUCT=; ($TMP,$GROUP)=split(/\_/,$STRUCT[1]); ($GROUP,$TMP)=split(/\n/,$GROUP); ($GROUP,$TMP)=split(/\ /,$GROUP); ($TMP,$LA,$LB,$LC,$AA,$AB,$AG)=split(/\s+/,$STRUCT[3]); $ATCNT=0; print " '",$GROUP,"\'\n ",$LA," ",$LB," ",$LC,"\n ",$AA," ",$AB," ",$AG,"\n 1 1 1\n .false.\n "; foreach (@STRUCT) { $BUF=$_; if (/ATOM/) { ($TMP,$X,$Y,$Z)=split(/=/,$BUF); ($X,$TMP)=split(/\ /,$X); ($Y,$TMP)=split(/\ /,$Y); $ATCNT+=1; # print "\n",$X, " ", $Y," ", $Z; $RESULT = sprintf(" %lf %lf %lf\n", $X,$Y,$Z); }; if (/NPT/) { $ATL=substr($_,0,2); $_=$ATL; s/\s//g; $ATL=$_; # print $ATL; $TAB{$ATL}=$TAB{$ATL}.$RESULT; $TABN{$ATL}+=1; }; }; $NUM=keys(TAB); print " ",$NUM ,"\n"; foreach (keys(TAB)) { print " '",$_,"' '",$_,".in'\n"; print " ",$TABN{$_},"\n"; print $TAB{$_}; } elk-7.2.42/utilities/PaxHeaders.21776/blocks2columns0000644000000000000000000000013114061636521017025 xustar0030 mtime=1623670097.288100289 29 atime=1623670097.28710029 30 ctime=1623670097.288100289 elk-7.2.42/utilities/blocks2columns/0000755002504400250440000000000014061636521021140 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/blocks2columns/PaxHeaders.21776/blocks2columns.py0000644000000000000000000000013214061636521022415 xustar0030 mtime=1623670097.288100289 30 atime=1623670097.288100289 30 ctime=1623670097.288100289 elk-7.2.42/utilities/blocks2columns/blocks2columns.py0000644002504400250440000000400714061636521024453 0ustar00dewhurstdewhurst00000000000000#!/usr/bin/python # elk blocks to columns by Markus Meinert # update January 2015, fixed a bug related to blank lines # Usage: blocks2columns.py PDOS_S01_A0001.OUT # blocks2columns.py TDOS.OUT # blocks2columns.py BAND.OUT import sys, os print("\n =========================\n | elk blocks to columns |\n =========================\n") # Read the file. filename = sys.argv[1] f = open(filename, 'r') data = f.readlines() f.close() # Analyze the file. # Number of lines. nlines = len(data) print(" Number of lines: %i " % nlines) # Count blank lines to determine number of datasets. ndatasets = 0 for line in data: if line.split() == []: ndatasets += 1 # If last line is not blank, add one to ndatasets and nlines. if data[-1].split() != []: ndatasets += 1 nlines += 1 print(" Number of datasets: %i " % ndatasets) # Number of lines per block is: nlinesperblock = (nlines - ndatasets)/ndatasets print(" Number of lines per block: %i " % nlinesperblock) # Collect the datasets into a list of lists with a double-loop over datasets and lines. datasets = [] for i in range(0,ndatasets): currentset = [] for j in range(i*nlinesperblock + i, (i*nlinesperblock + i) + nlinesperblock): currentset.append(data[j].split()) # Split each line by empty spaces. datasets.append(currentset) output = "" # Generate a head line output += "#%21s" % "x-axis" for i in range(1,ndatasets+1): blockname = "block_%i" % i output += "%22s" % blockname output += "\n" # Merge the datasets line-wise. for i in range(0,nlinesperblock): # x-axis as first column, read from first block line = '%22.13e' % (float(datasets[0][i][0])) # Append the block values as columns. for j in range(0, ndatasets): line += '%22.13e' % (float(datasets[j][i][1])) line += "\n" output += line filename = filename + ".columns" if os.path.exists(filename): print("\n Output file %s exists. Exit.\n" % filename) else: f = open(filename, 'w') f.write(output) f.close() print("\n Output filename: %s\n Done.\n" % filename) elk-7.2.42/utilities/PaxHeaders.21776/xps0000644000000000000000000000013214061636521014700 xustar0030 mtime=1623670097.294100284 30 atime=1623670097.289100288 30 ctime=1623670097.294100284 elk-7.2.42/utilities/xps/0000755002504400250440000000000014061636521017012 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/utilities/xps/PaxHeaders.21776/CROSEC0000644000000000000000000000013214061636521015656 xustar0030 mtime=1623670097.291100287 30 atime=1623670097.291100287 30 ctime=1623670097.291100287 elk-7.2.42/utilities/xps/CROSEC0000644002504400250440000000307614061636521017721 0ustar00dewhurstdewhurst00000000000000Crossection data for elements, E=1486eV ATOM=Xx 1.00E-0, 1.00E-0, 1.00E-0, 1.0 ATOM=Es 0.00E-0, 0.00E-0, 0.00E-0, 0.0 ATOM=Ag 0.29E-3, 0.77E-3, 0.21E-1, 0.0 ATOM=Al 0.78E-3, 0.59E-4, 0.53E-4, 0.0 ATOM=Bi 0.13E-2, 0.13E-2, 0.72E-3, 0.3632 ATOM=Ti 0.50E-3, 0.74E-3, 0.17E-3, 0.0 ATOM=V 0.51E-3, 0.74E-3, 0.42E-3, 0.0 ATOM=Cr 0.18E-3, 0.74E-3, 0.88E-3, 0.0 ATOM=Mn 0.58E-3, 0.74E-3, 0.14E-2, 0.0 ATOM=Fe 0.70E-3, 0.74E-3, 0.22E-2, 0.0 ATOM=Co 0.71E-3, 0.74E-3, 0.37E-2, 0.0 ATOM=Ni 0.83E-3, 0.74E-3, 0.59E-2, 0.0 ATOM=Cu 0.27E-3, 0.74E-3, 0.12E-1, 0.0 ATOM=La 0.29E-3, 0.21E-3, 0.76E-3, 0.22E-2 ATOM=Ce 0.31E-3, 0.21E-3, 0.94E-3, 0.22E-2 ATOM=Gd 0.43E-3, 0.21E-3, 0.94E-3, 0.21E-1 ATOM=Tb 0.36E-3, 0.21E-3, 0.94E-3, 0.29E-1 ATOM=Dy 0.31E-3, 0.21E-3, 0.94E-3, 0.37E-1 ATOM=Ho 0.27E-3, 0.21E-3, 0.94E-3, 0.46E-1 ATOM=Ge 0.15E-2, 0.75E-3, 0.19E-1, 0.0 ATOM=Ga 0.12E-2, 0.74E-3, 0.45E-3, 0.0 ATOM=In 0.10E-2, 0.77E-3, 0.94E-3, 0.0 ATOM=Pb 0.11E-2, 0.61E-3, 0.72E-3, 0.3330 ATOM=Pd 0.29E-3, 0.77E-3, 0.16E-1, 0.0 ATOM=Sb 0.14E-2, 0.16E-2, 0.76E-3, 0.0 ATOM=Si 0.10E-2, 0.17E-3, 0.53E-4, 0.0 ATOM=Sn 0.12E-2, 0.77E-3, 0.76E-3, 0.0 ATOM=Y 0.48E-3, 0.77E-3, 0.45E-3, 0.0 ATOM=Bi 0.13E-2, 0.14E-2, 0.43E-1, 0.3632 ATOM=Rh 0.23E-3, 0.77e-3, 0.12e-1, 0 ATOM=Ir 0.58e-3, 0.21e-3, 0.16e-1, 0 ATOM=Eu 0.35e-3, 0.11e-1, 0.94e-3, 0.17e-1 elk-7.2.42/utilities/xps/PaxHeaders.21776/conv.c0000644000000000000000000000013214061636521016066 xustar0030 mtime=1623670097.293100285 30 atime=1623670097.293100285 30 ctime=1623670097.293100285 elk-7.2.42/utilities/xps/conv.c0000644002504400250440000000335714061636521020133 0ustar00dewhurstdewhurst00000000000000#include #include #include #include #include #define N 100000 // Convolution with Lorentz and Fermi function, // compile with: gcc conv.c -oconv -lm // modify the N above if needed. // Use at your own risk. // Jerzy Goraus (2003) typedef struct { double x,y; } pT; pT p1[N],p2[N]; double a_lor,Ef; int cmp1(pT *t1, pT *t2) { double t=t1->x-t2->x; return (int)(2*t/fabs(t)); } inline double lor(double x) { return (1/(1+x*x*a_lor)); } inline double fermi(double x) { return 1/(1+exp((x-Ef)/0.02569)); } main (int argc, char **argv) { int m=4,i1; double *tabl=malloc(1600); FILE *f; double dE=0.4,Ef=0,DE=0.2; char *buffer=malloc(256); if (!((argc==2)||(argc==4))) { printf("\nconv: convolution with Lorentz and Fermi function\n\ conv [{ FWHM Ef }]\nfilename is xy ascii data file,\ FWHM - Full Width at Half Maximum default : 0.4eV \n \ Ef - Fermi Energy default : 0 eV n\n");exit(0); } if (argc==4) { sscanf(argv[2],"%lf",&dE); sscanf(argv[3],"%lf",&Ef); if (dE>20) {printf("%i value too high\n",m);exit(1);} }; a_lor=4/(dE*dE); srand (time (NULL)); double y,sum; int i=0,k,n1=0,n2=0; f = fopen (argv[1], "r"); if (f==NULL) { printf("can't open for reading %s\n",argv[1]); exit(1);} while (!feof(f)) { fgets(buffer,255,f); sscanf(buffer,"%lf %lf",&(p1[n1].x),&(p1[n1].y)); n1++; assert(n1; close(STR); $atcnt=0; print "\nElements : "; for ($i=0; $i<$#str; $i++) { $_=$str[$i]; if (/atoms\n/) { $i++; $_=$str[$i]; s/\s//g; ($ATCNT,$TMP)=split(/:/); } if (/spinpol/) { $i++; $_=$str[$i]; if (/true/) { $SPOL=1;} } if (/in\'/) { ($ELNAME,$TMP)=split(/\./); $_=$ELNAME; s/\'//; $ELNAME=$_; #print "\n",$ELNAME; $_=$str[$i+1]; s/\s//g; ($MULT,$TMP)=split(/:/); push @atoms, $ELNAME; print $ELNAME," (",$MULT,") "; $mtab{$ELNAME}=$MULT; $idxtab{$ELNAME}=$atidx; $atidx++; #print "|",$MULT,"|"; } } if ($SPOL ) { print "\nMagnetic case\n"; } else { print "\nNon-magnetic case\n";} #print $ATCNT; open(CRS,"./CROSEC") or die "Can't open CROSEC"; # Here enter the position of CROSEC print "\nRead CROSEC"; @crs=; close(CRS); foreach ($i=1 ; $i<@crs; $i++) { $_=$crs[$i]; if (/ATOM=/) { $A=substr($_,5); $A=~s/\s//g; } else { $CR{$A}=$_; } } print "\n"; $NDOS=0; foreach (@atoms) { $ELNAME=$_; for ($i=1; $i<=$mtab{$_}; $i++) { $fname=sprintf("PDOS_S%02d_A%04d.OUT", $idxtab{$_}, $i); print "\nRead : ",$fname ; open(pdos, $fname) or die "Can't open $fname\n"; @pdos=; close(pdos); if ($NDOS==0) { foreach (@pdos) { if (/\d/) {$NDOS++}; } $NDOS/=32; $NDOS++; #- init to 0 for ($j=0; $j<$NDOS-1; $j++) { $atw_su[$j]=0; $atw_pu[$j]=0; $atw_du[$j]=0; $atw_fu[$j]=0; $atw_sd[$j]=0; $atw_pd[$j]=0; $atw_dd[$j]=0; $atw_fd[$j]=0; $att_su[$j]=0; $att_pu[$j]=0; $att_du[$j]=0; $att_fu[$j]=0; $att_sd[$j]=0; $att_pd[$j]=0; $att_dd[$j]=0; $att_fd[$j]=0; $attc_su[$j]=0; $attc_pu[$j]=0; $attc_du[$j]=0; $attc_fu[$j]=0; $attc_sd[$j]=0; $attc_pd[$j]=0; $attc_dd[$j]=0; $attc_fd[$j]=0; } } $atfout=sprintf("_%s_%04d.dat",$ELNAME,$i); open(atpart, ">".$atfout) or die "Can't open output file $atfout\n"; if ($SPOL ) { print atpart "# spin up - s,p,d,f and spin down s,p,d,f\n"; } else { print atpart "# s, p, d, f\n";} for ($q=0; $q<$#pdos; $q++) { ($TMP,$pdosx[$q],$pdosy[$q])=split(/\s+/,$pdos[$q]); $pdosx[$q]*=$FACTOR; $pdosy[$q]/=$FACTOR; } for ($j=0; $j<$NDOS-1; $j++) { $at_su[$j]=$pdosy[$j]; if ($SPOL ) {$at_sd[$j]=$pdosy[$j+16*$NDOS];} $at_pu[$j]=0; $at_pd[$j]=0; $at_du[$j]=0; $at_dd[$j]=0; $at_fu[$j]=0; $at_fd[$j]=0; for ($q=1; $q<4; $q++) { $at_pu[$j]+=$pdosy[$j+$q*$NDOS]; if ($SPOL ) {$at_pd[$j]+=$pdosy[$j+16*$NDOS+$q*$NDOS];} } for ($q=4; $q<9; $q++) { $at_du[$j]+=$pdosy[$j+$q*$NDOS]; if ($SPOL ) {$at_dd[$j]+=$pdosy[$j+16*$NDOS+$q*$NDOS];} } for ($q=9; $q<16; $q++) { $at_fu[$j]+=$pdosy[$j+$q*$NDOS]; if ($SPOL ) {$at_fd[$j]+=$pdosy[$j+16*$NDOS+$q*$NDOS];} } print atpart $pdosx[$j], " ",$at_su[$j]," ",$at_pu[$j]," ",$at_du[$j]," ",$at_fu[$j]; if ($SPOL ) { print atpart " ",$at_sd[$j]," ",$at_pd[$j]," ",$at_dd[$j]," ",$at_fd[$j],"\n";} else {print atpart "\n";} $atw_su[$j]+=$at_su[$j]; $atw_pu[$j]+=$at_pu[$j]; $atw_du[$j]+=$at_du[$j]; $atw_fu[$j]+=$at_fu[$j]; $atw_sd[$j]+=$at_sd[$j]; $atw_pd[$j]+=$at_pd[$j]; $atw_dd[$j]+=$at_dd[$j]; $atw_fd[$j]+=$at_fd[$j]; } close atpart; print "\nWritten ",$atfout; #-- $gatfout=sprintf("_g_%s_%04d",$ELNAME,$i); open(GNU,">".$gatfout.".gnu") or die "can't open $gatfout\n"; print GNU $TERM,"\n",$OPT,"\n"; print GNU "set output \"$gatfout.$SUF\"\n"; print GNU "set xlabel \"Eb [eV]\"\n"; print GNU "set ylabel \"DOS [st/eV f.u.]\"\n"; print GNU "set title \"$ELNAME - $i\"\n"; print GNU "plot \"$atfout\" using 1:2 smooth uniq t 's' "; printf GNU ", \"$atfout\" using 1:3 smooth uniq t \'p\' "; printf GNU ", \"$atfout\" using 1:4 smooth uniq t \'d\' "; printf GNU ", \"$atfout\" using 1:5 smooth uniq t \'f\' "; if ($SPOL ) { print GNU ", \"$atfout\" using 1:6 smooth uniq t \'s\' "; print GNU ", \"$atfout\" using 1:7 smooth uniq t \'p\' "; print GNU ", \"$atfout\" using 1:8 smooth uniq t \'d\' "; print GNU ", \"$atfout\" using 1:9 smooth uniq t \'f\' "; } close(GNU); print "\nWritten ",$gatfout,".gnu"; #-- } $atwfout=sprintf("_%s.dat",$ELNAME); #at - atomic DOS, atw - given specie dos, att - total dos , attc - total dos with crossection open(atwpart, ">".$atwfout) or die "Can't open output file $atwfout \n"; if ($SPOL ) { print atwpart "# spin up - s,p,d,f and spin down s,p,d,f\n"; } else { print atwpart "# s, p, d, f\n";} if ($CR{$ELNAME} ne "") { ($Ks,$Kp,$Kd,$Kf)=split(/\,/,$CR{$ELNAME}); } else {$Ks=$Kp=$Kd=$Kf=0; print "\n----------------- No $ELNAME in CROSEC, Using 0 as crossection\n";}; for ($j=0; $j<$NDOS-1; $j++) { $att_su[$j]+=$atw_su[$j]; $att_pu[$j]+=$atw_pu[$j]; $att_du[$j]+=$atw_du[$j]; $att_fu[$j]+=$atw_fu[$j]; $att_sd[$j]+=$atw_sd[$j]; $att_pd[$j]+=$atw_pd[$j]; $att_dd[$j]+=$atw_dd[$j]; $att_fd[$j]+=$atw_fd[$j]; $attc_su[$j]+=$atw_su[$j]*$Ks; $attc_pu[$j]+=$atw_pu[$j]*$Kp; $attc_du[$j]+=$atw_du[$j]*$Kd; $attc_fu[$j]+=$atw_fu[$j]*$Kf; $attc_sd[$j]+=$atw_sd[$j]*$Ks; $attc_pd[$j]+=$atw_pd[$j]*$Kp; $attc_dd[$j]+=$atw_dd[$j]*$Kd; $attc_fd[$j]+=$atw_fd[$j]*$Kf; print atwpart $pdosx[$j], " ",$atw_su[$j]," ",$atw_pu[$j]," ",$atw_du[$j]," ",$atw_fu[$j]; if ($SPOL ) { print atwpart " ",$atw_sd[$j]," ",$atw_pd[$j]," ",$atw_dd[$j]," ",$atw_fd[$j],"\n";} else {print atwpart "\n";} } close atwpart; #- $gatwfout=sprintf("_g_%s",$ELNAME); open(GNU,">".$gatwfout.".gnu") or die "can't open $gatwfout\n"; print GNU $TERM,"\n",$OPT,"\n"; print GNU "set output \"$gatwfout.$SUF\"\n"; print GNU "set xlabel \"Eb [eV]\"\n"; print GNU "set ylabel \"DOS [st/eV f.u.]\"\n"; print GNU "set title \"$ELNAME \"\n"; print GNU "plot \"$atwfout\" using 1:2 smooth uniq t 's' "; printf GNU ", \"$atwfout\" using 1:3 smooth uniq t \'p\' "; printf GNU ", \"$atwfout\" using 1:4 smooth uniq t \'d\' "; printf GNU ", \"$atwfout\" using 1:5 smooth uniq t \'f\' "; if ($SPOL ) { print GNU ", \"$atwfout\" using 1:6 smooth uniq t \'s\' "; print GNU ", \"$atwfout\" using 1:7 smooth uniq t \'p\' "; print GNU ", \"$atwfout\" using 1:8 smooth uniq t \'d\' "; print GNU ", \"$atwfout\" using 1:9 smooth uniq t \'f\' "; } close(GNU); print "\nWritten ",$gatwfout,".gnu"; #- print "\nWritten ",$atwfout; for ($j=0; $j<$NDOS-1; $j++) { $atw_su[$j]=0; $atw_pu[$j]=0; $atw_du[$j]=0; $atw_fu[$j]=0; $atw_sd[$j]=0; $atw_pd[$j]=0; $atw_dd[$j]=0; $atw_fd[$j]=0; } } open(att, ">_TDOS.dat") or die "Can't open output file TDOS.dat \n"; open(attc, ">_cTDOS.dat") or die "Can't open output file cTDOS.dat \n"; for ($j=0; $j<$NDOS-1; $j++) { $u=$att_su[$j]+$att_pu[$j]+$att_du[$j]+$att_fu[$j]; $d=$att_sd[$j]+$att_pd[$j]+$att_dd[$j]+$att_fd[$j]; $uc=$attc_su[$j]+$attc_pu[$j]+$attc_du[$j]+$attc_fu[$j]; $dc=$attc_sd[$j]+$attc_pd[$j]+$attc_dd[$j]+$attc_fd[$j]; if ($SPOL ) { print att $pdosx[$j], " ",$u-$d," ",$u," ",$d,"\n"; print attc $pdosx[$j], " ",$uc-$dc," ",$uc," ",$dc,"\n"; } else { print att $pdosx[$j], " ",$u,"\n"; print attc $pdosx[$j], " ",$u,"\n"; } } close att; print "\nWritten _TDOS.dat"; close attc; print "\nWritten _cTDOS.dat"; print "\n"; elk-7.2.42/PaxHeaders.21776/COPYING0000644000000000000000000000013214061636521013163 xustar0030 mtime=1623670097.303100275 30 atime=1623670097.302100276 30 ctime=1623670097.303100275 elk-7.2.42/COPYING0000644002504400250440000012356414061636521015233 0ustar00dewhurstdewhurst00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . -------------------------------------------------------------------------------- GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. elk-7.2.42/PaxHeaders.21776/README0000644000000000000000000000013214061636521013010 xustar0030 mtime=1623670097.310100269 30 atime=1623670097.310100269 30 ctime=1623670097.310100269 elk-7.2.42/README0000644002504400250440000000377014061636521015054 0ustar00dewhurstdewhurst00000000000000 +------------------------------+ | The Elk FP-LAPW Code | +------------------------------+ This code is distributed under the terms of the GNU General Public License. See the file COPYING for license details. Elk is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Elk is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Elk. If not, see http://www.gnu.org/licenses/. Elk can be compiled by first running "./setup" in this directory followed by "make all". This will compile the main code as well as several auxiliary programs. For optimal performance we strongly recommend that you tune the Fortran compiler options in the file "make.inc" and use machine-optimised BLAS/LAPACK libraries. Setting the OpenMP and MPI options of your compiler will enable Elk to run in parallel mode on multiprocessor systems and clusters. A test suite is available: entering "make test" will check the output of your executable against a standard set. This may take some time to complete. Auxiliary programs include "spacegroup" for producing crystal geometries from spacegroup data, and "eos" for fitting equations of state to energy-volume data. Elk is updated regularly with new features and bug fixes. Features not listed as "experimental" may be used for production but, as with any code, please check the consistency of your results carefully. -------------------------------------------------------------------------------- J. K. Dewhurst, S. Sharma L. Nordstrom, F. Cricchio, O. Granas E. K. U. Gross elk-7.2.42/PaxHeaders.21776/release_notes.txt0000644000000000000000000000013014061636521015517 xustar0029 mtime=1623670097.31910026 30 atime=1623670097.317100262 29 ctime=1623670097.31910026 elk-7.2.42/release_notes.txt0000644002504400250440000013310114061636521017555 0ustar00dewhurstdewhurst00000000000000elk-7.2.42 -added new RAM disk feature which allows Elk to store direct-access files in memory and can dramatically speed up calculations; enable this by setting 'ramdisk' to .true. in elk.in -many optimisations throughout the code -fixed an issue with the scissors operator in optical response code (task=320, 330, 331) for materials which are nearly metallic; thanks to Peter Elliott for pointing this out -further improved the electron-phonon mean-field code -added variables 'scalex', 'scaley' and 'scalez' to the input file; these allow scaling of the unit cell in the Cartesian directions elk-7.1.14 -optimised the second-variational procedure by changing the muffin-tin dot products to single-precision arithmetic; this speeds up this step by at least a factor of two for large systems without losing overall precision or stability -removed 'mixpack', 'phmixpack' and 'mixpacku' routines; Kohn-Sham potentials and fields are now stored in a single array accessed by pointer arrays; this removes the need for packing before and unpacking after mixing -increased speed of direct access reads by removing unnecessary 'close' statements -added an example for the ultra long-range method; see the input file in elk/examples/ultra-long-range/Cr-SDW/ -changed the Wannier90 .win file to improve the wannierisation convergence rate -fixed several bugs in the electron-phonon mean-field method -updated BLAS and LAPACK to version 3.9.0 -minor improvements and bug fixes elk-7.0.12 -Chung-Yu Wang added electron-phonon mean-field theory; this is a new method and still highly experimental -Alyn James wrote an interface for Elk to the DMFT code TRIQS; this interface is maintained in a separate branch of the Elk code: https://github.com/AlynJ/Elk_interface-TRIQS -fixed serious problem with DFT+U for dftu=3 (interpolation of FLL and AFM); this bug was introduced some time ago; we recommend that you check any previous calculations which use dftu=3 -lots of optimisations throughout the code -further improved Ehrenfest dynamics -added the calculation of Born effective charges using Ehrenfest dynamics (task=478); this is intended as a test for the method; Born effective charges are more accurately calculated with the King-Smith and Vanderbilt method (task=208) -Pietro Bonfa found and fixed several problems with the calculation of Mössbauer hyperfine fields -PB also added a new Mössbauer example: antiferromagnetic NiF2; see the examples/Mossbauer/NiF2 directory -Ronald Cohen fixed a bug in iso-volumetric lattice optimisation -RC also discovered a problem with the Wu-Cohen '06 GGA functional which has now been fixed -RC also suggested an efficiency improvement to the non-linear optics code -added tests for non-linear optics -Antonio Sanna helped fix a bug with TD forces -Karel Carva discovered that lmaxo should be at least 7 for phonopy calculations -change the default ntswrite from 10 to 500 time steps in order to reduce I/O -confirmed compatibility with Libxc version 5.1.0 -Further improved the ultra long-range code; the method has now been published: T. Müller, S. Sharma, E. K. U. Gross, and J. K. Dewhurst, Phys. Rev. Lett. 125, 256402 (2020). elk-6.8.4 -Born effective charges using the method of R. D. King-Smith and David Vanderbilt, Phys. Rev. B 47, 1651(R) (1993) are now available; see the directory elk/examples/Born-effective-charge -added Ehrenfest dynamics to the code; see the directory elk/examples/TDDFT-time-evolution/FeCo-Ehrenfest (highly experimental) -upgraded code to be compatible with Libxc version 5; note changes to the make.inc file -the Libxc SCAN functional no longer works with Elk, the regularised version of A. P. Bartók and J. R. Yates, J. Chem. Phys. 150, 161101 (2019) works and should be used instead; see the meta-GGA examples -Aldo Romero and his group interfaced PyProcar to Elk and confirmed that it worked with non-collinear magnetism; PyProcar is a robust, open-source Python library used for pre- and post-processing of the electronic structure data from DFT calculations -implemented a great many optimisations throughout the entire code; more aggressive use of the stack instead of the heap, this may require the user to increase the stack space -added the incomplete basis set (IBS) correction to forces from time-dependent vector potential, A(t) -fixed bug related to lattice optimisation with non-symmorphic symmetries thanks to Andrew Shyichuk and Jack Whaley-Baldwin -added several new tests, including one for the stress tensor -updated physical constants to CODATA 2018 -fixed wavefunction and STM plotting thanks to Andrew Shyichuk -fixed bug in GW band structure code thanks to Antik Sihi -fixed problem with fixed tensor moment calculations -fixed problem in TDDFT real-time restart thanks to Peter Elliott -Peter Elliott and JKD also added Maxwell's equations for the macroscopic induced vector potential -updated and improved the ultra long-range code -forces are now written during a TDDFT run every 'ntsforce' time steps -matrix sizes larger than those addressable with four byte integers can now be used with BSE and MPI -Hartree-Fock information is now written to HF_INFO.OUT rather than INFO.OUT -parallelised the Brillouin zone integration (brzint) which considerably speeds up DOS calculations -modified how the potential of the optimised effective potential (OEP) iteration scheme is initialised -removed obsolete command from ProTex Perl script -added tests for Libxc and MPI; run 'make test-libxc' and 'make test-MPI' respectively, or 'make test-all' to test everything -fixed problem with hybrid functionals introduced a few versions back; also added a test for hybrids elk-6.3.2 -very large speedup of the first-variational Hamiltonian and overlap matrix setup; this is particularly apparent for large systems -made all of the numerical radial integrals much more efficient by storing the spline integration weights; this speeds up most of the code -switched radial integral infinitesimal from 1/3 d(r^3) to r^2dr; this improves numerical accuracy and returns to the convention of version 5.2.14 -added full (l,m) and spin characters for plotting the band structure with so-called 'fat bands'; these are performed with new tasks 22 and 23; thanks to Jagdish Kumar for the suggestion -Jagdish Kumar also fixed a problem with the phonon thermodynamic quantities which had an unnecessary prefactor of the number of atoms; see here -fixed a problem with occurs with constant electric fields (when efieldc is made finite) and crystals with non-symmorphic symmetries -Michael Fechner improved the fixed spin moment code by removing the requirement that unspecified muffin-tin fixed moments are checked for symmetry compliance -added 1D plotting of the magnetisation density, exchange-correlation magnetic field, electric field and m(r) x B_xc(r) with tasks 71, 81, 141 and 151, respectively -added density, potential and magnetisation plotting for ultra long-range calculations with tasks 731, 732, 733, 741, 742, 743, 771, 772 and 773 -constant electric fields can now be included in ultra long-range calculations; this can be done by setting the vector efielduc -an arbitrary external Coulomb potential can now be read in for use in the ultra long-range calculations; set trdvclr=.true. and the potential is read from the file VCLR.OUT elk-6.2.8 -Wannier90 interface added thanks to Arsenii Gerasimov, Yaroslav Kvashnin and Lars Nordström; and based on the original work of Duc Le and Jon Lafuente Bartolomé -the Wannier90 interface can be used to produce Hartree-Fock band structures (see example) and also works with non-collinear spin-polarised calculations -ultra long-range (ULR) calculations now available thanks to Tristan Müller (experimental) -self-consistent density GW calculations now available thanks to Arkardy Davydov and others; this is a new method still undergoing testing and is thus experimental -GW density matrix can now be written to file with task=640; the natural orbitals and occupation numbers are written to EVECSV.OUT and OCCSV.OUT, respectively -classical spin and orbital dipole magnetic fields can now be calculated and added to the Kohn-Sham field (set tbdip=.true. and tcden=.true.) -extensive optimisations throughout the code: every task should be noticeably faster -improved OpenMP parallelism -improved accuracy of the Mössbauer hyperfine field calculations -added spin and orbital dipole terms to the hyperfine field -updated constants and conversion factors to CODATA 2018 -added Andrew Shyichuk's improved check for requirement of the Tran-Blaha constant -variational meta-GGA functionals (like SCAN) now work with forces -added Roger Mason's fix to make FFTW thread-safe -René Wirnata has created the Elk Optics Analyzer that helps to visualize and post-process optics output data -regenerated species files with lower order local-orbitals -improved k-point convergence of the electron-phonon coupling constant for calculation of superconducting properties -upgraded to LAPACK 3.8.0 -changed default 'radkpt' from 30 to 40 -many minor improvements and bug fixes elk-5.2.14 -Youzhao Lan found a bug which prevented potential-only meta-GGA functionals (like Tran-Blaha) from being used; this has now been fixed -fixed meta-GGA atomic forces; thanks to Michael Porer for pointing out the problem -Eike Schwier discovered a conflicting MPI variable name and also reported that the code crashes when generating species files; both problems are now fixed -linear-response TDDFT off-diagonal components for q=0 now available (experimental) elk-5.2.10 -GW code is much improved and also faster; the Pade analytic continuation of the self-energy is more stable and reliable -OpenMP parallelism greatly improved; nesting is now permanently switched on and the number of threads is controlled by Elk itself; this should improve scaling on hundreds of CPU cores; please report any problems you have with parallelism on the forum -GW spectral function band-structures are now possible; this feature is still experimental -Yaroslav Kvashnin and Lars Nordström found and fixed a bug in the fixed spin moment direction code -fully variational meta-GGA (in the generalised Kohn-Sham sense) is now running in conjunction with Libxc (experimental) -variational meta-GGA works only with collinear magnetism; let us know if you have an idea on how to extend it to the non-collinear case -Elk now interfaces to Libxc version 4 -- please update your library from version 2 -gauge invariant current density plots in 2D and 3D now available (tasks 372 and 373) -the entire code is much faster, particularly advanced methods like Hartree-Fock, RDMFT, BSE and GW; this is in part due to a 'coarse' Fourier grid for the wavefunctions -the lmaxi has been changed from 3 to 1 and several optimisations based on this have been hard-coded into Elk -Broyden mixing (mixtype=3) is now the default; magnetic calculations will now converge using a small bfieldc or bfcmt thanks to an improved magnetisation initialisation scheme -real-time TDDFT calculations no longer require 'nosym=.true.' but rather 'tshift=.false.' and are much faster as a consequence -2D and 3D current density plotting now available with tasks 272 and 273, respectively -task 480 generates a linear-response dielectric function calculation from a time-evolution run -lots of optimisations everywhere in the code, including additional OpenMP directives -lots of minor improvements and bug fixes -cleaned up and improved examples -several direct access files are not closed after reading which speeds up file I/O; please report any problems with this on the forum elk-4.3.6 -GW approximation now available thanks to Arkadiy Davydov; this is a finite temperature Matsubara implementation; currently it only calculates the k-point resolved spectral function on the real axis; see the 'examples/GW' directory (experimental) -the GW approximation works with spin-orbit coupling and non-collinear magnetism; it can also be run after the optimized effective potential (OEP) method -significant optimisations for Hartree-Fock, OEP, RDMFT and BSE -fixed an minor bug in BSE -greatly improved the stability of lattice optimisation; also reduced the variable 'deltast' to 0.001 -improved the convergence of the electron-phonon coupling parameter with respect to k-points; thanks to Xianxin Wu for the careful testing -removed the variable 'epseph' which determined the sampling window for electron-phonon coupling -added new automatic test for TDDFT time-evolution -upgraded to LAPACK 3.7.0 -Elk now uses the LAPACK routine zheevd for diagonalisation which is faster than zheev -changed the variable 'rstsf' to 'ssxc' -the smearing width 'swidth' can now be set with temperature in kelvin using the variable 'tempk' elk-4.0.15 -changed muffin-tin functions to a 'packed' convention; this improves the memory efficiency and speed for the whole code; completely backward and forward compatible -Michael Fechner found a serious bug in DFT+U which has now been fixed; may affect systems with atoms to which DFT+U is applied and which have symmetric equivalents; MF added to list of contributors -fixed a problem with the laser pulse power density plot (AFPDT.OUT) thanks to Peter Elliot and Tristan Mueller -added the ability to randomize the orbitals at the start of a time-evolution run; use the variable 'rndevt0' to set the random amplitude -improved the accuracy of the Hellmann-Feynman force on the atoms; this also improves the supercell phonon calculations -added the reduced Stoner theory (RST) modification to the exchange-correlation functionals, see: L. Ortenzi, I. I. Mazin, P. Blaha, and L. Boeri, Phys. Rev. B 86, 064437 (2012); use the parameter `rstsf´ to adjust the spin scaling -removed the Pulay mixer (mixtype=2) as it was consistently inferior to Broyden -changed the variables 'lmaxinr' and 'lmaxvr' to 'lmaxi' and 'lmaxo', respectively; the old variables still work in elk.in elk-3.3.15 -lots of optimisations of both speed and memory; many tasks should be noticeably faster -added new 'robust adaptive mixer' (mixtype=4) which should be able to converge almost anything; there are no mixing parameters for this mixer; useful for materials searches when you have to be guaranteed convergence; slower to converge than the default mixing and Broyden mixing -added missing term to DFPT phonons corresponding to the first-order change in occupancies and the Fermi energy for q=0; the phonon dispersion for MgB2 is now in excellent agreement with experiment and previous calculations -the electron-phonon coupling code was greatly improved; produces very good coupling constants for Al, Nb, Pb and MgB2; all of which are in the 'examples/phonons-superconductivity' directory -new variable 'epseph' controls the Fermi surface sampling of the electron-phonon coupling matrix elements -Markus Meinert created a script for calculating optical constants from the diagonal components of the dielectric tensor; it calculates the complex refractive index, reflectivity, absorption coefficient and EELS spectrum; available in the utilities directory -real-time TDDFT now outputs a time-dependent DOS and effective temperature at each time step -setting 'uhighq=.true.' results in an ultra-high-quality calculation; when you absolutely have to have the best elk-3.1.12 -Important: fixed an inaccuracy in the scalar relativistic part of the code which has existed for around 12 years; this may slightly affect calculations of heavy elements; special thanks to Stefaan Cottenier, José A. Flores Livas and Marcin Dulak for the extensive calculations -real-time evolution now works with DFT+U (experimental) -added 'ramp' vector potential to time evolution code; this can simulate constant and constantly increasing electric fields; see manual for details; see the example Si-ramp -lots of optimisations everywhere: code should be noticeably faster -José made some changes to the 'highq' and 'vhighq' options -fixed bug with non-collinear optimised effective potential (OEP) -new task (150) writes out the Kohn-Sham-Dirac eigenvalues of the atomic species -SS added two new f_xc kernels: single iteration bootstrap (fxctype=211) and revised bootstrap (RBO) (fxctype=212), see S. Rigamonti, et al., Phys. Rev. Lett. 114, 146402; added two examples: Ne-RBO and LiF-RBO -improved the accuracy of the magnetic anisotropy energy (MAE) calculation by rotating the spherical coverings of the spherical harmonic transform; thanks to James Glasbrenner for testing -David Ernsting found and fixed a bug in the Compton interpolation routine -improved the stability of structural optimisation -removed the smoothing option from the exchange-correlation magnetic field source projection routine -the number of first-variational states for magnetic systems was twice as large as it needed to be: now fixed -improved the vim syntax highlighting generator; run 'make vim' again -organised the examples into categories -minor bug fixes and improvements -note for developers: changed some of the variable names related to atomic species (purely cosmetic) elk-3.0.18 -fixed electron-phonon coupling again; thanks to Karel Carva and Elie Moujaes for the careful testing and discussion -DFPT phonons now work with MPI -SS added the 'single-iteration bootstrap kernel' for linear optics calculations; this is selected with fxctype=211; see the example 'Ar-bootstrap-single' -SS fixed a problem with RDMFT which had appeared in recent versions -SS made minor changes to the non-linear optics code -Important: fixed problem with the option 'cmagz' for forcing spin-orbit calculations to be collinear; this may affect MAE calculations; thanks to Martin Gmitra for finding this and the careful testing -Important: fixed a problem with the magnetisation directions selected for MAE calculations -reworked the 'ncgga' option for non-collinear GGA calculations; should be much more reliable now -several important optimisations; the Hamiltonian matrix setup and density symmetrisation are now faster -magnetic anisotropy energy (MAE) calculation now outputs the direction vectors; thanks to Galya Madzharova and Yu-ichiro Matsushita for the suggestion -added option 'vhighq' for very high quality calculations;see example 'Os-Delta' -'highq' and 'vhighq' options now write out the parameters which are changed -increased default 'lmaxmat' from 6 to 7 -added new option 'nxlo'; this adds extra local-orbitals to the species in order to make the APW functions smoother; this can make calculations, particularly of excited state properties, more accurate -syntax highlighting now available for the vim editor; just run 'make vim' and highlighting will be enabled elk-3.0.4 -real-time propagation for solids now available thanks to the considerable efforts of Kevin Krieger over the past three years; see the example 'Ni-laser-pulse'; this feature is highly experimental -1D, 2D and 3D integrated electron momentum density (EMD) plots now available thanks to David Ernsting and Stephen Dugdale; these plots can be compared directly to Compton scattering profiles; see the examples 'Li-Compton' and 'Ni-Compton'; still experimental -electron-phonon coupling has now been fixed and is also available for linear-response phonons -large number of optimizations made throughout code -code is more memory efficient in many areas -Arkardy Davydov found a bug in OpenMP nested parallelism for BSE which has now been fixed -fixed bug in magnetic anisotropy energy (MAE) calculation found by José A. Flores Livas -added option for automatically converting species from APW+l.o. to LAPW; see option 'nxapwlo' in manual -greatly improved unit cell optimisation algorithm; now should be very stable; see example 'Ge-lattice-opt' -Markus Meinert updated his 'blocks2columns.py' python code which should now work correctly with EPSILON_xx.OUT files -modified the 'highq' defaults thanks to testest performed by Don Hamann described here -full charge and spin response function can be written to file using task=331 -supercell phonons calculation now work with MPI -removed use of OpenMP ATOMIC directive because of bug in ifort version 11 elk-2.3.22 -Lars Nordström, Francesco Cricchio and JKD added fixed tensor moment (FTM) calculations (experimental) -LN made changes to the mixer routine which makes restarts smoother -the Hamiltonian is now made real for systems with inversion symmetry; this was removed in the previous release because of a bug; the FV step is now up to four times faster -fixed problem with symmetry breaking of tetragonal systems during lattice optimisation pointed out by various users -further improved and stabilised lattice optimisation -fixed a long-standing bug related to electron-phonon coupling pointed out by Matthieu Verstraete and Ryotaro Arita -fixed a problem with electron-phonon coupling introduced in a previous version, discovered by user 'wuhuagumu' and Heung-Sik Kim -TDDFT reponse code for both charge and magnetism has been made faster and more memory efficient -creating a STOP file in the running directory now cleanly stops a structural optimisation run; as requested by James Mudd -problem with nested OpenMP has now been fixed -more OpenMP parallel loops have been added -extended the use of BLAS throughout the code -fixed bug which affected the running of task=120 -removed the 'frozencr' option for the moment because the core energy was incorrectly calculated; this will be restored in a later release -various optimisations and minor bug fixes elk-2.3.16 -DFT+U now works with multiple entries per atom; every mention of LDA+U has now changed to DFT+U to reflect the generality of the method, and to give it an air of respectibility; for example, the block 'lda+u' is now 'dft+u'; old input files will still work fine -greatly improved the magnetic anisotropy energy (MAE) calculations, thanks to suggestions by various users; the crystal is now rotated instead of the magnetisation direction -fractional atomic species can now be generated on the fly using the 'fspecies' block; see the example 'fractional-species'; note that the atomic mass is only an estimate in these species files; this is useful for the virtual crystal approximation (VCA) -spin-orbit coupling can now be used with strictly collinear calculations by using 'cmagz=.true.'; this will speed up the calculation considerably; use only when the system is genuinely collinear -unstable non-collinear GGA calculations can now be stabilised by setting 'ncgga=.true.' -improved the speed and stability of the lattice vector optimisation; thanks to forum discussions regarding BaTiO3 -added the lattice optimisation of BaTiO3 to the examples directory; thanks to David Tompsett -geometry optimisation should now work fine with MPI -added highly converged osmium example 'Os-convergence' thanks to a lengthy discussion on the forum started by Marcin Dulak; also increased the value of 'lmaxmat' for the 'highq' option thanks to Marcin's careful testing -Important: greatly improved the code setup and compilation thanks to suggestions by Marcin Dulak; all compiler options are now in the file 'elk/make.inc'; the Makefile in 'elk/src' no longer requires modification -new variable 'rotavec' available in elk.in; this is a rotation specified in axis-angle convention which allows the rotation of the crystal axes -thanks go to Rich Martin and collaborator Wen for useful testing and suggestions -improved the DFPT phonon calculations and added the example 'Nb-phonon-DFPT' -decreased the chance of accidentally triggering the convergence indicator in the self-consistent loop thanks to a suggestion from Markus Meinert -fixed problem with the routine 'nonlinopt', pointed out by user Sabrina and Koichi Kitahara -improved the OpenMP efficiency in parts by using '$OMP ATOMIC' instead of '$OMP CRITICAL' -changed the names of various internal subroutines; for example 'seceqnfv' is now 'eveqnfv' -thanks go to Igor Mazin, Konrad Bussmann and James Glasbrenner for some very useful improvments -fixed problem with species generation and MPI pointed out by Marcin Dulak -fixed problem with use of Fortran 'APPEND' flag thanks to user Alaska -updated the fundamental constants and conversion factors to CODATA 2008 recommended values -Important: updated code for compatibility with Libxc version 2.2.0; see the manual and note the change in compilation instructions -fixed problem with the routine 'energyfdu' which affected DFT+U calculations with 'inpdftu=4' (input of Yukawa screening length) -Important: temporarily switched of the conversion of the Hamiltonian to a real symmetric problem because of possible bug; the only effect of this is that the code is slower for systems with inversion symmetry; this will be fixed in the next release -minor bug fixes and optimisations elk-2.2.10 -fixed problem reported by Sonu Sharma and Michael Fechner with calculation of expectation values L, S and J -slightly improved the magnetic anisotropy energy (MAE) calculation -added new variable 'socscf' which scales the spin-orbit interaction term in the Hamiltonian; this allows calculation by interpolation of the MAE for cases where the MAE is small -added new variables to VARIABLES.OUT elk-2.2.9 -fixed problem with fixed spin moment (FSM) calculations pointed out by Jagdish Kumar -added new output file VARIABLES.OUT; this is for developers wanting to interface their codes to Elk; it contains most of the useful variables required for reading the Elk binary files; if you would like a variable added then just send me a mail; enabled when 'wrtvars' is set to .true. -minor cosmetic changes elk-2.2.8 -Important: fixed serious bug discovered by Jan Balluff and Markus Meinert which produced erroneous magnetic moments with GGA; this only affects version 2.2.5; sorry about that -even more substantial speed-ups for most parts of the code -fixed MPI problem with the magnetic anisotropy energy (MAE) routine reported by Konrad Bussmann and José A. Flores-Livas -minor bug fixes and improvements elk-2.2.5 -dramatic speed-up for most parts of the code thanks to some (fairly obvious) optimisations -greatly improved lattice vector optimisation -automatic determination of the magnetic anisotropy energy (MAE) with 'task=28' (experimental); see the example 'FeCo-MAE' -the variable 'nempty' is now a real number; see manual entry -magnitude of total magnetisation vector written to MOMENTM.OUT -improved the species files -made the linearisation energy search more reliable -reduced the annoying 'linearisation energy not found' warning elk-2.2.1 -added full structural optimisation; setting 'latvopt=1' performs unconstrained optimisation of the lattice vectors; 'latvopt=2' performs iso-volumetric optimisation; see the example 'MgB2-lattice-opt' -minor bug fixes and optimisations -all tests should now report 'Passed' elk-2.1.25 -fixed several problems with the previous (beta) release; thanks to Markus Meinert for the exhaustive checking -magnetic hyperfine fields are now correctly calculated thanks to MM -added missing items to the manual -added the example 'Si-phonon-DFPT' -thanks to Kari Ruotsalainen, Aleksay Golovchan and Vladimir Nazarov for pointing out bugs in 2.1.22 - now fixed -added estimation of direct gap to INFO.OUT; thanks to user Sean for the idea -this is the version that will be used for the Elk Turorial -see you in Lausanne! elk-2.1.22 (beta) -Important: this is a beta version and should not be used for production work; a production release will be made in a few weeks -Important: this version is not backwards compatible; calculations will have to be converged from scratch -density functional perturbation theory (DFPT) phonons now available; only for spin-unpolarised calculations at the moment; spin-polarisation will be added for the next release; use with task=205; still experimental and generates incorrect results for certain symmetries - we're still working on this; see the example 'Al-phonon-DFPT' -full frequency-dependent magnetic response function now available; works with non-collinear magnetism, etc.; use task=330; see example 'Ni-magnetic-response' -iterative diagonalisation greatly improved; now uses the method of P. Blaha, et al., J. Comp. Phys. 229, p453 (2010) -upgraded code to handle libxc version 2 -hybrid functionals should now work with libxc (experimental) -upgraded LAPACK to version 3.4.2 -block name dos changed to wplot; changed variable 'nwdos' to 'nwplot' -variable 'gmaxrpa' changed to 'gmaxrf'; this is the response function G-vector cut-off -BSE and TDDFT now faster, more accurate and memory efficient; thanks to M. Meinert for discussions -task 188 changed to 320 -reintroduced the variables 'lmaxinr' and 'fracinr'; this improves stability -lots of optimisations -added more MPI parallelism -various minor bug fixes -conduction state local-orbitals can now be switched on; use 'lorbcnd=.true.'; this can improve both ground-state and response function calculations; this is switched on automatically when 'highq=.true.' -most species files have been changed; mostly larger muffin-tin radii -Important: Markus Meinert suggested a change to 'nempty'; this variable now represents the number of states per atom and spin; this scales automatically as the number of atoms is increased -default 'nempty' is now 4 -M. Meinert changed the default Broyden parameters after extensive testing -LN fixed bug in XCrysDen Fermi surface plotting -LN also reduced the number of states which contribution to the Fermi surface plot to the minimum -supercell phonon calculations can now be restarted with 'task=202' -Frank Wagner discovered a bug which affects certain types of symmetries in rare instances; this has now been fixed -Important: default smearing function is now Fermi-Dirac (stype=3) -entropy contribution now added to the total energy -default smearing width reduced to 0.001 Ha, corresponding to room temperature -M. Meinert added a blocks-to-columns script; this is in the 'utilities' directory -Oscar Grånäs added to list of main authors elk-1.4.22 -Important:fixed bug in BSE calculations owing to incorrect rotation of dielectric function matrix elements; thanks to Arkardy Davydov for pointing this out -BSE is now three separate tasks: 185 writes the BSE Hamiltonian to file, 186 diagonalises the Hamiltonian and 187 produces the BSE dielectric function; thanks to Markus Meinert for suggesting this -adiabatic local density approximation (ALDA) for linear-response TDDFT now available; see example 'diamond-TDDFT-ALDA' -added Markus' suggestion that the Tran-Blaha constant can now be read in with the variable 'c_tb09' -added new variable 'highq'; set this to .true. and the most important parameters are set for a high-quality, well-converged calculation; see the settings in the file 'readinput.f90'; thanks to Igor Mazin for all the testing -removed the variables 'lmaxinr' and 'fracinr' as they were unnecessary -simplified TDDFT routines -Important: the variable 'radkpt' has been redefined and should be made larger by 2π ; (sorry about this, the original scale for this variable was correct!) -fixed problem with MPI that caused some LDA+U runs to crash; thanks to Alaska Subedi for pointing this out -added documentation -several minor bug fixes and optimisations elk-1.4.18 -Important:fixed severe bug affecting spin-unpolarised native GGA functionals, thanks to Jiji Pulikkotil for pointing out a problem with Mg3Sb2 which led to its discovery; this now makes structural optimisation truly variational for PBE -Important:fixed severe bug affecting spin-polarised 'libxc' GGA functionals -thanks to Miguel Marques and Silvana Botti for the week-long collaboration at Université Lyon where, amongst other things, we rewrote the meta-GGA interface to 'libxc' -thanks to Markus Meinert for careful testing of meta-GGA with various systems -MM also added questions and answers to the FAQ -meta-GGA now works for collinear magnetism only: it is inconsistent with non-collinearity -Henning Glawe pointed out a bug affecting the generation of the k-point set when 'autokpt=.true.' -Important: the variable 'radkpt' has been redefined and should be made smaller by a factor of 2π -SS fixed a bug in the plotting of spin-polarised Fermi surfaces -electron momentum density now available with 'task=170'; thanks to S. Dugdale and D. Ernsting for discussions -lattice vectors, atomic positions and muffin-tin magnetic fields can now be randomised by setting the random amplitudes 'rndavec', 'rndatposc' and 'rndbfcmt' to positive values; this is useful for checking stability of a calculation -the k-points corresponding to the indirect band-gap are now reported to 'INFO.OUT' -lots of optimisations and simplifications elk-1.4.5 -potential-only meta-GGA now available in conjunction with Libxc as an experimental feature; see the example 'Si-meta-GGA'; thanks to Miguel Marques for discussions -finite q-vector linear response TDDFT now available thanks to SS -Important: variable 'autormt' has been removed and automatic scaling of the muffin-tin radii is now always on; a new simpler algorithm for computing the radii was implemented; non-overlapping muffin-tins will not be rescaled; calculations may need to be reconverged -changed parameter for estimation of the nuclear radius from Z to A; thanks to Giorgio Concas for pointing this out -Kohn-Sham band gap written to 'GAP.OUT' after each iteration -3D nesting function plot now available; use 'task=105' -fixed problem with a constant in the BSE exchange term -fixed problem of TDDFT freezing with MPI -lots of optimisations and simplifications elk-1.3.31 -fixed problem with OpenMP 'reduction' clause in calculation of dielectric function -no other changes elk-1.3.30 -removed factor of 2 from the BSE exchange term, this has little effect on spectra in the optical range; spotted by Markus Meinert after careful investigation of core-state BSE spectra -M. Meinert also improved the 'CaO-BSE-core' and 'Fe-XMCD' examples -fixed problem with symmetry discovered by Alexey Baranov -calculation of the partial DOS is now parallel, thanks to suggestions from Anton Filanovich -various optimisations; including some ideas from Anton Kozhevnikov -iterative diagonalisation is now much faster -improved the adaptive mixing scheme -improved the initial stability of the self-consistent loop, thanks to discussions with Lars Nordstrom Notes for developers -inverse indices from 'idxis', 'idxia', 'idxil' and 'idxim' for species, atoms and angular momenta are now available, thanks to A. Kozhevnikov -the arguments to hmlaa, hmlalo, hmllolo, olpaa, olpalo, olplolo have changed elk-1.3.22 -fixed a problem which occurs with version 10 of the Intel compiler -simplified the 'setup' script and added OpenMP compiler options by default -no other changes elk-1.3.20 -added directionality to the TDDFT code; thanks also to Vladimir Nazarov for discussions -a pre-print is now available for the new TDDFT 'bootstrap' kernel: arXiv:1107.0199v1 [cond-mat.mtrl-sci] -added the scissor correction to the RPA inverse dielectric function in EPSINV_RPA.OUT -fixed a problem with running geometry optimisation with MPI; thanks to Arkady Davydov and Antonio Sanna for discussions -geometry optmimisation has changed: now the geometry, interatomic distances, final total energies and forces are stored for each optimisation step in GEOMETRY_OPT.OUT, IADIST_OPT.OUT, TOTENERGY_OPT.OUT and FORCES_OPT.OUT -removed geometry optmisation from the ground-state calculation and put it in a separate subroutine -reduced pseudocharge density constant (lnpsd) because the spherical bessel function order could be too large; may change total energies slightly -q-points and weights written to QPOINTS.OUT -minor changes and optimisations elk-1.3.15 -fixed serious bug introduced in the last version affecting some tasks (for example DOS plots) for crystals with non-symorphic symmetries; thanks to Vladimir Nazarov and Daniel Rohr for pointing this out -VM also fixed the graphene example, in which the atomic coordinates were (embarrassingly) incorrect; also included a high-precision DOS plot to demonstrate the Dirac-like band structure -SS, JKD, Antonio Sanna and Hardy Gross added a new TDDFT functional, called the 'bootstrap' kernel, which produces remarkably good linear optical response functions (article currently in preparation); see the example 'LiF-TDDFT' -Antonio Sanna added the Eliashberg equations for finding the superconducting gap as a function of temperature; see the example 'Al-Eliashberg' -improved the electron-phonon coupling calculation (task=240); this is faster, more accurate and now works for spin-spirals; now also parallelised with MPI -removed packed matrix format everwhere in the code, along with the variable 'tpmat'; the first-variational matrices are now stored in upper triangular format; this takes more memory, but is faster -Anton Kozhevnikov fixed a small problem with calculating the nuclear-nuclear energy -various optimisations, simplifications and minor bug fixes -this version of the code with be used in the CECAM Tutorial Notes for developers -the order of indeices for the q- and w-dependent inverse dielectric function, epsinv, have changed from (w,G,G') to (G,G',w) elk-1.3.2 -linear response time-dependent density functional theory (TDDFT) now available for calculating the q->0 dielectric response; see the example 'LiF-TDDFT' (experimental) -fixed a problem with the BSE calculation which made the response function too large -added the possibility of using arbitrary states in the BSE kernel thanks to discussions with Markus Meinert; this enables the calulation of core state BSE spectra; see the example 'CaO-BSE-core' (experimental) -MM also added an X-ray magnetic circular dichroism (XMCD) example: 'Fe-XMCD' -BSE calculations are now faster, thanks to discussions with MM -Alexey Baranov made several changes to the structure factor code, including adding an energy window, 'wsfac', for the calculations; see the example 'MnO-str-factors' -Tyrel McQueen suggested a way to speed up the Hartree-Fock calculation; this has been implemented and also considerably speeds up OEP and RDMFT -TMcQ also made some ongoing changes to the hybrid functional code -made the radial Dirac and Schrodinger integrators yet more stable; thanks to AB and Frank Wagner for discussions -fixed a problem with the ordinary RPA dielectric function; only affects calculations which have a scissor shift which made epsilon slightly too small -real symmetric diagonalisation now used for the first-variational eigenvalue problem for crystals with inversion symmetry; this can speed up the calculation by a factor of three; this is thanks to discussions with Lars Nordstrom; Important: the atomic basis may be shifted to a different position and old output files may need to be reconverged -fixed a stability problem which occurs when using GGA functionals by removing G-vector truncation of the effective potential introduced in version 1.0.16; thanks to Greg Walker for discovering this -LDA+U calculations are now faster thanks to fast evaluation of the atomic density matrix -Broyden mixing scheme now available: this seems to be both fast and stable (use 'mixtype=3') -removed Anderson mixing -improved starting guess for the density in ground-state calculations -upgraded to LAPACK 3.3.1 -various optimisations and simplifications Notes for developers -the arrays haa, halo, hlolo, oalo, ololo are now smaller and the indexing has been rearranged elk-1.2.20 -the Bethe-Salpeter equation (BSE) for linear optics now works beyond the Tamm-Dankoff approximation -RPA and BSE calculations now use full wavefunctions instead of plane waves -removed the Coulomb regulator from the calculation of RPA dielectric function, instead used the analytic results for the head and the wings of the matrix (thanks to Vladimir Nazarov for discussions) -improved the stability of radial Dirac and Schrodinger integrators (thanks to Alexei Baranov, Frank Wagner and Ondrej Certik for discussions) -added more block descriptions to the manual (thanks to various people for pointing out omissions) -various optimisations elk-1.2.15 -SS and JKD added the Bethe-Salpeter equation (BSE) for linear optics calculations. This feature works with LDA+U, magnetism and spin-orbit coupling. It is also parallelised with MPI and can be run across a cluster. See the 'LiF-BSE' and 'Si-BSE' examples. Currently an experimental feature -Alexey Baranov added density and magnetic structure factors: see the 'MnO-str-factors' example -AB also fixed a problem with output of the spacegroup code -full frequency and G vector dependent RPA inverse dielectric function now available with 'task=180'. Works with metals, insulators, magnetism and SOC, and can be calculated for arbitrary complex frequencies. Also parallelised with OpenMP and MPI. Thanks to Anton Kozhevnikov for discussions -added lots more MPI parallelism and made the code more MPI-friendly -many optimisations across the whole code -Simone Chiesa, Anton Kozhevnikov and Adolfo Eguiluz found a problem in the plotting of the partial DOS which has now been fixed -the first-variational eigenvalue matrices can now be stored and diagonalised in non-packed storage mode: use 'tpmat=.false.'. This can speed up calculations at the expense of memory -Tyrel McQueen found a bug in the 'findprim' routine, now fixed -TMcQ also suggested a change to how the code connects the points of the 'plot1d' vertices -Martin Stankovski suggested that 'ecvcut' be made into an input variable, allowing the core-valence cut-off to be adjusted -added the phonon calculation of Ni to the examples -Jerzy Goraus contributed a script for calculating VB-XPS spectra from PDOS* files; and also one for converting the Wien2K struct file to spacegroup.in -modified some species files thanks to tests done by J. Goraus -Henning Glawe suggested including the version number in the release directory -upgraded to LAPACK 3.3.0 -made tolerance for finding the linearisation energies (epsband) much smaller: this improves the overall stability of the self-consistent loop Notes for developers -arguments to 'genppts' have changed; also the non-reduced k-points are now stored in the remaining part of the reduced k-point arrays elk-1.1.4 -message passing interface (MPI) parallel runs now available; scalable to hundreds of cores across a cluster; can also be used as hybrid OpenMP+MPI parallelism for maximum efficiency; with thanks to Bhagawan Sahu for help with testing; see manual for compilation and running instructions -S. Sharma added susceptibility tensor for non-linear optical second-harmonic generation (SHG); see example 'GaAs-NLO' for details -added spin-orbit correction to momentum matrix elements; affects linear and non-linear optics -optical calculations now work in combination with spin-spirals -updated interface to version 1.0 of the ETSF exchange-correlation library, libxc; thanks to M. Marques and T. McQueen for assistance -fixed bug spotted by T. McQueen involving using multiple tasks in conjunction with 'primcell=.true.' -A. Kozhevnikov fixed bug in 'xc_pwca.f90' -A. Kozhevnikov also fixed serious bug in 'getevecfv.f90' -F. Cricchio changed the order of lattice vector angles in 'spacegroup' utility to 'bc, ac, ab' which corresponds to the convention alpha, beta, gamma -removed scissor correction from eigenvalue solver; now it is used, as before, only in optics calculations -T. McQueen suggested an improvement to the routine which generates the path in reciprocal space for bandstructure plots, 'connect.f90', which has been implemented -fixed problem with XCrysDen Fermi surface plots, spotted by FC -various optimisations and simplifications Notes for developers -arguments to 'zpotcoul' have changed in anticipation of linear-response phonons; should now be called in conjunction with 'genzvclmt' elk-1.0.17 -fixed problem with Fermi surface generation introduced in the last version -E. K. U. Gross added to list of main developers -no other changes elk-1.0.16 -fixed problem in linear optics calculations for metals - thanks to Antonio Sanna, Fabio Bernardini and Sandro Massida for pointing this out -FC and LN added option for automatic determination of APW linearisation energies (use 'autolinengy=.true.') -Marty Blaber made a script which allows for semi-automatic labeling of the vertex locations with gnuplot (found in the 'elk/utilities' directory) -FC and LN fixed problem with some compilers when writing FERMISURF.OUT -FC and LN fixed problem with writing XCrysDen Fermi surface plots -Anton Kozhevnikov found and fixed a problem with the generation of the irreducible representation file 'ELMIREP.OUT' -Torbjörn Björkman added a new routine which automatically determines the smearing width from the k-point density. See 'autoswidth' in the manual and the example 'Nb-autoswidth' for details -added a constant electric field E in the form of a saw-tooth potential: set the vector 'efieldc' (experimental) -added a constant vector potential A to the Hamiltonian to generate constant currents: set the variable 'afieldc' (experimental) -FC and LN fixed problem with a spin-polarised GGA routine -FC and LN pointed out that the energy term associated with the excess charge compensating background should be zero. This term has now been removed -code now more memory efficient thanks to smarter array allocation -the variable 'rgkmax' can now be made arbitrarily large without risk of instability -removed variable 'cfdamp' -Anton Kozhevnikov pointed out that the radial functions were being redundantly calculated for equivalent atoms -- now fixed -Anton Filanovich added several questions to the FAQ -scissors correction (given by the variable 'scissor') now applied consistently immediately after the generation of the eigenvalues -FC and LN removed the spherical harmonic transform matrices with rank lmmaxapw -added dielectric function calculation for arbitrary q-vector, see 'LiF-Yambo' example (experimental) -by setting 'gmaxvr=0', the G-vector cut-off for the potential and density is automatically determined from 'gmaxvr=2*gkmax+epslat' -various bug fixes, simplifications and optimisations elk-7.2.42/PaxHeaders.21776/Makefile0000644000000000000000000000013214061636521013570 xustar0030 mtime=1623670097.326100254 30 atime=1623670097.325100255 30 ctime=1623670097.326100254 elk-7.2.42/Makefile0000644002504400250440000000066714061636521015636 0ustar00dewhurstdewhurst00000000000000 MAKE = make include make.inc all: cd src; $(MAKE) all cd src/eos; $(MAKE) cd src/spacegroup; $(MAKE) clean: cd src; $(MAKE) cleanall cd src/eos; $(MAKE) clean cd src/spacegroup; $(MAKE) clean rm -f *.o *.mod *~ fort.* ifc* *.gcno *.exe test: cd tests; ./test.sh test-libxc: cd tests-libxc; ./test.sh test-mpi: cd tests; ./test-mpi.sh test-all: $(MAKE) test $(MAKE) test-libxc $(MAKE) test-mpi vim: cd src; ./vimelk elk-7.2.42/PaxHeaders.21776/setup0000644000000000000000000000013214061636521013213 xustar0030 mtime=1623670097.332100248 30 atime=1623670097.332100248 30 ctime=1623670097.332100248 elk-7.2.42/setup0000755002504400250440000000630314061636521015255 0ustar00dewhurstdewhurst00000000000000#! /bin/sh # Setup script for the Elk Code # generic values MAKE="make" F90="f90" F90_OPTS="-O3" F77=$F90 F77_OPTS=$F90_OPTS AR="ar" LIB_SYS="" LIB_LPK="lapack.a blas.a" LIB_FFT="fftlib.a" SRC_OMP="" # get system type from user GETSYS () { clear echo "Choose compiler:" echo echo " 1. Intel Fortran (ifort) with OpenMP" echo " 2. GNU Fortran (gfortran) with OpenMP" echo " 3. Portland Group Fortran (pgf90) with OpenMP" echo " 4. G95 (g95)" echo " 5. NAG Fortran (nagfor)" echo " 6. IBM Fortran (xlf90_r) with OpenMP" echo echo " 20. Intel Fortran profiling (debug only)" echo " 21. GNU Fortran code check (debug only)" echo " 22. G95 code check (debug only)" echo echo " o. Other x. Exit" echo read SYS if [ "$SYS" = x ] ; then exit 0 elif [ "$SYS" = o ] ; then echo "Enter Fortran 90 compiler command:" read F90 echo "Enter Fortran 90 compiler options:" read F90_OPTS echo "Enter Fortran 77 compiler command:" read F77 echo "Enter Fortran 77 compiler options:" read F77_OPTS elif [ "$SYS" = 1 ] ; then F90="ifort" F90_OPTS="-O3 -ip -unroll -no-prec-div -qopenmp" F77=$F90 F77_OPTS="$F90_OPTS -assume protect_parens" elif [ "$SYS" = 2 ] ; then F90="gfortran" F90_OPTS="-O3 -ffast-math -funroll-loops -fopenmp" F77=$F90 F77_OPTS=$F90_OPTS elif [ "$SYS" = 3 ] ; then F90="pgf90" F90_OPTS="-O3 -mp -lpthread" F77=$F90 F77_OPTS=$F90_OPTS elif [ "$SYS" = 4 ] ; then F90="g95" F90_OPTS="-O3 -fno-second-underscore" F77=$F90 F77_OPTS=$F90_OPTS SRC_OMP="omp_stub.f90" elif [ "$SYS" = 5 ] ; then F90="nagfor" F90_OPTS="-O4 −openmp -kind=byte -dusty -dcfuns" F77=$F90 F77_OPTS=$F90_OPTS elif [ "$SYS" = 6 ] ; then F90="xlf90_r" F90_OPTS="-O3 -qsmp=omp" F77=$F90 F77_OPTS=$F90_OPTS elif [ "$SYS" = 20 ] ; then F90="ifort" F90_OPTS="-O3 -ip -unroll -no-prec-div -g -p" F77=$F90 F77_OPTS="$F90_OPTS -assume protect_parens" SRC_OMP="omp_stub.f90" elif [ "$SYS" = 21 ] ; then F90="gfortran" F90_OPTS="-O3 -fcheck=all -finit-real=snan -Wextra -Wall" F77=$F90 F77_OPTS=$F90_OPTS SRC_OMP="omp_stub.f90" elif [ "$SYS" = 22 ] ; then F90="g95" F90_OPTS="-O3 -Wall -std=f95 -pedantic -fbounds-check -fno-second-underscore -ftrace=full" F77=$F90 F77_OPTS="-O3 -fno-second-underscore" SRC_OMP="omp_stub.f90" else GETSYS fi } GETSYS # produce the make.inc file echo > make.inc echo "MAKE = $MAKE" >> make.inc echo "F90 = $F90" >> make.inc echo "F90_OPTS = $F90_OPTS" >> make.inc echo "F77 = $F77" >> make.inc echo "F77_OPTS = $F77_OPTS" >> make.inc echo "AR = $AR" >> make.inc echo "LIB_SYS = $LIB_SYS" >> make.inc echo "# LAPACK and BLAS libraries" >> make.inc echo "LIB_LPK = $LIB_LPK" >> make.inc echo "LIB_FFT = $LIB_FFT" >> make.inc echo "SRC_OMP = $SRC_OMP" >> make.inc cat make.def >> make.inc echo echo "You can now edit the compiler options in 'make.inc' to use optimised" echo "BLAS/LAPACK/FFT libraries, MPI parallelisation and Libxc." echo "See the Elk manual for details." echo echo "Then run 'make' to compile the code." echo echo echo "To enable syntax highlighting in vim run 'make vim'" echo elk-7.2.42/PaxHeaders.21776/make.def0000644000000000000000000000013214061636521013525 xustar0030 mtime=1623670097.340100241 30 atime=1623670097.339100242 30 ctime=1623670097.340100241 elk-7.2.42/make.def0000644002504400250440000000532414061636521015566 0ustar00dewhurstdewhurst00000000000000 #------------------------------------------------------------------------------- SRC_MPI = mpi_stub.f90 # To enable MPI parallelism the MPI version of the Fortran compiler must be # used. This is usually mpif90 or mpiifort. Uncomment the following lines and # run 'make clean' followed by 'make'. #F90 = mpif90 #F77 = mpif90 #SRC_MPI = #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_MKL = mkl_stub.f90 # To enable MKL parallelism, link with the MKL library then uncomment the # following line and run 'make clean' followed by 'make'. #SRC_MKL = #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_OBLAS = oblas_stub.f90 # To enable OpenBLAS parallelism, link with the OpenBLAS library then uncomment # the following line and run 'make clean' followed by 'make'. #SRC_OBLAS = #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_BLIS = blis_stub.f90 # To enable BLIS parallelism, link with the BLIS library then uncomment the # following line and run 'make clean' followed by 'make'. #SRC_BLIS = #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_libxc = libxcifc_stub.f90 # To enable Libxc first download and compile version 5.x of the library. Next # copy the files libxcf90.a and libxc.a to the elk/src directory. Then uncomment # the following lines and run 'make clean' followed by 'make'. #LIB_libxc = libxcf90.a libxc.a #SRC_libxc = libxcf90.f90 libxcifc.f90 #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_FFT = zfftifc.f90 # To use a different FFT library, copy the relevant library or include files to # the elk/src directory (eg. mkl_dfti.f90), uncomment the appropriate lines # below and run 'make clean' followed by 'make'. #SRC_FFT = zfftifc_fftw.f90 #LIB_FFT = libfftw3.a #SRC_FFT = mkl_dfti.f90 zfftifc_mkl.f90 #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- SRC_W90S = w90_stub.f90 # To enable the Wannier90 library copy libwannier.a to the elk/src directory. # Then uncomment the following lines and run 'make clean' followed by 'make'. #SRC_W90S = #LIB_W90 = libwannier.a #------------------------------------------------------------------------------- elk-7.2.42/PaxHeaders.21776/docs0000644000000000000000000000013214061636525013007 xustar0030 mtime=1623670101.146096708 30 atime=1623670101.126096727 30 ctime=1623670101.146096708 elk-7.2.42/docs/0000755002504400250440000000000014061636525015121 5ustar00dewhurstdewhurst00000000000000elk-7.2.42/docs/PaxHeaders.21776/Brillouin_zones.pdf0000644000000000000000000000013214061636525016734 xustar0030 mtime=1623670101.130096723 30 atime=1623670101.128096725 30 ctime=1623670101.130096723 elk-7.2.42/docs/Brillouin_zones.pdf0000644002504400250440000057763414061636525021017 0ustar00dewhurstdewhurst00000000000000%PDF-1.4 % 6 0 obj << /Length 71 /Filter /FlateDecode >> stream x3T0BC]=seUeɁTA3000#5Vp Ct;N? ! endstream endobj 5 0 obj << /Type /Page /Contents 6 0 R /Resources 4 0 R /MediaBox [0 0 507.249 517.809] /Parent 7 0 R >> endobj 3 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/var/tmp/10089666731916source1.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 8 0 R /BBox [0 0 507.25 517.81] /Resources << /XObject << /Im1 9 0 R >>/ProcSet [ /PDF /ImageB ] >> /Filter /FlateDecode /Length 10 0 R >> stream H*25032U0BSCs= C039K3P%+ n endstream endobj 8 0 obj << /ModDate (D:20020211151125+01'00') /CreationDate (D:20020211150909+01'00') /Creator (Acrobat 5.0 Image Conversion Plug-in for Windows) /Producer (Acrobat 5.0 Image Conversion Plug-in for Windows) >> endobj 9 0 obj << /Type /XObject /Subtype /Image /Name /Im1 /Width 4228 /Height 4316 /BitsPerComponent 1 /Decode [ 1 0] /Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 4228 /Rows 4316 /BlackIs1 true >> /ColorSpace /DeviceGray /Length 11 0 R >> stream XR0G}5K4W QL/.܂D,D$l*r@醐A~UKE}uv8LÄת^t}._5UOIn1. nuW]m`UGi{9'/W7tȩ30q;_ v=K8  m.K]WUKaWnx_TگWL]uvPXwLX.-k__]|OzW_"ݏ__*o^u {]f+_$m F#o-.4Gk0 | f1030odcYt\\>YF̎ ܁ɅVgUF"xlyϺ,H.n4N}>Y荣/0hZ 1B!@] Ͱ`h!@h#:1-YUy0@#6DGoB\Dvn#E0R8˲>^0 kraC <J xLsR)D ._? xX(s. @9-CQovD  A{{ M>0oIo >aIl> ;ۆ{}&z]*}'}xo`ag&mJx7j0?6WHpaA0Pn"}&M tA 0m0 >aa0} q}& `aA0MȭuH7úL1 >PML60aanao ; ke~ݜL aoޓoxk <0L>z7°eoOOA-29xH0ܮx!iNqC.&@U p/ 6lS28dc$'3 sHd'J\h6 Ze~"8-ِ0F٘-Ve٠00#p[r8|#| 2a&G[#n6 ]F# `G/ i""""pH}40"1`*B:L6{)|a RR P'H2!ܛAd2aW;q6Zt Xn8I QY P6h<&@R6TidptHc9: Ae7Zh:HK2id6aLNn !&$PVd<A(m' aaI#"I[tm+ .A;t,7Ki6ү-KIwKl4 {ẮJ۠m' ?$zN Imt+ tItu^ MRvVj$[I#'[i8nǴ7Iv ҭvVVÄa^J:++l0{I+kᇯ _e47A%!ޫtn I,67IxinÄN7ivk/na]^aM۠maU^Wm-AvJ}aKt%m/mҭ7Ivݺ[`ä vo /m[ ქT-,EZV/ X0*tI0wIml ^T짥väuTvD A$إtL$t$-I]-[ +/IۥMl:J tl%aXt7I+Kn Km+oJW :UiXnv,: ?Eb .Hʵl=fFnM <7 ]\7I0t[aa!n]VpKp\47Iw m%Kۥ::]Km^/l anpKzl%]U:I턖ݺIz 0V/zuKl% : -pV{iv%[h.wnWIv[aJҬ7Iv}aKtOa]i;aImiTaҧm/aZm+^-W Tqmp;i{MnI6l:^^ޒ m ^퇪iS-I0taUN/m!]vA*K :^M~XnA;i6aKh-I}+ ={i;m`[i6tÄm"%}oKڧl:UN^鴷 :I4Im\m-OU; V ۥVn/a[Am%m't0MKlKm[xnl8*V!!-t@>ᇥr{a+ alF :Ka|7+8]I&P[eTKa[l?t7ZmtoJW- xa[KzI6 A^?VKm/ixn]T%i n i]m~]/taa >ix[vհa!i8n]¶NAX`VNWt* l?Kh-m' >a&tm+ Mv^a%l%íw[mm/a_ mҼ7I-mޗx7Zav^tmI0[i]%XaK:[꽄m/ Kp އKmUmiv޽0m tm+p%7I-֜7m/amvݾ/ a[a+xNh mqt鰗am;l$Wl$t]֛Kw_}' ]Z[~ V^AWj 5nv[zIV]Ynm ;V I]Jޗ碌l%~^4h&mK&SJ^I~[Wl%WKUn}wJ_l%umt~m~/ISޒi}w[kin}aԉ&^h*_uKմ}}ui'wU^5@˙ϯoTB)0,&@ڂr zT9r(h&ީb""Mx'S *.JJ#\ӯ, (OwDG !w,L).f uQ,He[!,ڲxjCf%`x6Ckw2:H6#mŔkO]nfG[d !YdEz# u) oe@d ܎ckWLlG* ":WzR<a%\\[Eu0<3Kx߬RQ"-OT $zR#y )No\ȐB8 ᰸rzFF3x4MuHʨQ#u{{jxfB"=]Sato[_mv%ˁE?28$uZZ=.G~+B$9&a7O[W}l Rumu{s#\OWݿ@ˁGCM_iޢ@9F; T@jAFJfiOzDn$[_7R~@nV"Q {6k#DKTo]'K-_6>ti7Jմi'O M+Ioi7M' 'VrRoI=:[n Sk}P!;ImuIIMoo! mo:t[z7\7NڒMK{VtVuK|+nҭ"Nm-, aS}л m$]:oA}%A}o[zMXNB?>m>:Z _k{adj:XL! [~}I-(wAm=h  ]u! M]յn AagxI]z M꭫i;n=Roo-{vwzZOI~mA-鄶ޝ'M+ >%t}麒jvޔ- $^ޕl0=iv b޺H%ImIl>K}{}a%I6^5BN/n{@~Xt08Kt!~}$ >t=ݥ[uPXa'uo,7 -۪MںA'n@Gm{ka.xRBޒ[}U:i'L>[t{t <6PXouA-&{zKRۦռ$t!tWnmI*ޡwo[]zK{atJ.viu%o^JwTUXo[}KaKopo| CXztj^v%oknn[Iw 4PJ҅~&ީ{v,1 _o)-;I &mzIm}}U7IK 4JvO=ޭ-ַuwKonH&۵aS%iST菆PA8ڇXNeIߡ MuI[&]_UNޓi]: ,l ^}mz[~i%}Mի^=W$TOKku _q &$^ZZU}/m&Uom_$-m&aOMv*mJ @ ^l t*%jpkzA:JVߥ 7h! =ҴE7tI zH ii½0պtnOV%a &I?eN V.[zI{i-0MwM[ W ެ ;o\26W[J$m-t%Ň[޴Xa$mzմ 7XIp%OMT}%Ma| B#@#oI&uuItf@сt%Irh(fCV0}%"]o $a$}_IGAVL?ҴDbHR7n KPl?K[A*0ޒ -l˙9V烙2m\$'"Uj0KA%*l\;%uik Kw;H*v 6A%zm/!pwҭI75J mI-}-_r03zH%ڻһէiI^P +E ooU@mKnKa$WAp~ T}+Ja[u&ݯ[~kJm[oЫoh& RKn}w[m$wK@p~K~ot-:~ۆXI7sAm#i& %a۶{m) 0gq .Imkt1[ak^۵IMxa]h*A~$ZnᥰT[NޚInJ6굷$l oK&ƨ A*x0WawJnې`s⧇kjWKo"ᾡIw{aʒҢN0۪. I'^Ka%~T ;$JH_ީ{}om٨ha/ڤÿHuoUAI. 0{OWv~_8T[{*}ݷmH=vI;z!^3L5I K`C a* {*x۠H }7{JU 0oi%m%ZoKnam]IKv~$?wm$Vވ_0[ޚA Ww@O=ݾ*i(.XNe5D1An .u w+Z!aKӽ miGmrô o҅ Ӄ &_ ݰp rS~BE0B"+hOib~~ v׵}IA0aȮݥm7IK^Eontnjڽv7$} | K dRPo_[jK;)VvmJd)m Md/ IeK5Pص{D6waT,5B# oKl$m zn~a& q_ "/[ AvD0 ǧ`{t |D0LJN31m pv Nޕ`\-[ 4<*&%;^vRp0'V[ {Ah7n!dT6"GMۤyr 6ݶ[iG %\am-g'0;Jm۶[ @aH Bu5r7IL70[ g 6&b!#rb@o ^Xc![[a! ׳Pam-mX {h-RamW muV܂[ -߆. X. Am%}D߳GdY¾cûa dMt@>MKlNv 4kAmA}@6ނmoA{ݴ i;3W ;;rBsw}^"h2z XU_ KlL0D.­_JZa4۶K ;$~^0 l ֢87M5-$½mI 7 eZ{Z} (,!FkR0۶TAaa.-gCtAjItvujAc>-&:Nwa6܁݄X@Zml%TݢIЈݰ]iB`mmi(pm=oi$a-"\ ۤIm[uڐ 'mu۷P}pa"(VIuvmDFյ_^0l%l;ء>l:7[E(5[0K "ỻiS~ۢj Y$m]ePC=M$aݶXoN"8$7V(Op`m+~MVi(C*}paK't{vwqI -բz[omM6j ڷ(oݤaK/*op[l0[D3$:]nK!l+Xaݶ[l3 WOAq'}؈e4ˢ>a/O2Vl]"!$?onJ(vtX d^G Mz Qp72d?if@a0J9KH CX m 0CW'oۥMHA֞X% Xm/m}' DwiPW 7 ~ Hj'5QevU$m$GպA &(Q$/iZl7L^ֱ4V @dV$]a8} 6l+a (DrmAr;;G:޷ D %8e>{I;@evWb$gCJ߽B6w.ջga@At퍙 A@&aߦa\'D0jA}M 0c 0!G P9[]D!\){fnH}>A.v #iAsOkA[mPiJAiþ Nvep ӻXC\-z8ې^ i5!ǐYAPrHgm&PBBhepBAAV݄" 셺!M a6<tA >!Σ gfWVuX oݶt@Rݺ*;2 CovwaT5t>AM m 7nߒhkުBQaX wI5[ m4yv!rrrd %9H0GV۰Nsu:i6; 7M{n! ЏB|A Cun@oC+mmmo l5149ۜ>#NS+ ďedMM .[tvv  ;t@t)m@6nLaj7& aAPôkm  Xy* v]vאT7xH$v#P5ǻcfŶQs-A'peC/ i6m$cSM;Z"DH$Px"nm$l^!ݱaWvA7JAq\Uo 0@6m[`@"f,Nƒ%xnci~u@$5ăQ-{ nt%aq$\T$O+~Anφ m$6)1]TP璖a& l .k"lmtCInH$<;P`'}4FH_D,"lk Aj+Kl5Aa"\a[`u<4n+x.]M adq$ nTfT!=8u54nĨD ë [gv.Dxt'܆ njxg0 Ȝ` [qxADGDua˄0BWTFW0Bf[J[Eˇv頁w]H 9HO\vm(\EC0\ -@XעRZ x)AoV+!00-J"P<!-ӆ Oٶ _cVj'CFIhRmP v ah5 ㄼ#  J@ "l ZG|A "la6J Gj̸ |ڰDBh~i.v+Dp<KVD)XvDu9yڄ\aIa5 ;n0<H莸 چT=A - lQ!3{m-9" } $M _ ha- vGctADCvL$`n+aNү'HK I 3*_mrkh m d .I_d㔹L.'A/I0h@G" k[r\uB$Y,$n `re_dFH $a"8.2 x4WI%0d#{~W x.ܧJT[ Sq] xn7%I$uF !-++nhaiR!/t!aq6U pm$YRdDص`ߪLsd;C #2= x*lAF)yP3wI -<3G5AUJÎS%RK .AI_k'VKlP-,K}IV'Aq<0^> Pݴh"lfV'ߥV ӻ$.IB Wa?$M{wIVua}%ʤ\ nNZ +i*me=qmnKtګz!ޙ{_N aCT-kmշIu8Mv nr xۦ$]_V/n${ih-%E:H7m4M]t ЂߴQ >nN$7[,$6I۶A@D.ڨI]T{^]%g;rpނzO*aIvA$.:^n fDtn{ a@V}$"=_MבMWOWi%nK-=ڨi 0wT7HP9!n޶m~ս-iǷ I .WJEu axA%oI}iZL7 {i$7oޜ.𰂠wIU=.v;0GI0a .ɖj6h$4m솉l5vp c}v4,0wIm=߻$nd2)d$$mЄtKXanW%z^k,0PImj)&A^}[TnAw}+ۦ MIn~" Mֶҵ,($l n[op GTm=$vj!VP .ޕm*mtނw}5L7a4TA!R iA6 Xa-Rl(A$tWnn *VV[+h3L: UNh285I[oI!P0H*vaI0 V۴ VIHH$JH&_oA4j@ڦ %ah[Ϊ$IPI[oA j"mJKޕ Ca%*mU &wI R}$it}njm+PZA-ޓMvUU %NiI+V6*vhFV۴҆KT:K"i&I%m+A%oto^[mBOZLjI[oۦATpa$_!mmI%* *փlJ %oH0DR[n=Sa$PJ֛Im4W}ꡆ]$YrAA^KWt 4W+AUMxa[oAu $ޓk K[J -Pm$ސo醕[{.Xa$N@KmJh$aA7 $־ %n$t -%ua.ӮVVmIu +m8Mv~m$uaoA{xaޗNiUL54Ju %V۠i%m'In~ՆVozmVZA [oP@m'pwPI[ ]7MI[Ai%o +6m+􁴒z *ߤa 4IҴނҼA-W&I[oI|0J7L0]'0;TmմI+m7^ 4wA76[%jڰ ?ᆒWoKIAP հ[4Vtt6K'H-a+0z uMlIm' %턟umJצI[oIPI[oI KKJI+m+ރh ]E-6 Xm!H6JL4K &i%;2M 0\;++Ii{{ $A $+Xh$ۥm.m$I)]"mA6A(}H TI)]"ool$[zWN $zMm xA_ᴼ6H Mm=>H-ޗAJo&WI/ҿd $'IJ nҿH6KޓӤA VI[oA?j 5醒V_mKiH+wkJdIQnn 4VxA_ja$zNA o0I]}I[o :ᴂVuA7 𕥰i%InI[}kAA{}JxJAI+ovI] @H M[ $ݥuH+h$[l$ýAv+ 4V}%mJ`үxIҰImA7H-[aWmLPmVxK 6A[' H+m* 0A- +a$M0ۄj 4WmpaVI NpKmM ܎aBv`XmMa ]h$A% %n 6Wk,h;a$ 0an Ia$ CmIA%m`A[unI[a$ [a(aJ+ 0I[mA&a$H0i M mA V&i iH7a%$I[ta[aV& $ i%m`a+l0H-0i%m WAH.i $a  +AIn° &a ރ WaH6I[ a m*m&i0 ۦZ W6$چj7h& I+mKndtt [a$l0˃b l1H+ l A[ PMKmmM`I[na&I^ 6V MKmm  [aVH0KA n %AA[mÄ7 4M wH0Jݤޕ6Jݫ 6[ti$IvAA]Mt Rِ*H7HiiKn[V m$6MW[ti%v Vi%@ޕJH+majI,=#+JP LI[a[tI+mi%m:A+0WtiaH0%o-A[$ AmVۤI+v B nni6W0i@ޕ _IH+mJ&IXv n ۤjmPVA0Jޡ6j 5 wI[TA+zL4 T% H6Am Rh(t@IwHP l0I+vA[za$ [t&H%i0Ji JmA+n =wjHo[v`A+A T'H-H+ ioi [JmH-Ai%va m Aޭ I-0%m Vi%vAnP [xAچJh& [AKaX5 [i%atimH- Vi A6VPA MiCҀ aL:JI [l AjI 6 $L5AC m RL: m6oIV 0%n6 na A+nA[ $A-Ai0attm Ti7 nanW+I7A+wICn!I m$ %X4H:I[p 4 Ҷ0JݤP۠Ia J5Jth&aH @ #~Jm[tiCz &[pA6AC -Ai60 í H0V& ݤ mMջA6& +nm(mia Ci0ұh \$A[I +h JAWI UդjK +e0Ũl`+MÑ5ĺᱫd \Dp< M:# 7 \:1[-C C n  征P]`2ChvW2AN+ˈ6 `s!L-X2@0G#vFÑGCs``6v<|JGc10Dp[ 9`> 2 `9f[¶C$f 3"9Cr0fe4ɐ ˑ@>Ν0H2YluhF@MQUچi>.BeQHUT^?BJ28##fS̉!"@|ؑ3aHk r;&  A"893JVc"0aj CA 4RdB>EC,$3!AC0@hM=i U i u4AڄN Oaa4;[MVAݪ}[tO~4z}ޖӽW׾~_{NۥiKWiXIoOmVK ѥ^Wo!) ʬ.9}dMDt]]iTpo:y 0CA5 J&_6x )QN:./i"q„2 v7> YPʅ Hs0q"es!&@рB""ErD3R 1͆WX~ " P "d0H!i$@±; Zzaa4+AhsP0M4 49;!M ^_4Pfvp;Nx_}ڮ}ڠ۴׻ =%_'Tz~}mOJzzM]]5׻uMwkޱJ{kOTo "6H5"]SZ^ {\;~! {w괷k d3C!^Wjqi& q:)?y->LQCfHCC@4CfmH1ohp U Pt~ ڮk'i}JD_KH{-{j}oL_.u^~__v_KKm.+`uMV~.]ԁqJ5_!^CCp_wwi{(/~@("#wzwWe֛ή ַy ^# \rHfJC,sDッ_ 3H.A!=i\&߮ ú;tzW{uOwK}VvW}=Pvt ~kkMkvoK[ P(` 3z}{V+ bm0]] Ko[UPf8(SOMfD]IP_²&+j=n]oO>ۇNޓ 2 9Yj  qo ࡊAD>ߤ!{. BO @MO_wӆmS]R[};?zi}=SN~߿ ¬5_aVo&nio?@ SAߥ~UӾN Ѱa4L/l= 7k0P5M{MB;7 ",}~auv i;Aa0DAE3Jo} 0fJa0PՇ"B%&qB""#SaJt! Aa `221s Ʊ(CaE ܧ>ˢ:.)xeyD:`^9 Iۈi~Dz [5`m{Am{ݻN7owu[[uڅpӺXkյUn4a8M5 UL/Xk۴``զ5ij&a4 XT @a4v C83p\AQH ˜rAwLdCk;CVƊ"BНЈDr(@}Gw(&]/KVڏS`?@}u_2^>[!j?ٺCU,HkЧ 2EN}ym-5-] 5[n.?j/h-.SKz^Z Մ(^};I\Ah[Wh:a-zPao"w!z"r)?Am܉ea /a"]ȓu-K }tnKJi! ]ikNkVzm-jh0J"R5TWQJIS I[]nAtjt"? BNυ^ ;B.D~?,i5uOoٜ|>k}޿u߯C/k.w2?_vPhܳFmp6Ii+HT@@YDn z!(疞 g.P$cR4\&x. ʂxAg1n@ D+2}!<^Y@ڐ + ., ܏hH*@1rgtex(RG"8HL@@ d3\2Vxc 2C/O"x NLs=!<T""CVfe0GFK`W"@9Hr).j#0(H!DDDDH$°Et& &9 Ar43P` ג+@q rN&9٥ DM r].9,炠bHdvG-.B""$>Gp<1DDa7cCfڕe'0Y8[ S:aBss!&R&,.APs4tlpɎ"$3\1~$FHm.Rg|#8\c*ك7:8dܡ` Q)# [ aArIX."$fa7#6Xb$9!QdppH [ x(rFB"@:# Pr6R!5  ),a :e9N$cVA] DE46h!L";#MFrˁDIYuDGDp<D5ۧMInS%(Nns <BCQI v&PA*MGex4ih& Yږ\ nGALkaC< 6+I \D867Rh&,"6ˁ᜺ ICЈ1#rj`dZimp%@<KmXmn,o.XK 0 Eᵤ"8Y\<iT6a9\` %XXIK+Gp@@Za++8 BCX% Ä'pQ])Cl n &xin[H I,Vlq < J(MX@²f![fj,$;#5]&,hRaɰ0<4\6 "o\TW K&€xi ۄM28D|"fPL8"7QxjJ $M BSGI 3h0r#m @n x4`p@lr` ܲ7EAP]Ä  P૫p`ܲM$5Ԩ&,GH-A/୤ @a@`xk $x6*&FK!X 胛K X f L8I"P X ԐnY^#]AQc&FI zaYe\ Ae&  $pAeXdp<5H(4pE Ő<B ,YRH M'x*`tB+S@<" ́TpAe<5ˑf ) lVEMYhVfh&de  *nYh)fA%P<4h+P,"8t,e & % ; CYg = %uY{t:Öo*;AYo^YzL:ZAY_Y AC3 pa%Y`}RUdT&%,°WUI@F]e0xA7X KàV+,zA X ÂE0MX@4I'ጴf*}&WeH0X [+ ^ `9+ a, IzM p oAÓuY\{PhL"MP',堯iu@K!8,HzMQ,YՇ tnux W A I Z ,C  Ϩ)H7 ^8Gt7a&A aUhnEP , A (X*4 &APXDZ J7) aH Dt$@ݕT, CA Aah,.ڤ*%7 qG8H@Av7AYh%} Óx :`A7aB@7[nATZ$AQ> %a FppE`IppA`)%S TZ&*uK-& AI<$p epA)U:z e4JMp@ XB p,A+74nYALy'$'I6 a-Ma *,@H6n,  df,4*aɰ| -mf a A:ICX%ID [Aq!ʃNS0D7K*kr;-N+- D5) h \DDD˂'L$r 9.&E Bp8nXKkDDh(c9 `Y ԃG9Fi!p@"ٌ#"IۖB$)` Pr9D|]%mCJBDFG Gpp3#fG5 %"""BeK9--R#$#q7E8lmOAn""$#v\ nCM§ *2DDzfM`(x4Elp00tC] )DDJf)/  .|5 ЇD!""CTr942t@k2 '"2 r(Pe2sC6":3DDDHe&9Uo".DD283 OXSu<6AM t$P3d0糄+YvQq Þ 9MӼ[@R [ˢ|\ = PkT,@#.2:#p3qA$-450;*ьꋌ!p3"_#ĝX]DDD8!|#AT nDIb#p#dp< U"""B# ! KNY =S݄r@,! R jH]:2T o` VLj2!5[m2pB, p`{mS" +yg m2@ޕd2RV 倵\@m׆nP V@2_ Au,a | ܳ2%n]YCϿ bG)>׼6[q!8/otѢ#L`'' o@O~b""$8炸GbmwDDHA%"z؈i!lb"C4r)H0dFGD E""A +vuK+㧷$C8A~߶9!ðA x}a HA [EBio4ie _ 9 "P_zNHfyR/ӱncx_׿鈐ʂ 0sH4 R/__L/fCd.=C_""F28.^#f{ ?"g#<$~Ј#;. G67 u""$4Pd|d"!u؈ -Џ>GDvGU5Ou""RDpv(=f!-wOzU~ֻw}u?{>_m} e}m-z/UNx{ ^Oi_z;64M'Kl7WI0 7cH/a^G׆U m}'D,wo' ?Ov8oOV`Okaw[[a?ݶ+{oM?{h4E 4OVKSNwD"~o߼: Xm[_wM[߿ëoXpuoީ _  _|GihÃK}kDY @WM."45B"a +_߿q;P/pZOiDr{{i-Ak醒ZIW_u5k[ S $CcXK$EKVWM2i¯䌊؋.]oK\bB[`h=I߾'M_-F97 ¯XoDi:YL>.ootoAv{e{HzkGEpjAnI]&UprWZA9" ^}ݯ]6L?Sl7v'6_X&cӆr&R!ȼ]$zvtP̮֕?J{~VokWWjJBR?҄0ֿmF{4(* =7V{V4.87K_/W؄_WװL_xi7 /u}5 _U+{UŦJ~0/u}u ?AWtM"AP?{k _M_]6 aX~}; ~]?i&+_l-\mc MQ}}?]]u޽{W[w[oO__o}g"6{'WK}q^ݯSM_?u} VmzlGIށ=p+~(wo-]_A[^oUuooL%oz_;_߮7~聉u[AA!'6 9 'hԃu8h$'h_5Ml` ~M#//@ki=Ճ! um55yő0ͼ/[Q dX2+Љ`hzKVވ_5L8:+oK.' ~7N(?.O? 6nCakm,}+N%u 4 zCUW8Q參wFCpiB z kz {&AOa;_vɰe v!;&A+vD2 mmeto򾁳]^3IxhUE?1mwgai:.դ^߂Oims$N ̍Gi>+ \'kJ)Hx%l zAh4wC>nu[oiC .AvmdS!+ r5i .[C>v~Tވa_zng"&C;q( _TC^I{*hJ^VM]ê @lKh2r0w % @,ȯGv^ o_ ?ې/bk0z"lտ/13$`5-]}AQo" mWiK[m/ 뒳*DY9[KD1'_{ <%r CWj!d" A^_h2 +A/  w*vpdw\[%wgxт "w@ۡa2 K@#;56{\Pk w،띗ah5`%l3a3gecBET_C+W(b>Yv ay 0>o2N{{ o?o;%X$?mWHD${HYOU\+%!8 Vwt-~Cdt"eck-&od2wXc@?Mz [ $#N"8>v{Rd\| H1'xNK P2R/]+/L$eA_!+۫~B`BӄGMBvi[nM-胫 &U%aPV( aw!9GOuZW**&ğ'l+~%A}ow[UI:+"n׿˶D]?T < mߤxahi*} P{TU.ͮ[r Z:Tl{`̊}K}K A!q}B#aVHiB {I쥈eG"?;+Zߦ`r+cQXTrkLl[&)̺o+ $\7!l@>o"@4;I=CB_kI;jWY A2 Ws0P }KOLu/ôPppִἷ0[쇚%0"}W$v#V >&]sBd<&˥> 82;Wx" -m^ 2sUoL$Sȫ 'w0p+MC@@6gzaH#GvM l쪂rʭAHLe[NA݄ ݠ&ݠdp\7oV L"fW ۄ(dpftATwPi_ ׭t';H7H e9/ ] Dxsjo giXc;A(G_֑x*#vvo$t !;VXd$Fߠ3Mcgo D3@]RYذm HC8Zz4yXm= a'x2 [W},»

O\" lU82 ay81 DMLUz[EW aPAy2pgEv0^F2 en[ [I`ʗaA84-lȬj m'<" 쓕@nfZx U ko 6< </+ UkWi 0<K&D0E td ]oIh3VL=M>dA COE֒l.&`~7W] 􁆷{MUX2 vb̰%0Kao Dt _qJ) y H.n@ 17W Z%dь03LaW[). s@Ui OB莒(B|>vZ徠&JAܳ`1RrMx RLOaL-RnsF5t & y\4W(tA\;&; } o" PM7?I;, Z帘|U nK(Ѭ\_ D1 )+;"'n}5A@C<% `,ʠ$K , WP,A@0'wL% ,"l4h;{wh5rCm8{L ieW taB-7 \&O;XSCoi~JMEnom7@-*oԛ" $t& ]֭-u&@W| d/> 8L< &€WDްa B]#olPWa}@Y~ 0 >a|4A(6t /m6+M V`;A~@sU4@܅mv !^"$@7Ll!!d%t0$"C0rDB2=zXuib >-ߐD'DMhu"""CP{ X%kPYU;T.83s(+%5D(† Ao{$D _""UtHDpK Ih  iL&_*%^Zփ"S K3M= q%UXA0% _4K__* t" +./aUvOz"]BIn-&H/Vw}/׿[0Z-JKR-(%Ke AH4SJ+;)@i+/L( AXM_o $+nW[AI/w]JzA9ܡwn: >z\|`5ZB:\&v /A@'{մ7OZuA_# z kն"#Aк,_%_o k׆a+[넛_ow߂ oZoRCMǫt+k*~? mz{-{_O| ]{wA􂾿U5-ȡW ;$Ͼ w_k [k AiKKKnzZo I{*/ xSE/__;{O ,2 +~ _~_%oH%-^^~lgot}ҺAA 4 tWZG2Dk//߂ AW_/  ._h/IPAn3]_ /A?A{^/\$w_.A{- [vV;{ߥ[O  %i/+ _%| _/%]HҫO;x@@_+~~]z^]W_/ w_ 넟_j ~/A}(KK/E eOAuKT_Mނ wI=BoKK%W[H"`^Ho_/I% Wݯ4AA/!H"Xo _۠i}>  ۴6%u mW7":/a$>ޗC| ݄[ذ@{KH/ mM ?azu*_%}[@+/%߰_i?Bw ^A-o%][4/oKA{/.Anޖִ %!$foA~%KZ$֒k ko-p\%nA_7T4%턡  -CJ"]~ ._ݠwT%z jWJ B %\a) ].Cmi,K| Pvl }/W[jW.  D6͍B`~ޗnk+\%@ˠm%Ab Zm4z%AWOx /ٰįKk/KD6͕{*׽/oA~dZ ~uKChةBK/-nޒbEOJKՇA/Pj̫Z Z?oA_APս/*| 2TKѹ Ii7]!nJ*J %vJtATs}A= d56iWX*2<T7 yi u w R[G]?MzZT/ n }U 'Z72I%~p|%ҠD6& A7 K{ W$ݥVAi+5'&| % _ 7 ^/i?U _& V+UۅZ}/ *[ۥw_ ! @^^ NK_ z^lK ޫVQ $ Oo yn 7z/ k'DEo+^ |$%+ A}oKrnA}ޖB = ZzMO`PA|mDLސZOI%| JD?L>-aUKZM+sPdނo_+/[@@] x@oKp| ].pPeA7Iz +T WWu^*&$" Mn~)4)jWA/.7p`'Aw&#A/K'7Iv/ $g+i 7}&Ip@_, 0$^X2?i>6r#itY F+J 8mNfEqaZ^,^i^4d* J:WěL i W@4& +]EAi (tGQ:Є.6%Ix بZ^)6Ti/@jM&Rn8AU&]+)Ai ~]h%d i a z M8L%bEf$Yf+w zfW(֒~v* 0e94z }(I33~v4qd_h {I| q" $OA)dA ~v %R#a< I `W,@z63>D #ajYE6F7R+fC<"Ersj'sPhN"C8uhhDV_)@Y,KYyXx3@g"@gH(ǂXB$Yʘ3(=# ͥ,yB聝AYeDŽ9 LA8D1eA[~hBJ R Dq $33Lă܃tx|Z jrd$63RQ426Q>PGÐfLD|;ppD٠LH@( G H53}- .qĂz(v] !8A,x}"F8C4ԪYaia!GPe Ip%?x9I(: 6]$M.זu<¡".<3)!!#.Vc%$ij'T7 @ 2 #4B,FGQAF|6K0  Q Dp4  `HDFeT%kBA8@GXHΕMy3 ,@<3!J]l6嘶 L -,P<+qHD1F$HYA]"%@dj`8J"I E7I HGzMYxdLф!Pd0 Tޥ6<6&}MH0 [zDԍ`!tH}ȸR:[z4KoJY`xVӅ-!фz JݤOA~Ue\[)i$)NՆMiK*>q`< B|D+xCA)eKB nRʨ$H.MJRʪ2rt6$ěVf<3-tk)iS)b&hB HFJI, d ҉\H (2`, Zk( *"0(JZf!ҖjZՄ&yh/hZxf`҉hKJZxfNd], % @h]ӨфRՀ<pN҃ x5[A@RHԀiIbvJNMB٠L("&  {3i RK rK-U<QaQ8Z0xAT ^-ii%xjvpy868ᩄXA\a*T+XE䓖(pd5 2=W-qmArטdtXb ׬2L*@ -p R r!BHd P(eNW!"# 'UAA8*<d4">GD.)( K`lC V U-@j[ A24 feuk >X-GQ@L >)LJM9t >-4jpT-}0Of B hP4a;!A 4RF8iOׂ ;M4M4ト>᪅_^iv^MJiwzګ(!P@wx nr SZMW~AU'm0oA{ЯUYzuU} )">Gz#َi~KHȼRȰ.wr>K`_mZT}GA2 !&C3c8GA&24DH1R28_aAVB0palM>Ȁ1܃iv!4AOY%?:0݄0;}zݠ8 o:_>;ROSwҾ{ߊWu޷U'vC_~v?K4ޯڿ Ý}Dto!= zo8@"xm]B"_肀x =կCyx{K8NC-GHr_mZXz] vawNk Xaw~4^.=3|zoS[ g[] ~xz}h?_9{_A>.v kz{a^umU4i nӆ *zv0T_B0&oÐj=]U8h!着 sCvjޓi"a@LuWM0#Ä7yԆ>۴B#uAth2sJWl!wwlUe_}?=k޻vp h0׺? Qpd> z:09D3G)lu _m]{z֟{tzkkD}Uj׽?vjk{]up§ Zij5  a K4b!e8&gh""BdàaiX2ЃDD|j?@}@94A  a.S0*IU; .WUu5 `pVpO yR\ = IJ0*ݭ5OzZ5J6]Y2DGoD{1m/~@r)@0BGxsJC@&A#b`flr dF>FG ~ 4FN y;aU~M4&h; '_@tUO;Oa>ݧWy*InW~[*{ֻֻj(wo[8ӽWs{]פ'W!_O^w[C8dC/pZ_@kPo'Z Oigie/)VkKOҐ!?N{ .ޗMa .֓O0:]XeǼs@"ӏ[kt!^ Wzk_{AoOt4vTVkZr?xzޟk<>NamoWֶ{ovv5߮ 5a_MӴpa0E\]þZON B#o4 hF0C r Q귧 @?}UAhaV~ӽ]m5$P8? .C`dzp @г^gvhDn. Cw)X_t""?n꿽}،ckﻧ'{nWn:d_ . ^'B(h!^ `w^mq{oZ~ݮOM[ v~VSSMokzTT4V54;Ad :aafLD0   ЭQDHR# t 4"""w> /ProcSet [ /PDF ] >> endobj 17 0 obj << /Length 73 /Filter /FlateDecode >> stream x3T0BC]=ccseblUeɁTA300FbcSk @)w4D! endstream endobj 16 0 obj << /Type /Page /Contents 17 0 R /Resources 15 0 R /MediaBox [0 0 486.019 632.508] /Parent 7 0 R >> endobj 14 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/var/tmp/10089666731916source2.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 18 0 R /BBox [0 0 486.02 632.50999] /Resources << /XObject << /Im1 19 0 R >>/ProcSet [ /PDF /ImageB ] >> /Filter /FlateDecode /Length 20 0 R >> stream H*2030R0B3c#=SC039K3P%+ 2 endstream endobj 18 0 obj << /ModDate (D:20020211151431+01'00') /CreationDate (D:20020211151405+01'00') /Creator (Acrobat 5.0 Image Conversion Plug-in for Windows) /Producer (Acrobat 5.0 Image Conversion Plug-in for Windows) >> endobj 19 0 obj << /Type /XObject /Subtype /Image /Name /Im1 /Width 4051 /Height 5272 /BitsPerComponent 1 /Decode [ 1 0] /Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 4051 /Rows 5272 /BlackIs1 true >> /ColorSpace /DeviceGray /Length 21 0 R >> stream ڒZ6D~@`"Z!&ڣ%E`-G 8H-1' ӯޯkz@TuE0]q娑AfEsU]{CTv 8 J>4EA/ wrRaq=!V8p իj [)Z?~Z c-BA4Ur>˅Έ;H ,ڑp<2бixi >JYH >Ȧ'SD  e2qb"07`.G(6DfR*< 2e* IH RĠ$ .A0} yö, Yby\2pl6Z`%-hBOZ*Sh8,% `[2p(#/ 13eS];Y YA )@%YF-YUZ^0nYD9}-a-RYoK`C@Z#pmD 2 n27;ZuD5;XlA &4vp`2 TC)4TTCCs0إDn7p҄ v 2d$aH%a,0aI6`*%a «a aa'aK aA` : aSJ' 2@>ޢl}7IÄ; $a :ypà$[Zt2 t݆ : 0,$ 0H%A$mj XK 7ZM1 Ul6z^v ! > 0H%`I/`ۤ 0t^It 2zKpKl2{YT tK`:EKvlŵHR6$d i I/d2aK :桔:Ja W0$a n aAxl0eP%m1,Ԯ[ 0li/n]L pb3/Pk`%0aK 0I8nV;YX`I&:Iav Ia4N4l%axI#*$p :$aI/l:Ixa$ I*pJ l6= ^  p$ :In;%`$$0Ka { 0n[ :Iw(vtdvJ%aKp0 2c^[n AjK :Kn na` I8I*0%t : wg 0tb C3caH&.3 /I!aA n,28.,Id+ ۰ t0 dB#; 9PtQRf >TZ; DAR .[ 90uJ6v$]àI)3`x4Ⱦ`nVDD&@Q:I'Ex7#xJtDn|y)h:H$Lrא<IKI> 0e9N@u@ mdϵ7EC9)HLp`$#3 9UHI0ˣ 9vT( ʐ"Z1tK@I tHV&)`x@`$w!Xt@}!0+ZC^$]\l $4 RH"#G:I:A!8G lAp<4\RS!d]x2$2 HHC.I.:>X LgS ٘Tp<zb x!$#D6I4e i#ˁc<[ 4G~YS#T'h#X#A,l$JG٠Adk9#@>n\5HҗA%;! א4#%<e/ߤd4@nf]8PHD5a52+, 7A:_d*a߄K A8Vit"iFA` 6L 0̕&u##P<Nڵ_]#GVJzGa@x;KҨAһKv*Z] DҨ2GSp< /4H>)qu=RzzpzGb 7KTC ooא (MR%xlAB28{CXCR&a".ߥ)pMiu'@`7,jH[҄@T6K* xiTK`\z x76~<0A{@s,N, oaw'7CR肸!WSTAr[d ~ /`oH%dw{~0XO?m-老A}T`߆ ? /Zd u $ai%$c^<0{aK=$ 7p =aU01 /itTIma.T5iI}>iL:_k4 ݊dS $tRc6Y?cDv 0g5D[a7m/a 6  =a^d5$%mm4d2|mi`=_å v_v_Aopat\pua_pW첋 l%3K7K|6kK6GMbd5Z,5].]; k/~vSX6wᇥ0%a .6GZ. vX_n뷯 aAK\m}iPtôj[K 7K`úK;DE1duDGVЇ m#֋h".`oClU׆ % 07$õ_0nV_aJݿnT J6?`ۯtoe`Nuo=w 7Im`ݤgU0v 0xJBjvMiԗU>CT}nS1I6O[_zVuK]{O/_ }/^k- & |WOguAvu[K,ի{.֗]bC +Vҵĺ)Նv (k5?_!2ݮ^M{ׇj' h/aoK Oa5iK*dkkkNO][K;M9[*)ַ_IzdӑL-Z׻K_Z_m?[Ri5KW~CuaJkUna_⿿_]}}鯻Y^_["MZO~C_ń=:k/ZbJ?Ћ oWvU___mV _]WZ~AxdB?t7TOn)uz~K{ۥW_ Z ڿ/ݫPxmmSaVW`,׈Bmt^Jַ~,U~/߾׿oZWm?_yoׯ!murﶓ{\'{K-qIʆ{F`ƾjd-c8߆̎Hз;[G" uh&vR 6428.G 7m#0 J sGUwAX" D'~tJirfrvk9~dw>CkZH#9_R_rq{WKH௯ yPsRu-b0) A^ .ikeF#d rm*ܵu#aH"?Ȓ`p­&ZYs'p .8Oyj~qaH n26 saRaRWϢdaa28diaQs%\!2@6v,AvAL`2AaÊaL@%N0>r p9 r ų [Dv""IL&3]F$b G. c 0 ff7"*~lhp[a)L4A˭9C[9RP$"W )!cAD]h"AlL0+0[ [a+/PH,[A@l~˂i;Yj?dP4#`I:ޙs#BiT1Z#+31oL2˲qr#wA""Al(_l-[PĂj9Wo 8S( HA<_jH+9RXmud2@}d2rܧ2w! #Iu?Pd';sQ2ݜs7 u@6{8F{ֿA,Lt[wN}={Z֭O-&Yom]jd_IORvrWvk_{~-w_ 鷺__w[Ӵ}}BKK?o2#֫L ( `Gדe6ii.}"UOֵ!m݅Ua~KVudo=?^1>] i{=V7{"^!D6*~Adv5LZ֭"j (p{WKPQ9Z߅Q>]oAOZ,ȸ0[#0w@J0Dvo62_ܯ,I];M4vʢ4͏@솠n:ֶ]"MA(|[;lqrح(;G,L3>6?w|e;_A w0Ġ4}&2G¶v`1z~!%V?u!Iv)}v5#H ܁uRo}xgsIn喀vA7o&+Iw^ R+M7(C j¶'AޕۿԃwH U-D?JC![Sumj⠄}[}yr!8@GH[_[l8ه JBKbWo| .Ks/O\?OqҐP0޶=}}tTcmW׷+ l"ܷZ6iᪿK*v}W3 " *k}\KrPFo n$0_u ?pԋ">GCz.&:">.7ۮO -{$Vn(SA{]C&i[K'I<{v@$`$R YpA}Hf >^J= 4A(_V&w߂oh :{ozل 0{{}Iw\ ?L?[lǭݫy5_w鿶l_}{۾[+;:k+c[ֽm' tU֗w&KyϯjLM./nAh:i/kkVAh'! _Er^ R)ջx`vʒXPN@Bט[؄5@v\5W|>!aVa}?mX';,B AG$֠ "a` <"eֿoW {RZkN $[ۦkEqmx L"+[Rӽ݄ev c T-v^ؐ¥[o {l;J M]Kح L#Dpm0H3/ۆtB":HA){]}22{ Zz^]*: #*Znp܂PDUWak\X+WT:n#tD1!" Whpöս7FE ݿn^վAZk`o V~ a}/0om?E|DpWuZHo_V- $WNd!Aiؚ A,-zuAā 믄wNS\׮oqAS nO?mEuV\+ &[akEs@U۴2G˃Ww0n wa+\;z[ Zȴi [-vY/ê#.7Xe [l6""A}h+2p7'^NX$[dpT?:l27]$`C -0W;B<ˆ@m+u ~w\"L6U}Օ]8d7p%[i]l& 2aoׄ _; GA ÔRbC 3kOh!gLD@enK넒z `Ѓ6 `9[kPUj 6. a tCVL#TV9nT- 頁i.m;G8+Hy+ڶ% ;&8 aPdޡE@Q IXD3V 76,b=mD5` $12tn x6H6C]i[B&Yd#9cr|A>C ȹoS EEtt$Ҷ zU [pm&KdsC aAW0V@sZJC;u%ޓ F %OM__Sr@ %hU5CIMp@ATsE ^T -ɺ+_ȒV!Z_%W~tPM5 w&怦TT AO u@eHޝCTreA=0+/~ t| 48?Q A{ B }Ip7 KtA/z p_[ %hn%m0d C[I%QVCaҪ&@a-~.Wpd Mv VV'Wxkt@`Lʠ(M+X~.kSm)0'@a ? rd~BAY0Y.pO!B(4¶҅Al$7uznKAI3!`<KdZQWtxA 2TͿ & ݻ\6 3&*aKZd A Wtiei  T%A0a߃K@`ӃD.WNn5SO+)n;o\" G t?I&m֗&@L!M޿PHh@>odO׭; ]E}*kd;CG:}t O : U M_렶uۥ̉AG_ᴟ}/]?Ot!t_Kr1 { * v[NA_j#m?] OOOoZ]W߯!tE"0`.B,Pm+[T a[K s?m'[ 8\ M Mԃmz| Abol /.aih?I>+ ӧ(dRk톯 [kWm&ҴU!!@kպt&?+ +[ok׭7kIH6 ~çN^k7rǯ-p݆hFA_Iwov鵤VS u&qnK$_|C#m Ao_tA]_J7 mm/364h,Ww%F w{ D2I߻[d#sACdB:n/ 4Uy H5 ۥA/}$.NA^ 08HfNjvPPl4;. o\7 l \h*ۤ"]pI !a ; 4Gcg ɰ/o'!y\=7m%E]*#b߿(x3`o;mm&ua;(B/ۭ9N _ڦAj{},;qg`hB O y I ޱ @[ 5JA.ᆂ੻bDP؄VڶۘM 7? On a6幐+kM0j [i>6ڤC3HJȫlpxqnAmP4*M+[ Al Tu}l4 D1`קpXKl.J"wO%j:a~ akp@T%j: zzvv=t@IV/Ww '`R!զnCL>vA}ت^C 1; 6IktP9mT Ċo2 Hᴛ=A Vv\"{kaPKBA5BAۑ-m& |AKaf{aӠ`g\Kݵ/ K p҂MA8,P_!@%G./mi7H4,.aA`2І;4K 5a0Ӵ,q"m`>ؠM mVG !4DpY ZۅlKņpLi{mm,Fd0(}te0<h`} 焂~MWUe H@@y'b  5 ņ+I|gё ;0A_W #M NK~]]C̅$3pj{4 [8h qNvk 0Tڱo;Koِ,T @8-zs!x4T_oP8)%xpka.{ Wga]6VLdM>DvV^P`P$S`_wM.Ҳ'L_z;D -2 GdvG@l# ۆ\0a D6LջjzvP6#KA2= 黄CKe$ 4Ta)07GUox% f ~CMk{C-HqdKr~D! o=@s mU-WU@ãN}Av( Hqexf~Wm 7&e v-eO!%9{vB^áh2r+bͻn is[Kl.C I+@@(_ZA<ʙK׾KZKY ˑ5 RO-IAsKw_d =aG;@"lIHe^/"jivׯ5aZzMa"Zi2̪D2vXARWڂwMsPhJMՂ!%zI%zh%ae![A6v( -ҰnIfPg#NK04+h$MX%m\fi+m0_a _D6~ mw0jH/Vɀ41_ 7K]XA$BV޽ډ zmBk됣 {6A ǤiXTkaނ :Cۥa" upzVOiԧ d 6p^ t [`@oHbl`wKmHi0v_}S?mjۥ 2(%s!`km&ׄAbM&S;} M ѲƻJ́KխtWPAZ_A:MҪ䡡!I6_zpD%]+Wl M2kh&҄a"84U_M] mt_n[~H5t$ڤ NDMpBqi@koI4I^R~WAtJ @6MSz j5mBt|}&-I6zTW [i$.St`@+-I]$'^NvBiki$-΂խ B6&ת [` K 7#@%3nf zQ %nj[:I= ^&J$U;~I&gzMFT R`%0@C!ɛ*oj". t$ ,vm @I`֒~'zmnWzB X/K6JpM_n-먪޶ o ^:J6mz[ O]m߮K]6k a@zOl: /k9R%n!摠wAWhn^ 9OAKO}/Kwm/]vݥ_oqu_6ޗA~/iB6KKav_-ttat/ắᶒ/7A_^n뾘z_K]imz_må ޗݥa/ ~Maz_m{o_۴nmo[k^na߮Kutu kWu ;lnC݄ Gn]0KC}_I.7ua_IOu ۥLת ]+/i^Aޯn Kz^JVzQ6tnWU tM 0޾oݥWH0߾z mVtI$z_Imu$ޕ]'ta}CmvYy/ۖhl7e e82H0͢WMfh^a n9( H6g(ˁ೭&쳃@I- f\9 2҆ .t[m@DBV첬=a唣/ fTyeHH2ﴃvYMr9$ tY"8Hd+9T=&L2@ค|aXzA, "6B2< pGۉ$ #xz da t^zMؕ U.pXmbyta T3C 2l#Hj̺9uGf2eD"6%n$d|d!arHdÙZ+2 c =\. \6W<\2CLF̒dA &̀di0ސs"tfe֓d|d?li 8 $6NAD6!GD|Ճ! qzL2 p6!9\(7! 8aLHl S`jd d2]d6EYsUA2Y;g)dK`ޓ 6~m <$ ػ} 0𕾡҆=(aH l70% =+z u+JPPdgWUAz7Շ0ޕ҆ҰCxJEaV R(aXnVxJ &K pV(oJX=vA(aPaXj(6V"-ŷ 2]i' 1tz],z]H' UKpm"=l a%-u@QTzMXxIaIAXt+JaC֡°ҨmR`)P\i=*naXv H[xI+t` +-[I I&؛z ჰ oUIpT0ֻKVôH&Drn~+^iȜex5. 74Gj7YAK8Ht7)@DmQT0yp Gj7 /W 2n#B$fa¶Ml HO G †6S0jljX2l'5M"f 6 &0YɳX]#H+[-< e)An* +9!GP x+YR(Vn-LQ "-ڹ3YXeh^0H' 0ᮿJ;eW@ Wh8l+t"&K`x 2Pb&Kx5U/+W<kaՁW< ;`xkrx,n j%Fvx5tdhmXKYb2KTDh2GBZ` :Aݦ;U*#࠮8 s/G"9P.4&]gbACnrU+} 5l5i[ېakק`: kw;]u{aam]_{m]_Jo﴿@> _O]GAXin"{_3!Uנۤ]>6+]pe+P9i2 {vAޡ;09DojCETZ WI7'5 }"[nO}7 A{>}XauDE& %f`_~޷I^ ^ݵڻAwV_Նz)4h52{׻Na{T꾿ޚ 4T]v{Mv0AAT&}L&v8 r8)e-BjC7d0a hڭꚦ!sm0Aϲ9=ai`LDL&4i&6 \@ETU,a5 2]a0&0A}0h4qaA2MpBL9Ma!Ʌ /hF2׏RکJ?,UV:+)c@F~XYQ QpəAӺ[Ȼr ^[!%#"b DZ`0OnZ@܅t^Zhyv{#00GGH;^Za`H.HH(X ^hdG !  4ȗwk-H"kE˙udpu荆hB!8䦄@DAdf (IRhUizMC&D4` i!Ӿ ޾LG/n4h;AxM;醙"H`4N[M;pT^Oރ;Ukީz {U4_ڪꛧTߤN?߾ުS?^Ҷ4iޗjj0@ (nN%n!:nAFA"42_yU 5!6M! XW C1r(A jӬ 7jwt%Hl mR|7u~߰j!j @cI=N ЧU\P@:D60U{4@=;ЎWM+w~Cc8iջuu޾{}[~xzۭr RqH7}O# _m=Æ@_P?T׾f `rĒ?o܁{U-gֽSZnOwgk!]]}_߿]U?~j߻_m'u޿W֟Z{y {@Uk~zk__?WNa*ޟp_l^P# w'TkabpaZ7=uv UC,J_[W7}/~WPt}[\'}׺+!Pv[l#\SA@~K)p{׿׾^@<Uvkn\.^8kI M[ XK.@p` D9 =jMv Xx!m_cb"~}nw{wINmziwo}:o­ Wiキt;NkiӃOtvZ۬0Mc7 Wnp0Dt2IMV}4""=zaS9Zj~ i gKߴM>M0a09n1ߠ…NSiih5R6JqQFϰPXj P`pDb6"""&4@aH\B"?a!m!G8B(rf \%5"/V (`GJ4QXQfc E;BzQ_ ZaKP8nOҮ.! fهx)o[KTV[]-PnU9Nu~u_(Z-_1׋L!^ .Gf,[SUi.?޷жZKaKZD6 ղ}8ڼ"VpBHs$"^ZBxiax"g xQ,RH "P0~"V@OC0HYC< ͗"iԴ i'BPPD3vT,LpHO2 xXDZ@7N6|F*C.Jy6%,Ph@r"[>l6Yղ xhee6 X`Td@YJDp<6K44xf`xf7TE ՁAq <29ظ G@ʂ Ҹ3@\ 2<3aFA8 CJ#]B Թ\OGQ#,,Ad\! t ̖iaH5Q_- @gSB03e6 Y]@" -WDp<!'eAC<3@~X,@i @xeRx7 'xfp[ב , ,C) L8@47`ᥖxipe [@xirJY6p<4VM b:d\G, x x5'在4l._,b<5xAeqpP]%̽dp<2x2eK X|̄k6F@x4rΜ56QjxDͪ0f9dh-+ l$O}@=qx6kK<>Z SG@\ R:ZCWLP_m#A-<`͢[K@XjG OyBnB#۠3xi(D5f !;҂ Cང(*&L ~[PD5[*8RRV_ Mki 5NZ pkK- 2nQ[!k+Ie[ dm"X@IjD5'۩eS u +H  :pr,IAקD5͋Z6W5+Jc$!t~V#AU7CXpIS e0*PP<$!W/ Ac,QnoA$ڄ64@W P]A*xv  K!B`莎 JY.b"I-͐AW " 'YdS W*Z *P$R Ă $AnSq`BTJ‡ n P*"w nTCOz  I7HITdԤ˂]sI+ (Pil%6g,UL WD)` ʘ6 a$h[D6Ҷ (P-Yn6B06‚*(Yܷ) ʄ ۃa.DL/lhAH3PAF( PF9[P:Ax  (I db B;5ٹ\NA<2VA  ;'D6*q6v6 8/A #De[;(P%BC7ZQY0xHȀeg`epW 0pA6'=.F@Rn 2G@jB|Vhgi`Av22lpD*fSZ`EV ^ [۰Av d3\ ́!"8H PXlX56d h!Ȗnd64(Pd3Y{d,H<+lȥ G0{..@\3(I2<ڄ]P2lREu^6(Yp GT@Xo ɲaY ܁  c"Bn HK@p 8[m# Ll")h/HRp!Z  !nMM"lZ{xkmOq oɼ"c#@f׉fJBR AdhО2- 5Dd"njL0at ş6̅oD܀1Ćw}ۄ2fƙ@<5[a ̌4߄B`x6۰?7 dVDpN lGMr"nTȗ# -wpPfm |0|xj Չt0{+ c æ_!l5Pa߂XfrD\ F R& `,l*GM {+28tC >k d 2vQ@h_"8Gܕ('TL7XNA幨p<˦;2 WEX3v1&mlOd,[u agt a4BnB El3yn4Å_ `n(;KIr<a[&96.,@VnvK,GS2X5 'jp u ^ ɴp<J14Ve( MyD' E#` <H$YUa`<!Q~&ŀx+ H:"8f x)IX[ ^ߠ@4i B:aA$Z MR>]ZP„AKf='MЈxw@SA !t}E4n2B;RAn6i 0|p. Avh i./r< thMR#]]H*O&x,XA}mYlH .7*Mg1%Y q _~2 pe@+( a%@ͨ xPFqP$x, F#˸{,h0%@Ix,ӇN ,A W,x38Ko,aAL/^YցS\1A/ud0D 9*? >YSGm B9TA:"*4H,g/T-j2P0  k0| J|RA$ۯyfj`aL.ʪg\lAS,dgZA@d2t `5Jxd1_B2 e& O@R/X7B@dTY`_,uA+7z[2~$BG 0 CAEd*YA@x!X7L\Ʒ {Je ->h*g(vh%圴 O+Ou@=ז@Z0Xaz[c}cUU JGaHdpjպX@6cma-;J Oܺ2^`BIOpAh&-_Iu Z~| OKl/𖂿w-'}߄w Ah&RVtP_O N~?(Ka&bh+AwGM% A?XA?ְW IM`wh/"#@&p,I~-{NOr[, ii_]I n I} IWO_Z_ ć zp߄-,$߽Ai_ A 'ziN_Qa$MM%^!-d* ?Dw+K~' 3JAR L-ߥA'ނҿINXAh' i^%A', ,%A, O-/xAh+'IZ ߄}렟m;-/ -/ [tPW Z nZ i%o],-$/ hPMp_K ~ ,$Z ". ?/胷ZAo *_ a A%A~I%/,IG z2ux@_/-$~_ץ  k& KI*^ i%u* ZA/D1 Uaު  @i._K (UKXH% a-$-AWKI, %IWMKIw UxAa$?Z H$PB -q* $- +I@Iu] h$ IvZH$4 h$_"K Ð7N_ hZ*[xI@]%]nI%1zI_2NKD K㵄$A tA.*I]^A$t*] KA% IA] U *A ] I/&$$xIH$WtP $II R_$CUD= _WZATUI}h7ڤ_ $AV}-I%􂤾UI/ u A~Kid$_% IUp} tA$/AK_VK$ ZA}A:T /.PI y.l L5I$x!tI1HA*zT *R$JvU޼ I$@I(H 4I$o %A$O a$WUzK R *M-Jp.KoH6& JA%*]m $}aI%;ׂ ڭlI]osbKu,B KmAi%I%KijA/I{-au_]| XPVI.|% Z $nz I.٘0' UW^N /}&I)%ݫJI% k A%v JA$pI%׶Ix@%]vA%I%J$V+ PI~]w-$wA%^IW߭, IkVH*^%I%?AW NJ -Iuh H$kKA^XIWK $ %I𒠒H%A'A$ U:I%l%zTA.X%UM ڦ*A$I_~A+I$! J H$I/ *^A𑖈$ H$v $I-0A%XI*K@:J +A%Jv _WKI$,$W%ۮ %,$_JI%ҤZ$AaBA/N$~KH$ $XT-KH/߂XH$z @I_~J }| I AՠI_ dpH8mIO A[K I{ ZI נK]d3bH%% I A$8pI$AnI/Aڄ"4I[] U[ w /BF@J~H%@~*A/ |_ABA{ ֒IT$'IWH%i_m/A w^I./$K$J_e]$K  $֖$[/H  KV zI .K\ $,* ~  Z_AhH$K4H*YI 4 /IP_aK]a.tI_iA%i6  kI$ Irfih KII%W_ _۰ I{P~K I%´H$[f+$(px$KhPݤH }JA$JA%Z(iK&I r}$ MAt!i$%H*A"A}A%$aI/" AA $i$C$PA $$i$J a t 8PK&_ߺB!TSO@ %AI" RH+M$ KBI$K0A$Ii /Cm 4 Ay A~{tUzo i7$$[޿HeK I/MAA$%Ko B $I%@ }uT  A T ֐I!A/I׽$I M]`H KKI xABI,[ H$"QH%^#@ AH^AmZ, /*&V _vS@6Au׮8T8AWA4o :IA%5 Iin ImPyB$Apx׫ AUpނAI_$0Atz a$i%.AewJ;X i֒ /iwU@*I- D ,S p$0Ir,g5@ \G׹4^ 6WkkPIUatI a_4 ?m=t _հ2Q| m%w0}@ ޽Fj~ H/^q]H0K2>Z,B z [ -0h+A$ݿI$[/l*oa Kkamʂ [ ^2P_N,A I/Vn1aKPa /+Tۦ64K%6M^k+A%}ai }=V5lA6[nP ҽ$ H ;a˪mRH0IzAA.-&ʘfIA]H65oըI mZl0H I.բ;׶ 8ZpUP|+ Y+ſ_lPH$($맯pJ$A}֭kdzH/u׶#a$_ﶺj1IEqF[taBA%K^׺ 2AZA#V> I%Ib) VKLo H$A/`a5:A ĂAA(l0PA ml%M4 I&֡MQl _iޕK$@$jl6 I/W; $0_aA$_`$K߻h>=C` J?M%Ik,$M*%ia AizmM0I kM)7 OZڄI%Iݠ@-$t JBZ׮C4ܱ$H i҆I+AH @(zAn4A ޗ,7CT"A$7APA%I*7@ ) A-Bzai TaA$4ªJm솱@TmCh AuA Jצ$y( E$uJ0I%ސ|2‰ /5!aAB %o 9r* e$_@A=매 $0i{ $az}A(a[ iz[ $0$nI%d3vX dI% 0iGx0e$T}ս[ Xa $N ~ J6H$WI&ᆂH$4?oP vA$B;m^`,M  ;_i $ðl IC PA a_ I$ma AU ڹ`A7I$d3 =WҷH =aAl?߫a ZMIḂP ?t $ ?`$I7$=ArA$aaUI) MPe@CռȸkI0|Ma |-oxaJo 4H nI$ko2A$ 2 4I 4^7H A.{n A$ gc+ռh*I-> ?nw d.D njʃpd%:H(L7o{ $  Ĕo۠@H0ַ0i%TorR nI j?j 0Anö$256IA amPH$A59K[i ׾$H0d6$I , 4H(H$Ki1q"%yhA Pm a[XaH$ #]#aI$ Q NH`Aa,e $ )8eٌaa 0i$A Fa+$$aHh.#dv%ID"1fI H&E#\.9PT $j}DPP1 M!`H$@kD0l!$\"H(A0}_oDB$vA\ I'SbP@ZsA[0@YICDk 5!7n@l$I29N"C4rxQ2SAү.\s"D9@ނ߷Јр AAJKZS Y#0vwH$DPMD  ( }L2$ }Nk DՑ#N$COdB'p< $0xO{wo &Mk WRT$ ?[`j [AwְdN90$@}`yRP/z_ БG,$a ?~r^wd$0_vmA<IiIA$CA~q H a}m]>0d1o |$Ar5CĜdAP JPlbT 4 =i#݃ Y 2Bm4# .L T ]1V}Y٪0b@a*aN!tAAr 9r,'d 5պ 0ߝ]v 6ճxi$@M~oƑp<$ϺWAi" i8ᄂ2 _M0^ 6B$a[l[L-n >(L3>~mAi m.·`ᥝJîdpo!8*  P\*YvnO`I&' vmj i M[ fYA$ @j-tm@ 0&87_iX8H$p~ (m 0C ſR ;hm-aPþ@iv6Hi9V îAZ 7𛤐a NIOņi7nMDu jl0mmH \Qi&0׃ Wd7qH\pnk/; Au@ ׆7]-AMx0K @ߵaI&"< &=`Kl$0G;{ Vio$ ;PnSzvA['ͨkz &;Um Ci^@NzL'oA0Zram-JN D8ql0aA wD&l:/qT zȠ0mH&)mSzl;I 7 z,]ioE?V"5{A; nA${A.{m$"aa$| ^adWxA+15M6GA$|6Ak[I*o{wa&lmo? zAIa* oyV [I_A7M`ۄoo]ҧWpotBna4հKzI_\}d3wiSH(|[&Ac2[(pId5CVvvJ,co`[ 7%OaOWtASl0l6> $]40mVI$a8pl7 &P5ޯA vG|"h'ʍoJA^ ۄ $l:{A$ >4ߥa뺠XANm4B$cAEiӦ cX0a{H- û; {H%I#@"J ޒ >W ][A>K2TH Mh%a{фKn2i$AW%\& 9*c&0aJ1\% WzXhBqݤAl&b lN"85vAt6,O287$]XenŠT%G }>Ip(6\&Dʵ3V!һL/nI;.ԪBZ}CKe JkohCIz 9沠&D` 2M}vgHBKC}nArK n#T/d|@T0- ".E[&-Mh t)\m}G -Љ86ּ%Arh .dH ]\4v $DںeC0<:\abe yA0g>[s@fA\L[j흩@Ki^v p@Mw;4I/J! 2@e%W&zmp=/wD1/. zApK] =\ { a_AD 2)!}A\$'-h.5m.\ WHM2ZZBtʖu z\Adsi}8K l oeKi>-.a'zuᆕ _Yˁt._`M+fk Ip_ z =/i=֗-.-|Ci7k àK tQK_& _An-R7~]0YQY +~YIKa.Az֐* .K nA7t mK[j}Rt IpAmA~xIH A;iu& K*zKH6$-pD2 R ۴V.^ @Pn]AޒZ'ն%  ԛV+ۤy wA &ڥV- ۪THA.! _o0mIs%DMﴃ%.ׄ{t o@6+5)$$7t kwjPB{I. *^A\#oApe*6- 2.C7 R{ wa& b]a40{.$oIp@$ Al@\& aEPPK ^ A/A/@At%Vt_I?ڠH,5^ zJ  ÷Z XAP@  m$!zI  C 6[  %IImx@tmL6$+c+ph*a eȱVj/ ?ҭoH6 H+~ H0%A  w+oA%0iA 7uKmzL7 d;m2n AAD6m% v  op nBרd2^vL 6T(#oUm/A0R/ 6%] t˒-a(A0҆/* ;Xa/o֪%, $,}a @,A6IS/H;|%D[aIRl _pmJa+`~aҬ, A*K0v…~ W,-AwIU  A.#zXL F$ [z A aID _ސZ öSeXm @~M8M00 A_jAzpmJ Є~*[ nZwj{@LwH-AtP ÇxK36P'A!^Ad6+J?@ÐeւUIz &JڮPBC=$ 'J^hr(Ωi?P5ՃDH*u鶈 ÔT_&⡚>aC3 jVL0h# :TaHA }l0Dl:T ""T4[7 ԝ-w 3XeHaTAGL4HK!*k*0dt B %ʒMW ,$dLSBkU߿ok)P_YAK[̺ A]mm&'@H8" iiAM;?d0NfaK &`G D'>H`i§ ݧ}@]Q zozU/!]~hw~+oN2Uc^ڽ_h)hW޿S^w^eT^5Ax?}M߿mw_Mο}clf 3ߐiwoغ~ov@ ЎkGӿ;~opIBڠ ޝ QDq /M !U!ҽL ɴpd }!!9ChLPS] !s'B#F|o&_m].'ޟߺU`~7Zw׿}O^ӽ.{[OɸR߯MW}?[KM:~/]RZ}vVK-a޿A{KA| .)_ _,!rQ /H[_A{ / _ | UB@\-.*{KTZ(__ }Ek@vTHo_ i^ iۄ@043h,0nĐAQ V =@P-3҉#a(č(0v3Q5A_ҖRjPd Dp,t R6 %,YAr Z m pYHAK) Pe8e( )h"9h@ݢA m(2   d LRGH<7.g,j ^0z (E]D0A C ~\%grPs}IҖq>Pa@hE@R | K:Zw {dQd ,Pĵ gCkZq ZQ kD[5% K]l -s0< Q ҆S1–°k Q8 A-BGf?hKe:*QemGYHYG`)QrE)tZ@;fX9(i-h0O RܵCDDG˲AMe8q33j+EDZi#ICH AGH0=5 ai@?j#0H0V-aOYtamFفӾ0;[#">T ޚwB 4N#m5;MnM4Wj>OUڿw jD LH}~|{^!9 xMޟLOP9I5Oһ^!kz{|I7} S_h7{~Cezw:Mv@np]S~B|X?3z25_~/hXj}'mD4>_MG^%wmzO_"Ճju]_[ݝ~u# w]ӻJӷ{nawK 1ao xUrCxCw;zpC`k0^ <`? H> ?.X30WyG: w={PX/vy ٵpڭ4'uw{ #L-}{wפ/{ ò rh==?HH/ 5U, n;xq}i;Ag ^~NOkީ @#Rzva4#u "GNTLhFVӴӴ7Uu4a4Vwh4 uQvi"%~wh0@ek }4 dviAw)((aSAK.P!PM ""04"#Y#jzu5Q`KĀ;"Q"V N B*0@12JA 2:A鬴 SM4iVY9TBAk 0u"ˠ5Xwko,0 DTU>ӽx `Azwo'kikviT}{}Uo_}[}ukT֚ be:DO  Q4 `=nd|Hi~  endstream endobj 20 0 obj 46 endobj 21 0 obj 39698 endobj 15 0 obj << /XObject << /Im6 14 0 R >> /ProcSet [ /PDF ] >> endobj 27 0 obj << /Length 71 /Filter /FlateDecode >> stream x3T0BC]=#s0efUeɁTA300 #̵Tp Ct;N> endobj 24 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/var/tmp/10089666731916source3.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 28 0 R /BBox [0 0 512.77 648.10001] /Resources << /XObject << /Im1 29 0 R >>/ProcSet [ /PDF /ImageB ] >> /Filter /FlateDecode /Length 30 0 R >> stream H*25437W0B3 =C039K3P%+  endstream endobj 28 0 obj << /ModDate (D:20020211151608+01'00') /CreationDate (D:20020211151555+01'00') /Creator (Acrobat 5.0 Image Conversion Plug-in for Windows) /Producer (Acrobat 5.0 Image Conversion Plug-in for Windows) >> endobj 29 0 obj << /Type /XObject /Subtype /Image /Name /Im1 /Width 4274 /Height 5402 /BitsPerComponent 1 /Decode [ 1 0] /Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 4274 /Rows 5402 /BlackIs1 true >> /ColorSpace /DeviceGray /Length 31 0 R >> stream TM8iG䞢S!AT<ȇ}z+c Yjș'Zfjph~Aߐ 5}ƻivipî_KZKH)KiRijSZ tipQeӧ帚ln"^7]___舯Ou_PKǪ{@{N{_쁿pf_M) 2;BuM4*OVZҽ}aUv #IRէ]4az״vUGY[Az K3g+ b"?SdtW7ZbiV;_1?׮]{\ YKU}^{!|k?BMT#A#DH.ڃ~H(jijv6b!fY|@dphpvP@Y CHqdqj" !Jf*f !DrE_ DY28fr<)$QP؈9b3#$PN\P$rr ֳ <3ch.! xfU:^28#jt]`t`0\2 9i$E XdcqA<ʰda*A"$4GGxjH]fTA"hD2͎x+ #%a"Sp?hH5 kA0<7&3 v byk_Ap 5C0PAiD YL>@(s ACPhP53 aEAD3+ |#!pZ#0ierLCAv4S|" K!ᙐ;"8,:UAu dZ+>Yt v+0d 1d2hZYKgD4"hj k@Ky#YLG&A[l>VL`AS%R. * dQ Zb;)YAC3S3 ք6 ee% \5 4GL2 ML52`e3y 2lR|G@O "lSBα4ɺ#8@Ѐ"nL`ց4 C('"ĈR!+Mw`IQ0Pp4DeAZ gy aRZ3@ adXh !A, -!XT=0>ܴ_d|Xo#jell XbM([*cA{,@y _e3%Y3%&YV- e4 cP`r3]ZE-H}- /,D -+A]hYLBP<`ڔ0pe0e eP4("57`,V C BԘ5e(2 ,GkV" C0YCd"aR_.kZd48(8ibYQ!S,9@Z`"LN ,jZei,KZ!xB ,@xᗖp`D375E$ )4@ " $QkyiF!Z mj2X-UP}WL.KArP^݄ACRY 6A, \ /|, IH VfN u /+2 gr y G]0iZVq0p7ְDW*̮md)S;Z +gJJM:ZwX" kh\]}m/% p4Zk\J%RYX4rd?eH*)qXAp_ T!xM9ge`:WS-%aN.غhfSӠ \%.pܺQ%ߕՂZZ]7 @H2UH]6$/A^%jB "Bre?cAu\ ]_W,.+A%|Z.A/" H \ [k! TX$fZ}K9%| $V4,3?X3GfMDRT@Y+a 6End4, KX@/TBA+wa4%=ٓ[ -4 Hk,PIi @3Gkp"m,ȱB4j w B 4h2C1IP3HDpts!pVj֑ r>`՝b8(Aِ)f L&XDp?L 6 ⡜ 0D3 4 r !z bc; 2堨3)|y@Vo{h:#h""mŴAaB$Gh8S0H!>y@Epz; #`gE)AYpAʂ@hL&@Z Xtd@2e;Pn0!M` m@-An,!S.A"n` d@#N'l!yi A \ Ih=03ѐ. 4*:h<,pH<L0!D2xDۉQ q l0)\5Z0A." NQGCL ptC8!7 ,” AesTG !D0p@!+9MʨAb] 2!QAr l*AAFW Y]S*4k+A,4"ň!Lq 6A` S!S:|H @AӦ7oD[K0f&&`e, M& ֈ_l, !] \vjJP$jAt@d9ށqJTA 3A0"7)HD3uA`f,0 HYeV  )  PWc7 bm"V2 %MrʜA.,,U2ͦC n(O A" 5@eM\W@f DACg- ArPDui `_AAr QC4&.YGn&m7 sa)g+ kq`L+D  zak"P5  D qPiz;4AܴׄjA]C0'L*^F%JI!4 o%`}1@G a"/)0l0s!pS8@hOm^B nJ2Hg F` 2ܘ$;@M, \ RA @8 Y_ClpU0hYKHZGP n<4q K+ @p o@5pm+ -e4`$YA&5 jL" v1 7A- @M\)yLbvVAaC/w*MA~Y@4EPHpJỈ*B@D!@d)I7 .aɈ" 2&< 20H&`*[ +4`D$IE$+"> nAP ɺX5W Ƒ q)h "n& &@*Rn ~J'݅"M 4ASv7TAaep@Udh 0Ddž/q`eu0` #q@C /%H 6WX+-P"$!@aD$Hv_+e`QZ2 pD3d&e Pj8+ kܠ<"&M"F SA0q@i\\ :m0n@BӲ{' AƫAAa|H=ZuA +`r \'Iܸi`hGpZ ZMM %+h­B&d_+7 4 +W6 Az W+] dZd\) 4E~  ioCiwaM| U)mg):.M%z 6AII"f+`K6ࢶMCQ&̊gz |?Ap_t&AD3cv+amuFV / W B.uwش 6=ڂ]fa\V!WI8\p{_MR `a"XZ  [D4J @p ív_Ut0^L ¯\" k,Ȁo#xh@,?o $'( %Sd&26 -t[ $v y6I@8( P/Dܛj`!d`,{v)M٠lI xamAPbMj/ &hcabGaql /o0M5ԃbP/HH}U0幠k^  >BlP Ao"臡s/*D6.Bh57N!Awz7Gc` h0AU_AKAv6elQXa~vD5%z})]A î .Z(pw nI󱀯MpL"/ ]On->["v6+ ״nqkY/-ăWPD4/ 'JADm*@+d m_+=oAUs["RT$ ]`6B q~[ oՐ#cWx" 琠~y] (۠XOW,@o+H gx߂!"uӯ`Mw-ڕs$ 0@@]" nl\%a.bT_ %^ V&P.()mj}0"龍 QGk+̵d ۧKad*̐%̆"8kt`*U ɰ pjHA q]k c#.:pA;]jxA)d@2% rD@v UFBSt@B6z  (] `UPj @dd0[#a]xaV651 S\X54AF`-D @"`j3Y( Uwa[`OށB u6uؐ?h-Z_0 \<"uPِH 0տ+ި1Ii4@ofADvej'AaC]qJԆbx m?Ae)[-gz1^i.U Ž9'X@70̰ --i" @A!pA'a.@- Ip@𿂣?6v--Uz_ >0 @6&qɎKtN+@wG S!׺`ANFxrkuʨ3"!gi@ PfhkYXN  @5 ~.p3 # } &D3 NNh Bh0 A( PNZ0 ̺NH2@:D6<:M'-7jvVQ} 0ELG ! !*[Ua6YzD6@P( >.A0@ p@  v(H.rRD~"$&C@ޟTC@0P. d1@`! C/z(f $Aeu0<7j +ǪJ D D$\0Bep0'NlK!.{A@w4:).0g`qp xo'  G;Zm[kO 3Dh'w@+ pDR9N"$C+BFUA@Wu@g#"etK؈:atG!|<^; EHZp}KDDDw,r_ڀg/B& ä . "N+7M W^~\e{ 0pjDX0%dD{ O@,5qGk@x̄a׺ oם ^  /2:2-Cþdu!|`(Ȕ4w""UD4.z }%4 x]*_kA6@Cotd}uTADs Ȱ4/@@xR("!q9ʃS)Ȯ(O'AH hDDDFtD!p!C!t*2bf<_L! ppD5z'DHۿ 6 E ڈ:#h9E8,z*p<3^ 46Z\ApAu0%8hlt|(0R&D"?ע! $*Fle{3A {\ iiMQXY)my]@B; eh&p[I} fP!a\ _Te/mSԈ{ZwO8!"Il ^KDs| 57lHl/!$ <a_"\TbE6 7Azv*<(#2 <4']TZ!`]Z_0P*awڴ ÷aFK} p EhGfyܩ*Xa?WW! '*Ad(omH^(j a xk> a fEX6[@l0 EP'zR\DEXDrVWa0CD P`xp;< X7at  ̨gC#7NC2<deuGbf@bL2ݠ; Cm;&p( I -BF .C`;Nm HP`bETذga@x`L?{C!   v@6Ak0b(FιR2Ch2+> F&Hr#|AhZk@!b(`X;ޱf" 솢QSA#" -*ʐ {2#LN &@d71d*A?x!ި( @7" @80! @$@LtiHn  &@ПA{7L#qكfHdΨMAn^̅NBH9^հ}>E@.P\0hw_!$C6AnW ?sHi7r+]BC< ;**K`¿O\bm(pbdf 0@| 6Ptd64; C;p2u =Bv  gaa`Md2͵0Pv&  DzD$̠9|aAﶩ~ Q_ lo`ODUJ̖C) u$<40H`zAbF CҲ _Wi2 Dߪ7l M d}H]ua?z/ P!8oAP[tlȰ[uAq@uiY$߿WwR0]FmV~D(6Ȏo}6 phrKh/GA6 $xQ';}ka_Vd& =?xke= _H_ =~CCF(fIP+W 7M } I ӻ/ $ fBA mR 7j'Xh*`A]tq:ᠿJAEz/̽V@2@~"PCms]!gRm,s#OI* AP8M=ʘKDWa%h!wi5"uh"$G25i_A)t o0_X7+|?{7,` W4{ˢȶG!+tCTNJ @lo^j7KE]&  S a{ KnzazވsAd& |5X A7ra4CNCl?çD1!&{$ Dp ּ o4#VX@!z A^FkiZ AH& B ikȒبl X u*A&dwºОNzZZ $h5a"ޡd `) 0 !wam}D,5"jeJ )-cD6b+">  + I , @2QxEp wk -". ~  !dOKm{R{JmkX$!6Z Im6.&gb`J_iԁxol~;00 ʤݘxd㙼teR +9x%h]<  IDDu(6 H]A@)ـf_La@ݴt:p%A`ށ3 +XD4lד AZiD";tZY\6= pl#nR xJN~kW{T {.θ6,.6^ T}52S6+K̄bmQ\l60ҧV^X t*U+ڰV({_h\na2@.dGf2GR,7@7PAk}" qbM&xAh-~!qD~"){ '"6/6)^Ⴞۯj 2X433U"C"*M@AS_2ZMJ 2 +HdW"_}&2L6KM2# @!Vba*ARCvL r ѢN[dplz3y }<o ^ng Fa޺@ / -p;wu胻gDoDn ӣM<pko@JW]UfBh"l sqK kX2 A AB "̌I+ Y660P^ h&4Md}00D67 D3-Ad2mo2(pDtK@~RlY6X]) t"" ֊\dՑV B |8gXR( \}-mpDtB*Z 0RX _ D62[-9Rt@=`QC_A '*w+r?+9^aaa߱ }s-ʃ0#Ґe6uq`ijI Pd A($wGV5 [ !_ h[u MY\1@ب骺V[)A닰D _H/^@ڨ3kx"" - WH[tajٓA;/ m^`m/I_j/@1 -0)2p)o4`~_aDR2F< v00l]jW3A+ H^ Z~0rVvOA; צBrÂKH@#Mf" N^ e@B/r0"V ^ B %༅, |A/@C͞eje/2N9 9U!A'@ZH a 4"Ay$[ COu_ HfETKh4dp$I[ 2N}\j@pH v&A29[^ (El4½v&Flp!G< ld1kAZ'P,6lKGe" SCȅ}&xh2;.OB&<# @A$ek$e$wxg#Ct,%\T3-H@<"AkH4R ZpGb`x) p^vHH ULIuG酠턗  xm VA'EMVG"TA . p  @@ 86^B $Aph+`2 n D @gz @8p@L.Gk@A0P2sAxL4+k0A:-$ 4| v u ;X E 8 o`{ $YNYޡ=*` V[~ l 6bO{1Ao8 6& itaf ~چظAtT' zl"[Gx[h ]^A@i4- t;V* V$2ǡ }a FQ $ ipʀQ n. "Si-h Saeaos /!u  B (K"n 58Ma[a lȘJ) ,r AذCFcr][H*x&a$"E7a@ \Ѓh6AC@"*}{ԛ5~HpUa @ !2ݤ~/Er \U9) 0@| xDoD2 "n 75Aj_@N r 2Z K*gdCFĈ=Lk.T I'ԛ J#` [ (ښKk/ 4 :D4l]8 ^BN.raD@ALA־: *ׄ &ɲku ZD\d r&Vhȴ i'^/ӆP2I p(CQ/(036CH'A|$!i5 AYek/!;H CUɱ@6| e9 ՐVd2" $*CHrv ("Z @1 $a~]Ljlْ&@Ć4-`4| TMl4^ؘk"A) /piI%40̬2x}!Y%0+OaZd<+~CEuM$AC*BP͇V\́(DlRl% tА%`0ق,0AZLc膛H~ vf]C[_ <+D !H<7s6rl 6!P XErEii @XaCLH0@kL`$ǸiZ4&!`h&`]`6@)ZL8#Pk+ ԹP!솁]T6 t + A0A_MS ^_V( B-XDZi@:n !9A96@ ;5 z(a VaYn d3HDgebՄAAA"Ө`MA4IAgklU-?Vv*@ X ENFi`{ ̉r>w`u T [(nW;xcaЉ+ %W/ٚf  ;DAX" ?Z'-`R.N=[ xA&%۬%@ā!鰐 JX@avWXu&%Ci]P@@ O8 mgdfڰ‚IU.@eiL0\,fLV Lm#MH6 *A| AZaX GjvJ5d j[ #$SA $ != hH]Cap A@.$;`ئC5p@P@eX46D6 Xڛ-ˆBA(ga "uA70@[Bm J e"km0A$AUBoDx agfAo@@AANF &UIp@eA7` Mz f D6iK [þ  gaAAmxAWZ7PMPvR кDwMI& BB Ӣ \}47oz CAI^A+JMM+ *5 P\CIrXl" @t}AY:`ܛ v 2.\߷a-1h;@웄!SoW Ӿ@CD0#:Nv D2Üp`-O28F !a2L5 X~*7zSɲ2aA 3kH[JA?a`V ]mbR;/6A ? ~h")~* Xn\6Vm T &CJV@ Ү7u aAP!oÓmݽVjւ`@+t A*`hkM ج肻U"!-&% :[ao̔.0~-e 0~t@~Uoej&*/n; RM0uT$KdU ڂP-vɨ;2K i H/ o25ᩳAivH # 5 #h"" V›&`_bA|8A7XA}pNW(L?A]30E0X Є0~-KzM+nZ."L:˂@UQN,vU:aYRA" S)X,(5E( ԣI2!- W6!a% eA+L" }h DZƁeevk)`, !`" |+o()C ȧ-τ +.&(2 Lp l s Swcz n S) \ڎT$C nDo)nAAL7 RbC l5, H69c$k@]a D Cv$7%DD=]  Ć% V-A؂OH+쐰R( A"!I ԛ`, A5e8x" I(D,aC `  2 &A5&`QPdMewA,L6(B)6,`,aP A$T kD $)9&@DDf#+I\ 0@DI26bEZ62 #hj mTC#hGG ړs=+7#f]ˣy\26!<7niL`fo.n`X B$ ?n\t&.X Ab"0d6A 8u ?̆47WiADo)d?.6;AJTA(2@X@ xnL;UR.a)d,iU,`yg`z5edS>C <\ Rx \ <Ftgd,f*Ux=5d#>m2@B xy Nex U<@l x1#D}h5u+ yC x.9[K\kcLC xhc +㖀0<@!"E7Ң|$ZԴ*FUhYa)e Pʀx%x( x>[,_)gNU P!K9<2 i``K8ZRPbb x.-A<4)gU ږudLC よaYPC!}*Y(ӆ@XaK0)r%,Ű+f$l!iYYL 42bf?Ԇvf%bH"ﵿ;jW?Vׄo_ikW}WwmWק޻ Ӱ}']jP Blw=dY.'A;D!nֹ@(FA9t2r gBb)<BBFIh' A@0fPz}{~d H AaZ^I~k֞%ߦAKTNW޶}u֒=kOk{}n>W{ҿ^ {n!ʯj㧵Em/k?_ k,u#Xp"E!uulPzꗿËC;Uk{{K[_鿺Ck}uÿx kO}_O[7qW_ uNkuUtC@5\4Vzڨ<.C. {ipBt kMJy0zZWOy&qn.wڿo~ uZ]v_ztޯ[o4}mozVWm߽ _[Y~K ^.L4ž.lw 8(af03\ f?߽09N`t5p}!#r tVJ{ȵXUA ѥ!qtmK_d4B* föko߭Ao[~^ }XNA޷'>߽56TVư ]Umjv ?kv¦߻AO[ aPkImm{M4 NiN@4 0AXkiC+avT0v0F!q$ M8aSA ,p.e`J"EaSL *HM4TL W33DtC`DD[%BLDl4LDv :d(Dds! rQ;1j)-,$O@A|̘Dq@ r@B V %""P̲# c aw!a!0. BB!00D !(9! pfD h4 [4h@EϫD(v 4 T  o: ~Ni[Ӈo v7ߦm\~>;Qk~z޾NIU֞µ_-U܃4r <+D 9C;_ @p:h]!n7 w@kO#PhC8 V@޴Iwp a?O}zV~7U^KI [K}}:Uw:}+T\4[{I Wn=l?_CD}b#%pˉd|o!C>5+:~vﺻW~UA~q;!?֓jI[U_տ.+8u+Z ouַm*D2~ J Bukr Mr ׺?_!%wy WKMUuku]_jvһOmߪuۭvk?m/ok~ZJ׿_%jv: K SK ml2 i}m oخ>@W!5)ؼo|;jzk/k krko߰|5K{]4-`nm;ߪ& - xNv_MPaS wլ4MQ4 ;M;LA&A40&i0@І(!! ζT d9c  en~+ H}DDb"""""$]DDDDDF#0G oj?`GJ)]/ t ( m.( \Hzo="` ]VƩ][Kt^y.DPU]/TKuUphWjx?\i6TU~~! MQqkzZKF4B@mHcC<f:A[kZ]p2=БvS؞#3mBAt_D,-\ D 0,#HB`&XGwH@<7Aף0g##=];E𐐟;4~e@pU 6-2->4j2JArP TB CW fiɁ"P\WT@ ä[["@8H&$[EryxJIPv`Vv6GP I4 @$0 Ô^(';Ses<BY٘PYx fDW2N!G s$K2 ,+p̖j̒^W5 \ppZ 2IXw K. k t pi'aHiۤn0tA 7 U%pàtnI8`vpÔژ.[ÚWm E'}kul8A{i8dA-'a_ tiXa^aZa.-'-[ t%u-l07Kàna_-[aOXnnZM-{0pNàV)p`7 hD{aKAäжnP,0'P6ND tul8Ip7tm' H7[H!j҇ va2 j\7 0Dmv%M=67zn[{Ao&[ 8K~kVT lH1A;l8ISm]wNä.:ÄKTI`-/UNpK V_aJ_Imzl0V% I ZnmAW-%-p/.8%$Am]/Xn oꓷIﰗl7KJx[0Ant bhJ$ !8Mv]7 6wakat&޻t]}[}!l<0鴃M^v-jh7 ӤWZB|CݍS-V0)7ZWQoMn] 7E_l>ⶕ o#]ČUz N߄CD MApoImTB_Bѷ(Bߺ6Az[&֛A87V6T~Zlu)btmXpAoOUUf rx޶Wz$SIk4Aqa:hed!ޮv(_+ 4wҴ!Mzޭ ʾ{Aڦ 5hpt$ [V[t"(ʢAa(a% <VHeT (a*!Aq X51LB5 i]'*`4 & .9M)%q%+ P"¯Y8\R f аoF!9D.IVH[=DLH\}C.Ż[t ! 2 }m )}TҷM汑YV@ީCHC*L V !3 . GOTI\E\h_߭ }zh}CGz& փv\Z Gf*[;R):}$"f84-7TťޔaHKG[z"J[1__n FAaSҧ l=GL/v6t % { AߤB:zA$o$ *a &8M '$n&6vDCߤ}ZmP{7[MjOo]R zJD/$CQվS*H% 5oI?.-O l7߯UaU.}%%k}-\ )[4~B[ תOa mFDKa/ v oKaz lt`KT% l6 6G:/WInk]&Z xa|. |K8ġ'H 5Q%j7&ү6K CU(^M^ ֛  ~i$M00aAmThb)aA-ۮL[a $[$I[]\%V 6I ] / ?6Kl?M$ t 5^ -&K0 l0]@ z7 b-WAnj[v $ m_^0ר!0]$6RAn=H.uҤ H$tJ5(%j-k O`P} ~-A,0u$_JîOa mz 0JA.^AR|%aTKK$^4 p %]{ ڰֺ }|uU~:'Zii a:TU  |L Px4mB_wt{: }dtڇ%: ?>/{^@v_}?b,A[)PV8,;ZGPYHP_ZwZ 5ڨxoItAJ}^ 3AnbF w{Iok@]٨i W$tP#}W;#GA=kNpֽ>" OV(?kzO!\U(_j7?_A7vK.i?a/2=j¿HG`r:v,Gk_Zǰ|/}_^;wkizסnzkN~_]t/Vbzm+qB;Uma8atq(炇 }}~K?-I u/aa/Cޛ@eeAm~"?:!_wJֿ_F?ۖ/#}ܵ=ǻmw;SNUoֿ߯{__̆{~_z}geoqkK__k~}. _zwY ~t!+z_. "{`7?`oAww#~{_#lE0uޟuon`~ZIx(>+Bh?W^{oM_.;q;Na?i޿Ao~u:{k-="OO2R_ 'OҿkuW%] *#Dt?iT z&D O]?44B>IaUZ$}~4^^ (6cXiҷ7VֵD~~fP?Mu\A$O=P ‹"*:5Jv D)~h`˯\TL+d! ?W "?d)i[ Bw`0Ay:oȔe? Y?:*?kkDF`ar6C`Lya-zY)A},t@iv ,Kס?L]迶ձ `˲ 9̵y3W+""?_M,g%zk@0Gq]l(#1R gdEAuװA>ikDrװZ!?ugٟ<{A" } aO#;ї25! ?$?Y ;4?A6Oo൵۝~|;'C3̀yXf{聁_:rV·(U`G#To;#:j+ۻx/":צ#@ }#٨ej,.4 aA0 h&@!}: `elGiݦ 6@ 1p‡t%`)NvDX^ $@֓R (yگAy6Dh|`C- lugABv07XU0e:1Kr?zڤ1A% \24dtk :)4cD0Bfz^T JoA55$mu<v]z GPʷo2TAp[o5T 4e0/ >%H3vʑWpd j@h]a4CMh*S3v Ҙ`7nxD. A[@4IfנAH% v;+  ' Mr1X" z Na.\D4"l ) =v4 M0hAy\ZO`뵿@4dH .;  A zS@aNS ^X2 kguX(7dp7Z;3;i%@> iȴ eGY߃Y2r:gn &U UyK2!#\N[AF>vd1 d4h?嶪 "{; +'" _-H  @UD6"R$ ]B Sk+0@" 2pdZeiP9N!>ٓ=Hu_/ /AfHu_}ANE{UkU*_/]Uz! ޕi~omҀj-_hY#}C Dc S? A6}Zv?__v}_[k}uo_(޿ߥ?wN ~_uz_[^u{_Ԧ q_u_ok_[^UU'k}_}}ƫ㿮}t_ׯ_Wu~w~IoUwk_/a?~O_`Ư_?4}_Z=}WWÿg6St䫬o +($n'Y?Zn=7O yՃl ߿f l dUr [eX+uAr쁃)uwdHH5mnJM~+?@$ : Y`kܒǮCe,?Y흚ǥ,H9݁Go[ \;8,?J; }xl`u,v a>fZ0jv& }aN AkN@&@O {L*W@تPvQ:;X+@po:1z 2hu 8dua`&~ٔZV 6bBH $L2) 0l%C.Bp0dtiAtheXJ tRDAC hC,6Al iH e6 ᴤӁvZJ T^22 @M e &6PRbaC `)0.2{,a(0mRfA @#(1' ҆C7i)H Ґ C!ҐPbAH  l`2, (d3vf6 BP02 K.7J@P[JCj a(R:m CR2 &҈d4RH6P`AH iANPk * DtGJ@UL5AH a(b҆Ґ50AKoTY1PaH + @YXmAakPepa‹QhZ6QR? |A]N OwW_ G芣c*kpD& $3" hip " e$"BTIH(#~0A".GGc=Ȅs 4j 4 ܬ¤Ud3TC-@]`!@x34B DH:D!!ƄHR4m;N A(h" HA4MD2ɴAު@id AӰ4ᬆvwa:ڄw~M4 l#?mߠxv[AKӵ/{oNWoM^oNNwj{M_ig'޾ݯ*"p9 [}W Z!>6u_RovO3 ki~W '}oo aMGpA[{W{pp`uT /x2=zMk_HH@R믿^j҃=o]]nmvۭ!{ZzZi޽kz_![_Ć / յ[k ~פAֶ~r }ra4mS꾠jr8%/ 9dW{^4kC[{K}tz{_׮zߵtmu]Z7" ~V.;w-rU]~o o%kuýJaߵk`턩]:YBo߬[(?o0wk°amqa o΁j^ְղ: C xpa}Z+`z*$![ _t]Sf#|S[oj}5#E_[w{߇pޫkxku׵_to-5 o ~èNan[[[!-[Ojݯ ou1i[LM00zھ׾}ڦ 5[ X4B;P 0 8a4 z (T Uu[ d`C .&8A&\' v``MziDNs .$&KdAʁdsq% VE":"Ӳz& gr#|QQ[ r , !G""""""$Uq噢Xߧk_NSU.7BX%3aqUjb/}Od"[O׿.w&VDs-~@R`k5bȯ-v!,"*|E;Kw^+*ܑ ]ȏaz 8UO Z_o}Z ֖iRtx~[Jүu ª~AiqI$*iu^M-.U-浥UOKo\%U Z]*]E:I2 T#_^Dpٽu#_![t{լ7 W[A,>w̕J.9njobJiۦ.ݥKM-=Z#fƊ"$r 죖9K_!<΂Jj-14DDK-.(D3\90 kЈqʲ ԈZ]h̓E קrT3)YK&9 a.Q? 4qr&Acr ҃B""""U"1dp[ ?f""vjG2|o<ՠwGb""Lppp<^w> 2̼`1H8 nk8nS釨 4yF:.Ȅ AЈ = aIH0<7 ay`+°kLIa0&l 0_m@~z  L=Xa/0h*H7`]zoH0ait 4IH0_]azچ0i*Z&CJŁ R 0&@ $Kw`PgMa{0AzATi"A 4\$C9bMAo 50rCP@L:p AtII Qn3L?V]&6 0dKia l! uMj\$keDM ] l~]]i7!]l5} Î6_ &kwoۉZ$ f3H֛ >)'Y=WACmͽ&d3A&kH6']a0,:H7['!b mlȥ `  NA"O 54). 20 2 >oi$i6d$I@gu$uC6J$4ʈ ds;$H0=̱! G HM:&2 u!U;pVI,0"ଘ0} (q>7 v !.`m481 Ca􁆶 VGD:L?; C ˰pK|I!F0V2&CH7td, 6} ؈ Vd f `0aD32Xl0A1dtm$lJWTW 4W2S ;:n (sCh¶D" ' paf(lEzA ,'X- I{LVҥu0T`e? x46!_-2H0 0}&[ &v`4tZu V7Uaam I{mށa2n06-@X6v$ {Pt"$9VTʐ]" 3` 99jp Dps.F:1MZB;im pB""""Ar$gzWL"# 'P#sc1A;B|0r[#B""AWrq&\(5f0K W/"""Awcg! i\A@0pW 4 "0 Ki)iqȃ9Vچ"QADDDHyB.ͣhE̫I0ek#DJ9VTr8!pkLh&Ƞ4Bx!/&9s9=r5@9pL0 MT9iN""""F!5|$gg DDDDDH(G8`ԓa =DM`aCd-D3[Il 0ѠLf4`ApXH6]S h!+4e2ĂG;r+PfA+r8Zx f #KC<7! Ñ\G3QryVTr09PUXY(ra9 t$2b""""""""""""""""""""""d=7-# jܴAn  ^ an-#ɸaH 5n epaw))sF9幬(s9܂9x;9iHVG/r703'6@hiDDDDNHHD|5`Ag#8d̴3`DDDDDdGeˆvpYi$ &AU&Go#:> C0pIDDDD[>ZZ a7B ea-. %c<3gnZNDH9WۄC( $&G߆b a W"Fd!4嚦&4 `ܾXYaؤyf$  h"ۄ$R V7nY J 2]f CJZL[rͨ2r 2-&@6W, ΁0!+pitih?nY@b&[pKHt1P3u D ahfiAr) "nT A4[adph1[`e H#0j0 35#i[֭f (aވe2PLeq/pD 2* k%m3@1om2iPa }>vXTWljNUVe=M/d34(ۖuPpD 2pKK]ve2k{P0t,⡔0^r64Rl[s_^ ]RxnY[H%Pm-{@*HՆGUA5ygNVOH1PrJIe[j*iW{r+uh g0'n ԓECtBfaeB n# xD3+AZC3lm^#t`oZ "m*lB!n@9Ii;ЂȤ@mKۖD QL'B{h4@f{rhnۖiN&A_pBCC@ {ӃC){rTAhBA@XXv $]pA! ]Q4 :Aa!{pD&>d 4 ҾH5H/h[a%P n"lC)Zi-۠ޖLOoTD3Mْu ,0}`[tA%/a%vDuzOifUrW Pal:XhIBk}6VvX`MAIk Ap!M? !uȒZma0ɈX :a6݉H(j73l5]0nHN F% 5lMa߾í4m=8D @ho57Q X< lH#b &B%^"o0ql. !St8OJma `Kێat~WAjW"L!pVS4B,ad X.7_olR:. ga@ 4W҂M 82Z)-شy} 4!vX r@KoACK;TD?] hݣ KH8Df ;_}2>B׷H d vZIw۫2K + ,!pd}o{6d 7 Xۨ02U KP߰D47PT !5Ngiaz~&ֻ!p O# U.W SC@":a XC[u >̌l ALs%\ BInZ > [跨5GolYr%čҮ`2CYκZuӸGEu@mzw#(|0o'ĒD5vO_|0%ok`B zA3Q5XAZ^ >Tۢ/Zh",Aa0A: N';El2P ގ7 ݴMU;(-w B )+l0t~77ӡpV# }0x04`7eh |6Mgq& WI7V j"z#! a} O)H' yeUab/jM a=UIڤ\L YG3HAI 6pIՕmva $ l(Y]+za̭t?8+2 Q]eʠZau_ " $t&A Cu 4)A$ɱ4Hlުa KOY7Q47 kiAB [``[$+MՔY W0h lӄ)6A }j{ ag+V!^i뾃+ɲ5oPit^ o|RM-lAA0|0 % ¦[u bPpD__tSLUhU/ޛQa-MZf3MVM#_>[dXEE7t\aual  -xaMmAӮi4խ@W]C ] + @aVfJXN2 w> Bh30E|a0/|0 &n0̆04zpU|k/Aꖟ 3$ m: wU0` BT!#a %[I>ٔh0 udWO@ݞ[[@d4WK 5¯K^ 3P1 o 2d G`ևKᆁ`6*&[u|0gh ߯ } jK}* +HEaz^} va%:z, QK%o 4g)A0 q0fRk a=޶2 D} TWb$ 䰩֫~;\G)9"\W9()+|לD4}Idtyѩh y GE̎!9v\ PDDDDDDDDDDDD~4B}k$?_! 'aIn_ {~h"Diujުm U턿KK UXaW 3~$r]l b_k 21_]@[EBD4-zI5uak^k/[n d- 0_@ZQi{_0!Ҡ&aO}=kC$o`ch.$_/_ӻ̊Az_0A}okگ^[iP@ %C A] !ڬvo/_^rDخv[itGJڙ3B:vb-궺 KK" UlT>~a 23#?.T0!> TNҺa֯K0[ioVI6 cTG[ҷGe m^WcfV['IX`-ƋҧK~8#-@oKҠìaV&ۤ2%oDG)/lT ȻUZSظ1kýoշa ԛߪ~*=wW{~~_0Gu"tGdp]Iޡwu ~6}]{A'WֽW-{{`$N/ m}Zlk^[a#0]*+oOrf MA'+i}&~$ҕ[v~v-vBtpAo0TXaAUdO]oO"FoA]+ᯨ0։`1υCIm}W%mtW [*۾O\8A CUu0 h6[8M~a &̖( WH a.H52o ]H1ZݴMl |7 &톓A"P2[n[aPB >xnn`ԓIm*pD6&K_l7 `ۀ$b7]mL07hI쁅'm-aS4GoA]1հ{l u ꝴ1 <ACm,7!! &^Jy](6tbiv 2Ђlw :CAPA|3/m-0R{k^EB"a[u]WxAnCmKlm:d25 Omi;edx5{`ah~~"!0L3mݶ`}.:B7BN'@h5ޡKH n@-vۮA ,uPyy). vJAAfXI=y̖`D6.Z1ʑ_{vC`lf@^$ZĜl4Z|7F^!!*!!+LÅ V  5XA a턷! ̓ 1P ZH 0DSr GvbSL,<\6$&`G^imٱ{ 5mHPߥx$pa4*[pD a*PZa2 a"X KnCJR}v W@:*`{a(AXK'bC?X2{U  xo ݂հh'a) ADݐj,Șg"eoODLZb D.5a_AﵶD!uD: [dhʰ\A'ZD ZkpaA6>$tePl`\X+,Wվ ޵z Aԛ A 3Hmz 'fGfmjL`2 Ujk PN+JڶKAQa;AD08@xmD#] {a;xoJF !k aHIA;5}gW&[D݇[Ӄ.PV;8/t :'`\4xxn<(&avLv < -ac p!mӂm^@rmAaϴpA0 7h(HnrR4CI^ N  B'!7ᆡp(0i p@¶ vg#X3t=vJvXoNpP?H6Un@3|A9[nm#Q+ @B B mFd*ᆠ  $F WH+R@Y 6A0H&~i``^"̨ SM&p 7 |8pCMW zc&n̬vv@ٳV(CP2 o;V 4wX(JIwmME&"+df;H`0z i 0DP+V 0M+&DPZ_l50I(`d 80;5z0t0DC,s2zPmg8h` a&LAha^' YA$7vAv 2:; 5 )[F; V҄ä0NaB tSh(a<6&L@Wt j\Z'8 7 B{u Td(G]̂تmI&`@J>'EI(FJW ںV_2[Ot6&۾kTW '_6 gePDW00aLD*nW@A0xD5mX`]\0 sâ  nNuz+X%n v0# dp8\&$? C r4\ q> p Wol,YKl%3L/̸d0U v<sT0D4ƈ8;lepp L L,7߶ਃi07e/E>\  +`nG`(:i ݳֈ2 l#c*{3@ tTvAb%" h#@2-Ho~,DHgG Bo]b"$|#am5}M)DD2@I]GX +iOZj@@~L'᚞vԌ +ߴHhd0ҿA>- faI_1m#jNՂ[+v^9Ab]{Tút Mtێ}ZtAjm`M $[oI6^d}E2m3w /~emWM `"]Wz;5 Rom> 5V Pf; UV)z[kQ% sЦ ِ0~o]J] 0237Nѷ^aA_)~ KfSAݱJm8l2 'n c.{[/ݽV'"P _a}0y7)OwW޴Ρci7uA>ӻ. {m,Bm&7mn6NT޶mh'\ȶA+!]INMn#۴OTwVK_i{iRW}];ޕMh.Aj[m}w^vW_v麃<O)}oZZDDCiZMmw}]ZmՆ߻a[XoI~݄Wn ?۰Ka=CIGH4aސm[a0N? ~ M =Im0=ɽcWPatm bW ߶V[0wXm waMC-6[{ y64o!M} Xa 6 nx${ z݂aA6۬0V|Xio~`ۭ7@{ nJaۅmC A6ݭ;f6@ z-CQn ۨ0f6;m anޡ-{ [Z 8 aok ެ;Mkow f`n0mWY¹V-k ?Vꡮ|2 65BGmۻ+m vݭl&o0&&o8of[ nIޕli|0 i6 vvV63AüoA7o栨aՇ& mom&Mh'~"Vnچ+߆&{D6ڄ7aݼ-Ș+6E& 7u `+ ~M MC~M/V`t&iCJJv'`7i[ɽMAf 0 o ޔ0'maHݥ =mRjn$݄m0˫p@t~&7A6Vގ;n{a&(aݠA a@I op@ ݂ ۩f- ڕҖL6ҋKT=@U^a+x {X|$ݠ JA҃X VA6(0A g ZoJĂ9l!m(bAEY6Y ұ 炇+4[D ҆""$ rȜWʞMX`aφ9PTj&|1 o àDDPFBJ (3,zPH5Px4Km҆"""Aw0Izv1j"a[b$4;Vl4G #FB A6+e2.V+v҆ vՐ&9 BAXBh++B8pD2M "Kt^#p%mDDN#((ˣlm DDp6#nD|# mDD#݄P##4 v428p3{n"jD|]DpG7nQ>a8&R0"GX$3De#@A҈hD|G -ADDD#ݥ֋6ޢ"&Qm)LdvGamҷށ[a ݭJaaJۥwA[aaWuނ +vKiCҺVRܚ|Ca(PW [J[t0l%lPf .Yd| tb'#<ˆ@)J%t\.Wl)ql!&ɹa#_#lRl f.[fhN-"^[ aF$3  l B!f0UX!p4L4izAvh48 4 kގT k&wzzޗ^`L ;AD =tv_Kէ?4_޶4v5 [Ӵ_;%XAiv;kW}T]>A4;׻M.:d4(Du{ ~{)}ui}~o]D6A" )106=;5ܡ@zD{>n= ߧUL!o52 x r 0^7*ӿWt- T/ 3lA#h1*? _׭h!Z Fѻ_kX{Az{iwH7A;௤]tC)gg᯿Z 7H/]*Ui٨6|rG(}B='{'$oX; d4O ! \fx0HA]?MnҴ ` aԂS 0L r*/OOzO~m -{}֟Xh)A"Wo CAPBP17]5~k_!~ wޒuW|`2 azZ_K @An/Vdmm) ;TCBV({ F益+}5P)|Hfh@) 0qw׭Rnzo{_^@jq4z~Z]{{]wO_|>ץ_]~ӪVy_}#`~R[oᄊ7r}{t;_~UXAf?/3 ֓/ZҧO !R|H±">5I?_Z?mazOGKӿ]o Zީ^G+^kZt cu!?k׿_[޵ A/__HlrW@տ0γ~C7_l$>D;]o^ZDOe9Z'sR8/ִA^WJnB;C.b_OuSK[T}_կNM[k_ {_{]Z>-o__ At}6봯{`Uֿ\w)Za;ޛ;_y EҿMB_߂nݷk{u0~? ܃r\-h^n}?VO ZC_jQӮJhpΒ0ON__M{{Ja o pKW;ֶokkozfp)mdfǰdn۫fx`*9.9CL4PY/Oo|+i7vW{Ov]Pdq/~^-˿~]uO&4}  B ,88@W^ݺI7 + kl*74jC7\Sm6o JC`5AB}5>ӇzkiH.Ҧ _o{Mm%ppN $@7 #6I{o}! ܠJ:5ӽnC:G870w o];TpUN~eβC.Ã#j߆N"6+t酷a0 r&FB)" .Aߦ {ﻴ^ ;ONP5._w(߇mU7ڠӆ5ib=`E߷oIE45_ ݦ!MmSZ]AnZ[DA99E 0 /w nNX0a4e0N5MWSa0M4 8w 4 4 0B$ ^.>;=o۽5Xamt˂ɕl@M8iOL^˂i3EnޝhwkDD23P d30Ad8@dng6Ɓ0@iܱɧmo} [^NAP0Ո@A Mߠ4Ac/=WNjߠh (4@@r+M4nm2 #TM q 0(VӜ*Zƶ:d *h4a4OM5P0M0"$HT""D͡5fy[Ad Ӵ A0C *Јڸj""$I dta 9D+" M@!"3'by#C|5zҾ.ըQj?,( `a5`+VAk:Y86kaH S@9 j@r06ʀ`j5 wI&U( h `GDܗ'@h5@4X).0i3* @Hj r@9uB04 @r7/EJ aVxTӾAݷuFЁa@ _P E"=MpVtF*&c7AC#s>ӂ}!z^Mo`^a' O.3r ^$x@Aﮟ__Z7}Z|]NC0t0Auo) d&Aqn9\''~vi}OW{CFr!Md!( I{@ւ@Mх^m;I:C0}tֽaZTi I_ӿo^6A6XZ!GU I=I]wSt_>(uҔ34 ^P`]vW~֩7W7=B~?иCqu.==_v__}`w>k﮿Wai+<ׯ־tWU a{X~y^[uiPDC[{ GO}_߬ ߿3 g|UkI׭]{S_[ @\}t~)>$aXr AխuST0Wu#?kiT^#Wn{}uұ_ Oϟk ZG G ֤69pq o]{t]gYտU!CG"z7_U]? Si'`g9) Z ů ߥ]}_P\!!1[~֥~_}N}|ZWN?ԆhJ뮭}_kPu~ >W 0Ezz۪_C;H0MOt[]Zn⿼"_/7 ﵽ^XnA.4^Ou}o !~I/vr %4C8?gID'_[=aᅸ}% k[^d 3N@Wa O3 z2szWwi{Un3 <0N ~a&[(B,؃_]ބ=eػ.˨g28t/ve߿brN i~[z`g\!|S ^i+Uuno $_M6izx5O!)noi~7{M%!0J OmzПozý[ﵴiS~ {q`w{kmv[WU8}`ˠVyF ]q$UU_AP%a7!C#Kn{.8* ?d2C`Y!aѵoV ~W[UNtA #}lq! ҋUO /~N߆|@/g۶ޛP}wziM?M oS  0"۷mo^siݯ߄{[A&.| {{[}mw-h-qd" EMMki ,M0d2_k{ߦvބDDDC)0@iwwa; !|/BEYz֝kmޚ۬0pXedʂ &4 C/e4A VC"VoNO@[׻N""Ng(H2cs 2r 273c@ elXdpi 'jXjDDDDDDDDD ] P~iaojj Xd1𞫧Nan4 SAdih ` a9Bզvaazj *z8V d+iAC-c[VYQch2•4h0iB&A B$*}"TfК< 2 Tii L!hDm\5$2:0Dgrّ&_<顈?Jhi_Kj(J  endstream endobj 30 0 obj 46 endobj 31 0 obj 53463 endobj 25 0 obj << /XObject << /Im9 24 0 R >> /ProcSet [ /PDF ] >> endobj 37 0 obj << /Length 74 /Filter /FlateDecode >> stream x3T0BC]=Cc ed`UeɁTA3000#54Rp Ct;Na!8 endstream endobj 36 0 obj << /Type /Page /Contents 37 0 R /Resources 35 0 R /MediaBox [0 0 474.499 716.248] /Parent 7 0 R >> endobj 34 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/var/tmp/10089666731916source4.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 38 0 R /BBox [0 0 474.5 716.25] /Resources << /XObject << /Im1 39 0 R >>/ProcSet [ /PDF /ImageB ] >> /Filter /FlateDecode /Length 40 0 R >> stream H*21735PAsC3=#S039K3P%+  endstream endobj 38 0 obj << /ModDate (D:20020211151805+01'00') /CreationDate (D:20020211151748+01'00') /Creator (Acrobat 5.0 Image Conversion Plug-in for Windows) /Producer (Acrobat 5.0 Image Conversion Plug-in for Windows) >> endobj 39 0 obj << /Type /XObject /Subtype /Image /Name /Im1 /Width 3955 /Height 5970 /BitsPerComponent 1 /Decode [ 1 0] /Filter /CCITTFaxDecode /DecodeParms << /K -1 /Columns 3955 /Rows 5970 /BlackIs1 true >> /ColorSpace /DeviceGray /Length 41 0 R >> stream RTP*i i}mESZ vfcW \~˙xi}}";M]{iK1Ml4om"CK}-:څPDfDTʕ!KAGK%B]a[fr}a"1,J?-+]ZZ; aݐN2-œW{cO+;U\Su]-_]ѥWV!փ(!wlVQ){i{v_[fkm.8aҿ *o +WJwKKE.6H]B j yN!{wXW}}|ɯjU≮2x@a}Zb{,%W-׺gZ,x']qZrSrʪK9j㏮Yǯ̊A Z }]o][J~©m'z4=o+=+~;~u{ Sv@P = !<@;E@$kCQH2pwP(w\q`aW'. ՝*!b٬ ?ImZ  $4D =: -[a$7NKp 1VaIv jT``fpACgD6$_pA%퐰oI{r>$qaAVaI%w+!WKqP`Z[l5 A/f>[U Sv":K 7 ] $p`Y {`la,DmK,)frX.[  |9[ !Q/`l``ȣ %TX sI]24 _A%[`M,B$8N*]SAHd x `h2AJ; 4`r!r  + 2N#x,FQ̹Д[M B"O_D V):B'*1#, JCBeTeАĔ.$ ɎTSáṐGDHa9NT(0LaL$"8Mm@@*e3#GbBYRB ! O.) H JL8d BL*9.Dur0P,rJ3 drD6n1,}8daJ5&5|7IWk ^ <'p@+l0hn) 8I.2 D $p p9#p_KC:pa@,4AT: U(v &UCpAk%:pAU`3+aA- vB I.aemჄ(`hkp$0 U2ÂI{a+U d K$  ^axn %VmXo$m *:M ݔTI$a4!Cp%aP;mæJrР6.06:n 8@TM= * ưՇIV <0 e$$6H0BpKaAnt+nۄ07t I+aa6@*an7Amwà&mIVC$a]l2<8 Aau(rpհomx 0%EbpaA/@pIx` aRUa Ij0i0iAl:IV0$49TaZkxe܂s"$R4 B.j!tU`\ 6dSK0{ 2 B}ᘓl8 ^6":l.ۄUPNŲ莌᠏$l0tp!3< Ua /l2hdqpܲ -=0 B %ܷhQ^Gxhۄ_mB':#n TT !B&R8)U,phji'Yb]àJ`à R#t`3ąsTC *-0D]h I( `m&bA%*Äa]]ajz^i|0E%qnzL4%KvA7ij޿+ 1ҒKoKO +W5m؄WnT^Pz Ն]۰l-=("kem/I;[kJ4 ҄_%wv2B* _aK_M;dGJ=0BM׷EKZ~0B۱]ÿnSZnvzo&2r]~!]KZ|7҄n}Z*ZU O[c~p]۰`]Ziߪ:d_ Rַ2z&MmBu/U_վ[֭*%w[0?ޚU"莍 t:DGUT/Ȩd75]kc!/W[[H6t :PzV~zpvCVSmk 'K ⶾzLGTkn5ajQ/4ᄕ[ut>0`z W kXi]~(2: 2>G29d7Wkn Au|/CKPMvC}A(i{x/CkvAx C=.uِ۝MC_2i`4rNPsQ%eK+\5)Ii}WUH+0Wgfz|WIz\>v 3*=q[;4ޒL?-K{h; _Ie=3ZI0uRn4 +Zk+` J&ƺ0A4mc+ .h6J/0s'#Z 'dP 7I Y٘` CUAbO a ҭ0}$ADgHK:ev( &a5z "z$k!]%AI"$%Ђ#t|GbARAՅik@uIy v7!y $MW2K$b1]Wo=RoU$Wo^ ! $ n%M͑ӷIՐ_u{>Z&k;% IuAZOI[Ѓu} ZU;NaGeFߥUM`>I&s պЄ=__Rh5$t7I&. ߯i~Z/w` ƃ4"ֿd{I+RKoRpk 4ں[ukMW8it'Kk~0I_H&+4V{_ - A/򴋊sUTz"C2% Ӊ/Siђe &jߤߙ` H0i P0M}&̀j;1AА]I45H+KAߙ 7lrB 7z 4dpjm.cApi70jCr̆+Ki|?m7idp# /!d(6ڐ4=7G )lFICaãPms$mᴯmn9M5~jv`*om.~`J{NgI;4kbC*ߝi#WUTH&]dun&_ Ji[ <XH HaVVG~ҠPkmH0Ԋ^MFz~_}$X5;uie-[ %N~?nMo;&ۭ&Aܧ*.oh!m|6MZ D/nH(&AfZIAYnao%ao]K a2%\Z x~IA^Uhy]`1+A$iVڻ_oo@b<]{iV Iޒ ݶw *t٢_zJ {A 몶 6.PivhޝI;I [Am@iKMT=ۯowkI7A?o$H! y[@VZO-[OނA @ˀvEsT@ݻB Aj{E2&A@p\$<7^KTN h/nAYA P AV >6dkWmoH0j"Y޿z  Sa :oW\Wt׺OwI A%LA 7 mUWThֻi8"a4z㯄J>mm %)ʂ^k^[~@"p`vݺ@:]ۤ`~] n}DŹuT,0ݵv뤂 HS_v-R ; 5m{+hҤ l^_ 2Ȕ `^Kdj@T4*lV4co2 ʨA%حl\tـ'o-yV ,0_۰#"SI {(~I,0mȸ$2,7Km@X0>d@H" i{ep>%€_܏Hg  I! `v =$*.o;$;[{ު;* ,60Z ,2?mw,=R%FVǤX2V +d ʹ~h^ 6菑g K2 :&@xouI M" ۯ@2 ܪ7I %  @86?DMai{׹|ȕh A,0߿۲`Z\U ԿnB2@2+ p-jDp>uAVX0o[! ͵ p޾h"Km#.d`K .x}$Aa'nMA<' yʍA0S>fDxߪ@YXa/҄akOaSVd K`7-% ̅>aWH HCkaK2[K^N"`x_HBJ{gbA*2`@X@عx_lBƞ̼ ]P%anH$K ?ۺm$d@K 6뮟;XGj7\MIK+ m'; AV;K_\ #[~ | fv$ MEE} D68Xa9;@ <-* ̅"pĊ9r"VrH [ŵ$DP$ }?!*%m< ZmםMHARv귅I#@TKگ""F9M. ]$^vA>rW5D59A;)7 )r.<`<2@AoB'h# xe7EU$vtH  WwAl $"uk #&GTIp<A $t` " &pow&ۡ?$}fN ߥz7꒝W kAV6-v@v2R_o| @ll aT?nxi"c~ҤA$0ocӰR m'^@zA}iӷm{GI^ji"T$Bj2*CQs[zaR_@ [9'I 'onId2c*OI,C [- ִ WUNd3Q0J6a$!C˰9r$]Pj%ZN!jE|P A%X`¬@Iu$kI?o~e9Q=}RZw띈6[HD^Ak*0o_W[tgE26R ,IuT!:AAѬd4 ͭ.Eq;M8aNC" *BiT n vjPa!y pɸ]$ B )hG Lub2"KAD]Ǥ4BC`AIP^eຐdac]Aw$I,EĈ9Tk AJD 5RH%:BAoos/I/;2  I굴-HG Ad uH$Wlõ_z\׎Q[H$Uԁ'D3߫M%U /@I$&- &8K/AqRDڽR@%^vX gH#hh Cᾖ")v"\5H&ظ4 ( vD28)7MͷUI+hlJGAx! ]gu\AU 6A =0L` ת {U ,Nt $p4(u! *U^-蔊t,!( %R<T-Y] * lB`Zpa_Ww!G%A $9FJ@tF"ZwC$-&kzAKĬFH. 20'A-Ma _4%Q!paGd}AvB#CĚP^RB,DثS!@_H%Kp@ ߂I)(o@4 ̒ґI>`W; oJ/Ew "dLD$IQ*V}V\<{{>PzTp)A9:B-Ė`a 6L `Wv9Vvar Y$ e p6b:OvR]fD @- J . *-UDL-i ` .SG0>_m$Huhy 2' ^ +$+p/8t +@؋O HRzBARHU Z AD;j%N2oz DqDpHg>Ğ  !;BA6 a=rrdh<rn$"M DQkaY-A&,DH<U!RdpQ|LM@0a nĝ#dQu3;4DJ.afAIT,FC3>a*b^e6@q @޺&TI\s$`*Dׄ 1_ Z;$8Ĉ[k!apި@757Ze` G4C ;[r#σ!eNl[<i%0mHX+`l$ b B yEUl rVC&6B"8y,ANAԇ"DJ-MᣅHx| d3Tv@|paвp( uZݰ`ߡdM 5QtH0j,2Ѵ?jK^-aTM3Pw!l2< ;5 mS@)&q/G "’ ". G2 {Gi|2,[~t\l 7"C p{  ?}ʐ@ʥh/dvN&-䕭7 ,  f2 2{׿!@J A`B2<5z ҧ }Ҿ޿Bp C [nFJA"ȫf҂ _`ޢ ,6sXJ`ʐ*H2 㕸mDwD%Oҥ~wa*l n\tmpusIlރ R m߶^vjT0uAGN ;&fIanOk/UWJ?a0nl{ ㅶ'A0v#.Ҧ' Ud5[x'If et_}PVIQd\5 09icW; .A`*X[n7"XXAiAB\+鬆cu+ul+$X@! hwݽ .5eh)d{$Lav 7^ md@7 PӴ-2 oo k ^P/ok 2_e9צ0 V0m֔-d(x#L-/vdM5c#uܺU|0  [/`: { Pakrm=s$s VKntO,ĭW|0nU^ f.g 1X FHrwڮ`5X #P8a 6TJE-˧FD1"gb 6tl Yfi"pPOa֓yذa=?) P_(t  ށoTo;(O%pd!tAAw֗gik i ! U6Hu;uin4Bށ$ހ׆w!<%;Mm5CT޸d5UVKA~Ydž+6SX"o iGx ǧYd(QX`E WA^6Y^g`VAA2G%o0XmhkjB5&b- z[pm$ߴF:~ٴ ɺjGZL K/"` vs%jAl4SmE'!tp";n Pې$҆ x^ ƛu}HL ɺkZj J}64IUpE, T/mC@b-TՂnտCZ!dCK;+D|:3$0lPL@ں_d~d5aC փH*oaC2B[U}T b: 00Th - VCh8_~djF 5Ԫ꿾d5C kRWYi-}D5BC6U6R. ^ ʀ; DpA@.dluKՈgeAHLOP%A\Iuبk2:. 4R n7ـHDA1.7h:. AitCXrC.C D$@6 Gc`\!Ҽ;5HL[XXuDX4AI aHC!l.)Ko; ށ2% I06`xs`-۠oHx}v`{$ma!$70`mTx8Rbl0tIXa!( }Ijm+أt!$öeA ?nohLzRn E ;R=j4mGfޔ0AFZ/Pᖒ6uM d:ޢl:,mBN% P!-dZ 7Rmep =+@AA-%lF`:0lX0acowD"5 i MHl$ 40m!!K @a+ V(d5J{Gp 0no] 0l i&@JkX0dk߰%N&BI@P ½ںhE iCH?!(5: ~Y4$}bi YiA aPh|2m$BO Fzi0u_ "taQ4 ʤ &aX5gPa'B Xaj)Da`s4+HH&BRI҆ Wi&loрe2$ýfI6 aA]\b2aUi%C}6U 8a`X+{6e% 2(@*aMn 0BߓaPWS kDZ}ol5 $oBYYd@ V÷ɲp'PٜAUSw be߹6Y`l5lY-A%oynd R TiR' VȜ0`mkinI@@08* wH)2@ hA4۰D 0De n*r* A7jgM5" |H72f u-Ӂ`mB{ ȴ2Ф %83 ~[KB5 E\\PL.@hH Cr˕Z BĂ.7X4T2y\P+9\UkaN \~W[)A'*KW+lAp`xa V$,Aje,! x+RL`,C$IŃ !mb L@˙!,i6̖2\s9[JxIgA1b(  L@+ldpXdXÉ (p<3%X 2$9 ڬ  DՐ d,0&0)$50AA$CGެ ")1C$;w:  B&x4AA<2A"@.A-"5R#H*B B'!G$@7f  R A@ 8 0`,lj4 E73+  13`ua[Ahey R!3El!hnhAl;0гU`" #H-C Dp a̴0 ArA `% ځW B&' D Dpx0H B,"r8d CL@Xfi fRi`Pl!!8"Tb- 5l)iFD@IQC.E  xa!@ 7X)49Ci i$#@JZI,P>e0b PÄ́v`!%,b`Aeƒgukƒ Z HP !-# h%aAP 0Ԇ P`a R j7d|\ˁŅ ׆  7YsB,|B ?QZ(,ĵ)GMdiG6Mxɶ(4)+: 4';rTn5n@}#苄WZ3 WeDpB$(#O@}<4Dhaj+׹`!IXpO+6 Mp~$ T+#bX4/޷]  @hwԀEi׾܀#"`f 5P#U =;NO4?iz [`sk~` v{|'i :zD9Vָ¼ʕz1A7Oÿz{ .9~zW]AnQwշ{]$\v{=Hq'ZwOO僚UwKwߖz=DsAKzIJ[N^z }Wĵw{_Q4Zk&GD$GDPEow{NV 0Hd Oاy +wwkL84!hS #aah8}ӕUzvuk"$d!RD(BAicU_4 wuj7 \  wA޻vmo⃇k >[z{o`v_AqҐG t[Nֻo[4K$:B?itW'[kf`_n@hwDl'k{A=+ i-j04ޛcW릯!" V:< wTL0-OoK}~ 8hOK^YA/!z}ߍ۫zbt7w/6D69S޽drkId;cO "GP}6KI$o&#چ~_wi3+mOޫDCꞘLN?ww߂oS hDo޺L'K}Oڢ z oNC@ !Wm@4(;q~xT B"_֯~4: e)~d<-?~T@ !m+kk+ᦃ`ʹn-Jv ""_v 5" ~RIX*Ug0ZxڽZN{Յ ]  F n a ~^:~] _Jԃ {O5wۯ]z{^KVC [}Ҡ0ko׵Q-mZaJ*%N܃P!~KjC4r.] P S0Cvo30QWoOvwn_uMUS[]0ݥV|-vvC= OSMdp`~Pkj!64drrJFka4vA@)1׷MiC0"O6">RB/A ܔDDDoih "!a""0PDn"b?e*Q"’L!)G*J?Z@}E) >P/)-b1w_Oת":?Oײ9"hwh?r3*K"]8]װ׷]kK[Dj*ZuTz0QUO{XqlqO~_]͊!#Մ7@AuW%\WR?ߨzjSbI}'\WJtt.:X!!(ٚTHaXBAp!l `=aj;I.Se+@* tB % 87P 0 ԰D2C9L%D,[ x,9 P2GAa vv RDOJ\3 S#ٚH rH.V2pBpLmB\2)0 CCHa2+M␚р<ΥP>@jddD]o!P ##mh7C,$0B@#\uP;@. a$xR ߃މ2HC lL@פ&`ݠd"+0t*PlXA 4AaVp+ X g=U #ADc.#AXdhƁEP2Ðaނ-AL7C3j"Pt "HrK E`2ނ-ʁ\06J$[fT7 FemM tD68 QnHkl pn6ذ4^Ep 8"E s"PV\Wa[2 o DS`,>AU" +Ä$ț˜A i  bCOHJA R*0Mna"h+>"@+0pD2P, aۄ@ *`6hm!%W& 3le+O`o D6)q7 ,d*+.  n O!!'hX"+'A7W \`pd%pHȔnנ@jV^!8xHlD " FEkFE ِ^zm幘4C-]d4 p?- ##jAK2@D5SXN2N  e> DnZ $. D[)z`[DACo!] F^ejr:q k0x 6ˠqjؑ 0S0V@ dEJP!* /C7jD4H@AT `)h 0M 2~ " +I;v v t[OwtAB鲸X4xAne AedpUH4l r2 ch p2U Gah|;BMAp f9 @ W8(c 6 ״y]P݆ J6 @m+ Ӵ\H2$vj60a 0@r@4d20Vi|fv* 5 Hi*B AWkre,H)W& E˂b@A4"ʤW&K˃Yn4 0% Sr #I+Ai0IZgKD:6[ N4=@*\!@i&ދY#D42 tA,jea np\ Յ2 V7@&や( Di I^Aa#D37F Pk0^AA@!&C9aDdpi":CJE2j&, :D߁+Xfn' \IiApU-tf6J|iD-DB e" e`' !q2TlHp\DL4l4 Tj&L !4EA68jM@ H4HAT(Z NZHh D C@f7T;@eP@[r `3.AО P5;$PK;>G" f @8z[ڀi&l"ge,]wHQHw;0Cijl2 l0 ; B h , & PCYu~I*-Gj/gc6pT,d3Wj6r 5 ,'Im̜\[pAAGHe w*xD6`mU He7Z!Qp2OnH| 2 r&Cip_%@d`KC]u5Ȫ"P4L![ب9\,_ A[gfA|" mʊ j `U",$%Ek E57 ۵p`p@p( }" 5pk-A!9 OAR5E@j"!ܙ y@E(i`5-A2T":HfR ",5AjmoXjH'oQ i'v7Ch跠j #yiI VWR }[HeykւWK@X, ŰPh X4\ ՑH,;!T!" 6T¶87LH}.K- pP0 㲹H6AtrX+@lW&H,,-X e}C\Y\, U u!R+#AepPʮfFm A!dZ[ A%i@oY(kCYIPfYXirm>s!@a awkA`HBXBX „tiH )D ȀP̸Y^R.'FFN&A;Y Es 4Px!H:^AadUlDmC]P~nL:M_o;k^ N pH ^ -~(w_@ ȫ2!BCM( Kd5X TG pHАn a KrCh D2CF H Si@ m̫Zj9FT H5 `/l6H.O2l6CD Ca%H/a," R$/A# eɿ۰DgvAa_0h4  'TMž,-ȭ"". Z';":L[A maW0Az0k9 FI 2H_`,Eb2CNRFD1" +$8d4B@s5 ,1Wؑ`BA$Ue$㔸T,"C!C Qͳ2NHAϰbd۟c VBC rD(2lWprZ B|2Cr8Rdp3kD,2AJ+ BP!J ]?Gj%L2b Tʂn x ɲ  Krp||}B#Mk7 |H,2/݉8,urn*w웕n ?[e?޵s%$fE }CYq}Ciq>? P_7zk_Pv-7onuսߺ7!}~ܓ_ԿHm.~WotZ{__?n_yo|:v-_]vJo߿_U%Ҫ ~0 {I@#;Mh!x*Lo}WzW]zv? _Io?w]__}w}k)._zk幧׿K]}WMZ?ݥZ޿/{w}O_[z?_K_޺~u}?[nvuU j_Ok__K~u_OU}z߿m|>z i]_^ ~>)o___ڿ__WK$?uiNhUV޽v[o}ҥk޿_ۯt~޽_{5Niֿ]5 'sM?\L& t__H7^vg.nq\KվG_^_K}wV믿/_o5]l->j _zh0o~kuƗuU{}]w{v__k޿_}m__oo׮o~]u__^M{_^WZ?_ޫ޽ݷ_nWTwUUu___[կ_[V_u{-޶?&]{߾T믷]W~u߭?1˅7"I?[jz}"{_nouw k_ߥ/"r!{'u@NW~ܴ1T{ AVߦp@_pD9C>[ __/ڽ/~-awoD>w{I귕փ?/ z^ _+n_~w ׿  . n|K*/&@^~֮pW9xH{wZj]~.<@B0%.x@~ߤdtCʯI d[Aq'_D<]n @u"p% ^!![ N !̘ @%̆Ud~_ A{Q-++!B̦O 4pK~$ RAz$!/iY/"9XP!Httx _.G ց de AGYPczvX 0v ڐh\(7 qv` >}~`AV2G,GAm!%\ _oX2[9| Q )("ZjddXAcߧS $G^,A Ș\$W3p @X e )`Vb!tvGXKHC#o 2I(@Ȩ3mʢ꽮, NdUPXB +T#"@ͫ7-zZ A$&n%\CQ-TY\P0k!"m9m4tWA$JEqղ-0O},&d41xI{iAE`n"ǂ ]Aa/ [q ݷJ0ߦAEQd WAmA߄bWK:Yl, !d7MEa4PMR練 7N[Tڂ]ak.z,DI 25kƂ|`⡥WVdJ 2KdP#+& 2kaWDktD(X@ aZYP' 7}KD:A'wA50k vMe9 6/ V ``[d$ n _HXZ M D@$9.'d6 y!bB'Ia ~_ nAxA`\!7-C]qN. eX>MZHՑH, l,-m~'h@lT 9ڠa^ *i0DprlB?Ƞm %&ʀVIXm \ X0} 6OUƤ,5˪Ib &f#&YOr eW@<QOMzpj Xgaxd 7S gjlN?>ɱmSYNDH-DpOCAA`T2 7߄@D;a[;. Az4 \8OAYl=7"Ȏh kiXuɠh0As0Td` MXd Ch;.ah ʁU>zGh ڵ" mg`z@+U21U;wWһ!z ÉA" OXT;2FGX2 @=pbA#-A K2 z@ 6Y@xOn 2_ Ne&`=L$h%FC@xo[6 ,T?|nA^EtOr'ԐfEQM}@A\ X7Na᷂ 2SO_3"Ö?a{A$BC ax@\8bUQp0vDp.$]Q V!DjD]`A"UGip#Ea$d Cl%y,Bh ]s $Bwge`ل Vk#A v ƲwA 0r mejL ua"dG" +KlˁZ AqrJVemK'Y &u;;$rGRb< H-#A]2 *s"wu p-' l KuҫGjCA2VTD -  U #v j} N '-R/ RoX JKXAZT 7YnB  (^` uAUO ktT%kvMe ZW8I^W-B@ˤ+'j@@_h _ԋ/J Of_WA w_6B8f zf$_MA6 >!`_ .ҿIߠ/ A $_ A֒[ԷXAB] OޠAO$ A/Ph+ a/V_u/ ),Bs`_M!MJ׾% __A| _@{L]qpO_% _o^% I {[An?_-u _  AuP֚__6uD/Z@i}F_K' O_zNo7o_?/N~UӿCoj_!7_ B[oY _[_G׾-4/7ߵT¿ot]5,~ҷ"?~}zK?_/!o[KD ?9'r('w~4H4}}n=Mo~׮oV5#~~M׿߮}|OƩ/Ok_[Kw~@[ׯ}mOw[w_]}On+/]%z};{I몾z|/.ִ}> ~ڭc{z^ ]In u%_ ] x Ac__鶂W}/ @ҷ}+ A A%/}yh@A{ Z*A Z@n^@֡ռ J?ׄ _pEmB_ ށWW޷,a^ ]T5_IJ @KB`RΔ ^>x%|TmT_Uo ^*|%+M}/,/ݬ_"A/ }-R[_Z|%zJ\37][}nKV&恙 x%oA}|_/ ^Zd_ zK^Kނ^ ʗ Fބɽ@Ӿ ӷ vM [+zW6 ݯV| _-o[P@&" )KJޓxA]۫z Қo M;W | [A[tA[_ax%[Vm z[AQ Jn[䁦ZյJA A 7l _A[u {w+}]VA-J`W @Ja)[5=> [(oڽo|[D5 !ȒnQ(nVrjpa -7^jk \b₽~+ D#W [vFm@GAX`0THd AHޯ AF7a@l̊JęЅd͂ۙ m<4pY([A-M xf m(\l ˯h^eXmmH$$@A*Pw SYJ  ´O"8 0@Tn$%`x67 !ruA 0 x6(@oN6al b;۔ 3`x*;EW)e e8v!0<6 S @x6pAC*@2Pxk@p PN@m_NC x+RJ_SZSCv x2ȗVSIۼ%)xmꂔ n lDbPbG b)TGRQ "!)<\R2Dp<,Q4S<6X JXPd ௠IDD fC,IarM28 Dhn Jl\ xPPe@(T '(R[Sap< 4A9 Q8AMESe`xD)Mp<P* ”٠dD@ j@Ea @(`29`xH@B ڐe!<2HH  <0d&R R@ahfD1DdID”܅7T^9J?CU-t(夕rEƝ}H赀Klqo ^lOh> AWxiAGȓZn*vbtj^6 ZE,fk*Z-VtYJe*,%./VLt1 .$@XAΚrc#fGB rqH9T@hXAa9M" " l}Zjr$DxF(` %e[9i- #1"@aA4¿ZYNAcNA݄wBM;\ P5iiz}zvj}S;O׻k=W(uUOM?O~!?ׯ} 1}C[y o[i8";]/Aw;CΈeD6 ?muY-k!Gn-аz@/ ^M4v&=o|6U'NW}k}zv.w߻vu~w_.9v}7>ˮS~_?1Z_ w|5گoowv'd^Uozj jicfվ=zwPo?u^i\>mvoJ_a6Sm~ #[ڶF8~}0iC! sw_43&@HgK)!jy ߾^* ]]]eAB;.o:i-{w50_ﵼ'w{[X0^4Wk -ڦ&wAa`"JM#kKiIh clikjaP4:"g8'MSMm0MDB" ÔKu%*h0  2 t@TqZ>ZBY ?!eRXS\o\%i.?`\)E-!@.;:\dtz!"!DDG0Qpr>\=?$& ܂eKH)pxuᖄ avZGA9C`r(r2,:B""#hH8F3L}gHmFȜGGͳQD""""N!`P طa! A(0DuA6[f̓ "6]C08 Ä X0d)f0c@CACFdѰH0tMM* c, d3bHYm4p!C(pp,[jY@Őn,d%ePʂ,2`? `dzX0` ܳP NkR @np,2 I X0,A0'!EqA0aBan$ %)pA`5&a( + Z`@a@ X7Xa 0D4.#2:rw!/HDyk2  A>l@ (D6H]dܰ6D6Hk U ܷ*D\kN!52 DhBKz d(hqi ,a L Im,M J!iа @(Jt nnhP]7_GX$Pqᴠ^+`oujCdhB { (A>O+MݥЂֈ(\6+ o~_B^Z@߯5޷^(& !k^W 7ov_ O@t%~mw2l }x+AOAD} d61 {>D5kP wVi.M"jk_,~<0fG{0&G@ڠ@CO(lmi6aOd5" n0j0R j*'T 4guA@4$) 1=A{./-d!A;ɰ{Pvyِ*;J͕mނ`{h/->" FR k|'Wuw 6B Cx ]a}gjO ~&C8`dok{vaǃ YD4@Ohߦ<" ѿ+ m { 6 n_*A' % 6v$&9X|)iY ܶmV""D n0"Aܡʃ̥oaaK Dr ND75wE.!(r Sœ4 a_.D !G 9Cq ilDD&d y7ߤ- f 0v»Z[ fKC) !T)^$!p\!EO{4#@4[D ;P*v~*eGD׻dfou&Cy,_}w۾קӶ[eq$b=I '{}-êo& { A[۠鿻jIݽW׻}u~vu_~m;wҧoVmov׿~%{[l5 XuokvTM~%6MA/mAMr86ԛm߸ tn0 t60z톻">M87z{~o=MKz^]oBC\m6n" vl6ߵN/m_u@lanKpYnww-ʃ\0jO"v[kـ x"(u{@k{_wzYKp_"{3]-4z鷻 mq|4KA{d&Uߕm{\4uV@j!J5 n\H4l ri4kՃS@iequ @mWFGaڪk<66AJNM%heXlDG  I ݶlU~mpa&+WdZ A'M^۳!``mHs󲸏f@a2@?m{ojpڤݷߙ 1 ɲeR#z[m̐c}CLMuZd" cS4vd|C֫ owޓtvWDMuo_^ؠj7K-eWb0oiXgbKi- mӋ~v4!O  f[~f?6{xVvv8ikۼumY Fa>Bxa="Oշ& B[}ׂ[ڷvK^Lc@vB7AvR.uZow !&m!#唳6[owF"z^ޤYVTCm֖ۢ+B kMkPmo崀omuo [)imm)JPn;k o% aoNmym VVۖoom8*6+om3 ۙ*׶Y ۏ{NaJBmջhmޓimv["oL% m}m40,@mgm awBݿpOd@66 /ovkt ݷ-CTM{ vX}I{tvime{ {}(*n7`mD6mrMۯç-T0i۽6[7wT6u{k0T^ -Sa[m _nlIa.npD6okZ\6v!m}a! mh+{uW-rWo 'E @*@-y[-u`/wm{\@2]w-}Ami9kw zꝶ-q÷_mG@Wmk8);m['$W!6y}h on+&-aPRm5սXlh;K-dz~X@)i9kTt ;RnPDimf"n8)w{NqA`NZH+6޽[VMu퇊6n{"o]]H*j#m۵N-Q$#tZo B{eP6|Zv~8"mp7ߵe .6-ۤ)ZK-BYRv\ Abն/naj"m  K ~p ݐLD='vⰈwiڰ))m|4oYjP $mJݼw ܒ6({eAZ=|P%A-&.+NշvL5B{mtڿfAnT oVnm턕'm{'W;k%vjx-?n-} movDO^t[+wB[mUw۰no^ N{m[~MFM]oMۄi[moWm֖/o^}]o ]֓k}b~@I4nmS@;$Vߣ'a6,v Z[M &ۯھ vڸa6|[#nACCl-eO[A>'_n ㏾Mcj =[m׶ok߰}?ANmmB+z&m0z A@նaMM@܄i6L$mw8 r] ݄m_Wۯߖ47mݷAZO@vۯnIoz /ooA{g`ɿ뿊 u{i{þkn}7_}{o^oT -;}-mmMݾ[{mowtWz/Vo`}i4cM_XuD4;o &݋z۷҆-m+ B}-۶fZ/[AHt߱mK{^ޝ7Ӷҫl6[{tmUW^[vm۰{z o 28nl%no[hFnvݶۯU}mpM֕fr>60ݺ̖6v5wZ)doU oKmXaa; ߶Km<:]]2n2?{ sE~h`? ߄)O8@ ýMӹ7ڴf Zṅ[0Kmw&ƀm.wa.l oowp^÷h*aa*oD60{7Do}AQ;0u{nf/ 6P}6( o [Гa0~ 6RmMAWNmk|0I6m w"{[vKmɱ(6wnnH _ ;K߅&`ڗ`PG{KaH/j6Iݾ}<>[{ b~kn{6 n o{a a~-Â!oֶdXja_ӷt&]x0}l=%AC[f<%[macl0w'6md_6"- jD lZ _],-ܷU _[ -ƒWb0ʶ-0Sn nqPl􎡧mz^hT5o-lI!/wz!! tݶj=MmA|0 9E0%[ݰaM [ an7nս4\MA}, BㆿpaX 6,nՐPȃu"46MZ[}xKo+gl>i7p{erlـû[}\T>[ 6=mᲸ6m޶0^ ,6GN[ 7Ta  n鲽A)= .`6 ?".EFc6 ;lA®ۂ AP']h$dN#;uKn鴅{~A:DQ@Pmd` qnRGKfD݇ !&AIc2  VC(v6۴a- Gݾ" 0} $ lT=E&+`ejI 2OP4 6Ol:qlI6! x* ٖum ;v@l;w;;TWv;`mV&RO@UCmfP >]ݻTnjH$ogk` =ۼ% 7̼&d%%{oZ @}*ݳdy@AETVo2%PvW  y8Apwal>e0rt NIWl5흨o `tv(\inۊv |*v2m I7 vh\ ~۽݂x2 T{4\0o!`poM@aLK .l7$Nlۇ[y 0K;ڷ{`|7lV[]-^J`A. AX<"8nEpW |2p[h^>vAf!b2: v)pd ņsReM;W֭@am" YB^v " Jio%m8 d^ 4A>;d)6XfVv a6:t@d1Y6G{aG[va* 4 &?*]@ m.w" F10 F۶%)zɢ8)dW|~d%z Q_+:A" vS60AuR-u6 `ˆUvR$S68/۱!BZy E v hv }AKT6@yn6*+ࣵaAy):x7J} K%~dGW/N0*2X@6/Z;S +\Dl=1m _u6h& /m@P(_gif ("r`2m8I[Ja$J*`@zh7K׶ޙ7r~̊@i} ~57޾Bڍ}KeX常(X&6Qh*tCFj0lO mnd(qPm`2a_}LA7+g2N a?o200^׷A>}}6df0720n" Rܸ7_ 24.n$fB`!e;°D ʒ[tNfFD ef`G oE*Xm= IRXAȰL-/ ̋>6.Xa 6%v22g 0mێ_mȀX!i^e3XMvWI{Lp = n(}+{m Ѽ(m불.i8BP;; :N &.WoYajEtdp@FW y; AE.a)V܆b@nVamP VMƕ:kW)8akup mG A{ bR; d>`$@0n* ̔8y6L>ʠ/!fI#u;m3 @؃;]Xgnf 0dKl d369XS8ڔ.-aW װA BbH)lW6zS ̕K" V %@a( >_:L 1%U{0i`׺eH z `;lm0eBHFW5 V_] p# B۴T@q1`Y̖G܌úaf;@#C:Th^21j Y 8rJa Ylۄ! a HA@؃!}7z H4H~@5l 38".d l ׵ vNH4+\Z̆ _l%a+d*9}74WKl a W!il 6AeWn 0gaq?AIv" h4q (a -̠4mELk؜`8lA@g=+aK`>@FDpD\SLp![F,x1fZ"o 2!)K Dpye,5pa-! _X0 8H4uCMzڻ Gum~z H00ϝl dW[l-H3y٠hXjXamm 2 P$ bt z2aP/b+,h4t‚ JFIo!ʽa8DojACU|0[vZ@ldE޾v៦p v@_ bfB!vA}H#6ۂv uDvl5ݔ;;4  §b᠎ uJŇtaL3J]`I0z C%d^D5U$L 0ݐٲDnc &j0o @#Q A[#!GY~ d X!9ڰWiޛ IA`Xah4ֿh\0`;@g?o1쉆 ;e; (޻;+u $dX =^h0@0DnPxA Dpa6 rPm)vv5i{u}BʰA)\(հ`ᇲ">M^6I!! 5flܓDڠl ! =Eq"v iMzvH<0D4oX2m ]4wi(j$G DyڨdSR A|2,o%;:EنK0lZְoCT!im$v.C]mjn(X?o, 0 hhn` Nv@ [ !F@ Brl6 / Ej"j7!~T_` D0k+Eô,6e8?h2 80`vm*7 _QD$G Ҹ(m? 7lk˅-) " axJA <&hI\5P\0oA-:}gDAmKmóo[ 5.p*tڨ-C@`(f\7o`2!0Ba`/ l" CF4H̃Yu`T^ qWJ k 6JAJx0|-Ճi .n$ذ{xAUHpKxA!< l;-Tp;ˊ###d5Wv0R2_zpa `.@=n#"#*K`*d6E<0f+%UlT;%^!2X@\pHG,@e?A`k e9UӰA~W4į0;- b>]rC 7WvH >W@9 [ DD̹`K10`AB e`ŎDH9r<(r %vqr$4R|ʑPKTŕ4v~WR 2  $b$r(Lr(s  ADDDHG*9pw<)Aʨ%dK""""",Xa PDRi)w \L0vU e h/#„̅$OnC @cyL\$ MV[ANV̊5U 0_ PdJ/`2 ^25 $ ^L@050 %h@!p]Uo$- ]Ū@0mdgEd[ ?̒6Awʠmw&̖CTma-5A`6 I*Y B/HiRaA@#X`s*%!Vd|h"GMBy"mAI;ܫ@@@pL3!0;גGAa&̀T 5 B as%`jH=K 0"I*BfKh*0Y;!Pv;iRJu'2CS?aPiC[UP"RYGKyڐ&emr#T%`ؚuPCoc9@4J싄k ; ߭SfDlLagk`vD,4o[LETXvZUWj̈A uŁEpX"{ l YDKAY$9ڐ* ۑ]1""kH ;-A 0ԇT/BCYuHB 5`qw Dw@ӻ RS$G*meaM["!!_,hP@jL=ޕavj t` PbT[ 9@Lu14IlZIAP2/ D"PH$v*{io-W LԾVUِL5 H}H(mJ #P(ޒAIH+`g`ڠvKԉAJw!/Gk S)_Pa< XB25~G|dV aVfeT BBRX :TA'Șr>%paA_z5 yh!xd'D(K@}j9[/L,1E). &z @- &D'V@7"J\+" ;(vdV8aTk(f\6K`P{ISڛN&  tAVp_TBa$0Wվ̎&v聣X2:7ppD" 6 cCd+` """@@FID It1&M) ݗWǥmp Dd]2 izMՇmX22VQTn@2IA ޘ6,CW:]$`200S}&@@ 9pw0„S"!p@VCft: iݴ@է[4Xw ARА2AZvRDܩ%$uA W[A72 [p@d zrcA` G !R}VV[]zz @zI&02H\-ᐻ2`+hbo e| +(^vd Am/-[DXEGA/Yo!Ы֮廂 t{꭯D }WWYP [ Vu<H.OpPS2TV7U ?*}({zƛ_r*VV FJa~ *J4W&/^؈}Td)Ղ I%E^%bzLwk %B ,,W@UMZB qGT" r$ uX 7yR#5mi'rP,^mFu/U\ @4iU7FJ@n+ANJdYj̋HPZ`-m ]t! RAGݻ#nt2t[74K}cA! ꮻt`p_2*OL] Az\^̠ ̔ڤ?tPD A.tvvf 5o4R[$-9Zk1WuO@J %MFJ`|v@K@)&"UQ0( K;߽y,)mHD$C-Fۥ`dP3w[zXf|*}j݈nވ,IH]"gv`S4i\9h~V+uK֔^ܪ`̔n~ kfׄ" L^nYi_T,ILS4I.DCx @5UIP FJaNҫ}aCI%}_]D $ i{n«%'2]$`d$CM ji$Rd JdB+y\uA-W/Z)r "ZJh [ZJ*ii7KAa J}%A@JJ0@" m;ո0)IHBM  Dzt˗(pF@BCjJkUEհKM^=Px`) _AJaג[IRi !"B m10@JRMA)J$ SPi^lCZ`̅T[I{e 4An( YFE?l SeU65#VTa2,aD6% tl YrAS$* "[[0 +i!WuaFBAB`iHT"a`" MAMR%L4֓id5FCAl T3 k i$t W -QO 6iF@a';RH  zA+J }.m-5W, P;5 A o*M@;MTDzX@0d4$ : h(@]P*D4ڵz  #!n&` ڨf(0aU[n@%2#DڠWJa- ]pA& @i5E!m,!D CnU ab kWM@ "mUW𓥰 ZTep$5Ҡa% @I Jv$ 5#MJ$ve!-`٘j* &w8@j5:+ &v8 @L PQmd ]T+$A)˃! }BL$H ^A$ $CZ (M\ M] ީaJCQL0I! J$*%@zPp DG`D46AZK! B ޒ d3ThT_a%}@ `5}PA6 `@[\ ZAh# $ 6a+ ; ?A8Atk]%A6&`ڡ5_H&VBCAl*HkANɆ* =mP@uMk i-i Z[&2:"!8B8:4G MI30b4"$ZI M$2 9:. E.h$wXkn ]e֐E2٭o wkKuߤ,l@l>AH)m>B&AQ A Gg [kmB߆ւ k5":d36aRGp H  k66A8Jpl %k@ .D5wH0p+ziڤE(5  ^ @í+AG]T$Z@b!P A@PlL5 f¦IJU6mpA$qH[$8a~BÄ"M%A#iml4H4g,XAXB " [oiaBA[҄5C Amp-d"5DP5RAo~gARHd A%PVX kɹ-`QTY)/! 2 p͠ì$#E g6XA6ЄP!!-Jva+ XiPH7 M@* #hu %,= GBl$AlA80 VA!6f ,PHM C_@\Qv ڨAk3@D5\ka$CPAI A,].-BJRAuaZ\0P U5]Xj B xmR@a\0zA]J4 :P4]KB-*.UK}@hduJ Z@ETF-.$#J\0A i~4UnavR:A,2 OT / wOAT7h45 /hwbCB9ժ!|) q̸]09+2$0瑅؉ h(̭N"CDsYRvE.'l b"$v!)Yӆ!L,0Ba j ">G28DA#;#GDp[(BOF8-x)eaè'2(Ȅ .dJ""P#2b"yDs#@eDDDN"Apm!Dr>,DJ Re(9`UG(jlZ >GS`96ZE,? -%. > IMDS$"2HiD|)Z--mPǖƔM U^ڄp#ՆrёWGMn@~DDx#Y%r2"%qX`AdXq$] =>@M.£K29 pPLXLBn6DQ0hC 0 $ 'If6 Țhh4 ;"j4M;L'! 4!@``a0Aj SN 'kk4аB *iik SAڦ q4vh=S ;0ZAt o 5Aam?5~WϘwkj,O&f'ETJC9b" .aA"_oxd#!2J|ȏAؤ4DHR a٨M 0V%}:TM{ҥr28<ˣKD @e3"!,!h04aBP_!tADrVF$8@`f kL 0M?OV'WAsڢ~75Z_cg|" a0MVMwP0iwR|RD3نpdhAp"¡  Czwq#C#r8T2@A ݦi}a>]mӾAw+HԆc ) O@ W 4APhZ!U[Ʉ5h~rD6!Banm~t 0A4մ]TCFM+A7zMׯ &j[]z}z:jn֛~w<&uWIk%oTmt ߭ZO.[t]io7\?Mn֯J->uzt_kڽ}p͏J!N_~w^R{߽ a?a,+ +.] ; gr[wwP˭﫿o[d4i+Ino:q`q Q2`7ai~1=_9A7*}{H(n"';|"03;])`HLHq?ׇ{ДAq|:@3ԻڪnA[^$Ǥez\\qktAm;{nT*Pm,]I)iwi6 Vވ7@}kzz(R;D0:4 ozBդ`7x}_{@x"{*[_]]zon]zm^xAROU{rBcޫn=w{!0r ]ﮟ]s! ֻW^M~|4EF{Z!]Mr&̧au]çJT0b]omkOqU@H]޷(V]o ]Nh \ G^5Owi !5oޟm? :! ZpwxOBio{ol ߻i_鴯 I_:/zc]_~ߵ/n!O Gwwa~ 쎿Xҧ_o}~V~t}kukmwm.;o^[na=m(un{aot_}N׭vi|3[K1 (F_B G ݈.C*wJ6X^CC肇R$k8N7PNPݴC(bcۆ+;S\ Ӆ[_ws{ir a.gr1!^TPݪ2{l#>a׻ޯxB5kj{vv_v[wkw0! a?M9䗯nۦwӶvm7Vv~ݯi]/}o_턘i ߃yCA{]mnkz|=ݥO0 :CvеXo$~;w|z{3A-²8 r|#O_];O]mn nmt-VÐn?lCa8k4 0A᫯aUn Gy zt]24& ClY 3ېh}wnk}ij! pAh0VA d2(zv_tk OOT T 4jSLudcI@\T l~l[!~׶p@nM5M4/!`Ah *'l&bh IW{~O_OON&:d 0L h&@3w)SRqwZې9=}|?*(T9NSX#{/5WMn?ij?~T[}[B.&>} m8zk{-0M4&j lwJZ'kO5ACeja jiA`J* q0"EGN@]Shki&@PqH!zM0A02B(P^i f]gV).iC@Aj kr Pa0D]h#DavحbYWWڴ dI@Tx<jjME|DpDDG5Z!(*WL .EEЃ2*>t##>`e(D!aaE0 hC k܀BHPNRq$acm`HHl@Ӳ, M4ӴaB!!Tp4 vMnN , ¦4`iAh=>> < Ӱ 4NM0aV=nT [[%y\'v_ZvH~Rtn btUA0 *J "*߻Mu>|W6B;!.1D.荊AAtD b 4` a?R^ӫN׻*Qyg##>dHȀ$Z#0""BXN0XiMj ?. rξDO,dipBCh4 ah@4Ȣ AUjuxaHl0A|)ݪ!wzP#[ 6:;FqR+ A4m4wq U viw|'e*C=gAF!*/ ?w~W2>J20#UC,0j5;r:>Hf> B!  ނ .rAa5UH;_ !*hOCb+[@4MSOOnM[O J4j! pNߴw zkvUwwAzCi?Wx^n^?UznT'n_;O^NդoOzZoM>5֛ڦn~w{j{W}Ouv{ݫ m{Zr聏Ii7zJ'. »B 㿐w!E!?{z{!\% CH&}BJ@&7g !*;N{!Ke#Xr׿}~:H*zj#:Cllċ[CM^Aq;x}7 D(C C=KAtx^h.յMPHː\zHP^߾_7NgIoVwO4ӿoI¨/Q^5ߤHwvnrkMz Iְ}GQXmw Cm~B~/}ZOi?L?_1MWZ_)wүiMޕצ_ۿG+P?KOW?$.={@8_ wC ѯU2a:k}^wJ$Z4kx߱2IߴI!iHlx6WWuO:]z߅H*EַQ$Ċ .;}e&膁YDuT{֚[0r_9cAGw* 01׿ lpVV ?_mۻ^JАi??ӯ_뾷_]~0Z^v?_mt߯ڢwz[K~vW? Տz]*uKwwJoA}/ַ_kVa|m}zc߿nk}~"[v7_xka&>gEWzio߿qv78Q h-[}oT.ڿ` -쎗p}؊b2lAWt>C`49@(pU BJvzÏ{Ȅzu D2-=maR \C %9r 8_޿!qw=ww Ѫ_kzx>߆w(s\]uO ڮC-Whɒ8カMm{_#_߾mmmAo/wi}Z_invw|kvӞIzza;kkmxzo|'m7ZkU nI>ה:_T } SOpd7m _uGS[L'zw޻ w|?w/34+ c8r *g<_TӴKn۽Aq9؏؈Q?~/mn]A`k[ $w+~N_0j!Aia0ih0 }nd6υO~C1=W{ﻆwݦ2ܭ0&0E`4 hA ,.!eN AK?kkv 4@u@L&47VF9 eA!뼆ſr{m^{|4TB &"x^Јav+y}׽Q`2cBd o 8r5'gpU S[[Xiw["eAC5b=Ar_OtoC?[uNžߵ-Nkq_}~Ӈkk^Ai6gtRvSXa4 d6V8aaIpi馚i hT  CB$PdtIM58vid gBwamm4 d A3$(rّMj aHeqeoR&d4'-@iEV:Fm%~OF@TL@ endstream endobj 40 0 obj 45 endobj 41 0 obj 57648 endobj 35 0 obj << /XObject << /Im12 34 0 R >> /ProcSet [ /PDF ] >> endobj 7 0 obj << /Type /Pages /Count 4 /Kids [5 0 R 16 0 R 26 0 R 36 0 R] >> endobj 42 0 obj << /Type /Catalog /Pages 7 0 R >> endobj 43 0 obj << /Producer (pdfTeX-1.40.3) /Creator (TeX) /CreationDate (D:20100419154306+02'00') /ModDate (D:20100419154306+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX using libpoppler, Version 3.141592-1.40.3-2.2 (Web2C 7.5.6) kpathsea version 3.5.6) >> endobj xref 0 44 0000000001 65535 f 0000000002 00000 f 0000000012 00000 f 0000000277 00000 n 0000040545 00000 n 0000000165 00000 n 0000000015 00000 n 0000195071 00000 n 0000000626 00000 n 0000000843 00000 n 0000040504 00000 n 0000040523 00000 n 0000000013 00000 f 0000000022 00000 f 0000040878 00000 n 0000081460 00000 n 0000040763 00000 n 0000040610 00000 n 0000041233 00000 n 0000041451 00000 n 0000081419 00000 n 0000081438 00000 n 0000000023 00000 f 0000000032 00000 f 0000081793 00000 n 0000136140 00000 n 0000081678 00000 n 0000081527 00000 n 0000082148 00000 n 0000082366 00000 n 0000136099 00000 n 0000136118 00000 n 0000000033 00000 f 0000000000 00000 f 0000136476 00000 n 0000195003 00000 n 0000136361 00000 n 0000136207 00000 n 0000136826 00000 n 0000137044 00000 n 0000194962 00000 n 0000194981 00000 n 0000195149 00000 n 0000195199 00000 n trailer << /Size 44 /Root 42 0 R /Info 43 0 R /ID [<4A3080B10C54D3BD1FA4655ABE4E7C9C> <4A3080B10C54D3BD1FA4655ABE4E7C9C>] >> startxref 195470 %%EOF elk-7.2.42/docs/PaxHeaders.21776/elk.pdf0000644000000000000000000000013014061636525014330 xustar0029 mtime=1623670101.14409671 30 atime=1623670101.131096722 29 ctime=1623670101.14409671 elk-7.2.42/docs/elk.pdf0000644002504400250440000245605214061636525016405 0ustar00dewhurstdewhurst00000000000000%PDF-1.5 % 2 0 obj << /Type /ObjStm /N 100 /First 802 /Length 983 /Filter /FlateDecode >> stream xڍ]kF+.fh>aY(R [(M74vDJr=ٖd 1c9_;"K"GR$oŊmcbO\4f5ii\CG:ReX2V"2HQyT2lZ%m!sg=0r!@{dy+iQh 9 RD ^( I):(zM)7AcEAd@aEn *"D' !a GRDsFìt 9$RHZA6dĦv$4#]n#0g1 )+nR؊q0t +)وF " a:(ЗD ^#Y`S L8VH+DMQ~*^+%a$XTXi`/0‘]AK (V|bA]kii-ނ:J/\AZ0Z͇tsK7?OLt[Rv=7~yjg߄>!6_/c-ʜݸzli>?D ^׻DԦ[=}n(5 Ds-5WU?W]枖CݤB,n 4n8TH=k|`oBO5qYOpx=$@+m_9}n^.:\8Wi?Kе]ϣ@3Mk A Է&b= %Sԙn'zݪXⳋ>=>6Cfԯu*m%~E/v~w,ƶOTbu .2,ǒZ] :{خݐb0->%8!%\+Zm/n].Y>L/뜖Uv2ᣐhO/+\78n֧CI*[ǦKW_:{ϊ ?h endstream endobj 203 0 obj << /Type /ObjStm /N 100 /First 850 /Length 891 /Filter /FlateDecode >> stream xڍMr8 F:&!R$RYM`[e%;vg/HKO= HBOc *T Xj"VX{^s!1P뙤Oi=eR1F< kV*E4 Q(F$*{GDsc $dݦHMRwT73w+F<9%@G)g#!9!g jHR;)JII驢G)*zZq6AAQ"`hEuP 1K,)f-0E&ae,b){Psc ɱjvT=SaQ8mRI#T@8b%bWĖhQ9)LEX[ Wl+d1DŽm:Ζ"+hJ!s[l9P%hț r`Dչrxl^/Z-)I0{0$/ŲAcb ؞j߁68ۭj[6OC^]_e{}Xo雖g~:<_:p}N14v4/hBzwNa/V?bmm&q<6oNFͣF+7vXzp9.+&\\y/Ӷ4Ǿ|;tM㴌֖+>7x[x?76-J 3p9SoӶ'n'ԣwp^rgLNn7cW~_݅^w6f'qq.MVJsIV Vn 0ϣw2fq}]3Yq* [I endstream endobj 404 0 obj << /Type /ObjStm /N 100 /First 851 /Length 971 /Filter /FlateDecode >> stream xڍ=s8{-.d%i\($%pH3.<} K d=H3E ,%<&GLugrg*9d!VŸH!şS%A M-8oޒn#r@!#)B!"/y hqŀ`h)\tPR{GƠ$pF*y B1bJZ!@a%b$Yd8۱aatH-) "^`+VXUPxB^!5ĕB{F>ȉ"babr*(EዃC@5ߨ pY^acġ1ȀJQC8ISL"t ʁ=1Tf¹R s{awTd)|Ģzht3Ǧtw1ҧO6|[Bous-ɼJ4%Zҏ%nJn.M]=ա) kY҆lhDZJt\衯bgcWuI% 3ݷ"ϯ|7qyP+>Cw 8/Ë鿾ܕݼ#T>jK8WPM"/|ה Ez95~_gӶbYK;iJExv9}*uhrαٴծˢs|h:e9N,2dyy8VD"=˼MRm&a,dVyݵH&+6㶪ŷgFNѝ?OiGSG9_mݜFsrf|z^{Eq7ߺ3~=4hY&kyOqvяSyy?> stream xڍr8ཟBdJS]yeo014x~ '஻肺%I{i^a.Q^i4^@Z 11j1f  oucSW/ø)QRG ϐg EFx)88Έ"ޑKdd .m q®/#l[cY(#&9؅2i)U [V>@N-M:#d19BV>B&#a 5n VT!!@IE쀐HJKYi& A)-ښ!0Bb(8LWGl(~>hO]^C2ʟ܍u8E u{k5ñJ eDW5Uz'ɺm,'N9t)$%.vvHCGTEbW_il3=E]<ʎT^Ekzhy]·EyQUg;Fx]j"7n8%~#?q+׶ їy=O=3k c f_"9wE u6t6:}[4%ޮ#> stream xڕv8<&T9}z5z0 0y"ƞT/[窺*~JYQPh=.1:e5*IYUF@ZEqQ%EkV΀CZ9,r}䔧G#T33*xd *Z%T9ΧRq)&p}TOx0X8d, )yc26WQᙆ2'pʜ2eN١@vf6= {rP c rH6ѡ69 'lft6zd9jM *(a`0hMn̲Z.^1 u:@vN ;d0zcf=cfP84 {XgFh2̳ lNa," 6A0(Ld"r("ph-':A"&r9pne8D>; ܞ80|4 Sp"ExʠShXHfN1pizک?]:E{nvz{=,jA~X~GԾ`aĂ,Cuش*2TPmݭK`<º%St, ̄[7;d8;uKS@w\l?oȀr(;ac]/_K`,d{@5%djW]i,CMkӖʲQ2JUPYcX28gf gjO8FdpMdxFet?ep.?hyt? /kM2#o5eȀXl9$C%r~),] oep_Ј;<eW}}Et&] v&yͲkޮtlu}h 5ϺTW$04b@Y܈B $20 ]K^Nzm'QIƔ0w N_ACs`oM{zlUm_WG iLkD!g8mOWgL> endstream endobj 1007 0 obj << /Type /ObjStm /N 100 /First 969 /Length 1087 /Filter /FlateDecode >> stream xڥn8 } KkiǹdA ڷߏd \ɏJm&6|Z|:c@ek6ĄPapÎDIn#:[|qYbo<=Xd(L(:6ꂉAv {|cR#{5LBd[d+J69&ĭD ƒ8#^%Xҕ$Y 9 )O+gI"l)K iP^⯕poȉb4A BQJ G^"Qi*>6xM>lfS1DNx 3WS,<J`9%/ )ɀYHJ9e?,H9Ϲ! <&F%&3s?x6Xx: D2r\(oٗs˭S9H ×/y{g0/iݎۡϸ5Oׇ|6ݭ0V74?D n5~'~د%.>%/ϼo;XQu$L~+e%άmpײeAɣ76JϤa{wwIV: 4Oaխ?sDSR?3JRJ"-)]I\%/;+ynuw؅+ J]Hc;w"+YNIq ?DV*,=UPPxC* ]I=g,X\X㪽G$ i߭{J-mB$BW8{JXKgZ{Fmw©atyjd]&֦:knIWeAɻLw9*Yɢ[V_g)߰"[L<_^+6?ճ{STOMt%-.u>~Tpӂnxm' J^PO舾v5d%z6Qɹz&ŷZ_ endstream endobj 1208 0 obj << /Type /ObjStm /N 100 /First 970 /Length 1144 /Filter /FlateDecode >> stream xڥr6E ,퍍#55T7XE I)|}nC$%PSY/ӍhJJ PZ)a}j"}:O+/4HB%B[M#tH4hڥ0=`%%Ƭ8tVp>+IxI[ebY+56l8%5N, H8^$GrIHxylO{H#,Q&N\*/H1 OUq94~9uD i/A :!(-ʙNr c*#$6##Rэ*C#lKJ>`\C50V˼P-Zɬ%(gC*JܐZS48uX#IJC`6T0* Ņ: `,e:TDx=``bm,ŀ:DBcps أc9Ndݨ\6 7U3U!Q uu3<7(qRscxn,eP:c匲bsM~kOݺ1$_>wh&ϴz6զDZQiI#ZmU 4+>OC'xCE2gVz"J~W;-șvh#R3oK#ɚn~;~o ب3ifU}hYgLKdMt'LtkB]60S -"}ԩu6 oWknd+ / 25vFvC`]d+M}qܭ9LҺM1IzⸯՒD*4D?BGdI;q3ǤBG137sLwx#ޛn2LN]T::o$uK*ugڹZ 0 fM endstream endobj 1609 0 obj << /Length 552 /Filter /FlateDecode >> stream xڝTKo@WHdߏkJ_9 ؿYB !T̷7[ksꇃ5΂S2NA={e ajf `Xi;3: ;xn֠G W0FȽ-za0w2apt3v0ùR{s&K$Zby@)z5ahAwzL`.aWC]pG^hP3蔃ry i]_Yykiݕ+ʈhB#(E/E9eXY֢ܳ hT[mLs:Z.*\~\sho*vErW~Z nPijĄs3` T7d/&zA!"sZճnCK!)tPZ_sU/ŲJi|KǃIJZ./&lJO6@d: Nd>1M?)RjBU 55n~y֮&x81WF[g[#/?- endstream endobj 1409 0 obj << /Type /ObjStm /N 100 /First 970 /Length 1192 /Filter /FlateDecode >> stream xڥKs6X ųɢ$t,(iS*/ J R-f 行 B e7RGh<Jh80B; MQ{RE}X쟅ZkIsԊ[&$NY%-m$<&a MجSh kpZ;ު׀45}m C#t<~~0\Gc ItI3sR웅|]I=ܬfxLRަQoղ}j$L A$)N&pr+G=F'"fU,fr'_͈b&9jlc֪c=珸U7$g‘5ժ*Uǃ^uj́DZcie3v3ij@kILw햝X?oc}glmS]9ѮrylܥI Wy[⛄`މ`Ug`mxeӆSzj endstream endobj 1607 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./elk_silhouette.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 1615 0 R /BBox [0 0 818.336792 550.414001] /Group 1613 0 R /Resources << /ExtGState << /a0 << /CA 1 /ca 1 >> >>>> /Length 5438 /Filter /FlateDecode >> stream xm[8rߵZ,ex <~yERӃF?̒(2/Iq\Qy1^i̳׫l%RgkIzY_:7uޯu^Y<ǫ|V^IS*:1_kVPzTt]gZ #s*3EIisjB,SsqT^LCsz֕_*JS ԫCTXx׼^ZS3KΖ<oX9Zgk'<)mι?{z$Eje{7j },Mmi1lX9,QfA#C4KosI9ize ߶KxKyR Y2w ))/9*W?̹e#KªD\3l;jz˓HZJҔ#4W}MyQGk_/$Xx Wsz2JQnEM6UqWWWG+z42ϢHP(02p+MHSkoĎ|3kr9"ٌ֬_9X"}NVɝ=M~yձ5R&|y/u`6cg &?WP(耟7ސ~M b[rj#[DԔ<l4Tܡyj?9uKh}17~!ǫ6R !_mٱIM_$uu/*xdKaao<~_Szl"$[~|nTcIM^QSr@:Vބe!vw4=>婸RܫLxD> cK]!Rf$] P@uHa=|nݱ>єY9#0$lvxC 4ȒA\N&,Rgİ\ `@ yI3ILU'1m}Nv|I+q;`H ~ 8Wd3I`p;A+7ac1^VHZ!L)ĭ 5+87ѼL<#ä IzEA%E"O硰wa(8[,Yk{}غ x43:Ү֬ܔ1c8hdRP0jx+B7z; c7,(48]v4ALCN=Gҝ%nDD2"#{tvV3"Z0w_s  Ylk?rnVHb+>O='r%z[BN+PF~}2JVOldӕZ 6Ӱ: Zwܜ_$I5/>c0:n=łH].T1;dXx @;L{D JƋ?n(+q3< b٫1vN;j4{"(Q3n(?'a3'!aϷdWGJ2~{7e :2U[-zT(xy@.p\?bRT-FZ 3U-=j2wрi ^47ܗ*kh{g6i_~)_`Q0IwhjoXeV2Dܮ])m8ptPBՄ}4hfS7F=j.P=$9(܏ ߱w 4uYn Ո}IN5ZTd䎧!xܮ]cv515f,|}4BٍNTYt^ڌ!5{]L&.E $Q?mG5nB!{oEOT6~Q洒`ޤ" 2L?|BB낫K{~SLE/VsCtwU+›ZGiҮk+,9F۶\fYl=AHA&!mmY`&lEN2_}h'0Yg's4+8!;-&5m \vVSsT>|#q}{46)NfD%ѰvNZIsN2B$EQQ &C\'oT希HZry1L^@_B^;A)$F0VSs^.P.F,/LRH%M/4@$wiOMH]TVt8.XЖZC Cu*~ ɯ@%o:ScRqN:腱ܚ= R40n&ViZm(q#=au勜>ؤ|QqYo)(ݔBHNvN x^8*;SЖ%d;IŐˉLwv!rw$#tFg2s)/0PYNDU[$S8';.tAnz L%9~t{%ĤrEN8wc>q-"H(뮾8R9C8@eyiseo3dP*Ã1G%z G22)n TkQ)Dv"E&sdKR,ɂj[AL{8ōj*+jU ^q$ZP3 .}UL&K&њ& :1`1%~fuƋF?o&r /Z.C|!ʗ?$?]o+A@t9{B4:8;1`qOhm1L@s&1nAMQ)>ǩ]`AYT}e펲3nwa/(uAh*bI:)P$Hϵ bƒs]{ zhS*"p%sRthbÇ.8nagX3tY*9p|om fO(9#=WݥOUiKn'|ܟ:\?2-wnle{1PUuBNQck24ɵf.ֻK6NeHt.fǞ)m%lIW ɩgy[Uh ڳVTxgZc5s8֭ FnmLƚj6i`W:jSIt765YhZظ[ןѴu63=>(ЁG%v"VLQD~py3l g$hkƍ>,~vexU@//,4J ֨Hi+A ;PE¿G׬-7O^74|aaTeƵɛ-"ƼbgnRt?OvM>xӰ[qزGp Ao?1+&`z8"e}qp7'˓Ywk#ngD}"e$QoyV{=~;paFʰS E9Ka{at3%Tcri(dV3oeD/tyd7FC8JCd18+;ǝE)&cM~7B5ƪO 3nW[E-oYh356V#o!2=&f~LJeo y2缻Ṝ*x =L?WS0ע I̶?3#7wXEnyL̨+=>y_^@҈:6[e r~¹88 7ZQOB04ǠQ|CMy-}njIwu0jƾ)(B?t-C0]*Q?]Hd)I6c\t=0}k#:b/Dw1׽_t)z] c>PL9Y5+M+?#iz퉜lQ%H2h,ƮK؁1Gݥ|aO>nײk<U"}/Gq>%RӧpW}As4tz˴$K kطFPBߨw* K[6q|Z}>}%Qs ;b~,h$fՕ[2aueҬt|wquQWʵ.w69Br\ }Qnp^U>qcwbyH)OH:Μ endstream endobj 1662 0 obj << /Length 1172 /Filter /FlateDecode >> stream x[s6)􈧃Vwv'ӝvu}m&\MO_c2QǗ\Vq s8|@+ 910P%`N'f2Al$"Y .e1kg_0 )܎A' 2!x+½_5U96DM)y G3yU&KeO"j8^ԌH͍>u?sg;޻83?:bo5^Xmyզ(G/+}'릙'w%R)䬿;2w Jf EZ+xq+>G%6L^AKBpceaW9԰S31% 0b/Ӓߩnm+7ʦv"g^X6\7I^Vw*-W'F*ɻb x=ۨ~i[V e0Ң |esL; W&mVn#]yzZ]q z1G˿4?˂;B>㺋I&oYvc\zs("xwqN"^.wx|q']5YzӘpTdu ai r:{@ÆMc3R ݦq8*r9^@Iiʫu3 Ky($! jBUIá HUn9Q[6ڿٻ&RĻf3Gj4wP?j%~Z&H"?忎ȹXq5aXYXxH %=<[XiCd4,8K#r.""Z.C\H,eYh4' EP[EsbQM'<ݢ*Osb= S_pq{<rnbQVh7NAA{[εHI+$e9$#!vH+$yِ(+$uS%u1:S3 )b6;a endstream endobj 1719 0 obj << /Length 820 /Filter /FlateDecode >> stream xMO0;G8Գ:i 67CMDp oj0hb:TR~z&l RPLhH(eR،ɏdb8~]|9pF#q\0BKb2% vs˹ Gl7*mVYJR䟡l|ݡ<\piޝ Xs _u,:P0 @0/cw۴h1 wh1b0bu+(0_L2/TiPė6k ]%;BúY4v ~C2xis-Vk*׌ *b!1tI}{r6 Wv1:Ki$IAxՔYrSf7&P:0Tb1kaI^@ʘ2ꪦq9,۷XOހ^ݠ$"!mx6"L^]UHj=x"1h^ol^!/$ONA[knlwKPτF@7]`]LV{"^U^o"^~"Dad诛C-L-2 Iy(B0ʹ]̧x<OT endstream endobj 1616 0 obj << /Type /ObjStm /N 100 /First 1019 /Length 2590 /Filter /FlateDecode >> stream xڵ[KoWѾv,r $aDց+PT`|$vkg|Kd!$\ON.Xq;g oPٯP Ͳ -P~/ A 5%_} TJs 7̜ep |hqGC,p\H$E46qɂRXkk"҂Ԓ 5QJA5M\*]ҠZВVR :f[7KPj*0 f)% VK.Y u)mj% ٬w F9wIC.IGN|EڏZ(mG(&.K.]Pj |,ͺ$%u/蒅*GɡZw!nRC-8إBKB%MKvocmP-45ֺ L)uuVI"?r9̟7I[wkQ.Cج3IWT˰_V.b7N؍I(؍ e/Gʵ[["v~M8w#M2b)c7}{rwٳ7M)P?~˷zO7?onN_E}ַpp˛+_Wǒ/Kdm8ɒ"J揾t}= S%yo?xuݯq&mx|Џ݆W˟x lp}1Օ_=;:k|o.~ /5ȵ~n[~}}җzڝi4 A`CCyhYfehYfehYfuh֡Yfuh֡Yfuh֡نfmhنfmhΚt?.O77Pχ_}p?{,B֣݁Y $"QX>BסTJ J$x$bW(]HE>lcƆɄ Ew8&\k*9jiSǴKLS6 Uvl2f}Ֆa4Vb$`:O_¤i׵Hs>8ڧ` $Y>[̕=O#YΪ>P,!1;o{⨂D⟁,E.K%k{ށCAJ{%4,"h-mPi(u=p{(1Pz(YaJ :z,P+KQM`YkEw,#D$`Ym982&f[ĖRD.cnnKM'jϺLn'M"^ta6k[]0JO OT{ov!L#fOr\mN#^u}+8I;9M#^u ?o'$<>璤h@QM"^r ?93p7X\J͜Cڹ*߉RďrngO2ͱ,, ʇX&o"ک;sQ9q\RL#ʥ?Dؠ`-\:4סuhCs\:4 mhnCs܆64ivN!d:BBBLC3 44LC3J. cl9ƊԘiDq~_Skd}3#X8 䁉F~5p @?X(M5䴀n<{N}%27s&YMd(̂AF_e3(뛉Jt}̵NF O`Y?#k=T0G8"݃۶fVPxkF[7d0}콽rD]I8#޷ &7&jϹFɹ,zHw`*ZÈTO"-;p|ƚ4g]HJD]Զ8dT#Z[۪S@va-mozvɢ=h^|le>j*GHuk3g j X0w {.O j;0Ė:( 2eXԉ판n0M`ف#fonDBqBs_0 i-m$24.;8uB@6M&Jcށ$6Y1Nl0Pm73!wm53dhށ#&vfYf\wa ?! ,P`i;0=G di_JڅPL(i -;ٻ[~@ Zv`ջ[# Zd{ ,3Xt: kFe8XeOT>64AD'e-YG endstream endobj 1772 0 obj << /Length 848 /Filter /FlateDecode >> stream xMO0;G88vb_WZRoh!mԄ8mAնMŨiBaGh<Ā;DmL\((V',e?DPjz VX`=_\OZ*sV/$˰vWՊB]o&Z(k?ݷ4מx$ܷMZ},.sp p ˆ-ŦΚ,E^6wQx=M'DH䅑|*9$;'HBY%yNc* %TcH˪!H Iwydi7{mSG: 0^Q 9BRXī(yH[eXPI \KBb-bh D"|79(^MN"QDwQS8D|Lb=.χ[1? si{z{2  X6"r2rQJbV]=Fe=WW1H1e8 cp :b9p;3( ñ1w/c]\x$4d<Ld1\g0HD*oBtDқǜnfM3 PeR>uv#$$ufMRTK"dכ# "UTIs8HzX$ "7EYE%5[dqkb`2K, Kb"[d)5:ud M@`ؖE& zQuG0$|D&txD\_/-5x/Q}{3_Ú endstream endobj 1822 0 obj << /Length 1309 /Filter /FlateDecode >> stream xrF~ %ˤS"x7@K>ͽ$w+ \.?}[:kI>\pGqЉ΀kR_ nj8+K}Db>FvI(jtb3L;-(os R;`n8B0>`9 }J 6)OKa~\ՈnbV8atA @Z@8͕ }f- ]enMSJozH{0xjyIq)ђZV~HJIy#HujK0#RaMaY7mA 4"B 5W,)ZJ2۩'6xVqKZzc\2 i %1 7$;|yFAq]%+n-xѦT &>哪{z>)2b:h3O|Ԡ5( !NڔΤ {0)DmͶRڛYjjArrmx7#WJm{6Ld2';{`ѝߚoj!(?Pi9Gev,tkxm>߾+55蘛jJoV[ZG0̸jmHUՋ= KC t[fm9 $vnE¤kp=T/aH\'78tDDBgpe$:VϽWƦ:>^זa0$L F(eѨ*)' h+ ߽`0IPڳQI9#]|GO*dlcMl'W>wHnبhjjʸ}Éu3zBY]f.3|2|ϐۺ6zm}Izry endstream endobj 1721 0 obj << /Type /ObjStm /N 100 /First 1022 /Length 2506 /Filter /FlateDecode >> stream x[[o}ׯcxmb?458Ba4 3KӢC"vg3C'j\RIԨ%ߍQPS9!ah²DLaDr|Kcyh &EU8$,I,bnibmaYJaj0!=I9I(F$#[ai~a &`9'Uq:Z|s+Iw(i'+ݒd`i2>hrX5UZV*氞 'ZR%wb|VNUKX2gP5:@kgP|9R#RQ{Šx $xVgJV&EK-K]ȹJ^K9/m1{wqi4( I94F+ι4JKctnI9 (^ e/w>q8aHZ'#JT˞'7ʐ01K &a9ma^0l< 6M@>cE8L&ZlRKMyf~ٴ0̦R͋7ol._, 2}駷7_|{y1xN/"bKM^ӷ_~Loo^۟?'-xۛ@>Ȍtw_ 6,s [ 翼蛳9а!i4>ܦѧ1.i4&Ld2e"D,Y'Nd:u"D։Y'Nd6m"Dl&Md6DN:DN://Axsz量?Ï N__y-kLj.y2U:}1]o=r!ɑLatT^2s)s+l$se;+v +…siەK׬ \x?_W["(`=m\Q5Nu"=QҝdOznE;BR jFB^ҶSA˸K-Q%-p/ 8>~͵Zk5^EcIV'Y k8M.Mدk.2sk9/brد8gZ(r/FKyJW]3k2J.eWfʋ֖+/HدrYJ[Fc*,?eUd^FT뮒ee.#'%2W a? ^PTV^s_jVW^iɯ+8 +0y}^䴾LWe{"3  ƥ2Aup`[!_}ȽfHK&2WJNpN^W`s鳭JD_ ڗ_(t*3ȾBfCx_d&/t=Xi2ԭkqaBf2V\%NӕDQ?D/2L%X"_{ą :u'Lj/.X1ZIL_~Iޕ+%1~%)|\(g%2K{ӧM>V2_yke)ˢ+ @ۮ%'NB8$&F[g͸6mm6lhk>[x}lO>DO1DyL1DyL1ٛӐi4lum}&2Md4i"D]f/[.1 MwV# Mz\G5;jKJ{`OҤZiPodYmj"At5I6V(JDMRC_кcd4pBUmT~X08F81U@DDKJyVZ>5U)Y@ TLYx}AЗp?{`FSuĨ{ŋbSuᅸjA>OeX /*~gPВ0Q`93zЩ / jA /y*tjxٟ#WT*u!p*#9 -.BE@s 9kP8;5.t,iAb6 [P2܈V68;~2'86[]HD܁ (^[Lto߭f+\@纒L i PnĮ_{YV@GZ꼐{,ΩYr@I ؊?+\]Y)qn7O\IB6:F!2j n-d}F.S ?0p9h{? R'$1rB6K~[sn Hv\\(/ Wܲ_vGx!.\_ 9[''fRS endstream endobj 1875 0 obj << /Length 1750 /Filter /FlateDecode >> stream x՛Mo8:ڇp=hnm^ŵlPV$JC:a E4̣3/GeS9{(Q` 3R*zM7iOLeK-&1DhDw{0[yo4+9^WBǧp-{f[)e5db)^pP Aiim~})ieobӪm2A%-5<=wcRg$|FedEFɜ k$8poPO%C C rb゘U$K Čb f,?85 Q%QYM2Yw.嶮H#:LH,d3`^Љp UQy\kbqj8C+0\Aczچd# Xc:[كhGK4p&^/YO4Me:\*봇Gx<؊0FoY ^scƹK8E+>Gyj!B$4xI,/;ui\8k.qm}D`O'ʉ*p,u]+`OBTa4W藁˷V(05`!h9(VYLxL> &TjTqD(!"-n4t'm'6NڀEՖD8SnX)&-yBmUBqQ> stream xrHz^,*IUvhdA q\[dS.o"F~A)CX*.(_56Zї?_@> ZR.8 B/\Fʑ Ass$sbsui95#E "˲j+dvH+.&T2}};"\)m\THW4=ٿ(/c,lg|7 1&T;ɋJ2UUzI.|<6v><|q_Ky덑Ղ" -&[7i+bŵs_/؝/Q5n.~XY\=?jmzlA6EC U 24" L 0V*+rN|X'!J]Hxv-_03-OhA$N,ufZ*;W.hX(@^ JUYs[䜴,Orw[0q%QhDɴz7ȫ)&ToͩtDr%l%`T0 RJݮxpdVq〃5G3nj8EX-LRJ^BL8dP}eЪyD6(W( @%^,oL(DTLxbܩħ H^fU܇QPo$64a%KV鰡aZ8`gT hGgj5OOZQQْN)[R.KON(`SeEfVy~Da,R6iV>R=0ownSIǀ1up;׺U HCFfwl KQIaf`8 pn~2'ӝ %D'D0DC䷈CwڶNZA=LpCMU l䇘X]V\sbGw Fr~x~_Q \SjC*l\)'*UP2]?C3z=ȕ8MpjWXQ|t3x}s9#`o:Q` 9.uyC yfͫf endstream endobj 1824 0 obj << /Type /ObjStm /N 100 /First 1022 /Length 2327 /Filter /FlateDecode >> stream xڵ[[ }_QK%Ufa/8 $!;e&#yTߴNQR3-nZ\Kg/Hf?eRt1 Uukj~̠v {4.4nVhpl(n̚ 4 TYJ?Hj5轴.j(M[RnZf-얖N_p: g\Xn'K_(V :=f|z2e XR˘U 2$,.C[[[HnIqz"rz"{ `3&1̶ld- wiq3sbŭUniA\Zr Zctz|z h 8:<~"fiQ[(ZXPۂ(r?Œv_XEṠ%x(|'R[OR/X+|e VhV"%>/Jc R,*L8p55VIj ie2],b'ppkxm5%\aJnbU2릖"^q@S*Suo={vwD׿Xz/+ÇY=7std_\]_7?(/ۋ_?O/{?n{˰aw?~|_~_ˊ2h { _?<<ьw'C˜a0Và08F#[ @nr={ @r#G @<y#%%%%%%%%%%g ǟ>>㻟y*Ыo}tayrg^tXΦm_{RXnx|XP{}pyy+jGC!Xqcj .š!.P$$>D~.> stream xݛMoFHXzI'["QPe]1͈lhLz#`+j3܆Qu5Aga߰ b4WV0j"[N@fze"(T_Qbx)1"5 ag!p ĂOV"L#ڝh#D+'z'GQ;³W%Ww:^ ZX7G_ #h|Q٥ nu/Nf.61WWy-5\t,liy,~f:O6tΰ=8|R>jXD 聍3e 8r>utgszڽ=8#=†H-4W L MKmt86[3NѺCZsΎ1ZHWʼnw9oCAm.Sj 8_`Dhox,^|¼\ Ggw0vTY kp7bqF''_^Qp@&ZsE^VcVk% vdc˿2:6&KXi'Tbb/S:'GOcP{ۇl endstream endobj 2033 0 obj << /Length 1608 /Filter /FlateDecode >> stream xݛKsHs3=jRɁlgoKh@H[.hI=NrOSPŌ5JEV,!)vP/?//:8LThI`TၗSr50[i2Ñr)}lT_}͓OÑr#ISPGÑb3ҹcDFq;R~Ȉ )uqRֽﭵd ]^<\q9a1LPm,.~22F]AkN_|;Ȩ sI+iaQ54uxvtR[t>⺰m_E_;FЭ_[G0 淔y 4}ݼ$ Tǒa}NuݍEǴcw<@,UX?NVt)p[mwx71쭒Um}SY?OkoQ\>ⲘM#>H*=8e*F&$-fJ"\jV鸊2g_a:\M(_:6DDZf< &/ ;VqHo e_)V yv9 SeV}` 4o{Q׭$+%4tfJ)Iҁ* $͉Ҷ zb՘x.C@IX+Bͫ^UC*Kv̏,;f~ͨlI7Ђ!u/ޡ?m۝7;L:ST;fZ{Q_Q-Vڝl~q=#jJox{)ER^zh?o䶜~0.(V>QP"@zs0^w=cÑA8 LV~Z2(z j"Y'dʉOF7TЏn!m| E$AtQyG$E&Q4k4.RPs+7c<02 JӥȁP^5UCRHYzaw5b}R>b($ٴKbWqR>"xj1m09(OTr)x5jF'oNӂx+Cd>`1<^88ng-N]Asv:w]JMl\IM8e':kQkxux^CT[P ._nh(m>G\Z,4V 6?3Toxݔ*I3\Vb{UWxv}ڲ3:jCEЊ&/J8񰓙) eI L;N2b|V._s>}OyVle $ ˻=p}* o^ # endstream endobj 1930 0 obj << /Type /ObjStm /N 100 /First 1024 /Length 2337 /Filter /FlateDecode >> stream xڽ[] Whn)J#@m0b/^8Π01}y ѠR s%=oh0hpI$dFONMUfw$]f 'fH7K ,<܊a`{&SUxC@]XD9:w &4Y1"[GvMLx#a7j70„7̈́7%Lxc-Lxc Oj5:6zq/F7cZ[̄R9]j16hij0V*4[0}_g`[]xŋ6]_?o.l9受?]^\~u=-\њ26x.ooe×Ow722#[>ԖXc*T^wy ~HE Ww&}?|-x뗯/o?no.mD_>}87O>|wKqcM҅@ {3@,S_8>'ojp%gj- 10YYYYYYYYr 5k @\r -[ @nr -5555555D~t? Hhm-3;BoN%rLeL]N DED2m=H\!HFu`' kz=jk3dz2##8Cf'# 4UC !h1ϐd#aё[!ܟid}вG34ң<)˹\OnfȬOU->I VtKhgϿy Zߓ N[G+x0[\nYg O=X՗/G$o%2{!Sק_ ~X\1]3UO=OWp>:S+#͇\T_  ՙT_``9)2G" YZ<rFe2 X@H:=tIBGcr)Lu}-}]@Egȴ4)J8S-H3UOE<Lg S[~KH7VRf S[~ {$PSÁe[G뚡qh">H|&>)9m2S#5ӏ'_KGԩ!zn=[)?}*R)o7y#G ٿp5( !a0ZF#))))))))))999999999ϙ&uJѼyyRg/N;W}eԉ6ɿ4-uOQC3)Jg}Jڻg:>ڷ>6 796zԦAۄN2n(eBmBg+:G't6B琍B'fk3Q)xJh۔NKve^O鴼[JN'3tOw(PJ':}Jg/'Y>d\U:яS:fN V Yl:R޴ɹn:5.J'OD nôY*V N}y̴yS:J'Sާt^4t2>Ui)%rZ|9_V:dYr҉u}YS:CCU:t҉,J'Sߧt̴4)OwVdND6LNdӜT:yi_-:'s٦s^̪XXUγV9W endstream endobj 2060 0 obj << /Length 1050 /Filter /FlateDecode >> stream xݙMs<| Vؙ3u-xҎ(o]ml"( d2_?m1`a~w6\hl> nz2z & ȕ) 8bRt,ek~ H RY>,|W24gKS>> q؝~ 30\xgZrY*,~ұR:$͋UK6/k%E:m_tKx:6B<[q[,v?4D qࢱ2Gc.zS1VKR\$Zkf "`' e&À _hFcizUAK5 #;)e,c@huzJU ,zT7=ewMEG'C ,f!V‰ꃡ`P4䭢Acm@zDɌ*%ϬhU@\)_`LQbj\^€6b6/4ҹȯ K^z 'ǰ= 1NmM[}h,PY (0BzR~(kY,_z^һrgz *P;DؗH6~6Q,UG ȗ|Ƀl 8.bi:[i袏&/HChiUTaXvnRuOWγDRgVH$|D?OTL8, JknvD)*#]qyl^6TO*R׾ygT^6av'of˛ay ch:'a\P\o/KuU,?UiU ai+N︧aj۽جG5jY'xiʇ2_}e>m?sP3" 쩴+-=9]<#(vjvG8žCauKvk0rW,dHY endstream endobj 2066 0 obj << /Length 2859 /Filter /FlateDecode >> stream xڍv۸=_>:'bxGl׉M"i~wn6ɉ că%4eQ1),l<NE@ .wߓw.xgaHE9lzpI|liGEkl3E(,2F`<_4n4̢Ei+k^&)Jm8xZ/@1}V7CFՌq`p$/\FHu5֪# N<+HIEytq7}e4XXG^ViLd]IβڵF{GF.܋o <#MCPO< >LR)?*Bձ+Yg/@jbb\=@9ռƏ4iHrzgGnץS*'8>|>^ ?k6Z!+9*%LAmd) ܢ( vXi |"M=2?9p\T'[ yaaeχlk"7Bu "V}/E~d1_Dlyza6$7Ŏ ؊w` ڊ`䁓alڕZ&|!h&ڴ ڪ F  i]3d3@9$_]SiK R/ ԍvJY, *113\]Y! 8 1 {\k`"Ed~}<=V}R2 6J\qGbY7I~aQG o~\ϼKHn/nq늡8h Y0kxu^ Gm~R){uc\jF-~PRrm鲥tiD V39~2 *ITcLT98鳖KC,e/ G4Z1Ѣ.{eQb{tP$,Ւ=qa^}aY ?NkUXn)z̩o{%crI AJH;P oʙ5w']n[ tmxq@!φu<2\ PX 鴩RF{@X0),; VBNC 5Ha-P¾f_Qjе9Dz,fVpײl=Xo :VՏ \δ3^ppz4{ڕZ۹QBq9rοq߮ὂP䁄R:źp87*LH[ìH=WZ8\`.;-~1KAd1}eԌ+6id((hzsQz P̾Scxdeu;Ƃ`׊T% PN3V=rp(fӺ9*`>Օ7Qg`%9VsΡԽ~8:Wˆ͹),Nv5}h#-cC6Gq+1)rͤ Vkx^ L55[>ەϵ8FܪWvCL?Q~3g4[w͆.jRק-,8q^9Y!G$90=ƟGC;pVHfV`93_CP,.!kϝn)g=SX{DqVDčz5%3JtǘA@@2(w75}D,pĝuJw9lR*aYW b%fi_AG4.NyJYU S8JKiJK@7 pD1B̲sfq\[˘hgOR~Ր"a/,_=j) @8udaKhmb'!YIgPшpE)a4_ $n39}{רr[n_1jA #KjZJVh`#vbG%=gl+O-~7_DEV04 HwoS~| rïg*dGV^wukSNQpUDH1б7{p[#]$1?مl}BˇPzC|kc*MZ"C [34thD\^ W!#z;!aNmbMmlF*!w'?4@c\]<{$%Gew =f0S|,oڿ{1 1>bm; T\IeO꼴Dq~C ¼` {i"z/`y98*qahiZ #V3ͭui)6Lj{-_XuB*=~^|1'pLl}yh&\%(JBz;*0'ܳE\}'['8rz-C@8 fGgD GepI 7(?Gi{Ke.lhhWO)wB`=$8w '$&2]x z:rUR&P迮ш endstream endobj 2076 0 obj << /Length 2473 /Filter /FlateDecode >> stream xڕX۶BL v&NƍIN'$!d{RLvJݪYH+Sw?@~_>{Z˕B,YޯdXpv-R더Ioʾ[o_t%cQąj4aMnQqcQ;F}u❮ۭ7IQDmp ѫ7΅lx bJEoeǻݩ]r|.JR$bD17$2ᘅ={VxTH%R] ʴI2|%Id"gE, ,z<ݡE~2V"64 XZyL$ȳGdL/`0%c)lAzv[S"VnBJj?iܴ}`@'DHx@FdܨDY{f&j/@tW-uԵmqFܡcE/_Mn8GMZ>kގ2$I@/1ţUhKTكZ7JI֊#@yȸțnZ i KCM/nZv 1qeALDH|{)FF08ت'қS+E"2Y|_}` dc+ADX"aS|c+ޮq= >RjVwJv&qJg4a3I4&f,W=1hXte*4Md9nFG.2F*yEKpH4!`L'ؖGIT#a/@™ Reۺw HUiAs{. jxs*m d͞p5UX-d 8$gloyc83bWKB}A Dv ,}Fh+BSrc vCVCMۊAMn uG4]fA:ALHkg@Iޖw7Iiab֛Jmbp ˪h4Ͼ^dic(]H89-t~Pg$盒KÕTrѻxa^jWE;Qp¥r\܆>VvOlq`P` vɍp@]_IoPxc mߜ{)DD A쎲mm&%3];ChƼ {O]mO5!g;-T3= :$R9F,@ղB:lQvByϳűeSq`v9k M҂e$Ggu a('»oPYя=޾㦕.jmhE՗cغk=&)%Q)/JFKt=qܸK-OmJ@m%`1v1xv5u18[)G_F<L5oXFT3ȩ,pl4c{6ӷ2'b2h l=>~uIeDV,+ @& P`%@tsxu(FjW"jsvBe ;ĜU@GۦXۃo@ɉSu&bc{~?}?޿^4_*5V#Sr?.8G'_ ihWV8Znݖs\$ckd_Áx؆wK~ qVsp_̔B|ew2NPP W_rx endstream endobj 2083 0 obj << /Length 2096 /Filter /FlateDecode >> stream xڭrܶ_jgHn&So:i'CKǺlDm (Jz&sE @܁ !hBF" TDqi1xbw4Xqc"J$I a^ucS "edI$҂N[b?r[n͠jυ~۶+ULkUNnHv!ivw_!Ҹ@ؖp]z< (7}缼]9K -zx<MӪF mbX{dxa SR Lqd(rxcF=ȴ\brlR|%`9&"lKZ$Q*iFнǮ;S(tXqa9,C@7`r(nZqpMᜟgFO]":-U[>$IO2y̋I#6xw,4C`y׌UKuNjnh} pIZzN w9zLQ7ZS9l}Xeh)/h)jTMY!pHP) k=յ4D̵i1[A htYFk)y$m=ià\Ed]7htmlCauT:@{Ah7m1l:Ldq3taw}Mյz{YUEz{|2n?QnqWΖB T玜ŴáKXCl ꍅKBAz7zC(a4 M_7 &xt$- SsM8 d ) VqP!h("xqMDi6ynkG)k 8O~og3˧J~e]*ȍ`2%.,>RY'Ugq/) Zpk|dQ:U$g_eb䅈8_/JTWTCO."S0̡057DwҵaI6lfQ"8yss}%-8T6c>DV4W)KOP%T]M}''5vνsq ~ Q]jH~.7ݠ iO[QĕH=|5=59U|2 -]`'ݺk;gM0q$/ HޚM*fM'EjbEF~U!MAHLC )a`ߵ@F!zJhYO@pL>:_dfn>}R6vr(݄% (֙@;Yim \[R ꌧ`u披=ū ׳2 #>'vd}$NRB_pS)A}t'il4I~TSS/:ڃqr;cQ\@wn(}0c"vY~ 6@1C\jŽw(}X!㩢m *7 >k;4nFos:%ыkZT}B9p4:G+ykok+؉4?G$_wۺHـ&<Azt4?i?*{Nfβ87F-g@>9R79:0d0ZYrɻ endstream endobj 2091 0 obj << /Length 2481 /Filter /FlateDecode >> stream xڭX[s۸~ϯPJϬhE3}:n&}e:0YSBP_sEtNxpps+zwv,<)L2:1zջn7 0&wojR*.<]VE*$avHZ4޻CZgEW\UJ%q %%u Jt<]uE_Yk<t̰zÞc`a/Y AHC&`U<0nLκD5[?+84 ϕs[&{ǃY ME%&p< G=$ED|G0.FK^p 7{gh9tJ-DPɍ2 "rѻBdcx{"pYxu)vAt'L0IMqDI P^=:c6Fl6p eHA~)LPÁ냤qוRͅrYKf9O?o:P!)pH#8+dsHr jS)ba9'Sgb~2yuHԈܽŔ/[0Co(kҲ 1KžLSSĪAṊR 2QFTrAķћ], ̋8{ƌꎄjܠP8t 6qguӵo+H_ |q#et[4F*hMҡ2">j T>sΥ/h&3U9Et39\K> RMQ]~+d%^2.CၸW⹒0eX&vvV=p`,dl=3b78;ڕB"(+)>,+ 48h䎌]tqf\ _{Jy,E%2yhTS$/HT\oU'xl.,/wpdĵ:y6 7Qga*\uSpGSxV$L;%IFpJp4͍{:qw;.jH"w=\[,>|.APәa>ӣ̻1Y7U? ^xR_ƴo <ۺx Sc8#|MtHq0X bZdmE'6`wCa!"40c@X hfvɃ ;.!pp> stream xڥWMs6 W(؝vzomĚ%-%7q}RDIM2 3b=}ڈ¯5QTg:ʤ"T?($96w(pT_$U˜~62Ml@gNhp'ր MmRq7nʺ]ߏ^ N(,lMeeַu{ƀ_ݮ.r< @} !>(.1^]0 0!&NR;i}[y;RTL0J{ E4UmM9v0EؑV؁C=n\4fg|~g8Pu *Wi+}=$xM;]i\nrd5J Ŵ/bӜc߾3t&J4cxϿ\cPM3;-s {oS2I8o]1 kg{hMFsۢsQ6yХ#6ӷW:j1nMaܖ5?XTFmX)qzMeYl){xGrJOӽFgSlwaƢNZ\(7NK-:qSK+^PK(}M(8qw $YIRwFЯ0ΫqV_ &F8%)| d4Pڬ\@W?UWz3]̟|5mWEo$.{ZPq ove=35Y?tZ( %L͗?BHy]%\͛KGyy;җRf}\'ͧǃs(̉Lo^{;g ˯% NTg 0 $88WRZ'e;~sÍL+IkzijDsx&0?,|[:)ЍڍڏgJ> stream xڭYY6~_ᷕcEH $L.IAw@)dpB/D,fBd+t pe~t-J8xTRp X"i&  ni4rF*yF Ʃρ8PMWU~FqIz=A_p4+,. v~RsɸB/Hq!68N8] XbPBu2 3l+fY 0r*G2VgI.H, ea‹ɑHt!իx ygJ;Rd pb/m)Թ-6,7v͸s,8B)7'DJ/C:{ +,-9dE@CCqyn7> ؘFVrbl:dA红` {*&teQWg>L0<"m˞ )(ݰ&UӇrnPYops[ 00[lAN>1AɹBn.<P9汵)--R{*NC [eL1ԏ[].dqeip:O(]0O#HXX+R(C[gA[(:OV H-{ʅMaVXIhRs̢KА"ga1mq_nU 0M66)r82N>F@݂lGXk҈SiQa/و| :g1\Zᦂ\HB 2)ɀN̝#\E5X4#awϓ:N.4 ~U_[{ }{!=}-ظ۟`;rnrĊg `#N)0/ v7p4H hW"ow>!'YЙPP}=N vԝ 2Je2z[}_FuiWN){# 0ar4us>0{ݷpӛN u0BCלbaҔA =LقOA=[3wpFڝ50&&Vgn|ct&jp:ϑzх: L&Qr}TRC EK0y< +ā;qv(G%ias1zĦmcPR@ʊ 9tGY#7'?-1*=6xXaZ|k׾!'qW8]8W\SSZpt00넊CPUG 8y௛#뷮XŋrV'> stream xڭZߓ6~c .$w{eRu<06!䯿na<kk DwV#=Q%OeXT$6"F?$1ޏ|C#2jm##"#ॻMKnW v%.x?_\E?N#=^'E~|`}ނi}R?\f$=qӠ7h8堢wݰyYڦ d :Z$˩Loi˿`:AUWV5 p V֛rEGOrjt?NA&fL-OlQu:W sFV=zUdb%OC8HIJmYl!0O?JvhS\x[Gݶ#GCDy#L)1Ęex4xXrtR7' 7k hw7DhT0뵋R)්~1x,4ЛJ"5IAV y Pu$3"ƹ:=EM|K`Z60M9@W10/¾xÞe Y\S.شD8@;\B1ȯ1Z3E.=* 0p oVa`ʹCUKO]R/3Nmp{\A׫Rq'lmewpgVՆ /|2wʯ;MaC53{s}`O 87+ ;Us{`;ʄ GШ^,=T/ϴ-]4Tס.{ZeXo#S}UQ9<<6&iOǢ m x o.4z튾}^(t`Zr>Stו-òvsVb!؈_]aO[;"ޔp^_QhnJ|7~rd$y>I<ރGfBjHm~i8 ĕq8J}|e,gjM [=V-\Yto,h5;_fM 9AMy jݾ’IEO͇=:5Xsg-ڶP7tYOs= 5I|ǖOVq庐.hlj{TsT[)/q,p)6+iQก[#i6]*? vb,횪KnW[aa#XbuAJfiiB75Q@x=h.з;N ?8Mg&W]XRql~nI*e3oKzqB0+Vº KXa> (33긇OVreݚԖWI%Mp\bhz_(`1:qݰE@d yDΧ%yTYl'؇0% o,!sp] 1GNy̘V-"ćQ霝NwlN2ʅzSzS2U#S]u"4_F+BgLqZTv1w #Y8Zϙ%=YrE:,zv%IhW"\E9O-hY6j̰1n[lR;6ʠsg!Iyq)q~GB(Dp{ ]e : ]cb 'Uz03S_FC܂{_qzwwm]]:̓-Ljūٶ|9ᛢ]/>72 d_IMet,g}-nEUjdo4dLf8QC9Y@ O/LgJ=F$7VSA9 $#Kc:Y @װ aO%/L).5+ S NM4W|>iKHa;݋@o_̏Р/n}"n9'EPr?zm*j|Y %^lH Yt|]ۇQ0^[*2TKD(j/_ٖOmgKtb҃p$yΛIe`0jۡ]~ JiUA nP;R}@m]t-B5ENbxdt8EGU Nx:.r6AA~ 疛 endstream endobj 2112 0 obj << /Length 2932 /Filter /FlateDecode >> stream x[K۸ϯZa&nؕGF\!ǓC 4327TR) n4~^e@៊#hdHEFulW:u{}s+FILclDuKXVb) tUEZӵkhI'Ó}[5ٺݺcbU], S7d qUUU>=7~ૅaZNV)Ҥ;d"XHtL%cG}'GʕQvS0U[WermZ,,L}gyl= ' V#jӏCi qR^˝%Ye~Z7y6[XJŸ D(Fba^T׿k( cئ¤\kx]/Wʣ JtDjY盲i÷8 OiAʘ&,,?{c 0J: \F}@QeeSN\s=:m,oݶ$o)7@jڇ]:ŸGYNs!!dVPW,`撁QK#kF+n:h]9]y*ExsyZZq"V/` oJDl{۫WGc @ C"wfSz@oC!F8MŻ96qs-|^bi0 "g Z̪~hʙσ*\-}5 5(:8O8ѳIRbhT:C84* )ǜ!bbljw 9d!4d_b7nI0Jh,aMJ3 TE1ٓ!@i9cX_iuL%Dz VԾp[!ܻ2‡k#0+UmZb67uUpWji7iYBd _!\5lFu@1ڢSӺy-S3=lWlZ' =y,kIͶk7/"YHL6GL}.WMUK<&O:"`C4,/hXrq-h8& bd"ҶHv9@_&#FfW C=}2>dx<" DU_zO9q=yfraSOQf"kS"3l5F+þ7HAc/T*~Ao=4 b µGw2t@ 0-f'zb-,k`rlz#y[DC$>-ĖỼE( /{Gܕiy~Z{~?`IݦMyU ^g)_Y&t&?D~g&sR݋7s 0˯l<_f̃5bh&}d {ócvrZ%xȞ. ށ f/zGu5\{ h| =)tH̡㤁.!Z ߦ Qo/c0P^6YMPDŽ g32e!jܛ55;"ILI*g)v1 6LH/<(_וŒ)m }LGBz &&:peP2x?Ea6qT$>#0rƑNT$^V›GdgJk巑O2u>|dž%ʓa[JG xAԭG Oޚٚ휷f$F@cxjP6<, Ʋ jF=跷4>*.T= ꤤ ^9Gi m^LG;|[&_<&.hUV\e$RFILK@N͈mЫC44cR#7`13c4Tuͱ endstream endobj 2116 0 obj << /Length 2619 /Filter /FlateDecode >> stream xڭZY~_][EuAѱi0]" rMg;@mjmW=E"8ݵ },l w&PtA=ME@ѼOi@R>!)I@"+]H҄)y [ɞ(ATgt RH#&! <1wMS[;W.%|2j}חH@J ɮ"Hɲ@n[PU,@* ԥ*fibKMu8[R2`Hd`5,zs2@-cj*4.H|n_b-&4D HX( TtpTKp1P(!=dpS=p4n]Vx:yerҀ;J6[jG{[18 0n^Z԰m !Ƙ!lܡpJŋXAfN94H ɘz!Cy16Heth07R> P],(r)ҙ,/ 9v\E*CSvm`8zPhq4O=`W!dA< 7A+&F!&ÂLmL8(ц~%jx]_GERr(\ϬrCkk 2{rݗsf8.WWqXUSWŋO .ga=܀AMWϓj:cp SQCkqeDCz>BMb# #1cSGS~WeP\{ugG8T6gEG }ZOٹ- 5H2.YjQL[R~S|W:875<%[kv_rARK~+0>Dfo/a8VuJH6HKW)P O & v6.{A( ;0J} kOu9 J( =_B\n(!tQBgJ/|M`B-,L@q? q߶2o.8R'u?#@B`^!|-߮~4e󏦋8kô"4sB5Rʳ+g_V 2cӿ括v_]eE7$#yF~abYhۜCrWPeM?h"^J;ʙDո*&IN=zgD` iY.BbzZn~8a 'wՂ;83hpC~Y.u 7]2 bx If.$SPB8_vO(w 6{Q7 );|<52Feᯪ޶oNen-t23F&qm`\ gSeg 7m_؍f[oW꩙KW߯y%^pԹ^(LW]z="z&1tΉgX1=F* endstream endobj 2121 0 obj << /Length 2817 /Filter /FlateDecode >> stream xZے}`%wNa7ly\;TvU8D/EΒi\HdmT@7 NHҬ\}}V{THXih.Rɓ~o n^rR!hr((w3tŭ 1ql˭i5͇%1)Ed'<7 F,GjpFL|E$M58Z3$xps ()sӈ)(BN@aB9RK%`NMݜ٧16?Kgo?Ej k2DUo̺'Frr9HOZTf]ʛte$]+RH2fHcr=,:U!ўBQ< wu^~.OBUT6 Px@<91Si.RUpF#LhcG[;͜=S(z]C5NUk&Gw} Ie__C I<(@2qef `zW;D7@ o̅e6?kh7ii@x-i(~q,-uI_EB#,^y8hSvzS;tu2K¹4yVo2IH G 1ً!Gy:#cЄ\#A>dƑ:y>RDb^cB<֫H;{!Cx1C Pd@}Y[µ4{lY-*+*\;lf;B@rp&l٘l&8T %280z|ŲcPZW{K4Ngg(wYW-dZMiXQ|M;ҋ[CѰ{@ /N^y(`;%(C@|@ٴ0@N_13 ~PS[a>@AL(DJ\③.(85%t0%>IQ d NS'&=G!Úʉ BNUXt*G)Y͂3:cݟبOl1?zbäɋ )Lɀ*[z.bӣaFP#b@Tp1aX* 7zja_-1ԖYS>Gy7OBQS3:\ C;H$<@l(Gų+dkG`O-(.w>[c u^;dۮ6XcJ.^Q$b1m!  wyL˫(TO dAGJӻE6:C {I] =9LkAM~>JW*; 0Mb0U^T?>D^*x&PrʲgUeol>Ij*!KuX֥è{Hأqט0m0V\F$WNzrf!$EQ-Lub 0}:BJԇcvݟWE WIc9W`Ԩ3!zL%9şӺypdPonj/s3W UG&{(|ve"@1 m}Ff)f5_k Wc[6y[-ԑ b=^L+mlqf5ۺ7U׾DITT>pmWYnK0} `S uת!EDjmg@4e?DfQ3rp$>lMD]uV;(BpK#,*d6%V :^ dQF Oڍ;u%I!ݗz/L/vn7GL&)]磊T#Jž/+!X1{qx?d 4+z7>[Fn7>azϦr| 7WZfLP)U1$\@db,\ǬlݢēóB*OȢѨv!Wq)z0^ endstream endobj 2035 0 obj << /Type /ObjStm /N 100 /First 931 /Length 1869 /Filter /FlateDecode >> stream xڽZߏ ~߿BVHJIK aF }?nQn g|H88q $B \م3,A͟d \L?Iul^ddR$I(P.qfnN`RsI:0ܺ`;ђ# k0,% cJVr,*!:ՐKsj!#s6Ln̈D[1- @w5nI|*Uu rAQPN\䠹3Q/𒐏CT5vuuGUX>Cϰz>Z׆JqW*w9 f F%m'6 澂MrRqx;83"G%W/ch@B6*I͂X04 TpـZ`j1D ̆"}d\sLEwNPu+4؃*" >1T $n{";›/6۷e___67tOw ˘omfz.%f̑reM# Ëa&lۿ݇?bu,jy`DP%6,`5<:`&G,JSiOa $MGP^wX 뇾JXןw놯KG7; W/׻p>g~ [|>>盏ٟcӧ }4r (ՇAC[̃P.B{dQFFyx""",e,eY,bY˺XŲ.ue~jX E5&[2VsfeLX g\D3΄V!<;#`d>LM-QH';-]n3DZL)/#:/90|D%Rg :PkӱhDظ8 b/Qx։4mFeK2?v&Ů ݄a#I_tlYN }2?*w"^j͢H]W3KS)c[O:xF(6GOR;-=;3?u&Fz8#I_V6vy~j}Ͽ" >]Cc6f~L9OiوO:Imz'iŝ- !c5Dm5pYV'u8V#&6E Bdl;SǛ:TC/E_~.™kT&+KA϶ ;핟%˝T|Y3^9)+;R4B-BXUm(Jb3VѪV?~_|+;R&v~gySOW#~=t1O/Pt][F/}@o'B!]LbKc$=\Mn6cxtHZc[Z-2Yw#n)nF;F:F=`a2asG㆒0.dʫSzO,cEYe]Q8Yӫu]UbrZxwpS8~%z bF#h,BP_Wb+J(&lm+R+`]} `#Ibe?0;J!s\CL`+&]uEA"x* TLEAL1t&&1c;CJΑbl8Rd?϶%a?v endstream endobj 2126 0 obj << /Length 2650 /Filter /FlateDecode >> stream xZKϯQSYL*boŗ٩+Q3,KtAhypjkG ৌf}d9&2FgFH eDU&!y~hN&,<'&=߽>.u)e)NLaOd!_(ع Ψ&a<,KOAaxO?BғǥfgD+CѰw!’@sI9pQb1)";T$E =2\~<2?>aÓ@@ #Z@/H=x-'N5 pNdG=HɄPh=g`IBbxV"A %lIFp5рkhj?=|zҊVͳ5&lG2qWO\B"S\* ZR0!yxL01,&|Fכ>?҅Siq`O^Y:-X+͹DnShK`>׫r+EBwDr;ǔAd)Ǻ) U^I Ed^EJJ"rc·W"똼lΫroݖ]W~v `"ZpݸQSv+g(C2CޯL0ny,(# xA^'AS2gO$Ģ'nC!  6> Br9$6hk8p1$RMs3zYw8]ru"}~$^ Ę6VWR`aD"T#FUAr#SՊsaǝOULBg4+b[ue"O~ť5ݮnxn9ıf:AalL"S;Gi1],Oz%Dt+g6G .t>q0MB`F۠ YI_@$:WooPQIڤe}mT9Q ]QSQKݹ7.(-:^ނ/^j(1u&M-1 C0~V]=nݻ0o\:޺G4ʵӭt7fo!J!UA`R5ނ#0Zb8r$1^ZӗCwo0 |@H+\ۡZ\0@FT KH`(nSiW1wom\儁+O,^Pi+oq>Jmƌv:L.f(z`@(`*q y* 1PpP/$&Yr.Q.jHXF<،+>FFs > `S@sWr-민ba=ASw,*&oX)oAPUufһaQ )%a !tg8읤OqQv4 (Lꠔy`7ѻs_\s{uOBewh]n5XjEbZeWA$LT|%lc<& Ƶʏ}=J՘utj9;m{.}jDBfM 4Y@ZI:sB:|ghC'IݧlhrkoS%.xQM =~4o}f_ɂNw`7Qov L W : \Thr~$$%HŒdz'dv>c5]R)}>(^'uՅxu& <B+Ԩj 3N~ 퐭.Cm3ɿ)Q> stream x[_۶OI7%yhgL63Й$) ANV<"vb MX>W&mT&#f:KTTˤ)`oo wkƈQ''DAwDž"T:11`=!vY?>ԃhzW̜F4PC(jTQCBTBGT8j\89Gl˺B.ʦ*vz%^}7G/]@ϳyr?Q&\c=<Wq āXsAwj 3w`9&goֵhcy}_v 6:48`eQѾji5"_M1i:eOK'چ[lݶs~t3 \&Pϱ'5  D\-fڪ K3)@Q["^ ŖB-lUٔ=-l']fR/^j|/kǮTmYͮ<]zu盫:*0Y{~oRV{/u[[Pg µ Mm7 #*$P sWy=(aD|qP4]-{^v3܎ %Y#hjul0!8EOG| f Tai 'KnsNv :ıAAД h /FC1RޓH$9T<5 [|xYm-& >p̀ mO5g9wm|s>ϘbIJvOt{!,>iu 1\E}hxr>U ?^"S!pj Py #NV΀{l!R*G(bPe U=.(/GUī*xh1z8́wAHaJB5Viu9 ]rVqݾ ߼u>5HB!:_eRBgp/b! ؆\0Jԃ 81VOh>Cxj'1]~Z-`g9~swE[}DAA"́˅嗐ߤA_nWikÓTaz.A;}&!hdMi,QEN/4}iCd3^j0XC,|`'6NRJ^.Z НiF=W0d2//^9tI8{Od4^$`<ϵ98pX_"Շ)p?& N8'"L^ŏk\(+ؗ79;$5┳A#JxoP5lƭlr<`v&-$ u"ʂ՘3m|;L%UG,HlὭ9س |0iNmS,~r'mtBgsEj}>LwDv@M9Yqa3eX*I+Z찲÷W ߴ_§K eUX?jL,ޡh82zܡ\0p܋;T$mWn;|XxuEVOfk-~t6 Po;J{gC"ݝW_Knl]!b`*ީN`m`1*=+9u<泩VZ0 ?s?1cxË 28cKr˛r+m[QklE^Uݺ8h[v? źsC]o: W&/wH1 NӀ;`Rf(ɸ8Bgz%ayKHť' !d-2v5K=EVeWYB@|UZG{!2&(1jQA>m CO iaӈrfxxxCc=a8Ep{zrK2IpU  ͘+;Z'elr 9+LJkeΈ! "qxc(S|.}9>} 0R[[w6z }gJ(!B{m> stream xڵZr6}WpVXq2&3lU2>%ZYmH3"!A>ؼn64XeAwgMi560BR(#*n=w+%+n K"MH;p9~j>?TnZOWghRK̛.~,npCQnMŏZ3oɳZ[(7˂iRF$Կ!\+R'FS&XT5S8հTsy>.H;%OMzbsfFm7L.cP Ne;0"dq9uP S 6cʉ6p:aǭ7;<DbR;c9pkգe{.;{0d@S!%!y.Mb<[UMFEf(l)%'G(M=Ni eS/+c6G>p^X],एj\ @up}>v1q0}Oٲ^T|tu%ˁ?36jpfTSh zٙ~_e#}rWǛ*ʿP:1QeDO7!F_% MNcDH*y>B`rUIcngO9Qk\D)HZ;d Շj'(YL7DFQ ra9ڄ8o_7u-%Z(LQb?Ķ!V1NGC(sb+m|bԜDCD-b\̫p9 AeЪ^%RWq/c:Ff1_fj7%8N>\{$㚋C8-1[oϷ@]tL>n?GLkl-f^W]1BG QmiՃ'WfVNN|l1 x%Mt2WE׏qLqk&UH`0Q 'Un qQ(2q2DÖ}ESKs<5@#@,*+KJIBh)qN-"*Voa܏-Oy3}Z$eRr -+I_6mO޶Tx#Ԯ<5?L jJ@t݉,wr\#o& N݉[(ͤːx $.~#byLh\㻫[4u]}<'ÕtM54m,Af <]PhK]M8Ӑ!{*ਖ਼+b!")QIY4].P;'hY">~~!YděBbx5$w$-OM^owunGМ; 3xaoQ_͋"7 &@=$d*K2=[ӛ:PWvWڣ: uzzt06,"C5Y;MUfa}."wFK3qwstO0!B׃IcW}Vy"?o}M}yiiN׭)wՒw+Di Pb8|t??M"\.]4| |3>_gST;UՙVg64Um<]y]5mG^> stream xڵZ[s۶~$A ,owiD~LӇG¿Qe;E*QQ\&IeȳrB`\ Q0k  P *dQkQZK8H`/X x6E vYSڮXr0I>%_p(f2adݹ>+ zȚl};\nзS`g?$;Q*<DĄZFނ#o7 +_k3u+M_m[#爱t6Aj/;qɪk֛ ƸoQ&[V;ӬQyoNts"Q:26dVW62Wj_kEg]QW- n{lu+_bDy5}`߼vg^}鎒,,偪C2yCA^uŜ u?uiW4o!hK31 @x#6N婹BDl2`E@9'[?b D^@) %bo̦;]j opTB1ǩOQ~ϏA] =%hh#r"?KJ"6]eBRgyM-D$ 5zz7`p_S<ET(9w_AS׏j Aם'N/ &ѹ!N"i"exIb*{ Ұ †Hmg"AC/0_ aC/!CV<|a e3z&7 fKE.;Zî}S/#cDf)ȥ YJ '[4 5}C,BPE,l0`, 9 G*]y.)WWGl {j!-!pVPuHxBpX]_m 뭃 -*_{nr` =8A|6p7M˰Bd=us/*뱛O~F3eӔ $F~"!Ѩ`0 3?M#O(Đ}?ӭ)ROKSɄ;MjQucbܓ S{(gf>.)UT ~e&CMq>| ~U$R bc?( endstream endobj 2144 0 obj << /Length 2393 /Filter /FlateDecode >> stream xZIQ`Kl'U{:n1C2IMw<, Re\.@xpH ($*\ ̥Y[dw? 6$ȔBFL10*mFc|֯dU>]oجW宛~#0XsDM^UP|Ą?+O\Y^k M5%88ʿ55Aa7[MRH3[C SnA$Gf"HΩϩOay*6sfVs/Ȭrn6k2́밆O$h0VbXqXn MeѥP#a@yg1@1_ށsbE1BP .`v홸qyh1SN w$pS4 a:[n~g+7v~Vm2άUh/"d =PSHDd.qJDNZ `ZLc4, \=y RD$tw-NBLU5}e{l5B]iX.N8U<= > .q1CLX ˛m4j0SH1ؑ3hs)R hJI{.m!t6gbURsn!)a5d] PvkZUKOri76MWjjMTMߗc9d'Ku-jV}L<TtFq'h » 4T5}d쓥s҂8nvU+HƗe(/Tןu.LP7C)URlϧTmFN06| 0ZN ͱq*%!V\x39жùR]dA\I_*.{ ܢm_n.89f7ͧ)@/X?s+]k-"ߵy*ʟ=J98NEb#MmYntD܀Aǧۙƀsk#\ZV> &/`b+;ӄO# 8IezJ Hs#8 3S1c{KX8l)zѡ6Fɫkt&)ZދI c55z9wUކ+us *wbk~@߱O/FϯؐoPGG\TG߆}#tvv/=9,8B@<_Aت#w ۃALaO#:iM9aۼˡ]fj3H>#Ҧ ]6e Lckab@iYQi!Ke}Իmi(DQV'j_ fxxL1a:܏ٻ^F./÷~&.׌N1]ֵjɬ;R>s JV;N&P"߆}@}ĞFۙPb+ sT:~զ ]m}ê m {?>O:o7MHy,޷GW-< w=4|L&|9xa#"ƶ͗e&W-a#A/ PNHN@W*+&"4 JJWMG_,MmE6CӁLcG킳[WBHm09. W.Mr endstream endobj 2149 0 obj << /Length 2540 /Filter /FlateDecode >> stream xڵYKs6WHW< 2d7\RVMQk(RCRq~vAZhٖrD<u%?FMdnS0TG]n8tˍpCDded`J'PKęFZIO7cȲrtfύ,ѩǻ~,㙈VMId`I-z[uϻ_n~;+D2\GU ۗ 0H6Wn2)VeRNG],,w=YkoB9B1}W= cUZ*ÏK* ]ۖKU5J}I}4'v*D԰,@EŌ\꾆qN+&M!fqN~0~=n oEUbВ'evf}jZh*½:pcl,〵أNxC+%]p.+?]0 qwP2!ѴXH_TPPLkݦ܆Q۶MUPԧi]٣6%MTy60Nݱѩ)@Bttzv1b` q|η]tfj>nɲ;Kdxp3o5k.[?RЬ&w7ԣ:'ގ6uXkH d<΋bߡ9ϸ}(jtG5e{F z_7>׃!9Ag d ݲ>csLc;&c*2y P@A{u͚C6UV\(@ >O@n Ͻhqsx˙)'m]ESkXɩtu*30$ 2*cB eTE\<2=xj&ce?b[+p0u+THBvV  y wEz5]?:.ٖ ڇky"~x}o-XAޙ0Ӏ)ۭOlqp4vr>7E ¹\ܡ:D.EJq ̐іj%Tm&#e83·20%"-H5k6*Jn.2aIxqc;%guU*0! XbOҲ${(p1Hg<I֣OL*̱ۺuOJѽcոY_l7&׊FsPPRmwBVB\iWU?eG|2k?q9EͿUC[9`^N*TW+2䅢;L쐻wUQKoRP~p/̙y5ELp3bY{69ntc嗽yL`5" [-:ˬa-W T&D8Bq'@6P"oAlYp+^"QgB~WY`Bu.5fSBCt>>ӛ+C8!@f|6och&ⱨ}0'rgc} ܐ!<)Q:9gXQ ?vm9@8eé9p͐3D3 S5PAH^=ag6)5Dr w?_s7`S|^,7wgBdćiCp#gH78!&`;(Z6ː<$jM~wJxUdf\'OV۪ :A/[B)W-o3)ͩ@4fwhUd)U7&理d?R;7jAǧX1,U))@xG]hhJ,ygT8AwqG?>w0trY+ endstream endobj 2153 0 obj << /Length 2743 /Filter /FlateDecode >> stream xZݏ۸߿B6%pW}K򠵵Bl' I}z@bE!ߐ3b#FED/6Tii*-*?n(4m|{w;GC "Q:Rn}\Q,~ˋ,+!bˋ_a$5٤&z>ۮ<_o~dPӻf n_ _Ok(ʄ.~yUYA`01׉qиivzhL ΰz\߷EG\qI$\cP?QkH"Lr)%IB|L atl[")8<ч?F} 3&JbNCkn .GDJ`HΌibXrn%1\}们pPzR2fQXJ_6V8/P&{̪xc8xXhLє]!t N螀3`A)`Hɢ}6Kx\ٮajq5 XPC~/blݔ XlO޴bzYE iԷk Mcv(\a6;0BM i ጷf tbɥ. WHu.f Y'kAx̯vqb Y`]bڏݠG4D5hƲIS2Da?8YMs-,S>.$D]; $ZM&-s0󬫌r 1Yׇt[ ;׋ S(}CQP#0IZ6*9rCoK}iaY6ԏhsS:[xR{s[Z5.6x8Ie RL31\$;閥1D'j,1U-K_W Sӡ`b¦U΋Jٓf~& w;$ZQ#mT{f}1绿$F6gd#sI,EݶUU];@ o[ qoŗ9&hX˺x}:!ľY`'ޝ$H Q$I: h xžܾ L9;;Ⓒk^<@z<4&BxgS8N$D`$s|(OD0% 'MGCfJ =^+?]-,&5KOJa"퐣,rt0 gZ茗"H^1x@/qe92 0}BCٖJz/HIj0,$xbc #uKdm ]<"sLI2B<$?K户`whod2 e!CA^Vm<.CQ8 /)ڀ_ѝЁOwztYcGgGwnz $3&oܸP[e`vu֋XvObe"[jǡvq̨ !ƛw܆m5VW+^ "yOk 8Pmc5Qmĵi!ZoV5|mR7\ZD'>3=0pisWsKЬ߂pOu4hW!Tpj[\#xǗb3ݍCvdN*CA}Cȣ{sc (nre2<=Ufl;1U}rjӨh`&.1s]v-*eδP[l0aU:Tj6rOTY [?ӌ9߄), 'ƓѺ!b~Z> stream xڵZK6ϯޤJI:JU6T!΁#a$%rLRm0#ۮh,ۛO7$Rgrwǟ8[/FL쳣eQn7E"ukÀoNe#5qS<®-4/KĘ/0fͩCkarVwõ+̾'&UH>`ΉL"-#ʑ,cplKH#oaYYYYv~]ZnEvkŏOiق0 &4EWձ9N>W6 Qɺ1 c-,EƩS S'f x3x_H#s͑سU8MY>onlYl- Z'{=M~y Y6eW‹ nߘ6 i 6 ׏c|{"x1dz|XMP3BJș|-\IZE%jI)ԔI-(gS-SА` lD$W`@ ,iRjQ0׶^c#q=Xh*/0%䔖ZгS|L<@MRM3۱=1B\@L(@'U{?)>#WXjA(}`c"Rds~ 0 (kd1xU sX\,`R)/tDY:]ˠ_q9}fN(@YőYlS1O>.pvyx:^0J#B皴NnfW.@a]uo |1)TYbXXc8Z!z>ZٚeaSWuak E0r`5!;i?;J˳~kͳѾ /&\/|ڪKNV|]GYA06Ǟs v]i|pBXCo޼)LGXTM`*ě-=$*fHCВ;;0gixder`+Oضu0'a_T֤z =DvTv.c{p:2c[Μ|%Q' 7vi!Hvs:P,Zvua[,xlM-WS,maVecDESW wGd=!͛ڏ!3WL>;ǹ30m~Û&nqlsamofMi{yd3BƋ u'-V drjsy0 0Z|̶+@ I*{" m6=g@}%B]:]}Ce&o]&1]%b`(GkO nPpoQM28*2>qnEWʃNz]% J]>~uqKֺ)W( W4֢e`8ւH:w!I0R4fvT񯶟;nBMԵ` ]ew8:(O}zp4J!V*^o,$!.̑B½^|G /qkAyQ% tm p820e=hHDYDowG&B HRyYP?,k# v_j$ R8*FdF xù*,AZPu5ڢ&NbYU$W$ $NF)l S؄= Șnڥ L|1:oy6tdv߸ ad "Y%/% G*g㥜Ź/6173dUN] ͅBV!;ʴ)ш'#va~l+ '걏)=gO( 6G-gҜNɗp-ȢwHr$лm>Ǐ>SW=.}nSj k$M *}ٺ'쒪o?UX endstream endobj 2161 0 obj << /Length 2418 /Filter /FlateDecode >> stream xڽZKs6W(FޏiT29,qF5$5ɯR =,ss B`wHV-p. mIaXii.RS sn "??dShFgOR_~|/uL!&NhgvpV(1H79aČΞU3 Uv[,"d d8=N91o5cf dHrHb9sRMi)=s]X!%^N#Ҙ\q]n  b"}v$#v#؇dݺ$mf',~T~lFSYuX݈Vg2\)gbro;2)U Ii8Ye给M v{A_ >DjJ (NϣxYjfOdz vڮ8.FR12Ee=Dr GbKq6k7`&iz@M"'LZ1v5=׼~۩Ovع+wM<9VEF#[&|YYUv7%bcb $q {U.YJ֩Ʊ2/c1k- ܯgspd}hfbm=|yȂT҄'l H)HGV +)S KNE?}hWD~J;q v"dGvX7UY$k4I0d@aq~=؞!.`>AJLWe3Ɵ\I}kv_2-*?l?o0p(hF5n1?WTбHm^U_Bbl.6yA?M(zr?7~VmG؞S2uwW9D[s2y-3~JtrkE<(X%1";P*Zڭ`D?|wyQAu#zw?_v>=J'PUq6!C 5g#!Q|]yX*qm0\+]Ss ہ7 Lt5'a Ģ.ܺcV~K&xt_v`euG-|IT4SvT9mE쮝-H/M`v>p`ݼ{&1RДJa&6> stream x[ݓ۶}DIӇxIs>$yEމ5Eu_]gAXo.( 8$QDR*u$: o( w﫻00Jb>y JLKgozm$f_yDg2fiVnGgۑ)6GΪ&+m'ƍ3;|mzvv+B,_0$ `߰7wߒwc(IVel$MV[Bj.&J\ `:3A۹9wfmo~@vEQٽ\xLh|!-Q6ІDD$ q(5XNp"#-sn!'d~ʋ¾KPf8ˬl8${Q1ˀ0 vCB%{ltx͂!}+Y8wΨB"s΄]F07XD莟OU~Ƿw7o#Z`W}@ɌZRp-n~ǁ0OͧB]cD|{kXSK?(OM 䬪S+i ufm@mlŽ4jf4Rl;  Qd?F3 ::Z$ż 2CII7DbH<$6 DcP8!QEq!R\ {)9NN?RB=-v [umwg V1Cp# mW‚y[Ʈ#8gUq?,-:>\T50Lw=[+dۮ,m*it'4+[07v=նO鳮,o]QOFDY3v8!Ϟ*;r 5xo ']̃ѮAq5() D=DK1g$>ekAY }.RBB$`@7#zn`e:o q+8;+C۴K̘I@4wb9h$J_6=W + @e)^{| q,c86_B5 B룮P.|1)$4\ [4i[[l_kUj| gVmHchΪj0rd=eKȡl3&$Xۍbn#6,rc!)3[6[ 7lB'|AJnqcb3̷6V5Kpoya3ER~pc^fzd5xĆ#cLH$=w.I:w !\FdI"JDDFs;PQFEۮ_WFD"nJAIJ+|#Y;b\mqʪ 7ͱ4&s/KPm9"M1;ө`iK N\G[qRq;ϳvcAH88> h"F]&L`dV$Y#kHmdFufv/SNDKRT\f |1ٸgca:EatziB ET5J&fLOi! ewdaH^c9䅷s `&k):/3%l`4vp>}_gYi/]y Y?؀{x.ط)_C7LixcWe"8[GmRD𹜏nSP\Ke?dY $ABe2b̅'V\6A gjPj6=]J+QVX&WRFcAWKlmfe/$<w%~흡WMwfғ֥s\*"ɢ~0)My&a9R"",Z0m W+E|I/KOfKJ`|c {`(.Y5KxGx>ݡT '@GՍQ8B8I Yd!z7 '.9^mu~_MPB y4QDDwVQdG*!×%GOqWS1o ҋ4)-Kڦ)Hhi^(EWc}ۗ} $)eGx@oL$ hJ>/2ۃkLXFz*I;JZǯ\vȅ}U?\6xU.D f5#@sҏCz.<\ we@_{>a6~E6 Oh>@,/\8DyS g OO4LidOG=dj'!_>!yr6L1/?c$C*J(u$.qTq|ht)^.0<(x7alz}N(z{:=୯=wׇ{ r_;]>Z%hT\$.;48bCU endstream endobj 2169 0 obj << /Length 3280 /Filter /FlateDecode >> stream x\KϯQS`A&SlORe@KԈOA@AŅ#5_7 g$kE뇷 (X*˹@˜gMmop}/ᳯ8A4{dfa$:a!Pz泯dЎ)$c-[f=_>% jO8[o2XgM}]÷A_D"SXc5Cn;<# fr9bJ,a̬V 1'L" 03% —pUͱ>.cձ9T~ZcS?ׇG @=rzBX. Ekr`qx\)Iy(YK@@Bum1A\q! Q <ՄeF9&3V34uX1enNa LL #&9_5$bXhI;hƻ5$%1Ш 'E8Ua=ѦSHlڗaMmh&76}j6۴`Y"M94ivä pŤ= mL528$j){{rÜ^М% S,0"Y}z2㖍ݣӏ7鶻UeZޯc,G~n'~[w{9@oߚ/Nu[>MwSc-`սo*g[`t /[-:w}5߳۞ 3y!glsh%.%#1!9* 9P 1oEZW`D2QE(lFsrBҠ]>ї=ݘ!72&Yq}0f.u+ЯчwϮlSiCC뻵|=4+ww=[y]]IL:ʦ,$nL:&/m䞀HSBpS7 |MS=Wկ#I΅D\Sf)Ip;cL)@D0 h^̃•<>L AB<47ȓ#;FA/CdU}K_+ګ)ԙ~:˞lʤq$nK@.x: H|ByWۈ*quz?FRA$a<1܍yI E"`XNB}su~-wPu4J![O#_W} a8+=/]3ToamW8N.!0Xٷ@& iL#~ Y}Fu8-]&57LKL 5h嬿k5{2lC)KKJ${_=1%a}Z|>9RS=v{`(;/gG[z@;- O׌EDMHz!a CLcg < ̩".A61 &2( yqNLSz{S]PuI)]|L!<dD8'u* N?&7f,f:VWOF}rf2/(z+dɤ ъ5mTQ1t6[|ƛJ8o*F*-e#&0Tzڝ$pى$B~ 7.wtt҇E*/@S>駞C.gǑqdSyiG#.˄)Y*(@^rB; <(C^,`j~@ /ȧ$B@Bm2KơVeCB]3qVuw]0 EX5l ݝԄ0+W"!-G :yC5"8G/-1Dِø5 1o\Z9M"Xwilҝ4 %}8/px$٤KKЯЇ8G\ZJ2R0`w^rP\$T&;C=n[6!qaӽPӽ4u|1 zI\ U$˥+WCB~st.;菘U]f&Dr>@}"8aufUl_W7c;A/]HDł:ĭ^¾j\767N J U_q@㣎^ 4].0D9ԕf@5 endstream endobj 2123 0 obj << /Type /ObjStm /N 100 /First 916 /Length 1367 /Filter /FlateDecode >> stream xڵXn7W 'I@!1| `8>$t0E[Or4>Hf3LSILlQJ$Dג4oOʒH%+~kAFkZ݁@s *FrPV驃\R_إD+0@X:Z$1TDU@ OE +p!0'Z1ucU1A zNj#VŅX+c"4ha0)nO S`8E+%`l<6qKbSK\`axjePbౣ+xlDİ,‚qB]钄aW$Sa7}x/7PE q cK&nxZ#‚jA,pQ`CC zBx="X& 0Kn>]]8ޠ;Gז!$_[4)><ôq%m[+v|k/?~ݗt]ar()o0߻ s:y0t=%~#!Z0&~yB{vr63c7Zz YaeHUC3;措sPW'+IʊJJ곘VpGz_Mkn@\Yn+|m *Wܥ4jf)zztøH"gl%a Kؠ@W˾5@ӆQe@6UFqZ̎}GdvL?@fl&LFsԄ@TG@m% S&Ɖ Q!qWe>V ӧ S>?Qʘf8Zbe4nD d 8[@nYޙpBw>%q=+ҩK J-jqqb}|wldśm`l6~[^r\.!1:[ c W%HFc4eQjj62(iY?3;9X=/"guEX,VCe8 r doY/^̷}V΅u4^%rӊ\r2&\(xhXRvi6P⦫`f^F|>,3c9.+{*+e'Wmìm`|#uZ$ת.~Dlx_^;JOwvz60e.9jRr/ɏ!0 endstream endobj 2175 0 obj << /Length 2641 /Filter /FlateDecode >> stream xZm6Bh]CEkm?(6m $oozigw㢸CX/$g8y~Hdu?s$pLq0g6/W_4$d9rI7T-؛޴ 8tfmآoM[?-þܛZzmjV]|aV}{?àלε7 P)ʏwW߱a!6à> CV!~O5Y. Krj/žA@dD b!_1muo]}Xte [?T`\ɿcMNHr[.W`rxV YH5?oRiVyRbG%|q3h˄а #-߾u2֒k$&"ь}dsuAdH&:ȌV\ İ P;AlI" \*RjT%Ih$sE8 /?-gQ©I$@aB`l K`UB ~'? 14ܙ3CBREC9sA E=\ %Fշo?$)ֳɊ9ئq9IOc'f>9ڬL}PTu?|<]R`J_ѕazE_fs4, |k],&c̓ Kpgcrudti}*r'7P& ǵq݄Vm$=r9<@ƯШ}Dm@(~[V,LFM8ǁ_>Gx~uB=c9yc3l=r |}:Զ6%V&`PM$)On; #" 9>xD|/=]a/K\@M:PW >S,D]gf6}Q5 4 i$;߂'@ ]\W"yzcY)/oeyx9>gGMCBπYˬP*ڭSػinQ5?\j3w.˫p1e8g3@8y@-[K^ ~ozHЊٜs0!AG{ᴝ0>~,?9}llt建W1m%Uʨt%pW>۔*1lTNF,f]0o$ӦƏLY) ?;kB(/ TpPd䙂`aj`(?aqIGnUyPY?Cg-'2>z]tku(u h: X3|0Ѵ۪誦!I2ƩΈXB3I .8PNEeyY\pO@"0dlŧ6Ihx+CLr{4#GhhS͞T1W\*G2!ޟgJNa$ט֩! HN]% rD B~#zEV_[&Bg5Աxr^.4xξRB̅C7szp6u?NGVڶֿ 1tn) \@3 )+>xWtPD7zZlROek,/W^g)q_֎-=š j(gB]d'I&胏-̝5*ϥqUIk?t>>I<)3}dp6IIeԳPtCd_"IiCI♒I"g%)J$q# I"£eć$?$.4xnraQJ@AgUC 2M[edy_w5V endstream endobj 2179 0 obj << /Length 2525 /Filter /FlateDecode >> stream xZM۸ϯ- OLN*V6ړ*4I)QKR3n4-[@{ЈF,o{mJhHKEjͣ_nhЃI~{'YI/e zs?Q]O߃tVJei}4~T'\˟& :KLbκ_G&%G, Wc1Y9"7A߻\-:o 7"Rn?2l@VT vwޡkT;ѵG :%Byй_TdҘ֗ڥqbu 5fh<]13K˜~Z8=n u0 ,2!OM Ùp&z/Uf&?JWP@WbWaDŽŽ3cd/;4\@nLAtiMmF?leTs[fm[W~:D]! W$\':(`Q6r%aQ:먣-s_d϶`t+9Z_ZϺ[ur'w؎xqwUa,@eǭҭ ?.K ӥU4rżZv&NQWeYGɳSzg8%seЄbU\IUhVqc1T}4&Pb@QD wlt (xt> wh05UhBa)ѯ[(=֮%xw[p".7\c Hetp/\Sx;=b~+&`єڝ6\S$ N*^Vb|,;~'bTB4y16J$`5HF|@ZI& Mu7d+ҫ`5ǡ:r=r/wh0oܭCuExxME~ F(~`6:9=tQ B +.{л:W̫6xU|-븯]G@.vޡp_qLRnV:te1o]FUc-m hAjDgcG:wbYW5kS/`s"/v/^>(|VAk?%Ft',x&ytrQkbn ao 8c.d[1Q.gUǓwQB<+j%OjSiidCaB`W_g'!ڡx g^ý5 |*jSѽ N'6K:ˀSh"ph3߲զ{Kwv[p.ҡVע]f@1n6g)f9oڨ|䝝}TㄚQV&0t`gmӻZdYleYr;{M3}G]bndZ)ҫ#KB '>C#Mw.iU..nvY|Oo٪(j`A. Vy<\roށ7p._G /jЃV=Pf̐Mwlwwֵ;7-BVx zfP*0SY哫pcOE\;ESua3^.e *~~b랬CRM{;z$R^'ɨ&C䃛HإaA lq bBFI[o yO0f>>:j[F,@79*P=n`^'(E$X0ܥc.eJP4ge6;[th0W5;K V0w !xX endstream endobj 2183 0 obj << /Length 2587 /Filter /FlateDecode >> stream xZKF਎z{홵oZ"4_VH ԭ(|aeUfee~f xLJwsuy 4 >[M :4 bTZFZ~ $,J8HT\(y-g9s5EwJ)x,,fHzG]/"G7^Zࢧ+Wn͌.EٹO~W+[l)S=(Dm8>ˬay$u|W."uʪiuZ3%_zlÄ.4aPȟVsLČ;J{f1v`{uT/uQch 3U>LyϤc"س N5='F$]lXdV#8Z`b@OxY5MG"79>X?E^zl`E4//[~‮hʍhWE{ YD(xs]1˺,WsY:bcն*":W^tYYgR杂vY~<`Ƶ4Z1~"8͵'%ps|]Za zC\{tGև}=1m.D]CQsLr#qL9['Wyy9b2 vuMlIJ[ez6EINz q퍭c:`߶^V{c _|44"n"݌#ÉgE&Ix*]dēNЅ1OGKnQ53*wx_e#!\dσ–H1ȹ`'sV;f}8y{93a1XKfPQmHֽJGB==W\ӢY }sxJiap%"[kp1agk[ҏnKPEj['|:ԆUcbory#J[˒ p:2Αː;Id_c0;EF TM קwp\g6rn|hG"JOq=YDj1=Ԯ 8Udzr8S ٩H! #FP:(,̟OtAC}SwG{:'D%,w0f#D(vYY 7ض^kmlx?їy]b%-kYt)+ 1/Gi7cyxp;vj`"h}Ņ}"\RIߖ`M1OUܔT9E"}1IB{>lk*[s@ձk՝+%c[;9 &S>j% hhl:i#N5v`(gwz>RFSXIL6m[rWdJ! ZYKt1WlG /_M!]yۧQ9K-/.s>uoǭE{ZTgm.쌒Nrj(:IJ2>" "&w/C5}> stream xڭTMo@ +|dxgzڬ[nQ$@ˆMkV!*٘g?{x^<4!xm ]DgE.J 1 '}r}qe@JZfݏwD/"  5u@ՠd[mtE82W>xa f^Y(0oԒy$*譎]f>nfPz8͆#:f?fײMG7˫.??\"J8lf,Z>gf%zY(b" js RI|vps;V"Tf<5 = 0\\-Q%3|W(` endstream endobj 2193 0 obj << /Length 2749 /Filter /FlateDecode >> stream xڭZIsFW`n` @#Ss")qbs*3- h٧zŢ8To>F$Qa/3Ld <I KaC`Fs6+P&Spȅc(Kro՚1/ԟ18H,X5+*Ad )7lE>#/R~>#cґ@|tӀ}̐b߹{P*F30g"q{mX3ϔ;eZrhb {sҘ*JIwHiܽl“B^[iꢹ5~ZW'yQ*FW7h̍|eeIVkwnnU4C`LS0& Ŀjh{,CZJ)_K^ zZ0p /Xpt놪Yٺv?547髡}$$? ^$N\cY04Zxc,.ʩgsߛP&[ k ps&uJ^b (YU_X^^{)+kj`ѫ럨My004*{u;pAZBɝj<|4BƠBsrD԰G,`{N ¨ߝ('xQ\kT-'17žx䑞"=FI.qP11F{!x43`bE)7p %˫J|Q|hL~6%ˡŧ E}tYfMzˤQjJPz5aFR蒉)jըkH8O^Sk*PQ6ގk y2tx)6,{aH1^˾Q IAAy1b`w,cgJj*\W*n@t!o̳)V\9煥?hvC38yܛ;*E*(>L- ObPTaS̘g_J[#Tx"lS@r ʀN*8'>$2p6 Uk}) /5U3 ؄9~䢜0aՕ3zWֆNXd*[YfC@\gБ& ?2h|*U#q2W#`!ILҧ쥹첓'zْhvr]]'IFU hY[כM*al{G~MRJCI|s Զ( Qc+:}bmmOSCxHC<)L!!Ie UC+|>lQ*?ӦI f84u'Ӗ5AY&fNvQ$j@hrf=](f3l ?;JO,ݐ3!Q(a"#yHz7w`әƥqU›9ᵜ\]3_,_#<p5r8ܕDŐZGj'|b>Y~sfb+D88h\NUWGI6H-r5"<xйBO D3BolNSkZCH("ciJd )!q!hd)YPL35R0b 5veԱ.{EdH˙rRaى$`bEp 4 |BZ?"25SJgTJ1 A1R&1x𰓽W^[~ԀuwGp~ SZ~c .pPc?AU@swGͬ/ Y܍𓸲N)C#1jc8%;?P|.Ćb]AՓ4.!͍aiͦ}Uvm_\xбk5BR^ 2u5.ѰiѰ? 4iĤ7o:Ren.6ڹВR/AtN%QmM4#b9OK. endstream endobj 2197 0 obj << /Length 3076 /Filter /FlateDecode >> stream xڭZ[s6~I !nLi4VwM6THq!HCd!pp.߹_"ETG1@<RDqD-跓Y<<1JGH  JPh>,0+N\w~.Yߖ_՘-E͵~.0cEp[X~\9c℥( 6{i 2D1DGxI0BhRS%ģ"HJjgl 8̐ b6_B;(8ޓdS|}0SQ(Ijehlxl!s]])gNOgIPB d$qh1疨 Jh>(vHpY} b3z(C8B"ZQ4%E93$\,҃;uْşjT\/ӏܲzSlUYЃ]ՅHH߽ʺLߙ.}j@t؃`tMYPq5H AۛkPHf FL蕹vVͽ^jN#V]dWln =vրr9T&Wga;*f;ftq%yIO]>|R9mo+q&,H,$c(AC-ZIi'Q;0g*U< T?@ \TGAM&&-4A S4wO*:L*S5n *g_W1M@ -#VjA.l8̳.U뢂Izʼmirp~;n *Miz4pwKIEY`vtSP,w%$\#'>'=$ĄMb%>_=_Xm #ke-,vd w妿UJmL:"6ʙ3<bxґ1#؜dٍ!X`$^S$>31̣][Yw82 3ꥑΓ\yt^-Em\lHWyv =-4@X?sd }m%*O}S5")k6Tai ,$m^*HOk9ؓZeRFC54ցp*Lg*wTQQY =x֝.x_P¬iNh0w] ?}{| MF:mD F.BS˅O$ypTLxFY~$s 2Yp#4t[ꆎ7v UBMDxpU HMA#r 0SΝ+15f;lGݚ<#`rpչ7 ,#!L8峚xS$Glz;0s遆 V$R>W\*jb}AټCSA!Eo0X'MyӶ }k;1ыOf[8OY۷E:W ?~Ģ ^OۂB[OFU=?U~XUgipX=֬|$F5q[tj&hVo?O׺_6JIg4K@f ڏzēMre NUQ' fRc%̎0}J4}л=]ƴ{_8c@bԸ$5vrKE>YJOKpXkQKia/PZMMBC9!1Vl[w>zh-|0FdpXMp8#X 9|Fe6~ |&F[dL""[l > stream xڭZے6}ࣦB$6vm6MDXeLRc~\H *gH@7ӧ%=VY("sU$(Ț*ego߯n~xCeFsbrCYXxN$Ms[GŒohe?M릚t:t;ȪU]В۱0||`҉9/WU;t\~7.\nLf^dcJ ^) 1DItwZ,)׭&zwkA4+ )ޕRDNr+Nl{4k3[:)G!r?VJs/: Ar-{VE=I&~rCR~JԞhg;Ob mb^*i<[7w$|t~1뇮^m`B09ЄEB*4We%X o endstream endobj 2206 0 obj << /Length 3199 /Filter /FlateDecode >> stream xڭ[KϯPnTł$)x8٪;)lj,0Iק(a [tFglV? ?{\4iAO_EK?4j(%FHY[>جQ9'Brt?(}63)8<هe,.3 71J21;;CNgqǜG3&3wejH4|!Hڝ[ޘSMyX^ևv"#oWܘ{E^Rm].kQ>97RI^ lW}ݡzr~A&fCld v_dY4m^5k\')=OP]Mۺj.I&z]&5ܥj\.aO)+ dXT5oyLXQK cIbVG yʌws#x`|rΒvhm4Vwmd TzoInpJ ,~$˼AH|SVn[~\xɕwUweh,i %m@#Te?2 ||Dྸ)ϮA׻=Xomo!a2g[u^MK!F׿QEm9ʤ2nf__E)[X'h\P5A5@}p\,`_P|3ɣVnO[ꆨ.nݡuj]ׅWmY0ɚxslʙ譛ºmvU}K)%20]g<71©۶=p W>p%PLw$>Eػ6;_KpE?Ng7xAΩ~h1J 'TX[<#ރ40-'"d67 ӌpLJ2y?5M$0֚paXfpQ?!f`, t,wzVq9 g:g<Ӏ i-e'sS0$g<&!7$} |7ݥt$ѩ_;/e%Ԛ}ޖ6F8 AF] !ۉb LMsr=tΛ}u VC;T 0>W סK܊)Dt:v\'1N&a k%|L_p~NDJ5|G r{-אk5 HBKນhdLm1E LPCXnȟ|H%9KEBhŜBQ]!4T4W. E}K'CPb>~bތ2}Щۜ%r eɇ,D {Fmt\5W,)H>#C+ 10و%SJnWScTX5a<%ldfS xʤ8a-ދ uJpQeӝR+8ӟzJm\}FSmKVm/@}cEkSF>'w優ٱA=XexW B)w27 _@MeX}.-Ws$JFc74:ò܆\N zȮp=̟/ ݮG$Ȝ3"3~q'Q#a9j!1.v=LQPika܂q ^Z87wVvBHeKhSA& O!Y8ZW'NH.|;Xh;^e2Ae*k]6}65?(UJ_ G'e!p-R0];~*={x^턁eԸ mnjR f 1J>5IEHxzOoӻ$\v~ɤ$] :EtyIvZuUhETKkU/:wVo@?wk^|XWĬrOK!udwxgGfdc4#ד L3JsvϏTqݯ7e]=HmZn'|K)Bv60jGKAu<_:a~xr^ţ)S0+5П G?a2$ct%_ٜs<czo֑Kpv@yWsMu es' ݯvMѴl[>/˶zȃ2ž7$ڗWݐ)k^̈́#,qb> stream x[KsWɅy?IkW.l$$$$\}z1")xklmi ==_?f^e ?aXii.R.+ qjpa}^]9AFffa$`eL B7}:r06m.lܿoH f%ICq2ٓ8p]e~EĘLa Ǿ n~z:# 4bJ/axx&D#C䥄&VǰWsج)TͶ&f>sխv-|VzVmfv?"̃3hB4iӕ@OEW]:K0^79vi;wc]`4&<|u>1oDj*=pNUԖV]8c#J d6QvAOeaXPK1B./U`Y !XOBąt1$-,7 H.6 5_Ķ(DyƼ/MbS,Su뼭*|z8lK0u6PM;Fjr‘V*몺+Ii ,^Pt )8S->W\q r_PJA_߽befUI'4"A?)etikג<tRv^bRpznْJ(,W79oXt>F UAZCs=L!`XsHRH"Ps"쳤1RHR6!ڈvHzqpSv]U Ov*BkYƳL Hڣi]|LKl{kA~ | @\BeY=2s4b>PAUdgg;y:f\X$tP1˶Ae?$a\LjnaHQscs+MR $ER3"Ҩ='#h4a#]0sj .7n*4 x:2nq_rpи㞂޸ܜjS0KMoՌ>bۆj&q#G͞8`C6;bSpSm{ z2Gɟogfl9eeUP074$7mU}^JUAr>IaU#Z?-ڪNxJ8o$aEMhtִvnk2 -yGR,[2Γmm36`BdF@V{q臟oR\JJSZ=*`&#~ի#Rd%onG/RՅ]f'%7fks}{kqSϞj]~MѶˌBҩHfvFs&nљ³eYڮCjhlj<;#<>ݾL1xAGZ%,[K4pSmmSd5u!q$XbRzSvB;D]턟R;)O8n/8QrIw-[( Ubfh 6Z}#QڗC^-jmF[T탫kP H LHmO:y\&L 5x+(s`N=nCdi$huPeq{鴬snvyog۽(6ͶjX zz%؀D>fWA͢+i}KS]ָRxqQzPbhI}.RN {R-N@۷b}la֠3-&f#aԘ2Wx E[l "ߦc$N-hc J^`N qQe4g|/MGE $lpR `QSP651mUY$H'f0e_;5cϕ~i&j]yOnŪ=Dkh:+H,`}HRH{ǎ\_HxiL߀X {·?tAʠvU)ͅs)$@=̉> G |f/L>N# aX cAD9 D=+%ÊOH!c֓t{Dxq&t1>6b .4fծkڼ \}o+ICTDpFG;'a舁O1ՌGPh2&O}YULlBf:jg8 g!ݮ×+|=:gi@+"OIC#:5X~@:ר%@RA;O,㩮,m̈DjNI< s{@XsR=vGѫ_%b0R N@s83_g89XG`6A"-1DBˑs:0Y֣ Mzމ,Zj;SfCʼnnc9rJ';QmS(Cm{}DI<|_Dx@ fP<\T( endstream endobj 2214 0 obj << /Length 3202 /Filter /FlateDecode >> stream xْ}B~TY\C[+q9U0%4s\kB`hݘ3<[׳j?ʄ#L1 &5z4 ߽}x3xi&LRprZqAR1?XN7K{øGZ.>>rYuE]en:~\PDY1fitW7٪]Z;fiYVU[t Pl^?'wkOu1_S&I%p |f<>8<G1,!0PDž! fH5y)^:+';I./T8OqDuj#FD 27euE39Ma/<`O| T@o~͖03=[͌Qs NәÂ'v(lrQJTBHz`R,n% &4 v'Ⱥvdnv_!&Xd PwDQϳ2ߕ6i(^Auo0pȒɆI R(|318p1pLct5h\PU vB%G6L#¬W-@$v4ѽ/#0!cTPn&球Bkػ, *mh;Ge֬t۹Y5#8v5fz]-ެ3&\r[:=<@Vʜ-XHVD_䴭9A1p5.=:FwO)J٣5 9 ۿn-l]ϻMR vzx, NԔ" %8> 0oEtN$q9NBWS=ZA*GjB`VB{ݨt]Tp4{6PAU:_5ҍv] `0LvW.aE 0f"]SesvD^^wu OdDIzdqpN s6q5R. ʰn\*_CgmYX 6u=8n;e|ﱑA;HB] hnυ K КrM(%6q E] .'\a$Կlp{1S>%}3.w!$ Iܞ.4eՅo㹒bˈŠWE$  =ڷ|o!t m/Fsk̥tG=yl\eby:ivějAHZ$}7իaWQZ ^07)ۻ\ExBp)?&=LzG!ѧ@a߇L۩&9vpԓ )$&س*v]_ET_A"؁J7s-# 8!'E>CP>Qu|H]Gr/- K!>Hxjy&C̠x~&I[}X,_;W‚qAs!?Bݮm>[mz.';CJgY)5`/in;g$rtm5rn%Mz׵ϴaafz{)T \fЅ\p.V> ubP.ډڗ?e ˤ!?Eǁ1ӝ 0qRd0Ayg+U][}%oJU 3HBm i5Ph_]]`FK7R-E1dܶzW.?0'HbtSu,F& 4n,἗Kx$ˣs{s ]堉|G@܁UȵԚD?6GLQEV/nnfdV;ͧ1-J@JA*]8si[r-e qsM:=/1_ޥt/SG/F0b5-a~3<36-Pp@8o=fwƋ806V` c>LaBoP8A? p FGȟ'˞/e\G(ߔb>W*w.3C:R^l #=s#AT jtZjҫaASu:tE8&9mĴǎߊÐ(z}AIySu&G]^d@4dy')^\zέ^Tbw2I`ѻu7߭ (OMoz>ce_tS0kZE^7vw[i?:!f})"~F%Իp!<(>cw!wZpٲQ㟞c+p3!TMx`n6>C?Vn$}X1m fXvYf=2}\n%\-3ۦ!|mQ G}?z華Va' z*wM憓فf:.m7~G5GԞ޷6M endstream endobj 2218 0 obj << /Length 2878 /Filter /FlateDecode >> stream xڽے۶=_w&dp!xilw6cnkTHʻ﹑"eq8<ћi6 /OB:&1}tƉ r:eTx4IǽƮrg@}BSqAM<38ʔ]*ގl7ܣWY 6d' v-mM%B߄E}|Rq[сNA~UIdR{sӹA&6KCv3+Ļwdu}{dGpZ Z êZ3%35Y5OfLg*zx='Kx:>&~K3QYgsVQe<7u_ r8F/xjȒ*9`:pQdqy ScGȲygKP>p $!  \h*)jʰp{rd qdɲ(/* cɹ:-6:HIIwtk×0=E%ǪxR9BcՄFʮ]aa_ r@}{ xQw%xZD-%WeπB8y<ۻOyfW5w WO?8ڑTvXC&q}[ !ZNR]cCBnk o՗Y@s|"P m )VFRںnYcPDGnP&7(Gio82Zd1bHEڑ%rn(0k<_I6. tQ+s_V3+l:K\:^~meˋ#8=|РBJb2U.2M 7a7 XMEԍQXJ~;ɧpr(:v9lj(ߗX5?g'q̔)KO:i-fYp TMY#6xԮ! x0&`&uiP_um1c/yl0jRІуȡxY|\&>b ~^J;՘F|t8ÙH.Jt_NRi؉iG{iO!5׸Aw x0l8OBcp )LaNF/@CU#C3ht) ۩g# G-* X,+LL9 p>%'Bh՚C]8䜔yR`i* w/ [`E o̦8pl.1]'&|*\;vM,(Gc=6:KV$aQr$E PyׁAIPt@HVHc踡Y.uRXD.y&T)aiEPY ~b,8ɯ \0i/B&WboQC#uQ⦷AaUӮ>#c.4-O* }c˳AIYa3 a#m&A`%c@ ) kǩ)40ŀU]Wp/k 2pA@ʀҾl#xL~JЖGhrL@:FQ9Gֈr4ԛ>s~,%yI j8 Cr|NSv$",ԓ>|Vty+_b> O W];=ugy4;2\StҠ򦗺:ؠ)|j"wC^:i $:ݘHL*n$R O֛ S9g3sd,.0Z^WJ~ن3:wmM?PׅG~_qEƓnT9[; wc䜚OLtqҋZFUc Јљ-D?7 endstream endobj 2222 0 obj << /Length 2138 /Filter /FlateDecode >> stream xڵnܶ_!%rUE<0v[=}%KT+m)s!-'h{ crH>=ν /) ӎPɗ§:{w2"HelQt?'k JHVNIi_CҿO1SCs̸gb:T0hm4'(@Fk0)ogS*oV`:qMqyʠH2Q,ҖhыmCΡT`}6"S h{e1#s2dy\Jʉ:: B`%2H@./lelT[H 01 6 `l:SLUvd9dɅ)Ӡ2ML'{횼ղe^Q fRbŋk Q^5BCH"j)ڒfZ=xh0F Xhl33+A6/?g+D[T* 44KW3܁̃+ {>h;{!¡i!WRB3̂6Єn멲I  tɌ>@# i5P] Bߊ5`q5E8Q aA$ d-{y(Y8>\ Z p‚'?X@ʀŭHx۠)`?0%L/ˇĂKNsTc9krg? /qyGN`FÀ2=%T3.7$̖i3fM7(kՈrc[2v0ǟ/ޟONFό2 A,m˗ T m P~`XYԌߛF+5tp5JcLX}ә5{D=aJsI.g!jTfO4~)?21Tnpl\8[^'/ 6gDU3$XJKbsD{VG\U`Te;gжqm@{3ʪR1' a WQ@$-ܳe:9& endstream endobj 2227 0 obj << /Length 1372 /Filter /FlateDecode >> stream xڵVs8~_GgV%۲ Rfn(Gv-9q hvOswh? ©HD(N"y3Hbrv1E$Y8"áy늩Xݻmg4r[7S?ܽʢ\_0I9Q""5F5E֔ژxG9mK} y>9{EJ)1,%)M -bvw9MBb$9y;0MF8`R~eHqx2 u[.h=e!QXkVϔn,͹9n=Qg 4t4r&UfS~jFM[j*+耝x[bݫB-YmwEzY(b,^nFfG4rlN WZ V9v5hԕj(J @Wj- Rn0yq LswV"ffni# Y>鲴 YVj?hMUu!= >Cu˰, #07ޜ^dv윀 \Ec-dEFYCxR[p79ݔݣzx@0k<+Qgȯ6/Z%9{]Gĕx3 ʃ %Ew"f\p,~Qc$"?AB0>3b)&q,zjSbz(T-`Rؕמ;ח =zSPong`I)ދW3RA cpZ}bqƵPMcDl'}١B/xEk24U+]C@ek+ffAuvY(<SÊhtH}[N R8=T>oZJmW~W,&ײz=RT7i.0n?š8$j;?`܂s2? uOE@7CȀe^SePG;4KP)I8@^ / endstream endobj 2232 0 obj << /Length 1752 /Filter /FlateDecode >> stream xڽXr6}W𑞘Τ:&v䁦 H*Xq )Qdv2A= G]{H"$pG^k,Bf8iCHUԋF4QWr[3pTD5pkՁ`}@L}ypʽ A#P3 r.ƘXUP6ʹ A~#LБ]Pr<虗o3W hfQDI LO75գ}h֦I+HV\u+%bLCBrhPz(AreY-\Jj;jɢ}9 ۧfc J9X .g_Έăh)a^V}$@16zTq2nM>AT\-¨&F Q ۮ!,2@&UWkUJA84O!'I7聯W1_*⾺<E4z`!k!uw_'om'wѦfE 9h:w&c[kϾ*0 2_Ȫm`:uyӫ^`Jgi ט:3v<3m5-+uU٣2%{tmUΊ4lS45Y!j$ܪȝu6c"Dƒ >%r<`yc [‚:&*ib41Tn,]eʔ9ř ANFpF!9zth 0g^<2q,!1Q#mTDf$ZM#SL2#NGQX Ϝl'̸F0x# Bêr㰷D'(1SR/;v! E>aă=;"'<#8Xu4q猍]M0Q 5R)GD'㱛NO]<sZO){oлT474F`x%M!)RݬWp(l(4"b|3.aǣ] ;Iݱá2UL<ıtrZEv.?lQJw90mW@с[Xb9{^SЉwяwmRk\vk endstream endobj 2236 0 obj << /Length 1316 /Filter /FlateDecode >> stream xڵW]OF}ϯ[ =c>P٪PZ8RpXa᥿zf6R}8sKĢGEDO%(jTJmeTf<أ`Hdc$QGydxd% &gѧ0U>Ţ\U0*Vr|ҭ!'X3J0\F[ex>>:[ONp YDQp 8 17%xfR6U^zpPwO&yx~y=>bV6_v ޏs[!?@(8!Vҍ8(t,2bu @` W-lohۉuVe<4*VA+>NG'WMܴ YwPYȓ` ,d6nz kJ8]7{veMd6s6dK=i^7rs͋E]A" ֕ID!|q T۴2Rx,Cvf)O,]&.~Uޥ|<(|[r)u%^WeB6,|&٠@D]>s_b7z.+,|rwʹ#_Nǽ/=V/C :!6wOi4ǰÈ")8\Ѩila` x>55ӑAl5Ӎ;5IKpHR.!dKHF^>=ԓ*Hz{P5Nr)t}j˅NWw9+> ɓ +{ڊ qQ adxM.@|8P- yx;A{kLmh]MMnO/MP ߚ=rPk=un`hkDvo(axCQ윑9jl4mXEHF b$aŶQjޕ AJZb?FǺ\Udkw_d]kbM&g] oQhߢ[:>Z5x}zw$ō$:{bBE~V SVKVkҿovZn^߻ϿrM;Jb!eS1]5' endstream endobj 2172 0 obj << /Type /ObjStm /N 100 /First 928 /Length 1452 /Filter /FlateDecode >> stream xڽYn6W gHFm[ ͡mC.]}vjje^mr0gɑBpQRoNıoC.QtdIe)`U$I̮ov1 Y4!.FdL-,Є!.U\bĂ+BWR l-RN?йE/F]pKîJ).+fʍ T) t#\k./lI+:l!1r-x`<=83*5S _*|V}mxbtD'HAם:㉼ë- @cu(2cBv7W8Z<ea`1o-7[ͲmEKl@,CpK̀qT{ĉK XdHg>Ѵy2kmbA· V2=>ktƬnf+w2땁]5LՙY/:<+h^O̚g]1:ȷ?!? 5L-WȽj.T-zMZ#)+Z88zN:;ׁxma '^[ׁ 1xnXQ*}]d~!쏦3l}މyvȠyd؇@.R:c"(߭iźz 3A=PsN0Q2Wt dA$@Bj/@>WrsYM^tHý>T/*PD@U:0ZӳhD㧯珟Ӆ/3v38>u L-mϳ24S*@t) V4L?(=ti> 7y΍rG*5JW> stream xڽXYsF~ׯ@9(-9ڎHjs<@PB hڿ>=@)Tn} Hpo2+ b.Q̃Z 8x3<_N^\D8 %8!jHHK,=<_\}p7T ;]5[*mmӼ|0$x4ɋ bya|S{B%‰f YV AinvrEUؓVnF´/`yj g (,fm|wu]ZM:{M6wz1،JLDaZ $(L}%}#-XO!^HF1!üu UhSW[{>((8[τͫRT~Jm=-:0\)SF02ymVBp!`˳w+4#rkO\bUl׍jǪ+@7rcjk:D Die\oZUucO-pPM4#@SihlK*mh moSc\`t5JVE-v3LZ5eAX B ~D0-50X4T^ "@'1H&8"Fk HE{A _g1K[T˧ZSSP)pPqI> ]s|XH>B;]\^z7Xrk5 "ICV)xە3 ߯AW`FS3zTnDz'.  # Qˈo&.˪u{/B4l&LjB78KZIVW:2t\:断k?N-n^6w.~y9/o7変߹'dW/ 802<:9  *V{UإNqlU溱ԯuʵM>lr U^p .}ȿGcK|jDM͠wh" zt02=s: 7;JeUSKĈS^-d>ޣ=f&v-|=UvkUO%Ӊ1G}O C`ۣC^q3ѷB+zqE6Pi6PoU<3]zjj>{ם%蟾 XkxBy)H7Sf N~A+0ؒmU֡i*,sMbrm$̛ж)* 2]M]+W9klu^U/UlLUk_L/A2˛6-u/:z! C4H b!K^GbgLԵ" 7ƚ!@[kw ]k(\ڟ^% x!QʾId[0>o'~( ,2Ik,  S $&0VUO}JQz4:f DbNF:"JGYD"et̉;xoV‘)d?ڿ͛q& }nR>w@C={NoPΧbs+.,0h~awe>aEqc"p"ɠcEP.'w iM9 endstream endobj 2245 0 obj << /Length 1501 /Filter /FlateDecode >> stream xWYs6~`ߨE̛ة6i,3$ Iy8<ѿ u6GX-l: Q"P<(sb;.\[0g G",jmɶIRd M@%~=v2дۺ/rj$栒d8ǕQikV&͈ |~=KTYYx^tߙ>LGc"+ۉ[M 3νkK׬j$b$Cd RQ'7, sˍiwfo x>Md"rqSM }w2}\ޔF EA{NDH ԗWwo?]-|a?(CRƈ{ ɷxh˺zeYP '|j֙VU{^Fb/pViiS./j6:9y>ȿM!U4vPAg˳gSD AV}^N[2 E8{*mMW(™(>A@u6c$ܦƔ}. cJ+Z'x0 0 ҠTˋK~%$|o?j(em-Q)bUYy{洮y:vb%@ >Paփ4iBm+=ʇ&ե#1uLD|(fӸ2x Zrm!葚]!]Nt[3  p'103dXr0esc.Pנ͟#Miw_;pGÝnIx~.mM-1pN}.SkOnu;nljn),UfiI4i[ƓN.u9Xsj1YؤֆatȴmO0QYڗ]]B,ݺoLWqwiWߎ+> stream xڭXrH}W*x}p9kK٭$HxoHT(n,8 _"a)dڙ;0b9W>qsc#F3{ ׳@P^bW,BzƗ= ׯY8ooy:YBh8>z<"đ|4> ;34!+穒(\#gt8 _k[ ,%!|"4"j|FĸCs7Fy#I]\w=Un;y ! $HBT*UE241Oq?Ǥ~zxS.۞U:`1oj K,(N"6OE~H(Z3'Lav0ntǍ;m``ptvwq;>1/0Py%1%w ͫiI4/i+&4I);*LfᬛAy,A<"9.N*CheCPn| {m?bJ!jQ&=.TFO+l_`Wu5njС-9.l:@ sdZGxTy0ss>|DևC49@h 8!Άmi(0 8H3Ns]u$-Hvl@xs/ۓu hfh|s]jٚFzxcٱ;X{8hARv!3 uyV?|֢,?W/?bE&ڄmϣꋕnvYmؔ*L/ܴ?tot&IT7lK7*`bw%>Ad$i2+`eޞͯA237q ,MkB'2PqݱQ,ˎ{taӶYݚRN> stream x]6~sV$\:mLLqwW&ӻ~I<[(DAe, BysQ"߬/]s1F!odɐֹ/ fsu;RRAWud~_C  6m5c$4aHz0 'zq{=C,+HL1SDқ@ERmE" ++JU~(WD$߭/ }ZTHgQ1N?|EV77޾[|$bf& b)e(ă_YѶ*;AaYUmQWPT.mLB/8uJSľ[[7sa_w(TMӲ_JՕnM>]zve 9ura>k#Ҽɘ:Uߨ Y;Z") jZe$UA}S'\^.o˷o&4$Ilo!oe O!7*/E1X4&' @+թ6!G5$C>DWwX=4cr%m(q/Yʃi50!mSP`0v-g\ ԈP8)B[ R޸ȾX/>\0,asf_~^`p(+ŏy00>9XאAbP(\Odƃ]0Ls$LN*~Ҹ2i )N0 n }0BS 1ӶSgs{L e`#O[w\&.-JY j? j&Ra~nNDa9z4Q'$Nd9>?`=;Dᙙi|n= \z]A)ˋ*?YSU=ܢo\¥MV-^n-̘zCLk4bO5aK)ES6 "b2FߜD[ؗeQ}!5\VYeP}" 1pݟ-N إV#, FBҞƹRʮYBdB fUI&I xV'FMGQϷq2y bp90} z tV۟=#?mJ.Ŷx˧70~F̜v{wW73:9v/ f8=<@ȿ:@:;_A$RåY.Tř3ݝ黳^l0EP8J]|'HE endstream endobj 2258 0 obj << /Length 1996 /Filter /FlateDecode >> stream xY[w6~#u6Bq%CYm^7LJK~ @!:&o3V}ŏJ5QTQG7/G4z}~qݩ$)7޴Da:O.^8{wLi48w]f62 E|/ۺ*]͹ٺhor0TѓO`sU;~D?]jۢ\\"^VܮQ2uFg3l_Bۆ=Wdt0b  0<=27N_j *"$I7N@Fr?}ptP'TTD^M& o5G'G.Đ(P%h9|Ok|DS/"Z.~q65NW"Isy !1WqZgJPuK|dWO3I4|'S̉l"Ğvi±Gc0I54!6 FI4h'6.DÉvHͿJ4<,%_|%*JCTt+5`5?4)<✘D b )dP*ӹ14F *̓k l0x Z`Oz#%%ʰ4 6ѩJG0cXRB"<]@N^96S978#؁>:0RE3D{￯.װ'޸!p!ۗ+?MrE 줻L "jaՇ2 ҨMdbGh$!'-$ ^؏Gx!Q9My*`=#2oy>\eSoj3蝱8wmrmdGy H̑^C ?bMq,nc.qt6XF1+jS0lwq8[wYNY`"QDi*WAѨY(s! dۤr'N-q7$w@"2ɾ[p&I:Z`A 9﫛P,:Քp`>ADmxDpJD@*1 SrqLwޝv!$8Gũ=?@ >ď4AX>_+zjkt\U̼r5Mz/n+7v=(E38=l׾wAե],t/q %qGSVr_],#'^/˟o*WI)cRK'3a27Ȇ-Oẫ?ό䌲6Cmk} ESxn-$%2Qt/#RZ5ͣCur͇raWiy-݂PzTI{w/W{9 _\f,< u+jwaqv*~>k]҇ L&$3K/˶*,|Wȯ97ݐ.=d?*#k x=^m8 Lf0cPA endstream endobj 2262 0 obj << /Length 2406 /Filter /FlateDecode >> stream xڵZs۸_Qs!Cur3_mYmN%2'Qɵ}wP"dВlg2c o=c1k2 TiƚJEVf*~=@H>dcTg׷(Xt=>05)*juI!?RE߷լoEu>)=Y)sr[R dO?83JJZ2CBpdżݛ'WavEMVpĴܬMW73۵ۂEboޟ.Zśuli <(iMWRwo~o5XZZO~.?o?XEMx)wf/.yo&:Ũ.R)= lZUɺAVeq%+~dSLA`8/Zclyj!aF҃1g-aq$n4`i Zq)ʓ,987/?WlCͼVȾ壂 "۪72FH&Uw糮н!'ji"rwh'硯 yҚ'^aL-dl!%KՐKu:j-&+d}KK&FS-y{hdHCEJ\w vK>Hԍհ0:1%ZZmzQh`zgP2ThQ-+Uی𧤓3DK p, +~+({,-bvfx ^Nپ]w"'r86p.O JR˨n$dcF`kc {Њzh~~o1r܍#ӈǠ ?m&uȢ|yHB[rGqH &)"7u3],\jo$ݏ@FZCl߮Ʀ!3~0@Nj _*>^D?zJ)fkز + endstream endobj 2266 0 obj << /Length 1667 /Filter /FlateDecode >> stream xXYo8~ϯУ *):N7]4icwD;Bu:~g8jQfwi"=$vPx,Q8oO02|:yvɅÙ;N0OUwI%gW]1c4 @f[4f#9 "}NlUrKr+a?Ts%^*̥6(3RZ ȩ)VBae e-k># cZЫeWx'{AC XµD  qP /ZeKI Q/iu2,SINOzf{⛬!yP?ݵCeT20]0?*~1,c=m),jpRN߀х]Ow5!*h=c2e[uG#( nX+v9<MHgmC ]v&\-W7oƆoZ8pPD{Z{ xpc:|qq y>y9Сҽ Mp[dBp6M2v#\ʩ:7@mYpYVqI5q@ǘqz?NJX<-B'$L&ev[[inXu n:3#9)63zWN/ˋ۫7+ɳۀQ-fJvDvވL KK *+J}4FDXQpKRrw(b=NB0bT1Ӊn4j̢#94QWc"}6Vn`m2Gй0w%@*[\zPeߕw4~xF-Ш!Fmp Kh&MW`ϡͻճw+x"q==ɨvelNo|NSaǶMJ#G`TXH,C$i "NuS_pvSD҄堌䡣i3PvdA{#ÎzŠ,`k'g\ Va!~UTfl]hǖ,GRة3M ;%&{{^E :|HՍwQW!=_~:XO]b'B~zp"+@<# endstream endobj 2270 0 obj << /Length 1161 /Filter /FlateDecode >> stream xڵWYSH~a%uRVm%ZaAK2ĕThZ6;9G%"O!$B?|TKF& :=H&Gg>EX5  9>JVbL8e]WP8_ gY.]OS똀u&2%8&1U~8E2>s#,rNgWmoEc`cW"x6+Rnj]@z#W7MYDΕ_E8,ecL5GecwxN|+xEif崖i\Sy]= mVF*ҶΞB>N_Vjn8_%ˋc$a,$yU  㑓G45r6O0iaP x9޴/rߡу@>D̍*Yae1!Ai ]-le]4eUײy*W[1/dgE8Wޮ<As˜hi˕oھ@ ÿ{x郺q]}o/3*Xg$d0T< X+g},)^caqU}, 0%_"'8)LU&}Zvi̴7%̈́jҧ QWVsR|a#'˩#7ٿ9-SJ4])5=LA@z;W˽c})E}c,fҴGc />|5vժHrNk.[/-5==VYi)~؝wNom UE,uV7ML3Km>ʦ]oVUp_rV g˪xVOӃ6C[mSޗ*73h8#4Wtx-ҾtZOO Y b7ӂ ޭL(~tLX阩PM 2b Lg MUlʦ5՘QF1ly`7x> stream xVs6~_#F2NҜnv:w˟8.IC;[¬v" 0|X 0B!B*[u]N.|b"s>CO`p_ CX.珌uuWdU)@c5FR^Cʇrp/+Oҡ$"tm2cv6pn2Ri=B2Yרev~r};B lz~ |?u=VS-+hqnD?1{ؖݾb3O'7Ss^ F|%ĵvyo J Tf0IEadCU{5 Aun>7N BW/A= m%~ZBE-tѢ!"> stream xX[o8~_Rb%Z( ҙL' I{{l'djPNb󝋿s<\ 0X!Va.54Xg02;Q4 8&|b 4_O_O^?0vzDT!k|Κն<ȰOGTi]n^7mH0ͪ24JK}ͷݦ֮sOvJ(2$Et>n_VF caHYp֍ⰹ.͓y0n1t):N}M&EU%tItj(Eitf(%laRuj`fFordq}#%/JƽVnf-@Q u$ C`k>*ǗlRCFq1hB8ed֙ۻt/V5eg3I!YhݓЌv#); M?m+xcCޯX4!l|( zlyVR(+rH)VBwv$-~`¨T )z1>q-EdX "qz gPDe>%l4G6&#'(@\ }?$}#=jұ'Q!%Mc aoțnHRz$ bA@nմF3U@:ǿ^@Etib~v֞%'dlTHxm(0T/k773Q|q|qFl'`i`Q}!E]U쵫܃eU}!9¢ Q L@*Y%%SEM92'Yw*ƻX0:ӣ&p|K%X2FM142ZB n.S4S\5ga3$@Pj[Jfߔٯ՚@AiN D?{}OR n4v6F='Ȏ|uͻه> stream xڵW[o6~У X Im$]:LtquIC-mE?~O6«= <c /fak{fb?>].A [枠1i>Q6ײ-A(9i6z}Y|p BdqP F N:{AHg>r9gjWdi|‘ ( H#uêm3V\E_́Sgo/a5y쿝 ?~(<'QFkJ;CO38Oht(EQr#[$ 'PNqw @t?y?LW]Vt]jVm~2-մVpF|uMSfӺ/%~jIk !>4p/_˅ZdMzY! P#کW3c.RBNw3{;JoJ]A7w(]S.E.]nUz|x翬,žvƄbjT*|t~QW]o M^5<> aq?EҔ@||MЦ"-K*=<N,oqQ9 YvcA'63}S63hW>yKӲl>X˶ 6ƈV~`. 8l]1bO \rx٨6Zmm 볏^bΗ9S[D'&fl6Ev`sTSN:Hh3Ed\\L endstream endobj 2287 0 obj << /Length 1986 /Filter /FlateDecode >> stream xڽXYs6~ׯ#vH-%rjmG*"13, mA9ly\q4}0gpJ¿ H@#9RP Q!u~ٜ|QӘ9SM|p__ܼzz͛,S#Bcy+J{.R5\Ym A]# idyr@zҭ:؃o7[X~EUX¾ +Os{ͪRi@Ĩ>hxFhNOBUI}^p4FoK4~^Iq풦gCwTws}YV 㭚ݴ8ȎfjGjۗiW%&pZBz#,F~(,E[ϕ5v3F ˣGMrVma7,Yx&&|r"i !IQC" 8EB"UD0P9ʕU&HJ*FTqn'J< }leUS(mJ{ބЂj>DFkPSզ4y{Nў1%~ͣVxKx!4?~Tӆ^L'u$cNm9'— (ڱ`ÀTpұt'AŮCE~s# {`4k|({L,{>܏]t1hE~ ga %R|А-(//Pw,o}e]rpF8|떋`r}(btPH &TiRBI7f{ըD/F՝* ԧTH'՛^wڠϳl`}:i[^]UΌ/r>؜}Eut* n7AWQ_4 jk nsaN5Oũn!a7*  v*(, pN7xbtz냽"iT9Tl1^ ?q@B16%uo# k=Jb_8zO[/G+TT̥QOw86/:A,BUpvn46{%4-,Uc,!,#JN2]#W)~K ٌ>&`R('j>@}&=դpKu8> *cP %$^NI31߅ׄn bpbWzE2wEt EȉC{#x&d> $s@fqCxFNh! ț? L: (?5:^q:($Dp4sԦxvI7/+Ohv&Daȋ]m]nӶ];ҵ![l&ihT Hi ؗ endstream endobj 2291 0 obj << /Length 1331 /Filter /FlateDecode >> stream xڽWO8_T;HcW l[N:CHj)iviu x<d!k < 8$]/ZX_F0z|tvyK5_X1bsC4/a㇉}?cbzy2Lgo?> }8q#?J2[oAac'ġpv65eQУdI8T*a*u>v0<#X Q-E͵@244ۼyAYbNR.Si\aw l3N3AklΐjS3RVpYCNk5l %Gv߿nt!1ۧ bAb}jldA8a9)tt4T~C?ks=k#hHYnߩj+ʲ~6~}>@콢 ɺv5,`ɡ[6gW-{ a‡rzs?=Wd8cKC LO=[\ 4BQ'6c2>v:a(KAWz]$dPL4,!)ad84DZLJyP|]7\آ@*}&ihj^٠ׄU{cE쀧wn %#;AXFRms6%EB\BR9d_@P){¤ԃn:fuq3M)qЈ´duYNáv\tAI]02>JƔTаڌ.V45+ ]Vrh3ڳd>z"S׋c+F_yVt0z*`-zBMwHnidQpZ+X4[%gww vj,q1д ʌ=;C0g@l2ytZ3M 5ŀc8Q쪅Fq7"}a\4);<2TP@AeW>h.V`UmNR#*s4"\|l2'ȴn:+&2 ''+LA. R-QGyEQq*\\''*vԌS|Ā >4A\t K.IZ\àOB2̆Ș z ܘ3] wES̞7$DfUPbR~ɠX͜<ĖQVQ!$UB  hr7TXho~w#0, endstream endobj 2295 0 obj << /Length 2304 /Filter /FlateDecode >> stream xrF ۽bq*ؖkPvLMTW|Dt ϣ&gfiiøN2u6Eo.8ѕ,7FF](UxF)b)4\f,~T)jp>fX~ (r ǣYr"wr}j⧗'aLșSP6wwF§S ayuztv[e=DW/a2{E9V`{@Ңmѕ-Fr׵=Ք әJ Rb jAH6}9ZT,O' aI_A"I w^L 8W/M/Hgy4d̽r\m6hM]*3e@_1c! N&Q1H\(( :bnOԲ˺{>]QvAfD2aNFrf@~wP^] VN G7ےoCVK[g,DTT fd;N./.ː"&g`$6oh /"δJd@UxC)s Y"^_ClqPd@'/%)6fl͉IQFFL -879XR]X2D@7sy1v=3Èl*hp5W@ zYOIsW@ Tė x$T`03Jo, yI aw 7"g`mOTj&> 89 #t '惥 b p- טes2`Nue)&ȉ5[F5=\›mW+:nhMo ׻ VsE`G*eMw?tx L6np~YL8"yڵUEmsm(.6k U]q_fSŦ-qNZrM{<`ˊv(2LMr_ RUӯCAwL7˝;rnڑ%udxa]0th%W8뢪H],Gr-AM8i:$-YHCg m/]֡*6MSeӁ> ;xpY]2OH|@A ho&bxӉwfkT[#X+O@0Sqτ@eQrZ4=!쐤a9>bmptӆqt*#u<S> stream xWo6_GYR$*uC٦ p%iݑm9nfÀ"y"w?'p" 4KTB(dM 02T*MY| $I"@|E>0 .M^82d,q_,b/{~LOnq$a"r##+I"$R0d6xq9M(D` $NUQ0%TsjޕñHYk}OB_Lt)>2#c(rz^'ӡ0TɅ=)O$L8AKjwޙfBAٶ# Ǧv[O5uvc c(g٣ZWeW(,}ވoϟy?0I'`*ΪMkjOk7f.󥣷uZ ǵc/)uݬ bƐ"k:込AHQ}A=-V/sݢ ;79)1ZOs&1]M=4 P; /FyeF7{omf5 Kԕy$:7[<ǪM݃gR}'4g^"xOsVQcuWUH]BBt:>XݯR'gWoWo^_Mo a<)ol1q`n#c[@;cX]~> stream xڵW[s6~ϯ3͒3 PδckϬ{#{A@JlѹO#ED L("-$IDEԙh=J0^Lg'iфdIF:R,RW!>)I{ɂ6Wz:9lH= g{^q\n>y}<t;7Cj }W lLm0l#g&ag =,N`m7Qqa-v־g61YL?.wK3OdcIƳoQN=$֣̃h(zZj@Op7e0:pn@X2Ed-WJ ?>i88#\[}BEhyk ҙa5'JՀyLBv! %t,rzs+:VN@_.w$G6\_E[^4Ȼd4d3NWvS+SmWmT#@ B QQD%86wM._ί.wZ?0wPz: "pP(D.MG ࠛ>ǥhˆyZH7\kp#Eނ5!)nb1>-*83;vz\=Q<tyY JMUop  KcI][4²mJp6Rj{.`y];kP_\̀c7\y, A&Iۙ񲵷yO=޵$S#.rv^w\skBiИ)'}9e "Fo0(1n-+&woWUq#=Ď F^vZ7 6peaoo.2EuLTsSYI)2Fb+8ruC͢Blȱͻ׬{Y,oSV'D `,&1?y'gO x.򱓅/4~"> W9M 59 {(U 22/2+33`  EOj"4K U*{o2%I[ N)x[vhhuá݂QnL w!Vrí7N̓W gAݒto}*`& ])}p =x )܀-c,v endstream endobj 2308 0 obj << /Length 3071 /Filter /FlateDecode >> stream x[w4_06}v: {`]vxHSLǡ{$;#'L8gl_KWW㧟՟¿&!u&6:1BfD(#HnoET&d9iryhhN2 /]^'nzrgZs/B0Ί@(wRn3BV(R<98me~Jx3 "Vr~,hbl5~ ~X6e\|7MfeB$<"wS̪m=SԳbs]lYݸ_46>wqX5t\.Ck%Jln,Qn΂7UXeoQ߾uay[lG زAM]-Q+։=Wk#_M?4:tmrjlcSt B.вJVյn`[wz6N6s)g\Xg\_,媩6jTn.jqznзܥwH8Rsf.& &N^fD@V'@NIuƹt/"L.?2.t'2%H,(P's+ר5h&=?ZgZ}~4Hi$11TZ`$P!~\s8{3O%=td87Nr27d,f+.ؓKRLuu6.EQPT+&̨俊ñiOjL[=6Лt*CQ ={~y&LL,Qd>G\C'*ykX$ZGY)TD(9T/J>:"oⱯ,#VSY~2f!Ѳ dtн?^\L{,HX9 tN開MH|T"2 ky=jhb1`Vxѽ&X4OȃބJ;H͝L;Q=$$|R |nA-- !INi5Ib "iUcŪ>Hb'H되 +}WLx?ob$s #!I-|#%OO-yzj(ࣚ<3⩧xT3*>fJœOYة''W<|)':M)񻱇;G94NQqP/2MB# `UQ4}?,!;$H7fNgw~XrsMPLiap34IZuZ [m8v]9ҭ@(m$rXv}6its(~$H88[QsX#8ؘ*`7x~11xzϡJC,F]|O"eYk]8QQuu4{v;ҥ!.ҕbVUia|vײ,9[Tv*)xƑbxr2RM"#)çTCe5|ZPN" `J -5IvvU=vHE'h<(аL%?!(^&!3ca: /0*_uC)TfBe5H&ij~m^5VڇZBJG'vF@b}Qzdț(Ef}vkS/vvz[Z[QI2>K% Bdoݑ9jA?1_ 'Vluf%&zy~շPo"&-NR5.rK&g_.6E]0Bkauuྮ`.εZ{,޷0|]|l'J bxpx;<.8 CV61f@8ä)m{{ E>/W}H%!^,>, i_~}s)zϧ-,õjהg7kf"AϋnG_WLT`C_E4쁑;:G> endstream endobj 2312 0 obj << /Length 1448 /Filter /FlateDecode >> stream xڵWYsH~УTXiF3>@@#vj xqB9$KpOuC[{,a.#(CF:tvλBg2(1q;1bhu޻ެܬa ǹb^{/0>[R1(6O枛6[sˬh̡hYpV7y++8%l jCy܈{X]\_]_y}n6|#[.ñmdKp~im (i}Cr[&Kf>us6b5@L"a\]M)Ms$ډpn6TBHa"UR֌+8$Y* C"?/$oa5jxU58w8sȌ^9aݖ*UFV;CbK1u֝C{ˢTuC~(Ǫ4I +qG Y:r6IVB#A5*8wZIY_LŽOB=8!xNil!DG Z;/ЦoꇼJ+OFN}ӧI' Ɂ fdXd1!:v^WRAIQȼQA DYX/.'UVd~OuQTRb O"oJp,Ո@M ) VOu5a&B_[",IX=zdqDm* ~CW:{+lvOḇ~z4PйKM1UR~W J)b;iA}ǠPQ:,wf ߦU[:kLEVɭԩQV0~>!l(@Yve7k|hjū1 Ns(\ Ų3O5:-ˈ@n 0 endstream endobj 2316 0 obj << /Length 1011 /Filter /FlateDecode >> stream xVnH+x$ o,e؎H$9dS!EbG?lR[hq0aZ^Uwhk?9cu4[ki wbP`ahAaqP b~=g}47 fRaU+u': \/M $zD.eZ *s շ-&- u(~kpURV`0b@Z$u,D`0cq"uE'LLxu[En؅nJA6Ŕ-OU˜ޅ,&E6!2L˲@Y(bQnêWt6뇈 iSqdQ?ϪXS?E6EY%FĆ)ׯE$GQŘ͟װ<|DR&r]-'b- #Y|rbL'}-6o7keJy!T+Ei_ky{\=pW7GZ]}Cn5K[kv[q lZLӢkQ = TX j;E1;4ͩݲ*\ 0㸋scŞ? @ {㪟Qޣ{tT-}ײG${BD(?_1Pwʜu]u.ӻ~2oìȠh )3X(2@Ϣ1"EO%i{ׁf'0>4hOA诶MmfK$ \BMƍ)-f/';~o@Q!J}y@e>0iqe3j /)-CB)eB3>}Oۍ endstream endobj 2320 0 obj << /Length 1593 /Filter /FlateDecode >> stream xXs8_G{.=rRp3MԇVĩå0E߮v{` ?YៈXih.R0$x@WγsQc 'd2P #C.Tϣe0,ݦ\/NgtV)`GO Gayk  y#a~q]-+g"؝\Gϑ0FT_КZ@E=T80i/$+*nK{A /~] I4]AC(T4*=U3Sf0VEı';nS^C`Ļî]w(].Wa&zYM)Ʊ"Hd9?bxr  +p+5P!.->,OE-J _E.!_e1ޛ85G|W}r#*[Jܻt~ZK ;wRRW`·O89׊*8!ʂA睯$ fbB4"+bHrj1Yc6q43`)iXI#UT..gHqHQ,/an]6YFe:ڪWZt3X7'ݜvsյ]1VCXBWRI2xǴ`nl7U~cjH켖7etft8q?}rU̖. t9TrHx4bwpVQ8(pq-E\s.G|vT 3vE)L`^7cd $ /-z2= f A|[x5H9fCGG8u0OcjhG;vui[(DƼmoDmHDe'q냮>m7,8.5HE3 TՋEmIp/ aLkJh.ڢ͈ BXlUn߿CR瘃aXa['ZxyH~b ڀi!"yqi R@0a6{o5kE0 W-D n@(FRJh@!MLK`ִ!mÊ̚n?+Fk[ KD7YBE4Z *Q( Ɩ ц ''"R)e&y,L|"z!uӫۗbg\o.o8C#AΌB)(CJ7zbڿM.?VɱLn2ɼh-r1zo@˰̵2Q=N[FcgM?_)p}s3))빙{s3OcF舄=Nß;PIw4gjPc5ac5uc)Sܦ?@~^qr?} endstream endobj 2324 0 obj << /Length 1974 /Filter /FlateDecode >> stream xڽXrH}Wp5;}eC֑&K٪<"eq"^}!E-[LM_=ߥWzX"e$ yqμ A]\#8&jd hzO^zꂈ<*##~]]6'ow2S*6(Oig: LuUkͿiި1*$*fkeX# /F OXb-!)P,b#TX! ^ yAK#EZ$Us(Ѐ͡ljG!ha(vs粏!TP60QM_YRmR2_7FRg͝aukx8CmrS6U>Nx[cB(C&T9{*-NJs%p.LX&Ge]um^1MK{uƁCFdZIP6szZBqZ>^+ţj3F#0>K evf C-dSs wYd:zBt#~$D zwoK{#5^K<(gS9 bnN~ 2@XvN˪יȋ5XɠM{s?jq} qHj;//wצ+!̫"T'XՇOW>~^("өYw"5 :+#$l$g$o &ۂDN*FpK ,4cX3Dbjyc&h #~8P8u$"3m 3Eap,Iq.Iٰn5#/1ϴZSK!Q kez bVc0xc15!_&j`~`8 hy8SpӌQws1v+q% $07  CLN-o.}ne!38rtX9a~! Q ݃PsG#` FS-̆sIQD$|MPCC7Q1O|yBJUT gj^ntOگ ZeSfU:iE+K3s 3D''lϵtN'Cjg%ۉ9gJq;3nt&&%_WPtZJSlG Ah `'x2ymPKcPE~C7 g<=OFx:e#&Or\Fdpm{ة mOX EZp(^('vg endstream endobj 2329 0 obj << /Length 1870 /Filter /FlateDecode >> stream xXK @eJw+_K&HH`5VQ_ÒhJ/J`ӏon]’MUMKEԹLMOWirϫ/nd0J Zd%%ZJhZm_WΖ,2U]!,8e[rE 7Ia\wUm|);x6>,VXV\̹o~\p !ԋ:HvIno?BT!lnzUMBR} MSG&,U.lLPv"OUUD_QgYY_CQ*R/9|>(>ƺ M>> ",ֽsF.?@RjOFS}Dt"mc Cچf_g@(u@?G {t>]jx- P"0Xp4DB<>;Dp1c̕NJ`+SVJLA}6n3PA(glˤ-e Of j.SXTXkX!1ߗh"bYME_"6| ?iׄwغYp Ġr!B38AatèNc>| ]t広$?p2hʳdx{"_AƯH3r88Ċ;gg][u=᫳;  <2(l@l;ׯ}a5xn``m;vϱzi9f"m0ӻ4Vxn&/63ЅhK70d"J?g&\Hy5Pw;4'~ RÉa:hVDq Ȯys(h ~lQ7~q4]9aLFu>9_÷Yd endstream endobj 2242 0 obj << /Type /ObjStm /N 100 /First 948 /Length 1487 /Filter /FlateDecode >> stream xYMo7 /JDJCV pshk$@`XEO˕8)ꃈ (ECv)!丐 RQ'D.RjBq*!t W&WӠV/IEJ3D! Z&5HblWAͤbjiTUQ_(M@Lv̐u.fcHƔr6gM2!{?bD`R%Cf`c;!FxR3pT X, cc 6Mk+샫")`Lf&dV͆aP G &hTl P&`1@\3 rEbhcL>Lќ3,F#4&6 YG,8d>rƂn !` HQħlB`6@b01yJ57Q1*ګ٧<U gE>LNG% AXP\41iXl;f+ /6ۋ/D~}O?ܥ)!ֳx^&4֝t@dC/jBQ2[l? I)V“4=}G5_ww ?wۏwiٵԇ~5zXO+2%R=D, -s= e~4"}B;pF߂Bfix{cwh6-0} 80s-)Vou3ƒr|_۴Ia߆L"̥IV/}%F_bށˈcfTs~/Q˹ .z.r'-bG /)$y­{V)ܳJ\G8)DodEV_XdU"EvӏĶTu=ܝR-3Av[pTC'vCYc$4B}45zsY1Rd,B![Qin{,&)I:i6(Tbf37 S1u5156{|pj9HףyTS*4R63immp[VfVZԉ __V9_kgJt\1z{)y݋d)ئo+[=Ks| 뻹𹻏z9e Yυvr[9ˢp=EǾj#uhj6Js o l-k#{8o/w[tjordIS{$8&N)|_p:> stream xڵXo6Be bIХIK6r–\=!K݆ {wGw ^QIL$U)! ^{+BߟG/Θ% MXy1 K|iqLC$F].$1pz#QP%F$7jfAH߮gx;>RA[fNE_ܡIm$dܩ;HHb5_`,౟gEnUK˥YV,ZCg1;tۜ ^^U಄ B"E4Bag3PfiuѴEfW]EU8i|X9٥ &j8X8 _Vs"Y;Je6>R?RI6| q$DEU(Ih"*QQJe5<e(x+e a2|RG82 F6TL$\M~r U|bC |T1ӈ楙;CR KDNB)Q8 #|X7&*/I(o@*/tdicGmv 37)ۤ}dEAAs(Kȏ ecco osBLMiW ]N&K#xW ʱC p(Wd8/J>EB-vfUWeyo=U3h69푻2WUx"U'D0G+ҭYiڌ1F7 ئe, M7A =.qʲn2wvi}CUmBN͛ݱj_i7cbh\g6#DFM]]lh!|mb)w{)^=b7|{=y)PB]b|D}ղ{N{ dNK4z=UP;|k=aRr pG(  endstream endobj 2338 0 obj << /Length 1068 /Filter /FlateDecode >> stream xUMo8WHac[i lZEۃ*QvmɡRb'Jf"93|37U?),  BG]<;IF3zDK O)'XP{~dmmi]Ng9zm"sk_)t>?sLz1irGttvps/D:)F/65F7ڸ7'F~ GH:Gݽw:S(7C!|;'ÙD&&Q':[&5Yu&ȝ!40 8=c1ăRaWu4ʺrзerV^~!k+AnN3һX $"=i$?zumƂH1z/;NJQz ޑ} .)`3 I F.;nj>7r;cрۧ+7=Yg3 So%njO -1DmJ; 9^զY;?pɡ+xJҶ󺰣D>4zmat0BaAxw;Uw`ژP5^S}6z;q4J^))% r.шV!ZIL{ͧ]ƠM ѻ8z}@}ht‡J23i]V)lU}YM͈}z^@"%l3x9C-pzm<^<5$jIچ .v1pRWE/rdgZq* 3̄}6Uv ߲=럵Ȏ"Ư>-eݷ'ao ]i/V BL-* LYy9{1 `1 Ʒ2q. Ss \9 l2Hݟj !Du5P^[S+-cKymw `"Ž/ͯ_r~|넁m{E8 ;(r. endstream endobj 2342 0 obj << /Length 2303 /Filter /FlateDecode >> stream xڭY[sH~ϯӎ\kw- ذ!jwfA؊#"˱. 쯟jq@|6 ʄ#dOEu]E Dћo>_Of*(IQU$e"$E Fe{5d כ:+iY͛V<{-ɘ3w{@ J5Ư'ƛɌx1n묭/yJ/e蘵JӄrhdJdDB[)Uْ I@[Cq1O\"F|v'܂%#gGbʀb@FȞb$8H x92"(*ئ! \Eo&vf5K% 'IK5`#x_%ʁPSŷ׈C"^[E'Kì=!7D#B8̉q#{qx^yׇ&XA.Q8JQo&P q@AAxY !y`} ("RU2zTJh))*PO'A"DD$Nq>-aĶ :,M.O~qЃ(HD#Aq9d&M{fC#Ǡ+WYs h/H/`E| ,=Kŝ=Wzzqknzmz#*n:n`i #+ Ai!uK CVOf<ʯV^I㬱8| 6CH8pD6:J(`0CJ rpHPD VPmL(]YݴU]Lp\"M'0~3dΛlj? v"{ڒ[1 'ݸg$ ; +cY4:oP\BPJgVMih<`ۓ Rn`@6X%)5"pp}_Mir`g'7ۏf}۵[20EUWfuKrVE[lp}RZhB8co!c04E4%F$k_)$(0uza;iKQ0r̤| =y~tPJZyF21hBeIJ *Sh<(u=> =k 68&$M (0vGN[]\dG RW^eDPspŏؕ|Ug]2EVFmM"nYo3Xe~[: 3W7eP4>m `n$aq'z[Pшń`!T[免ʡpS8`i=D%{ጁmi2±FX#ۡcx-)lRTlgY-U?ݘwnMބ- 46ܝF< ~=j „܅Ū /!+v{H8::NPp2degDc qܷKnV۱ZһƳ~Ex>Vul, X9a_:sQ fZ;4cuE[)wvwk.j\&$@»=eL B̾_?O//guVz&W5xۼAf[2_o; e:|y0@L eڂ1nXWǔwep تPpДVMWI_e4'W)] =sCM|~1?`n_jmW4|#_hݴ[MVM :2ǴXD񬓬+w8)z~w0rHg_U7q]Pܪ\uO:A;fPEXQM jD^+2s~cˢ!"(Q^{^}BY͛".{SrofБ]&'T3^ kgo%ѲԎ#|n} 8O OuDѫ,kIP5]|jٯ^" q}<5>q!|qcXj뻺#XC1Bw> stream xWr6}WQF@u$G4n,3$I‐/%jt<2b{` (4&I$B*DZÀ" .v8 %)MYX09%-d~~=e1zfyqz> aLhΌjGc01lyB3II20&`XH$T~賂NKhg|7 ZF(x0~&Iop1)j0.GllX`_„D<F~Sؓxr¸b^W׿DxLǮy1KܹVh,C9` 0FR)C_2D~# n!ߖ7[T8zRKV)>N85 qbr=%|xf|򲄑$|i7ٚ~ v>D }{:̿;Vƽfz@_ʘ3cLp)ca3%Ir9ֳPąPF+eu J-|ӭYZ Tn ch1@TgG ["Xfv6Xcf1+vt%ƩiYB )3uAizLX 40̌)l }4 .pڿn_iQxpg݀Aݢnݻֿ}E]Nx՞:=e[?rG/D Dq_VtIJ(f^7 6!@.e:Gt@quԭ7z4[-m|Ɣ({}Q8uV ơdFmme߸x$0 DZ4 ;u]m]ۅ]wp}.$›͕QO\8"O)#goqύ ecpLv̩81{EP6/iN҇g#4+S99ذnFh_޸-dРX*4:[US?YGft\ B.4u WeԪu.g'DOq۫pGmQUPbK?r"om'?AA l ^|9?>( !\28l  endstream endobj 2351 0 obj << /Length 1306 /Filter /FlateDecode >> stream xWRH}WѮaOR\Vm%yh[a~{4#2"xMQgV3= "~;s/N%i;g)'!(:Sg xip>P1^tUVل/XYT4$GW`c!c2:8<(DĎKCW$` '#3<"O}% _7UѨ$tb;qYtʃUWfٛ5,J}_`|3 ǼgĥN@UFU3j2˥h> ɕ\ɪP,aH[yK뼰ޕUQ g|](| !^ .q"&JH,NUg^^AVIf^ֵe Bl%U ՜ץYog{ܡ"0ܞϯKDV?JDI@ YE 4wՃ7m'لɵq9ތ B&A6}{^C0D&FvQNwq,Άbw&@ߙCH<zH:[K ݢ&D벗A1ƮEe8Ǘe1:/u^^^\NNwn9c$c "&L܅`* #+p~W& I0kQ,ͺ֭SW e2S \0u nql~} %UbŘn]M# g P8q6; x-0p~VhSg6Bᘃ\ k6 ^DIAh,Z>8_Av'TϦL^3)+/d:rm-HUɓYTjckTYU{Oe Iq}IU+1HnGuRf|ܦՏc*XQVvTt==V=uS*"wb-=N&-{) $w˪vގZI_d$f1jFSYDŽI6c T{cdԛ''NȺ(N׸1z 31;3ɺN&Bx*bJ,#:3󡛄9ޥA59k#ZG3GNj(o"=x!C>=cw|6ab | b Q endstream endobj 2356 0 obj << /Length 1784 /Filter /FlateDecode >> stream xWs6_Gj*!gn!ڮiZJg<$J҇޿~(2S \vǼ-nʣ1 i^QxZz Ի9X]<IÐ{s/i+-㡿UQol!п!]֝Υ}V|>[rdRb]^FIJSV`}%1y7= X<tZUp`pbb/ge)ǧ~}}³`47:ke3[pN$ϳbQfZMW孪MN5vru%ac3[0lfYTӪALR~ RAĭaˏ]voT8p}R+1Hecf^e-B O̷i kBIgkNلC~@rt3b@zW-tVZ@pFx(iD@QJf6`V3Ϭĝr9Pac2; P]N"6bG^ z}Tna]ʵ]h|jwpCv f I'ڎV)D@In ǂ`%=tE!J6"pN43oRn+rL{ʢjdd@]NrU_j]fj0Jȓ:GhJe{PF&B`^&4ҾԲ <&jֺn.pa[33t9(>Q_DZ^0#0 ///޽-p|2R%p oyW$,fa_foK` j^m>ڔ-E8!4O}+'Y/^t[ p-+9^z8|_dա9UUsUA!o6 RDnwTt~է͓i$pH%4rknb$w$Cm6]#);ӝ15hRq1f+!aaz}!?X5@l+`l1ŔFL1|< }bz\_w`_d}=dS.#gcŽ.Tw~Z+GJYH|58j.#hZq}BdEz~s`0]':z'u¼nm-V"K4F B n. SIX "$ ܗп1nPе|$//]1- 1\dw¾cܑd`0!A c8np1r~$90| qtO* 㞬㳉1Hx/T*lF}}2.: X q!xÙL$)0 uH8;$YJqtֹ:e),.)CU 9Y!>8@VwS,9gT8rS_Z 2A툈h\ɯL`XIC/[,+t_׉\7@1oP6}3.Ԅڏ` ?-8 endstream endobj 2360 0 obj << /Length 1410 /Filter /FlateDecode >> stream xXQ8~W$m{vNmB0`]S'a6` t[tZa<37~+{(ʆ7LI0$C^_Lzϯ10Fhb/KPD`d}TioQJpә}&1hb% q4HڪVna4"Coϊ0ř,b2_3 -CT\=lX^Fp0J5-T>Me^(c$xQ 0͢,#/H:ҙyYeP `\]_WBNYJƪVӒ oR},ɹq}75e-x:@Nw=4yԬ}BMc@`4:ֽȖ'I J#=saLsWo7oﴳ?nƓ^1: ;qlRRNjJ^AnS*Wv-Fn7d.\>ʮ]j1XTfIƍ>E}З O%.jLrcc$ODv+XdpAr4m.wqӣq{WT +!#hby3xEh=tV+/Mb޸^U=A2Hl $@&(zPUj|tWz}Jz9"d<I #DǸ\_tӘI, 1J6S].JO^oVd*PrЪ kZSZʴ㷮&~;#pUJйU(}ݻo?LU%C]?7WPr;PȖF^B&D4fH--{MqWyUY7\9hGf@ SX0xlU3]PI0*Idܨ jEhmm̅q ݗ6.Vp vS (!1> stream xZYsF~ׯ#1Z9ʖHV<@$(aC4HR~vρJtJjRf? 4!&&A惟(lɫ%)M`2,(h2|xr黷OGN~z~:Ը퓫b= u(s7u>ÑΫ-]e^gqˁiC4ɠ "FcnUQqS2G1Ҋp%9d4 ϋr7|~mjw~H.E@Kdf0f(:Y]gvH9Rþ@k U rPl ;jOyE#cU\Ҥ{SF OKmm6hjERZV@=+l[auuJc6vbSu\l({Wň'1' FcNԽN5# >c)"q ᶽt8D:Ijw -ZK{bET2D)qup8(!It,#&ŗ=ϓ$|1v. w^⮛ h-HR'-cP*6R ID{K>j}H'tb D!@\8m<%TCDϴ_̣7c">uvmZu#$fA2"aljӰ!ë7I<@)wD(cœ"@xLZH (P6-avB2q+_UԥRL?Sa2$IW= ƒ_).!ӹ@/1MX(!hqۜh3xek՞MVW1 WᑅpZf+(6X ?_bQm /UyqҾơ4Z۪!USP"lޣkT\\`$(ݍअnպ><{4֠ VW<Nv,ՌDW4ZQ?*(R!G j7l>n BMd% x\`ȋ˫PrUŢj.C~Y6{.2jj":m bu]D+i;fVk3hl2+)vpR0֥-2~9n#(:g۩s* Df!8+ўɿOO߽uyz>yw[} s?9H (-fsJwҟul:Zu( 5{ xG>q"T}p0/ \'Sc7|G/šll$=kb/LjA*;|@m]Z3L{Xma$~C`@Ҡt8֢,f@SԪ 2V) rm)vj9Z4 .u%NIQD#:_5-Ԣؓڡ E,-{2;`D:k%zvִ[D%Ԩ ]) @:ۗIT6f| ) vAF;! or۠窍47{/aM 罖޿i@^ʠMN*0@;EP[OIo6ϣ!xTK<"HGzm^VG6;iC" àoo`?H'>O 97[|\G^u#d^Ŀpw 5<)[\ޓuamsaQĠfVHMj߸Υ`R9`*3֞|[N7Ee{.0mXT*zIC)[1 a=";p:7?À |h[ 8jaٰU鞮{ý r-d Hֲ葂 wq(mht:\"7"w`:bf XhhiIWu>-ʌyG!P9ُMT' 垿.EQ%; > stream xVMo8W(C>r˦N]lZUcRtn\(y7%< i T8I"e2J$1ȇ@Fn^s*|EĂQ| W{ԭit+S,vn]o(^*ekMY@T,nOw釉w5Co j,aL2ew_Lu u""<8r!g\û~Dm)Ux~Sac+1.1U]l2|uٺ(M1횺tv OÖ{5h.5C1湷ņAD1ViM4'x:ώ1@L8߶09[ڕvv@M֥Qн}|+K H)\oeݚc5ң#"Ä8# 8_ }w˿Ofp ܸfzkumX,T^lϾED&J}H~h10߆Hº!ODI*I> stream xWKSHW(o0OXbI-,j+ 䱭ZYG#ɒ#(CEhZnZZZ~/ғU(ka}aPE9A d ([m\v=xmHyV'cG`D  .6>ў0(uU0={>S>菾 x$C)"KHoE-޷4t=.h=?j5Rw}8Nfٛn75$'atzus_@ЅgߌOoO@D=2o9էJ ݉AnUla֋w2+6FGqZ*% :ȐBrCj= RmFYV4Yaµ~dGi/9^ρK[k!ݔ6*۔WyeIVz YD2+/3tx'M0:1wӨDدI\T&1\ ̸YGFa-+ # k]U@{)gPC kT 1J>dE;7Σ"&uP8E0.p)5͌*c6qF6_ Tzqሂ(C/҆%s>&]1! Iu\3%L| o v/HrWg,3O+t#Pā,YHHnuۇM\V%.L@]b 2_ "q9aq(Px;{:h@|΂!ϠjnenPٮ_~|hH5=Y1(}9ȡ J+8IfO/gL\ڎg3ƌeh/ӆU׍`{y5ݡruᦇ>\ #0jp{MpmHTphiYuS^ҙlDj0Q@[QUyU%`-Ѣmjs ];^e 3goW)ԦRv:=u iYY45,m CouVJoRGrkbS U*k'R"wQyXO̜1@uX@ҭV5Je~UGR/zQ@U(I3wdEW8w$t?I{=U-huӼ?| 8ꛣː\i endstream endobj 2376 0 obj << /Length 2853 /Filter /FlateDecode >> stream xks6T in/νތJ6mIN-"(H'7X]{Ѝ e^X$ ) i'ώ޽K2z>rPXbaQȈhL"_Uif%1pXO' ᚇ]zӣskD* |£dHh /C:y7Xw_e 1cs`Pu/4y/Ug~Vq2_UM")a׭4DK2^iiHEC;Y%YQߦ,/sז!s6~h`LݰSiY6(J_$6redtjjΧUIC1/fi6E2$0M{ `jIӹ6)\zeNr;QkelZ46[Lgirk)i0[*a(fmP;~r߂½*^L?L2$iw#Ny\NEqiTm|䃺/|qH#ixU\ C tN0(O`U^@{I0eo4Fc~SER.Ddl=췯{cG,Is~Ve pw'oN޼>/!KEXa$5 }Km%!@j1PQ[% #-U#%]"< ׿DhXCӑVHahd;y&Yt;j W#}9]TD?]NuQrSh,!`@\pIZ*u CvgNb+uTuiemR\VJ:Q Ao)J%o̶6ض`d@(;0Vʟ$E}_2~ 9<`I)(`HF]I*3X@[C=[3bucP/UmcI~T7SU-'N=m6 $Vfn`uEywӊC(:ܝ>-Z@DݘxMըs8|3nu[CWis^u!jVA~bM_%4ywL/ҚN^/~JMB/nUvZhj9걟J:MbyX-B 9P1NᢞFpU%W>`N! m˾PKf>iHf^UL>ExO`8.4+S5jx-?.IU|bO_ j-l6;E |Yg|+4⼖is=WiUj/ֳ*Ҥ_T,Ѕ{P5b`:rXL}jXY14*ɱ /3cGqQa6SCݸ?ln C=S C[ig午W5ͬ1041-?%5&alW`w)ZWCjw(N5i4't p('4Za=ogR*d5'W} نGZ5a콧gXk؀"g%k<[]Ѿ캱PN*T؁k MKIy.֑dsQ2DH9 Yxp"{wޜkr֞|--8YΌTU;@ ̬d; r#)@U9G[q+'9FgC#Npw2#t6,3+";Fuh򍃖]=r:sOv ?]*1ȵg&=0~ZaAj$*~?㎄~|MPV95 h;Μꔻ+ɀgXPcj钾+JM6ZC@:ekM.mvFoK^CCB߆]ԙy+7`*xwK*v>WPs)sv?فL 1nau/ #f:6tM'(W`dhH+'mo Pʞ\[zK~M$/阒?@o]SPπT| 9B R_us}ޱIJ~<@ww桰 t0LLywӓ7uٛw~^7#El~ U1`{~ (CH$[6~p=ד1' w|YKCkŞ endstream endobj 2381 0 obj << /Length 779 /Filter /FlateDecode >> stream xIO@s%<F@TTCH0ިc c H=TQ[S~ {rD#%QZ!-$&C?}A8pC,)sGaL:Qr,eƷq% "ɨId4꺞$ĺU< 8P2<݇l& Kԃ?w5w\^k(+ my}UuPJV'w;FOVczI\)Y1q֤p,Ή7ڇnQ0U]tVYq^هYYd./r$ye>uT4S|9E:rWi]5We|o4ʢ/wh|^;5Lʗv[7㣮un/$SښNUz8Nuc6FY+{`m jʜ2NdL}VkNAZc#Vm|L5k-.޶Va (þۅ7uc%eIAq°}59`L9_xރ>[.0BrF72 針Xj0)Bs~Iòc*C1h9}¨%&۳6yk_C|:j0U&BIݥ3ؾr;ےV='-$RgnVY*f߆m>&[%h`+>[! ߊص`rF&k%A￿u endstream endobj 2385 0 obj << /Length 983 /Filter /FlateDecode >> stream xVs6~_Gg8iٸ3=`&}WH&kgzq$oWo(z;AD( 2(&xL}0$~zW#"Jq(CI$'XSB-}a2a=&Sk%ɪ].'dV2ϣ4K+!sjF%8$!Ur`qx #;ֵk0+7E`$rRHeQW NQSv8x`c<|6}7zkh*ӍQSxkZWƓytu?``Ki]O!rfENm_E?4T勞68JMhPOqIq~#s$}&?lk[4(LMYCۓyzlV9DM7uqmg!OډWwI hA-,Ī>+,BIk<(+u)+vP͊5]Mb*wܚAO4!ƞskj f%;t}n: v*AE$SxT39WBLp$~:}~"hPE5V981Cއ3-{j)P`TgzMޖn-{(FՏK^UĆP Aj **#iVZyUEck0e.mSbp|g ߊ˴7U1xDѮ훎r(Q-JIQS-G] `H~uS1'FYy.(JS 'pC#.h*<1J[E'3wƛ:.ªRntFYC%h҅f >h'ߣN endstream endobj 2389 0 obj << /Length 1302 /Filter /FlateDecode >> stream xW[s6~੃[` iM6v5J_#1xqɴ3Otst@F3\y`7B# (0812A׸x]O,d 1uf:5>3 6B6s¦>2wSljc:I4z9R\e.l6.?iS/2.ԡ` vB/4l4w47=25waO#VիuoE2l17g GBǝGZ0cI)7DM"D7$*^j*;:0{g$tb@f=f%!0J,X7 6$\Hڈ! 95pNrZ1G̵:A!j5DO}H6zT2BҺ${jDmnb'Dg[VL;h )(=6t@1N4asE>ba!4sԞoDMXy'f3 }qoJ#O c5x0rPy*>¢Kd^[LHܢyƚV\㢴Ȏ$ٮԤiVZGpsqe~)W_~[[őy3 CiL)!H3 ̑|K=?Llm}kz(RSK`bX( 2r%S/F.~mQ i{*Ġ - <`h)ghqSsY уd[hUN$9U4TKYJZճӘW"qX(U@\xEuaC!˪uGi{߉8J2$U9u3ܙZ?v8њe U@x$=u^> stream xWS6_᏾+zZv~R)!љLq]݁iH;Nh[[yW+= T:^$2WoۣHbű$1+vZP:-Nޞ}Zyq6? #~i'ifo#V2O,iLuVVx'3̪+Se% KW=5~},,1k?)sk ÅL%cw\W, sۦ+:Z5qz~m^ävӒAUyʩ!|dHT'JꦷNu)ЅiWI+̲?,[~^ XDr9R'f{!@pyv_TqvM6@p 1h/QLd[Er[MG$FnEq 439闓{m΀@?WiucKST:#Ut~EJr#ƦXW'yt3W>Kσ[2[upRbT{>Qo 砖ͽ;0yXA;Q :5 Y辂̿ˋ+Wuuj8Km^`L1;tqt~<$¯z7MwYWx c6t''>Ϳ_rwME(O0h0ȐAzm1gl-DJqGo= *\FSb٘mPD-sz ƔnjdL['hkN~%έC>[lFqQ#>zѶ5´f|ELz=n#O1!#•w0&$r4,#g8l7h?>l7}NN./^,`?ivAM8#_f:p3J(v /Yٚ+S?>!rA|zYZGߑ#)Pc1AfRɝ#O]#nAtӪXCd[Ϟm >&驍!~$pi̗Δ޸mpOӼ[f>G8Y*uUs1 y0΁䱟F 5Άq9E؀<, a/Bۭi茪'u|G`}fz##~%0mWs vº ^IjM@v4m| Iơ 05, s!D5㘕KsZv Op6)t~|0Fd%Roy2pV"1g^\V-|2U$t /'E%!Y\8:nܡe394j;1dZ7B$Ի1,\\za@aXiX-Sq2KܝVI@tȥqNH}`@ZIFbxYUX endstream endobj 2397 0 obj << /Length 1317 /Filter /FlateDecode >> stream xڭXR8}W1يBښ8|2 ۲$d) $Gݧ-q) ?"~;s/LeOgK8ę- &iD$O/ N~aNyn@6s/V<B!Os| }䓑K̽LrU\Ce-<_Yr 6b"ĭ'"Q$f6lx6|r8 Sq)0U,kYSZUR"7ӦOIxNl]xNy9ϣ8vҫ w#ݟ}GD&[:X#B" OeH:A.LVb.nIQAjXteѥiG-ZQfW"&]`% .9\6aua X81Zu6Q)$PdFl" JJPJR.ZT"+E-ejXLD*;]οu$Uׄ)YEbțR|%?SsG?aN&=6,яZ>TYb˾|l`xKe3DNjײτeg=+|Cw>¡ϣ,F1f*c|h0ޅF&2f0փlѠ3enY5Y*@Zke]=fMU|:G9k".p@ 1@790~tƂ]϶ JT X (@<0)þXALjANƑ;B=<ʄI?}WֶUoC4R"JHwqޔ [j{z gK~fDr#2ǖJaeHOGZc?n b3=dQT- =ctvtEV´PsZo~1L?/[̀4iRh%TГ}WmԫĞ_ynO)F ZPZf-ٳe bqbm ZDYO176eU&(TEߨPVBE!uUҵ~6tv{ ;KTo+-Xcﴝ 461䵋<a @ endstream endobj 2401 0 obj << /Length 1254 /Filter /FlateDecode >> stream xWsFУ"NONqRN,#AItgǺ~bPc aIF3$7ƧBbߌMzgW5(ubw]#ddf|1C't-R7\Ũɧe7OJN^_?l.3 R dP$(6^o&ѕ1r#rp].> ƎOTeRp~ 9UtYe_/9kPd}@x0~3UʋY-(s|/F&,bOn'0oȼм]1ۍ]h9}"pEB/ةOLZz_ipeBa_e $UH=OŌv_2_ZYT:m4"QHOnG=^ UvW2%$ܾePk;/d(\?i) [#G7DBw??HXzۑ9gDp^%le^8GK֍ 愅bc|%  D_5Qnx̅13ƽOG!mö NݱL9=!?ʼn~Bp҄f5Wt?lkr딏3Q{p5mbccDɴWxs.ԑŠZ:7VU@u"S ǝGZ8X\&7ٳN0 <~k>CN6$^m)9R {uNF=T]K2'>aUi:NԆ!ЁpoV)ۃT+(6'fԮȅ9MF  i endstream endobj 2406 0 obj << /Length 989 /Filter /FlateDecode >> stream xV[sF~W4{J~s Nq93$`$I,AIʴðZ-|)|ߢPaITP $&5->ZW"Jq(%C)'XR4Fp=Jt\:y:s=H2ȖHx]Or '!a~n %8$!5> 8Re>o݀;7. N(}V$VL!%[K9ϖe:cpdzE{A}^ѧAw㈤U^(I6NqzSt"-Uʹ߼BszH[dqZڗI%vfru,6ΫPR*sɖ,yDdX7s,v Q,yMXklQNJ̫]~7A{zV RL0 +QLUjƹ\<5w( {M|Fi~ˤ- k pmDľi*τ41[Z B (þ αFJjI ru^WfWLow!ańKB@$KMC{( zzjz2̓aUnڢk4(i}BΡ0js- MLhp̅"eEas~@oH<  ?ύfd̗`M]C,ApQFe=<2L 0\F=]/lrXqu?ȫEz2`6.uPiӆs"-601ѱR38T8UJPR> stream xVn8}WlK޲uRXtc)XrK[!eזo]"E33(J-?i5De*6vqv% [b)X34'X(FI%Q,]]inזޮTvo:e{uooKXY!]cbm=,mfshs8 ڴAsޜa/o 37oD YqgHFQbXFsks8\]1R\;]FwJk )9fBWB.)B%xgeX PK:wC]I0UH[ VR EҟLJ1)#Ė$)'l;z7(CA\!6%uX)y$d1V"+(DS;[z83ؘpy(:lj#K>|V r~5|N΁Bf[ 4LlBO,ӱUJoӆK(DU`xhLfE>"y>GSʊOy+|ЊiZ=V٫\ v“1-84\ Nt$e/ f-AY ɔdr5.'L:tf ]C%\ nA2m8xS cNtpDt^m 3`uu3LKٸqJ}i& q9cE!:} M.кyѻxׁ+]|L/I6N`@30Kԝby@(_q__HAKӢ'X Y{=v6>ٱb8;1טpckO1LOZiuB)Ȱw~\eMʶ/Z8ŠMr0"q֤a>'Z[(LP endstream endobj 2414 0 obj << /Length 1599 /Filter /FlateDecode >> stream xYmo6_!, 1W췮MtX_bo"Ɏ[R$9KHڮ(Z;wzgϜGhJ: Gy? ٩HcM܁_a$`,t>N//߾y>8{씈>v&T"UuV r 3*Z5uEߘNK[;]lpeCàPH%Cڪ#ɨ3i&f&MGOkД6h?M4ka kApd/Gcoò9kxwJ@ %t {R# =/ pEw@(`C_.aIe*:GjihVHч a ¿D|LGmW !pbigC7!||-a1h4MŃ!A!3 Bu8l N=*g4]Ad9$xPăj ́Bdvũ@_K~'OW>x9B>Q$(J1& H7FZgx&Har V\` wʏu;-lbLw:z[TuW"!\i}Ts_a/[(r<'-JxnCJrDE' ;^Qf$a+> stream xYn6}߯hy#mAFtQ"q{Fjiim/#q833IbPɁOK֐rPJ(e8PѠSd>suw7j01P#-JnHpS%$aRIoEHL.Dq4.`dg2"< g<;i!?a B 3bŷH%̴h-U}'lzIG5U7*MȋB|Qq˘))ȎPR3+ ۘwL4JׄT#q hʜZ-d zLw-$`(Cns#ẅVbIn~Ox 0 H 0RU 0"ϑݍ < ӌHA&8,pVt `/̚%DgĨ ̰8B0G @A=3y`U, Yrr-&#{2.©+zT\\lo2Ԑzp˗7o~u\6*^\߆4r $҃x0/y~=}p^ݏvW*ݷ_?/?͏pQ8d`J #F>4#vHk< @Id<is]S&hijh a&IӤ4i>1rid4Djx6 nʇpS\ 7>QCBz&2YQnx'ơY7ڑ|OۋǼcXW@0wR$e;B,mIyps9c܍^Foh psGin8:1ˉCbÝp/1"40/-s,5dM۫O\̠ m=YLrL'bɫ1ξXv=P^i&jQhB&]w5iO9C9bHuոRli5uB,%p鋎˙8p!v{ N0gilcպ'XcS"W%,ia|pS' 7Xɻt<@ endstream endobj 2419 0 obj << /Length 814 /Filter /FlateDecode >> stream xn@y%Ξs&IJUU A vjwlCKؙg~N&<#1aPPŌ5JEV4"cr`qԑpNR@11@`TaP8"מ-AyI -?< ]j0t8k\027 Y+_:#2*\1 Jea)$t]tcԁqY[:r;1ƳG3YD 0< i"{{ ;iw;v2E :g/i\LcD۴3tތmҜȏkV\QKPZ,Ӹҥv//to+2l_<ƭe|䮟ܛqxh"ʬ4qysC+JH pY.oBLU"Cv޵vU4墼7k;he8M yAxv՗$(]$h6sU6O7]v5+tZj=Ȓ0GBB@-,ɀiՠk0]yO01#0,(Y %)Jf5qU;@OI0O( ϧdqӏ׫OëSp$/'හm8`qu-,˸u?(5mdVܦ꡹6GI 0;vr%PvfOókx5R O`*TIJk| endstream endobj 2423 0 obj << /Length 1455 /Filter /FlateDecode >> stream xڽXmo6_!,_df*JNK04]XYJ[?~GR%GNlGԤt|xXs{g“H`JaBkf}aֻﯓޛ N,B'&3KRK2,g["PaψLFChDJX:]>V/[1ϵiѥfF kƀMEÐn:QɚJIȤoȦ_D??g9Hb ;ӗMG:(%.b2 y B7-#{DRd(3K.&>uѩޭ $H@"N.K< *J N}Rx0s5j@ՈLYovnZ|Ƈfq*y/`GJ/>|4@Rg7g{.rdCJ O UNpe&q 33Q0,zm<M:B2+^fQ<'yj-%g`#f ճ WQL*%>̢0idAyTB T޵K[O ɷA*`!ق\s»LU!Bv"=U`7jZV}+пiQ\&灰LjM j)j>?J(/Ճ'm'Ln}ɾ6VʷթY6A%pjd* hQ %Вd %-f 9|ƊY\ 1?  yo08K'Ҧ#(ɋYGI+io45:O mۘblsIӽOŝcMZ ߚg#J^MHxPrW×B _V1:<3 E6#`)eg]/vX"0g X?yc_c]b 9RJcdoYbnڧҾyhW?sz2YPDY;#%<_D+#u'v%yI+MDͿGK? Ö:W ŅS}3RBn@c苆H~VrfpuC!؞ܗQ ͖@7|-3πDa̙WiVj3faTŒڝKM]]QqežĚWWʑiETC}%CߧѬ D5(LMHIr3r o_G˚<,k4k,Řo UefQ]K04Ov@Zћ'ulZM  n:A6N'M皎(- M{ =%&a#Omѣ)U]HF{kZcm}3Qu:{Apc 8_H endstream endobj 2427 0 obj << /Length 2614 /Filter /FlateDecode >> stream x[{oFߟh3~P9KW.DURoĥVnKj;3ҿ'$,0 J4syRu!N^n< `CHK}w?_y]o_QIFF{b^ƄH7tڣ:]e:*q>Q.K?7k OCCdv$YZ0VD)FF+f%յ<̻ӝؗHg{1![y|/jHuѳeLT(P D pqD]p jm8 *=*FgØ .cfB2T|eJ@dI)x]`0$xx`]M/Ĥ".eC__p ??b0`Ä}0Kħjz8=M3ҟl0/|ҷ;qu>ˋ'3c;Ƹ Iemw7rCvbp  Y--aUFdS,Qؙ68 ,_zjߤ*׺>!x>*~_1PHYּ$?E ÈGU#;YkdELۘbeBm7l?GܱǖIh? )mX%5Mצy$AnEn1nmz6/uB{(ugPڙBE+ҘB!_4 YWK(ݛV Aݐ؝&Qʘ6%5H0Nra~BI$?]Û5~L ñHos&#s>Ԉt\ϝaqM nxZ%e5/&jwMt0vib7夾MWlHÛҸ21 śGo%䜤$,J%u 9{0[(T= a肠:ûE.-@g/ziSPvj9t~٭m)ڛE%R* j(XBXnbM ׈h֛)۹ mh^(`8.ZOT)Sx/+ )Kg27}/,<ɋmO*l2 1$K(޴lh5 [a(=UsU (m4cc^ -V@5?UF,҅ K~̤uNiuw=/Cf\gJO&_C,F~aųF/Fc؞rG@[HI;( Uʾ DW.E1t`M%/K1B[T aѧu1]Bܪ}Fҝ]~B,IH za<LO~|`ČN]sq\+;bUY."* wH.Jn6!QsyJ`/<ҫ{_-o]yZy PfRGP|d< U 5x?[jSK64RaK򛈇(8d QL'~cԼ{nܞA#ޞt}ab("PM EpKiġ[OF(Xe<RA ^#m ٣v-mJl씉0\OGc"@b.hتڞ0eux0쟫60z*Qim +}EBEEdF=awA0=.  MQF ;ހsPK( ~@WBl?|tep9'WP̑jmmWHL.^`CB!q@[B@F3E$C],*APt(V~#.bIƇt0GDucN%Hnt4 6xCsdng/޹3mY;M'zcponҸ<-NGte7nFatюv4p~?:MY!c/CY ʐ8<=@^]_mJ|8=DvϿ}`-G ~pmsn3&;2OT[P^Ճ5"mt& is!*>!5la EE߆k~aM zpb?HhB_&U[{/c{*"um2.jE${Z endstream endobj 2432 0 obj << /Length 1141 /Filter /FlateDecode >> stream xڵV[s6~:FAکl l5aW@3=B`C;N: ssam7,!EĢ>| |WLK/3 -=]]aBl-J5jkԱ(Ѿ01IU53L/Xaو]rvmIJ( ,Ʒ,c VK37Pn6}aؾ\]KhM5KS(:FYCusB>\wNrSu^2)K;2UR$iݼ$b(2鐽d,S`Nn.6fZlM*O;:T,O]ɫ7lC1..' K~8q3J?<=ͺ Ww ߡCc^Gm|H]gMyuCꉁuo=YJ,KL|] pvu)}_/ _Cw/37}a uVHt,Q' j /LyGVslzDw>e"ꎬohm\ŸPI+kcQ7]^K0X##yzX jY["sVgU˸vE'xT+Y_oHof%%Xt2)Q8SY*M&I"Z]=?°@7D`uSn 0؄_궏<τ`q[n(3^l˲Jy/Z$IofVfTuo [fhcَ|>H@]1w |*4mjξ !/Da_0tʶ'o6əybe\̹s;ϓ;'w#B<x ;9pp}*0G>zmKhgգZʌՉ3q?Ђm.8c^>3{C,BѤiM"C捯g;gy^+rIGƉ?h쳄!?2wW2H FO`R<؞OJB>$9 hpۥ3Krd \*\J\G1iZ1`ygZX5ӃhuH)cF endstream endobj 2436 0 obj << /Length 2074 /Filter /FlateDecode >> stream xZ[o~#Hr.&[f+.v"Q2r()NR"eږo]$gFs9GHD3!*"?&pla\'NGeMOG&B1ӠŨ\,|(X?mu<^g$ثUHIkFȲrObܙ6PA@!ac5wqLjY-2LBFRsXÄ{ڵ$̈&ZXy_aEb;%iE>[obM@o;bK!m!Wb"H2\4?:$I zŬaOͬ[SF=Zg7]jNK.i}OeR|aaAITWH* ն'I&udӱʢJԪbuRɧbiʻEGqa@O; ځp,.*Miɲ) k.W@2^JAVfposJI:LkD:4lCAkɹ +θ#6Axqo< S诮<">ѧwPP\UB#VW)A=Aga6gǐlJіP}s'go{Nů(%^fRìEvrR7_z$wQ2ոi>Ϫ+9 &>O,fU XN8/?|Y:{;@ V 8Vl_C5uV .r.L󢏃l9ԬrA«y+!=.Gb3U([jeǹPEnbxk+~峋Zbow̠ 8H!xvkm25UoOOڶgP m&"4 .Vؑѵ}ՔZʖL*؟nynz6\\\.006kSSMDWS}US;OxXX+kmM!t c-(IX(ÓWc!Tж @J|(IU"4D_>BG'dz`i:T4R=y30%xn=ZM۞K7ФIzEPs*VOQ%~WPnVReZ&apx{ٵr'P }/n xPvĜwǴAy=*KX*`>yYѫeDjodn10 Iv+vJw hr蒒ۤC{i@湽X^Dval HB0LbjwNBx.U\7=!WA&egifqXDtm-$Kr DܬC}WS C^9Bubc0AaW2 3ζ]V-/D5A/hYK}Q18ߍڵ/:/N2)(@Gc'%}͂G~$VDԿSD)Z`!iIyC,APp2=nNCi'nBQAGiyl{T=Tb4rY[S z ='Ʒ{CPע\RNU%X} endstream endobj 2440 0 obj << /Length 1894 /Filter /FlateDecode >> stream xڵXYsH~ϯУ]DCay`C [\Z *ŖmmRes8cc((=}DSY^)kfnSGMU߬I6IE1ҫlng~ЯrY{7y(|lOjaWv9geUҾUX1*RS4-exZS&|^iI:IRiA68!(†-QR^r&>L; N@CgSZ>^T BRD b9FjE9x]@x›Px[`$hމD9 o P_rtVg΂è9cg^cq^#~,ZkBM6\WW @Xi]hb?8K/-8t H0! :tmI<28|&{BDG-#-ЕkTV3˖1IPBAcjrr1<|BLŇ% C |h8 Gc؄21t<9yk[QJm|:BYt L; s_ņչ6Eړ#RDRШC br`A|Xhj&=lRlͭ?u<*BOdbK'ЈO(̦OsI5ǍQ]R]\~eW7fW&bh^t=hbNye.(Ʃ]&`gdxYIO- WYBq(v-M }NtH*3AT bp@6! |ZeMriUV xC&)nUu ֎W׃>xt?p~q+ c@*<\ժ"tȾRoLTiQ6VSJo ~7UM_޳g//$#3kk!k teZN\5+0(DŽ/}k~]?iͳ̮E UdA"7CZg2QiC>(1(l@EEW.fQDp?+͉Uyv(\Z 3p-Os_4P ʶ}\Xv1%im\+n\髀nh#(n(7M`0 pMxoWwMh(wH4SioP}g`G'epL-(@K"PBhh"z0CAs+pㅝ RMaA4/64y lg)җ4Ht5l1*wNb'0n.X}cLWT>~G =O?ݷ)"?nb\,  \49 {ض@#'(YBD$K_ ClrW-^^7Z/aҒY-AVOWls|[)&֑p ):٧ ֨4$ endstream endobj 2444 0 obj << /Length 1289 /Filter /FlateDecode >> stream xXYs6~ׯ#Պ0;}pHct<$$Pd."cOL^awE>XZÿs+0Go.G*N0b{"Sk|j #-LB(7d%xQelg2ScʡUAL/_^QC`am\YoΦO4OGނA_ G>-bTk*E*ςưUǕ,r3)|w}N_5i]].!}rs_T4B1߀z)J|ȅ{` ZJ ׽~̮ۇax+~1tu,l,( 7M d2|l4ؓh4w(ycő#w`HƗ&SØ 1/XDzRtn]@+.OK\8'r(OFvI—')D|hg1]gK=}Ϯw"} m}- (ERBk+_8JO宊)H/bhQe^WE, MR&QhSCȪ(Ga? }bRwt e0(z2nz3lrX^~ \ZDɶw)lϹ~d|f#js9EcVM޽V2o2\U5=0ҹCHQ@qnWߕE]>#jSn&,_og>JY6/nʊ$dQHҎ@P1Ue-^K3KqKU4c>?FifbZǡAS~mQ];jRxҟlը*2ʓ2vhϿ:E\%uߺ]..j%!Zl+TuA ~V?B &QYM$\v=vMe2\Fa}w[> stream xX]oF}ࣴ5'&^IMb))nhJCQI}pHFX(3~c V?k6:0R*##" wg4x Hw(440d|b M1I"}: )'/QӘY+4#&_W7/F . .ڗikQDso QVEݟglviv?9_L;mw8v6ޏF}y,2VGꆞO޼l+3x;zpqs;7$QsZmi;S:)bnXy*YZ4Y2AuWjj~qwE<G‘./|rq<6eR:Kꯓd]w$z2+dNrwna~sR9}x=񋷿;:[˻jHfdJ)J=B *5e,`Aˑ#EH"B}v^9AKbM+XBu Qm1CYK̺$@z8>%5o%@sruNN}h, b w5u W*0.0NJ3VuZpt1a@J:,~Sutd1,$ S `e0+E]m: 8m ,JLEY3llפx 7ͭ#")XQ3 \mug9=nT#š +XZ3Y|eUu&m +{: 1b0UgbŝM8?'-g0CLw"2鵨zUǢOʧ WGاjA"(QQݓۮ1;ҫ ژ fMư$k4RQ sVK]T^hp~p٥*ƊiDݠ6a!b_qD> ӽ S Xš@zj^ CT"'," $XA<:Lҫ endstream endobj 2452 0 obj << /Length 1251 /Filter /FlateDecode >> stream xW[oJ~WHfkCV4UM `b$}_?^pT\tTޅogf<8ĹN`'Vr|.N9sS;w(qsGQG1Ϝ"*3ζUfjXe T8  (C qpSӇ(:b"&h H {p%U-Pq;1u- Dg0掯0"ab*qs}Y}ye}eZc)?5/,P"m&E-d:0.C8lF1VfEH`{Zn WӴvf9DX;O5*u8 8'8@4 i腂}pe} fW428 N ܆k$Ӟq5n>Ԗ.ɓ~Y?$U5) ku4:` Fm3ޮv RBz5CQ^ʦ(BM Π7Bѿ,'@_32KMNȦjI߶2Z&5`QC,FDcOY3xw0:ebƺa6k8(3tAg5I/֣ub$⸙~g`vz˔ekHAs{[=#FGߪ">2fLr=AK6LnLS!e˪hD"jeiQwghZbf_Uʗ6WByQ%eL,;Y~I-}o(1A[bm\S`xYZv~0@>#ms1' ̜ endstream endobj 2457 0 obj << /Length 767 /Filter /FlateDecode >> stream x͖o0Wp۸o[tHISNJ ҮDMEMSE6|DPVX(_>* !Agw4)k!̐bHqlQX+ף 'ɒWI"2z!Vgؤki iT`x1nO. qUgж"b y4>cRJ2Jl]G I{LoݞWerNj0j;sR_k~E,ųjֈגuY, i]ʔâzLwnhx5^^=T6n\5fY^,J(]8ӰL";LdsP7֖tw5LNB!5Y\OԺ"0M4GW',:45,ߛ,~L܁w916#>og$XJv%Mb(<(OnJSG3X}8[ ǓяÚXrm' +j9UX< Fog5οnOz=#DѢwsKP ːau֢y{op+-b2haIz&$|Ir%%ſa>MYd3vV~f2S@`:|o{+xyCE{mho;޲f G-6l[mls`,=Y{:ٞ>ivSn)Xsݙ>qdqci9q;b $9ڵ |#z endstream endobj 2461 0 obj << /Length 1419 /Filter /FlateDecode >> stream xXmSF_r{՝%&uLHg-MӝlɈb$˳Ϟ#%2ß%X*).^{Sc ޮ:xPꍦd 4x}°# ?Y]t{L  <̗8:=J.>$I!&8$z"L548O]teWյ$z Ci(j~>W.ahnrL$tfԘ8 C!3mȴx?<8G{v `RpAIUo%*(bHĖȇ.(̮L߽{jN!eӼ\)$q{x `"uI=(\oxOs"JX9&"}*f*Ij%[l{|6 /ҕ?Ї(ߝ~ {&k.S{eEE i-W&&l_Ef'y<Us$ګf˅qvzlz^EEgzlY eU8OgI|m &W)I)(cx{df҇-pXIbE`:Pq2gDqih,VdZ):ʏho Q$# !ʵom^(]"wnY0N(wbHE ̤:lm1Q84PK*vtMe0)')Lr|Ɣ1}=qژV`X!kwA $.$` QЫ n3f5ffQaunŽu ߍU? iITAnֺ( 0[z)-K'PpςVpll BnRBSXE"sw2S Yj@5MVɵxDB 5%!T\R5]jj;jSZKRʓBA Iiy0"dmG#KeC!uQ-{>R Ԭ))y)؆y>w%*Z" xZ$N14Ҵu P+$|YT3Qt!?ShmjM lh['ALD 83#/M1Zh÷&ζզ+ 8  0lO6 endstream endobj 2465 0 obj << /Length 2060 /Filter /FlateDecode >> stream xY[s~ϯУT\5RNC6lBlvkayPqZK2 gF%yj(f'xWxX"e$ yqR{{{/7ϓsNϖ(hc %٫ `h؛2+rvv}D?h䟞v4>$ބbĄRhPUJZ(b"m+0(m q_!w3xD_Rǯ0ӧF(d7ّ}$Mg}/V8+:fe˄DHF*e^;*- ܜp Cy?H20U{:/ϩ9 v30)IYt$dټwPО%^@hqqW:`ѐ]P>$P`T/Oiesը*ϊd4<9Q@PeO(G$n5x<+~q2#Hu≤&l~K`%Ԑܵz #R=sJx%%H06[-B8$}XIp{ }b bJ71F18d4?{sŐ^ aoRn;^$.RR 8F87b#`XS ˝3\ wn)xL.m}_VUZOC> stream xZsHBx [<6U)Dٲ%yHֈ%-(bYn$WeR&T!Va.5Ou+LhlFHA aI۳=_!lNFv l0ϖJR}T%p@+Bq+>d?1O眛4XAGTBhT^~z1h"ˎx~0 }!FŨ¨(nܱH;\ax *:֗Ld!B Pݷ@hr6g\D5PS}{sUМGtDT٢ \ da-փ 祼E=UWJt&venWYy__̟`۱4UH o"fBv62SƱ! =158W.>I%O$Eɞ~G'GIB>`~' BqxR!2Z%Ga2ڳI ҥ=6z w͕<Ĥ)}4W+wFfլs;KrT~dP\poy;X&~̠6Q*n^=c+tѤ>BׁIqEL$"P`P.\:Jf qO{orU_|i*UsLYeuuh@kʂ<[tp8 .ˇ2#̸6O1vmc~X˻A_FY c$GGTqx# DE[)%Αdԅ 0S()""r@R~+"9fM#MzgaƴgLÞZ*b[y Irr4tP"qh0<֣E!IK NBц51o hlZB`(+p$ƶKgC uc;pՓm9>} & :\HX⵱S` ' z`f\] bɠ8¡8WCe:vC["LgtێA<Đ6>V t| b]yeP04eI2吝pc - b6؄]K- Lԓ, -fA)+P:$ 4p I~32} ?A mGRJ[SqbCpm)Th8]&G-0 ihI;JBHAMn\(`菈4;-$EZz.n7;+)Bdl >cnf0eMic}|rGi@n j0Wfwf^K\1a8}!@$qxSd7Sg'>=?} g-P:C.Ϫ<8f&+ɤW??o rEq>̛u^Yޫl|=G".c]F莘Z*Ew) WR"Fd]dlkNriy޿(Vc-SG` F7'g/M%ճpָMͶk.!lTFb7__uuvs\Nj?_/CﻩRgO_beFP}V}W|S] !n6* <.:ʫ8f pTvhYzuo9f7źY?{Se^/Wyye+m٘oODgySUQ!xM)ν^=y (e{6m۳eQ0ͮs,뷕?]p Eb *Rh #pAx endstream endobj 2473 0 obj << /Length 2223 /Filter /FlateDecode >> stream xYs6_OMZ9$L'ZlIo)҆dM&#\]Xt _GeDJ5QTQG3 4z=8$)D*|q}~u7߿bjLO9ׄƑ.ql.ۻ:.]׺%8_UΓb|c)\{޿(OW&*!JHT q#\9& q|Av`Z;nPM#hez׀Yx=_*ahZ 덱fsxv/Y18hܗTT/0q`23Ae^gmR[[#%[{Nc[fے]}UD˷9͵"Ty;TE#ZHH v.JaI'*5 MrWYٲ-MS8ByDy)ĈT$4HHą9ACxe\CbPG4CHp Cl" Zjd2Nt#V8h0O'5I*CL%NSL9ܦ$.{) *$_)(V$bP"}b "{pN..em!̩!brJhj]h$3BV(SG}Vwٰ TFc/ gKX4*2Ot a/̀ {yL2bq2s0{ }+ل)neպYy禸-mhj}bO·k>_" tj\S$M<"Ywcѽ-(44ZTZ c\OmsO0U* 1ƠYHxkku$ vrJd!IшXa֥\o뼫 ]#ku_h!n^]Є,jPD$65Y\Xw;[^(P&ҳO7!(=4h0 t6c Mfs"i2t'qH{5IYj 46/^ N4nn6ArO&,$-)\`#O 0QOۖy7h*aSa_o2OgFGqדmTҿ-Wʮq먭DUjXt|n;`芠%'܏^Ay]XC!Uָw ƭc;PK1qt[JOVUwWQN6sQPsח9qyxM9  9H٢䊫mV/ܒS* 3_~sCVźW/ukM^ǘǨ)?v]G0WO+J!)_!׹/ E16d)$SM#S>4$S4}$k1Po@|鄡G}51ϡ,?/Oۛ9ȡjJt8z1S=$ 8,~rXUVx" \TD݃iRgtOY?!ơ鸵f*htH8^A+ NYJ<8&p&+2B~<=[&-ʢ-C=f8Y7 n&9b<lZo5zЈ(AtokFdB@q endstream endobj 2477 0 obj << /Length 979 /Filter /FlateDecode >> stream xX[8~_v"cLHZiZJ.}jc; ڌa0$\Vc;7c>Hah=8ES XP4>px QzX\U7"ʌI ?!5) p.o)]86WP;H*)༚X~Hݍ큞(9hC M_2O$jg];kbQAf]ZNXuEi*n*F%f1bƈ;Af#APe:$_ɽȯZپz?hMz 2||== pteox_B˅n"țۘ4|aZVۄ%lYȢDI*2dd)J c~(ᆙWw7LܔUV>%AƖ}Hn&F~'9_ /ɢ,Y:yal=FÝIDӬ\RwYQcU/:L\-٪ȸ["_&"[1rfK])9FM I endstream endobj 2482 0 obj << /Length 1705 /Filter /FlateDecode >> stream xRFДyjd@Ӑi!mF&ܘ]u0EGs`Ӡ 0D"2A^#}I|;Z'oG-/we!8tMO\G<h gkZvBBV=jI֧>HR{y|3ݗ9*Nb ~Vh֪YT"n"Qrٴ$՜٧0^j@5B}z:HJ':Kg =-鑑{EޣMLePS= ]G? Հ\íU g]F mlQDb#,pʗ x0 {f mE<hG;`" )㸋v':ڏ|2hp d 7ż?|$p ԕ\:UP.K,yVj_OE~ob>sbB4dƞ:ާ&ł֜ ܇$CqFxۖCcU)eb܈oHt3tD$gS{:/G۸y%`J 7ޔprVԦn{ȞFr߸!c2$SeP-(PgQ㟿y>C@pblDP$nA(c-3HWZW6l-اxGPԵؾ?A6mIb h$nG9OXh,K/s g7E#a|mԪ4Un.2{h;w/$ 2peq}8-3BRq#ͨab'sЄ6'5QF/uAYᦗ8b৳I^kj9vt[O I+括fhM3P)Dvszp|qҋYx)褫$X-YL/Fe3`㵃UUK;N-ҥܿy78<7q'extq1uxӰ WۡѻЮ1~2$.ZTOL i(Pn -=L1>KqMrĵ7Fp'ת]+a6ȠSKDkŋjԒڥ}Kq2_cQ Pkt],rdT EVێ  Uϫb:(LPT1Q^o6O ӮZy^ٰ>ёT\i 7,1'pθ8p2$!kVX0vLxB>+yw5;-8%ڔ2On9js'5z[(2O2sc( |>23YQB7$bP3 de(Z.gO endstream endobj 2486 0 obj << /Length 1209 /Filter /FlateDecode >> stream xW[o6~У ,)\&ڤ3`k@[-L\]i}0r2wqb:Zu7ݔu_T5 { 1K'?Mg {SrO33%h<k( _?0ҟ8=<וĢ"qKʽ1֗,$!s xDPa<ѹ QE1܂n3QtW}֔ Ҕ;#o mO5.DGYa筮:tG{3 4]Zהyu7 '+i_{>[tw7?Kn*TY3{ AmK{S?*KBxd~G _QHGbnn endstream endobj 2490 0 obj << /Length 1021 /Filter /FlateDecode >> stream xVo6~_G R#oYjw$CYPRQGVɰCP<){}K*G$,# %)ȇ GF֟wM*wG[՝%j+/ܩ`̸zJ v;ф%> stream xV]o6}УT,?DI[ک3immAX>JN]R, 0Ds%սC;]9Ꮛqő GIg|a0"_! Ωl:ÈS;_B<ݺˢnv糈`^eҎE)W /fGcr~~ 1 G -RU;+j Ox!;߶j*-jc%ئmMS28|}Z~N7ά;:5Ll_@(8$#nWey4rvu(^ >$Xf4LZ2kߦjj'd-UMmD}Sg6Tc3kvִ/Ṷ̏EeʋGmE84ؾ~M)Uq) Yј0>o-dL.iߓ,j y脸R^?dؽ鶐 $ISr#3{FB0T8L qW|GSF8|x*Tp;%T#AiWT}iL3Ğ1,؇OI\Uhfۤ`c%U,Zz?h+7syNhj}.UiYʲh5: tBz͓Gt @4`NV;~N@1GcU9, bv~~Zeë=E7l4ëL+ }nQԹRפZIau3;%-fݩsB 2w0Xu㎣zw-۷Fwu[ W0`kjmљ<:ۻ *bJ xu/ѧ5$4hcb#ZxZf r]9.{X[5E8.vEe 'Pv:GŠ<ȲmѼ$n> stream xYKs6W(5&:tj;N@K)E夗.P$ePI$b#{Wq,CG8aw; 珓gAsMn=I=0i2> $" }B(2Yg>bYGCc\ˡ[A ?M޾<#`ϧ! Csbrz}6 xH\5l+HRD"E{8ZL2dL0oLw?>?6e6W֔E>[DI'Xpp5rp|})ටA`rޑ,[/nvk>_,xZ,h0x5|:!Xo+bLpuCz2?_أvWDuЭvuTQDXX *|X1 =GK+ S]TwQMk MF._k4ƱRO^Uw*ݚ 0jF=]`:zxryȓ"xf:HRH1fM{:Rq1T@J*'`bШ?WR /`:Щ7>xCʘh!eACʊh'Jɬ" +Ÿas'mNiTڀ٧jGS/x^DݬHGI5@CM<4JIhX-KNI`g=Fb\Cl9jߵ,]jđ#p`OP+G;]]Ư4rӠ;\=MlWpHv&)>! kOm|1 AwO\Jg\G%=+SmA#3j +v({OlQg() u|Q?D|~E3M6˵Q]^AU}AGl<3bUCH] )(k7gtzeO\}F» F˛TL^_#4V (D'썏{ܫBE={(0zR! {?ͯ_Oj[~`~!C DAY ; endstream endobj 2502 0 obj << /Length 1256 /Filter /FlateDecode >> stream xWYSF~УTeshtF$bS}بJyeӭl$Ez>?ŬEO>|+p%VGAZ_ɥ,H(%sHͬ/O΀1.eNy^y=cGbvs0{v_cba6c=3ҭ8QҪq. F?^ڿ9߳U3uOrwrQJ'[,v$`„f~h B`ePρ'JHge uA< huaM?ѵ)R, 5U)>e%Lb㶢{èjfȷDPfMޗoԚ>?j DeRkt] i{-iyfv-uMA[Y?y_<+#) MwflYC_:$;Djh%i UQbyO =;84c BCUyeGYŏ}Yx]/[IqH+\2i7]TvwbVMgHeC0KP;5q5(ƣ(bp^#0D5ھځ$_!F!0L^U-YpJŦ~8H +ʲ;?2ICg>h( = endstream endobj 2416 0 obj << /Type /ObjStm /N 100 /First 963 /Length 1429 /Filter /FlateDecode >> stream xZMo7 /?Dȡ r+9 rEQ G9N<Ŧv(Jz8͔r!S!I1,q([(Lr 55PáI] A,ﬤsdbm!Kc^*I%$"^ BAL;<76DFѐb 0j Al.Q zBNm%l5j \] d Ҵ`[#GKPXBPOĚ>CU|v}!Unj1S5Zj€U'Cğq4è/e?%pv $nU(k$` f0h)}ԚcGs&c c81'!$PόAB2n, O$uT|+58HL `E 5@`aYg)MJŲkT RO |ĝzTrP 9k2Dr=D.QTp c l\ A&6 V1dJ)ya&iO#$nUghΆ~Q5#t7aq⍦GP%񗑻RFO?\p^Ux#9GO)mO>^/?~*62Rzo>YixrZoڀoĜӻwsxVsY0p'6=z<}w " tmBQq}9Bz4yʹ<3%Pd6Z2R\ƸNLh>3MHi;<)rL^qޅ{ݴw> Q/?^t<H*1=}v4 XF W&Mvh4%f*cFw37-zӴN`cKf}LuÁ />OlNu9hI]i̡vȴo|>y$e W{ wiZuzNRj7֬u^) 7>g3y.*mbU~z^M] G{5Фu;Mj5LrF^`F{M3EJeRWxgdfm,?^.QXKVcNB9Ղ^sEJu|'!O endstream endobj 2507 0 obj << /Length 1138 /Filter /FlateDecode >> stream xW[o6~ X )R"`it$CŒm~$ˎ22aRw<Q[#/KHrITb~D@f1:Q}u"FA¦E>XS*6kӢt±̈́k}$.ZF2Iӱ҈' DǟW'K Ol]/wcɬ#Z0UQ\,l*AU`Ym-תcU6㉊%jkG|:n˪McRVY*]/Nn0@]iݎM!jGH1o TU<͘?13 LƕhY*_IcQC PfbN VI%ɰm!)h|6f䓴X% m>* .iѺ4@!7WCvГVQW59͡C#n6u`iSPU' D4_ge|AE gA|Ym^R-VLڅֻzm+CUz1nSD`7*(*!aԅrн8< 4xbo#Z *S9v&3wfs[ϳP]¶GꗋxT:>ClA!É̗Z*C90h>z.w9`]Qr`lw+}%jqPƋrV3 36(EX1M& /¬ϋ Y"H_E q=LO2sq RuhqY?2͏b;: }~dˏڜC8:;:ICޑ~WIDMנCn1.O7U ChU\>&Ek|]pS"{}̎oZoauRYP7.) endstream endobj 2512 0 obj << /Length 1249 /Filter /FlateDecode >> stream xW[oJ~X^XyI稹T:j@` aI.7;ҴQٙoA{95R?9 -,b/\(qg\M({ONljPjyB0ÿ3f8Xt,JR&<ɪta~%mJ}'p:t֝G@Ng'`#EGĘsf ~Vdrh\xy ЊsB[*Epj2,gul:<@ϛE]P?T(6&1%*3RZ!4]3ys'ZY!9*HgbdhaQO ktnlÜ3D-[tfQe!KMJmW/E (>^~^aBSpnZ9y\ٶ]!g||Xm`[kW_+}w iQ-)ڪm ҟ|PS\9OpGɗoĈ@xQim c$zr̎Ήmyiwt Pwo[3k:Ay:~^ b[67YkC5gNm*q wG6i+v߬b55xnntʎȄ endstream endobj 2516 0 obj << /Length 1777 /Filter /FlateDecode >> stream xXYsH~ϯУRs. (H [bˉ@$o!LWv 3-"?*$JTp0 CV@2ɯȓ{[f*bbYjriz&BJm`VXͷ'v?D|sͅz5sƋ:VޞUE!Db4z03 ) }]䩼mtiPi71!B< xxa!lZ[5U;Є^!)INn>IDqSa>Ħjn!PI6 (aTfa` #H(v-APސ̝7}mS0;MYp9)a*vT 63uJ_:WZMQ6)g&Q>7Ɯi/c QpI2 #nZʽLO`vu sߚ{r@AIMPY;~~q> endstream endobj 2520 0 obj << /Length 1175 /Filter /FlateDecode >> stream xV]o6}ϯd f!R޲ҢM;dҥ$/ͯ۱lÆ!H{E$HEx."Qp4K"#C=8<9:H`DH$È,w 9RϖE_'0ē^ɅܹRf؛zryԟ!| DU43c36Jɽahz2V-!e[MHF/z9~On~siPZ9Tu$2;[S1/w@\q*A"EgQ<G3XBF,Ϣ?2JG<sN<cPNDcJwWXw)ؙRgr%Jd(>b&uLnNгh[Y m{_>bIKu;:vXT 4\NNn'090?ѩPk:,;Ps9,1vv4~%4|XJƈ%lb0e/lqlJaJQc׶,T(Uu{PXO/0Ygׇz/`19u\Boo%Cec_gz H rBnI6vawY̕lқE"Y8(VA<{}NqB3 JN3W\NSb)Sģ';0te*< =;( X+7;V?za^우Ƣm gaU e(}DԪ3gfي r.͡XƦ }n+sNvE4 떯PW?WBؖ$beR#GY!l endstream endobj 2524 0 obj << /Length 1184 /Filter /FlateDecode >> stream xVn6}WQ,WQ\4:E7Y[Y{yPljK^]w(9j@[)z8s83gf! K""!1a$P0 Hлc<8R Q5 _,R0$SVi"Rq_$}f>53&P;wں^6a |ް oD>G>eO҈VĩBk95?LľҋnOֱhby+N,_ y0%7EǠy?p(h Ln(ca2?靃|yJ(VLd/ %i a#@;vVUR%9ׇY[mb&EY?ګ3s- s{]egzc:‚s0 Yէ?{\ K8 }sx*qbJxv|r\2=OX2[YRqt4 ԕx iZJ溼.U*!Xq mb.3-rlt4x@o9;t>M{&:oGj*jh,O !$B_wQvS9bI zMShՖ#^>_C8ԛe:+r+܎f"3u#j SA@έXsL󹄄i|]!b}:E)QO)z9cم3DB_eB#.30 {5Ad@dpgp;|X `/E!wp[ƒ/#p S0pDa6 a6e;PѹR1O2 endstream endobj 2528 0 obj << /Length 1013 /Filter /FlateDecode >> stream xW[sF~W4Ej634 1H.=+ra&0vWgΞzDO K!1~ P! HлϷQb D IHQ4!>K%蓓%8o\O2\ &vU,fyf]r,EhUS+]tӢVdܡzf66IfFwMI@VΝs9ƯrηP-2e3tLpeJ %;G" ),0tY~VPAʮ-:铞)⼭mq] Qxm72М8Te%e[MBBϰr;W bY.5flLvl[A$t(vO̡A|BXF w Dh"6?j Meff..XH܋K볭kf@s7HoA  endstream endobj 2533 0 obj << /Length 1099 /Filter /FlateDecode >> stream xڭVmo6_OD _DQ>eӺÒV MQ(2 $~w[%C;Ü;?+" hg|Qpdt|01Kɝd((AM*xq=_0j6J7TY՚L[<_ϗvs%#$!<$1è^D=kr^$SG7 GQ$Q\9>H,TmL"rDpzyɚǵzdUtKnj֤-j7P LM皡Pt ,ZjV{]}B2v=^i7u_i^va">U>tqΦdryqb8gmtn(P ~w*c*mnVjtNM=-V(-=fݣ %pfXvR3,/>4If Om9ӑ܇"Do)k?q'>ggRk t6ڻZm)7F[azh"Y|U yQO a2K.xDBh,eӵWV +a?nKq26b݌c8s'+FPgvxD> stream xV[o6~X "YtN$E٦aʒPl+bCa0 ^t;w~A}[!?), i!10h> v?ήEHJ%R )NC{ SNR&/d\Iw"4qte@҈eD@R#Q{ AXkģɕw3]gl>FX1FqCTu[͊*ӬY;Rlc=㛻PVjWʻ\e<" "wyJ,)l(cHaaU)XAgRlS5X;3/bnO-Shz9ۛsw'f !vf КSuMYr6IQYt)ѭu| YِHK/qbV'k4;6>whHoYj&F4Tr+'`N%k ČV6-D{AA\3X!E2:RƘ7냥).\O_@ p~!{֍euɚeY}Ƹ ~. *5[kZ>-cs0u7bKa2LBڪu/U}*G: ]бQA98+ EիIܛ6 n OFi|;%$Tit\'Y#*7Ĭ] n25Ҭgh(EJ( ׃WbiZ# ZÉ~'D#zawV'~kvkYL"%wԠIY:ޟ&l۩1әbfqu˛:8 T1,qQ`}tE;$} H`y}Sun> stream xVn@}+і`W:o4N*ɃCLc 1v}g;@H$Ҫٙ3gfp '$# >:4T3c JSH1h0pdi5FhBN1'#հ)#Wqgx4GC&t^g% eEt^oI)>q~|Q+%O Z)kCp14k/q?(o⁥,PUΗJ{luYӮ2p Xڊoig&AtNΠ[]ۏ:ѧ٫+4"8n6G+XhvetpvejxAs@fp DZfM7ΔMJptrIo *ȣ@] ﵠ[%rvs9)$}7F0l7`b1Jȅ;RU.̾BBK,SBЏ]×+=(ޤ_8̟ҍx_816VjQscZ?y-~ U%_N_俤 8+[U!(*l7 &[РFmt endstream endobj 2545 0 obj << /Length 707 /Filter /FlateDecode >> stream xՔn0t$;u[UOj{Ұ m߾Z`AJZ !; #" ?h6(]8):z^W2 (!͑(Xޡ+  b 5Ut0d]OQj#9DQ@!7^% X"Opd`3NN]nA]-36*hAViZ`IYyge3*&u骤Ewz~]0vx߃ff!kee#km$N"O١2VeVJo:u;~<읝"zqMh`lI9.8gpHBjN!q GlBeil'WItRc!"5|+;]F +,M%mf`2'[+FRGwn~goY\wȎ5(o'ypyrN't ! Rh8qn(3D<.&H  ܑJ ;w捹 7`2&[<# O$k;I)FQL9D( (ÚAeہn7kqn81saZBNư7Y7Pُjb} Y4o endstream endobj 2549 0 obj << /Length 1626 /Filter /FlateDecode >> stream xڽXsF~_Gy}':<ӆbәxPl%Ԗ,_]dK&H:} Xp y@៊ QXXʠHC陴$1 &7pK:0&*LCU]*")쳻OH9ފH7d(;w|HzU#w.Cnk,X7h|ryzr~{K7֙ev?`(@(!s"e׉ |>S}SJ8,3܆t0d!BB]7&%J5+y>U;O'<ʫ᨝Lgn[^$yrJf^qhrYYYE f0ySmp7MacdDi" 2 0Hf@VxY=eƖ-鮌0*l&˳1n081L"KL*Mo[RT̖ycBhe4cڈ_CIR>PIf @1I=dPEH'Py:PIe?/v|\մ !5 vbu8tgHU>K\Y5 .אHρTv/ۡs$͏I>kIB]1|>pf>W3#ci0ؐ{eZ,},%R% &d6O)#$˰`sv, O9KsVu3zX=3%wSNuf eq `dMBx.ob;jg٢d lA6=r?ۛ@.n3jI \c~' '!p.rrjs>ГM56ubwؼT|{Ў cZ}&Owiz \72Bv#ʐU 1yu!rC=ዞygFPdvG ,w*F,T5JZ9q7m:"1H7ztCoFIG׸CIݥ[s ^'Cd"$^!z>٩>gF}Z}EOȄ=1Si\ra",/ש89CYV$!{@eUvk:P0r<;ʋ(}H-n;NCN ̂Z#Sz`O endstream endobj 2553 0 obj << /Length 1398 /Filter /FlateDecode >> stream xW_s8ϧ3Ib7RP 7sJjFJ;qhဧd%~W6,QyqgqIw# {yE{'[h̼(2>uY3?Oe~]qY\"*K+K7"W%\L$O h3%babMJbWiaTfkpC΅.ρ}hŷ=NoĀPG ",wh cd1+JFG vNݑUP{R0I|ZQq9¢[(1]# S=-t!)!]1qS;W΍ƒ7 H@ǧ0'J6`Ң0 1 DܴZO,K=հ0z7T,kG9i}Yײۘ'JwHݦ7-JiBŅ7 2b 7w!ęӛQB@ݩۢu JʮiU]nM*쬊\荱qpE-. x2ۡzUߦ۝'hϡ*7t/xa֣Co~ ׌Gw@k}XmG>b/}PpmEwx1u Ie AܐN &lUhQ6r"/H Whs#Lݗ˫b3F}VlZ1DiaҘUONNldC&k> stream xXr6}WXd:rtdA!D:$AJ Yt<Ar=8$:) ($*\ ̥Iei N^ 6$ME0(K>gE괶ո^JWqg~*?$t\eNr2z (0"MQ!:N{v}w?*[^Sּ3bȋ-+哺ΎO1GOx &eUY'3ҹJ\PE3vp4>)3 _`«E/̶ e‹_`s㺜/,zI l1v Li4 iF/9i$$)M6HaLG$o8Ftu3Βi+e ntˢ f^I  4Y#n0(D7@P;]JNTpHdDB)Rlc1/ `[pz^Q!p(rEˇclhR4h$f*qRqq7RKxOZxnF{s&ĠŐb ql&PƳnM:`ى\`+S!t'qH(ؑ?aaAұ!LBw3j tʸAI"pIvFXD!M!%nlpD]q;C]zv~1Q@5@^]ծ۪ <:hw(N%6m~e+S4ڧN@j TaX?L pY/oH,67,L ݕӸB s}+I^_o "/gr~So&,gu~=m}u(J̝(]ط]tdYمܷ賟cJhZ[01דmEHmUM{Q@y)B||m4n6뵃I] {(^D5v ٍP~L]x1%1&ry d-bVF!qK乷bgƐ5Ǘ wQbx]zO*F"iVxA'\ElV($ovw5 E)2Pӵ.a;z[Q6H;dI~Hd6hB"9ޙ#A\P9K²{aO; |`pKaHNm B}N $(NٻJ~?ޝk0.#$Ieǵthk;-],zǫogQΛ<'ݞG4)wG[ʎwLFXt0\ HlEH1QFTr8CZW<;$Sޔa&ߟ3 ĸCSקha%ttv48?itdpXRTA[,V kmqֶTeX.Ze6fntwS'M?{黏#@xNJ_sH(|8KC1v~3ϮqzՙnE9n]@v%I?0u`xr~~Y?@qx6YCvGnڃ.{5y9 ݹsSՍ \N"^ m}ޜ7wOiDNU >Ԫݱ7v8Oř$ SS5uWj>IXВ߳Q5uE*$DXEKXk;a(vj9^к;' F\*> endstream endobj 2562 0 obj << /Length 768 /Filter /FlateDecode >> stream xՔmO0Se":c-ІIEH\}c>)\|9 }1ObtzM :~n('Rvn R?3 SÈRP!MU{Rjۂ<8!/TS\A?yo{]NZ='w+%_ :gu7/$߀6LH,Gޝ&SQ!*:*E{G}nי$OYҠҥB`!͂r`報զ:%cݥ_f 9+zvKĻ1L`OJy,-b1ΰo"#CVe^M,/xbw'v`y.ga`,_e|4/y endstream endobj 2566 0 obj << /Length 794 /Filter /FlateDecode >> stream xŖO0Wё8vxc]:i0iBBD$-sBTE;i1t *Tit Bʠ:Q0a|!EF 38R Nq,0xxJA}> stream xVO0~_GƎm@:i00ib<-α&"iڜw-"h(zHI4CW @ηϓdp4\(hP2C0 8%6%9gt:L./ј.~.fr /p}/\#Nkx!P̺ ,zVժLV٩⮩ U/3%^?׏D8C# p5u'G`/2Gh54da%̭,EmueVL6D.!O&#YҦ6>NreYŎ^>cr@I()\]JCc}|]ș\ˆFaaI 8-E9EC[T> stream xW[oH~WX-ӹz<Цeހ]j`l `S%m]oeE&HH*BeITh> (Rp}=K#F)K9҂N}0i!c\*" Uy!Jj Mz ^ di(cؕQba6% a~>HW:K2(hѐ vwU:+ POȆui`؃l4{9~߼L8+,Mcm<}q.ɇ6햔kBM/bt:7sw "7/m0&Zh6nM^z1aMiWJD̸BMXpN>ɬ/vE8s_+nDEB;H aƠզ\fz!>GD@-ZV/`]N(> stream xVR0+zX̮3@It~@rBtQLk͹ҹsD5|P|D( RI|(Uـ'WhĒI$96Rtv=ig{}r,1J 23d{;ݣpz0Ƨ'ևM8IL~lzs*&+}1|,w傋S¯r{^uutjR]Y.qSe?ì-&+ pvD(]KI-x AZOit:EnxJǍ dehMqdžW0 hKŀP|p~IP PKC:T|@YDQC!XD ɰN`X 94sٳ)*}->%dóJŠJ{$NFS˒jZ :ew-sOd)}WuȱKoL ѷer+$8ѯ7 endstream endobj 2583 0 obj << /Length 1218 /Filter /FlateDecode >> stream xX[8~W1N.!̀a= BҮFCs@={#2QXBb"b-Pa} $ۨFPD)Ndh4A! 4oT0ɠ/BNM -0JwDr]d}UIBXŀ' r~}x}( IULP"qzFۛPmtpݿL<S(b Nj}_,,bSY_Cǰ?\tUu/YnXW)߻zHc# Ϯwhӕ2Iu:4+H#An8[VpIC7) 'u9 m֞z5v95nol&qd*hZNʐ^/t^On{ \bLS< ]% EivނJZE*ۭͣloKcs*Ye&l型tl`.!q>>խZ. jUտӴXMkޏЄZDc-z߾4}b̡ 9G"x++w|U34$>)#/Ýă;pI%֏˼~kӲ^{HEWce0&{c`a ,j5蠱W`Q6K0gyv: &&Hbxoe $Ah=cg0RIIIbuH.mtGZU-NVTzt1DD+:TSrȸCZvx&x?,lO+ȾlMW)-a8&^5' ͋9ԸHVhu"ng҈ 9`Do5HH>_ aX|PuuB靥JO :+0 cL-S F#dFH`[|DTُc8X*u@7(x7?"Wg.SpBꮗo50jtLT9M endstream endobj 2587 0 obj << /Length 802 /Filter /FlateDecode >> stream xVMS0W(O΍BBĦ%x8aﻲ:LF}z>(CT:(PuEΟq'bJqϐH J8St5aڌq ?IafymFe>1{/IMk+J:YH:O=H( ilbڂ%C?Þ|v; ~E5js|i]eY$Sg@{֠|'MԍF9r]X,Q8t&ޱ<Wpu_İ$T< <3/&h7k㖩ɓQ<@3ζM܌Rkfbx}_ׯH_v֍N98'dׄŒxA{ |l{\zߢ..QM!~cn@l^U3<)6u4X<+Hff9\.qunv1 9R*lE]TsƭNiat? 隽RYoM i/USZ,RmUSQMYVC5+PS5To dϲr_8Rl;LYp26y $עZhifnSzg9JSgL@@T*V۪+0{pBj6Bj.5* ! UfA. o,a&z*`3 endstream endobj 2509 0 obj << /Type /ObjStm /N 100 /First 983 /Length 1384 /Filter /FlateDecode >> stream xXMo7 W̊IQCV psh$@`vfgwo $RQ!$E@dSRr(l.cͅ$D-GJ( i)5fj JN(冂T25K>A+[`,`&)$qP8mk"c"P td(!$?/c+&?s IUv$~@h+dP .6288C].$vsdq`wiI;#C2[}zటI0k+_@";|,5[TC BBX , MLcU' `+~6E8U#BILM2HzQ! #hxYl 7a" OJcC{V,C\+V҂9EilD0h4_#(%_ "5s[[2(#$qX˒^[Z)pXk !VvBV]*Tqa)SR 7^l~}\p߯/6ۯ߾|~m>r=*CK4X}`sÿz}? fR"քo??K`oE Gp aspܯrjqq~!1go=}kH7_n? @뫰y~`W}Q1:" ~JJuR^OtR*#`΀ #IcwyѱNK^Kc}ϓ=mk؃_1J̈=OiJ)Etkހe`R ܊Q䏣{nq>9tLS }q:ŜY̴twpN A9g᜺bNLe=ݝ_&@| 52}Pse7~οePI@ZN?6[y=I0wȊx. J9_$'zOX'l\70<:cuוg0i^jLgi=IgIEv;NǜNL(~Q&bLC$^1>hǟG>S38Fgn4vv(MݚdҾ{0N-S:vη(diI~>dJczJ;StF[Lgx_fSJZMi|L)' U#`7ZYSm,5Lj頖9'|Oh3jJ׳ pRAf~ٽ;fdc:nfbO endstream endobj 2592 0 obj << /Length 720 /Filter /FlateDecode >> stream xV]O0}c8AM48"iPω[h(մiSUC{εq3? ̏K91?`@+2@N_a1g@ ()vW.^\@bԭp\B}MGtIdZZ'Q|1_I}wlVy-AۻvÞ}9QFn|N>/F׷@:Pm ]~0<fbGn |l꽆C7cyib 91iV7b(\jUC,rjs zj3[ !ߕDCI|RzӞ*ʸc^wnٽknv?Ŏ^de>vY9gsnN>KcKg1!*mJkʒ&_|v$y6JSRq0߸7LN ȂZ;#Uq􋥓,]R(Ak@̑ mXk endstream endobj 2596 0 obj << /Length 1355 /Filter /FlateDecode >> stream xX[oH~W0g)IJIv>=s1`0 P̹|of_?I$T2P\ CŃBs !.q𜓀 AxHHI(Җ%vѬLJ2)_|^ 4Gxi;<<GĄA$B"]^ŽbUޑ3$V$ "i6Lmn~辎̇INS+aHMѸ7mp?/"ȗqk6QmH>e|`ڽ,-;Tt,sSgSGxi{R 3h\73߁:E("Y㓸 gږbeA\H9`sSc.BR]tH{f) rn{LdK cR430) r$(]uه97\ۿwcU(dagR>%?݀bȬʏ~]UbV7(! ֗o8s'b ~XIiF[HYEA1LA!D \2&IO>;x^|\^Ň`…jt`ܞ|A oIO#:d]C_-b$B:=dfRjy 6<[P|dD8w e`5¢|> stream xWKF W(2=nStEVHg$e7m9rIbyPǏIrN IN> $pp6 A<|< C!sV'fN̉Cލ}G) ]РO=ju.Fjꅄr&% EW݀bJcƩ]n wOY^ϯTK,v<0I@hIg FFV{Л3j,֭qDNmy#-F *պdz0HQoޭ~/Noq>{~"fE +ˮu3F U -~t*i"+@n X^##9ɐ!f}ث}ٔʚQ >@/sD.FldrWg 99xwy8S\UGgxcYb[Y-^^hx^b֧"k06; +^+X$s6V+~(s`HeZ >OYŴ7\Q]#ݷrQ hzi(z.Q] 5:$lkljY2 ,q9ɪ-pͦTז$oOMn=4aCH Scqb>f@.,ڎ\|8>M'ڊ*j#>6ZJ ǘr;0X,~],W{ ա\j/f o/z7&&)Ns,Y9>O硓*9dpFB="q$䃑p)oO uɀXroytC!Ujf=* ľVmy/lCbzdWqWU=hVK㙁e}˺Nxcpbڇ#W\^>ݝl6nP.;ΚtW^ dڿəSmO&A߰` Up$C ^J3q`"7ïST[tj([1@x`3n`S8*)mԡr<8"+zwd$UbtR]8!aL]: ;3Rkv3wu\3ytþm !|n<$aHIl~@H衜 7l endstream endobj 2604 0 obj << /Length 941 /Filter /FlateDecode >> stream xVmo6_`1|o^tΰ$CM9"ʥe;m( I>=w }4"i%$ aBf0AeGzWF`»u"r;X9X 13ۦ;Sr3uWQ}@̳ɗ mK(f(JCm>d.70|++e]^"GXTGL~d⁑UR\:fYX(ϏNPz6r<%g{d?aPib0D b4x endstream endobj 2609 0 obj << /Length 1265 /Filter /FlateDecode >> stream xW[o6~ , !K7lk;@D.,5ݿߡH% +;t'DD"'c%F##$&B B^== QcS!iNME/՛3*-$64)]~Du GyUe;i(wzǷs]4YR]WmۼܼrN>{Om^0 \vsk9jihIXy5R9\YvGq|(aD13˛xO$|OL*5C!D-HXg*C8ȉVairTe^0L?xyN* TkClDưw9$:ELā 8wJ==i2FA,ʷ:iʺʷ'=kndmMxc ح4XvPa1R8dx} $LPol:M,lkN9b"V=$><)'1Gd)4|7a xJ09Vrj CWo=?Wo`W aK B2ןmBFwm!24[nff囹% mٻp="T%ܾDֳ2@],o"gO9@PNmC&]ȞxG ,p_ogsã.t ܇Կоؙ ۠H?v{2`*&t;x>IS;e أ4y?宒*u7erUemOCw{7]ТN}=-o:7Kyk&mȒ?REɕ̮s@k2+5ZFߵHcʚ}yRI,TɋӋ6#YevQsWfUid=qm[0{-[ΠvAa\aMW #4}6y@Lo70Vܘ*4Pu-0l cc> stream xڵXYS8~WiS;6og&fح$ƣQ [¿n `- tw>qk0cp'H";p82b??}rc.O#`8 3kVZ滓S r#Ib"?+i.Z,ύM4ɚV^ܦF\rY}bx氰(8L^\oj<01sBʪ1,zZj[I$o #c7'PS5CzaE]ZdU +Nn m{-Rd/(ZY4S?rrc;B=P~ z1-8;9w00%dyp{T1vzFV|+TƝ* sa̍*=I8ե,! 7۪H77`oD,8OE߀5p%P~^\bjaO^hŶnjǴ.mbS<]]ye]szvz ZC\-Nrj]jUP1EޯW%  6/fQd]}:/~![L~C]qWk^[KYaCWsQJ J[kAq/K+*]L}xQM?J@`ڀ"dV WSlK3lQϊOeg>\KbcwVm?'ȵT;c? <lat2ۊrC/%6A jV8 ˹T!o FEJk6B ;T ($t+HzZ^xIt[5UEdZ  h:f6np=2_G(H劾@/NWܢƀT$ S4[_;G1y0$&%4d - GՑ)guz=U+QiP'crF8)#¤MpsX@ CѮuWf>Qk w M)NxKSqh .^ao#t0K&\";N1,LrMIQeR$8p[@UWU5ׂ0?J@fiL;yժ.SNUސlq|cUi P-6LfӇ%Z=cMEmpƍKEZmf %K 6LXbb2'RUwz؊(0GX=jQ7:4o!G9JSuOz:{#?y~YJ`Z,Tu6h2{&B >Z4  v[]#|/tׅF7a=|WhaS@mpuM2 0&عvv[NW&<,fnDl?v=(&rz:h#H;~&?n\[qަm:U!5PG4i S~<鱶-zHHtxv<7^vF d^lf^02Q endstream endobj 2617 0 obj << /Length 1030 /Filter /FlateDecode >> stream xVێ6}WQ*QOM-f(yJ-Jj|hM[,$3̜C}Dm5$D$N6݌"Aًۘ"Jq&C INu$ #JN݅"x to ׷^݄ 䨈75~X߽הdDPqYY/oÔ/Cō5*b7="dE <{jGj .q "!ф.qֺ~U)?]\GׇLj/Y/߾6peB$K\76tm1HnS~R[y@hD++dAB&/^7堞oUmUzP]S*(mʪ;5@il"IԺ -Cha"X)SpY b/Wd٠'k@9V |m~\o]X\(HQ.o| FHghw?4[ggaZ)1PQ 9sONF1I٣3E zINoջ!^> stream xXmo6_o1He,q:gXꀡ0זr(RdykCHǻy#Rß$X*).^xSA콪?{'!FO=I=00)x>>ݚUs@J/ "2 MYiAs^hG~v` HUq*1~C9/aYo;]3'ʑi-̢mHPIX\t=t6v(\Tviȱi>0yV9#ʩ~@8 zQKxX(v"蝮RG13obO=){HD'P y޻؛}*gsod"'!(LB!1I""i' Vϳbt3J/[ilf|'yrfb\ i+[7lbY 9Թr{|[ y8Z*[ղ ^w˵m8vUx2P뎔>|z*cy|N̼]'Bg~/yq΄YڅW^hH -iKFe%Qn\02s^@ %bbqא_B,_eF76dV7dLЌxwZ_ͮu'ae,j881DDsU5sjJh8R z/5^bsص˔ɨfPJ́W*YPUÔ3Q{:OΕ"4ҴFh-w@ɩX\" }SV"6jNuIlLx s%$sqyykI Na @R%!n5V7N R4:{8\>|vg XV 5QB['S#էjf6UM6kݺa a7!E%&Oz Գ 8z:.x$c02V/1 ĽdJCBwIo!ap޼a:f#spyݑK} w>vWJS2BudtOfݍθ=p9tZAdP+rpp]F'\]'3[a$'+Me^qG*[OȦ[j)qd5tҲ&jr=2g 7 g)Gmb 8S~7A uZyJU~NАp},2 ܟ-Lri п+z ٹ΅Q^P=*[)fɉ Ɇn/՘Ld]\slS!}T!JrZeu _ê)l>O ťR&u'f5OC;ږeX L@X}YQu{ ?\ >\6Kcl~;)үpSAP&[ endstream endobj 2625 0 obj << /Length 1920 /Filter /FlateDecode >> stream xkSF;BjO㞺S2i@J:>&MXS=$ӝd Natj߻{#%^zO ,@qv ^vן{F!7{za$~ttt.c 5z3rٓ{c ,|J 沨Ǿb\`IUerc'T߲ ?M!C7/xi\[x i^-Yu{{eYԠ eߧ$]88{~zfztr|DD#JCe_&Š (ӏ^Y48" SMX rrƒGO>  fR $AJ5|+qgQmG)QJD0pr F)I&:²SL܍I|[LB>Tx$;IN J&*bbN?t bjwvx!v\ui%_DH@. la>: w; Sf"b>rBEo|J 5ȕ;ܞܹS>z(ن*`NAwb EgZ yÞ9)(.9P-E%:o:e^1-qʂ֋jw>k+\ADEc_R̛Fݳ̋4-Dc]⪲k{y1fV}Z_Iyu[q6==G'AvV] /d˂P K)t+(4 ؒf2ځ{,5m뤊[C_.:`RΠx0Gcʫѹqe1WH(I/BM#=6dzjCkUe(l8v9=@J]\W!16c^Pm=y Ql˨kTnjk3,%j3lۘv|fЀA|sD9fٰ4aC^觟 ^׵aQ CmM QyY1բ+t` >yM7lSsvg -XWtQd㲫[4r?i'uǡֵG~>:sel|Kn Ř_bݸ0i?*4cg ߢ<.Rw9,q;}#̈́) и̲wρ7hw@egaLfÉnB!0pQM#w=Ɣ:@& 3gŲf}@Րl̠1CthJӃñb@B=?~vojyvTLs 4n&$觤OWL_!w6"bkÃ$[flFv"Y+K&2.yOf (dĆqPq"*"Y7WQ&5ϣ٢ ȝVWNKS}b%Pn'utΊ*o\ĸaHXT:g["?vO=U ٰ%.VˤΑIi.tH($U@t{|C I"m@Q t(5$LМ5U'=L :oB3%F,ͼDZ"Urs`Jr`a!ߙBED@V%f endstream endobj 2629 0 obj << /Length 2605 /Filter /FlateDecode >> stream x[o8B廘b#Kv[IXWwdK6e;lE)r8P#]8'B+"\jItra ~^^_^#""lHԻHCa9.W$F/qV8ҒlntԧdH ]8tuG8i+4LKOx\'yo+=ZR`mz ~YtFӛo_&yϲ~mAPm2dӲVr?iȖ /Fl%y~I! SppXݣoUvW@]dvQ%@5Qմ٧I`T!l 'E>.GSX X tGCM|ٟ5~љ\}dGX%1ɓbQ pz@P#/p~νbI ×vZP M%@kYז*Qb2w@ b4>LI9C% M5>CY!p=%Dſ!WHvM? qL|1CGI 4,(.BxQeѹj 1[1~-~-yrL[|?L8> XE,1ί8]48V /jf~\VSLAfX=eje}"D=Q 2XN(I50O H(QCeMAv:(MKp9ƨ"i g\U(ZCdd!!5JR edVCgMrq]k3@ d3೴'Tf2qqg"2ZB5SAĀ>ei!zF饝Wb5XnTs/!K؇&+]KN-%5i֦PD׹i:C$g05hp fO[9 rEPel/ϰ)$dSY V8;bm[ANpi3 ~eS2Q[1UPP-gD7:VE7sbZy]ΙKȹ=@;/̋=bmg~~OWaRFcRSX~0&nOk}>i[ =qzyg=|WnquZo=m3^\2GN4 u:M8^hw)]i-=rCI$8A=[֏T}4}yJiWcH sLc:k9~r{ 7c Br"|{mV^g(ҥA4jhߊi$Zd 4B(ha:E/V$e r` 0hj.%m:߷sl\z/ ֗4؊ ㋤(GXK)y:lw)qh.PUUbTS} ^f%s~ArE!iQ-lT[⹥' MYFm?} endstream endobj 2634 0 obj << /Length 1520 /Filter /FlateDecode >> stream xWYoF~#R=ܥ>:E.Y)i%!STjw$E>haX%gfvkyk?+"ӡ$4tU[yoO(Ryy~"dc${󕧸%͗_ɔ1.H'SJzU43$|xr%1Tp"tj~>hMoT}!IWޔsyl9_r_%ګ,GuadyZOr? e彺=4uͻLfg/5D4 `=H,.O*k4 LLRMh@ 2t| -gxnbϒ})sS'''-j61ٲOn'7^F8ϡ?st2@p z>2(W nE滬Y0F;2,bm7u.&,JZ ͨ7%ɷqS$MRe.lV-&Ylu h!Ѣ50Él ANiurY(} '}v~tvf~թ=QvX[Y |vzto' "W7}oB#(X$Ib' o1\zĊT) O1JBO9XBA+P(Z]D?9nZMZ'~19*bDQlBdA )F&"l TLTEI@=ZGߑRj#z#n=b`Q$_>9 N/! q%$ߢ>TOl uAqG|)[__sP2+^"‹D-`Ng^wy=DwKR,$VPKWG5$lLD&S-cIw}rY/[jW "j ݡ0b.ĆiF[qqϰ wfW|RC hFQx[ؽ½d Ԡ\䔄4>kvP7n-KCwbٸ7B=VCm:.5&VL W2½nہ Ȥ |Pӱ5P,q6l%m]v1"ǜШ36˱K a8Gؔ9].[U~MS衻l[┊{x볻2]fXgfaQ.'Lo '0APɇO[{E? ޳̻:y{Ǖ :1Ncn1T\ 'n뇇sňWuf-@AЭnfY` kE4fItiCgt2umtRy۔ލ͂pg 'p z$b0oԲª96U0,cJnvږiqVG(ۣ)i_v7ari#@Q1oDkWXH {|4 endstream endobj 2638 0 obj << /Length 2010 /Filter /FlateDecode >> stream xڭXKs۶WpIM-OH'iLcV;s!w(Ҧ(DJԣL`<&j#222(]0 QHL^}&`XjY0HD(rt4fTh R]9lj+ǸJ/fz/bU.po#5f(i4+B[{YzIy7cnĎ9'E^w7ד˫ϯGLu?k&?2qVn^ƕ[Ʋ4ҏKJ͓1NQ]HQI]{XEf刅[&E2!‚eXNx  aq~C;2YX3NeHeJk_= y%u~@/p C$rIXjz^@'FbJ`qjܭM͆y']XĠ6]q}ŀTE!x}1ƀ3-Aͬ!ruʆIHRC!_u+sx^%qȅh d vJ7(MVtw2z p1W8pO+sd_xw 0dX`.&`*@՚A"qɁ$uHa'@P-C%147 ^#uk}Z"9?VK8Wb6f+Л Y+t`K=e+Ɲi@%##fE͚SL!J"V)bC[!VGA鲬Q9.E`4\Fk?d,^J{Y4 /݉>-A#lpZ3DR (nZcޛ5FhlO=} T5_Dz grlO/'G K3L0-B_߇l1XB$Q_x[ZYs>>ܜ@D ,7êQ!&{m`߉O)A N╬I,(C(]c PLdІϥ"ilDY EA~bP=,[ģRO}ݙ(r,:X;}ZSͦe/-S*[oM?0^W2Ai^ `]%.a#m8x&17]^^}|y;on[k5]`I|#jZ_ 7?,)AEdXRx J12lU_P`5Ū:!6)#YH!|]]~\/[.N "_Ms"wCѰl"~:ϳ伄G|chJ_'~ l!Zoor> h7Obt|ۢb}tv7wvDu8_-Hk{օNѕ)ZޖkO2'5!)1WL 7컁mPi{{W@X֭x׌:{W&FI m72,ݩbEvԭ H192zAAIi6| endstream endobj 2642 0 obj << /Length 1510 /Filter /FlateDecode >> stream xXo6_GY~ Yti~k˩Kre(R0f}Xt'%"ßHXii.RJenG/vߦ'gDD'$.#E#0t}OIzs4g*嶘Вxxqg]bĨ P)(ܐpPRJY*Mh[Z&,%:ã4Ng"]XT)N|cQKEsZe";eui_yWw 03fO,S؎6q  ؽ Y8$v!C9Shqpn뻅3$9>A>|ށ ȷ27|&w6ܳ`:$RiYC'u(d'#Ht|iȧTl4DXPD!D7 fOlf!N )78i!SV$e8DC^k;T^ I=N ji7\@"{^#ͬC#ByKuTAҦ6n5%j(ɦ8=rMAjR#{ۇM!E$d} ,=DFR?|W<,{6͚ 5=Oഽ YU8)n.s1UDӄhvIF*uVNdWiQxGLYzЌN5?'o^[Oo.j_kaACc5CNM*OUK1+/_=oCȯBXH4`D+~1MLRi{}_8UA@zu9 ˤVޟe`b#D7i@wّfiO(7fd-yMpɪQ{ۃ؋@doOy? _RcAhmdA XdSeVnoˬ[t؇iV 0e:a1󺬇y[7xgD!?+`~YVw"#IeH̓ W[ uo{J^^;՟'oPƒ@ A~#s| x\o槴`hd^}s vb~ 405fͬ$ܘsDO@9xS{P&!+x/;EtSkԞdUj_loje) f!bҍ;rQ00Y#l+%_ڭx]w-șn 9J*Do]n=um⤇';\IISў uK,K;I$D~?w2qIh˅锡YΪw-ע 32ݢr,M= v3S Ypm endstream endobj 2646 0 obj << /Length 1822 /Filter /FlateDecode >> stream xY[WH ~Wo΁L>c}h)tB ^N8nP_8.ǗȒF'i4\ 0H!Va.5$ow0e}}>y|I@h((F}x0$py12&e2^|lj{>Jg`(0v"G1|z|bF DGNhYl@uxpo>=\RTC t|* v6FlM>$nzy7z|nXᛁRᳳgAI&KqRw.ISw闸R,#ҬH.Z'a=2}j+幵q.#OY_IVt9@Y*kW<)VyLӗxJ ~%}c #/>8=w/ \b~*J7Q>iw +ʱ\{o cQCx&<_4IR񓣡"P(Rؒp# EJ2}KePB O$GJD¸yVYhm| 9(@lƠWF荂#(lcC UD3OEJ^CX*'>Ni^S !H.!'H MM:KhgHnliihiCR7Um^NǮvZ&ކ7f;\'D@Љb N8YX@Y3:j7k& tFyVA) hB \ePš n Ueg6܁AjvTh])-A 4e թ 4wzUۨ<p &VKfXmMaM2 ڤ1[qz7Puu)QQ!_q]`Jv`wuBi6i>^L7> stream xXYsF~ׯ@ޠ8pǖ9#Uv`Cơ%}g$Ai٤TLO7_O.2[f3DQcMf"Tj+fٯG ir}i|QDz,+#(Qxϟ^<;?{7>{W^0mO7:̟][6#T^xI1*<^Ϻ夭Vjފenpj9= H p.%ʿ W!Po"t"1b VԢahjFI\wI.doðXlUe(mj pjM4NQr&{'h$DوQ, EZCj|I\{0ƈi?ƃ~728J1Q:9"oQQ.2$)1N夫&^ Ӕ0c4lKӇS.hN,=#J6JaSۈ戳q} 0ka NG'/q- -ȻUd k\$ [H(5/bp~ ?]ߞ6;j)Ƣ.!X;UXvE}.8"!^|]P^MYՏc]] E"oyW6']}"lȹGPT󪽏c>.;lq:9poB=JЏؕH ᓊA9 rA> stream xWmoFί؏7k~Hr%^rTN XClYm0qHrUE~avgv?" 4Deb4G{ z};QPΑs4'Xp=_›f%!ޏ,NxşIZ S^ņSz}zz[$i[ka*9\q96<.0WY+n<-sytջB ~AKXpwK4}t2ʰa+-t )N^IIЫ fNZYWPz Xd䏯;M|f8Vgig:#` z2"}ɤwɒepwHr .9{N%Npv@\ <8LS)苸ga4v2KpH$ \чp8]XD5mo8jm^\>vizgSx~) *wڻ_4ܓ^ ༁(K҅{rץOҳ$-EDʺ\.9a>}W6:ΦQM2 z~+r< 3]0U6KsDvsqцf߯ gإe_So\jרrM"Z #$uf0]&{WUt-%pSI 7 +%%\ѯwJ"*%yN|Z.*8.Ef![{tuFcAN<Ў%6(Z5+O:'-jYZL|5ߦӝP8~Ϭӛ~m-}jMEbkkhifAgĿJ@,*lSvDfoq{nM]a@5e²Jx+G)a3+1j;^;D3?uQq9(a(4pΡH=;`Ԑ2у=5 3g;ڗ&2Qfe+YD I%{5Oup\؞+W=;8˫hf 0v4e:8kȗ>;|.HQ![A endstream endobj 2659 0 obj << /Length 1829 /Filter /FlateDecode >> stream xYmo7_m2|IIk5a+Ӷy%5ΗpII*({C,WKg晙Ŭ!k +R[Y4*~8Hã'$+#N)^ #(QX4,~. aV *Ƹ*~  nX+FkM~D8[|jgN IPMr3aT¨UbnF>OA(wHw(!+G͟%:TvM5܉`ᦨ#ک($hŶ*KZF|ߢ^5]YPM{@ُ'+[ )?8 5D ݇=ys8 (dzl} DIQ\~J*z2^\8?=4.b`!%0~nfK(Hru`9 nb1`e3pSލuv<ד@#`AGvS/24X'h拖}, Ƒ@*M3cqEHmSt#E@8k-bk3,=Z6P1 6;!ؾsܟ͓}i:TnNncf+r3{}VUg) /-\p_祿nlb i)Wo1[jsw 2NFތڄ{çQjQ ~o- s[e<Þ֕4ɝ7_2LAbůr9,j_75p:O!)|@i:7vjL>I`4Z7*v=LQT`犪EG60^ͳe]'|KIp}v ˬ.$[Y'GO(R??ES}q/c|ьS1)Bw/7OEѰz ?YBۦ>9H{K7],3$5;XR=l_hvc7]]M6:h %em]׍>mOlOm=YpXOJ3$viަ᦭ϸ*P(pH6DFP<HpJ5~O'r$=tHK84;B_v#{YŤnMYKݐGָYuX?%|qq)We(:d5qa@J냣T z[I;6tMW endstream endobj 2663 0 obj << /Length 1586 /Filter /FlateDecode >> stream xڽ_s8)aZ9z4(.VةHS0 c^v׻SD+2# DJHs0G# 8z==$"%Bh2H,z+D "t^ Lx\˩qg< ƭ'䷧g`X38gejrzy6,>P> Uѐbo zX88C*%O$JLVy]CETm泐*J%3 6nqa0Ý|4\\}/Pu4P3;_܊b|6[ܴogVje6j{{m.·7e{1w:oPvX.3uEq8Nƿ  1h<$p> stream xXmoH_oHɲZkKN:{X8k;oֻvt8!!ufgg̭G= D"Cz y W){; Wϗ'\zG[^^0ixZ5*mլ(&ج>`3u/ dW*/g2|F!#8I:m֤eicu٬Yߩ)zfq~d9 ezf#xhxQxfuAT;N+ "[sBz]TMO,4m+?M3u(1u;ONA >A fXY-O.OS*'GeBB,"ҭz*M[o[,m>ࡲC%B:WqFŲS4 K{ې )URPsBwC@ZBӁ=୼ϟǃ|tfp1f#fFdwNsx-`(.GϬ endstream endobj 2671 0 obj << /Length 1563 /Filter /FlateDecode >> stream xXKoFWH!fܥRNvb+4l2P3\"-iCޥfpY~w yG 5QT^xs。 5^I1FB7{{ZPt}5a!_|6 M'v.p(< Ć__ZFIHCF70fMLώFo f!9h4MgC2"?ϡٟhUc?T$3ۯN H)6u$ۀDː,D9Q"+ݖRמ;|a\"q%=ʸ(_0:ܝ:V*{HANs=']]vq*Kӊ/g')ew> Tk O- =jhFc> QއQ#=Z@qwoa %U?/-vW.xW"\aG?#P\I^ #0~٥oHYkT|T04YlgH@x(NFй)Tu'4S snS Od͹ev0;J8Mx> stream xWnF}W#}pm9QڎhC@[(u_3CQĤja˽瞹ۑ>!%Z"j,6!1T:4Co{ z|ήEb+%C i4'XS>EiF)ɦqq-{"hXN\.<$!YF4>XJ% ea)l1"e&{#@HF$"Rs̄șҳ*VxyMڽxQTd<@ܽn&KN.h3W5ȁLdx^]qY,^,_=rg]FҌOK Z`u:K։.|p{s 25|rI3!mWbSLGʭT-/"?mSW cG"r ,8CsbhҀ&؀ઞUFC2rO|?6u9;0rki\õl~!P?HcI4 0J \vf1p8Qa<\Sd,N6%.)%f%33F8jP:G"cփEGˑs%[B1LYsMl.MVeq1`OHou5߿]j4nuYkw+mb{GQ/FB@AɢASxC9얿 S?Gۯ(q\M(0_DGߊIïƧRamlzscxj ,`PtCyYA VN?gSouQ__?AADE5 '$28ۿ}pȀD2q)TֱwЈq:0Nij#RC1VR=ƒ:O煺YC|+A^Nx;\ing < X"[-PppmW&s3vL~L9AcT,bѿy* endstream endobj 2589 0 obj << /Type /ObjStm /N 100 /First 984 /Length 1429 /Filter /FlateDecode >> stream xX7W z*W-8$[$D8$AE"+/uOϬ{po\{*$EB $5 ,$"A5P-suCB9Hmeۡ+5sL %c,)TdR6Pe(DܝF7)WX-C/ & kqK0#vfǡZ:CÄFH7L#R@2e4hL#9i#X?ehNT0rfWT݇}3 @ p50qaJ(CiLB5&z %ŷR|`9bx`e 9Eg$f 2vsYªfm@l5?k9jZB_YT &!j"A|X}m/i2%G.@H)>{Zq=ͪ\ W$%9Fh B4 a%"|V ;+b͂ߪU%mV F0j0Nna"X3Ο`b> 38qM6b1 VnJl+x%Wjv&\]3:^mӽmPhF֓'o=܄Wa鳰y|^^o:?G_>^6oOן+2*8z^&tӻwO1D@8%$P 2Jifc2 $ykcK_ZW(1.(Q+QJ@TI9 G{uN2Fq^DsޖH⓯|X(픖AJKM8$$䊵mSbr~CLp C-^л-h)m-јh5kLx o:6UL+> stream xڵY[SF~Wom~I@'i't[`u|Cxo]ɖژL&\;ۈD7ha'B+"\jYt}0G-o{/9AFu#E#0ۏ> #: !Tij ݳqrA-T7G}xaČ~#DHiM; S",^ߏavIkQz'&HPƆ dH02$Ը5 Jm܂IkIYYޯgS?ZվM˧ӞCY) ;!aY͸ɿ۳roީ?a5>,3tܷN ӻd3rʫS/3dOeG8^)ejLjD rHQ$ónA6'x 8ĭx#r8ZQ]}B'eK}RQz)HJZga5O"RȸGKmH)4jIQaECXoVbaAVdAG a'(^)~D:fm?Su:4tnPQm.w_T$L5t;&p#*g`7h(CgPP 4k u*#>Z}b\/UBVFC)05-ҡ5JG@ǢM:8X" rnּ@^@᪡&|Yj~V@MЕpvWåMJ ۻ@`(Л gMV[5 Aupズ<4 x2!pZMLTl9`g(TƖ@C!St8?(orb72(_ t<EjqXk+ zYZ_Fi?Ǚ4-߯'Ezq;SOs*bEA^sSˣ?N2HON.zz7{ vs4$7z;rc/-iAʦIP> stream xX[sF~ohFl²NNNni' o*d9tX,p\\0D E,8Qzu# {:?zrpNy M{ D1 ߴeݮI?`gU[/\Ǔcѡ"@E&/cQ`/` ­WӋI z7xl‘ (A`Ӧ `;mvD)auͻpy쿙\<a1X8;j$ޱteo˴"ػJuj^[hͤyKuڟu`tc \4'%?YWRdQ7W:"o2U]Fj IejeIݞo}{gð]L=i3ȿEU[@40ȯǴ%QG cǚ Bs/ 0qі6r e!b.vȅ} Qh1 ʾ`[mUmo;vgigl@9P18xES; pQ"!L ga1={`#pצ ܱiCIYG@};}$B >*9~|78vG|bG(dd^Dh`] }q́X-xj( =+]qt JG~Hİ6}+NgC0,Q?(jɡe;m@G}I>>Vy󜭾ФDLuM*m*tfc=#U XȟC#n)f'Pz˭~./ S쨤,rI4ja7e?7d Pjֹ]*U8>jHU`ۏU*R׼oLB]fArR#; ZZƮvvqk_T O-L MnՔl]b~ UzUxe.Ϡ]~;__uo2 1k_kNGG ~Do ?ƨ(^! gCUz!h͎FkPwmY?McLꩪTj-ᧁ\U6Y?h> stream xڽVn8}WlD]mhL,ɑ(w_3ʖgn"os93;kvJH"W(8. 8pj s}[^<37a wgK˕u~xw7_޼9S/rYcQH]F6QJC--IMnӚ-3f++Vc/F K\֪TLnQ^v^ >B]$Scc;a4H/ ӂa9F3n4Z5vDMZeQe h=e@ebѐ 0z&ia|O}ɇV".q n*.ՕN5&ì+{t-WI-7DAHn CU $D±@E?A\cT҇iU]+**>W̱+;1mvi&'SQ%IHjqEN74H{ܱԬ 9Hgj"25{;&lnm!\CI3(46i#ILW5YUײفIruUtpLQmS̽Kv",n(_%=ikɋAwcnսd[xb!}$c,"0pccxrl"\? 9+X]sp 0ng*t!-Δ[L`nECZZI7rZOʵDݰzmlmc=*UBSz/7,aE<4ۻfA.]p=KzR8[cAPUjUP<}Q6L )͈e[Kk {p߃39? +zZK,vaA M鎄Fz *W$uݽBt0 YC&,v4OeWȔ:}A aLi Q>PV񔼁H Ku{LGYd}ϐYaG<:Gְ_aGYíYށaǒ5@SXxsgay fSF]^ܱ aÁ#aG&;t![i?< ^,g}fO٤WM aoW| k{,1\K8M p / endstream endobj 2693 0 obj << /Length 1540 /Filter /FlateDecode >> stream xXYs6~ׯ#ՑhJ6t&! Sd@PK$S1v2 X $r7#+ط$ jrcN&Z(r"Y:(ZGmt.L~^9OTe,=T=:sJZͻVν M~zz=i;֬͡<\z?-sw`JDc6U[z}cB \̊jó_d,'Jd9 G=P[}2UI^s!QyV,3M@X>\E@CLc4gZTbsyz=|LnhfT&X<-Pκٶ?qv K}4A?NxTp!z:gg>Δ]o{p#o[}Vͫ{Lbղ*ǒEb27RInv%ɱ't<% ďS֥:gv3B9\3_ gAQ({q\,"zƺӋwoh!B875,P~D?feU}r9| kFZ\jJWpL+l6XQZӝāk[K)M ӘX}ѧ}"4 1B`Y[`Ǣ0{˅ #BGGJDMЂx:[f;)tVGД._SBع{32<3AA6ٱ@IJz/5󨺾j ߯s$4X!FCzNj33̂n Vi%l n!`7M`5i> stream xWs6~_#t9;u: Lz _w 6uM'hv]~"O{e ıxa`Xq"F>-0p2N/vVK۪Rƈe[Uf+w+W3sgyZ0#! !/j[e[\lHU1hfy?q6u{=4אlRǥF&i^$ Y6yU%z=f-;GF*41fmRyZu&=0󙠇%Ҡ+!8.x`~xSpأvE!U7nrN0Ġp4ڭV r\v$P^ʸh@ uP]< D8%ezF{9bͣ(}@0[%9FhY@DrZNGteٿ̣xl2/.@Ԕub,rǡ6&x4!1 s U1[)r [M!CѿId'PU5&Th/8-D?K38Xn6g6sGYʡ~03B2rG4Gkx`u+ބ6gɺ{hҚ^uͷߍ,chбwgQjRdt1nZWf$q]͍IbMkMB;>oG XO~ G/ȮǢѪ-\c f: ,`Ы2=Ϥw4ZU=P-iݪM>" ?)& ;qFތsIEX>C>p>  P+ endstream endobj 2701 0 obj << /Length 1526 /Filter /FlateDecode >> stream xXYo8~ϯУY:؇4G-ڴ[`AD,~gHʒ j]7x̻^QSqH Ћ"T*mwg>_=cJqoBkNdWD0_ՏLD]*v||2SD& &/݀zFILcƨ7([[7뻛I$ s9kQ$7㠉VS_U @x`8}F4߼}|v~ VEIw4<"fe5"/@-*m/-EcM*)Rw( A b=8۔}v'dU7vyy7`\0$!1i] 3 +-q1+,kPxj@#ue'1ƠhfI'vU ?YфU6kGܢ .DNvVE,c0_?HD!kp8|qa9_,ovv A ݅5z.9Q/_]1|v`v"rV   F sqD'eXϛI8?a \5 hUnzeF~ E56~U$ݱU؊0l0Un,8ޞZ eVcH32B0Ddщbo XtI%oRmYLHL쌔qaQp\V$$J[VK^abiU)K0,;X*xL+( hx'Ă$:! {ҿ^61b=!FiOO<ť. .}ʭTvecD "f0scPY*$<@pRMz!NfSBB!\zd:eeiQM ^Hʍm->$M[E/9d^~ݪ8d敇F}%0 5䏄> stream xY[w ~ϯУܵ8M>d343I6t۳Ŗe-#I ,9t.93E|@[92DRmt`bIhLTY0 ~9@H󧛃1 #<ZP"a4-ԄS52| #e(Z^/7$"8$:x ?`FIBj UtdDx4&<>kmbL$\gD+e97rS%h)qKSj]y8]=b=d8UK>?Zè]]֓۷2rFYLj=[9HjE۝@Y*O|YyV=/Sֻ]o`ew63tΜg[٤ZeӪJȗ ˡ+1㘏y7DfߟN.o.?ELD# Mt1,q( ;y.,n=*G\Cz_rWDਜ TYU-RYF,˪|beKZE>2͟Vi}(yBC؜0 N8 h5gajsg哠1K1W"mB!hq Jw*,N12/`̧! #Nifil `>4<7+>iLO$&K+ᄁnɚ??U pp1A/(H{pOmA4-&dYiٹynU(-i Þ$a2@ >YjEN3R81F@e%!;#8 FSs `>w x# %! φcQY~)>q'&gV@{[TH̐L TQbPMI#Wa; 􁺙zqk{G߰d{˔m{h q CnZ%"_BeLb 'vPwQ^^Lw17m.~B:]6( o7G t]yk!x܃kiDs~ణO*:*Rraa !kA|HK/!Ux{$T?_cuM؄Z,rÔr$L+7$`зH(n 3sPz (DE('}(-qd t&DWwVD]*a {T%^mVY0Vhw)ztvžTvRS^OUT{j`ݯ\l]4l Y^Kh;_kt8$}/ւ"b \]՜Al{=u.^M^TϠm3 'ۋ{ MsQZ6Ʊepiids,A}{%)<~p>/w]1 CFpuH\NY7gWzyXB0Nnbً@sz֬}47<,950}ܑ:Ź{\ei[VURmO{ZܧSz'UBkxOUV,Zi5Y% _N9}9E[wi9::Y@Nnh, @N)̃B0MPA,Z=_ᘂ[Wۯp ˬvslm7ظ|[融^ 6.oԦWg'&E3+*ԃEH endstream endobj 2710 0 obj << /Length 1896 /Filter /FlateDecode >> stream xrH=_}x`kXHذ $f# LߞCȎv ziOHt/8OI,ϳx1gه;,py\$H}%0# nw1c6n]v|*܋/y2@bG1 fE OhÑ֥`4"|.;Ly8 PDhX#& ʑQd6 Ԣ05(,#n;(,'RPpѵHdэzB@бBhg@I×kE& Ӎ֬ϑb4 )%gk| ;/j/~hX.!T1efnNr[him"DRQP ΐp@58ZD5ݜCr 6`{{%XnۏH–BGl{GWh1L`CX%>ŮXT f7n[:QhM&yI (L?AjmǷI~OYnee@z &"⒝vf6*`Z)Sc3|sr *1 ZVmvoH7uXjG}qU}zڥ?Jo[i@Li،¹Z~P-}h`n(<P=[xÈnY#g= %A;HD]Wv:|/= ;0ޛvZTA8 d㰒HI8 a8̉9tqx2ssbrG;;ۙB"LSLgLD~x8p>JnDmCwPvOpVG RPRSw)n:-5e^A:Ow?{snq.(`%QJ]u[Wt`qVƃrRx:1Y1Hy0<˂;Cu *Ӄ?ΎNoGg\µnVNgEɹ8|IlQSϫrG#.8" =?1Z?Թ* Rb +'. ̜Mf thh .]NuZS<;hKUAaw&ǖ9(; gL'ٳP_Rct?qo¯<:~M ;Ju>:WXE2͒05̛}ު-;v@zBy'3:N#׵x:yg Q׸e!(]\zxX1؇KIk{" M8qQ36$;I![t@XaAQdc ([ћ$ݐ!ȶ\ n%md>E%sC;/'9JÛEWZtI"[(KktP-%i YU%](\YW UI,:[Mt@_  endstream endobj 2714 0 obj << /Length 2058 /Filter /FlateDecode >> stream xZYsF~ׯ@21P*ZG*lRq "aM_=HP ʔImdt}LwLH0,OVZ !gWbiOU2N!}[-y>mjj|S[DLV"Lp5I {pI`@Y@@uիSGfֽtU]^$-}JSL$(YI֬n?@Pyu!F8|Ca}3ڤA05P(\ \14*X amh=&1D,8U:A=2$H Ś,ϑQK&GEPb5'Gk" |j1|xֈ3@5N~b,") .?m!+Q龘Ө@pw->K*H{OZrVeN@}ChۜG>1}س))`җĿz&#PP5U 2 x qp= @Q4 amQC52PO>ԡnv6@C w!=zv؂GCvVQD%"m;|Džjd:%EŷM"aź{8II#M2d}r.r儚[ߵQx\ݹkv튼MS>P~<93ϾT҈=X7CvPuh bN2Jf~r2uCԀ-bvOʘ2S<(=3Y<9rnrvc;fVD_P;<{z6ْ&`ӥI6Z⍤ųr~Ɠ~Sg")Yuق*|$M,-S s/ s> )$'},~7# '/\|Ϳ/×ݿo"9rxSlXF<m*E3Z4p}BK1_/ .[h*In=.MhM2Z13[-fp>7|ݥ׳ؕe;fXݙdl*#$>G/ xE endstream endobj 2718 0 obj << /Length 1504 /Filter /FlateDecode >> stream xX[sF~ϯУ=D3NC[RvR}l+Y:a:Zs'>&$߳I0BL%s:yyA'g'&$YxR #lqŋ'D$ [VĔdL&`bJm(䥫/NBP.%1C$L(!ӔPk G7[CWjz1[|riݶm)ch>4C[ݫ9m׃mtK\fk]PGWac4IșͣJ7;f ]F=}}lFk$jm, A  Cc7[_f]yC Le-e{ ]^ƌ[Smqp[t~tqr3d'Lvhr'K r iª&gWXK#9Gs 3L{$ [ K8L19EDSGM( wPRvy7$-𱧱8RTXp/ޑ(r)?\s-$.?ӱmP]*mUk*sdRC!9dsBJwP{,b`;'1!Fn>*gyJrUmd2/j˾N[(Q8aPG9eJhcp\/MkX@.RUa&oGEٽPKp9WRpXVH !0 U]J%R!v̋^Npp߼`QY# 3kۭKP5婚T zgcP$*\sAEQq~ HcgNo[7" Y5a]B6m4x0IƲ߾r<_.:?Jџ몬zCذ˜ *2Ti,Itmed Q2m gkq,w`qQէpvn{ZO/op}3#!Fx:7S#[yDo?c߀_ =ta{& .ff*1nfݣ+2Hr_fp/h`j_ġԟ <7>C5Ac5f0$ؗ 0H< i3YT endstream endobj 2722 0 obj << /Length 904 /Filter /FlateDecode >> stream xVn6}W҃^E*@RuJf2ő.c jtm0 ̙Ù#?#VD"’(j~Ddt6Q#)JH18% SQ2}mY+=Iudƭ'ya@rGN&da7I<{>8> (+P\Mm^2y@y'9GmJ",#.;~d 8R œC3 P!,qPelʴS@Z¬jJR㪷Mjl:8|colP0 wE>jf^" Jw$Ԯx[tr-eEɓ)n`qåW۪-&t/-Һ~q1OGPllו6&Erzl7YެӬWe8TE>xˀܘ{.Vgp(U Uӡu ߦ ǽ#7 8x8U[ O4No3nxR{w>:^z( !A2v!iHAi* endstream endobj 2726 0 obj << /Length 745 /Filter /FlateDecode >> stream xU]O0}c"Q8vxcв2B&MCh$&c].meЦ8@bAHyWS AGQow)D H@QA`HrDtde[}g,+img+y&/o̠j1K"H^eޤ5{%[gg * Ax0Fɞ++%&A`Թ ܦ3&v|wriS4UO N7N5U5](K4"n afѬ]w-% j4 +k<͜s}f =!`g#} zʸ8b)U["r BqF׮((9&A ܶSq\qho)O QG;S hZ.J`RyC*3ά)B0L%%7$fwZ=y 4\ªxfо lR7G'`2tw(Q`Au ^tiBE^ZWcْDfaPTI/CRqz#h B9dK[{8A$MZ/^(&.\y ?K/  LrLՊ嚗ˬ̀w db_ Iִ/}V1uR1ͳk.6o{\i>PkI-공MZ X{ endstream endobj 2730 0 obj << /Length 972 /Filter /FlateDecode >> stream xڵVr6}W.@-%WNr,:LJmL$R&zŅĘjԸ j{r03|X" C" D#PI#d8-F1&( ͍  35E4ުwrr%+֘]Mp~FzOĐ*^B;YM/L9Dء 4bdqv3NgGwQ{ywa2ʛcsiU]Ah"CobSLQG3b8Ol>yC(jS( R!@)dm˲\qleպC] mn&g qH) ~-ggU2rgMV!_.XD%J{|CZie4}dcz֥M;``bv+kңڂډnb  co [@qE])-.R,ʦZIrX^!yQCnti1(n*Zq;(zZL?۴r Kta OS0; > stream xVR0}WўVBiN/ 4+hdҹ$E xxPaITP $&4DG_FcA8)'XQώŒףIJ}Ǎq%/DiVsmLﻞ$dė!uF9%8$!58Ì64w\8}ct3HBc2n=*&-ݱɶt<}~޸yqZ?殔c)u:obG]49;ݷ6T(S}8Y;͕6 Qs]$7mM~0qmO:-p.n.0&<aVHN}HKwo(xvsk&KA" V߽=E4Sn#`B}haIL͖A?LP$C;&V؎9-ot>ӕ}bp*x5oq46(P3"%9dCHp?BBqP7@iA<ȃe>e>*yIg?tè0˔螥Ntἀ]90)0i S$WvYܸ҇m*gٚGin+Fq2,wy&h'e=1]U i@%1 bi_^Jc2a뫲YUUV?t7Kw $jGt,揈rH^9zPhb;&0dkc;j̟u?R:`6 #P_Ai~kQ endstream endobj 2739 0 obj << /Length 1024 /Filter /FlateDecode >> stream xWr6}W.MDnb"OEbNEʼn (4t:q]=EZ#BK,TP`F*DAKt#`HЫb*D DS,X2$'X@d{ui@0e"kcrb$پ_ JB.`:~'W/>Lb3}]~;g{fiyZzbSV3nPUUnTͲYUs B,6YD`!"@ o߾'xrt]CH̀+^{XGBKŖK{ǎb.^x EZ? xB{Dzf^6 =&^UZ{_ ty]EPʬmYgm"Vլ2 ˢ݁5 TL9 BP]ʆd6> YєQ@R,%uo !y=o\)Eqt̫)܄ xa{Ѧ)E ͳ-`̡4V {mSD)B15pz*c,8qQ2/(!{xy]ҝ5Jӑ׷3Ffܔj2]jb^ RDW[p70~6.o}ŲgmW}Oxųt?=0ToIY54ZՍVO(O~PJvy ׳* u[em֦BY +h- XDgyjV#.r!|m7$lf/* \RwwfD/c;;oI9^0tH'+ F `Qٖ7ȅ-eH;i|)OR6n kx7t/<=~ӽmg guG?8Lwo}vK(U!Lj#"w6pH endstream endobj 2743 0 obj << /Length 945 /Filter /FlateDecode >> stream xW[OF~ϯG[g}xۦVKxWUM u6=' *U+g<>\;32# 3T1c RQ&H5a(z);@SN`TRwQJ:w!_VCn^TډM+nHhoiVE:C|jEADMQOW^kY>F鬴S 9܆CzH$rw9=\|8:wn(s֋%-yYL4 |hQ+O,Z%67׿FM0\2!SGMMqOWŽL=Ia >[֗G[y(lt4iY.O9d.y Ӕ#-mp~>6Tsl֦e"7k<b &!_nT l^`OM|rƬUq;*+tq{*"v:2:_22cT`2"uJ{MbWIc Mk BSog |5:S3Kg t{M*ÓpSʌ2SQ~KeQ*V=qTfyVҠ-*H=iY|zz7/ͦllV* sg?OM>o׶L{ ٪V 9PY`)q՛s{۬lNBV".qܬxI#RtԀq߽hրB \׳Գf5u Qm 2^ EQֆ D7AƵB]d/Mx`5DTfi-nMSdMUqgͻ6KкA= endstream endobj 2747 0 obj << /Length 1162 /Filter /FlateDecode >> stream xڵW[oH~WFd.}YRhۭ3Ħa)?~xl`RfEs|眹|41Fb`ぇ8|]+|Ȥ13>v0,Mnҹlc230 /BuZўkTXU>ϳptĚ眖| 7`!I2EٽHJWPX7鑏NLd6:RtU#j,-T^E/Y%tfq.m-B&E.Έj ׸9N? o'ÛKm_v6*&M"f 2sJE=>L9 RU4W1DeA#SaR)V0jlD*3Iq/{+t R2`역k~" ٻ4$SVjNۺ QBj[%@q\Q53s}Nՙb3Zg"0r :Ty8*k?7pWzY\Hl7G 7Ϗ,Y'R>kD=Mxˆ:_ac P9\`B0Ɲ}sA 82PH]BH1vѷIh.a O4_xTiWVtRKgL*8W4x&0\D+! [[1 ~4Rƥ4*QR,}-x*%ӖZT2kPV0_N> stream xW]oF}Wі`2LXJ Vvr$d8@q!MTE={9;ĹN`*@2p$s_rΝ!;'!H A 0$  J7 w{_q#R/eW,FLIg[.0p:ާ6l D Zb* 0DM@a"v}[ H 1$¢Et0" `"&i@_e E+5dz+O2wQƗb40% ~-Vejo7*];q^Ksxq9 ,;Άu\D>VΠs{iTejuR>مdBG: ;hw6t_l?D}-tq_uцg @SYD?{ Ǫz2fi8IQpЪUǕe2jL=܍X.YFebyzFzf'sdÛٟoRjI-8852P!3l8{7enj($u ݴX Tcz|a:1_T洯rReU*:UqVm\kGcBt5߹kct>憹ye3|fj>BoQ-ud}f!-.R4hۭa0{ufuSUwg ԫw67CMOb>pQ%rni$Jj'F6IN Dme|_leeC 8 C^W2Nu ;W:fzY7]ȣռQw5I~>; >jQmD@: Gu'vT7P6ڽ(~ӰNvB9 6g:~E֨9̍M/"s #_[ 1 endstream endobj 2755 0 obj << /Length 1495 /Filter /FlateDecode >> stream xڵXS8_O7L,7AK׹i{7$&i]I&1(jڧv0g/ܡ#HFP?|Ry{@:/Gu%13:!wBAC=;|7:x7O2r/{a ޜNgOW.W@zt<ɥ;mΊ̒j,U^G*i+,``<&:YR 2bjd9V~hKmZ4u#O?Oǃ3sCpudžu7G|{I9~WHĢۊ&$sṴ+pwyA'fqQ-jY(\v2R)2r+myܲ_B-zp`&ڢtưq,I#I9X!))' <- KW\qFF#$_IYVE:[qR0j,Vjqe6a'Yʋwf"d?m+CxnJ3t{yULE9GلX͸+y, QzPӢ2ty1,1JYeyP%jt Ԋ58lQcN<.{) >8|9`:2LRr}˃3u rPSy3䃤lcU'j^4%|3pqq$p0CE @rjWizutoͧIė~Wh[ΐ0x}f9Q*̤,^u^qXP3U|[]h w2xZ̃^͔7Iv]),epb-[./)BMYHU@o>תr]K稥=鲦(߆__rV#2C"˱)Uq7I\_wnw3mmO٬ x]DuWoQ~8⦎nA7`-xxt3@m̩\U;oy#bEUE~67W]ʢ\ݣs6kB^n)oȐ~tCQhbtyaeZ_@['.b5kM&=n_b&aCMl;&8v׺pXg"f~iZ;}D},_vyS}nV'UMA֘m%>/W+8&uT1 i e{m[:1-Qdx2! endstream endobj 2760 0 obj << /Length 1374 /Filter /FlateDecode >> stream xڽWrH}WUb!>Z^Ye|Qʅ1EyFI6`b%t'LI>`q>\i8#$^Ds8Mtv/$S[IUAY77f|x(Us}U r}CNW}=xnprԍf%C7l0}aaZՋ,tSk|4.OgpvW*)~*\u7#\)pEEۣIEڂ w1pa2J;֝t,ȣ^7 My&q?Ueb/7j=P`xMW&&0WǣCh&#F{ ݽLyUc$&T?m:fCRΓm碙~ 5 uT=qQ$>%P ZG7fU*1VQ~ӥaUR^zIױyJ[=+BE{}ډ˰~֋vZY_OGWx '`L=Mk~bو>C[?;<[si͟q/z{;0yu:țl+/c4x4zHս{ƺ_*UQUayR !Nr Z)ԑ‡plm7WMfgh֚yRtZ^ H%a[ )75h@&[%)M*0[OvԪ> stream xYMo7W8Ù! 9An4AA*H }CǁZKVvۋv1͒+B lP(0QŸD TSBF9蕭 %M)Q@Q,: qtTщ|vHbv$yhUeG@5ajrl#cBѻhC Tx@5oƔEtc* Q+P x'V-CS R!DG,a [H1BØAĚ1iH:Ż+nWtwU߳gO݄7a}zn|_;4c5>|}}|Mi~8INEh*-{ &z޴-_ >σx&x{78e0sp3\ VW:AlACvcΈ{Z؛j~<%^pffoZ]0-7 V:/pO1i"4aϼdzޥS`g[ӡV[yLߎU\_8|>n+J٠R62i"WAʦ1IGELH ֵze="i;#ω"ȳuc>ߘã*bL={e5Ff.O5˿Wcp7%{6ieiuдo;}vȬNEr(7j)=#3"n*ȸM{oLY0ɝxH4}fkul;{[6P e3{fDu7'yJO{l]a[Eh_4 DɊ8-3<V> stream xڽWms8ίG3Xo %mr$z3ms"xV 84LZ=i~?Xq,|a.G|*5>w00bb9t}`X y̳Èql}C)^'feHʍIV. 78z!d_c| wc憽2MA2L)ǔ5 LRYVfx1/ڈ6(dIPy)2 Wh_g7C}L?_޼3Bp'QpPE>']PfiXt, pb]Qrх3:!dQaVWRfSi;%$X>:ߖE8N[JY$ھD8iuLeT5CP"XV:a[/ۨ (x-KY[ 9v}㗪5 |Sj hV7vSaGfԑ%jzHs)­C*ڮ,@HrAeFW]qt63pqJtvR]UC' W f?6t!bo=j2Uu>WCXsZ!(qJ 8(2$4Y3m€?q`u? (_4ߗI*d¸19")OCpZv^݌ˮs5=u Ԕf, $:c/rYO{2ְZ*RTg;7uH>a a? ymԣo Xgc~B4S}h#c 1˾cYUE&`vHЮ0'4=oC[ :AP8BwG#4Q!4Q!4%Q1OYDk&5@ԺRFk_E9m(G'Y+zk,kra <=oF+l@UGE jľ,C4,kJd6O0&Y^(/ 27[> stream xYms6_FI^ 0~HcunڹsCKT)ɱD*^&H.v¿','uB5QTIk3 4~;HOf7(4[$p&qGޟ]~?c,sgۤaӼ:7,KGZ%P`Jg?d3$Hb^*L6vnre_&Ҩn\on\grӍ4cw`@FINs&nD0Nݾw##7#nҷ;:>3E4N9mvmۖ5XDu.S MUe3aFAO?^}y?`ieO#7Wo~ͧ D6ԷPRNzW]֭>uSۍ[z /my@ 'v^|Y6skmlyJo0)3/z6eO)J]Z\dC*b$[h)Zu}Q/"x Y9/!Ȕ&9-k m;eT43ZGiA~MFx.%&â _1d0 ;ד@N$ бr w~>^_HvoEySڅ‡.?\׮{ 4;@Vy8r"/SHa==> @),/y*z 2^Ux/?0ӓ|q+}_;ani^W!P-vecbi 'ib n>J6,o*p"*A}U{Uᵨ {tC]bQA;L*+wi1tؼ+OY/m[VM]ΟZ* !@|:\jX&\\!b$<:_ؔ~;+ R< :ޞe4>4LjrYgPg0@t<)3p5>,;0QKuźh0*qL%ÉQ{\[*"TCYh聨/RYx*Di^.#@#"ܙWUGEԑ=|s=4tӾy/26(!%>˰` \UP_ڊ XaK,UÏ @0.#f7ZNr ~vl#,ݘF7(4KE0 Sưe/4o!!.iƶbE1sEgyt݌w >&tqXi.p ӵ:,J2;K])꟢֓4ui YF3v1=2bIylįq8b1!mlS}; :֩ ^ୂ/B5 %򖇄]S&/!v2h9ܜ?wsǚ0GnɹoEi"9 ቗" n:'$cN  endstream endobj 2773 0 obj << /Length 1734 /Filter /FlateDecode >> stream xY[s8~0o]-;Hdo0wh5љ@MF&#51[`Hdw<<  ExUE Ie01-r5.2́=e'eotwzf-mСѓ#xBoRNOc*lp"8?Ϝ$rB oҾ|H⬖h0$=̝=`WfUbeay'F) z4?i FW]ĮNqYNc|_d]^̒"ębIKcZe&_bў]DDDX+K~"_Qa9KK1 a#E3iޡ8^aqffВڐ6_+MXe:_%g=GJuES2Ekx<E3*<#Iʇ tMQE 9!& gJM 9ۯq>~:O &]fBcESKIE IpNYmȾBZʨJ\pH]Z"A@jomD}(2f[|"BGk"8> Jþ$*hK_ y[}]Hk*#M +F?bvBtnG?Fw`dMVf8emz` A#)`HE&U1hE£\ެ&$?Yv7 DCL\O+R۩9Zy9"-+k=IIxhQoJ? Uҳ1FipNv|!U O*#ak@|'L# \Vs3̲,8ygK W@At 0<,Ӡ8Ȋ%@\Pͩ\e};.ę_Yc|W[f[r9K'vf6ērQq$p/G \MNd#ު{^$qLmE2Iu(j\z aI @5KL&sF{߭e mnj׬'>%ۦ=+={*\;ߨLdnk6/lI:Mג3#K}~s 8#I;aoBoVY^di4q1ܞWcn.\E&Px*"齡C5ML˙\"$> stream xV]o0}W18kSt!e]+X7M&T|m{||O;C"’@@HLTh :[QGPD)d(#ŐKэ0(eft=sK$"Iͼ3-דX7< 8Q.:?,%8$!Շq^t܀;. vK` TmScD}4_GrTrٹ!YQ306ۻ pY8R ćeoA &|YsdeljM}5|6+=cMQ_EgMVG7';mgx;i8mO˨L$p$ rZNIjLgȲ  T}`/Ih15d:yR!.UEzsm'_؀|l\,0ڧɐ8|ⲞR^ęoem͕s'38ABPH$RQ15:SmP fǠ;a|zÃpR{]Giaiu5QA+iZ<Q2ktݘC> stream xYYoF~ׯ`(Z}8ȃʩ6(t%NF .E0ݻ2+EkS18b^z-ώNO^ N?;Q a=|z\X黮BOւ^W_7WY>[v]Y HLhH2 ;uRJX;b;rD.$epf1J1nĀt+v )&}W'Š#n7$j aUSYb{]El7!vqj}-3;A-vhǐJQ3 . q@ !bͣGF"EGaҊw!9,xּ< 1MR!D<td2^慫x1v:-Tࣱ+$]y!JO#RS٥MI!:Gix;@1puq}$T2L789ޑN 7Fx+$BK !i@-Ԋ]zM99,?/t#* HDBвV웵1h0ZI X[\۬]EHf@\,b2@ki[hyCX,%Ļt鮥w]뺫lӶeVb2ڶeHKj3+Ֆό#xk>33Fj &I)SSfBT/?jz6NT14[Ty=XmsѦa7bZ*%V{b Qb w=JflTVqCVo瞪9*Nu&Fp7P2S^!á6݇CCH f{?ˎ۴o(vGr;iϓ38~=9_߇y*afYg1@fځ9{`0BЀ71 S G*qHꄵKw=SR;õdKם[, "~ȎdG+)0]1;0;" ^̎p'f}bv,x7hk0i|Fַ+ĥI%HcTWH4¨6A* qז vO#Yb-6Tz7O5vw=Gv ӟ'}{ ",!@1Fcܠ;+ju S)'`)v.D`]C=e \ ]Pׯ~ ֈA1p M} _ endstream endobj 2786 0 obj << /Length 1196 /Filter /FlateDecode >> stream xVMs6W 7`|o#'r[۱t(9I&}(2m'Ex}}DgrDOF KBZHLD2 Z@?T"JpD"f+R` fK18jfivq|.xJ#,Uj6$, p@]G GO@qg6d:*]UaӘ24*r$R8R j J)ZX tG$s+0 ]K!fI0SgŠ!}.4킰>#ՠ},$֑w憻ycle@k!R44EQ8gh >~"h `CfH tOLCCXIJij)ٟN^1YWI;aeb8dH|i |Ien\6x2tnƿMKd:Npn!I!8ҙ;3I\%H2nLvCFv)27*IY&`m扛,. ,++8^Q~^?ę/cRk8p(~iPA#7-fyNN)!{$^Ed' S?oyjۂ/bާ;Ql*67GIWYE_f}Jo9 CG&+Ytry};;,up=T*89u sfsH։#oybܸXy14i=i^{H>' -t')W  {EY'W|Q mOLhwEy|Zh> stream xXKs6W7*5a 2NNN3I4Pdw%Ҧ''ɡ ŷGy+}U($2^""BEQ{u@Az϶G1%)M7_z{2$M?{9ٴvP[]WvsVγN+onZq@%a I$R K]ܮw4:tHpV-χl15:Ҩ7Q7Vnuoϴэʊ`ru!Wm~?~ƃnT^WE@vFfO#AH}#rt np_)<=|rqr~cEM $4u>Ɋ+CJ5vnY}S/K F]غWS^?׻=NUՍwn|0_Bp(qC O8-^p NbaQN6xP I L fMq{Igik [pQ+vIB7&,w sp>V ?ڮq\,5]ƶoUrk[UE諮 40c0g_*gA_yhv ńE4nS-B"y &qF8 {rpĤ6 7#w208S/N:h-rHPK գUwſv)w4k3\ϐDB˃勺!H;p]/xxޒ>\@$" 5*+H`tɕBa-7 !QP,Sz_yJ(IΒ?Dzr?#9v*czwo53!f/߁wD9߯+BhyeW:¬VP{u_r,R͖鈊R;J9mX,XKCd紾0`5nm)TNo|F終F!($TuObg:oG/5#v{M&ʅj8w䆃S-ػy"|f=C=-m %,f*mg,6@JAXak-P:.>0,B 2s[H؎n RwtrnJ/:aƓcP<He( \hAN|;j纔0~E= @ яDhad~Hx$OvO B n{oͿd%qaLp[á]Q,~7GOJq=?Fm{Դdq.rd| endstream endobj 2794 0 obj << /Length 1327 /Filter /FlateDecode >> stream xXmo6_`1|E*C?t9C4vum $Wb~GEiܬ(abxӑ=K0H  8A(J{= Oy@|9MHyNNG>Ǹ/$_Q#ag ֦HóɩZp$| H5-|N>+5sXAmV 0*|JE﫱zI_9av6}=X'7u2X..#!o#D% Yh#*O T+CR2*^fOꕾ۔YlVErT;U /]eEojkIMf!?q#nI˪:xO\%ZO=-!> stream xڽYے}߯#2P*+RK*r ܅h\)z4f@prJ[ˀz»W^q <ґq?ԾWC{N_<'8y, *"YMS'i Q?9/WX%,Y<ޛM֜ϊ nwi+1eLbTQ𘱮ڲ0>5'YQ򛤪oj:+ƻ/筵Xf~v_Eζw-pY鶱j.XG1 yxz=]':~TyYdc0ygWp|U%t_BdxXQZ*WTG w>ѳZesUWI%%er}ݼqyN${.B(Iud|w=E #bX Aui:iM8J?otM}G4:@ޯb{_I O0^iDbR(BB_>@KMbI!Qe RHf+?g cb/Xx}\Cayo[_\/~M<B"-q` ,H垯7l ) 4^EL1/BSqdVEjuJubJGʬpf~y{5j<ɨvB] [Ob06bRzOVM6C C۶\\g~sn9(F/n_| fndL~LR0 q[rwӧr5>5q{0P6h6KYHv-D^_i;&G<'y]֏|$VmޏR{ҥ?kÊζW(S,xjf2j VnDuԈ |.&lkdح@ I;4 k O'MoCCIJЯ]mT 3PRЍKfJtQ`ߛb1:Lىѡp!D}e0KGLGqO}iUqo]Ү/˙E7?96[oWa*)Rq˖0+ְriY-b࠳'͓ ?ECi{) >I12`#9ȁzHI=K! sTCQ/m`w9@ :i#U$ÉMQ3SGXѷ #fk Չ!C'$@_ >JBGQlFXe-gB`T3 M8-+ :*PG8Q@Td GH3_LW6{k0˖b؞vGg,hp ܂xij ]Ejb(ʝlJ7( \ﴓ3`p 0`In6LJGlm::#9*lZQb,+y^dh#+a󣛫\= }r0Kc(\<<3ř 7O b[ӪzϞR0-4Xfb}RaOh[<¶0þpa/6z23wvtJ m6?aU`6:tF %{vSw9G (Y:l.4B鋆`?)@ dp]*(tܞ"~Tow?@Gޥ53o*)ʇF/*K#|HM~ laj0FqB0XE`!_ endstream endobj 2802 0 obj << /Length 1626 /Filter /FlateDecode >> stream xXmo6_OZ,_E*>dYڥ4v lM8h[eiPm)Q޺B|=O=*DQmg"TFzUͽ{{}2{B21)ŽӂEׄ+:ʿ.`~ZgTQHx(Jo B >_=eF̪^ 8Q2r_N_ Gv-i 8vb۩\W0M*֫$oemʺWüJlX˲^WE^n$CV{7:=XmY1&IXǯOލy7+ N84kQ^ ¢}gXʍ{VY2IEnl!N!^ċi.1Pem=<߈j]$Ҹκn1|n2K8_&E窴cwubug'AMۯϸ|vP e,.68΋z[ݵCdut| uE.HM/&բef_]uTML/vӽ$WaN|CUpnܩf) :ydGn2[&42N|Tm!A#طE_ڀؗu&;Pt:OOӾr/X U'WIy&"6f5tQZsr̪-L/8\|Ov6)˪8 #7?X_e E5[1ne djg:+dfr$o=8^XE7 n[h$CN)];;Vpeg3n3@ U^pB |15)4}J,u@EfhiML5h D% i#f &Hﲖ̬J zf/cn?hWQ¶=.֟QJ{2#DFݕ5P_z0l?4/H86+y$ 0dg&:%i/8YkZ-YVmDl^st)ӧGG8TտoN~8=UҜ8bwz< / [Jq!u C$]B[P˟pG\>o}{[Z7Ny?{S-bA9\bb l5t;PFerfXOx3vRah.GRy(suZZ7Xmȋtu*S Dݴdhg/& endstream endobj 2806 0 obj << /Length 3107 /Filter /FlateDecode >> stream xZY6~_<&18 Ю TQeQU[m)ƗoƧ~2ogϐ*f;r<Xo졞ӧe0V5)]Oת)q৤]}iֱeԢZwv5Mx/OZj{nl)G][ Zuk^@)W Nv^6uy>EW]fOMY,ot.uG6LDwyz <Ӱuԥ7waݐj.o@Ur {)Xu.r7G MmݮqG1D&J)C'ib$rg/Ѳc~yj41#:mvc/Dnl֛˗a*Mg8`ƊUY,.XLQKMHP2T30; S'~y:Jc9I% ld,Rqc ]E%G$sM`$V g}4ܕ2Poy ӕJ40(\(b-]jWDsSMK@9JuO7s89(;T@A 4)sh'@~ b{‚јSqӯ@.RTU lt"Po؄ݎC>n3j.iMM#1 DoKѴ mFLP ݆$ &6IL34\}{wK03 K3cG/ʫ_~#>BY XL-#^)s|F"UD$O1㗠4+ /ǡC7!J`Gm8{`pNH8cR(U?+zi?> P?>'p8#LE %UI q=8b 4Hs&*[|?P$_sviWҘ΍ .-7:2$@ U&$>0Ї/`Tr"@ʹ<A6W ttE!?(&ASI(OM9IQSa$Dk0#GQ" eRǴ`އKaT^ `'`BI٘1K>@9 c3p/ -Wӏ(W1&nΔ2}{T3'?-XSmÔEE>2l$9TfkDj߶nWwON){j{d^-6ZMcvUtUQ /h\Pz?w_ XW䘍V.uݺŇ}M6e&Ӡ-`n!i,-j3x{X /=ZHl1jii^Sfx -k땮 &jU D#oYe_0ƍʭΛLJzSQ[0/T+a"Őmho{dg!ïC}5讽:k'.8{]X+-GaWG "^9<8hL9 âlӒ&Sk0nX29mW5GIN@'}H-$ Ll^ Td|C "Dh׀B7K%At]~ C;ʃ'ʐ~k_u4ij62U!|π D~at* h oE gғzr[`tdm{DSw]:MT&-mbަ%lcf1o_٤@8Ֆ=9艶|C]d&B il\ǺT B endstream endobj 2811 0 obj << /Length 3274 /Filter /FlateDecode >> stream x[m6Bt^dUZ\//C4͵=@]k7*lˑ&ͯECږ$g83C%iN(2MF'F*BejdRMAPXX$ ZNsf >I3})2"&9| 'VZFCT3;R~VZ'gޜ1'4Ѱdr:g,/J$֊'дٷ1BAEiJ(n<"RDd`h)Chj<就1O:R}0b89%:3MD) b5OY7XeN?fI 1*T7ĆTto!'xizN,,sA`~yz^xnκx"aHc̮^Ͷ/[Uvuq]nj//&nSBT( Jfno8lc !gߣL1^xƩ/Z-=!yW<VB ʈI[ Z06. 7񤡤?iYaj2" 1dDCs"H&P'S~l Uf3]4>1ָy B'Љ)1t*CID 袕 ,.Ds!3=R()!Q11J eF()]5KcQa6ő^vxa%3)Pmm{HH: |Aqr~{@Mdt?O``6ϴB@ ]t0.̌4ez3´O)D;,u'cN)Ny:a$8bm{ I!ET'9ǪbJu*fyP|h&f:Xrƚ> 4*>* 5Bb -HHq[Os0aDzcZd CqJGt!]厑9n>ܜYUj[u"UVmś}+X@w(eR  ^S5HxG&*Bx%UG:9$P?)"<#AAD,t4Ӕϣ%22s ,+4#^QX$)tHJ{nˌTZ`v1Khjl@LĴ+IF)W\DǃRvxYr>|kǩԞ6wiOxiI!i#66a,ԟa5Eԃё^<0jJ9ag ڶX'= +ߌ/{<ߝ:=j^FS*V7U]0C]K.}WvbŔEky_8k\#Wh Ag[}awOON_ty꭛coaj-܃nWsbSۢ;ѰokU}QW>,5Yl*`2b[.ĺҞ\h ø>r/rҭaD=z$J_PuNu/s|lv}Q헕%8UwIJX5\(R`i Cu|yng/y:ILx˶qԙ_EC]WG\ҾÐ_7&aev^%2shJ)3( OX"9j EiվkI,>RjEoVv& Jmi]~}G_%fT-҆:,Wk\rX_,>?,4w'iO ^zţ"/_0Nm*` t endstream endobj 2815 0 obj << /Length 1102 /Filter /FlateDecode >> stream xWmo6_6fɠХiX0tڲ+]nEJ]9uGt;?NV{EJOYMF#e25TY:{e:xRr2]-H*4]wu1:Jᕿ:/_a=›ML>[e5NJZ%vu.|oʝ_7:ߔjc(J"/W~y"Bgɖ|#8خn1lgU)_e_3(uJZ/ƥsu4S~[uUv-h~vy䥆.05x߯&|ل),8gqÙ{,!͇{A^Q `2VZ MKĕjP+ >g6#;%q"[xһϪbo]"ܫ6a']EWؙx2qy61:$ !;I~Ф\AZ@P3(N!ՁZ7޸qASgx,k"3M晠gObxxK*q> 7?HMJNd^ ޽gdȗZpud2x?`:!1)P& Om e['&1RCU Bd7Y:)ڧhpu>ZɣuAP] 5$c}j XA|#GgVA -EycZsAT|{ ibGiruL],dW ƗϩJ\h{>&p&u 'e8pRnA$yY=ɳtDɈϗ~pљNߊ.*Ӌ.I u]?y>a#1Q4";[^$Γw7NpNz;#[a!|qݻ1?o<S1q> stream xڌeP][ր l]Ɲ$%8 ,{p rtwNWuoQcP3Y8ALl̬ %q6V++3++; s*-#?4$\3ISл#@`ggeGɕ iacPb;9$]mAq50 t17u(MN6@YX<==Mܘ\6 k U2@Ҙ6n ԝ,A@9 xPS|p:#1ݿrd/cSss'gSGoG+=AZb:ZhjnoajcojMb ]3ȍYrf)G '# $m\}f9:y:,m-,*ݙE('o#?gV@ṱY }em,|L=;%669`qDh7߿@}},Ye5]N^_&.n;+~TLm?l-|ާח݀q)ߌ%[Gn`couo.8_Um߫+doer ]somܤm*6 ssͿf׫denp{!͝,26uu5Fxw_S `avtދX:"u\&1C<?`/XEXdEqX{лO?^zZXл鯻`W/1lsp*V*l3߷OwSY"绱ss#~/}Oь?=u?" =A7{S7xo +{wxKݼ[{{ܻ'ߡg]]߿?z7_; hd.f[q_+Fɴ;!4KN6&+dV,emuGFt6-I8Amzaq g`XICtO+K*ŝE޳Oƫ|e,baWu[|)N3 d*,{D Gq:ws;;F*Q䫷agRݭ_clW UoiqT\ʘ20)s=3]'4 pT2IåD6/: {HO4?O8 anwfp??TN(BXS,+WRvk,g.c+9!zL<4$u[7b`NwEL_9y.qQN+y7X܈4!T-tNȈEPf_;OEVT0N8Oj1q΁SD"Yxr[4 %2XLfW89qvAԤ_+=M0Tz\TLtzTOӅչL S<Ϻ[R^Ud/\3 ꟾnN3+iֺ)3O6n#^u= H 2/T]> j%ʉ-=vPIKPh=zE1KTtd (!}P e}'F+[\& :IލBBFNBQNtB37nB˯^[\g9<޾I tYnz-,P8Tߜfa ZH1TzgKTXXCxSSI#t/ϊd펣[~1oIS:%&o2)͕VTŏV=캥ks+K,m>YPۓ3pTZA}}AX?;MßFdTW^^TIMSXo`Romj`qqx̲\ZdKM)M1-V) -d=bv9 MI1T wq{*Lt4m z<ɍW!;ZOќkP@&F?# dt1oF_0ͩQhȖ=~,xMmqG`TOM$+eS2p٧HD]ӈފ x2p%JQ*EBYE||$X;")]Җ!9d{(qp6k5dņB(°\=<#kp߃ ]h'գk_PSoGoO ,"-SiDu#҉$DZlȏqc'|`ѻtU{l+BX1]8`8juNy3GlG!E*4/8l&QmS+Nw@N [A|K4ԥ[r]9ok7HLжTDdy8'mJ`+2I{lMPeyي#[#Snv>Z"xi?}-"GҚOq㖈Eޣկ(-y1k:jM,^(R szr%|>o99y%6 r`5ivoi M>Ŵq@ 0ihv˞Ew1>?s*_~u?F w sK8TаzOo~mET)xa=dtt<|IMS^q6MoKnJwj -چo8Cj^-{ s!{/[]Z]%o!Z׼9fAS: Jec0K1l?m !ZcXA@ Y]lFnRj56ka(: +!+[yH ۤF_\:sQjA(QAOYKš@Ң/} O|WmJ| kHj$JpZ_E&"$XT־J; `9hUZPjO**q@6hTp(E5|Oa:7 +S꓁6RtSr&%: NeIyRr5/6j״dn33N)ߪL =Fc&e.!x9AHPV3fQm}. ]m ˕մQx؛N&k1uR܇@ $+PQbv]ȵAbІ_BZ {z{bEhw*]C#ul]D5{KHTE}E'H|Ʀ1( hGL Ic$0+fdCwxϘ/qQ6hHbKʰ4T`ʅ1kD.vY*L 5<.Apaˏ(^tMd>jѬ>EǦCLį R^XD1^3K!])KrQ##VH[{+"xe#DX=̩'\q:jH&,+K}aLy7Q?l-KcHR+Ͽ2W%zm hR @(" zwQ dՐɥ3Nuj#V'vUѭ+<8`g 1&y/K{90??>-&0*/#'1_%hT`΄ {UeArVΚΕƅQJYd&+H>Q;63L!a?Jtr!芚odC}_pE*\YzaEދh\j Vid~ؓ ^z}e w[8LU^xA$*/{`*qmMƂ rvVC_u@R{}h]祸EB:guo6~1 ?0};3B%\)&)rOvu,fgt5V%/k2`,ʡT)KU=d4~X<##^O/,`EA_Yvlv> !ܾx/ѽV.n1'wB4f2 !邲w}6oV¤Hz/Cr~(zh,Z9~v Xࠋ%azDc~+Bh"OQ7Xi5K.x6,NFj3M rVԣ ؊tqNoOkP ּ̑Xd%" o cc $2}_ (gЀ.R¨]j!A ~KU1,* 0FS) 7^VZg!g(y/;*$%xsQsD&'&R8בQV({*R[[pHu̳U>™eT=MF=?w?7GLLj>I2/-udXrݲimC A5V!ss =lEʼn /| sB1JY᛹V8mi󳔂 Uc7Wf\j?HyM3.rim`]'Qt}y<< Ps[lRx#x&NTn$j"T8=Q:iJZKeV]eԌC W,}'A+:U"܉Ng?d_׃.oOhgS՞$;r "~\Yќx5Jk~<|hP?7ĖhxEUՏGϓ'u|^s8~^Q rsJiXrœM Զ^[Go>[=f=GTokV_ShG :$c9ǔ&of[nr&u9zjuHaqڪ%Y(ן؞()CQG/"Vz\"Ҡ8y>kucN*q~ZUK_L]9iyC.Vov&+¹8m<d\/osZӒ.Sgs3.ħ5`թ< #rM|$Ȏmton=DFtN}EtaL褾_CPBr-`N|@?K|jFN6sg]4_/:RO hC1%oZLy$CFR;-LJsQھ:6{0P{JH؋4Udh/H66 QiI0Oop1bp%pOuBn`"xQkQ>0]bh"%!)fYẠBLFU 桱\9P2O>z9[-;51 E p Խf$嶱z *DlHxxH6:,MWvG9R21\/ݮ,+WnG!ѐ(eRyL7JBmbq|`ni)-;c oBU L捍SkHXsF/~9kmyP"5oZb҄~f Q5+K1Vo ?,.5 .M>wCe) XgǰVB4 9Jʕ:d_ CMm T7I9w=KMiD2mғ?(F]n}Ӏ E?bQАHۥ/x45"ِ+ xE qV-/511qMi|jEp[lS%b+հ7IGOj?Kh4YOF뜰 }S.E{>O#JkAHImfdj-$[:`̐] 2r%tP ZΫU7KA"3{i8m-BꢓJt4<@RRJP8:$߱Ρe #צ|IJ~GQL<KGtt@ƪ:]qUhHvo?&Yj8jdHW7~7OTdlX%^pE] ]_Bd"A$dєJ}fc<%mZAFN1> /z*]0@XLRd̔3 p#9Qr1F1s$cIQW~3|'pq5״58 .BEu7Gnit8b-`O[|agܠ+^8ZgSv̖p|Ve\7_]jZ&mB{Udk&GQwO>d(<үo˅z.`UIfĆtnpsnil.H:o`︔RNs~,9 $nPL)'8yDڕÕ3i:R`RW4 }O8PPe|$39D _EЌV[ Qze-lMO"wWҧO<)Qv[{ jdeoz C@/;J0c34zPOus&˒P1̣؋E洚3񣂱ojwC>j4\NmzS~e]QQ:g13j3UU@n)]W-#fDiԢhJj $Þ>㨂t WkSG eaa_-rk4f}W9ҶurtcuyOE`|]O_\a\Zi0XUm-k+saSg;֠^amaE۸U Y~V}2_gb_cOs _IY@[x`tZ\_y&kT5!Gf#5S20\!"HJRsJ"#zFqO+X$#5c&H6 YY$Yv%q\W MqSY0&$A_t` 6 GՍr0*Z^OÞ8RD /-V_gէhr9tۚJ0n֏ QEnXIA*.4nr,C6py=c$sG2ɉD^Q&ɼfBͤIٿ.B0Mi,1[kU)pn`%E`dͬ6;DO62#TQFk+\ګCc 8)"֙PZgCu[I~*+yɍY@aa2gI1)~4P M@yś)o;D-9nkvEC)ok@(*BdM 3HӦvFy<⳨E@1a)$ q LkhPb&׵'__? pC7=i/ʈC@ݬh*3v-ك {P}ƈ>^jr(; Q㸳Wpqki/P$q5E7IÐ5N2:@`J}Hw!],F=, ȽS+@tzw(ʣ2-iWjaV,6+I;egԢfCw=I(cT_>t >V =\9ĥdMP*@~;B+6xsٲoNz,/n[9[hq= *#2 z h^ޡx3]|G6?DkPۇ/hPK&ݎؑ3O VĬako*U+ga2cw\T)*>#;]TTfUhnȐ|0_%^lUҬ4)Kȥ}k/)XB2i8/^y?C1sǑnKk$DU#P)٥:j~_5UY7U E,q)3'Q[ Q!3"qOkgOk x:&!a˃Y!zxRb gd-tNj[:E3jR0,H~[ 6&}ǔaQ6k_q0`)B{H{t{JՈKWM3'hǡ~iTJF7"R 8l5oxcNɽXp.r%=\|V{; ~pb4rG˛d%}2eU8,I@ݸZҊБ;Υ˗_L5*m-@(ΨKh_XD*hPZ 6N5|z  a?+Bfb%^{LBI ՆƏ#R;CwYYavMmuo*]segM H|靨1Rv_ʂ)Ȼd΢e<⩁P %vskQWp>&ƾZ_(8sm\ ax +%)~_O@ J`ԙc6iK#H;v@)S{ȝ]3`ξ'+_)[ L|#G7f`J ~VwE>e!Rד"}up9H(Y(NvoКo~)OJV@ Gyfs(dTa^6p?W_J &~AdIDFFıjX|g7tka~*hT<8/+WN|py-.r,c)~X>HQ5.}Pm/} 䥍kz4,~Gp=2n9)HGufͣ쑁n(.`%+#x)QǺ}N{5!&?ts\@n>]Ṕc uj樽b]1 1᭕|Wz H|&I u!ٶX չXާ^/Q,NΟn;Uri>yFK@Yz^'9g9NK:\$Mo8qN0n'YO{4gVa!h#f!r0.KêXKh0+reRe7Yx=)0U2R?K`A % ؃g2!@_=c/$RKw}|CY,* i?Z`k VX+Q@SP-7hػ JUs|( ˺br Ķi哠=nc6<:ejtVQhŵ0 w5א!SIl-Um;9dNʮb=p)gٔM ~.<&sF@Z\4$V?wqlNzݶC#DOI5%F7 -̖84bSjᶉ,(jki8%Y&a"~uz5 Jj/@{liguWDɘ~a€M̴h\_2Ԁ7Fţ9aw" i'F[,xg,?D'[ݒ> Ӱ/!bG|>&L~ɜi϶)I!`I-p inY@E8>/-Gzv7)O? ?i<[uB cbp\+C{a=R44$>=o#!$ԌיGq> ý25Sb~\?Q!|<fFzjsknqU;^l:sޔ8zsߕz\ NZ3> A.fu]P&8KSx7J#9ܩs*( ִH_?=F#ێN`N̄1`^$YAMdroR$P:ZJ[v*4;OTX8}?d5dYER!B̉hwRIqKLK,m%dYQK_>b^3-@b GS]H%K&l S.1@ ?O"*2WϦ\$4:S,E箹W&[9s5ڗ( 냂dd?p~1C`v~NsRw7NL3%`[0 Mj a[I:=4YHxz$m牖NxV#Y U6f*2eQǭtPLX" Bt"Un7ͪ]Ji07Py$Ht qcfK|6( WջKb4|Dr~Kg}][PiP.M8[N+VS^gU[ۃhH !9M⿞Vru-Qܰo`vO))|_V1 wW yz&,p57@@y~ [H& cG0ʛ aړS)y܇'a8夸{C]cghEhS(sQdq~ħmFPhD-|e:ch+OY҉16:\d'jYhg1cypv-HD}مRVTj+|/)P^cOB&)[,aE?+ٯMq콉8ex˽?rHٴW+yyW멋;ueA A,[p_ɹ!)@ G Xy'h umc[TaZ6野(JMb=HmhI/f`q1_Nm)S?b`UsBy,bW?&Xd9}.$ 4CD ɰLfx؎`%L<οc'M@K4NVtZt} e2opxz,W)_C{}bLD'U_Bk %ƻSd !t`[b"ʌvG!r39gyTc&U4 >'? vh4vD@p}+]o'E^p] &)hؚJ 8|QO o厢x~/ XC]JOM4՜@z(@Gp,Qz~X f80bo O[n%6R(1fy +6E~,U4"6}tcf-q*\ @;Vhmxx!ClIIAܿX"c.6rEa,LˬϢJ#;ri.IB[st?51Qn")a,HZ83Og. n}gǫGh>m!-%[ɮKtE'_??bkPfIH1P/ʊr{ln~D#Yg0LVb]7G(yG 婯Md/Q!TRJWoOʘIsj7,);|*VTW]o_4yw.Ƚȥ|5EVwY8]m64 n)g$<)uU~ǿ$hU<':h|BF1+JMH^"9Q]~[>A\״yMa~];b!қ~MR1Hed]TH֛fZkؕyLlTRJ9ܭ^PՉ==reE|M LF0jOhqE @zVrN1Dڣa qc_Kqq~YMjTy }P%u\2ܫ=dx%1,/X.Ш++Er*[ȧ8^QghNp :>jrAJ;Bp^˫ׁ2@0 @Aٿ a:`O('*q,bJ>(?2RvtQ%4y7cwc%҄rÓy Ç`w%3%&Tpu3^iۂ-hΝhetЛSwH LI+C>Xcb3RmCjAjG> stream xڌPZ !8Bowww'w';'Ν꽢ާɈU脌m A6֎tL9aM&f## =##3%?v2u5?"DA@w(=P d `b0s3qp32hc :6 2[7{sS3s@iD`W:@ don@V'-*6F G)AkhBr7姢;A {g1/yf;TlL] ddm P(؂;oqLL- [+hddce v36[ 􎮎_@K|3hցq!%9ٛ::;[ő22YXYOdÿ/?/N jvN )ǼLA6FFFv.r52cU7[пL9xyLiM@< 㟎ELLcs#G!Ow3o~mc0oflcm'_W̠,*Aou ۸rޗ61k˘@{{(1<)0[8yLlQv6_A0q0 `ޫq)A?轊ދ{ `0;3/b{XK_J22@߻e4tS/_6N` `0|mw,߹Z aiQ=}'f_l?mߋپ>X[LHo(޵:Ct|Qi;/rpG'q:C9C08كq ]l^]Lw=\qٮߵr{%wGς9ٿ'}{lxv<}rۛ%HXtDUa'4܇#Fy+BqҖ<׎4cD~NUpS[,ΉE1廄k@ϱ=jv(H9\ybG:8jKswhٓoq4^Q,Zяk=Z8hc‡؋%E1E&z vD˼e[8G~"evcɄ,Upr9g^^#*2~X8)2[~: 9L^d_1=C#ltE>x59)a }_u 8dFcp1 ͂Si4ױ nw~=GA$E;=%2mttWn^kQpfēLaC4 9p: 9,%^{at&ȸZ8sZlK( ٩>e;恐5\0mѿNgy2X;t<ۘ{s!ȓ}l5w>n}ʮqWE90t".}~j/8һJ~=8քNw4#G\$^~ZI*!p5jhTP\t4s!0ߘ:b'2kJOo&9caH@7i%mz5)?Rr`-kA\"iԈ}.jFYiKPlI27 ~#?0]RlSV֠wmE8Zq*S87o)- BWT.%,+I)rDi͎fktC 4 W-ET*[MPGo[v)YȺKJ''VE!D3nGs1@FVIʘϐb9Amݕ4PJR Vf e +mb8F'|{N򲽟B.t43)|$U Aj jG(a:ADCk-Rغgy;1E fٳ6Q7'9%x=`+<4:VҸO8#} V~\0Hљ^K#^*g`"p3BNMd~T2UF'X? xD%j1$|7ML:sBݨUQ%][VuμZJd叕~Rs ;*tL{?IÿK *FTErw(n8r5H[-"ȒEP,6h:1'YE>vԽuNXOTfHg-89<]5(3tbֽiQl;Td_-0 0!@AiacY=W*8EJnuɐ?DLE]z Cjltʨҧ߽O~]7UqU3OW|ȄV"~/n]g]|[!̜Fh)gF-Q砐lh'L4bRZݺQ:,N5DݐyVw]J9Ǡ -*wjd<JQe2Md|i&|A}7v!ƣ> eql$X@hmys9-gj.)2svUکb9+iYWvB49Ux= K mdTSdM `rn>sZvg+RyA~E"ԮeOeT7Z`sV{a~`q+ O ~UT`毭Wdtj?rMjT59B"ԠBi8.8X'w귾Z;ߦ+D ^߷|Ft+.Kd0,ar$˫xnh{iǾ%{:=D1ߦ̷[nF6]ᧆ0Ct׃z3wi𭅯%vB:`3fT*Ҳkn_'4L5:=%)[:FZ˛ߛkpݹw[.3D?Pu, z{iYO.Qk޶+AI'r^Akc~/ k%mp<-Aċ+kڍrb&RHV%jP _P9䃰K2ePù?~/&* 8XU&G`CfeAEs˅N*I_58 T G^$yHXHȍk{YY^r@,C0uyu'0ô6q+#ǝ[-uB@3A&-q} 1wOΡ\Z{]^Ĉ|fp` tna|PeM`)3tO%an3~)ӧNk CSTሯC!+z2%#L!@X󕧙Ժx$b|\F )6a 8nU_#68ӂ1 3PL eWx ×l-ׂY"ҐwL8 svbUeR-]~!:- ~`VHD9- ;a6`C޾Ǎ~=~p[fvhPަUf73:QUƢ\]s$D[N[ɹif z#w?\0p{Nu.J>Y .\VmHۧZ5%H9e_7!(AH&~J2ĮwGpuc"Fmj? 75)5NLɇd7]O] i.)t\ޜӘ`[yGq>{Lt꫼/?ћ K '}~2kAm˓a+LD{UFrY>}/\R,Y=^m"SjnZ9wjl β^:@PΧ+iޱo=qH^ [y*ޫ(}%j4{hKbYq2)RܞL{h<snrV=s؊' &1:bP&ˡ{dA.-T$q+pH-BM԰핃 %'S(Ԭ}Ջg1V%Ьh5o^Yrwx)5Q!:Mwj{")xQ>L&'4߁JoMt[6w g;_ 2n}&ƺ:Q|[%~ܦ$d9Εy~5;@*_$7QHNQq65娛.}\7+RyQtdWCGBX fȾ:W Aڂ G7l͛Ν1N6/ؿ$HȝlFpدƪ еoFC|ZZ(7-w͏蜐^,F U3њ>4ސn{t+vN[ Wf)R\u;Ҕ5,2ۖp8짾E`KU5Af(T?3]l c؍\r7YC _ u$(~~-b.L4o;D(yn UHc aJakzrۙnD棆KREEWXXO4_؛Jh$8τYAI3تtWA >Z +#JBl vtu/s[n]c}?eެVZde?m !r3v-H|y|VGy6ۧb;"0&_/1 q@GUP^`7r+W@XAZ3~Vgc>VT;N)1y%דNoV* ھ" b+j{Ƣ~8Q愂PQ+@cτ6*kT0ǑaaJx{RWW֫`LE. rSxn@"$s|\ۖy(Kp0{͆#jƍ(G3mF=@C 6`]uWLCopToah,_>AV6U.3HOE/m/cMvHWS-jI@@uckNJ?Cyf䩇h(}\O9خA_f f$H$Xr19c2Bbo(y]:;C 35A$(ZscGv F~cO*@y2ꖦ^U#30ǟ'9(>Y,$͹>@,~2 Vٞ=yAAe0HKiQUeohq)lgtupz&ܽ^V1Ec-?G^d Cݲ|;oT)9;,L_EfX$~<Ӡ Q;-&ٶ:gn  <]˯DB[S7 UnP:dp]#GB%^/] )У,8 [=O&>584 {s}sc4ꈙdž|!BQ-뭱%s%z{a8%4&{nYmJ"~ دNEh=-c]?=Yf YD.KfxAp؉OI41ҎlI1{<kʚ9*qt6Z8B 45I:FfMV9 EuڬШ,W[cי)ə _Вov!S}.= DunNn=ݪIL85 ap|vQn3`PXqNvl|Ȝ#8⮃3N^Dp3n}Y័oZ Ԙtv9]?:BwN` BlBڐ2>!ZQ?? spv §ᥡQGBo*o;jqZc{@}1N5biu?Npwmp쒂KA5|W ;!VOʰ*V4n>ɗҤk;ɋ"Cz6p,ta,wLDVKŜk #/j袛淜8Կ!i7Bv;Х.+JD:/FSuyτ +Sΰ ']b"c:bmt1ުQA.+.p-( n0b BvgDs2B6O cVrkmArZ1B$U>0=往8.8ζJ'>7)N<ߩ͊՗4Q/oQ2?VɖHs`dԆRviQ7'I/ Ȟ&~|+'n0B ;?F0yW; l_.KS$8ߑfc.|!NM  OGѯ!Gf0b&V("}Gxm97~П;pPp qAܿ}7, K%2f nb+MWs1vxIrwŰ: <+b4:v2|˿Zu4<}9Y٘cMHp}h;sCS݄ ),mty{Fǟ_6y3I\EC| 7`2 p^9PĤNY)]ͅ>]5H@P }O껑\'0;xfHXYݕU)wРƩ*0 l3qܳͧ8)τ=ESF9s.C7N^TV9HIn|oYY)w٘!-'\W)5 8X:+FA|e̲DmiJ}ТYE8HKW<T*S<_>t>?¤Xf4Ĩ\$!:L&MժAC5SK1Q-'*ɒ/]ty,t m̧E[sCv {MlO x֜EK4Ntw/6sыq^Ե'fپf5g%&Koq%|PX5XC632]ku ZDTE˲K6{^ 'Y񢈒 ] d( EةR*6vT+掤y/ Lsζ sY4S?Qޒb|2)0ϜשqihV68^L Ԓ|wa%t{ԗe[Vl,xpa\#]x`/r2LOۄR+]vl"aIC5|{=:6 | Zp_~-PB0\PS {>i4H+ԫcGRǃ~/p4 \jOhp:-%l9-Er<a(I3wѿvmPґ?TQx>(ah1~1vȜFx3Vz.MṶc =]y`.|جPD}}n3[CI6TYU]}dbT iv1Oz"6\ \WQ;Ig1&|]VSwz"q=-_~ z3@֤'pFV}x(NSz%f! )Xg>S&~As^]wu) si#:1,)\TB2gl{_=" z ;J39ilMF#VCY MJZw4 G8v '鑽V܎b/e왵Օ<^jej$%iX oH|c̣V/Hs昮K9qx& ;~V&QgӺDeM(apK.H`۩15N5CArr*C dnIlPl"á.J/L[4AM*ɭZ24|K5<ey?‚@aӣ5&3 g^jBA!02vFw7!WL[\4e$cp?&WS1j⡆@@034V':6n)G_ϏݒתX5@AU]Z G 90_똇! %>ylooH҇9єӇTB"tXۄ>QŀQ, n%/V]݇UZ{Z5=ɔۃ[f5}9ྫ*FDwR s4dSDNTb7ȇrwD(8;8JDUJ_2}9fi+J S@lrN2l*"y||/Z{9%V||&1X)$ѡ/28Bl B.Od5rV֘F8%Ӡ6vO߂*Q0{1NIItfQumYE* ЈC01IKӻ84+ Ճh+7ct"^a4&kTk5(R9Z(CvȇyO3+=DQUP%OÉȳ1yV.B{~A@)kϷHGRqY˙$ͤ_-HL _M1y{ Wb_Wjb5.Fyq3"G)%i=Yd+haDrr{ws$?φ}jP4pI3fpNBo<#~| Ϥ8d5:K#KNޱdPB}ꄷUqj&乍#ͱrF#Śt!e&+R!Ou0|yٓݙTEp= X8+ehha:{w~y\\r$‰Č ύZB3aбOVk@kKi7Jf`" 6vdz)|8 45ΎsiT|kv8q9٘ۄzfɎG6bn:]qBVi7. 9lq[5qEU)hd(:='l&֋΅vo~ n<DZhE$R㯟ɔ=SʙSi<)".Pf p4n'F b9'bI0P}!};3oqn!>KZ/"u 8 \xk\#af?S@x2Df, yx\U那۬ AUKʥeyZw$p`ɞGM jt;4R:)jZu0Swkgn>j'v8,vwWڬ' پL5roo]N7Lu,VJzHRcn.j6X>ѧQ}rQJ ~A!O% /n.d5>,W|i_#΋$| ;G@'Q{fXu@sBVASHeܵ ҹpchp@_"TКRnsd"K55wYTw b|`O+XUgzU>Qk}\ ܫ2E#oĊ{c7Pil1/{ Dz='i>߂f۾(i@vO%AU| :]<8Y]$Cu+t<][Љ8 NfZuF/| ySB&+g@Yn_XK^d6r8JGDcm6yClJVhӡ#8B!]2onP13c7k&reJy%Q;#KbiJdW2iv!?8+[\,ؔW|Ko,T(ެ, 4m\WAl>S2dp{7[+~*,GOqb(w`ˢxexҤ%9p-6IS7;4GiGW!%*ABDm`G^tS3bE_x φX;V8_8Q Y$\.%ۑrD7hL'L*ZēH{Ek$t(O{M+սqdCwVD#] >bGY灇Q^쀅Jш 0fޢ:8bô[1QXjcy`~y>UfW"B|̚^6uW $9K; ^㜵]Nh_IFEe)~T>qM7F^'<Bpx3UӘOYH&]UdY:ϺnUZÂܤŨ/a}2%.f0JR͆ha2 .ɯ:S;=]GYBAb =(:7WYaR$^%#W>.p/BK>5j(o'*:TAnBjBk?ʺpք@T}$-}9 dzKx$;ZCMo*mj=Fy=i-͗$,; 6;ydA!cS^ĸkqodtoҔtS#ܷlM"ZUYx?6 `2|wRAJ!X7Oi}S2e]8GgYJuOG(kڰz᳹3R1䃁&442KNW[%52hý0Z.F8v/z:J#M##K_ USAE :k9[(7)~kՃw0Vq3p n|6X;[_b;@>hA wV{0M۶8 U%s6h[7S <4oȘĄ߶<hqj֬>C1NF٠P*:VP> 7c!l(6vMDl_{O)) BV`֥+]ktT1g4:z?#ז!Qg1a endstream endobj 2843 0 obj << /Length1 1496 /Length2 7939 /Length3 0 /Length 8944 /Filter /FlateDecode >> stream xڍT6tt 04HK( ) 0 ]  Rҡ"H|soZ3ykϻ&: m.K9Xu>Ȫ>}!@>L&&=/3& AW, ryɁ\TaP=+W E?ȁ Un vd9z!6.g `` sN8  r;Le {~ydt90)%( x AjO" 1cp]K Z0_R_Uo"߆\Y?nѺ< *a 3OaSt= C8+@< ?Zc5c(X x= .{Ky׀ @p8 a-% \R|V087/㵦v:0'I' d1tw}n|(1:j]?h(82[#uS>eP2˔g=GFENob0gV)s4_՜j[rFrC2js)f)J ޥys%=;OwOYKR:䖎S.1|L{x'@ "*HiHi M-^%$fm¸U7}z팛Q08 (0bQ̻=E}(!q4j# 1U~L^=tȻ gՊ)*Hü`hmm=IU8O&2*eB*Jv ecF>FۆgTq{ur!{=3]E:&~+%Q5hIq o()bhlUIߕ+k9 ٠`UKKܸބj  FAyH'N+Nm݌U8ԗ#0lZžn[%>KfDs*3aẙ]y{¥ KfqHkrXX[{Zш0K[&hŞrG(ME)3H{0ZPU nwa+2hnvw'ce/'K KW}kpbg %QşUa\ͪodiń I|dtU\Z d&/s%P^kY%*}l>H{_B91lqrO6+fCб;PF1`sqK Q9AAn!9p0=5VvuC13Da)v;9հz$v6{kĒUo5EJl4SB Kڝ$)u0St@vHC~&Q3,=R7!#T ̾ܶYu;K+uqIo . jn?}rK(Œyf +ѪY폛މ9l˹<}1/`:s&g%mdI9q׀EAR-S Kvn22}"Rpw[k f*#nYrDrCЮ(j/|1SNXFý6dTAWjP~,K K-&A0qD q7&%=5q!ZwK_I1}^ 8h)m3F,=w9ǻϱO;wjdh3r!:Fbbe kMis$4wp,du|U.ǚ|Nӧ>d}>WC0Ͷw4kIdlvCPsEh!Wâv:?sv}&x#9SMZҍBLoXXk|HPzL 9E4[ք cG'"AV˜zϘ)^rWUM1'Ԭ~&UsU.9V(~4S g "6ü(jN7S=XN{R<tfyd*NHܥ2IVSp6i"Ls(K>UPT} o:/=,V46\z[ɖgǬnt1s~F^c'9άfq}dPBSM՛5W!ꔓE| 2 էYzq:qk;H3ip"C y_fd~>T,BR~ I9u]ߧUm;=FZO.R Hj^Ri5c*Xoϥ ĵr8xk}e$DۈxX*QዬPsGW";1tEḫk1_^V7nc >T%Ş!_v/sy{r&)$%nj,s ԓ(qܚ bw?{5ӇЪvv'}ҭNP̖w碖gcJ]](tDhSS])QtG?,==' A/EyjA;c 4;A"_Ec գ{TrBM|l hnvc]9{~r9eMU|V3?1wd t4)y BmlAD0'afx ⩞FΌDf*`*bPIvA_.~Ӡg;,1c}>ջB,ukHI@GK#U[['f2ЅN"jlYϞny0ĘY:WSJD<-}h ۬$fl-uB^I|Fa'4Wȗf{#J֥$?Ghn,Ϣ[j:t=zf{C]WꛡY$qM>h/JZ2@|$$_0FjK ZpTavr~^kgY>f~f9@X0.x\j."ϻVЕUݔQ\xF#aW)5#w< Biahi`ʪzjQΛ/ec_Ӌ}< ?զ--R7 ufaFJl kY>  z}k.f7*[s@OhD{L:@c=)>|>p?dIXȠa5IJi\F<2aQ._OyK%-`c!'#-g\Xޛt= Q mJϛ3_q"yhjW<+B1 w&*nL .faG" 630l [i <+b]_L$?=*{HlԟrzdɍKZ`,iHNo2zIhթ!HU6D@osTT$zu`qt~nMw׭m8Wϳ)clb #uqھwxB*psAF@r1[Eg*X{BI/GOM:7|d?d֯(hUҩ%v=K'IKW19rV]b<_܍@Svfi?όnyQ,XBoiodݤDBG2 TLJl78>RgCݞaU0LK q)+{sC;-15tֱI\It@i'aĈN9@CWl[{CXb Jdr1Q zηwGGW{܉}C/2y"yN"(8RLbQ3[VDHK9u1Q&{eo;%!5fM!)ҋ<ԋ~cJ "@ 2z v) "s7~7.ghf*K^h`XSJ1V-E^EÒ=xY#Xtʔ[UO0TtUu_t -CmtU025~+$v$ I/URu0J(^͹9*z.W&>Rvu+%OҡF) ?ӊ9KTml$v^hv{ 74W7ԕh"'i06ǎLp*"#+<\X̶D\)|h~rbzNf`NFlrc@K<],JgJtbWJ2H1P!*{2d3YLE}%&hʼnך,`#do. HT;Mۥ5kEkFDz_nMk~;J(kYK› VTMDJ[îrITݮ%>&=W_ nSjX& *Ҋ|S8\,<6{ Ðʶ8gӵ5E><]\'wJW/ 9{gG|n""da"F/}2ui̺$iQC+:DbAM7I0ZxcP(ڋˬjK>[-QtD3nGRzXҧȳd:ɛ#@^[e{]ɏIj*FmjF.{̞Tv6qSEïu 3%T!x b>J=@z[t޶k^wvȡH]t:ꙴi;)],ɞXLQZ\W X3mN|:tRzxA1Y6N#c5E*(bxC򁅬"/Ħ{2 yC7jH,yz"AbM [,:C=59;Y!ZR*o|n5&mu%b/Aq1sund`/JTދh쁊ǥ-]l;TbaaSS؏M0u1^*\9$Ƨ([l(>%%.fġ;6ܳpx!xL:N[pa0]T_F2xݗQBwҲOYG]^4՜VT->-P;cȶ٣!"^id_݅k=ҶlNsSBPGڨS4#TRU)%SW &P<@49O`u1z 6Q%NؔS\A7Qߒ?g~%S]6 b͔ 77XUvW]pyo[j҃^?(nh!!> ?ҡ ʈmW)j5.ʢ9O@AI -6`.< hRuZ<ݕ[3oI8gaU;gvKb=,Fm*魟IlQ>Rq̱w,Z}9eݡϩ_nXcEQ,B+)WL]+j6FŒ>LzIkHAUtMpEz8w2 M+-F跍AEpxI,Źumn*l:KDc]L8P\q /,>}xNpKkĬ8 KKDOD=T;48} uUQ] `B:LT 6H%)C$ ivnƣ?1R|5s',.JAxљ.=xLx*,@ձ Lu0c0(Ȃ:>[j%ȓG?y3B{ƫv%ps`kk-;KڻvyTMIO endstream endobj 2845 0 obj << /Length1 1956 /Length2 12855 /Length3 0 /Length 14061 /Filter /FlateDecode >> stream xڍP[-;!xKphn!hp ;37wޫk9k QRe13I:302TXl̬Hj`gk$ Ζ1GuMTȺXX,,\Vffy@W)@ kg rBp[8&#ڄE;@6 ׌&@k _!-y6Nv47@rt~7 Pڀ#@/x]l^}\lMAUy{";Fw _@;{`>H3:;@k'W+l 4~%U; ) LNN`M2bv66 [g'A&󵲵smM~7bbϤn vpɈg `bgf w )iÍOYKre,٫^u Ēq_!gnޓ~GkL%-vP"|ۉ(djާJMU۳FU"%ܪYS%GhS;M(T R9;Ã+轄];!|5V<f`xKa cxkzB4Džzx4#D'v9rs*-E EޞG}3UbEwɎ:Jn';50N"LmI>"44HA*0#榇ppm}0絢_.OSd]a dF5>ۤ]ݱҸO&9+AB^j'cd:@RηA&XG:'QNC=:A^昮F#l\#ME,% cl0c+%Mk# {3]E ^](~~M̘~@{<!<{7y깰 сTv4,b޽X S9Co6d?(U!3pZ } Our3^=*=Կ&V,+Y^Z㛂嘱|čbP(q[u><H-f^ͧl3Rץэ[DqWȱTW/#`MTuoB@(%[i.zodDw9t(OO' ~3$#!y7݈!-iZHbPiډ'^Է|B  X+2_mM#߁+I Jq:k7Sޫo9W}ƀ-TX6 %0IGq|̕NשR$;ɞg:"i%+эjQ'N]>8)z^,9}c`''QжJ\RaE$eI1ڎUQUxupfFPL,?zs<\Z;k|i|,Ġg}05Aua"[NȒ12Pm<"ZߙQh)-2♓+LN+IHr"e* xO0MԖ*WcUo ,Js"gފL0}>/-ěf][RB U s|Z$ܦc9HmSUG4pҬR߿]4uL_.x9ǣ4y\ HׅX$/b1of-jx>n_ gGXh%ZZH)6G[hE*TVơ骅WG"3ω9[t>mcn ea7r-!vϧ{δ웥\S93T.ūSFHJTe50 OB昞3)(9-w_+Qxs̤=BdÊ=ш,UMŻ1(?ZS'!]78[_m(g0 ͵14{d:fSڙB%*7Lm򱝫%W%LW?E1\Ú !z Ӎd8BD29%rj2PrG?1XUHK(q7&(y?ԃʒM9}.h兢H#ۇcx'Հ-p ;=b"]B4Xb|Al& ax|Z.Hn,@%|2_7Z ؊ƿLhڡV1vѮgMgU_^gy҂Yr0qڠ1w⧉PP#z+$76RU},)<i+z0>z$Ykϐh Z9쫎#tݏPV[^çƐ(?Ş>.,} !5xb]U./IDٕYkkVg uip^ISH }[мżzlaw8Ba}.CKcl)A!A= .q6ʳmyxeNx)gd_B)Uuti d?9RBG3,= ЅyOv;7Dſdh3vL|v Ꚅf1BMk]bT1] !X= c֯*X`&".[0ϡ۩>u+nJ JKˌ1k1I&C Y"޾  "3lĜJlx|k:6d2@Ȧ.̞1L:v\sM-m:#t)ܨ RC2cfgס5B0M3im뤙3|챌2S\pG?*,}θHIon\ۣ)BY)>H]|✓-&_Lg}!j: <N*a}ڸKhcU'sCxd8yz|y ߮  Y?fk;DRa4m-T̸^'܆&K\I.vե,@#2vl^r& Q8Α?4ah˸>vtE)X} Nk-IxH-{K!Aŭ-v|sM`']6cz~ƶ-]s 9_ o#``*u]%z=&i(Pn # d~V@41yMk(O(eQb@)r]חMPw,2Cw2| ѠN_*k#Qow9SbC/K!/L$JD+R U)>._u sӒ&9ͻ~9Vsw@KX^dR}B + G ΅Q أ{qNGq#Kp5tmS.tc״ +8"g !ş id&["IW&0ٻ8$r>[Z .i/pY#ژmSCqxӠW'MlL!NqZ|Lw܁l>/2x۝._'+눆4BnAjErPFbh6oFU%[ a#fM$ӵ}@TcUix:dno.|E}(LVpH0/ke3rM#vp&̑V%l|Y18|}"E4aH׋خSwc2Swq P t*wY>mÏKp50_}h-Ս[YDI[!ྸNaiLR<3苈 ~ %4[I4M0]Zk |SJ%"٦61o'l=en{Z5^Ǯy)EOѢ'$qΎpƐ6_GVfG/9պ:} S[4y(Rj#^_}!)\?ԫMuZKIҫ.BrJM_5 q¯UR ouAًMhU0*S|^gl׺`ޱ,4 WĒDUt([ FvƪL*U=+H=-A6C^=O/fxIf&"VoX>~P?ЩSq ]o vڏike׬7AnD划nb}sߟ h 7Q1C;KC`EɇC//x47OCXvF!f~;P-g4HR*(ઈƻV > wPg!!^֋h>Sq_jYBݎ[mԏxUķޢg+t#h&Rzdk8'ERgm,'ŔUxIO lU, ZS뻥7F]ssF3#j?(啑0n$H\F=C1蘹spTJrmݟXy:h3|a,hʴ}> i? 丩$Lu(R* Ф%o͇(l&3mzPYZA'`eJRP*wH/GXIߜ QVRԧ3΢[9W{[SU'kӹcY2#T諘6%]pm3G?CK&}y RM.|?J:ͦM}5'Z'МtK??2 BNuLY136MFtTHIJOԅ)*kQgێfXfuarQy0HzN1J/kŅ&yлX #ma+Fc "(J36ė`uA,K%;۳idf7z伔vX"1R"<5VtX%3m Z3d/E.3&Mŭ Dh( Q_,%8-Hw@j*NElvn GuU6DdZ} 7FS8t2 :nK o"=[eUѦ?BPq 7} X [AՐ<`-Z/9tJMrCIQp;>eIpnx#clO}IUA /ruT29';t%}DDx~I `ߴ1yfVXkG:DM3xWjn Mlb"z@t,滜}@♥b7߈ O)5m'zɘҲ9eQJAkLt-nR{ [ĎԮS)#iG-%+D9Y^E{R?2ajĝItIDv7E U}(Q[(٦vK#"QGIhnLA܌ =*%P؉3D8շ: ̌nPga.T#\|n k.8|,!iTw{":hx`+;{ElJE %-S#tPw wT2Xqyr14$ߝ_]aꗞo[ONXj@W+a<_%: ,1q4=6$ &D}%ChW*D bF 6?:Zya,5dZb,6k?~k|.3J`5Me=t$e_Muܫ3Hj9#Vw t kZϦr>#P)D>ƒHtV|' @fcaug#`t.n{_,0y{#򷙤]=ߧbd8t&/8*.jy3 aEVӞ{dO jYy1+jFalҝA:APMGEJa[nr熞y8r]1FwK6M`KOs()$'O7R(8,yQoE  >4{.u`C#L̍;Ħ w37qM>} n)(=ٻo3`z9ć:rMZ OLڤ *t]8S-*r`UwBÍ MbW$Lb`TX AP! -B4QސÒ DzV> r>a4J0){uM-~FeHC0?:ˬdzD{D*x6.ju n]%`,|V.sy .b1weŽu+P0T"nVnL\>hV cjb`Vk{d46ncTF~#(ˮO'>o󾰄r/m3*HIӧ2/7Z墉b %xS,!3J${1e:2 _v3~ 4Y .wB KqJy)V%A4͡))J[$MuL{ǼaH Ooˑ@nxM=ĩPoN7- 8OLfSƏ|jq}`kiwmpǜb(Pj^%x-T|`1? /HFG!/|G:nΖe_^.*JaQ9u<9.6A7^&l-/"<i~r?:޷0|:#HRz Jsu !˄lXĴAwR\Rى]BfCl:*={$9B3w BW'9ŌA&_U|L>9O3)!qEۦVf|r- lh`Fky;ꐇΔ{9iضڢ*=Gѵ8؆ 1䰫$rl\gVdfpԣT3guw@;Ny?7* '5xPȹce/AϘ)lS)-KEm“oGSroWjZ3tu(bȇ̙92q'FL;S6ўp|o LE7Dy6yL~x?T+ 3Sru6>*U4Q}m3Tuwwz|'!1&㛆_|u\3{\lcon#GQФaq屩iz-|VHSŮ[({Me+țwv*ؐj2N8J1X&EܫD7+T1R@,*Tè< A+֊ؑx!4n9l;dW`'K#O9XcGi4-$?O˓&xX'GƓo$RˍKʁu>tdI[:mO9CXc+K7ZS!=| /Qr kôSOzJZp߆!~.z,Q[0!n*U*Z&TYj!0i7ۋA)qЕs 24zw՗ljyr ӗ/?zRJ)r,]Q8TH Y[{T#*+Ѽ?Jmpruo//ñ7q`*-tHg]mfr9ގ/Z"}Llo;Q+1!Yduu[#6ĽVcɮI2 iJC㖛LCV `Li:jXB|d 6ncx3kuS4JUlF,EF`H8aGlrU [j{=a !_\rEgu$" m>FWsX8@=հѽŮAR-T9oǑBE.]uL)0])?HW+spWټ+h&-E}.+8k[wO1ib$:T3oOt1TM AIuO)*lQl +}%Qz-x(܄0tE'_r#6^n8 < m.5 'Vp\u7>m\ I^;@Jyoj{d}88tץv\%L@&uvPL짩ɄONY)h1|6O{ARl+aK|`X)8ɾ"&pB`(ߨ8:9y= xZ<\jU\kNiT~3)u{u5`ٚ?=[COO-O҉ nQ2{1yy¾;]17t,7T|t.q-^a0RRK,o=C_Ѭ.Z7k7%M [a tE-cج{>bj>uS2؁G>= %k7xע (Ilͼ Mþ%s1tRgZ:Cx#!2G @(VE~/cƫ:lyᢋj8ہW$8[IMW}6ٽlF9WViEtNWq6RE/17ATk`wy:7 Z4MBGގUĖuBзy'xb/JE舿brxXFwO:yܺ0KE4*J]GcK}7>IZQ\fHޕp;euj4/ ˈ#2 $Qk DѶN(GzGրe %3a'z<:âu`^B~ƋιA=F,:4I$^c$P4 A G3tmZɲn endstream endobj 2847 0 obj << /Length1 2381 /Length2 11052 /Length3 0 /Length 12339 /Filter /FlateDecode >> stream xڍTkKt ]3tIt8C -ҡH7HwIwwpssZ.ւyoxZ*uV1S1Df b $t@@r`j@!cjA0[4$ `$AQf w8 sH]E6<A+sw[8=F9@5NMu  ! '';vvWWW6#\ uA!.SϔJ`ߩa4,u+xXCM &ζu9/eX_?AmML`6v`[w9 j (K+99?֎{ j 6~P: - ?dw~&P;'G6Gyf)[S g|Pý]\+[̠f?0uc״;C$ya+38<<=fb w;/)~f0{H 5/y?54nP'n'a"M!nf sz0< 09`)lyP{d -vsb 1s sU9o??Mß6Psow;l?r޿b  Nw/#?yؿ9;Mv`ǿ [EM`89o@| ䷂n[-@pv䏸C~ [dO3u6q@?7ٟ8]/{Gg_;O)?k`wZB\߆ݜ#rI#&:j{~ i`eU`u+ MTFV9foبI2Ē:p֥.EPܯA iHPmn6و1;J3R/VMUCt뇽b=| G͔bc3R= K1:OdyϢKTfv2"WNVDʘ*ِ>[xxҁ8 85C;?s',P4}1@WÓƥ˦Є" 㳜6 o$gw&R<QmZ(<2;;+4&޷:.o" 炯#J50Ki^Y~zH;&Ok萉+Zz+TwcM+po%QZ"z:ݧt9~KZd!vk_F^NJ )`jD(Dң? ^px,H8*CYgO e5wfU4$^p0[+^{e7+g|\1Ts-mf wFD H SlX&}RPjZ+H1Ҙ퐲﬏ӥ[ &Z}tvHFQ+jc-[b(r_e+ܟ=s@Ƭ!cctLA?Z~!LX 3Lr Tpn-nm8 m &PWWW Q/<ԏ{< +W?ڐS(Dl"TC‚-S2ct~[b6Q⭓L|J/Q^S*=!tŕOmL/Ӭa[T}ܔݲW#QdaRnlzy5 5swv(.Fፄ+/v#Ŝ!7k 1lp (!{;)/{;4tXDJBex} "V]ϜG8孺&koK!ܘm q-827{iLP](Ţv5dg6"L~uT;tW}hVm`:9 9WhkAiTGos0?P>oֲ}LvYF;дCCWccU`K:nQ6q[1>}h()pDbխ\ xQU ?|W$Qe:ٌ!\!| U@ ~Q:66Kܮ#b砌Y+V IR+= oN$1H[Ak# gRҩMKz*Z5>, !mԔD<^ٗSOXpsj07~87ne`||F'-}G|Erw}'ݏF-Hk/Z+H̄hKz5]C(oTAJT|D, 0HNN̬$(P ˓H#韻kʞ?`8b(u ʯV.h+ O+L|O"r_LE#N-Q> _<|e;Z5ddK>K0q3J~)g(9S>/&0nJR&DKٸ6$FHVo4H+ݙL[8 8sܓ)4OfN D +af%i.kwz?>X>R2|R343j8|A%ѯrSUzJY\>,tmy 2jJn'OZQqRêD4gXyB7i:^EItz*1t^ʺL{DoiW(őXaEIp8N;cE S}8I^xaAcSkE8J;p0RP=f`]GTvFmu-6Ќό}9w ;B҃E95~\ȫ/U 2`R=٧.432szl F8JnV+? e Qk}?m )A۬j(%:ϕ-D kh{uڳ{e'p<3p#[GurPj|'&` R0sƣwxI~p {Z0m=5no4 jZt4Sbm/X7WrB7Bj&#c*UOY+F0 H2H"E5 57R|Y)PFƙ [,ߘ'b fCV,$0NL'ԇ[,q*_͏DCd_x\&amlգ"lJ>fQHM!4F*E$,/H%fwU2Ɩ5r1.ߐ C n,:6\aPeU<`_%}#czE'rxy-C:($em;^ݤft{NAi{BXv#t֕QlzX UJ+TY6*M35χJoUxO̿{4d>,)$ `tzhqLͰd&L y|1U=8k^TTu\tKlvq1v[(+*v oMc.kun$@#$KCxhDq9|c>"{&sYT)M0t##q翙].x?nFNI6-}(ǻks 9,]B<.,ǟL%oN]J^oFU*`I$鋅-zr3$yd-1mE@hAؼta@ƭ8 GLRk]}Ftg1|"FZ9'O uRxcrz$nBj“~ GMƫn-6uՃӓ!pE[&õʴHc -~Y]vZvT {U1Og y {MErXtMǧ z69ILiw*{.Lo Ѹ$oyDJݶ8W&~h/6t1V\SO N2G*3]Y2chQJ"FڎO~8k}?QLI9F}c" <ġFgnώ[R^p9.J:yl%kHw# 3Q>LY̶n<9xxbrvSfQb3o)w*5ְGzwޝ~nqå"*Y,a nb:Sdq)1XFO|ء"8qRj[,׸si#Dc{,v_kU Be Wq";etk:eəOw+DZu-AgY .ոKm~ojH 2n𶝟v.J#`fIUІW!l̑ ڷEɓJ&g4^8ۙ `G]"dxyznCę{Km '{-я?qQSO讍o4 Դet18(ݬQnuOF~Q(r(B}A@.1GXQ2ҏHq.GPE~b_%04]Fk3\@o1s'[!:C WYZ܉Lo]a_,Ԉ=d9^Xj;Wd2 63""ʀ!'q MbY{ a* L{zb15D~ӗ) nV;Er=1n/wڰ-ߍֻ7 #0tEו-kG8km]q$ a)]BJ9Yۘ&^潘E_[ȳR.#B<: 6\aiwcg\;Ig+#xv{?ߣձ BGg4_u2O̥X,n %ArAd7آH (Z`99o:%"[eR'>EfuϏe-ܢxT~"= ljmbR]Ie31}k_S5:{wˈƈs]CyK滲QREcS(6A=M/k5uo\=lbR,Y\dBL&ϱ'=_JMI<=~( zfy *\z4pUIb_$"us_l ɱ mGz7hЛ3WVl9iN#6a >Nv:0WļMtuu N`z,)8W2Pso>)xp&JxUsu f #kc9!4g%Q͒X&/y\.{f"<Vոt\u2to(9e4KkȞZ+MHQn?H&Y͞X$ {j1{2cKh+o:0,E=>S' ,JBbu, SDd&޵zJXBV(/ʼn7ZotV/ 8k%4KdSW85|Ѩu&_PO8BJW{S[ Kvb:5cK4*+n>RVI(:Lhr a,ŗ:֔̕vU/cI肵jlw]$gL3;&N{N(qoe!#:EOvߗ6*t=goS<fPo}c9BH+lSըu`PPG{M(>yo qi iHu^ B .7˭x#}v;PJXH ;*6qͬJ9;IB+U#JArLV, (XkKhWW8l{<>3!mY02ҽ5|&"<azHqGwPB?(m=T2aucK"vv-9z_r4{sj6cvS|ЁiS)C2c1y󆌧PɅ" 5Ugg5{8;ij3hz!-3l )jk$ "I\\:[IQ5D ̈́ = _h Xg<^u ȾJۊ-w*}]Ӂo  j>Ͱc>][6PGB7b{qJuElELq7{Yg00JE&\e͝!KSpFզZ/~ldr2#ċVjiO@EItX4g! \,F` M_z,%Ǵ!h,yë"ݔ" d19?$Q:7]{|$p%K.oki2 Ϊ(Whb,1r60 /t 6ȦgPMPw96!nqoƧΪsNW%J(Hn;Z$t,/L}P纮K)\?t?p|z.1 9#ΓF.rjXJ7=ωBy4ve`r_ {KB)KlלwQHms&Þ2N^KxM sUnGiHK7?L] q6We&˳I g8MϮvV5rc0h}Lj'TO|ˁLq^tT;җmj>4TRԲO>7'cDS34U:M+wdf ݒQZBArvlM:k6}]|j$S/:xM.ys'߅hM%y|fz4⥴ f\ "džh몮Tj{Fףfopj)kA7tOȫm78=+zjCNZ:Ti}4.)3,%ށ~"xvw<27J9e <\%7,sLSl=3՜A-ٺO*jdFfc<'㔣|bݍg,adV }|B9ѹ58׸O9wZ)`BK1=_D|MZx"ōJ<~ťY9i4qB_@S7펑ATեk hichm"-Z .H~@>CF-.~+PۙU[=hg}guk\A0|d`8I2>O[wTk)6zA4yI~.WX!C<{+N<|N<|w忺]"Jd` C$*(9UyXtdc$F|nث5'(\șM訠祴@g2Dƫʾ{u 3YDHQB|NmA2s'3sk+/LLpH*)YlKw-5e\C"V X_^j2%vW2:Ty]޽g0"LJpyڷ'ٚ!u=A{:M>%7bkk; "^hQ>dn;AL{yۏܢH*I ww*[wtвߩݖ*Tȟ|G:5.2]'hjܔ[>[ `jo<|zІ:mZOܗPq- "d|*0zmgw? t6Sib+Y޸ \oqLJ% tcjާ~na\.2 βf;-M:Z~ =wMPbC^cd1KÅz endstream endobj 2849 0 obj << /Length1 2613 /Length2 21999 /Length3 0 /Length 23484 /Filter /FlateDecode >> stream xڌP t4+HIwH.ttwHwIHwIw#) )gfΙa~wJ"ƶ [0#+ @T^^†DIfDrp4KBChb@0DP d`errXXx#h:26 G$JQ[;7sS304FV^^n" s# @6YC<F yo130lLi.`3  2N;5&$J&`!Xl!*N6 ;@UZhܿ.ې?@##[k;) Pc@߂@+G[>hn4: ! B2w~Fv`G&Gs926)5;>1snn4m@bLA`' 7;'d1vf `Ien|!y8Ao"$VV`25AcB C` f+O 3r#O>غ<l,V7(_6&~ )bv{ChkL2 ͟Iad1a<V_'F$de_?|ۿ% -dl&_+26w\i0"6fd`bQdd62{m@JO D [fd 9# Y9?A8mlo'tC48553f& `b\fߤ!.?,@F0q% V`Yx w?]]xW U w?]TBĢAb | hBbAE 3CX2Çjņ6/bsB_ lB3YAN.d+_"$؁j7Ƅ,%w ı_ $B6H@;#$O+_1@t~H@bvY?ead7O!!\[k߽l267S9NHvhkvlB._O eu0 &l2;:HV@ǿ: I 4Lv 翦b_"]//?NvN~@ #Y[#@*BƝp)}q_2eK$zY%,:>fخ%qH*oJj3r =qCD6􁄯СJ3F'i*%'uM| NLPB{gUQ.Mp%u֦utVNXB;8Je^~2;g`LqA"1ו_ Ұ< %Jhnk.̶/t$tr$Dt#ƴ[␝nB 0 ѓj.սZIl)$83$,=H '\ӫ-$* s[7$k?՗kiM6mV5efߏ)hu{=9jo@h_&+}v3-/7QwkJ ]k|rVk9̨[>ifaGx`$SsYVoIL1TBvhm+;s_L@;\~S}0 /Ɋ2",#O*Mt8_qx17̝vͼhPq#ZE/>NUN !0e]@#n'}1|sH#ou&1>vuŁ' GXUw7eȔ= " }h\NX,j>Bqݚ"a6}²{f<4f85~ۨZ ֏ W{&&j35F VZsdfЋ0K;snB"q:ĆZ~g=XĜFYW6dg!Q*8d2'U{M&~e2L{HKXvgWsEͲqz_~cj | [8Ft˳o^rGSZsrFJ7bP ~ 4տ?}l^ԿHb yk !XKQWbMc5)a6jy]&7yDى4 PIݚ7A >tP)bX>1Qq#W`vxw׀f2n {pɽW'DmU0+Unog8~cHTkhƠDV!8ɜ]VY,jm2FYcx C0+X0Hhn5.Q'`bOTI@2py;AV.ktt)QvB [6/ $'jxr^̂cX?n]*>sr>%1|UǕSz Z*=c~:(?~sN7gAEg3ŔE𵡑gEx~}$c$iAy<\k}\m8oY X^RͷS.䖣b"U8!h_"}knV4[rMlRS“t1j81KM0I]URvxh@)x2n )@q 8/aXGԪ5&94e=}'m%y.փ_Y|0>p_`_Tnծi{a7xr~qPG,Ifb罹Tװ9 ̇ Azf]1h1L j> ֧)״>CMnsTtCm'ƀhHJxSB ~]61$ٌ%ȒGԞȀ{&U*X_ŌeO ?ےv*')? 05~̮QJfN:q:!]&z5Trd}ybĴlmiO߸|h%"'B;y Bh=- [i=|Vq q9^Z}j/q?v7D\QZuF|Q4xYUQk'\"k7|0o>F<Ps~pG)֢ܷDo^j^'S28 hS>sjbI,%zt$Ilc2aBI-{SI~8lTbuJS#B2JHَ@u,DF!^'!i Ev5 cnEBjI4ϗ`O[nBx︬uXRWlֲ2p*VQ Sl0Mpڧ'[8j˭?P(*KU& ru},Ymw}BFv^v~fCH:7:CR}sF[;&3coોg4킧Y &ŠYЕƟDG^+QLZ&@tY)N?lt2ln&rcVj'3liDRlj_M@ { ˖0w):r@d]0OtJju`F x5͕ʆ6vҟ=1?<'4(CYrGvc+Njh@J#+7s9^֚u"c^1 O=80ə[qݥV'Wt$ $=3G3nQ9TS7!绒fEwIbS<(>9^~9";0=oEnh5n|7 _ ~D%Z-iՔr/#"cg1DUaHWp{ؑ҄rY=<h7ݵYeG6{gL|k~+&άBG]fqN/it rWχ}ڈUH3qFNOnM*~1_$uCa~5hW'=ۢztY#iFPb#q`U/ĔpEw(+5а"Y4M)iĖبR‘eO . 8R>HHF9{_kQ;p sC~Aid@Q?cShU8+1I8V4l+ / ,? 'XnΑ"S.p`(y ȮS uС`CО`vco:R)1v߈ ǫ9ݡ_[Y (WɌ cs \"iٗ=P /!؈Lkw9+nS# }uV(3`p=#jA l+"ӢY9Ba QwWL>Vp_>+A37ٕo^~=zx^6!Ncb_1;t<V~{ض*rdIz;ŋ)*pԯ\ L$nXd] f{ Ӿ\J"bHtV{O;twrWz c+!Mb_Zz3T.{ûČ&h,Pz~WK>><ܪvT5aWۣ[u)Ioqȇj@)$(`jPvE5;`$,\ך>ϋ}/Oɕ;"^#x9:nz ]p-ѝk9\!xvZ"b.:^[k~$ybJ~6F&/jvd"TnmǸSA0I dW_W#tR/X}Ԡk,g8?:'IEU[jqػL pEdp}(9Utn:}Y9Hksn1FS&iaLUBK\=gPJ-2WK4/n Ql.M<61WkJ!=<>Zh7us%񃐲zЏ̼.O*#9W^af{bbdsOKQq(Ј@G5]C2aCL桡++E'8h2Ūۨ{fɄR:h dƢ;Lw[΀Z2X q!y¼[&&!o+3[(P  YypKZiR8C_vS(Sl(SЊzp8 کN*U/c64{homHcP2 2¦HQl6aBց\UQDqxCAy9G8/)mG&;iÓf.+hQ>YJ0OxՊ^k5B[ Nz>;T9ׄRjva4;:u^t?-E [JאhxWbVސs`n6embT6zNFUX'F{ `}<"-Kvnh5Ee3 գ5Ԣwٜekۮ/HWrG YlwE`ބ=:iDaQź-nBUOQٴƥX*aSi;攝5d^42GrH;yk:wLK?KZS"36Gbn@˖c=/ yt23oZ.ܠ FC%,!1_.EwTIB[97x+Hh{eJ/7j ߛ|Ag$dٗ]+ &E1ǰ?PyMDZa5|پ|!IS}9 v櫦ʟJSºH;Z:Z$(6 V$xSq jvq xzv&dX$~'?$KHxahB4oyj^ *pĀcp_"zC|Z[})qL$S9C[baF1mm eQA^Ȣ9S'KOFeΟ#G P=ȹ擘k[U®]Xݮ`[ ; ' pF;z5[2mfUߚTmojT زy;N4}ނ{}|kA=0e-Zה$.X]16t~n u=_1L?}Kipv0c<UĎ`a8j 띇^ C 2G" 3Jz$XwR _fRlŝZP!y9?_vIbTgċw@Z M]>!?ԾSDZ^:WuΐkI9H31yrBM/0́K6wdQ7c%@?"Q d$VX: b3 @.˻pcS,c2A<@pL⮼}R3 4gGAz*v~\8bh6`/^>SǜElhG6=F؟,f]wWs3 / ] =6׽弥_I@;X/:N?3\Aؽ-5mttj%j EZ_/"Mf$ІM"Cf[ޢܑ@G%vnYv;K.hbbZ)gEc zc[R - cF8$x%ӎE 60^/;2J2F&\{Q?}]WNIPhٛ>U~S ml.}zPJMhMl[/-k#G%kzG2\o̍.zg}uex扳hO`c4&q>8bk! \=uk #idex\t ꯦVh%]Fks2uf/V}Ӱm$ʨq &cnuċ{>q6[Nu9V [E8u/Qʱ\@du Ȫp,GkYڋ[9p4"?/|Q#=qOVqH\=Jwؐ'nh(ñth&GCV]#[(FC6×3}TƠO.8KLMfzLxV,r?2#4gN#0~age?$=(%*o6ospFF-0T4%.}ojf鈧gHZ2j=^i +I9McuȪM\U)̜RcYF5‚jRPnUc94߭[CLwZVXBEЛ |<>Fc)a+K/98E>>=ASr+ZvT8ضWJCT ƳðB/'vP1lc>6K%?]/Y klr$ҍ:MwΑ%Dj?b~Uy rKӣK?O~,sFB'WŸ*M \&dp {%3RŲQz5@7Vmؕ9k4pn-H>ccJM#HluI|^h61I 7GeZ m ͉Hʂ'6(xoZ"DZ>"?R29K(32bDY̒nZ PF&-CJP'ѳwm/0aRG*\Z'WB5F/(\oNBj0B;wnVBK1vy4Xus(m 5ЍmB`"TG^;''bK»~F|hhoV)AϮ5ՕzI j,?n;p30u~lH[| Jeuɮ߰}}T~rdWtğnEezjOxl+;~*:jsZYESR,Qk9<-7b⼯M<}G)=fIZ)#W^Eg&y.gmkC-59 H/Hl5vG/+_QM5E33Vkb߯>bV<]CO^\%K*iaaquY;tX1gAwNr05[Ou׌fa?ph̜)+-뇭yK_6,i 񉩟yɈ((E|Y[Յ=0s(SHa,`C ,.61QoF_o&#N!}IҗR4Mi·o)jGiݶӝ"T'o 1 5GI;\1:}D1BW +5K$R)WL޿DV2!G'__Q@E-&jk'WZb'LNǵhs֦| eChS^†^9이$^tT>XßpY5)1\l+Q#ny$iǹSJJ MOKt.*V/tJ]xXŨZ$=-TvЛdcxUen.;~!ga/̻B˻^|3Vz!˩xG^9Dyuv0fr^ ڟKuaMgᫌ\7eˉW/nX}Z@*ݢГፌsTلNØ-sQ2vZ(V珚Z~LKt͟ܫcyiBȊ4fe]ug|)Ƴtxyn~BT>M{>̝> M-"\ݘ}Y+ 9lbkIt]G>bBH)۸bke'I0{Ӓu+6_Hp&;%te bپ5Έ^ Ez؎s޴vx~J4 Jt#j6O (ꖱ:G@*KYCqX3};3oϨŧ*$$Js!irFwy#V䩺s.{CbM֚Y,; eO`eJgDpmDXeEleI%P6њ8]uZF0IH.d[>PF;-U@ 3}%*9u]Q6V[.9 ,}WWbc8.<}ViHHA3:zk˗swZ>FY+?"ng> JY6c/}4tbp2TEv~dnU(5( nZlrag{a~ŌcW0zQƮ"<_Ῡ!OW9McE'=pO4h׈7\d]QDGu68.O\ `64)pꊶg&j1ј0Cy4\BSlEIzgqSjL/nn6)n}#b 邞/הϵӹƃ})?6988i`N uszhWܰMIh~zlz07)b1ۼVΥ|0b .ɃOc|nhp>K:شv?a}53 c-|vq+rX4$ m1&;oP8۹n??/jU3Sh\E(8ӂG[NwKaT nԛV<W!=noTSn!=Ϗ~[VScn/?17=PJcnuubS[&¡%y?<.8 Ĵ`>{t9%GJuQr#}* *sYO/CS֓kWfT1.ݏUWU*}P?'M$5wBƂAAt /3O zK%N~h\ ;~Keb gm0G%g8W]*f.9g>+eIxA8.`\y Ǘ!:.W?ި%)1#[i̖YS0hW|z k(yצw\e{#ܠA~`֩ Y5azsyrSQ8uAsyyռ篧2i~2S60{[tu=&c(n$ej5q!-E$psxvvcً䕮GG%2p)11nh$V[G7@Os1X 6D:W;0:>K~4H:~^n oDki2 4Џ4ݼۅ=1 MbeztKBiNݒEP& ^ H)Ź`P @ Զyy7!4v;Eia*[{@m{T_TBp鵞;d u5MI 'I>G$xx@LL>꡺3J?7BSy&$FÏVhs ~53Ք#6DLx00;An x/N,ܘ6Czޛ7S=5Zj'ʩO{%Pbl>!3)@K.9ޚMM؜Q&Biv}dBRFO>Bd])hA7]d>|&&>Ps8bdRry2G%.+P x#HhoYQfz>0 =ǐQjg^vGc&U:ǧ#FWX+?iTF\5x|KK ;xISWQk ϱ#?꽧7ⶌm;ʴoq5 &sۿ"?[0'HjK77dcw+(Wus/{(c_ $N *VL3A\#_1;+d&hiܨLZP&֜Ye\[}{; ^b`5q+cct%Yw̢}{bjjwq܀cSpHՊ( W Is:c^/}N6əeLhC'nDsB u_o y - g[eRr6>ii1ISgF$v@O֓a%# iؐ Mz>m3&E0vp9:p~bZ1)]r+;#l?ә6uA37ڈ^N_nF\;5n$4 tJmogz*rAM{ؼ'ddթ$R5iAuIF 5pK;$\U2F!o++_WJ[5n`lG_M9$G!ڝ1yM/CK(4X̹`$J_ >^ԵeԱ篳ƼЇB<DE0ۋ&;!pY2I1cZR,2b<*!IBٱRe,U K;f+|e>'"6{}V$ɘ3苮I"z YΏᦙU$?xϊ 8þ֒TxO$ Y b@{ԛb`XEg/D`Bv9{ \R$;vZvClЭTL ̖vE4&@!;jTI @t헡y{O(_Z}g5O} s@~Ѫ ?6о'&fp5U3${WM1~'?Jr Ҕj{pIPSW,3` cGh]`t,`_23\[UzIM_Bp*xٴb+xAu߳~]/wVP3,A\WdP_C9U|4f$ EQTc6[xv-j iԊj; -٭f:⠛9lt<_qNӓX]X_|fnU.AG#:YO Ba-Q).xiŌԭ,'Zu൶+!'?J cE{GѨ,D3]%n\Fz0cEis* y@ˉ wE |-]ߴ`vet=G} ޽ԙɉsAGsy͆E܈9zCa<H~i|%vx5O\*+{X(}z0'u m$I7R 2p!A-#{ȂxS%J@OS"s#RKdxV%yb~4<}w0*g^ O;\XCCa&jDKk@ZO`O| ?xWc~gOR 4H =$^,p]e۞wMXju|GYV\#{P[F~9UD>K"ow_^Ekfs3&fZTA¤NlݨfY]<9SÜ't{glsYP/tս"#AQgpr(ekGoxqn+~3VK`xw6vHK2Z0/eoX"MycJ5>e9@h<ArkDi)&z:3BlTxEksxWuK+oPK m-Ȣ!jS&XH \wtaǜx- ՚62 Rxw%kCtyO|200-_Tfe;(^~̿>ML ic+{S@ jMئ"sDTwwyww H8-ƒ_" dN?))*\9ڙJ*"xa5wz3r7̬ⴷo73O`?󶃪Q?6 G4}e7<ǂ8]"D$y91u pmg?;ͩxL+ŴdZAA`:-}>1hP4Kꦘ*8PTͤ> */o|?̵y]4w\eKL.+Le\,m"Pᚲ"+jr=ez' mx"eqGucE7(<% UQ me6|R}{(gOF2Y\%!mG6y?g4+ZC=\^S,uѧ?py]iPu>TQ9# &K_|OC~8+ /%\}=#8%&liMdXBRتȩO̫|B.Re1 &W^ъ;%Sj ds)pCdUc+*Yy eک{E&6 ?Od!]}Iht9Hߥაi }}Lkԅ40=Bh ;(|Z.hzr3BÖG}W~ND #AFLjp-b ?Ŀv}xRh:S1nJv6ZRb ތ ~-4KB~ZI l()qXF!L Dk'IX6_YA꜄7.w3Gl $bhmҶ/_ Tm[Iv®Yw`dgL33fpYy#mSUY nudj0~'/Aĭ:L R7P8J'Pٸ)3x[Ԁ26Qz\7z%6pZ_C)g[G~rVUGl mhDP2tnS&{v{h%UK=ѰwU.ΉIS3*㑝xSj 2 Q"sX\V)qN\p! XR`2)~CCAq:_dI\hf@.`rʯÆtpNauAʼQ Ӥmcʙp'$?*9!1Lh9dbt ?+[T/Ԉ!F(yyV 1G$ǃ`qA)'FICeE#2J[%y.$u?F~3\Wcj 1 =iCb3㝩+)G+@VLR+}yizִvҲtUCV~I[u(̽NaqsjꛀX '( l+Y4TxC g{Hg %#5.#Ю,sr\ SΔB=$BIĻ/O b Q87*׳ `YxuGتepa=))ßmqq^}\v%d ?n<+w=szO?_@%H_7d,+hETdu:o'25@W42~NeH 6Gv KCfNSb(C_Ȯ^x*!<6/p.2ew vu"0+AhDyઌ&G40g0yͮ1/&R_X %K'Yi@q vD2,<#$¬p%0( |*{l4lbNwQDMsV)I.=c02܆\[M@TnFbYIB]l\2gnuĜ/̴#h5 3tkU9`cpg}C)ki!*)/mD:J-@s[{@# sbT)82]#}G+E YGꈀѓM:;.г~S?Hf*2V9zC e^OQ?up N$Ü6)zg׆u \C"H9Oti>_¬JccDZ"+-ir$oT=~(*Y[ ]0(h0}TI!FO1yrW *A@#^3݈9:VFŪT:zE"淘Z͂s^Ĩ3O]XE< rmG6YT;x!*.X b$Aҩ_EVTJDA|?7kCo\uN[*9CE4RgS1e5a^Oum݈9􁨠P5V(OH3`f417G#BgZՑT7I`u‹Y2Uw'>^/P/|1/frHec.'( s?XW}JVі& @qW7-F1ց&9G(Y>Ea~rXT3\F3>\֎C!_֊˅h*}v8>x!ϭ2׳908EI'Brh5Bqo04^V =\0_>ݺSH$>EpRE,ٳjYO]5%nU䦮d2 ;'N8 v-+,u dP_Ø!v$8 έѴb=: c[S)&u/k3 ({;dDWt΀:E ͹Qy!98nˆPO(d8|P.|sat4-~=t2A˄4Ra8{wވň[  D.'f&p6 .뚄gA8TA.NPiռ@$,!D[ˣ2!g?#]Ab0[ΑKDj!p}U;uce5U; ȯw6`hS̱`ҲBjfSۧ7n$mdgٯ/fbN߅'DKY ޯ2?6W,7tZ r [ʹ ~k0A g>ѰnmΒMW: 5Yh֣<=iΖ:V5szw8A-kՏ endstream endobj 2851 0 obj << /Length1 1448 /Length2 6925 /Length3 0 /Length 7908 /Filter /FlateDecode >> stream xڍt4ֶ=Am݈ a Fa&z=1D'D^ D!zo=Y{_ܻ\7T"ma $-("jJ@1! PvrPp$B? TQ00X;]$ HʊHQ P_H,@ tZH̝[ꃂ;Ddd~]`(803 >+F {yy ]܅({>0P0(W= OeBci`, X`/iu @DH @.`a;A:Bho2;#`O0l59R6U;wE Ý(+ *@O Am3Y' `G@~p6A<`j`!ҿ1{ 0o>0?W+[n=a4J""(ҿca;|` rO!^P$o6z`h Su**HoNAQ @DT\ =3>W]5vHO6+cϿrLe- 7ɭ@#oEH <y5h"koS3؟ՅA.DǒYPD\(0> qC?ɯUs#`Hw_'lc%ð<$މJH(؇;z$evA0 !h [?"5f,Yή_(( vQ (" v-#- 79K6`0 "XrZ%>"O~j.*81G}z%('{^=rlSq;ߧZ:cAvЖ=mcܩ$[38RUdKP=8Q7ޒ(B{)t&yݦy kk{[2[Etwdo.qmyK[4ѫr`n֎ -o\O7Yĉ*M _xdRjP>0d W-Hnc$2w̎pH"al-,r@ItHMzf_568A2G<əX3o6cO)E9W@,a3ϻxAd'M"i޹=/dMx~a؛h ᬬH[iK]YQ+~PƴXڴem\tx=㠑͉ _^UwTknydc[x^TOP;j|!w F?/p3|-Z,zzx.J!El8 iI^3h)\<ۍex.5TySFM"}~SϿ-L|o"R%ӤUZvFS7e:NCB{JZ()Cb,)?@q,"T˧.146E E?cA-^쯿Le^ؽ[(#E-/eo8-d8b͑:rLB3%сf \%yy[Nɝח99·K7[bbSLI`ӮLw ƈX"P~z~)./*vO}:J16$&)SKGq׉=w󩉯`,П*G }AްP`&JM܉^r=t0d6B&注ۻuLjGzHw()[Ҳ֧4rACo碿VѾV&uw+iU7W+xJg+w DMkNi ^_ q-% n}l1lNBd—~n> Si27qK {qîY?hu&O}/caQ;;S'Z z{#zVmJ+cLˬ.]q9,ƟYo \x@ ({Q+A$6(ސ [vmZփVu{>:/4^|Rh0@9n?1N7,AޝI+-coAZlǞ)_XE]Ͻ-`*31B>n!!u}wm&$ ,J铬nڬNh±(D#6kVCNVt* ;{xk8@1dyz(w]Tp=C'KǓ:լs'ibmwx[Rz=-mH>;T4aV}kFC Y'@XCt D.ӑ%GHas'rz?ƣgyNodH hUrF cTۧӅU@~/N.O߆O>6} y~)vIA后7z#x2g3ɝK@=sqmXnMWvN7VYb.Knz%?sމ)ر[ ZfF{9-˼~>2: ~~oUL_*nOpӏ3.߶qTIyf w r'JWxVsq:mloKT`Ϲ΁˸X=AMɖۗ/-a%oK߯p!;8iMڟ1O8t0x#MhD]Ahyfsco_# ggJGP[6}\V(h&+bXR;|\A#c4P_Fo\x?agH ;O+E,%DX&rʝ~1BG#JjoUNї=TWHӳNũIVW@DVZw9i\JZ `jh̶.Ŵ@D`Wu/Cia Ho1c?ULPTLPaLU4%w N[~?IYt #AgPϒs)xZ̪떿j.gӡTg]zGSv{$d*NcI>fi~W8ߒ_֦ibNln&xoD4T˂1)Ĕl쒉;> g#2!v+ʭw;V4uK(B"Do6;iڟҦ wIM̩ DZ˰W ugg4OUr{[~/N' &v<}9"29rGn]w)oSg _CeS]Tlc??=I%߶m-b2+K(2a.81q}QEn{,!LOl&˞{7i$<%"Fmzl= "]G㹑<ZxgQ|1R0h}ȋd%gA.@!.c1 9:󬽇zxvfѴmIhc> P enZyÚ9Rr%M!{fpr][j%1}I'(Nz$\٧m?9{!gϘqs+fۨtkEU=mƶCn?_H)=a*{cI!^:+bCPW-bWqU<<_6:1EL$(kBZ9=kNV?'jm^׵?2{B3Stb-Y燿^U$VE ) WEcHGxyՅT*4;usI6ZڐѼS h Zݫ! ui¥0ɀQ!"̩ޞ[@XtjуrR2mE;mR3זppO[̚6u]65 ^>aD{m y`1ܭl*vmE2u)V6n%eI@0U4C~~!Ϯ&=fށ\9+'; u]LjE7XKz[^-E{]Em'KVg)\{EmnB22y63[Ep+b2TmRvYTTu >tgwnZ ^}qE:4h`P=<4j]Н|? {0IlS{e޿6)g'4_7cG^'7ŏ54Yó16d)QҍQc"'q9)BC7OWzC^$6h5PIPlF j[y8X Dt\di_\(}' W#FzC'D+WvP)w<5UybxH,,oopѓwx_9sG;=uhD&HJ.h Z1IƼ&w_pQ_~cChS6x5) zԁe([lOX^5 k*ܺCQlrDǥYS} ` VkK$0륖[=hGFe2ďKU>igX*axuw1ӠF̩q 0 IyKWz8_x6_† ›ghۘs?Ǹv@%T#,zA M YaC]qKʢ/4=O7K;yd(&'KǨly|;~{"Sf7U?ћƩ +ODM nϮ{!t |F%Hm1po3dg2wە31&N4 l]D*V64:)o؅|z^y)'=[grÀo|رQ fkobU5<oj"&ez%:&},P̍2ma3 XA\VPeXj6j^v!]%NVt(:P zVçq۪N׫=kfu£ב/3CrA+u+7hr|!ƍogTKg2Z w +-PSjyͅfMj~FALk)n lmFn\0?gVuv>U{=Km4u5 f 2-'@Dz ff>HMP~oWr+hY)e͐NHks)nq8[_3jC98ԻϜEN^5*R|[L,h̹8lWR<#g(I|l|V6 /;yg_޳ m('"TuhEFy,G: ꜰJS_>ٗt<նعĩ7pW] ~.^Aې3_|ae䝝WyX9% E2ԞSxYy1,ﶿ5g̚Z洂me|==7rr #unT/|H /&Rm84 @ (*~T͘ Tq/ƐJb-xb^@i/f(o|TCB?7"y!m} 1}"4 _tqҌfb;8eU+3 EYD_*4'} -h?BJGSX_6$AP0LΓbR 󏋌{үQЊp2)}BWWim{WhE)m/3 PKeX'^[ݜ&i#`PsxdyqiKcc6sF5kǂvKUz nU\U0MuLַo%cc>&cOVm1 O-RxYbqrn=$TI߶8Ʒm<ַ.>ڪQ%}&>nu.kj+Ԉ)ch*r {e&v[wfd5i%)O^!՟y(R[nh*Y^ w6Z.uRͬ:eN!BP[I$V7yHaun8i63qDA endstream endobj 2853 0 obj << /Length1 1971 /Length2 13811 /Length3 0 /Length 15033 /Filter /FlateDecode >> stream xڍP\[-wwwwwH;]$]9^սU{L[c5J&vF ;[gzf&4\\dagQG&t~ȸXY<̜`Vӻ0rާcyۙ1x,#;}BM@J`kx`j1s08" N'3Q`G A\,F+Q0́Xs@A_ |_;}?.w'$-{dazG@{Sxo_? ڸ|w?Dgmwvrg;~da߷du\=ߩ{ K. ^yW?_ ;~uΘ7ز.Fύ`W Txլ5rf nkz[z"#3"[;|%y>^r4ˆ= e%a0Rjȯ`n* ?q9!Ke8x iM:vachFhz"Z.cN^b%%̀5Cx* .mX=4Ⱥ Ca NSi~A-xwflBHV0EH0? ȫ`}_Fa6qȾ-$'h%6.3kjb! 괄Y )sQڝwZ60V~&Yxݎ:@888Hl.893rsB>EA\3".=~3| (\}YcN~H&5HFof(c7qM ϯW*~3_a4  sf4b/r*7\u`gXt4&[5v5"L`n`Xܥb3 6/GuyQ{M@{J'aJ)S0lnot ` $lFaxۧԺbx)pl6%=iA$;T*SݽG>TxBB-جU _Pi:%{ R6AY'yuzKpe4Ob "Bo8\pIW$t=^u$Y367~#uPp"-D8av\~d7I(mI'>UUR)b5T~7&qځjKd~`n2)G{*ϸlp 2i1˶IR*+h+f Dclf_R,'p x(_ HK.[֘žʂ(nQ>_&*#OGﷻEN~b=]8sY΢KFձy|EQx- Z_8(՞SS뮵L{̦:3J;Er@2>hVlyȞÏH%X;%7.mS6Of .:ŧE Oc`BbOY8vlXNc[iɏ3B]Qd X\vsI ,myNkڝM~(p{6<TϢ"ʰ冝9N~kDcJV,*QG&6)dq'y{]n^O`>es V9K#QӫJ]nZӇ!p*@yavCCuē['M:(cn:K'xيCtveݵ}|sVBNz? KJ'IC7O[G.&Ku@'zU z2qxRV~e+= #FA^;[Uq0U+awʉ](oA|* ( 9^$~Wux` ةŎ*#8J׊X*{%t\S7_Յ25vFmC h VMlnf[}rQ ߘǃ X!8rpSfi{<й(,@ʁ. Nz2(bK$dKF9Kwk0 vݴwɑni{Im_Nςh#brWp񢫀̨/㯗2+3s2Nw%WGT3I kfNwS\y3Р*15[6cͭBb`doh& V=bfCĩU>vp|tk ٽ$X`MF q9"dLn6dzʌ P 5>\1U[(W mb/t=9OSkO`E}_g#&Sc?'ZV3ІkbQ+SEXo2Wa/caN GSNSGs&,$ M񆸑!LwzS07 f=y%Lq$$Mq>e9O=V|0~uY@SaC8:%'pAHhTuqt/2јŲ̨Y++Yʇ\ת1< !lӻ03NBRV(]:DA0!#ݡ7r|gt@N0Bڋ52WbhEy aLMf%?橠PFBje8rȪPq?oXz9y<*ZAg< ϓщvV0sve -JqjQ~Xfxȵ>tx.t (/SBdͻc'--Mՙʧ#ǡ"gkNL[:X5FըuD)70E%I?م_lco5~ras5=ѐBT4ic˼u| jr}t0&Ϫto@=-jxdL9U@\T2Ϩ$[pDkΥv,pRcŪoqokr._܅6>6Ar8d{rSwZ@3܏UGznV y|zDog3ÞIc.6*3ΐy_VbyK6k&ۙ:!xK~#+`;#6W(wV[s 73/B: =Ξ[k8r9*f}EKFG?C2?i[~u! 3gaEmnvBwٙn.(|vk"n_HnWFٕ l2^7r'ZgH4"#BO W:=u70iA+Do/ؒD~RW㴇њeJ M:xP`cemRsk~WK/Tg"C5تz4r,c/cӌ1a't$㒿G$V׏QnE՝mY䞦Ɯ!x>9F:$n,JI!vyC'XQ3SۃW "_Ll=SE,$K jL S:f^{M6amR,E7 RH^5gYC)NwJ'(65Ί],ҳ8WFC)u7uf4wdq Efv)딐#1#-^rJ#|-k3زd|+CɊl~_+eaѹN x"_Q3.7bQn@(P*[|8q{7E3GHL*6FYr*rOωFw63ۯd!kwcCU1E֭X jW\Xo-t:YE](~P6b&d&E_YeZهt%GXQ[G@^s/Q d P2d4f?2eؗ:)pfóL;Ɂ.'HSO Id=<ɫU\TiRfP[$T TgK CxI% *5L#>l^Fڕ%ZhMېJ)hi˶ίDQoqʠ8SɣhHL'*Ŏ.dGVe<5]ZOS]5) "V+8QA]uGWaK uX2) ݾ'I@nh_4 .&V'R e H:lyq|c+mb1ʫc-ULf3GNuF%omtVE3<[> e.ORF>C%TiO9Co9yt}v+\W 1V ?@vI7= JC8w'<}Xq~nABmK9xT}浂,&n[}Y}##hk^J/i$½!ND#w᚞dck:8] 1w?UB c+'0jD{ckSeڇfD߮plW}ݞ7B#-l3KX P8o0{~ociho$lĕFvj1\};hbf[)heI*i(6}D0Uňl8,~vY]?}ދU&ǯ1_=7^uw%̴nl%$8//D;cLAk0bv9X`o/o蕴:AV'1-}*kY|T委 2 !I&e|h>1:|xaʼn_FRbEB+6VǾ]I;7,5yC|jNĖv6隦p=Ff& dIHSmb3&mћ7m>9=*s5&!s c 6ݐMV/Cy˔xk쑅 )?w/3>,|?i&tW?YX'p?r%?3T}{H8t-)y\&B 0U2V@l4&@ur%=MB9RXk: T!q '/PhW"z2|5Iά3Z3#3p(:׍3Jn4ܝ#Yުv +ڠ(Vp3B &_#eHe륚gygkSfF e8Jh;P^l`Zt5=M2_R?\攬%b&-l9ˑɊvRR %$'eQ$ԘcAɤ;@rI"`꣪:H$9$PX\;+JU# - ܅q!H0.OTՒ\@B4=7rG-r'n|]ZXŦ]rKsF.w{D "n<2Cb_pQo9OhHiqweGԋupMA33a0u,x}ln|no99ɛ> oK!tjfwYЀL Ӯdn%6_2[[qOVFMku0J_ScozN$G̸94k?2rQJi`8=L6:1¨M49 kV8 ~.|NFGE^6c#~?|}k.Zϗ X<(wJcnY/_ 9B~muyIC%n58/o^p3l|؞V.\-/qRSZj_- jdbVVH$K-9G|U#rݾ`&M*)+ߓKLA ă/w!;鎮vvGEXPş8Z塳өÉ@bfν[{2iEӝN)RlI(cQ?(G$-,[j[&Ѱ/c:JRc`yRLQ1* &cSQCZ] Q:(lWaL^ڶo1oת*Ť}ǻJDdWo6V6pɑzU$k6l`zf.IQn dͦ 7__q;VTMteUF&AM":*bͭD,Tp^e=+;՗~?uvDAa|`UY}@;9,6Y_FLV3shX6pB0贎>S5ߛXotawV*O%ҀUMSƮ ށg}Ј}IG`o._PDz˯R(7E%5aG>z-A9,@V\ (*lKiOx $u"H)tX-XNd0cۡXu64T_ST$>kbEde&ٙkˆG.Xvsp~Hn.wr!ۦI7"گ}߼\ƭxgLyНWnd $w'Y s 1c*_2bvC_˧PCG`;jxl2 Q[ jYM[Unko\OoWn99~3$XO~(m/Zt;̝KFTv?<&=MV9~CMJU| ]t($CQyO5Rî`o"]J7B,Ĩᱶd⮀^QuB G AsN-; T#x1:'m, 8≳MRO=t-X)~?O<]R1VQnP-b(xZ2L*.bxIԵK/K8,^}ҸfwӌR*a| q>.b8 @;nIt]\pd8syJp-TjBwg#KY+;S;i 9er1.=uQӸLeUhU·]YA<0rdqw8`}je(jfWW鈷;OMdv82-=.7j.9$"^p&N"<ϺmOugQKJƜVK6PS:=nQh*5fitKO[?rߒɮ]үjX᠛H\Cՠێ(CIrH)3sEE}YET8E^)q<my9ŏ`փy&ם+T;t;f>?5V"U@ =j:*E >v#ukQpB,ffb|Dnl$K!ã@2s`)9ݼ%'ͦ_7JRQQS pW.-z|P}KGd?|"z/DH~b0.B0S1BЃiQH'40݂( Z!{T?%'.Wn4`yH 'kѤB+Y*WFfx7D'n_كog<{ɄrbFڟկOQŀq|3Tހj܁s(+i&usteu(.<9y4ujs9+fyjA/l a)E(%ig XQy0x":`zn9A+teazU\y_v]1"VjѪec2mye>gQwOH\9 AJKSq\*G,0Q[2;k/xu.ȧ& PoN>њHxh-9Ν^aN?Rkf_ػ.~N\fy';n chF# +EP dZ&Xǭض+ٯ`~!aPE3ޒTnFXh~vk n;,/pKWG哕֔7j9$ØRmzouѣdH2]C\;rCJ|dS_&l2#0^[OOQ 9AĔ3gਔh!C5a|͗}?b($N7wkRPhH(sh UE&~;T endstream endobj 2855 0 obj << /Length1 1347 /Length2 5921 /Length3 0 /Length 6837 /Filter /FlateDecode >> stream xڍwuTTm> " ͡Cb f`h)PTFiiTRBABѧu:{_}?72 c= Y@UWWK @ 1aH遂m 6cݑ@TpN!u1h' `IY,@21XY@ ⅄ Nέq"=p:|P~,##%PvcPЅx8]p`" '*+"- qq`o#`wc0WӀWo܀#1 8O4 pc-@@v0pz Dv@WvH h/ C H];P6 lEz #Qwh*p'U .W:1hE Cj*rtk ©9= (w>PG_)L|]῍_j\~WkDqr?wzo `H`w@S8 `>@0} A|Ϳz۪%)!߁ ? _-4HQ/O$cap|$^3+N.I  .H}==p-f?XM[eB`qaz3@z@z;n{<~ ǿدE X,ė7D$q) "x\\%51Q)@&Wh'{ɿC'>aœQfZڱs@fb*ثͣQo_8ӁmgMT6# Rp]nj'9uy(t[\Ӕ-=.q!B^ZZ AXrfc[Z\J[,k?{D%:& iLW]2H2jF[OB‚{ KWO:}hWP9BX=oPޭN$ɊEoؒ_茙Ϊ`u,S= v6 dmV[vMx-:&za5>}$ٞtG$brr%< 1ZS14Ѝܯ"Lte{;I߷6fn,=Hu#Ց)c+}fw-`;@$b g~!̆g]@ Z5%u'=|mƊxvfPWbN] oݠn.ڡU 6%u13V}ze6wdg }/ 4g0l}No޹HliL Sjbq{#$o꘥ζΞqWS} {*v??+?XZKZRg^i\<]ΞYx..9Wng60ϰeŠAX@K3f*n3, ^Uus4hYNa}נ7p hj4z[6_ ^/f6+7 gW9nҊWqvsjW崛"~56RX+=q㜏nUϻxŮ%">Hدö"M7Hߢ}ю6z0}3oS,I +)"t8h>V6R7rYb {hĵ45lSӿ4-K4>cBQ},a`Bx *d_˔@VVd>+&sJ Js Q7%M9nw߰eΙ/t mpLv}CnDqo̧8,$HM|ȴG3@!x&~>@+d;3LX~oDX[ޝ<oмQe9~[F ɴjG--M'βK>wnKZ[>\- /YNw5xfN^^f4v#HtKϙJoL]j=чeRwt>ߚG$ %` ?>0:zDWOyhPGU_Fu% <6 "}aG E /}4DξVmU7/{z~j>s9{YeYp,[(W4Y/ '=ֶӊf5p&tq$`^K "`&byrv=5oSc\zf|B2,럤mЪgi0>շmO)8/ۿ|uC46͖ (c>+$a2-Tf= \xsF Lj~ju8Uk5=$[x9>DN~~gy AE`z9' =3-8iTAubwtj ]+c.O'e;tC6-7+96b5'=wm*+;g/{y҄&;#G*hs♹%vx9 ^Zb~ZﷷL"eNԄܝskሃ#Rϴ@~?;>~ڡ;{ܴiu巼J='c j-f?#őu~T=%H Ex6xvꅌ}4)*BoU' 7PjO!nYQ[sF<(κt{/^| /xCq6, ٵcx_MlX>C+OogzSgĬ7ҡ̫e<{j4UW"/~AZp-At*z۳(-Q܃ZZ z)b,2 L_*˽۝kj\^ \4UOsupy 'g=\F)˱ĞÆ}2 [b#]BLr?W Ngd?uO%Vo[di_p.q}"b,xbŵxa/=j܆Q|;S/|\K"v|5ȺN.? ?.ݢIsپM Onm )W>q䳹$,r0xV]F8ˣOjf7#9i7^dM=Mh68~p;][ ݵ ] M(#sM(7#xdlQ#wI§$+(^Bim[|>jGBrKmH8;vdnٔœ_-~>FyJN'Շu\{ER YxȲ7qw>'>W"Ђr`@[у/L I[Q@תDstiza۫ic!R(UએHqPqwуI$EV*8|H=9y2w ZD^9ϐ#8*D/I|dwphɔiIhlḵ` ߳ f[ k\3V/NW;y,a!SrfdƲJX9clݞh!|T=LϞ]%(TțP8}nh3G#f)~NB1!;+tId?ɸ8u]0R5ߘPV`\4E ԑvRTfH=+()^kmb&/TXƆϟvB:RNJTnA7DMyB9V ob {t/ O3S٧(7KOlЂya6s+&l40T~x]XݱҐx& @6GBC~CdVWsv"ut_@c> 6[GҖ{+fAZL$w>'XH0HHU^< a|Ĺ#csgȥZi!pI۵D2<~EgP4l L叐g™2zdg|%&L~Vc$lT fz˾paM|3;Y[M &K=ՔKxk$I̵FkFm۲AG8/%=q0b?4\6 yv>[Io|6*:|UbZk/deKrKUWE Ҧ`o|Vw@f־m@YȰBʜoXkOɼt ^e!I]-H~/\Umn^mETlY#<84jd+\֌;MPNe;/$W{2}|8UbBÿݵR̺|csQ/Du<)T#hɋ4)ne pJr"#ӈ.ˁ=VG/ݽq8$ya/%w-p+H'Ӧ{؋]i&@; ]E ]vԋb:5"8HH0k=k'!gj!t\Cg1,'EBNScݕ O s(Qщ-_)cT+lozR_S%*8:dkq2?KcHӇ_@LaٙzRĸ𓫫|Zi>it1&uK/s+S -M+' !fROFAĖ^ڛ{9UV?$cǢcPt h,vXÇiX>J n6NU J`c?GSic;ZEq/+=/X>o 6Ҵ bc~HU4=ZQ:;0RL;4џ*6z?G,3w~DVWj[w]; 2Eq>#E2v%ʷV^7 K/>~ Uҗ[s?bħE:w5tR O'Dڕ v{-3sh3"\DN P&{E=/]aWxM1 ѹ#Srʽ޻ч'G.ߒ] \"q:ݫg ֡`j7yW^VCgPsSv2Ҧ4t+}GTtR 8>Cmo_I IJWYQӱQTP/k7n\RnZ5> O\Yd'Z%^1> stream xڌT[.LtH.ni4nDN.Insw|?ƽ1p?39לkTd*jLf&@){ 3+?@\-+JJle@ hIA9W[?N c7+3"3@tFwttZS:_Q;1hb g45ٛZ]<VŁݝΙ # tr~ P2]3@oZA`W NPU(;A+m76f;/gcSS{;c`ne (K)0x0Af mnV&`DU)řw,À, 2\~rڀAs+"\X4@V@YL":,ë{:R+vwZ!y;.N@_?EHll3+S ,dedb(k(kj2]:11{7'+{x?|Fʂ|3,࿱S о +)7ΰ߆rKM6<.Pj^ZEʺAdaod0xw XA.`<_,b/"x,"60ں,"V [K v Ⱦ N A`r /LN) 0`.v@` K!8 GRq~JT_/\K?E`OuKxA`wU k 0C޽ K6)xp#9Xj8ϣˋ_+6r2u3OM0OH8?ׁ;3+vTp;/3oQa>@&`pn/$~ ^q6wu#{adgVpF˗րG,+n? U6@p? ~DWzp7_ȀsQ3,lH;*`鳲9eNpkl]8t|' ?97>{;;8EK*.pg s:[ 3'eζΖ|~X\,t 1a]Ctɺg/8TyML]{~jzMfM>XrS-Jδ9,4NL=z @Wt%߁.I{)2GX )N0f3(nHhM71"Ȗϣf t#9lGW^T\.iMխ*ny_L&rL2&\1O<&.1FIb|"8 ߭GNz-;S#I{=]\3(X@˜μÞVe6Tmp;Fv aFܗzlC'refp,/6@b-WIDs|j(: =L!IM7ZEDla iI.CPmZ@Ylt9X`AS;|VwDG\>u'JW&0m1M~$[rHIYQ *e9Ye($U]9,ܜ c>ҬhS%8gک  2Y*+3ٵ׼=p\U[6gipNDCu172(4-uwRY *Yn]>3".ٿ*BJG_Jߚ0l<}"#TSɥZ5Nsl۶B 96lz?|YsؓyXÒhїA |++@~ MBT\WiTP%K2!6He P=ѭ_920 *L1$v_t3S1. >k"`#@ N`}J<}!C  Ө(Z3lWqa9RNoh/HmS2q,%RR\Qj>UIcF f < 6Τ/[,eXGN7>IE6̆M~"6I|.2r#1"$ʶq!k[+Ruld) ޲㱿^S2nlSnqMNϖi82qٙܭbk`72^M')˱?_:>C<<^?];kyoPwbҙH$Ğa4!ʬIܲ*w LqWt'C7T&U^S]+wy-ƦdOm/D@){1\,ܕ'kJszU"˥Zd=rBm'ސ?<|55"RAH`r~&>1!/wd:9^׽T]?qWVK;²?\wr쎤^ױ"$!yr_-P?)ܩKǫ2nhb7h[d,j71l nv8Vum}{v]"Z!xv &TɰwF]9qq,旝T*9$tjb ,[G\X♢y?ېi)faARpxbw0:2}WD6ĚOX~"iEPy/bzmI ̶Ò!uJÓ"eMQqzT.]sg)?8DL27@M(-1"mMhy+|Ɯ〥㷘 RХ*; 0c70xښ{/TPU/݂oOsAN~qw q>1z \U E_ss,yk Vg a+c#/Rd5q^,D Pi GETfV\bl-" : Z!ZQ1OiKkkQٞ1g"bat2q1*25G͂@aYd+"o;H! _? 9 4MI{4u*ȖbrݙN*/WDLq$./Q,H$O3lƵE6Q׊ҌW#̺yj3& #% %En2e <z:kH\C ;q8DY u׫'$lƎ،x]]g0y׎Q!7W-g{@&;bLcjIyM$-,b"<4=/02)%9dĤ\t3;}5WuP\B(}kۛ CtV)Z`Tq[L&SލڹON: E\(Xs7r G5nX^km #ȏ4|Zo]3GH 9[~>zR8WZ%^[ZX_{L6ɕ :0Y Yz> D;s L\4)߻o$[A+&*fLczWUi ?`0l^4OݹcJ`>YDjU̫rcVD yNmH<2^|;xdH7 fA{Q⁣ʈFrw(Nڹ!-%>76u蝝g%U~[uǕVqB[1bƶ?=j u2r)U,occE6W߳Xt.KPknLj7R,m W M2̀pʜ /@ (ߕ]D`P@I°Kرu3q{"HG>.p/V4 ߱BP7N-㶮%B^ A% k=l IZV&yUGȒxuƓLtLhGB̆k8[vk 1fWAFCQ [{`?2G\[:J&`&<#0̇s~f8L&b]xk΋b8l D=[ HY ,|yɪ4!AY}B58kx%꠮jef{5'Oc.t L>Lk`.1Z7A2sםqp=;̍NUU$Uv P'VQnϥV6Ҍ{seM!Dda[b`n ^ @"u/d- ؙdy'&#OSVY}9K$bTlӘ+:Ojki<>\7tE OLSY|?WyF$5._̚\[ $YRyqKjx͇?OE*2SkSDLBvm kiϢ (捦GA:F>PnĕFM4ُ~+_6kr.U:s$w f,m2n^Uz.P:%.'":v2p{'{\ԟ̸#i;@`Me/s]9kK,qMJ4iWPfp;=(C6QubTJk 8*W[bop9>\[Oˈ,D=4eO|tcƤR[h| }s9%^Sm[gJڕP: nͅJ /lP{7p [|wݐ"NJF3{a6dE9Eu0\;7:Zǎ~a8K\^GE̙-^ĉ`g*fĦ[k2.o\ӝ(r}FP㓏ѥ._bMnM9Hw #б7(F6KTʹǒ2Kb Kc#ڽY'vH~w:ۏ:[Y`a/L)BNmj7KؽIfaJnpѯy$r? @:  GF~Wu0aԁIa/X (1hGspO8SJ& -ߗ>dړ#Fi x[Y oDFJevbiy.6Bѷ@Y\=s kwDsˤM:*'ku];怮'QU*$=sm A\\wI6ӔVbdu)~_1`i(q鿂܍V~{D+k fjZ֎k:A-K Ŗ7ӹW+r>IMMhcENa}{DvbU|`[)cԳQ  &⠉ R|$Qd\'UGi2T9L<("I9IKM0\bY (?;i.t{W7µ[;j͸3*%ΨD]LeUEI]LfbbMXPdF32v"rf)VNF)z˨yu(:51&`##r;IQqȋkd䈷:_zHf\tV^K7Lh юAZMc [Y4՛~M{7|uz38s^=RЃ*tѡhwt'Xa?q'W̬) pB-{ [QEb䡥y+|TG?Bmmޝy9u)L֪aNڵurGM!w L֘=ȥ-T?ܢtn6֓&S6V?((OxV<VwaIP]&pn^ؔj R_MP{ dDi&yTWzŎnↁIV7ǴC_z~q1Ȧ^6e\_F m,98Go4x %A}$`bk4*{T=oı"t}=/v^NSy/pe3Fk+mxYORKe(/ܭ)Bƚ. tsM5Rp/@ﶄ^E=L7L!F"܌Y4n*JDaXfsXrQFI%Vy/'FQe1B[ܛ:®|+J7FU $*Nו 8 ]TH.f(.TC25z.瓑hEyJiKWnd@<¨\:(je4EpT1DJ9nJM l INX9%Tsotw3$q0dX\5gFFS1%nMܬ5m$)vmƨ]a^5{.ްÛClj 䲁l2T_2,,B+Īǃ-fGn!hkIEbd ]ʤx.9ifG]>OC3o2Qf4a7RyܘTǒ*3+W L&R"qذ>:X udk|CnD[(iIʑudos8(lrk>"4Z>=-Pq敂D hٷ>+1GΤS V ~]y9Y&3uiwY&S\ C#V|BB`K L}g!HzJ|cԤ><2\__8_C\]=pnۤYq!GdUU}U&%aWKs"6E)|Lfڜ/&nws @ؑTVq>ŴTǍ20sg;`p 1c8K^A:.-*{(/BNbIE0d$Xy5GCo*>T"Gevav($FMk`3Rµ.#gs/U.a8hEϰfIs]SKvvIEo|CwVV}CQOD1̶>`.,(|8M…+@=܀ősW-͊WIe x'Du\ WR&2P%6קx%* C4bu1KgXIH\J*_G{gͿgTf`en>6ȉ"zqsf 5"@dְ ݰᑄOOAoH.mDQ>B7[ݤbj49D֍;P(iQ!ݹ7s3ǟ~z?xAZYR[eݐ>XuWx %.v?Dȼ Q4 Ok*hꛧ'5X_5=S7$LN\nn )QE_v!jO Ed=uڬxIۆR257ՋN6Io*|䛽YNV^S0i`'XK mb*@|v$Z)"VٌfQ`QOJ㢟3tL7 k2ά_ Al.l~X%6 ANز]Ş~Jn,4?9k-t6vudhpHօ m]xG~ډQ@HniDd Q2A8ٴDW^)ŬN/okDf +$t;GF%"YQ9 \;cZ^¬\AO,}[;J7f۝z^j*4wjS1ӎ?h@"T.yHyiA;(g 삊4h516.NVB CxݓBAлw2P3=1Ya*XQ%^rC@NGc=vM#w&."-FsdE sQZ~IS A$~˯Q) 2uMYfOӭ0IbM< Gc 6nGzҺ ;>pڐЙgA#FYa 9]`N G+5*4Ss&]5iRF}BFK>,汏8Às]hO ~0a+W+Q{+PSCU wٛA>$UpE\5 DnI#.c`h\6S`lJ>cm'u9&K)N >^dh lдN0{{‰ACIJTi}| 1"#AGPU.n,O~s6 V.hNFshd˸oc5f/*R@"s[RTQzP5sܥ&dzBɴxW㎕g@ӣN"閛A @+hyR.A}KhQtݹB:㗓Àxr>/20weg~?>l[ ױ1ssE+%BP۱6 _%zڲٖTRZ峭>1yN[(c Y}v;AFqa]?g#G>d%rvMW}EcPڢ>\bR ܚ JR) =U^9,Z*ڵSvf#WW񻁼[?'Ŕ S{MW;;1p;D y/XF44Eq`ZDCժnX~s=/&GqWPt|n梭D$CbJpAzYãsQ+Hr 3I4؛k%i{$ﷵRU߽OCuΨtPBX}24%n1< \6o^5!O5B0i (- [=_e}̎%΍tzҰ6U-~=5a;Ul[$N+X@ܦAh=Bܴ]t02P5^dʺ냋BlnEcw^2\̒J[*$N?2LQG5hC_I.ap/d啪`{i <gPdH6$pEz~nPt)!{gpXL>G!&GԸV, bWW'ѱ齿J_mɺJۈ0yqrP ?}u|݋(0f3*G1L* -wvX0提jf ׋ 4z (˔Jl&u-U{([0nue1@i&C{vaiawp_Z[z/7 Kt-#&1NMoxqN 8Ov$e6l-#\}=ajg[A.D?OmjAJ"5M*GJQi :C-ԚmӓjdW9>^([ᘧm `>w|u9:8l3*O6nud{Zrt"YlGn'ꤸYVDzƧ\oGXx8 3Ce0VEJtSS1|D)#2af7&륥s{G̍}lG!{:F _8V^<=8]M|K|#f݇D:A Ľhe3>/A)#= rX鉅De+L`x.!c.)"0yHLd5l/wT6vĠ)=謎]|v;6yqߛ"ڴSS;sրd%1T9H%-`0fؑ.lq] s~5 ;-}1NÉxq$tUl#ܻ<<iԒ)PhG$򚶋oOYUz@QPiBw|,-}CZ0ۙNrf]X ;fGG2ԅ6̐ w&Q\{'`[Н]h\D 7}5rJyMݜ3?UpG%Ῑu1_tЂ3tq췉s{߅cvJ.2MA@eZt[>> i6x̠%oQR~;(:z3gIRKYO~\J#p֙[B%y((U=X;DfP'Tu\A|A影.#S&#}9N+0v\ikmWhKA *2CZ-u<4z}XiTyRi3Uu֔u)B"zԪtS1q*c:e\ֶHX!.%G"3ȫfc HNSup]%a2CZ|eF s]!Y3Ry۩"({Ds+9[ DOuBZRۥT*0ӧ;rr5|&g0[h)@gVh 6>}akVq qך\# H5qanU΅ .&*|gƙdݡ5J~oU,LmRJ:#M(*. +]mVUDyBƷڒo{:t%ތ 6}&l QrxkQm_85Ns@6[GT)lnN7ӨFm1u[լtY{3&\śebDnC{$ԾML7#0)έ2yam[)8 'j}txpe0zGyLQpLT~Y/4-3XWkbDDhE#3[q@n>"4X.&WDh`DPL`R#)ߔSC&\1E:ΓORW3ȕ_,Gю`~1z+C;VWݾYk6:UE[~Bb(8<⟠5z-0$\6!"D*Km}Po5Em.פֿt @ ܭLVq q ZPL}+{ 4'8jL0 )({*[FTRY@%9pDݧCo,\f@pPXqHτGoN0Mڈ=*t= _bC۽KAY*WR- 7{En5LfXԂ+ ~U֜ ]Rԛ8cO!LR([G,Z> /GKnupOM&?F7H|~}c߰zNvOtGe†4B{g(!F$'9i('ǮzZ5SgJCn\bmYgŘ??F){.Plo.& |cmleJGr͙HId }xS̳ռҾ'Z~巺|E,pTϧ=ЊJH,u ]XmZ`ks_-e] An>!H91N*R z"x)G4#;r)9/:fw0I9$)w ?x#CLť&@hDzm/yJ+I/ʶ{k_/ &h];J"0UQs-X]CCy6PBkj3H4S f,8Xp33&J"o1 X^}A+48TnO.]wTBb;att>KfF:Bd-_뜝1スJm`AB:+~qX@z=m-W1H܏>9csrmnV]zP;+FEvG?8sSÞ'ůu֐cH /m&+%Wl1~ϋ %"Bs;o{q4\%n{T8;ΗF|ݭdR4?XP%Ü#z)$ Fi0 gj7tXn-I Oۍ@ zP,E{̹ƒw'b2!n?$ް]r9ky h׿↌b}KA[.4 v 7KoqQ՚`^ o!wvD7UMF/m ]{\ NR񱝣}(u0)ᵻی桄rv'n zCvE=X^. >$- p=I"WjV* kbu 5ET$FoDxo 2}`n>S0*a+gg:jG`aO~4)=*R0uO^ꏽh]VhڟuZ , uĹ"nCd:h f;9<5r񝶆R>"MkwN3řfR&OFYe&2k- eJ%_I~N0an3 {ϨMyTN&5p4jᐤd$d22^c孟l׳!=K* yENWf7|3:'`7U7U*B(1KBbLj呣-H#/=-dC"^  4+:8>VˏD7uӎINgW;A<'FU?VO]%pm:c?ܨMwrJǝN~ 8dEIE5C:F*TY 5Yw>gI/@ b[3cruK%O\YrYTЪF5nתSōO9aQ^^u 5ޑ%j%ɥ")2Ǥ 1>.9퉌]'aأ]W:v=\s JIHE1>?]%WxbϽ&El%1Ee0<& =`Dv`gmlߥUY1+?}4.~q% ʾT)cv2,n' aZD.Lmy9|zU0ǵ1GR0PީA[5,dyQ EwlS/,Lu-S`yT8-r{Z}9kRFk~v3acv!qpɁ,X F¿q;$v!r)%K0< |#WvvcYpG}YT|[Y- ]~!K AWsYNKoSq䯋N!8vd|J{$CM##ͮ~l$@w莾jL{w1j_!OEMK,)p _ҸGV͗"SWngցPr5#+ݫ̵E'9k./D2lPBUEn]jj]AbIwM,y!ǾM!Oo\3lp%5/5v#;qIpa4P^ P9r6Re塜FO4$ =*}ۇ*#aMj^W+@;1nO3S+17p_;'> ҃F@ir}1/qOeF0 G_3VE(jϳ% 5F-Z@YQg0uJ+Ě{GCciPZ/vtt-@䄑z~QA$g59Q UP F=WGL_h;;0X@Q8C-j#▓қ=Y[jZBx0'8Zп w8B2\C李Bgj}9rGor-Q[3J^D n\ Aovni*StZL 9E?*2J_6oYz}ƒԭWUX_ԅj/64B#=-`P&|Qy+ar+:~X,A F}TvHFC`zR¤o(cH+Dʞ榡JH5L[^ ]0)7w"\.Pbe^p]z)b9L42^9N0d gO󋱌.A:,2ZE+K4vǨ=D d Шr+DLCU2qy.Z'6;UX>:ÿvz9(]8Z<D*A-;5/$^gY$G NLJֻt Ϟ|(?b ee~̰~Qw*Y=K\YTHK o'=\Wԩ-DB"B$|QT~k,=T"CrohNQ~YbNaȬf),M̕<'Zr|$5(zap$K`MiJ=I:Ih2-6~*ByJ)12R[O^UlH}ZL ݒlT&!Ce{ֺ9,w֣9!9 DnTRyvAn*ؤ@D'x>dQ 2Jc~ngB+sV41=%c {EXwa\v74:̂GY,L5㷠9 Ir\EWDom)|}Z`Sr_!>o~w-Hx\4E#Ni&G81' yց'﬌!߮`_x>?oIPbYy E$ !RwFBN&=u"f*hx0c,=6G_fs~" d[lHndz/`Ly5J )#ȫ*7z8f[ q#*< xA=wrbozVnntsA0?0)cq^m3J{uy:]fqnӬ<)6a6v=% NܝSˁ~e ^Ayrޕ[⮊GbFK--IVhIr>fyRK'-`RL>`,Qh7캢>|^:Ds&(~q_[:U%qqΠѰ/<0K67%g&\q ,Bf}>Ail\ziASY-4ά_C :`qvt}ޮC~Y'%l Į{4=qG?Dو>(3kׄ!ֳpI &oa5B[QK}'Z 3t d]9sBV;K$2&տW*uf{<O;G7;*L@A=iV)odN$70 *ɏkec6z| ??frЃ F@HѰ\\TWRbQ[k!V0k77IJ2AzTǜ¬މƱ'$̈́i_f%u ^=J|3 LV$sz4Ah+Ri_Lqk)iq~7x;srGQK!`;u'/_ ML 770͡%$Z>LkN8پyz7}fxl])G=#!P3j @l.,U«ڻw{]-ZigY< 44{vtGؿ,(PU9zM`[؋ 3ŷ\jMa:ZS ņH:ljjݴ(0ei?5.ǜg9.薐o Z\|\\BK*rs@4H=AA-ۓE-w'9Y<QogD1y:n3X'ZE#`tA.i Yܸ w8=IUQل;{ǞAjT+?⦀ 4a U}ʪ$ѮÑ* mf֯Hعc&UkfW(WV< OnKaUH^ˊBedtvNw? ~+I2}X2H$8.Ycd#SY)b鱴%z}PEE3*>\3鳧Rǭ@8-5Q.9~V̂CIH '"iݸ͏8)!_(߃Щ&*nh58`̱j6XN2B\Y&a̢/‚+[b;ȅmXt)^u hQjՅ2rK'.ӰC`LRXGp5%6tMsɒZ|uo4K 4ܬ:-Gҽp|0O9j~wv$8h xމyl.0:vv s@1$dvNOѪ26wkT~![5t-1@pBU\0OG9[eڭփX E2ڌbv+UH ze"61%o.H3U1@9mP>FOGCZ*ԽXh2i8Cjkqq+WP/B9`錁QEwTSq%2?7/=f>Vb1=/`Y?v*!mi4 6¾9ekf'*Ҍ!Z ;fgYL;_=^M <mgZtUJ>ܓG;kx%@^"QJЬP$. B{蕻C~=xG)bgd<֗Esi)DHGcUQފ;;eiClC L. ?b80xe M S\xpBޕ"(Z2(kÇO"D"8Z{RY>>hDŤ6Roߪ.'2*:A,,eϫF<Wq) SdЙ%'6@Dv}x 'gr( '`Pos8}X+!U٠GnU^Ã(r4ZQ^JRGU|QjTO"RAZ)>ب&o l̤W :X[A5aW "+ۺ|̸X@'ǹ#!ƍ}̧~i8 k˭Qt Ǧ|-_B_pC6=J43)|ޗ[ )ؒoUo{4$yuR@!Ӌ*嘐;hŐr{jm V# *S5QkHٛȖ|0S&5P;Pr3D}_Uvg@, 7ËqbĞkΏsbF:Jf'|2FICV{W5jM^L"wJ^UgZELISwXݞ'\r1zo?Ff[8q3SB#MYx{/.T$HKϛNPtf6mi !I"1eыɵަpQ-([ʛqOdᩔDFi ADK]4M!u nzG<᠝9&4jt{yzJYJ2VPBJ<%chJ.Yl*¼{ieqCv~v1R/HQ911v[͉/>wCR<4h]~2@Cb#8\hp7-KJ<){U l[/F݉N '!N4ͣmqGR xɽ+QC~VゞNxi]XK/YTbP$KsP"dͮq[%)+dٍXhܒaVj՝p-r8ĿagOƥ)Nߟ^{CE ~xo%8W_8ɨz NUnQ5 }Io{R\}IlIp]6$$I TUY3 遧&- Md!fIQ|H؉%@oSյcvz)U/ˮ,9㸨:2o~nNB8RZςuA 5N2JrhsJB)bӶ=8s*>Euy76$.Ih/YJ4—W5ؚ$^UX# t4^;\0ݚ%r_a !gx#J*u[Aag:a+}1vkf6_R6~l UF¾-/[&(hTh_s I}[u?(ܑf3^i2U[ײ )/{^d"`9zXtvW|$ wc9_?TQ8"?iN4 mY5{a29%醔]V"~uָGi,szA_,{*W #}s;Z׶1vBH@|#I2\tSlW-ɏsZZQcPm&jDNI.L\D/*$]̸N7%yk#GmJl„sZ }-f<! x p@euC.2nrW6pWK $NGY ֟-WvA..SLN _-M!\GOӄZ{>wF;`iūOc}T]p3Yzոusf_1 ּ%_9̅LE< ݻBmuqx,NX˱v*1?J]=CUo=؉ eA‹Zy(/+xMqvm? fr lz4=S  $suqEMRSh_SЕ늫_IgS1 @l5MyP\-0E Wc簖XY{K)OZZZyqR,U@3ւ4o8~B97 5?D>)`~EN9b~}ޣU˞"$hhH= kr viT_,h}/+xEOny)X_h{xYgw^(fnr W, .{/řRRzutk_6`{W3I;f&U$}ZWrS 0iOܞ?g-@Ykn=?KL_gXE4N 4N& h/|} r=%XӒ}J|@{ZE=ǁP]H=Uu@8͑ %oeWDo:d̵qG^sm]mc{‚;O=(gnZb k ?*MbD60SpZSJ]W-`B!c۷׳6$;;r-A*x?7,࢛Pj l)?4#6ԏ`Fd|T~baj}QB !0H-O6WmST1iR+Z)6[s\]#.Q&X;g\0'2H^ђk)FIpnZ&;߆i?jilOU[}ş$¹Qo`Y Tr ueGIʹV28QNsw,^`n:FgM2_ bg.-MWXX>t)7[GZt@{/vGTo>̠plG5lND `[¦o1HN6QLF둟|S* C¡+«=|x|9F'" :ɿؓ?6ZՄQ(0u_T.SZHoxS:NdYWXWBQ{+ N|zhSCһx! L]˿i5T]]v Ry@ Š7v1^0fhfMx endstream endobj 2859 0 obj << /Length1 1466 /Length2 7411 /Length3 0 /Length 8407 /Filter /FlateDecode >> stream xڍwTZ.݂HH 0tw7R 3tIwI !R"%etHH;?߽kݻfֳx޽0s¬0((P<@ ?3c6 0+ ĝNsӂAH'OXODbq w-@`.^pl6>119g0b@ݍ6 '>Fx Mp9\v_A߅1  n0;) 6`]j it\?Κ7_ѿ   N`&Am9`w w d};q@Y1tW_չ!.77ӯ y5Y jsvCnxS6w]=VG(l*k"jyܩك! ("*6 \|w\vw% v<7;#~>o ` A(?wjnp' xG<>laP'W[Q[QMwan~ _ X5 'ٻ.'ab c,́B@/o2鷕!N^Dq_ vv5YW--V5nN7 B6Gok P. Ape*ǻG펏M໥JPp݈$!ڂ=3!Bw`p_xu~Kb"^݄x碌on8i(( cW6H8nȿ 0l7?yVr^-ȃ{}Djy8gyI^ ?K_ETvg;?},͍Ƚ6v5zބڦΜ%'9R|]86xJXt;0ysu4'䃜[:DNg}‡Ҧ? rNsd^;o}<*FINڬ\L%}]ڍK' r$RQ>YDaMJOtgucn{[IP!#.t$PG?~'}b-NЍSs߄c,:xSh f]U]҃ᄽx\kۋQMD aĦ"M:*ITN5_\'g%hS^ڿ'mnnNϩD'] VqHe#8D %B3ݦ5 ))U] L6O+&|36<*u‘I*X,ЀC&~^WVoK\X >,,^MR=22l Gnd[K(*Β*3'yI݄C?7M KU]yvQ&A+H45vT>ȴzgxA]i:k5'' `:'5%2~{>B󌴖hD56!܈ؑ~7d[OvnE9o˨wPF%Fi%uoQJM瓥4bLIm,qR91$C|D_yh"9f$fnz(@O~x /:4yո_}>Z-Tn!Vah8ݠ\K[P}G3(8^h'yZp0Gs4*8E&+\4=?x'ȜziaXMb:EzsQbs>Pg^wiϞخAՠK?h?ۥh}DJvH9F H]v«9P̙)pZ0%bBzr6 v*"ڜJ&B*u[lQv\%'ІADE3{X~w]n]!OX[{m0$N5K(5)d|ӸF;}r=!o|v {%ƍs!wV*y5u- 3"4|R|ԅ6 iDe]|>,ͶDK% ?E(`#0U{c3_quFKM?c|:FNj<(ߪa2-iF^$UgkAmR/܂Wܽū _,EϋF o 5G ͵9{nHLd_U>74?guae C49?;1lϝ`Uɰ,$7%\.SINNNϗ&0j27n3}. ÄUJGedh (hiƴ2_F/7Rj@:HVur6q1K.:&ڷsQ@VzjRӯlܓ-iK~ȯ5X|/e|7ܾ89?tfaf2\A-kÝ0 +% kTVjc%$;0 T=s\/*׳>;wy&hܻ;uWuAj|{<)aZTdqXi|4=MhPq (uV,D\4zPd+N"Il5՞*vs^Z.. ߻.ŠޕZTߺE6LC>G`:HͨTh'BP٬8.xx Bu@ ?obIr֚}9.D?J|5 8E{3ؘb^5q ݽul>@׋ңxl5'ɥC8ku|P-_+9AO/te@]KV8XnEA ƣ" _xxR.;GG ?YD#)K6kbW)k b{jWB8U_sp]gF.9t0wj۪"T=j30y3w|R FmXu0G|=DE%~"偎4mOEIڇ&9ϑ mp3S⯡.2 b (P?02YJ׉qn#OnFmT½Frv+.<`q\f敃-HiY il$"ebLj3Pj&oIǟjK( EhNp)Ly6PJ!RSi&=x>|l7~'htka \VA֘׏tEJfZ#]i f 8EPpj#k(딉*+k(ٺ2$_nwY=J:&꘷Iq/JnUQZ&(]&QDT#.\(X{FXFBy}ãROtAA'I?h* $?L Fڗ#Fn擮{)L,Daa/%?.gHl \{bdiŰ=wQDi_=fl~Y|߾հ凃2=%~%1é5~rEj|Y,ݽwlȦރ!: q돢S@ػ nRM2$B)䍭 ob\k ! LhQB j_ Sa ϟZo<2wLrA۹%,s6ʼYQE 3r.nQ1;!o{ 9G7i70B8^L0K=fuaˏ^Xlz8kޑrw7* 7>mR.=NVs^,`(s3?t^;LB 1;|$ HxgBB &\ 9YYXtbdM鹬Gg NAuBlֆ(.wQEse˕B *!5+S!F'~qQl; %:Fnqq&Qt\9{דd'2qH|NPa*=1rz=ZѧYK52udgƇrzZ< q.59<ԕ U]i{W %dkaV|ykĊT6V})6jc3 ΄ f| hq\Ny@2VpĻdSYXBLpdN O52#G<f\YRVƼ͍MZWEžG` .( Yf0 NoQ( [Wlس]l\E:=$6|rMޏ]ueߞ4pl=L_'Z76pO๏('DiB0mREzxh{Iq̈}boi%=IM8lUa,uO3HNF7k_sdAgOs kh(o r=e,nkg"5ǥAthaO;uF E >ׇϚzރ`OrƻAG+ 8OrRq|Dd^ g$QeQ"}PwSAs1˕.tEQe%lBѸq.LIh?ީ0foY7S_bq+TY>alJ.3 F% oU A?ky(kԥgj:s=%{VDSu5|5X(ýe+SwM2l8ɝI]N[ZZ OCU*~E EReelGmc/,XT%?'~$@%?g[<[߿x)]p߈ER\(!|6 Lݚ?ū zn-/sD gP4Σʊ<9<>YKO"7 j־L0 ?Vh)gN U'ha̞qx^V"L@rTPKޠ԰`V ] $4_,@۬ 4}T.Ǐ}x(4ڍm[ lNK`u[yY?6:ߍQel8pBg}ҏXiLn5ZE{߳%m5d  58 PWsb5 b٩#'"{hurXQ$~Ylwe6-f(EpDP c/=~U)I[=&F+$aFu9Y21cq*i"<<*ڻ[%tԔ9byjdd-0l=xB6skT8wDO97`?Ob#'mODY>بOm9xxv uˁGu4أ'V{jFĊBR5GSd>nX8%,V|mHgƺ)Ӳo5p! zݟ(XC4lked:W50(ٟ?ԇ&~I]̒L>[P3?&ά%Μ+!WQ< `y>q<Ѿ~*ZHg~ F58ǘ.8b-e86H4p4"=23Ye!9<8X1N|P RR1͔5Op %K8Os@Hg~_+:tUrq3yl?JVn"})}jΊNWC+\3ƨYߛK75HgTgV]7;n#s::$REk81= 0o̲82$ < ?ɗ\ЮEjDԵiĵ;Q?yj# cF'mu);|SJym&بh\9L95&+YF93ۛQؾf,[Ds|,j@F!b'fM>! :8Pr ֻ Z/G`AeǹsY |T&D=LP{;+)e:|R߼so~FhsHZwoHn0۫ '&WH=L5sĒxD# v*\5՞;~[T>I)$J2KO&ũz)tLS&s! S"ְa C}iz$&g1,$˝@6s4>&s#}7A3K/i7jJ+GX ~H8x$!Ϝ=-.3 !) 9qVJ/}3G`?1&Gi?oʧ?eS"==$]c2dw ~ .G#IzG endstream endobj 2861 0 obj << /Length1 2062 /Length2 14075 /Length3 0 /Length 15339 /Filter /FlateDecode >> stream xڍP[ tpwܝN @[e/j}ZսJRuFQ G3#+ @\Q†@Ia#E8:K/4u{I)::AVv++7  ]6E&R=<hi D.6ES7k{FsS@BX913{zz2ڻ29X 2KSJ:;Z]l\SSo#~G_5z=f&Gw{yKGΓ,`Ef ,_>SRYb0AI$GQZ.Q#Af"wK?=(<f?蝹r;Z W /|*?gߺ;mYYx|KGw}7|gn/~ 6lAtz/N5;_ 8X#u_qt+;U=+绋齃r_n.5띢zlc{{|.x0wwy/}mKu{3{K.(97\nESH܈,4F&=='M!,N L62j8iAwQ;b{I{5Wr#>WN3jR1a\x`|x#KG?e/d{Y`sƣ%;L[^2>1e :SRw9mDE9G %*d_FÑ{*%̕A9M]bwe5ՐſC%=(7 ë[C{.X*COI2re]@2|4^**O)o be] ڊ `T Rq̕Ԉ|%հN,0GGHåQNevو߱AA@H&,bR)jN3V7;lb愢: xԷ"E '~eAHF&R,V\0]`2uG})γ`a4haɽ;T:ma ?q_z0\+rO免EрckeI48I%rknuG"WlGlJ@HtZŧ_ૂ呷Zyf#hkbw 7bG Pk-X DZUB,8f[i2UJ&AVR7GY(NZ`Mc| cr)V qBb|$ 8]gL: h= XN8-E-f 虲`o<;y,j.BW["~q@(3aUx~sm; YHQɊF6 BxU]DsTLiZS&^#2ʗ%:+vǷ1Vgn9=W_5/~OY}j侻":;o1-1kpkQZ d#yي6W0Y}.׌pu^Wb䇑޶=ZN<ٙ#tJǶ窸,ejVii#yhl4r!#W~KS=p9es9Xv!XW@B|r!^zF3v^{n܅_+cױ |M n渨KT6SiRYlB z蕓 E'gJ(2?RׁսBldM R;c~hLL,w'_bySОNyf\%l )X x:;.nّAɸՠ&ԾIbMzdO%Bܥw̧h7Yb*,_NrLX2( Ig얅,lYCP Kt4~fOq,F1.5̱䳗Bkgtt0aH28$pLqA =@,~.L'~e!%$֊/J|bJp`un>܊K*{Ʌ?"JٗZ w@MFD|$^>JqE3// /m _E mE-yuj=]4c@hy1JáY NaϚIbrGQ} HW_uh\/@D+)#B0Nǭm&.[ev֯%NaF X}}$1Y+^N-A׻^Ix=x\B.؏> 710U_=lxƮoF;/@gC؞Ǜ2hvp3K^?ii\u ǫdp k*-b[^aO0 T/b1Mzv\ d#>)#T*jE%W@qFR4;°9bnMDyrnʰN]\M%(ⷺR f!|-5ԽLO? ~mEC7o֛?5P c-GW\"jJ7 V!cAį4CvZ ySۭP۳$HɄؙ.DSqW=ZQ0%sM ?XY /h %K*Qr;Ns[lzO'4id܂( `*c)mB ]#ɯjg4aǩj;AWveKW]'=m}Ɓ91v˭v쁕+Hs'`9Q0=6Hً̺ @6#3UE_tqFs7HXY_/)*¦EW{疀Z.h=nrz6oʁZa!{3޾QJMCf3^0$ 6#3bOrt\><>[QCۃ늄|*58X2|yPLS9L\~>8b~߸!Q&(⡛Vwz=|UE *Zeeb a%Prߚ9h"F v4uI`]7zZ7?!"Q4ΘAe/nEt_6xO]TiÏx/Sn"χ%Y&8Cm?E߶HsO0TCHjJy. MN]L~ɏ֚Q*bpRH^F}I.$\GR8QB\c0/;BODD|<>m&|hHJSTjLRnԒ\ 6{}qAB u6K ¯5B33 nU*U,ۡd/b ,} AjT;O1C5$ /dtBcb&ūkp'=<^{LFmV\u~y1xghVzL:oP+OfS`#+eqWT׭) (%JV8}[$o'++! `"G=;AЧ_FYzT-Y6ۢSy Rh> Xޣ$nE(I5BR'jtLj1: Y 6nڎ3Rx2\pG23ef ;üWp=5ѡaFOa]&Ț9. 5x EVVA.1-߆)UnPm)|Ie݈8)$m[l^;D* q%<9v1"<'fLjDlUk X8Xm^:qHCraӍAi};uX.AZLQsOd;~:(:oxa'v!E]rAW΀~Ǘ 6+t$tܳRMgC8|3`c ָC}V7LEn,,h|<>W4^ԁ6$#\76E]NE%oJ) JmZ=+X4rӘvY>45=<';pͦ#qx'xgk9MxS%dY :L[mtV: Y8,3'[tm; a}Yg"]ϳ[UlցzizlIgVWz'pɚ!VpӀ:=jǪQ&$diJF0^|,-f?-~8j3s̗3[P;VJ7ac<8U:Oۼ. 4!OlT:U|em7:Y%h͐,$6˕.m沿064' Uwz򆍧 3+UŜ\]ڱrѸ}C' SarVU{{@5dꇷFlKC{! }+!K' iT‰!#nH/9L05vE.!taW~CMǡ ЮϒCboQldR95 otbGk u -ۼ(_789Sbү]'am+);{]>w%C Ey{'s%d]/[v^*IC77`Z2htcA'uT*Q)lNV6a "e:IJ1`U(L&@0=kxOq HO0ŪdWZWQq-ާ,8e&L$MhxW-IRXӘȝ- sa}iު[ݗZi/w%e @o(ӡI#X-[{ O;\3/bM?GrbkyA3ǽZ֎jޡk}z"ԍg"|NyGpm&clpxT"cJn!1u7=]+z|| }@?␪b߼  "=O4ĵ/9n|vxx=*oHU_?^GXLeE>őZ^4)_Ir- ӯxg1(]k+uk q lZD9 >( ־ ?pXsJUxϧeֽ,q2L=UHe.aov OjF+w VS=d8j8՗a&NtLbGV:ttCWW>:Vuf͓M]H7/c8G7|˶CnH/oƊH_WW+ܥ&/ kbR8L|aGi]6N:֗t N 3;Ksꛈ~0RŶ p iVK(X42fP]dkEO-ֹ,6MXBmIo?L[ah_z8(v%Rb/B}0r4ӹb}o꽗q<"\|VEJ.ݨk ڒt.PVG~y5C(0wd=1k`` @xCe<4$enל՗-NE:$`28w=x|rcS4߼7'\%L'+b~~&cײ \lQJ5la3CVtOS׍rMןbCxSXBo?,N#s.`"~a辘 R'DNwDxSX=_cx˛i*czү㝄S*xv3@VQh 8"Mw] f~ g00ݛ gvǂVì,)y;BH`o^ Pi}pe:\̬<3D*_jE G3Bm#U"_ӆ-  h;DZߦtUT ̽`{{n)\ܤL((0nfۋ mvk0("PI.[jcόe I6#C'9lr q?G$탗+N~0` ӘDqd )hc@F0U ӭBfœU3Lr/eFLjV\ёrwU&?(#%s$ C~L$#ȶLZ1?vUq*wZ(Z'_Hݳ~s@fKjHfь1> I*&1O#'kRd_>]imN!@%E iR F M+)v=?=&ZAq 1 PeVjc7XЮfk#Z hK{Y+: Ҥ|z|.lAysWþ=!J6+n[[me5"D0k=ws/WfsrL9xXxsglhU֖'`y 2ߙɥ~6;C&ɧaV { n,%ЙHtMIh$cH<7|ĉF9u.Uy3CcnAK\%\!i]D)L'.`GU " \EiPiܻ/%w_#i qr3':1$40@hhgr©M)8BvuZ*IbpOoMDGh|P\_*w@{C,y&k/V5Ԧ'Mbټ q.)StZVH,V@ȂuVHl(Ґ׏LuOU8, [ʬ.r %Y^^BKaó&Rf8D\0UA7s˧S.'=%.zv %5[s+WŲ ]-1d oR l>}H#]e|O–l̮ nӗD>=\f?ʬjӎ*`$]x(9s<Ӹ)/ڋ|${S0BZ0X hRX85{maZѦNKS2$6^;mDe++e)JS4'-Oq4ki.~U!jL s_B#Fh"L7˷Rߋ,Pˏo GCmkW1Z%1v;.9M]bR͌Vu׆뉙Zy\]7cemxZ0z砀j :L<*nꍨgH$!9EDf@F&v;.K$ES^:&r҇XH}\έrjwH}rhvCBRISkv7WM]" kRSE£ǖG(! oGՒY‚Y`.&cLF} 5{c${3i: Y0.7p _+R1NC|%V5EjA;՜oҝ`Z< &L #Y=qU{tjG{mtLb;)Ϛmt>[?Mhi2~md;Wk"<,1j `AAز(xWq1&Ͼ* *d_[H⁜nFDع2ⲱK_aF_ jG!X`U]M; FZ' -%`G(ݡ7M\aXӑun-7fodJ φ'o>ߊW}=r0VΣ,ͦʤ fv@lx*b/%cmduҥgTrf/#I /.UMvhUz.x 3~d='p1p)̠hZ!54B^ ˘U/^.N(j0пޢD"$\ZD^pU"[7fd . /d ><6?5< WjpNP-I!H P*f>4jr-f0LmP#~jƢI7OF9`|}(7Qذy6e!ȝNR/:1 ^RFgo~Vh|}PtS_Kr,ZzJ-tqqPZdO5_G+x íދԏj~ReHi{|M]bO5/we3 =?{5&CBd cfPb<#p5nZ|A g-^v_MQ5_F"D o-{5z wo!ܣ-wy#[l4&IXC*k|Ô4UmQ[VHؑQC`{:]lλXUvaFu; Jbh_%>4O*U<׬鱮PZ,9Fx8 Vuk芷LOϲ1uyM5\wΕ'2/#9ᾥI9 C]oֽ'q<{ocքhxE_|c5/k X$fKǧ\JoA2w\(WIYLƯ,'PU>uo3y)Uo47ԫ5e$cؖI@,2D#,Vϱ+ 6 oes1SYсJlV߈])IS۽_h3Yڽu,#2J5w@D?8=(;tSv=M'O=޸odhG+!{88QPnO+-T#?y0 Z^aM*Rۀ?aiô`#[;_]]s3}i[f{Db+03s>ͥŸXmXFJ5>\bܼJ!QqjEMM5'K<\ЂGw~Z&u0[8-3՝?}iV]ʆS6\\A`}f $/KY[0gX4BBs;x/Wk2=em O][fv>rDd†{XY̍I@{xCzW78O6R'z98o/kdTՅOp)^!Ғg浩 DŽv/$cXĺgpV$yR ޙ^0ofl:9>u\cc\x!<0=6d$'Mmv|kQuqa, !0jbB L TiPޞVoO4mXj׋'8sɮ3oxHҟpfL){)x `O5XqdS8DŽftŊ!2ڔC8R|."sY;ٍ(^#8w6Й "yhl1no_f*FXGzX{ ޏ23EIϼYkP#B>>/9tդzxʶ|EN5Ԑ!kbh6}!ܰ}4caEM_:UgvױF9uD÷ՇC؟^-s䃳fF^P2?(nSK*%Goj}<-2; -#j~Nj=p@biHI=] jI2iGEH1pit5T[Uѝw̛> ~޳2/kwoL$Vc}b` r'>ZxϯN:+Tݺ9Q|?3{c|S{~_AENLvQ-nkCN1_  |i$>οˢ0ǽ3k,ot̂}C/IPlN4c V.ө èe ]&U $2GRrm{}d`EzV="08 '8^TEy;]В1ʇ,!*WdѳF[`|BV}Ô+ek¢Շi10B2P NTv4V0@eǮZdO\I^ݍgz,V#= (ppبjwή[㒑[6㋳b2JL oDP9^"(xBtxy9wmL7rZ'5qiW[a^f.?'eӲ3ctvyM^1PgsQ j of06UZS/-Oʻ_CBt᪖"7ǻn6Jbi`:BWf=›u-H~C9&&X_ТeTVz#􎺞sˣ~9(^tQj?oVP2HZo5!&TY"3:r~f; k'9&D׾'K`ѺlF0&w.[Q^2 w eAp|KѱCtbJO 櫴BfW_@$}](BJ'|8+}!elB[&#e1 \%B Xn𶢵$ l$NqY ~궍$(j"R3~DDI@(=I%?$U,#x?j A'ГdsPޚӪ!Rnf96mZePprly򧞚b\da sY4I_ӥJDÛ{PkWoy\I1A~ "H{ };{;PBTc2E@X}ePAC^9MQ9kY|N3biB=q^A!U0rCT68&"> G-#O^r  )EV˪֥\ntZ&?:\ΊS);>Cы?8=v. ovmR8!"uOwc+(/cjDŽgV;@>mP}vϹe1:~H2c Uv^u0H>oBc&eY4C"ajg׷=z%xDtPnQ-lOkR-;u~;IR&ȯdHMۡaZgp)RTVgO'Z{}`jg%H.𴐓TT+chץ\mQ~_-CJUB 7"VvZP3*D>[L'+uj%5ܘL([ժ.q"=mk;MEdPT֥"xX)nxd95NWk48qCwc%'W}+.iBb#epq9@;OBM'Ƨ8|y_ߛYDPY]+"GQ"?g_qRp' Z(Ⱥi88{6P~ AckMBG> stream xڌPJ upwwwww5n! .-hp`sw{꽚^[Vݽw%:P `aagbaaC"Pj]\A|Mmna9w;+;?.| S@ tEwtvYY?K9-t=dnP4uڿhnjPw4ݼ3'+-f P]<(. a rǬhi@@w }o@ O?  tw7 ` ܼڹ:zLn U\]@NnL *d%,nOݛkuptgm r w'fM;PV?&?6+ ṱ"vd `^d |Au5\܁vo ̀V ?f?]@^}c,}zjj_`eap/7)?*X:X:x~J#?Oo.%h4 '6;_wW^?^S{C"nn3 `eCJ* 7sZ_fr8zP,,>U{?Rbz#_;0398X: u\fѿL . `x/Y򿈛,e v`wwP/a0Aj;ΩsjA:EA>?""wO_l/^3_]!__wVv{ldxߥ k|oKCMkw{rw~'szpZxANCb}_'^q!ǿ+g}b0Y{f7O%/~6yl|]!_e^/O #,/84u<ԋx2MRig2.tFM tME]ۑY!y=nkl6׎4=8Yr,4@OȨ!l ]ٝYƃgWձ=:.y3qsEfyd0nDpt^(swo$rI'q쥾z[l>lxxzDcTbr8kK^m$2Qr@j1} c]i0jAݔVLc2ev v[ azǝVM L`4C~_7{QAxiR<%3΋, 蘶:gC\ժms!^JaNKN.tOUg{h_>A v7*oAcϒT/o2\Pح}'}QIM0=JoZi+ lF&\A׭)GY͇ߞaܿ(^.3E> (`FAφ,ǗW{N1*_W.NKWlY4I{ZBhKv5N,.dx hɉHJP`CcQa)hKizXF;drʰuahe `Ez wwI3|E(=@DQ/-ǰ128z&rL&eXkYgNuh%d\ LjtJAoq@4<5[-@X @3Vp$BYShaO2>q|*!z=6D{ga"K]OpUGCm0cC Zx8^-:^i;gŗe#~w+HA.OGu0זOY=#[8jrjNw{4[>Ģq(GfƟ|EfN[,h5:yU9 7_Nϖ^zVkIWʽf8_Լ]3R)̘ODY?CaZV,odrΒ?m T,!bGuqIM~ǵ*8U ,?9daqo 鎔 kZ!\%/,LCyC;`ݏmּQdBsxD"c6_ѭ֜{h+@_9 ]7ȪFvװ?dwiZ۵<AKWLzKiTkuzQehj6Vk ge s.OdO;Dʤ'n.ZZM2v y#1I,A3ma;@(?1$]h9M/y-:;*VC|5r]G 2Mh..8?0H) ybڇ+mאּ#`J |B}/}_4G`iFV JmXTkҊI40 q.M|ZiLl1x4 #![3,9%qRօ]+ Jx(D/>Fԙ/qhΟQ"21}򋉡 %iWVwG #S߈}S\csTU ^IxD y7N璯3.6 5"aZ4Loȫx8dh5d'|mMW{㿙 ,'Ƹ  2 Yc=ȇ'0˔?ΎVw>-D~,Vن&b Ptr[A?-[UcXՙ?ɡ23:s3qg jSbg3둩`P7F>gCwmlYeaat\%|L=py-f,CV--nm?02*{(9JҺg}!D2/'>gSO!%6*ʷ6bqOG'_j=gʥCYzts~PZE~z\fhe f 4 D]{φX9b?.kxj|5,~R6΅'_:h,%k|u]`lhe0 uFӾHxrMȮ< =v^tX O(+ H#= U(Q#27iz\릉#0,cmTT-kq#*tKb!{ \_YYPrMOMvb " ].K{B'ڕObnבlc_knr~,J_5/Y`]0[ 벊Z h>.Y|q҈Qі>zbl)n5ɓ {)F'\mIU1z!i5/|#7@7rA>ɨsHҚ7!6Pw@jvޡĤ|}%7D!H?Q޾f8yK~Q_z6+6dmjn>lVbM#L }L>^}=!1o@uzdDGp W$<%6|1CYh7d;Z\m/‰؀EZAG5xhy kq2nBٰa(W3v7}Bgnj?%ɈU~#nef] _xVǑzT&@q8܌L9\^!2Rc_2g].QfzL3A7/c3m%dplhױnȤkMɸtjF1Z虱HZ(i"-X~%2 A6-J|@眠 _ S+sӕMvEg E 9dH9C 3 (!òclN]k.er9S7P̄75c6ۃ%aúǻ=obC؍}׀ܮvz/zaI-N;3pztN̲NT_}5' 0H@ ~}DƞTDo{.KFU!ݻN3ߴT{a! jv2|Z;?!{0y"Uխ\Da|^ 1͹IoqV8Sܾ9!ZtuOv;45@S(e\6 .@<!gdA"zb=r{s(9cm#W%mu|I}5"OHt9R=, 8 a526FOH 'i8f&"}$hyڷ$*aNhdxOJe&n؜G>a;l6wzxYim|TDnft֭OetzTѕhPz{%ZGrxGQuU-+?*V4|bzU.3$C^u#@-L[zOk'qPIZ(SwK ;E4 ERm$)`V1%Y<ٷ vY / b9$7sIP[ؚS|:Ք:l\j2w맹%nQOko ߎ [' :C2 mjy`RcOTߣ뒤V7 S{Qy=Y=HNCc/|.H$J1! }0O?2$V"X*N8,జ2Yfdz9ܚ;2ZsֹG|f_¹;7(w/{)xJ^ꏽ¥`V1tnjdF¶|D8P Q/ Q'=NG+I+>ʐy2!9Eo**Gk K'^W ntJ*ۉ^[nͶ2Q2?'YRj.-&A%C(JT`{D+2T7k0"k>QiZg% 9п\w}ŜuॵXꊭG^pG9cazě B yy0j> ߄/0oi<5U*/!26vHIue(K vT04huhLCJD>~\Rkui0S,u^0,F'[75pVLLH&2UnHBT6D@.C7wpX&)זM4Gh0ԨqOgZ-W:탕z W@NL<,)J_iR@mz#p/oQ6zPc`R\L(EzJJ!D;$ָX~$B31L4ۿfa#B9ڽE*6uIvW1<ŦE&]'3Uުi)p[PWy ĝP20]}pNA0xלg @q^m;ԲAtSf`U`soV~%rS &o|RaIaKT m^uG.ydn6TAVf6B)-*cӀjT:6|+JB+5d:ck>P}O2֠݌WKSn8E62љ?LPm'G(P% ll>U6{y}X 1#_kﺠFzhn Q h_h$(MY fcnꞗS*SEަǢN\Y~BtV9ܦP1|Ƭ'"({EZ_ YOH:J+:@[W0%-lo,_`=Gp%'o#@#Xu :R!{rplwsz~95܎m:MUY&ojٛ;{x8S ^2 y+cRRž.ծBTrٕNI27ztI[dQƟžyrDPx~\#)j_ʧPq%;p/O JL:sM}-Z8o_ ^;qID#<SL-?vMYp~*MwR%E5-5bB؞4e*sɰ)p6Ї&859P')8߸:ŖNRUAx9w.TxBEl)kcCG"Yʪ[:r^6jҫ*OƜb=y }_(w*+L-Y -_b$ >hgyY%lGsfa䢌M'jķF2hٟǑ#{$A%0_ch}$4ﺝROWdXSπۮA(f,IxZn]i3t-mG4c`ll- ?tC&'0VCYh V׈[xjR24uS ?6}Ț)CT'-QtMZAyh뼽O9$v)mEdOt@9J}ܢPsbH'`0W~f"zn ;Ydj=fJ>fMI)"RՓѯjQ)m%?]0R݄g#}|K! l$YvJ j$`ټT"TQVn3Γ e$M[׳Ǎ6lY~pcկ?LA,߲ێ?Ԫ,d93،e4g4"dۊ!|l%2Ŗ4J-c+viӃ ۂHF 4$Ƕ{$5CΌH|w}hbt?0Hl}v,um 0K*NefFj)Nghh-ؠG]@yTzRzCK[m$̧Q)lj-vO!#Ie$ju AN i:uWHY|N9N-q'Hm8;/1I+ωdj@PNJ^i{hʦE2r%sj8oLgJƬpɵ@~.3 ƞuG y˜優7`atp>l6J-4=^xEa'KڮP`aS.Tjy|AILWbQp߱}cWʫ{?}^%lf%$f3uZ/DDWk?'+.KKz1p(eJu?iI6(m\zY#Ӭ8VԚBiksk>xajYm6Q5 xJ0ǡE"ax[$Tzo`T,.+2!s cLunX`$ Q9c#,<7z/n3dė7G±!'8 KI=JWŰ ltCˢXB"$XqIҥjR~1A;^8kHY_c}>[^%] TB7Fy\ V̐N.+ȵ򖥮2tO 2hUr-u 0uo|S"gM:whAX\ Їa^ef60ʉD %2RK^*6P57=ABWwZOϚϯPwe%n04ΡY{(%r.3eq(`Y!g?j/uY]7 ~@;,TSRG@C^3 tJ[e@US;mB L!gf$sfq10%}_Q|ȁ2+oƬ8,]a4R)3DH5LԎ:<rYb:zÒtՐ*䈀 $U;Y_UiQ~;TeJmt5-iV+B>5b\2|t&ĴFz 4gqOv|fIjFϷ Vs1p`v j;j SvjfR0x2gtdVKrX'yR{lgjDީ݋ <(1%*i.woKxUZ!l0(oφ4jϺ`*' R%jV7H }YuǺzׂ6 805?er9tFFU8OZ{$gC6r :c7$XiQUid;׸ uJo"_c x1eJQ70'q@ļl+!u|E)BoGxơy-uaŁY"|tA暷YN÷#l$\-(s;|RԼX0O*<-0g!qfkTyFu&:2 [,}ZAi.9gK[u4mn!XLCQʇoW n??~7S$6E%^(n JBcT -qe>lLKJT4vHWbJ~[Z |# >k]z˕.*H51ͣcg[Ρ6ZvQ]ׄ]{k}j*sdӖRے,¿c7-Ӣc6{dg~K<2a:5GN~m2f͖O$ҡ0^9%uuT\KRioA"XlL۵4!nDvcc_lakV" Q>(/\P(QXO ^ʼnBL,|63C3)oࣃQ3(dgkڪu%R0"4;4s3Ɛ!LF@XTDγѮ33A Ow]41[fl_?ST۾PK|IUaؑY$rJ[}Kp+VB5̚t J4n9#e0l}ƮGPŐ\]˹=P|SX_yh 2\X hFNZ!ngCٛ@0lm Z>Ln*׎<"ÍdG\iHc: !hjZqKj˃Wp%9X',۩gi< &@1GZ~(35!/@+D9-Tg 咬sets:FOcw1)fŚKy?]|?FzH~(h/xg@jޮusu^zd*FSuƴ3{s<0uq`/1e xgYW[."xU3 %xUG|К?KN|׾<;_ѣY e2Gya[od}:; )dBy`S'l_58`yUCְ zYۘzŏ+W8-XB;~G=*u2餛'AU &ŭT@( TPq$ w osA9PZY`[K:J~ɵtVHP6z!ybO `=Wr4MViȖӲx5ߐ3`k`UZdCV"IehxI{i/o{ ɣ)GgԴ–:yԅ:'gV4Db_?^,Z88Xnt6b*WoU#̭4ŸZ%2S>NJu2 b@rަ&Ťe7UW3ߊ[YUkKrP:ˇx"2c>S+ _jx1)0^H }rȫ]EsuIwB`KȊf7[uV:B:sPû~rYChb f)19\~m$zm> O?᜘OHg5;!F M0yg)8Ѓ~D1gr&6BwZ[Ozsef~V$'R͔閅lm47KRE]H7L2NŦ2<"k2YnD)R_1FJby%j &|@or%iX#? Ě~Ыdv{xI`@xa"xw˷:6é(>I@wTSlv4c:@ǰa&EgTq5!v<}~uO+J8(T6p!ﻃ:LzNϏ`DBs |TQ*4P>=嗞'g~}kmX"`)S'zT{KCuO~&3LZXTƅ[ʸH̴ |7YCvq[x*~nxơt,/K xchqpG:\? f][%KIB+QXZ/KiS YPD %pyl:`d2Y'&qkWJNo v=POL]7Rǽb υ|{ojUaG/]=^COx:S$X'7;i4U+! nZ}6ptȼ^z4k7oNt ~bհFэ<~`p/ۙNi]˺~h+[ ~+ ?!&C)Jo$qrYq(d0}p8ϴ2``2`,2qPQQnj4K^tܵiyc궐 S3H.$AÖhJ p ?6U} ُi3HGh)v{ܞc,C)UJW8$/yx4|>> vY Mr$>m"ucl]P/^b}p ?O%ԏvR{7 ^,LQ{f<ԽLZE_|,T_6+ae̙#@˲ԭһ~:?Mp_PB"x'JyCY&5=E|.UN#MQu"9 'KG lYF2}YXL|s1֩ WLze'uӫ)(ѓD&LsklnN-m۹M, )Wa8K#= $"aTa?mļa8=KžQ׷NkF"f *oT9!F$Lo4MlTQc*J-JOJ>-ͻb:åteFO q|vݖHhOtP`qM'wU2Q:%U];io ۏ|^Γ3Afksz4lv*tW|q80hφ~ An vĥפ-lK40aLFX=,aT YL?+y~zfzM/Мdfi(.N^UwX%#LMިp'UU+ q>Ŀ] ,O ӷ)R%ÄaڣJC m+<[d+sZl9NA*xcޜ鳘]`yDϘ1:X,  Ѽ1hU|*V1LrGT;=JuƓɂ|0+hތllvz|(au`1 ލͩhWB6Q;};@K$BXXDn8!,"^71Q92 Tޠ:=>d82x.-!Yr=wO+r[@;->xP0\\mD9哐ykq7^OIc_V ~RPVNoVHΙxs.ɻWrP4?HnV)Pr-e@a[;&-lrh@D?Vi%~a?!>8yB1 I.JegTYE#Ѭnq^=nvpldA9 ]S|e=1h9sV޴co$A >I9{sism>nE.иB(?L>ׅG7 Cڦ$h?}ObZ`V-m#p4C6R {EVa6|UXhAQQ6ÏLE0{X@8 endstream endobj 2865 0 obj << /Length1 1584 /Length2 7387 /Length3 0 /Length 8418 /Filter /FlateDecode >> stream xڍwT].]"C7 ) 0 0CII7 RJI H![wZgyk׽fzm=nY; X Epzz|@(c33C.̆`8_`B<jUOOXODb< /@ 07_#a>l>11?`- !+ڂ\z0[l8/7pfxC]0* r]63@ˡGx<  ?xBz*-70`7/ٿ ?A0W7uC\-%u a /dA%Y¿z@p8Whڬ8)@<}p0o?U VQ;F@(Pv}ly-PC `P8b~xaA^`v[bf0zxP ;#SW65rr00_F{+Ujۇ6c%|K \0́B@ۇo/{GJ.. ? WD< ajkr5vO @ upl A:&k_w /x:?Q?L.3~!a |a>!RaؿTX+F^H /x~#~o$UX4o=F^Hk=pֳ<4?epg)N`-V"̩&Zʛ{u}a5:Ѥ'J#Q#7w9k 4ɲ *aʹ$Şe0aD$-zh?I Ռ5h&\S`rn* pҧR!esZcM虖_L ==U Fnc! r-qf _^ QxLA\>gO^6X˒Ǻ :NBFhkBm!eN1RT-esGhF-jJI%욤em+,!;GS2E. Ϯ'Er 1T^}GWHZ̟O_dyN'x×uLJtT!ZⰐЩτF,bFCE <|E@Խg45p7D}ƂO(~؞n4|M.R&[RmCZ]߿]jis,p)c4 ͣYL'PKPg[;fiu %J?V䌠Pt9Ȫz=;1Y+[ o 'Pg?um[+,toB pۓMag Kyc6lۧ|jUSG] *Ŵ9И˫sҚf_rnqϟ_>m`siD)\6mpc^ ֶr27gϩ '=vf:PDO zз QNuλo9]rۯ!!T^_fX6 gMDi2z{˜l;fOdaw̙in:Fja"g$uN2 188q ƔHH_*TwR>$,M)`%> J Cf0 OD8>|Bs~Sۣdl?2(b,~M{5}ʾyٶ;Jg ,;r\B% ̇3ygkӵ7Aӄ(Da9s4XEy $IqZí^T@ړƀTl?;|GR9!ptѩ(cQ?w(;܃yX^#4;L {fBp=۽AoT\9t7B3i1G_JS*ū.[9Spo2v}A ѵ|=Jssߢbb=-b7?+J;*CfO)Gl; +VH`[Wȉ ڨ)LD }x2Bs$YMSjL" 2oWWoT_;} #-έ}Nt\4WLX(qfcOpF74+Ǚr닃Ӂ_</f>ȃd%{F ;lf?bS10\8fOdgd1U#y9ӂQFU6Ҋ{ĈtXp}FǞ~BdCi$NbVP*Rοy +(NP8;ţ,ʴq%/VG8 *Bo\̛u&6&8B@ㅚ:m-0tT@Խd^%]shxУ@N⏉wxb^_X6/]OTڮO3Wm6%o-lfZGßcmהV؜%Xix eT,\5}ĭw'nWP‹61u&鲴֤ h{`N@jՍ%#E)}kq_`t<)T!C~>T% 0Jx%9{, `Tdf8V@/eڋpmnR&ـ\vPUEKU2Y}l0n2( ^:H%[-UμEHIdt؝hTo*Y@b9CIw㸛Dz T(''M\i/ނHTE ך^\`\4㴰A_*ݾlSMZ%sN0xc=YR%\Aݢ>N`'*PU}׮oD$Rȥ;1@hr4!A4)cx<@ޗ>B2aWq ! I>a]6iV:w0wMuz RPOK/w >̌Lr%m/xlrz4p摎=$S-p6#PrzrS8]{}xw[h _g{r`F6a~=,M&OFY0a}Vʳw{N)Hɻd ɠuHzm],i|DO9Ṳ('R~_{&9?Qy, ) T=SՂK[E &ۘ_ )&91uc#7>  ,5R+J)[oeϫ;ԦY%?[r`0ߕUϏw3(ӹOxI#'2LI%V6%Z^D}VqqJ|*̀d 0qt=} nS?  I5^GAɁ%wYݹޡָ q)7ےNSQeSU)Զ2;IڎCoWbn7:P$eI2c\G$"aʼnƆ]&wըWJ8墁~[5׌g*$^w)q犧/٪Zvx;&ۇ?\9*tFaubs[+Oyul$ 2#R8k޴VMڙk8qre(ttLJftX``8V,fc:cP6nbX1ѓҖanX_֡o Rqrp"*#;?zS]r̷pNznKލ%ɑQ:\QڋꖱXzG,LG/L7 E*U xK&_ bl/¼/7=pT#CPh_1{ 2iwJ*Vy'MEǎb݊]آ\TM+(a(n߬M^s[VWngP7 _!nyjAH`HM<'f @Qk(؟6.f<,|Q\B$1dtUG)_j1}HըBW2`v8F=2 i&6a*pE4rCT߲C-nݞ dT",#<bU4m Ut!hNq_"l>~tfVA!qyojXc"(F`W r{C=@5|@<g#xDPe>t.FݐзW&+[/CU4H d?]MY4/_=fn`9Ĵ0VN\%.;J~{."IӲoLSqH"Y.ޠU ԬW]6csUU2dxiAGMtY?Ú`{ A/HͳuxspRE35tB׹PQxy;e8V" `U%k[^St=SU7`޷y*{#.Jiw{06`^r~*>\9[#!v) tWb'룫vИ2J5ٸk _EM} ?:+!j:qj9CGxjLV1=vF0Mk3W^bGu!)e9?+3p4|pYe`ܝl|yRS{!}([f¢jAw\͍XbY#(ٙq${9z9PȒ 9 ^ˌe\}ۑAae]/QX8 >6>#?DqA)h^&Ul`꠩ E`S'8 ɱ6,^aX>C1wW3l|ґny̐NN-w$Zx MXХ@2u3)P6uEK4`S]w@3L0w}h,SXOzGD,tvÐ?dml%,6{ǟ[p<}lw5?ttMox9%h / #"{^՘޺̒i/ĀyyK<.v8_OyqkGiH& 8[u:EěL(;pN8+v/btJhj}@Y򛧒uu8q;Dt,hE| ^yaP& zM4_ѯgHdM;]?cc -\ɿJДߓ߫`S@*~^F}zeŷA#\Z`ƀˎp}Pu\r)8,•92ԮG)~\nnЕk4UԲ=]}T:>BǗ^ΑNE]lcZ)=޴BF px<&}^?&nLC]u#&T9aZY9ej(sQV5e%%eQy)aɭb͇Cs VicAU{T`%ĢI27y꺱lSNܦz%MCkZ87ݍ#. YYk I%uA]nDKh(d mO|uJSTϵJ2m/Z] N#eNA<?ixU|lYҹٮ;BeHC@,j"G4γ; HWrEJ!<K ;?6֘(.^^5")1 sKЗn? ,ܾUYHkY7A.VK|"!h`ִ8qӈʵ~RӱH!gs{;x{& n4Iȟl?rRocezF,?f^k5pkٶ}~ǚb endstream endobj 2867 0 obj << /Length1 1919 /Length2 9607 /Length3 0 /Length 10823 /Filter /FlateDecode >> stream xڍT.t7CttH 0 0tIwwtw4H H7w?}kݻfy~ mv)K9HcȨjrsx9xtla`_8:( gd0* p<\\B)B@7[K*@ rAg@=mm`8}0[6H9m-U h! \0`PaNNwww Zf@_%Ԁ?K@gغ!ІX܁ Z]& g<:@[Q93?9um 8@+[0.=-).= h ~Ki  sp59Z@@0_:,gs!l-~a uur)ƬA0??7yXp 5zC!P t`ή _ }BXZ k[Gagxm=F\pq~0K#o-Tє3e !ov!?  yV #]=۟`s@X3`诸,otm_^DoF`o9 90B_U} uuTO59ۺz,5la6\׼mA_n|,[N"|Wbkx@gg':> dpr8B`pF_WcV@ / S 7"N92h_B_2(rr/;;C劗ON7LxcOJ9ƿvjp 9™.$C &$'wjqrw<`x7 :»tutu[ aPx-7%% _3 t#<)(R +3;wZŃ;rǟw/Y:;ý^pJuA 'H]]pm;zWD@8q Ji'i3J4ЩO>Ƿg*6O]QYBȬ'"6qO4)͌?݅Vw:8qhRa1R9]Q4W8xF:Q7Ѥ<7b3F>=8{W_OJD38DJ(w-SOKZʸL`L`{kLSuMOb9[Y:81IZ#lդK3T["\Ts]?Ug %7*KM(~A&;$f1 <)b`/5TQ+;>c5uQgWl /Z>tB)  :3gqXanS$"/%&ixtpuTv C^`RV-U|+""oyaNSoOL͝O9yPMs^ژ1)6IN |Z͕~7/{k#j$@>%8"{GΗ=}L) ߯NG^˛d>F U:.[P{?Z5]~6y5kT;(sa3-nVfFżN6|r@jBK(/GD=VK4eq0P^NuRc]c}'r@Vpk-qs 4NUy6MyZVBRѹ=I ;\I}!ը)2ϋ2Zf/0&oWEԲᮢ1?+e c {Q)ܬ AlV$٪G7` pJ2-Y`2Xŧu3u?vIpLa3"҇\%`gټn˗t]z ULJz+7DiV'0eF inm9"ٵb+ς7˻^іkJ$:z%P)kN5#i,gh4( +xaXVᾘ_d8elq#*r8P{DWC[yt̅,x̰#}܄Q^<Ƀ $k@Vwg3XP- |o_؛yi4of޾87m520aɤ ļ@\8^_' ԦKs5AЎ@;]ws\D̈ )7Dc̝Ieȴzt_j:/o6|.T+ D8apV4:V@]5> ,4ܓ{xtn''Tw5-F^(^`XFz>ՙHaԽ-*!{ OXFDO& Ɏ;{RT+ظs  Z@Bw1B-=V៝,Ýrt {L}Mx8 ga +!/U'z.c,F/' Y* m+M9,W(N9l)c텹YMU?FߛK֣p!ߓ3]fON^´K -%>"3ث7/I֧~_CY:b^0Y`B?tnG q|8,}NFX')nɍ/ ?Y"vnq|ΎmKIR{˅zXjxu҅0pW}N˸j>eFk[4Ȫ ~)VE$Ζ6f$r!OO¶/bWppP򧝧NfL@_N:SGk҄GB^OڷueV9a~m O!GiBуsQyj#k|6gcl50*'/4i;B.;;D' ;אAܜXѹѬr|tiagToc2qh^4 m3O"g~UB5?@YM9>E=Pы 4f 8-2o/5l'ۂ\R$"yr=b9ۡ;B(Vͷ//iٿ<ܑˋE:SDsT_+W R]AY~//Lѓ ]ĀQ]e,l`"Z-Z^rUv>c9(wPk5U׮PG0ت X aP"#0Nқ+ erI*ѺFu?@qYkG)%4뉧s:ɸ}*kXJ'_MdmKN]D߬Ҝ}BHCƧ|`5{s7#3:{OGy%S謘*wk;*Yͳb>v<|2ÁYWs'Սi 8_9Kɇ[GSaZm 2n,oA[JaɚڍԀR_.OۈУ%{oݟTb[t?#u(URT7q:Mֳ:%* ~JÊd'\͎'o >w3X#\ ߼KW&2-jj3H*[?f,@uGlc\\´hScTtHN܀C lDrLvZOFa=\Ql5WL`2~aIG "L?Sb/hBzߤ0uѱ,09#n$r(B{䎱yGtm| jb[V&JYȿcެ6cX.#)ФbtYhڕ.gs:[;1M-Y+ShN_'F@%p>[bRׂǘ,kbUW,ka'Nn\y\2pJX WmPJklSL|9YOUU1GndֶyT^Իhz'tMjD,ӍJҽՠmW e+6 Kp3\Zg4Xۣc6TdU]HM*7T]7T4NjhWnq21$z^d6UAv\Lz9J /;4(|xByAæOIqt? .Ljr]#'%fZh؁(KJ^n[/ Joq/UgVy%bJUύ 듊QLJ?1y,MQlǡ("KSxBtZx*(Ql }"_COkת0qOPs]~&r)<0S@QţW7 *AyI06 /eKS1T"ͮ,_Ehu]Kt+s&rp"#^(ksҎ̔O|]= (ϗ|tWv0χ{1ZZV[\QsG)YYtsw{? E'7Z.r?GhFHT/ʶs1UݶטaAk̳|dz,qMď$! dXb+OѴ'!jvt;Lܕ X="ا!TX|b^J\nxNnT:W[/S c^2 *i*~y*{_PSq9\70_Q8#XҠUC|MQ~WX>n1e#`T\]@<^}a~i'A5SP1eQ66anqݼڲ ne'L#,u dbI(&'P{a-=`|3NN|,a%i!b(a;5&C_㍀dN[h㼒6utEKi8$oݬOy\7)b5UG=͢S jrnփ^H,ޟi|Dsh8k~>X !h"6T)T]A5A1p+&q 9(tY+T߹<q6{m}!qTfm%/,g[]YhQmqq'ܡa#H\XC..G 9ʸ[a OƎl$ Apx:eͮ/ Ss͈X֊z L8VoMc+ؽt2B+Fy7brd{꛵ӃW Vab#ќAf$3bhbwZ"?LcN7(+#ڳU?dT./Z<ѾtQȷf=a ޒK i1CppKTctd $I"M.f931'j@ӔNǒ69{Pp&~M~:nYe*uaVY֒VEzF~߾R`KU mgMWS4OͫWd Vqz)H`6N nBQ8- ["z;} jJH+S/CT,Y/yBeb"۳X(Q=QM'x(ZWΩqfeoR9j]M=!k;SL$ḼtrJG3 h! htj3QYtcI07p bE_'%7y2e{bS; O!/'it-l؀x/Zm@Xe\PР;i˩jH_חGlTG4/*͋͹D&ԛ5_0ѦQ{RUj\Ʀ;?L~>&1KBW 8Eۢb27V[׺֮v*p~[dzV׻"p2Z 8+l羓y@HYRj7"^oq4zN٣ j?m=QdZ~.sT4^~}\Sj2aݏha`YyäJPgUb㏖Ĕ#< , w #ϣ6N}2>7T'3(=RjVːAK7哆jg їBnSIDaxfHBAvhcᚡnz\Ǣ%o`ջnYgMY)jzG%^o.֢$ߗ,=Z\λ֮?[TdaɎ ^`_U))?o돺J.t:,PCsb.i']aH ]cwS,P] q2ZGdRë!{>yZhgQ~g}n^U5xVqA|d(kjڮh~$m >BY%fT*,1*yUƐ|Gg|⹡q7.C@O7Un6wsu ]UބuT? ocC_Bӄzl|ёBXh4 }%!T0!Z!VqbrOyi#._`1TS=[xZɲԗĝu0VgR5%㘬w 5uaqZߗd+>h;Vmq ǔ[%w(xL|w*ʆ/=z2)(դ+4se~o3XxtϦV9_+Si Jw06:seS%o ?-珓xOVN#sQh͍~±_6@R{80Ti淙υSo'O1g r}#  F{lp.EmG߰zwPFmGWIJ(&\}aw^/mZ6W oMMZy:)PY"(>>ĖA*F߸1=.X9>V|LGGح\MHےMQFZ!Qt9[pt xkFسЎ'm<UG|Ӽ4Prytԯؕ 0׶`OuşPl0iO4\Mُl:8fӣm_ḥYʤxJ>ܤL C޽Z#v"U]h^d3ؤځ \w&9Zb =Ia>hmDޗriVֶ¥|ek٠uw1OE[G;Flg)VH?GIoeRBD͎G9qމ?LY" k݉lѤ(j/_&f & lj J\ejFDN{,$# H',#,Xi4R?Ufdiу)1n3^ H 2Hamn'?Vx({ P#OnanB%fGNHSPxUEI gp"QcN_E=}.C`aYiF(j>||Ub/M)1TOsipT8چ'_@g<ߐ%|:E̅B |ee6]-E"HCyYrIwoh@!X]D,?uպlٷ_8+%.60o)jU|OkcϞ43ÌwvB"/7u؅TNKʜ/!8ƨe̷B[`4fr`v ⱒw 2UZt9vGE0OqQ=)Lˮcf`b✹ə8bƠg9u#)$%1͋'۱1%䧻|%EfGʶoM_6(oG? f~P-V*_]( }C JS K !^5*%)1mKv hϺe[/_? ϫ2z{1$ڷz).;c(X#]Q5&"2]WM: V@kG,=> stream xڍvP-ҫ4Ԑ{E!$"$:JҋtPRW JSH)_,ߛyo2k9k&\"p=B Ɖ Y$@b&H /Lkp"1hEPvG@qxLt1h ,KʂdA $/"]D@R*c\}ܑN86z`)E Puc`H%p8WYQQ/// bo 8'pD(e@ ^78༠pAh,> G5u0@U 0(W(v8 ]}5 ' ῈP,"]xΡ5EC/<,H_E*AhW*Hw >nB]8 p_"hBS/QsD@xÜD7qEx~W^"Pa\Q8#hT?k# ЯϿǠ]|C}ZƦB;HDd$vHIKY?h @OSWÞlYK7-ۀ  )77;;(_޳8u1)@7gfup꿣8(~юx/% ?8F 8MM 0`^-,b9_X-羪hk ;ԇwmd(Sx;ůkB)QqF 0i L.~uHq"0R[dew.I`acl_Gm:ΧjT?+tD\c9JL-ΚfiTjӳ6쪕&(>Je*mF[rX X]qN04}{F;Rja:.c`n/;M|@udy+W`b/+SBV=O r<%7O߈{ BJ*"#.%k)\ߺ_"0~>z6# vVwAzpqۚ,}ɬVط< sb/7sO?'h $!Zu];4ؿ4F̗L]zS1}%aSBI -Fy+cv`>T:%ɿf| <7|pdO%fDP2'Kڕ4Xk>->al8|j{)ԔƼ֒mǴՈ~Ϡn9miI^Y˯Ez_6fJq_ZoK0s:ptl캣6wwWZd~%Z/JTT F\/SmWZdpOxl%>xx {ꥌpqB"Xl"cd5 M+E^?t ]XKUM0{`QA~Nӻ/M\/E%ڧ- Փ4Gl3X:1_bxmtCeŬfI|1ʯ2}`().Y2Cw^籐Nsfm Bonc.8 wƚ5m?Q?rNQ[;ٔrIa] XOͯ*ٹ!\c]YeF}:U4N+QBJgējviEli(!n-&Js+x Y5ZKl '!ڠܩ-*0Gc*YdA![Xތt|e oƓ9 _snHtI=փi?WѐCtL)Xj_#ؑF^毮jLzN6vbi;Xۀ˩E}4%JedkdپOO Qܸ]ݑ1%8!{V:{8y#$c)$E6EY.\f'yT0S*UfZuIl*A"/Mn'{=yP]_Pt}kp|ͣB2{C]=%ʗI _Ωv nEkO:\W#+:;!1Pv14BYbq3%zjXbLjk^7{ysB@x-_ޠoFFWVVXs:"/Z| /PU%DvB1"^Ʊc]Ǟ:Vـ;7roY|zuT܁iYg'/XF9kCdဥ8xջ6v1N/?sf$pئjcL1-(9FR1gQdz4C°F~Αj^^n=q5޳ks v*s g ,#L=.j zu2n"bF(QEF]yY`en*};8yH\S/bYSj¬Rߊm=rŗ@E'mhV*ҍ[b@5)Out`@xZFwUN.h`T+#64Bv=oS(=uyr^{R9 oTl>Br\}VSi_Q.).HeiZc2 -Uذċt#%и6)|QtH(9۪ $3%q Tx _Sq/Ԍexn,4MZ6A>^7p/#E-{ށ^T_ԟMf2#eЎy "VB1Y}ą>2,og3DcN-mơf YCm:ߨ< <%5gaSImmFGQߕT&fVS2Agg_S'"[N.%80 Z߻fϨ+-UA>er#ė쓇'rϒ[H$)#EJOZC">%Q<-'z#;f>8IӋ q̕uĀ(sS Jrc}#몑VnLIdu |bm1zʟ>g.(M5(`/>?aq|U%'5krMɛɫޭL$oy?s %k784PGm}CQH1՜t)-eȖBjA#O[WJ鋳/)Gf/]7n.DY͇{w"%rOT"e|kQK8i/P% 8W !ϦR+׿sxg31M*ȜD\Y%:2q9[!~ I[Q?5_>T|w{])M{v2e~(fŧqeOT廏r⑧l^c* ,oEțE׸@V˵zw{erlae생&K>,ъ"4*%~o_tZ2 >]wE.47M.yE[sM,v5/i(yrC/zvd*H6:f\m Dx~)=>mR }Ȕ6at=Hp6 b,;H-i/W(mdUa+e+}j0)=O6OImtc,MSZy9m^ڎ7o=<&4y[Km~RZ]`@וIbB6'>#ĨIpټ jKZ6-sdڒVioa:|GrCJ&x]v#zU\4'0D/3yuGbg\&$n\32~RkqOXE~KvͪFI$h[+qzE!s!c+] .PD=BrGM fIw=/:O ZE!G%&Oɒ"b<q #&4>ܓ7̴o#1 g'VaFUw$q4~vp-b<"{pJ1zL#oBZI 3<1T In_O3f7Pm:>t%3ۙ }0 :j3$eDHݴ|@3bC(H_H M /CӘ~A.:QT3fyLف&^Qհ}2Ytk+[Ajո NǓDm~>󣇨X۟nFf1N LNW950at FR7#LG|O2] Z-QڮGܵe}0(D2ax)@4EE+U rfNS,`stc}[ZZ}G_ec?Ky ȡ+aQdF2XjƽT}yKFLS5.}Jd ^^Y¦bF;f݆eqY_ |Fj'=|]HbKnu1B!+s ubIv7Hel$GM)OjtEP!#}J2Y{u4K tQkbOI;%__:.!j(Yb/KK o]c Bkʍ9.dKW~|4G(R/wd|84GjǵL0JkB{1A9_sLǵw%&J{&ZFfG9+^ $^lT/kAk) VcƋ:y¸@w=ʨ϶IQޔ.Sal6ૅ:ovn׍~Z\|ͣb2v'OX3d?.{kDC {βڎb$CjpO];6Xw^-3͕Vo_H۱s^.O"8ưx/3d]fޯ#g?]^БtMۊi~h_ 3œ sr<0bxG3M2Ts_St8YaoCq>t=Dk+v[֏]e**Ƚpp=*'/.;n({].wC7ڧ4G}NxcDSYXG=[杦U\?7K7LܔN ~"ܱ='((rJ 3B;W|yYº$9X}'lEp`T壊cNtޞU O۝bwugdrBlRi019>xҙV?&;P =Vq> stream xڍuT\.- *CwwwtC HJҍ -!ҝ}ufyv~3, z< Tw*x,,F0wg_0Dp堄ј25=B@QI1I~~ ?ߎ$P ux8`QB ac^@ 1@(: w D0hà>]UˋE e9^0wEzB!_\*`?!ⱻ g G#<(>h u8kq? .  n| suUyݽݹ 8#@ǃ >/ן)*"~\7( VE$F. ؠYKMwM#7 8t3<W󺷝B )󻚛x : ͇M%)J}j~hТ`a *sWӻ<2V jYSHJh:rͱnԱ# t(miW7{`.>rLŀЏ9z8aUU^ @IIeGJF o{Kd<s^$ه8M -M0Z4p̠z;bOwѮHߚn||9i3qm=A?c? ro T +ibW}*䤸 ^Eug72 nC`VwןnG~+`<3 /`q'M=_LRAVfQ?0uĒ% vMaMQcry&;k`#'*Hkop̺k9&0)6ֲ4+L7bmLo '5f0 ;YKw:Hh?w-v&-\J&==Umԟ t[A-|%U=s)u~sRNt~qK6E/s,q{!BkGh]} $:7m$">)u)}Ju@u!G8+?K>v^/w@6:"p5ɨ5S4zaMVz1B 5?I{%r9uQ8wvDa{i?, c(]wX)1!´1wZ5-1K D_0] 0:bV)x}9_jۍ٢}>8qzpg"VGuB8[MԈp[6˾ j@KA ܱMq+Klu,a5چ@U7Vp[F6M6Q98Dc:EH(婔jF]r7Ee 1L%[|ǜ Rx55 ^׵*tm6-Mc27,Ȃb357Z8l-$֜ޏ~Lx#Y g7Bk m 2J4smt~5mھA}{Lg4"AB9䦹o(?/f};V73Jvc5j]) 3IWL>QwZLSz+1Gʨ"wa:8dxeAu (RP;\nrrapB_Se5ի^Q/awE/DX2^L'o(OW\<3F;30WL%5kplzOM{CU:'q\E([R|9+ ])KQVx73GxgO=\/V!nަLmG'Iv7Vi7>Fy<7ʌU"ww6J2JQ~,;"xgnJ#j_WRvcۅt"0S5ci ԋlThz$ ۉ>]G N/gIAR"vyg0rt1 /Xxvt1^W3yk Q e7RQEpD\cRYg_J n,3GK>s2[lO} v'qISN_(M>·n{R%6B~懖DkڠIoάY)P4#^,W@!8OD ۄ!ߨs9;K ,h}8coO 4U]`O8XҖ'1w}Dݍs/?m0CxnMR0Ufv ==}mZ߇3WURϒ5hq"kԉc>F+b.ko kȘq2X՘"Bc 찊HK1_F4qN(Nr}h"kzˆjPٷɌs5sR R1Wq.32[Ⱉ=e_9Iх-5pjDz)hF*K2 "w%?i޳kCgc& }ԌdدKo.7mKz^(>!KXkzNs=9(O7^弭n/E"atOO@01Q&;fֱ]hʝ AYJ+'GҧVϚvqcٓ:(g 4+b<d"<\6x `}Uk?gMUoeFsy}#N\{Iف4 x%LyJ~ϖ vqixLjjcgd`1֝'VsD+џÄj aDх+*} &1G)õow^Xn8I( m}k}{IصgsIKKѫʠ#]sňЅ$!& 'c&ӄ0y*eKn23ޗ&ޡ r ٺ ~%̍y6a+9qDLɩFMayPc^""ΓB6z&w_r8ԒuEH7U79ga0o]VSݶ<@Qt[B ۄC~Uc)_6X '!!tXwLj)Vɱi}Pٖh{X 5Ikrz̍Fʶ# ũ9tk%u5y}m|@w;PetَQM)sāu&(|\hTT?BĴDr(⢨MHelJTMm:HtjCWhZZ,G;C^u_ cMK%ƐrY,/L٩,]v[貈lD: GM lsiJY&rBTCRHrOh*Sbww=m,nb9lrP@{ujuT8{4lŎy=]uo2@>7*V eH\(Զ5P؆2ƺ*fE 0u& 8t}VmԳ(d`}Su! @zuRLT!OƗeÎ:8RV21nNa D] `VΧ[muV9K>29Gₛԛ/=B}jp&jL> ^8uay&` g$s dz(sEHeJM $o-8y#-fE*oZ+.x/=s²\=rR1|wd~?J% ֛ݼe|XE fˆkx~+dg8s,a9Obrt/:$n~4~]q 7A~w{ ,]3lIf?c} SRa7O:Z4hA|/Ek7TRc}Z?Z-jiϻBƹi]ϟ8=_C>|+ Yۉd~\CYtdm}7IҪz.:7z 7{j㿬9,P|z1Q@ {#3<"k\w;᨟wΦD0[4 .RT"p7$fgM1,#KeJ}g-&a#Al_kS\Y){T%KKYE\r@}k8?'[vqSĆWӱY\ 6b5S+A{ ͛(?+\? <5r6j7ZQY?qٖ_KaYs^IqXq/faID >6xKUqb,;Ȅw[jz.E"ץ1D6C)lEᳩ֮6Y4ͬ%byLb"/b =`ۊw@GN?rwUIw%']C5R~ԣ}liveX2ۻ]Rפ0v#휒r=튾<5T_XݭXg@sOi`cKDU/R]O=74~N!ɓM76,}iRR˾ia DcHfۇ\|6g~e`s29)m˜2RX#$6> +.s/ݛpɃ92Jk'X QӅ/VpU"xY-fN+.3}<)3ɯ*hCThNY3&BkNZrԚt`a-eQ&섘IW4}8&Yqx%/\,J6ElW9ɕ1+G:%R)?%LΫ^s%dn5!+l~3s>ax.R[dwJg[v3_t œE%*$9 ҅qP y\~x}@ԢFNlǺvqwlYdlسMr޽T{?ÖJ2q-2zu뾨 uUmiD ڊ#DUa@έnk WV-lwT4eY, &QR {uYIzS'CU6}o$mIWlBL6ţ9<_@)o>kap9);he~fw jXrXDڻX*>{ <96Fѓ϶ń a7:ϓITvqM %7˺(6K:v,zBq7g-(&P~_7glIS|z@[PM}4d! K&F K#X]rzFKtL,n[HUaJ5'.;50rM^\5Wľz4m|RU) endstream endobj 2873 0 obj << /Length1 2193 /Length2 17494 /Length3 0 /Length 18806 /Filter /FlateDecode >> stream xڌP Awwww2';] ~gsUTͼOӽ{5*ꌢ@){WFV&>,+ Rj R r3]&an`sXXXXl,,1tpHL9{ 3?3Z+//7ÿv@g=@ hhfb Pw0]'#3 -jP݁怿J(]%@ Bx؂̀..n@g;;@]VXop+_&ffv&^ {KPR`rte؛ehbon51}7W&)QU{F¼$@@sbwsm<},@aȬirrJ]Gf tpN_^)Yx/ n@?*!AfS%Ow1og'@}X,}d>a^bfM  IQ_'`eep?oпt?){h >@͟Agd1{bi4, |4s:tڱ.q*PKV:L&$:?9!|aӽe4PSnRq")XUT=ɺaw:DUQn+y yv-ТU=b7*)YΌ#$*~mG|r:XGO`i-TkCh^ b?ъI#CeJV;d(W9HB8ȍD G'xM M]JXM$W?͙! -Fo(7'iB8dq6~/Юnw-7H{0J6~9q%ۡGMO#:mxk͍QiEB!Vcr2: JA2kUM=Oϸ25%(]Jj`޳< k0Oۇy5T8 A\})z$`);,y[7ϻ=y\i+Tjѥ,E"ϵV~ɬ0XKӱ`ʨ,j 1a[ =7?P[W uAP4 Jj\mR([9<IWn|$x' ˧C]y4>%^f%6%[oR^](%^@ j53+@믶#fôs-1$8=a9fdx])Xf]cXjKZNC>`+dgҔ/o͜sYAIwY H9j*V}`Rhزy]+u{ d~b{,TWa|n_<:gݻn]LIauxN;.jONV㚏vc'8 ڏH\ % uNE/y)q>Gc b`c&;Cź(#U1]Y. M$;hpTe'AwIo}l,Ǝ;h.D2阷M1Rf"YkμnnUlA*D,xP1Kӊˠ ]{]ӦDm^WMEeb Ե7as <Փ1{ ~#b*ՔΌiQEl9=FOP}޹YP*H tp~H8 SG$Ȳ{c`@.9}UGI.m6?&=XG9.Uٺpx(2:ޏ@M-( ;*=c6!*|xce^Sh45Fndq$u6ʹ YoT8rli>_m5[6ұ .<LS7w|^ߐU䴸>m 9>sR]\7}ԞxRTSl?(mcrnx4RH /+U 'jג0}3w6AjXb֛p̜JxajJ O^na)14st8G>"wC:mdڒ(Ƌ-"dTS6|z* #vb}]뷌HėУNZz@j^a:(ׅLsOw7T `/ۺ_<{LuAUQ 6Vׅk9M>MԜYK6v1E#h ] Yc]1|P-6$,I77}cKU w/h{K\܉GlU- waQn?h6H>"IB8c*E?]pFɹݹT:74VySlvԧ ޷XE w]\b3ϋWXul(**O}DyI]X8&-9wmb%AEt}8ϰoP~ϒ:!**oBYX̛jGGhܙ75D! D,/v-&PpU=c)Y|{K[w.E?tkÀΨ_|BKT:of V4>1h{#ޕVyoLy loLvd)pSo9Q&c61d 3]ߴ_G'9L!ax!fȳV#} u2gGqI=D~PQQ/o.?c gnG H]^Xw}61_|jw_滿;}+6=QqcZzbU@̙2@#zz|jLѡLڏݛwr9!櫤㺒^0n%Ъ3,ZXz8h5-&ZSc_pwӷ [ F2G{Byqb~O,y6GOn4ϋt~ƒmp{u+/ C~%/Dh5r2Z7f3n Ggv2>OoT'^"ZS[:N 7͏ݬ7cuˎ/r& k.F'%td12W;h=W)_m`ŏUvjXk leN)Kzޗ慦$:(稪ajTឤU㨖C%27/W)o-CdR{fWmWlר20=H]'= rzȸcvk ~!ٌU rq>Fw#1&WK= }8ͯɥ:AuZJXS$~I+[ 4sBWs6]j*#W%pp^n TcNTi=PazŠEQw$ZnpH60 v+jqxej)|S:Q{=pxnYM%qtd9Yu2g쌐ppD0meۺ8 (AbW6ĒdÖG$iOd^dg=C/qx.n0Rp٦4u:zϰY*mٗW sh=?'\Mj2/=]? Mw6 թXH~_e29I']0qG8#YIdMy<{s&zǬk*ҙy!Ы Cd4S }McCr43+'qLN&]{7I'Y  =~rٗkXipw;`fHAs݀mtclH5`r׭ $t*bf2Oc֠a ޿pDc ="}*\w4(S ٦39bz1 @%}bە-ߠ9E`h >#D}帰g_yq݇w>l'p,_eݤD|?TO|*0]z*AI =k8 :N4xeŀ~݂,8q;nFsy1`4Fq/':c8W>;ד\ICBjs9 ˂ "|4ݘߺU?!^J4 ;N~#Η "B: 9]ü˅ňݯ3{?kLNu핶:h ˭c^  7϶[;b];@wm=Icir90;n΁?Se@QDp _VZZٱ*ϞoȚZ6y W@rFdZFfI(G|cXH/ {pl2I&VO}*rQKܦ_EV`En0~\bc̐HC1WLڑ2ndl‰7}W\/嗾Yw|Q ]yظ#~N?} blҒ~hn'ax]P-D>t*vNi_ZI-|ur q Wnb]8=<^I "rW RityLlS> 6BIJH;SIOq!՛y0m[SKJ{ƾyZgix<3zpq|Y}Sx x_OI8.[p[Ȭg}Xl5d?W}9CU<<2)bn/41K/61r:c&t@e-HE=uM}Y+9sjk3zkY[im9nhs(/Qǁ`sR8m]ԣ>!JͫɨJ&a:Rꯄj'l =q*!Lp̱:~wVs>͒w ~!Ϋ4J]͈6Z 锫;p'vr59e$F[1|WeG3|Ֆ]m"Yg< ؠ.r8~ /_ *&70dn-?wD )9Vj)`X% *pdw%\Ig#a>PL2*;.-4Vb(ıaJ4ƺϦnZlB=fBqo^o nS%H]tj--]Yf8ph:T[Lf7l*xetYͪ9̔a*2Ċ0fp8K?~0 f*dܩeFkMX o(Y7Xܦ?UD`s^YKj/rX}t ݂y dzW颭OquFWY|)Z4ؗBw>fHVpօ-B֯\%^ۋr'8'_gTHR/);> Ib R0g@Iް-gX>2Y'>Yr~?aOj0 \ô&/-m[wLKd4Z4-{yR5n.NZS9F'dG҆1FYEJw;r:8n1M{щAnwNQ(?q) 7˺&^ּ=e3> PFȰ(c6} -}EzTXw-hNub-BDn^)<ijN,ف,(&zj+½_O(;+ۊH0MܡЂ\f i`|.i/ي [gQ#+aprdtO*2ĭCXL(# Kz%Lt8ɩPC.3O BE^nhӼ&c & DmEi &.ب՗'xQ-hO0n՗yB`稡Xღ^ IBfw燎-՚ʣ'h@C~4{!2m;|}[zrc&݆ҏ#'+_2~W,~G =n$w-:[/ l=쏩a oBɅ?e0? hLx`Xd}O E@Mر'ŗIEmfx> qpD(2Loڢ0W5 R 3z޴-3&$%7e DʁWܣ9o9ӑ"zB=qC7VoG(M:.`oxm q|r7kWddRi-uJP'Je^f[e7Rqr-w)#NN;F @W "O=rӖF;c1-H촙Pn.Mu)\j J:iX,&ݵ1ج5P4T\kw~hn 9+pfkVRl&q*+ڂ|lB.K? MLMN$;ARgKe>n+;h,=3ƼV) =\?epoMDž6Qk(S &j= S3K*h18=x ZI#M>zU>ԛC)K+9<V{̛*POnh;t?9bcFQ00q1zalqP=W%vn* 丼pSD!(HH^,a:##͝V]7bTqgwA^ TS$LԄ5t1ߥʝc LQt >[.U88y2ѽyCgrVhV*mK[0Go\P>)Ţ=#!ymċ?bФUkND 0,!ӄ:_V9Y<$k9}E ]sZkz0"_00NR~UVj[h?ʺc+3jޞ1{|ٔ"M>WK=ii=Cub^>0[b Q2GCІ>ѵOlOfhec^Gl;LG\Z;@^/? aQ ]w֝I*)1g.K-qgrYJcIy94Gj%tg2֤Vvɵďç: _p!! \Y͸`㥁tȥ?Ǩ&X_Ymh,(e2s{*{fHB-h QaYQ8}-Hhkgŏ^ b@e-tw[GFSz [LJpMPQXtPKr [ EmZ7Dq.zI1G֬2%gBjfPD:Wi=4AHj 5Dp<:jDj9CX_)k!զ [XD.鄱:@֮uml8p d&*9ՂlVl*W{v+k'6Uxo36\CC]p~aw 8(FړdX$Ce-WœTضlhz;Ȩ7]X5z(?|i'Ni7;j+Y"]&aX :ϱDu$HvږBB6|xz¤΃R]fzGyZ?!EGQ'lW~#BJ;͓R}ї.leϗ _ u<S8C)a(| OvgMғ@Atpv60Mndr/X h;Qш#岗ҳ!w!ca$ۇK'[mxV TF\-zhccf"_3j(oFqw`]_-([Rс_ǛW(JS Vk\.ҕ{x\$cR9\rV v.!Ge2$3M;p˧dl6n!?,R]L>P% 2)sʑLuQ0qϔ|UG/ge:%BCuM͒Lq84vLz]0jI凵Kj^ 50TAȆ~^+Xp/墆KfP gXwAMSSٰq{&#8d^%D~ƃ }ߋf@x%3&LI3Aoߍ4ˍvQQtG) @nLuxzgJ/HQ4׭خ| }.a7Xz&5a3j}7~9lѠB_ES}48~1hMRWQb[M@qR;2ho:žl~2n~w!eeo|[(|F~$}*R5DJJ2)do3pji (ǥy\E3fhw#uILP#!,=naD〜E_ˌLymI/hF<>+x?O[~|l4HW[|`._1@ 7dìV>á.5~_c6ɭ`_qDM=ǧSTIVKLѥ:v'?S= Űb|l ؝ʴA񵋰Z{-Z=^1 |.sWdM-¶bF,1Šſt>wy.#HWRZ=Uv$Z;cHA'V΃TRgbH6#)ԜsX(e~nҤAU>s/=-rKr9ܭ:q1^=J$W2 =K???| 76`v< W+[gD*~\9U˂,byRl4țt,᙮C4XtuW\sKƣl8<@Eٶ+@g=EF3u` шT'ܦI5p(ƥcAOV.V5='cLq2(;tkkPKEގ=}^/ٻ֠n!!ː%@nԹ`MjK{|^'y&ėֽ!sӝ%,HhVP.eeOgs|y?ƾZKI5mX[0yxjɑkX*@98bhs%>)\e/ <+Y jlܹ| 2>s0Œ Wz=tN}a3Q3 \IP{UFr Okq:̙:ZɏQG[XJ5y%ZTMCE 2C~I^Z VDwa?l,G;$f*s+_>C7B"ccpE8=ۿkfXH5du[}ypNxm&yU>D$ĜH*pbV&QK\:\R"#/ 1xj Ȅ{{G9ko=YtoK[`[ w3b")1 ||HL2 ez*U^ЌȲaL%z-t"x~@h ?idQUrN(\KwD-h0E_wh O~/ILE0t> QC.{eC3bhfDjϊ(MG]<#وji(hh)3/ %SٲEmw͵Y _rA/C_KdF)яpΒfjAwba6(鐬#ozB T؊i3DLД}{;3Oc =)6 :Fr M-d"̒ rу̵uhn.Crvu \3P#{MÆvHY-Ϋ2m-mțMmPz-GeZ!lQvIیxɠ((/ ˻*ȱ%AM'ՉEۅih=8[GOuTir{d4V]нhLcu?M8MO'ɧRb9RJDiyOID ~㸤{E1ُY:.s|b#P 3x*>YVHRgx=:_;/ K>/GëG3JWw]<]o]KhitNki䁿WY-s**34\ { N7jG/h^e8Q=C&n֞&%J .aGx63S3جsɤwLY3C&\zϧ[O&i2xauOp!yS}m*G\n h"-׾0CrRHl-//!2,$#>UzkC~IlF[VCEf{=S\Ȝ |0(KU!1Gu> q &K⿋x%=r-c,1*NZ9UL>Nr!bjPbgКE:㏅mBv xҠXT`؈xَ !7ك0ؼ(lTo5R?xޅE|Vo&wZ [oUlrwbbMˣ-/gkI|s6|UvFD{b")ga%ܧxnjgbȯl8dN& j0a׹N/}77xZ8\yپ(q$&Zg?#j.pn]fN/ KQc+!~?l~?ɚWӋ8}YŷNQ,[ =6`ˣv uM$:;IśARGet5Ȭ!ހhH, =LlޱdE YhNn`֋e T{cC> Ӱl|xWY͝/k1'.|2j]>)gE#*رO\J¼EB݄a&Z !T'"4ii٬w2*" =0"x򈴂#" O Uf%RZ-'i/bح@%| ?lݶPʏ/m~lHJՖߊdWy\q9K ΃BC u>O&VΎIuvUeGW1|XY[WÅ~+Sآ,}33Ņ=:;`"f C~ *4^Vc —&*XHy+%|9 oFh-s|HY49JR!X׍u/QE9=k<|hTy aUSXu=-\K>^Ƨ8)BA훣ݞīc"ȫ6;qP v 7]# HT=;&"|{LXo#gfNȠBjQ{6!m`w؜uM!iɈRj 7LvZc&"a\>Up" ? (o)wN+]kTF_Vml~1]OJh5j8=(V>>S0qxRa:(|t!ca~HP &28ɭp0[Va)\C*wgkYM/V,9-B]5'Q~\J_t7WTz{%Θ(q<%P&i'`q4/j\qb8c؛5A<wZɱkR6݈Np)^hs~bd՛#/:ڸM9ksFDQ+ttc EKs[S~ްntˆ6+t ~c"da~~?bQߪ v위oL*1+7tbEzZ$d#J f;J]&:VDT'y!<ʧq>\"Jm=H)4!PH6H@}s*-i#0'SnNV*]jVc$(Bpڐ͆VtY R.nR*S; ;wyư$'[TLp-Ob72}}Դ $oz7mNѶ3=!iFXd^iL@wE| W^<+ؗųd\OVZHlyVG$Tz7sp‘0/:7vxM /DI7z8Y2CDATC %v{cq{on 邰.4yVbь,-9a! VMpcvۡY~~q ϻdza@Gh -k9 W*_IA CJF쳷p WMd!)&ߠ*|@%VPGY{GFErAK.]%ە!dG ,a39 `ύ#v(pgY, ٸGW oN:$6u.a K<iFyF+¤Sec4N^ 4}A9*kW=1ȧ4KNฬ6o9Ȗf{{$16Gpf_R=lFtPhZTf +1BS1*7­*`4V".ʔ޾Y1d[L+]„#n*]`.}e?MB.BHȺ@IZ+O%.FT R4kDѹQ}^(OgXBFnTg{L2OaqvXoW3 ?4jأk-"ϤYPq}汘K$ Dx+Wú:d5qf01puu10KʶhǂRsL'gPk-~1)/UKTI*`EDM1Za~(Źpn%{͖cg,Cs@9<r2#$*>Eߡ'ϒ endstream endobj 2875 0 obj << /Length1 1651 /Length2 10035 /Length3 0 /Length 11108 /Filter /FlateDecode >> stream xڍT- q54@-C܃`xdfkzkuN>EM,j` rwe5dll,llW[_fdj- _`M`s9@n~ ?? ;s S;8z9C,\_@gF0;C@EeG3-@ v/ :A+WWG~VV [z& v;(vƂL аiWwp9/[% x.Pvg௳YbG2dX@le)WOW&w %؂L_U^=3g wi^NY\l> 3ؽXY{{wn'7_!/&l`W/;{Yr6txi!Wg7Ͽ@9` #b[_. g{E^^qbz⢌vOL`fbӨ Oj_?%\J/,?R&-H7d+En/2 sh7ʺ^AE@N6?)'\jfdk5[=Xmybc|ټ./~Wsq@ /䗛~A\@=P2%ңrsXE@<VUo`UF|/7<vX~wj/__j Xm**Av ˿K/e l/`׉9;< ú`3%3PΟDߦ9цnw% U9 E{6K[ltް}͈ oa;%tƾ'ӣgaonUmFdb Mkm+TW0]]bu ݲT.W"SI$RwC\ëLА #4G죷܄&3y~I :S uaJݙ+XY5sH\ګ6/̭|>/< "<x Mel߰>\b=S7F_S4I2.Tf{rtr>lEHotPn͘dq@0)pNOp?v`Uj4AZ{ œ*ruJrߕh8Ib,̕w7:s ?-#l ⷼ;;\%M}$bN#);W@̹~7US)Z;q3,}>w#<#As_L2öϟDG1W f烿x<0=ɮ.N,f,#GmϹ)MM.W0%hW_.4D6#q|瘞stjt{esw\Azλ˕tPqfkh7bG 6wq"A(,0 7}fqٯJ(#-+[ԯœGeQ^VXSErOR'zkKX~j)2f`4\] ~Wh\şm e6-9?[=iuO]8UpoV`$XȪ 3^n0:6>!U|9YZC(5n2l `t [ c_̝m%T7UgZ\'v&JN ;?~ |qH6-H. jGΡfOكm_dMw&ν{W;ё}%i?̵kFO?0L8x XDL@iƨMyExW1Ai54h(덹ǔZ GSaBRh(sqCQ+kǓ.,l"4'dy% c.X O~M)nH+P)h*#N(]A8k:K璝oSH8jSgfQu =E)T穛 2X:Mb%|L0{ٯVÍLP,=f{tVҺf&adcGKXAlu{W7[ dE;ڔ~jL+i"Eͤ$5jj`c&~TNzo:ma֥l pkeo ?;V~ۓ}̀aN$E6!sT;B. *T ;1n8˞:%ffq;:(dӬ2ŴE]فt;ǩUwnPW׿l;{q5BYaZY$K20CCq < (=L- _^җp:tܙ6S>q%wۡf̫z3ǍQʣ>M)^wJ u/~GA&X|ˍi&f=LgQ+W_dr 6a2dßk=3b 8z*f'< R(oմ/ؼ )JXCy52Ҵ9 'W i6pRt"7]ZP/* ~ŕa%ا-/K~?Xr̃ wTXlT4sچ\;\g_J._ϟG#>zts . $r!891, <~ $>4GLvt֔8VڹD~+kwh^Р eۘo $?ygpl\X4 ~3?s0V*Ri,Ws A2<+q#1>:}vjoYXX(Wg79M\Ijrx{؏xC%HTՓr-xv\S)[ hC BhZ<ؿcskai翭V.}҂6KC̀3֟)CPmƲ@AwJbTqfѯq FmomnX !hxXZr{.!@w(Y2j^b>iBеgm3΀sn(MIU\E0wc-T"QM~l!&0ko G sA3=SLJUQgoyDi"cXqo R:i tֱ&\a ̉~6䭀TqW #PkAhFSĚA5 :XH{Z/ Svԥb= 0 ҄;!mւbq0aRw:HÙt>Ky>!kh~]=Z><1R\#[dk5P$ק`ew&,N ۜ2ﺡ]DT%,Oè8ѰCAl~e[Qԏ5gd<9:g1)mYa4v|{ HWGݦLZ]C3UVrID,sd'S5]Bޝ5ߴF$Z3Oև[JԴ փqt3s`p#u]eD˚:Whm}oo {&bռԌ휷bf YY^Mt32ecޓ~x2gז8sW]_gi/vwWѓ/\a]@!+}1=WմQ-i> 5+"Uq>ؠB6]&™ɬ TNfe'*$8}lf5_]QוWO:?karгZ Gn`ǟ6{ ;()A skN娅ڡW2JXBf ݸȟK6n `<=60@p3ԧyBh|5Zt"WdVP^SI4YK6r*.9CQ;M]lY4W!д]ݞ%sR i"ʊ#E^1 F"|vއ'pBmei d7.CP-2 JE[Vb*Ď׉3T#acQOiWںMipD1g>#_2Ԗ[qƳCf-%f 1(݌泠iD3%&>'1F!/2fړoWHٻ?IYҿҙVLzT{YDMjbs\u?cQ74VO7iU ;{d*AA{rnQ6uV0{Ngo~jP Ғە/A:EH㠐Q/ᐋ0%IuAѼ׉g*xKhypQ사[bty%i! 3aĭНe5O;j<`YOfě$ev2 @];_TJQ3 K7L<{DƸd3*%icp F]_!W6Džiq'kj:x),~g<[|_*pY!)]@MKb*ڇx*-H*q=oqk Rñz>+Iͷw)M&~""fPxRo)r<-ܝO`Y(AJKsI*15rTIkʲ !kl(Y+S |iVRonЛljBNIoko<4]PwNLKWC>6YQW nџ+ fϩC9 DN>Z@}Qs.}{Hʳk^K 7,Dܠ} `(PZ#_a[3CC2u4j.~EczA6D&7rg>|Oh,é, IKYA2 sB&?M,jL`d%ẖÆI?Inzc WOBr *D,΅džW jeweo v v[؜\Px7yqEd&fkZ-Y*" Eu >&OM:VZU+?8sJAOAn=u1m5}}fzR܁'%L`qӰy:d`UOQE֠@X7V L<M}Ň7gkp?~=Ҭ4!Oefi*YݒGMv^6!`Bw\2N2M79xفˀ}ۭR…Z7d(Q^QZi;c.Tojf4SwQL17ih&.'Avbnv UƄY_AovJ5@:;PrmCaX~{+wvSn"w6wis% YhaK0xL0N=愒Puc53]|eT8N}ӯJl $ 8Z(j/1~YQ38>+=|1Ўuh9Ȍ.W1ZXS1T_l*[sBayZY?$DTwcgUD&%`_1kK| L G 0r3żV zmϣG:j]mhC[4# +d4z@(S/r3Uwͦ/ԏXuoDv::?}PG:{ai" ?Ḵ;s>/_|+g*;>,^^, 6ȧڒ]"**bx-' / i!|OʺpG=7{ #tX 1_\nrs"C.unW0+rႁ[%S2b3 *6؊?Ɏ(/SJxRf*V,5{8ͤ4};Uea'a NcU]3n}.4neўaY[B_j%S|Co`uM.H0>:3saep}C_lQ\4{gI5~x3 uJ&5>$gSo{jAܝ-Q\?Z;#0"uFxJfD6i!fz^lD0}.u7U*jإaߜ8hnLڏF? +(#(gBT$F,Z@͂v!t=CK6O0cϗ@2M}I<ўrJ ٟsPY:@;/7Ug B2i ^oRgs70"s%m<7R^U}i1_YlPCh4]gQG_<Ǐ`"L4@?CZHHn"`C$c{ج~+犽<g+ppu}d5$s[66?դFguMt',qgp7FH<7aA露/`K CNknp1ȕ;Ico>(iǖuzױ{x|7 R4K˙jP+Ay_XwXc!GA[&p*ao(Fː[_p4]ؑJ]C Ҝ[ pḛkr)8x*lzGZBtfkz%KӰm!Xd{V Џъ6c+IXsU珧|ma$uε|6&?:tTc;s2p'i+vBV WFj|;O)铼1^nv"&p7Fbů9lQR0J i\"\{lBDUj-wqʎ/HvN)B{ s6A +Y;2HN M=rC=o^4e̷TpfwT߉ѩB>JWlVFV|DN*6QIie!9SޫoS f VWGfS5o{Bciꪠ$[(ZƖ :ixMcEV@8.`/᪎ }􍼘t_&`.5W)9+μFdY*H%oTjvoDM)Ql{,C9fBk-IU8\ײX2{7cF6D.] Qٗ%3ل(=Bc tf;18PEms~hPZHE{_6g [h#W^+,V+; kՑpnWIʨ7>gPppZ]Ŧ|W3:$Hsن k: Əv@%YBA%d.J/T` H?Tq#s$MnÔlL2#y(Wm ` Y\uΕ-M`XvO %2FQON'IqmW+B!{>! –5R${^8)job==ݚyje-Ae1 Fq95"Z5oOB> =#UJ@8 n%AnΕر(Ӵ1EvRPt7;P o/>+kVsƙG":JGG!7=-pJ;% , ^BԤgE=J^ ɧ0uM?<@!;Ec}]Z{z9*< FS)ѦOkꞭ~]$<^'2A$)ťo3F3$PH ?;1|2~XE(f2X +v 'ChIVGe~㜉 dy ˾K@`7ڥv_:|;= QX5s1_D<Ѳ}/t=MK&M-)^cc=q|d@!Bӆf+;|38 =A- NۄVhHa3AC ]ATv..u3m /1TJX|DGS){VeJo\ &4vF{% J''3}44L[ğ]wMfFB E<;pZI d"7Vڮ' UV,:t ?p1"}XTr4~MT}@Ɩ endstream endobj 2877 0 obj << /Length1 2683 /Length2 19340 /Length3 0 /Length 20884 /Filter /FlateDecode >> stream xڌP  <]g Cpw {p}{a֧{urbEz![#=3@DNU ON rWOtpBh: lmVfV33'<QC @ mkt'23wW15/w5dlh3t2Z3ZTlA@ɎՕڑ r2(.@Kc'P5ur5t+1lctTd v@ǀws w _Άƶv6A6fS .D01mhhh 7t1Y nR+>Gc##wÀ,fc"bkm qrO43߇kicj_d 11] (% XGft311q9)5xyLe@@?xGC o"xff `4Mr0Ǐo 3#fTVQU¶nz6= ++(YS.@zP7-xn?cyr7㿣e$le??zCk-s9[&_S WhrZ)'C.٘YH8 hr26k6#VgV #gfb?:r[oGHw3ۚ^2vgx&$61ijLFdb\Ӯ 鍃ȎBf۟A܆ID64m )O'~0SN) SRo|E.x]3#nA;yX{K{[edMHO? Qة4 ^n E{ص׳ ϣQًCD+6Qzw}SrS4nM3ZIH ;he1vL{Yc wBoWdX[-Sh,bE lvl-ރrVJQԁ82#.-)),e%&RrYU.}עWKZlι{.Va9*̧lN;(6&cHɔsgc$W;,u's#̯R›7^h|M AAia<~I/{MEbܗ9ݽ6I.X>-^CީgH5 s5D*#ĸ}(AmL3sؘd7AoX8?rk32. 1a҉#h\oX:s X;K7?Uq/N0P52sעl/=d7hcβ63kʌt7k%6lNaDEc1y]#Hң8zfٵEeWF%z14Y26ڹEx+^+e ПajFQ._c2؛'˺|7,)r^P)4(/L㮆G64r%LB7:Q.GÞXԗgW6r`\QU5ZF2 hC/? PWnf}oVEvkTߖj17ޔeuL1+<@“P{Ra0FduIңl=MDg/<]elZS %J0z7mn{$.aGVC_u=L0b=iKDhiG 3x٢@S%y;m> fyDLG@-қ\,z\dpɒ|!V+aEV1pW'VvFHe"}Kmjԁx4qg{_b \BNI *ʑ| v=_| i*FLbR38Iν0ɶ?m GΉ˭ԠuW]<ZF2lo/'5q&xsHүda )ry\Qy_~{ǹQ)kǭ:59ƾ2k@qmޓCGV+XIDņs,"-}ކfbJg)7\@scP-]'VL,;3':HRxr4d7a. ǜj>#?`K!(ClQSF#S 4VJ_`^՗ah_Q8?D|@~Y[C*C ')wDU֏,3~w l"Zi_4% b$@jub YE[V{? AձFX5Zt;6瞳.,PC([qJ>xl>hnN\$UxpVZ C^愍8=j\3w'rhB}$$oI/_{~!@pE0`6|opGZQ7&{FףhcYUW +ݡsQuVڷmYxEP/V7TD284Qy3"נo.j@E32dK~Bx~8-#ᬱ9.%ՕO-6}0,knD0<wc:X oM0 W긧fG kILjo,+r\;EV P):𑐥aPq?CbV9T1"; 2.y 8`^4vF?qvq&?|Ly/,AlWHjíX[ܥΌ;ͨ'EP%'Z-RJ;dz1!e@@#M3*VB?ko65nrkD3:Keת觲s{d/>#xwx1lk1{ދ*a<~GC_Aj'm#Fgzl7$SaTN鵉ً:-,\ݦ%/Х B ֚iZQWry4-x-|vErDu[֬3G9pT?4{~g WVw SǦ|@MW3^xTl,ESC>p\Rn@p7dDG`FDa%Nr9V&#9 ! 0 a烹M nyO}Q3+(e 1*l(0K+pŦ)y ^1![>8 V{ESe7$9F$Jxviq3̷Euz(|cTg|%:\c GLhJUI<AU. K߂AƘ$e1TOM\+{iIҵO %)+*Zn5T!wb֏ BFB*Z Gߨz|bRE!$^ɖFfOy=y=׬FZ\77Cu67#so^RɎ^ uؒ5Um4zu,]Ҍ"xIM]+=M,W뮪i^wv UuX!_ݧlo.U81wρy]ĬT'YTQ5L *2H6*h~9,ЧugaEX+;2ʎ--rWQ*NRS1!ڳ?6B)Frms-|ϴ͚a5ZgӫoRpon [\P~9JlB9A0mBr<^{C /{rKiUR3 ZJ7=_iu ѡ8x2tFN¤5_5mCX)7iUYnw_ga gwNpq:wG}]፵=СDu&AsI[ǚ>^\VOXw - y|djWtB# ?.zy1]C֚ djxTHqFAkBQ~2 ߗrbPvŕ>t\buTFeRMg5$>zwɉc$䗕/9ʀhl .,R Z.uX೗aA:֠e_2\ƒm_ l 0gC]eUFJ_eڊAm̞#ie7#YK4D}6c/#!d>(8T-j@Tq0 ,93rܯ!Snt",3۝+AL8nI>(֦_C.آ ~n[J)+ 1i6F0~@zG툈\} f$qHsLU؅=yQgqZ]6~U)z̙xStTiS7AՀ^/k 4 i15lLƔS4 YkخoeLfZ;~? z]ef9 %ƅ(&9k0TeotiQGp˓W` BЁckF)PHD8MqAўp:y"1OY۲g{iFr28IF2iR6jMx3f_fR>B`||$;Vo|ͪY.{̢|)clQZo/UD$W fǎïSrC 7^6>lKY: ȜnJcfNuO/Q?j$bwNNl1pC'Q@[d/-\!Pw0tfG%}4ދ3t}W VHEssPxvo6lB,;\dT-"߸A[kFDok)]e wPk,H 4\j?ˍ5SKVh.ot҃AWTG!z H2H%;|};['eRYj$rJӇ m s|MDcTX 2i6K sJ24]N@5kYai-Y8ZF_# $ _MҞi6Qoy8+-pӒ S@gmvCqn= 9YKqlK-ۈ>55"ķAzTի߮ٗGN׉aVP)&ણoQ%qL8U J#whmF;5[`P*%eitLKK#wѪ7/P%jtʠ ܦ0ͦ@V5B9tsaNf۫NWOKIc8HG^YLT3q :u[á+eՕ4Ɓ. m.|qB+)}`+JsYN5 Iq!RDr{) oTy"OQ5+[WỶ[,Y+Fj ذ%'b^e/uS KH0Ґ9Jņ2]e x Օ(S"mog|.HNQE`@<NEXW+bB3 #6 }wfH#_VLڄT?Xd%ZU[TlѰȩXvbm\*rgOj;HGkZɄ4 c̽uaɊ#Hq3N]w.{Y>{42P%*>,`z“ x4=Cn7>#"ڞΆt[h ۍ*-0٢;d_Z*F=:Ӝ~ Kd];Iߍ+ޠ~lk2hv/x?BǣZ dAO*:J8wʶ)GMR!;A{sʞT(DRzh~QWH¶YGxZ5ZsN"w]|Zytwj$⡽zL_,AޞcI)s=ȉ[g.˓~YE1JZʙ[R ?Ќ"tiW}D u:f JQ[,AI8ɛ?4NziNAcYq ''bbUw9CZ&i?UBT}&AO.%'urF .0j&h-7:xWopͫx`"ߡSH|gI$69]pL(<9լz(At3 b@iMBH绻JMaQhǃl o^-Q\/|ox,:\.Hxa MrCq=O}#\MZhl;G%֠IQ`.dS>yM!' r4„G|Y ?tY9%+[|(Sy x/苗Uw(* ?UڬNI놤PBv=U-O9h6߆XC,bȐz@?_fM±k.dV]I7#^Qt+d*{{^wf!go^"n M\RӬCK v;rwR.ꗑo":ǫyEZc>nƢ"B  *1콯^Ԛ~HT랣 -_-nDB)L 'zuBGdܵ(%GΟ~ZR'[*JT|?H0y"`5XFԷ7@;&l8mU) /<GLn[HjڸFveIueK{O, Kևқz>FeؤwWpyb8L ҋZNJvKlԪ"h>$UnE5Ӟ)Υ}:'j ״bUNb"Bq'B;MװN+A3{2ێ ֪B)Jfh^yfT7ĽOj_; i=9"K&bV !E_j?t tf+WO;U~n<&Ļ}h![gz~dQ7%uz1=bi4nԤ$"®򵍛Qۻl7A'J%dɏ/d檟3hiVRA4)4rϿ奃cd.H+ꃼ铥F;$]j^6roI|Jp? (t`$b*MkI9?~3Ď0fC:MH:#Çsf B:{j՘'i^iUG/ ?3߮!t;9-1XPӈ]PK o(ΓL?M[>jل %tVJFa(Z@r] &NdЋЛI"u:euߴmJQ1祧MYW ?hm |ƙef%M@R9O}%򀥹ss11y6Ҵ;FT3|"/s>}(&];F8[{%+飾 ,"CmP@x,~p"tA%R?W^4~31hJ !5㳧FOa`˱^-s ǑJ|GjلqbbDR%iʹ-[k374hT_xa7gv8aJk9ftF)hJ a3q.*9|]7JդZ!0xyir(#aX&;U[vjI0dW땿} 5pA`_#"Nɸ^Y c*|QBطJh-OEk4VuAò9yZBbHAbS23J^ 6ƝȲ:%eYNS)fSdo X(Z`"AJv3^QKv*\InU+o:F荌ؼz󒘓,H-˵"R&u×x|<4{! Ys^Ug?8ub`۷3X7sk҇fžA$ieM:^ÑcGJ?[ۣo 6<*4~ R]}6=*XX><0IlYWm \ˑ"Α-G`ˌ)}ì/Vm揩՜L&E,K79rV u?T尨%)Gd ?vebd|{|tIAXaR;bzGw/= =ޏl{@y !S!@F!kX|3id.]nO&h8+5ۺN/2Dz<#IJE6HVgH5V:8YDv~4F[i& Q[q@KHK:!$틎&((YCs*"ὮD6[ҋ-~5y[KOD6#F3g##w &%/+ ihg[MD!v2H']W& 3MtCB2A_螄GLiTԘهQJOTPMֽnG=CO=butcD Bi=2$z3Њ:ѻ[Rt= ^\#۱Z]&߁yC>KuwIŔ6./" EBq"8//W5?( Tb4G]8կRY9 Ȕɏ>%*ы2_!^J^oi,aGljKZ.I4_^6&PQ ZѸ>3M8gOZdJxḡ ^3.C$tj9ȽiHr{Ǧ!)R(U>-@}GMZiٸS9 Y\.+19gMc&w"4j6(n9îKW9s/J[y#fWʤ6T XW~y-c&$ A%_b,y&W{S7Q\(=6q5<ɅPW>kY[8~ n<.N!>*dMG S!꣞FQ0cIV<4Ԉ lÑ.2c."IKvw!S/z]bj&IMEǙ ,u̲u'J4y@Y Ϊ^rjGw}Q9s0;up!mZS0ɵ/M>&oy5= q&ʭQ|,imP?@9nQ" ,W5 uƨVH)n1XtwleE&.7a"R|]}v KBhgVhR5ى_9`H?W6"U' J_#5EyG8ӎI[߿%+*չr\[b } O rmCW0e̽47[N 9=vNry,D[t|*GwH l3W&@#"%1=Zk9kX#^pmZ}&+LRq~Uϙ$0lgG<]ldgϊ`tnC<10{`9R><@Щ/Bw pwX.d> $7|dU 3]DF@-JLHjd TOy1o_ٷ' *Xa)D Q88`O Qs:W]MHͱ3q.Rޭp_ãyFvp"\ -8ݳtsm삃8gA_tX&?'1KwHcb߄r* a8bC.g/6~>g͏JUBVIE}4rAca*wSS֔_ }˜^OY iud(/@LW X(}] V o c;oT)0Y zX;I%A_K+4 suEQ8: Ϧ# %wCR[} `̤2WQCЅxVNƀ}4; _yqlt\[=#Ic7=蝆8ɿ"D_u1B~*bkN߄pzO0k軶͍؂lQ(k3)Nݱ/\rRIe@ кD7~ ݇!Vړb(¬&:s! f;64?öƈL&ӲS_E ˋB_L0KJ\ܾC"~FOOKxfL `<<پmȬg2B;V]lin̾\`t*f)= @*f>YvDFL/qPZ#twƦx,64fL.ʤ[ =m*utmh W/!յR 8c N aXt7"%cE.?5"Lz2Z4$g6I[!c)EcL=`aa"K'zaSЅET~C<0i[b߼ܰ⏽!c[c9E. j ;~4A"*Ä6'@D `:NYֹǙ9؛ĝc}>ދ*=mTž9x"bO;*TiRjʯ9{˄xSkrQP^\uQ+Hĩ "ks۠zESym"jq$daF`7nmIh?!-.[5Hyoa| s`սSXVjݑJD";R D^)zFR^tE 36S\/Үv~b5.U|BQ)\B@_Eht prPc2Rtɠ{T)ʍ;/a=NgU#pfzW^+>9 't8 B3u b 31h.pFYd=yZZvTP_+_7!؂Pz lٺUU_N#*Dn+PĆЫPih^BfU- @>sX_ *s_9FDBDH#ɹ)UpӧF!qXN$&|RJJ^@5R#<9`l$$tQ|Y'fЖ!Ӣ6$߀gH~2(&X/Jiwhs1\g8Eziw;J"T)O·*jXJ8& rҍo1s1`Q fb]r4+|,kYЍI&gWKد}Oe_ގ|s:I3Ψ+]aF/e TF>?ZA/rVV,0x*QLl$VV]t_;/Rg mJ4[*W~c*cGxl N\VCyV*lIP,{)bN#^@v^yĨOK x=2Esww0 x@5l'^eϧl-D>e)9^Kam~UfHu젞m\\ΠX1\xo2o[ hy|&uY1 8CFzу7lPe8}f&gr6DC[at2]vW}gv>c$]EivtXw/!S-@jى{]DwŎ(ܙ@b'8V2ǦaS ufUo$aO8?b[=B5x@uOdȘ=B4%%OXr.Llv6{xS̲ϓ]5A{ה*8 @6ǾAj $6.2=g*#[l( Gf!,dMkMt76#1E6XeOybU3c򪏣gq42ezd#>+-sj7+ DwI?MeR'{ޙ;t'.gKsрQ)Z*l\[x@V+̔AKF'g[tbapHpDPt׬`Ff*ePAVf[9XV,H4ǎ"kC8d;,YZϫK֜l:\4$;8az4"S!DGx|CBbuBLgRҘDվ4x 'ELP'lgBh) iO-XL\;g6U ^NuD hy[ 7aInI,=~xk ?⚑8[\ xp\kwI3[Ș9wt?6ne6Df 6zh9Q)+9XuR<' D"eOaD._Kf[mIÑo a׾N♮^2.=3ܒlhKD]FP w+qI<;Pe[ާ x=$'?vULNZciv wɲ%"}~c AcmSZw. 4pzq!.BeoPn;,#M8h3URPX7UM&:E,42l3=msx);bD˪tN.>6f֠oPRn Ieph{!YFczS@S ~r*.yGơ-ʎ{ ~PKQKr V/GKfSrN}UT'/H*A[L3V R,rzv삸8^{&Qk]7+lȉ8\ -Ϲ1S+P(9Y!YS" l/'|_0 uƑ᧲560}3c3̨$gZi{902ۓJY'dƘwcV3XY< Y5Ō85OI?B[ LRw.C~b e|U?ݹ<^a W@:#2a( 8$ )K|7tHROn:JA[t5σC`:;=2l7]~ ZzVU祹7]/3Iu#v%S#$߈ikyE/QfyWWr]:Y <9VEF*ݥ sĩ.*voLQʕQ< A8&<O4cѥFnd͑.'H5S2*7w}E.j Sj B'̝{+7f@auo-K^3I9F̝:BR*uKiv%PrD3 vV=bUeUEbTK_4s~{" ?m3嶁 ߁=Yeusǵ!e ЇL1L;6p L>m5 9]Qr/7!a7`7M`}Ln8!`x{}nh`9|je/$|OOqezaB4L(7oπB #zV"uTX>hayS1EaLIjA#ċ|usm%/̲!3 2TJ^O;U wo$Rg/KWق~J6פw?rM5p+W.:BVAC 077AJk}{NncPayh@*ԅ}1D ]88X$5[l7j.s-XqQ1[|&_s/u3X3V8 Hk|Jao}URϱ_WL^6.'FFL)#tMMߥ "~t0:ōvtᥳ7T1ߪaF禟³۾$ǝiӸgUV1ڄЂ=<XHSٯEPğ^%x tq9:N(*3ͫ$&XwZo3MZi $Pٕ?Źcĕu椵VXN]'$?)u2=a3ZTAyVT ™ᓊwi36rp\~0(ľFiPVفKŴj,j z֘Zͬs6 ~f hX^-jV#5K@J.AFcd\l~݊YMgYϮȕReGqZ?lOL_jo/ٞ؇1yL4l%퇡0}m*'aq-߉蘬AF!3ϙ3z㭅CY.S9BTN1l oRaeΞa).RN6V!Y^yߔe{Tgw '޲yiTZ}́h:kdToAܿ7kKx@jO%pB9uS b'MP7ja`Ŧ!͹@PTih˒$5P 1u87(ht0Q]nXy!]zƟ(żz<ɫm;m6=B^0h?,L?-F ut~;[Pr 4?&%h:$~-R;@:ho1=gc4TMi9WZġ8 qÝxc0h>$W@yE-O~YC؅?Mݏ,+u_ 2k8k KɞwSHt=՞Wx!: '_,ʔ(a4{ГnO<@LZ$T%"Gdu;:Bw8:a5 S}°\}<>OD[gV{eA ,Њ4DyޮE]{Y> stream x\[oǒ~],`[[vy%ZSUϰ)R QuILQ5ڡ|uIGlcMNj7ԉ>2Lj|3MM&1LhzqGhyLL7ѣ1 5oy%a61hx&/ȍΊ{LV{1F'Zq*/b5` \]eg%HĬ{ɴFV)b{HPND+DBj2Iif@CeNkZ:X{Icq+#$lOɱ`,)531L`γ5>Tbn.(p)ڵ%o TL6*_/W%ud]豑)>b J"qu[`bpVb4zV8KQ~bfc(m=kөj-Z:w^kS;&Rk<eH{0A Z턷…r[~e7@jښ2w)hTUG+_-}OV{؇/O)GVر Vҕ;F0'GY" @TfVb[!+ʢd3#&k6}fSD!x(HDn{Dd5)948g<d)X ɸkOoͲkm} Ikz=WlzlGN9gKLPo굇oSce8}!nh3FZ;qB6$f 9+d2_Ok~~3#RXd [ (YMmp%r0CLnL>8D|F6SHEz[o4Ҋof&sYK:Ceް:gdY \8'Q.-4.s׈֙W΍(7H*l$8Gz0<Z5=!53]_?ik%tI晇)"$C48]`d@s ӀXFG>$G @'1`@Ұ>F C9KE o=@ȕ91Z_yPz64Ւf)18š!")3,2l%gbrB6oȩ4a/LBQA_ަ-8V֪adDBTz~`ёFNlB|c<VsA_b *mYA ru"F+5M2BI.9\⹺A,0mED%EFPH]K<PA+,ks'DgoVBh-ĬuW.[%OQb?M0LQHD@iB#}>anJq$K6 "fi\j7l>)A.N]EӺ ,nE8P"GBoٺZR|,ɧ%C< %XH& L84RВ*._R*Z~:d7ȷ$%g,Nԙ[i66ӑGtZ@g5\c (J3ʟ>B/픋'ߜIfJt&X)1rڑ!#zrD`zs+bk5C f!.zn)s\"le?IL)GOmZS[`[Z;:2@,P\d}B_l8 l3LG fi}E*@U ٰ0;UE^sgw귵3 SUF>ZT×Eֳl!|VFHRȧpxW2rp7cz(J_|k2eaژա{M:}n.H3\̕qnLF\@\OwB\AF,=ײSgߗՆ?u`C+y5ϐL^˗ˌEb]xSYאuP'2eu*6H2h +ѾOD(d[J@Z!kRG0>JQI I.ZeK= U$ V1> Ԧ*Mѥ ^`v`X6kocK"a rz5,}WUrR!"`˚v3I0J<,Pu+OYaṈ\|J-?4R=d s vx^W_w7KBW{ -~%=dj8R}CwUR-Tݻ-ubp$iO}QVyH}k ixIq ,\E!2aU!|Y b JhbEWn_I2"q ;F*.3@Ȝ`fF/@DMpY@ Aa%,~;r' rk'@/yTyISdS&Kfb*hH.$C C1yMVx%}i 3|qQ֖o%l[ځF|=7\.7"ˊ]J0;ܥ-K4fQi'}Xp '|D!(L _ _fT}s! p< t˅ZZʊשQS{R\@<::4 yQ/pK(In ^ɔҩ[5pg**S\ݯ!#WBy{ޛRPpV9J&W QC+xYAjJyj(UƮB9V#oe885H-8ɚԍx\t|>$A|`Y3/IJ~5^}q˟/l.>қOy>{N+z1_4N |h3!uKxr|B)ky~Ot׋[6weEd4_>h?'Y}վn7GcqB~g=k&gvΨ=o|i/v.Nqxl`eN6 {U^aӊo Kgِo{O1tq!9ߝ ?xV:m`{.Zm?I& MH|'_?pt+44zB]Ҩ6k{3C#Tyط^\#Rx>\帞TuʼOΎ{uY.v=y/om4tٕ0<͒_NRB_.nׇp<"'~|ry^ӇSw:9Z>,Υ\?Ƌ~?czޡ[}&|Gӣt^,&QӇ~0,+3ԣcm|vtyv?MGS`,}F_/&nN?h~ńiEM}ы/_?{I٭lK?}ǖZ!n}ͱxܻ/;rh'> 'OińV-~$'uWwBb <)9fw8ؿ_KE]}u@T@ּPHlÍgY7K# wbCAϫȻ>0fq?7>:[֯\O޳z%ə}b~܅ik}d_NonCVoGabݘB!k~I-i׷;nP,HE^uq툖g_؎g^IFGenYetL'~:>ɟ|Mgf9XR/{'䌌2la:jpb%FDxLd:F_y^(jwmw F9:ONWp#Wǯ@&_B2{I] MP\U vtQCGc 2989,YQ0S!⍜Û'88؜ew6v̲7uw* \mJ]Uě=~}wE RD+=#%A5WȾ46fDDorEp[3RNIu$gtq8H2ӟb|°Xͣٔ g;39ч0)_ɇxkJ{o L* endstream endobj 2879 0 obj << /Length1 1845 /Length2 5787 /Length3 0 /Length 6910 /Filter /FlateDecode >> stream xڍ4?nJJQo{{G{/.׽{m2"3!B&G2JYwO>s|<_Ŧo("0h D,(A0XD 2BQ\,AKP"xM'`Ѐ q)u)0% `;4Gͥq">xa|DRt@E h@w@8: (C"^)+ǻH@BPgk/'x #ϑ]3hB\a{@`@!a4ↆ#;` пA-'g!$W28@^H=`D!=5m!'^?(u"QP[B/P@M&%Lg> tpHA?Y W8;#xO~*H,F8w/ПuBc<> ;$ns PC0Q#  i&qc vX7I50<`GV'v1HOL6Aap 7UTtԯ_"( .)>oH&K8Q[KC-+sKF?WVP?~3'[7r _.awQ .8b^`a_"@Bh 0XW*yA~# dI ؿ'; ( N@d P !O@ uh8 P& ?_(JHMMrÝ,' 8$,JhCAq'& _v.x,o= n' av@/&d{^' a4߭Kx85AP_4ቀQ|_+^kۈ:e2x3HYfoS$+rXB '`'IH#eveWqn Z 6"hJ- ?.pW~/pX)_%IyQBB$N1PDq`^!^rkLh1r: V\R%-\ŃXޠ@^[[g6*Vb+?./_x_~`z0EܼҩpX}Z3Aհw {vs24|L\8t=/$gaȬ߶dEMo?uQHT/-$<\o3>{ΐۚ%֯Ƙ~ 2/^{nZf9"yQe1UΟ!e-QdpBsGӔRBM z7;nYVHח9prumI[*$,|yOCS O {J0 4$D/eÓRbtlbíyS/iKZ]VhnKNgWA= 2=Z|=.9V$h{_3ApZ&>^.T:hy}^5ѥi5vܓRb% 딒*Wr=2; zS-˿ OM&dxrׇ>˔vekԻ,)(g۫$^S89]Ai2@ }HQNpJo$Va^h0x5eb%ճ\RiY9uBiWt4'FN'OI{bFx"c:X7X3/+RvMZm\bMe*9uK\``,FM8W]Fz=%^w[i6j\i@;K9LvRdDU]RErVU>1V m\L[?;95af|*d(A&=5D/LC 5#ILՁKMa.MobMzDnS;vo˻(u?F-B"^U>߽_W=qxGlr<-% LPܡ4*ulUzuQ''B/*bjy,cGW}Yը\$PÍoCۥ!)_ȜX3f/iI6/Lt,ê?6~Ԙ%jp4#[=56c{Al O ^A^;ϲV~9z#ɿא=j.^I&9iB(O5{1?<[zbYߒ?ƖܡjM> 8jO&e mwi'uDKZ:K_Ya d.ߔCkl:\~tWUm8ͳXj_M E eڻkd}b$cg=^rJ.hw4(<<ӓAee:vh_DBon_Q_i0*YjNxCjvziėl>ˋ]*^' ڶI+e_m z315*k狢аgdyi-mLCR\wh{n/gʨX)|)fpWԤN*[Aƴ)^q:_b[div "MgXTUQIs/X;jr(\cVy( 2lNWm3`%d"WZzȈAF\th$`@}onv##kȻnkћR#Rϩ8#}w^jݰ/+HkJz t{tqs!['hg}x9kJ+``촏.UwLwe5?H0߲ٛ=U?+돕y~AKDj#sD357>ObI.0޷ |s-u.[P2-{f?892ڞ ".G ? oS 1vjE% nSPĎ3ވ}Fȕq[Rh^vwk˜͝=l%N;I>I4sz}j<>qp+{nk [F; -ʧ>Kp:5}oAؙ|-D+9߼:;wGVrmzlT:t|Q1~:ԕN-F*x#, E}!vgr)C b3}_frr^A]7?D`!|{"H1J+f{ tVl*L}a1՗GisҖvƆUY%ܵ\> ހ/ Sx DSDSsyVYڱޏ5U_Bat6;Ǧ*UsZ6gYǏȕ]feYot"3#jK琇-lnۯs5O,ĆCJ9՞t-m U ժ \69sw`=4W7Ӎ҈iD~Zu"vERB|)> stream xڍS 8TmNZ4(/!|jȐMi(K9fΘ̜3fPHӯWZiQQҢ&-T>DBP;3u5u}羟Y24ɋl ŝhd* yӨJeT:&W;f.,##!B P!4h,*ЩT@LPddIU2$N#$ A(p!,!^AbWCRT*ɐDNdq@B,M I6 \aWB21ƒQ9AQ|XAX@%~pP? 4ȴoؚ@%C<&B A`;'B $cJ1KC5@Dy2DrD C` r&?_D󈾫(U /ДWH)sP$^`-ʠM8P77NL&pr:e83qH9N( 7`?]O_SNЀ؃c`ra`]1T&G|hܵrM)_3b+b߮~HU? 6# ɯ"v k"g#0?y~h0~(kքtLHTB tb`jO|8Q+C@!NPT'&#iFF!+FwBy"]д^)d2b%zn+ '糖4晶HgvmmZb2{4WeۥuJOWM*LZޚ]vwGb2ȓ_#`ȥr߿=hu3 `d}ZIlޖ[{ s^9z2a.hyl7حuϩ&.A.KצU,xR+9'J2kw\]pC;9n]]__-%m-9qdgf߁Rc%+v' RY9[*YHMRnyEcY3kyxfkčeYx!Y.7%%{6߭hpr}AFۓ=[n̵m&ݰtoXel .7%&C-'??0U4MQذ/˯#icEو*3:̓ |zչ"COڗ fGU:h _SJX)@.nh#3?O$; %7O<aO"{XLSlԫEizSs8dx7emGzUpMWZ3,aH\xU9:]r!i=nP_-FYHvm%ݱNqO;g7ej endstream endobj 2881 0 obj << /Type /ObjStm /N 100 /First 995 /Length 2502 /Filter /FlateDecode >> stream xڥY[s~ׯsY^tʼncˎND'Աs,܅M| >dWjas * lhki|GF+Ö"4T7T=v생Q(+(h1J0*ze 1^|c,_Bz8ьvkcTkl⧾:t44`c"D ͖v9 K1 X xE ' bбj/9<Յ 6p=Ta64cX ( viA\w5аS Zb Xfqb e }X&8~.g9uF3!߳1q`c3p]t(\XvkCgHR{WpIk-ݐhǙ-\S, qa{&Gp0bW9VpIJ+mN+04$ imZ V0% +(zJ+}8dVpA% MitZ&̃+313)sC828W61_L7|5=e7b4x|;`|,>A%f4Q^Mo/bnΎ&uZAh&]| 5dF|񷏷[T #?#}Ty70*>'ZQG{)Wuނz 7v¯ [/wN_%q-HYEFN&P?pu;woEN Or5ݫX 'st:ѯG=?8ob?>rՏzzkWowvO":+d7ך/^5M| }ßLwvΛG?~f []PП]olONxϖ]>.>k Wpi2x O/E󛎯|QНAAFיL6FupCqbtloh}(1nYi+wl $bЈzI6r@ ܑj/wY KЇn ȅ62F`Z#+@ E+ޠp)n\A(2B+yo>0adXч2IVQV$2PF_73 >6F, l%s2>(jYJdʡ`:IV$YxE=NFd99P7ք"$}J &Pr#+ϊ!YFY L>G$6"}$dQ+ՓhsP@y)Oc|w?vgFӲ>~5O =9剌XָMlU+=)HMP6Z9#Bd7rNf8DH]Ayio>...Ⱦ9}}Ut^u+7(utrߑoEQ2]zx3М ԭ 4?Xv?a?e?LJ?QH52Ē?gK2?OU4ae|0TAU>( J>ʇp|2>0X|K>\a>|` %X2>`(*|ؒv[U>lƇÖ|*6 aJ>la0%ʇ0|Sd|a>tɇ3>0CWjU|5̇*U>2aP|dzzcU!ss(zðCPsJ=C0P9T2=a=Rϡ9 9zU=LaXϡs9dzzCU!ss(zðCpԡ endstream endobj 2892 0 obj << /Type /ObjStm /N 100 /First 984 /Length 1536 /Filter /FlateDecode >> stream x}A$G E}H_L_^Cc||+4].DeuAuο/_ȀC9|Cb1bX~1cl1-?`ָb`:W} fJ-|e/8r-{YYml?&O,|b:"[+/,r C|MxgMxiMxka~ -l^\8XsaśÚ75ok. ok.\9xsXs\9zsXsaYÚ75Wok\9:pXsAxsgƙ-czsn[]czsl› g[v>[6yل7eޜM8s`zsV>s,onX> 6k˛[mf,gn#cys&l͗7gk9YɚooN\c{sۛ5Μdͷ7'k9Yɚ׷/i/Yxþ%|/~-ᙧwgMRެ yϓeo<$𐞇dR=dR@2)y @σ3<xpσ3<8g\6V+yy!9< y=x<ؚJ;=y}k^R}s)}s>G9J#ϑ}>Gsd9(}s>G9J#ϑ}>Gsd9(}s>G9J#ϑ}>Gsd9(}s>G9J#ϑ}>Gsd9(}s>G9J#ϑ}>Gsd9(}s>G9J#Ԟ̔WWy9LyT}I2OC^{svCcyv7s^u y%w+yc<伒v_<9ess >}Υ)zS9>s}NTϩ9eSs >}N)zS9>s}NTϩ9eSs >}N)zS9>s}N3a endstream endobj 2893 0 obj << /Type /ObjStm /N 100 /First 898 /Length 1568 /Filter /FlateDecode >> stream x}A$G E}DH 1b0?kZЪ3??Uc59ֹiyɺ//Dž^kr}ǰ/ eXy ?~ss‹\S|b]SK:uqoq6.=Û KrxK0O VD6U.QpxM 8LÓæLa?fAq,`Au XP' UXfʂ`ACZ,fA,TcA: ՝,`A rMf5X,f2 %Yp)  Xp- Lfe,\Ƃ7,~:\w.g_ά=X=YnVY{{|Gqxo-}96X}Xй}g%ܠe &,| <)s2>fm6ɚPƂv?X e5x)|`Y</y<ܕ67ۧS>|_׿?~/~qO9oD>oeC>܇C}Hއ}~3C}̗}~3C}̗}~#c/筜Wc|权&6iJ[O;#laF60%yΜkVʒ*kGY**eoW-[{[%V`[;e{`[+W~%bjٯ~UWז&b^[د{mKb{ Ҳ^+e/T%ϖLb?l^*3ϖHg~V'9yYI}C;{Ed-Z"TEk\ʵעu-kQZEr-*"\ֵHEZkѺɵ\p-Z"kEZ$עr-µh]ZTEk\ʵעu-kQZEr-*"\ֵHEZkѺɵ\p-Z"kEZ$עr-µh]ZTEk\ʵעu-kQZEr-*"\ֵHEZkѺɵ\p-n4eUNJKVZO~)"K۬@ 5ÁmYej+)?d{oNY{޲+eoW-[{[Nbo~wbow~'bjٯ~WW_- eد`-{MW^5׊{iKb{ Ҳ^+e?{K-K~ٲ`?Z#[zr}ZK}C;{k]kɵ^µֺ֒krku%ZZ ZZKʵֵ\kk-\kk-*ZZZrUpZ\kZk]kɵVµֺ֒krku%ZZ ZZKpt endstream endobj 2894 0 obj << /Type /ObjStm /N 100 /First 883 /Length 1580 /Filter /FlateDecode >> stream x}A$G E}׏L+cfыcøm||K=]R!kUUɯҋyL)8!N{ګzZ j95,'X'XnT y\iel[_Stκ̶9suκ<,~fvesVZ9+Z96{lf?=Y!3AQ{=3,}\rΰs-3N=c . [p;g{ gl9s->s-ǏO~Ӈm_>}/}~ӧO];;Lgv&&쬰k`&쬰k`&Za;v#Î]+KŽ vKŽ vK.v >v>:Ih396cb8J BWuo`RUaT쪐FUQao3檐(;r3UUCʤTVJe(RJ S*RY)TvJeR*+2NLJeTR)IP*;2)RJeT&R*CʤTVJe(RJ S*RY)TvJeR*+2NLJeTR)IP*;2)RJeT&R*CʤTVJe(C*IUi*uF4UIUŨ!6Czjw =WTiWu6CU`SU+;[SU}a_ :+aW}%¾τ}Ug` ΄}Vg`g 3΄vvk vk v#a vtؑkv$쨰#K]vT%K]vT%K}$Ra>:#a R5)6C;vtJERmTP*:")U+"NHJETR)IP*:")RJET$R*B蔊TTJE(RJS*RQ)TtJER**"NHJETR)IP*:")Joq endstream endobj 2895 0 obj << /Type /ObjStm /N 100 /First 899 /Length 2671 /Filter /FlateDecode >> stream xڅO$)m])BaY0676i{;Ue)_Rs&+)RO-oal?n"[u`ofK>.q>V|nc^n.[ [b4-6'S}9'O4,Ŝ>Yx$sn̹OGe>*E5Ɋuq9yh}9 \KcI<:=nV"զXZi*vU^fuiKn4n7->Yh7+IkU-Uܴ'f&[+'l-bI-I5-[D: ˓4ݻYWuK_xɯ,h+.YZ+k=_kKOv3"cVA++]ԍh)n ԬV:F-ew˨AL0]UjG.cVTD[3\XZY&+[V=548Ŗk½9j y{Io[9ԩn`-U?<}ozټwӻO/߼.??+~7Knt*Ca7x%PR< mʫPJ,T"ckwvYa®32 va=G.3q`+쑰 { { q=a=8 P*̰rM;`PiJ(T*,BvȡZje*Q(#B9ޅ {-*MBՁWP3u`+셰2B { {!e y=2Þž {a{^aO=ϰ='žgVaO3i`v%i]v]aWžfu`v!:. ave]̰W#a8He=q=8{aJR#I]R+9%535bRҙ!](LE4$tC@WI9S!+$)ΕnlTsJ3I2g9s$3bJʙR<˝Cd#)!Pw?}~wc߼~0F<;Ë́iX|9ܛf\- gv|ϗwo_?~W1^'|to6**49uDQ䶦d˰UuN–` Y?RJXBhT r[6I?ɲ?O !adspY9bSwp9 @=iz$cA e0LY eF`RY,Ip\n Ugn^td~~'I*u*]^ul%P1Q1Ͱd dz4 Bpέ6hQVR,C[S[>ɲ<OL!h%%.p'8$f;9 p+\! *QG|3UD;يuTSG8>uT'Q"YO p|ר*8*񉣂ى"Q#k|i6ʲ9)NsYI]x="4AvnjGjvvy5׿J=d7T!בdu-b-ԍjfL?U>fwSL mPi"-CE5@7MS1T!? qEK%6J,t2Ko,COu,Bc Bg_h,ԌPd99A>cȱ!j,t+N hR$Pb 3S k8TXi+AUlY:6|e|^Tcn :hMu|0cߋ:>NDmCobĬT:OL~]?_~u}]nyg!}T'&&llmq㗿2@WdY}b2V>?V?S{gUL|5P:bӾm  H>4?nꮹ>GWaMڼC*M0`}z]_+g#_[Tó6<_s}k+*v{7}hZQ[.ʫϓP* endstream endobj 3019 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.18)/Keywords() /CreationDate (D:20210614132819+02'00') /ModDate (D:20210614132819+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/TeX Live for SUSE Linux) kpathsea version 6.2.3) >> endobj 2935 0 obj << /Type /ObjStm /N 84 /First 872 /Length 3201 /Filter /FlateDecode >> stream xڕ[ne+2Zdn0Ļ<*bb ȌtX:6ubuȺ[?ΣzG+ vQPԢϣP*Giz=dގoQ\.Jx7sqQيlGnOzaW G/uD"Go d],k+9{>C8 |VmcG.} df@9RC(yx尳zXA|ĺy i#R38䈫1*ᖙ8-9[ͧ)bʩIup (0DFql̢h)ctK.~K:רj q & Pan2ep*X,q,Z` Eh Eh eA`bZsָ_k]¼/`5 V+F+Faga`].!˥Xq~R"Hl`ؓHAd\5" VPXJm4`HX_ԾľN++RV" ``֢C+2(,4}4}bl^%0d+ҏ +``%[,5,4@4Z!pD\j]LkҨhAR,+t+_ZPw()t+H+]AʠكXUn—Q-2pB 'T CeaøꋸlDne .t R:]f0A1GM]Gʽ\e&w(/hvQE" wD(`7!ŗM6QV =`:X!G,[hKٟFֺDNvhgEi('ǐHNA \-t׊;#[lObB2i3FPEkEXLT܀D4Yp9;y3 :O7dE^8˸Y=| %J5( x$R 2O@kȴN 8L+4%r%r:wL_sSKެhCQ(0:@)+moW?PG;N5=~;ۀV4 >|ۿzOO{;E> 2 cx S Y]fڏ za}0e&]fe&lfF ΔLΔ:B{fu&\gu[IsrWfWmffmffmfѮ//7~.'>!9}fg6:_=9'>Ϭ|x'*LD2_YxխgWdB í3Q_}/KZԘ5PװW_U0DNT:[g^'WS'*t9:WB &(lʹlafML61kiy}Q OD>s?Ο9?.ߘ;_F?6fς˜}em%P&7iފ~̟`?69ًٍ~1*Ǜ?>wwo/$=*GY;G?}??>̏Gş~]SVf q endstream endobj 3020 0 obj << /Type /XRef /Index [0 3021] /Size 3021 /W [1 3 1] /Root 3018 0 R /Info 3019 0 R /ID [<4E5A102BA82DC60B1C5A275999EB3671> <4E5A102BA82DC60B1C5A275999EB3671>] /Length 7175 /Filter /FlateDecode >> stream x%{l{}?NĎcgıaqqq8gv8NH*z<e˫ij"W^T}@B w.VDڪx|N9sٝ}D"i2H&,hiK&Z3h$.CS@mmN]6Mh.Bh. hShm@;%Ihmtmm @vzB[@vnA{h@{>hG,")h?0G; = C[BhwFhhP}I47}ihǡ:1u4}N,cP 9 4j7@˚6lF@ v N4B'@ gz WƠ >Cva/smC<{pzУa/Nt e=L @g@G^&`:@̻=2<=8@˄[NLHU$@VSa/ϣ-C/ѽi=;zKY1:a/ct/2F<<@\9=2F^mv2'ۚ{ &T=}N.n@5+hxӡiwGNK{9  ?{f}*TFbi8eh\l+q;;ef Hq.CS@+7 h2%h#Є&S_6-h2h+ Mm@;L= NL}zBǡ!4z F@{>44EcNA4fo$(p MѸN@a4z*8 C'Ѹ6:hL1W{sioB]@NөȗиP2ĞI溂ւq7i`;20p;2OnqG.7dtpM..<.[xa/yxd;a/.';]z a0KkF#ft{]R#5at>{]V#5atw Jk=.>a0%55^#FwB {GCqG{%(al{G\{K.kF#. %5q!pt{#{=BO=6޽  xTA#4="u @#T<w|GSpBe8W) {=8쇞'!qg W24H!fq5p/A- Eh3Ђmv)$S4yhЎLB;h\ s}~4d @jqh7psw F=#@)h?0#{z8Bh<'C0B2@SHh\ \7}i4q| IEv ;`GB@U h:U Ѹq5L24: \Eś!v940pMFWyh2!pMFWio."㲅<&Rw8-Ey|?tXAeU` M Geu<#`Mt!Pvh.h|7aLCWV4h2z 4dfhh@ћa/j ?&En{u5G{7 m{QFat('^u a/j{Gc "W1 E E6@؋\ -h?@؋\ MQ :"!qB^$$t EB<HHu)y;܇{8a/g :"!qVa/YNHHeE s: "!q@g^!$t <{895W[r<<@+q ap,BoBHP .DJ+Ĺ  p:^! WȇC  wKu @+ixB>9 O+<:Wȇs* w42\CҖ81m% '.Fhfhv=@t{}~8E!8 } Q0a`8'Si p8 d,1q劣cS"p .3` 8p 7&p ,.9 ,w2k=><6#`1!Lܻ06gJ-Blb["!E-Blb["!["!E-Blb["!E-Blb["!E-Blb["87Bb0i',b X !@B,b X !@B,b X !@B,b X !@B,b X !@B,b X -ИMX ll—Œl`M`yM`QM`)Mv7llb>%2N1كa`=K_ ^Gdd,i,d,_Ɏ,ZɎ,UɞX=,%;%J,KPP?L9^XiX_XU0\ ` n x@K. p !m`x `S ҁᙬvhv[EA| >A| >A| >A| >A| >A|<5E_Ci[?  >A| >A| >A| >A| >A|uxwNŔ%^I<? Ե Ե Ե Ե Եn ԵZ ԵF Ե2 Ե Ե  ԩ~|A_pnZĻ:5Gw: ׎\F,O8O'7ꔻ>nӟhNGGf-';:X⳧i;SyK/qn\Z:ZH%Ԯ uJ[_Ŀiήra%D[[f_iYEQK6NT˓lN`5PwQƁaJm5ӎ 0m6&iZ³\7vi*5HGS4{Om彖]WkH)@ ;ZtJ+ t MUhI?gi`0{vpc=:-fJa¬iZ.5 }^<08y/G(xp2dFё+f?v-`ӒMO[[9r’;f?ԭO[E3nْ#4rǒï>K.-yaI:GǒsM]WK1E)Z_)M=a5w[=wnnn\=P5|)^aR45wՑKqݞ45hU}`O|TزX(1fI,um5Ku(8KU/J>R/E-// %áŋ}ڡ6%QH=aK1tz,ߐ"E&,US#8[߿+MYyj]Ҏ`p,#Ԅa9ZQhiɭKdQٚ;#MwA8,"`ц;״Wkڶ֎WC- .O.WݪKF hI_W8[)iz L7i'C]^_!8 YzҎjniZ=#KS7HmS^=!M ϰ5 [z9P"p/{I0\/6 rүKcfN0mh{:: 5K\KmC;<`cw(ש퍋[k[@\߭JSC[q>tA[;[T}D:Ζq>(^}Ox@݂ PbpOzJ-^W>CW?i闞)@}?(Jq4z#ip&آP8`?jYP$$;k̰4jTFŻi lk(QeJ-5^BEt2]kHIe%`f cUBcB7bJkX2S,PU:-3#MwXB*ݖvPJ?gߗF*Ԩ2`,Z!UWQ aZa42X(1<2u&,9АʔeJ(^IVT`E}VQw2q P"W᠖5yOKBB[waMmݵ?ֲ5K[+j ߓ*k)VYүi5>jk2ǴaMoCkz]Yo6酧eMEmm[s[k5O: kiJXO~OT V:]{cqCoQ4XޥvO1-GVb.ۗׯhzry>{Ly4{~x.r<~7vQ~EgujU^?8N?}#Vyny~f8եg |?#";e>6O̧scQk˘[~`5O|ޗ4|VG,}d>c>h|d>1'4d;FW>d|? \|z>K|BŌ;}E?>q#|G8§>)O} Sxާ>)O} Sxާ>)O} /[?ŅK?Y endstream endobj startxref 671518 %%EOF elk-7.2.42/docs/PaxHeaders.21776/spacegroup.pdf0000644000000000000000000000013214061636525015727 xustar0030 mtime=1623670101.150096704 30 atime=1623670101.146096708 30 ctime=1623670101.150096704 elk-7.2.42/docs/spacegroup.pdf0000644002504400250440000056057314061636525020004 0ustar00dewhurstdewhurst00000000000000%PDF-1.5 % 53 0 obj << /Length 428 /Filter /FlateDecode >> stream xڕSN@ +L$blP  -m!bɯ_O -OU8Ǐ' PA;;%(y\ Tl*B\f f0d2AC0"Q0d0 Z`]bZCEAR3z; Ee4$}[,_rD }%ΡjEf)8>OA+^;<#=epW(M|Xׅm3k]m/rSM5xɢ^'^&ieOM(}G e PGt=lKA<ߴ&w2Eݟ??v~nSj^"q9J6dEd'VksݛO38sQVeI/Vﳔ?F endstream endobj 72 0 obj << /Length 603 /Filter /FlateDecode >> stream xݖˊ0y -5_li ._R;Ğ!34@  D mJD᧜!kPDuReA!c|-n!&(E##(Q 6@0O|hGp(qԱNCQ%z B u7z\`*,y ~omҏKq/ _zm8UBV*.^'q[Wn ]*os ~Uf-֖cʫmh0SS`L% J$nrV:.ޗ[x'u} !'8ҏSEUm,ONj𦈳B:b ҙB|s|0l"W?ttWcR } ;$Lrb)TriJ~i[//hu  Hx=kߧvI@fQԑP=f7~hd3}M:ֺ +85OT:2|LYyv;uPpByKJv)>wRQL$ntfNw7iJ 4}\Fl endstream endobj 80 0 obj << /Length 1698 /Filter /FlateDecode >> stream xڭے6=_uf>eٴAqDc-ߣ;6t$MhDu//2qgQp4OVF"ތD$A,IiE2Km!&!ǿKFm+X}٩^~Z51p@Sw$Jo\%8v0KTy՝?Ti=,ۯes]/$nZZzĺ?zU}vK.6x+hkQhBI4qA8(F[e3~QO{֞ףAXUړD)1 ,;&+Yﻃ>_ H.}%5Z8nҸe65{QU ;k@{#ڭK[C\ִ[UeaXέɑZm*鎬3k +1GĦ_vJ Ɂ$jkgSMUN9DDaI9 ݉Y6֋/ bD4IPF)2ŇO87XG1D3P-޻,M21fiaSGoi,FOsDW'B1eFw-TȕyY[aVgN_$cE6~I ݱϧt9KFTe u,ę_lr 1 Fx!wn(ܟᢏ[85 ;Ϊ|pcI,S5~oo$A>l0I304^;ʣ ()b9PRAӡh{ز-4As.ypJflhM4c AK"fec +(K[ :D͋@h9@i!q@ SFtO01ьCx֍_3"1@7 L| )=%1^ʳ`u)."H(`zzjsyq`OTPo cppHY{|WS 6?`1ggUGeP_v{:aOH6"P:ATZ1 z([cNl8J3uut&ӗAgrmBrrȽ@wgp>P/:UyfF_*w:MX,9q[̒$ǥreUG 'W(/B:1鈱 4p@1t0%_4٘J!i 5G-N_ü>IgsKy:vAwP&^Ώfcœ8 6B!@ fMBG,~aG4so=?0]Ї} >ȕptCN"L Р{4}l(a? JhdM@&ZbD",< aRL(_Yp;,RџhR3i`X6ApxXGzΙ'33?@6̒y9s=ɋvveLs]"'I;/,慗Wi`AW4Xw5!s0T^gv /l.CWYfކ=iZ:sd|t g~"3"8CoGki<foH2QSW/ endstream endobj 88 0 obj << /Length 975 /Filter /FlateDecode >> stream xڍV[6~_#YW.ykͦ$$&,6YPSz8dv"'`PSyJM4Ȥ"T& :T7 ip/72 %9YDvǶqoL=5AQ2GAG"O!bo~AMS,⭚O Aa٠ն#S03 y A$chah\({ "S}]N]Ma]GKE ~0 ٬8#gѷ Q [&F4вØ ca=ç)'l,eRfOU;(;xWm#qWJH:2=>AA^"$ -J]cD$])u~a7XLq`&Kn߾ݾ}]C2Cی;0䫫NEJHuf0>Ê;?n(Χ+ɰ$?[0|eYSP53lU>(;=IkW% I,iv2/aA؊ RRN. gmQiX^)h܌ P3Ӑ^Dl²[˹ 9+_}w4UǾ*b嬑Ky~i7غƸ6f,`i& xg<f0cd.cSs4U؉~D 3쇪O?ʄ/Ұk6~y4z S],$t`]oC?QEW3mM?ʡMYo6n_۪٬f2}z3mUfd%&e OXPpإIxG )V.k> stream xڽ_w >zv? ЇݠI7@ $kI X[EwWՑ$g!?=nxcLqHΫх߆ތoB1Dunl8è씆_L*嗌ç7?m8DMAH~UM6߽[=iA{wCZ0u?ޘm7_y,r L3Ze^<><PV>I+"Aڒ S=;;DƋ<f^ 7hq{VDns/ ҖUmnx҄"r Z)}&ͭآ^D,aʚ U'Edl"dzܔ;L(ք[K`ô%mU[j&A7^4솷2 ZGu)*Ku %nU9]}WuV/kz{sJ}fu.ҩ@K.ZL1(,BbAWt'{6Xg E_Ճ |UY]FY!=^8mҝњV{E^ՃIowx3*h78뭐ܢ_>Hwǻ?nW_(D >e.5Oo0 UtLa!E!BHuBȪ g UL|$n0<t܋-yBB}.>I eaեv(0n`85jЪlFWm!!]竏E ݉!惑' A_wMIZŵQ S1$U b;~星p6̯.R 7E&-Y[+t'Ο=wt{#qzGIcwxCca@˼6x#2/$hWNyh7 τ2$RNH]~{@#k/[+DT'l| 0~+4 Z- [ &eDnQs/LN yãIy#D4!UPםgƼ-N8#$,5$/Ix?HwWu.JM_=WVkel,9[s!݉_}kHhBx5×dU0 ~& )~ %~Ua]D?H_Ua4!-䔶NHCr ?{~įmT$\iBxWg7􅠼 8*'L؂^:շ FDD/jݯ݀ Mo#v"z y [OR&EsHO:?CBg}{At~c = endstream endobj 96 0 obj << /Length 3105 /Filter /FlateDecode >> stream xŝK+-Todbe $al/fڲl@ 8>EY0ZlsuYt{: CS%17+L?1w7y?~]RiF~vǝ0Di'ysN{s[:ՠӽ5{ wFؽ>)Aʇah~&_[#|<-ƈI6?<<=ݧߟ8ګ[Y ,}hzw8ŃQ6ӥ^O*CԐ76Hw8?Zwv8s/ㇿ{4FNf@q|@9 וL Dx'WޏA|D8!Gqp&Gf[ c*yq*By !'WVa0~g(10R\'+^+C /-qѯݗ&VZ5|2t_j[kk| ?M\J.F`Džvq:j>B~5D5~Q" "+騭 X!kzU.ʯy |_< Bt \tRGfV3 ~D!&y|9MNafg#?(MRI{֪(%׽YDCHCP43(G*(fJnl031 0 -Lr]D!&yɇ5c;)53$7CL)@٬2z 2 Ac⍑=1eBb)H0n#o$wnኲ]d^H$YCP [亻PHCT43m CXr;ĥnW`aa-a)onci\"xzK7.MK?.`X %DcHCXLXͿ% af v>W,mRKa#\»`HCXLX_ᆰnW`٬^2`2$} *R G(.P0x9k*KBR U{ JEٸ)opA # @8g3WNb0w1mpr4S afNz>qޣIS0]0=r qS\z.P,^2Yq;B( #\{tHrf9[)~a↨n{+X82je`)up %" aJ3ay~7%wCCE,qÂT!K. 4*̈́Y % aP lV`ie hrOZqun^%" A¼Ϗʶ$ 1,,dzITqoY*8D@Ʌ۩DtqKgn|zfn%4Mn-ACPm6ir.J"\ߎl6iOfm|D!8386-lt))A3n*Mi#|bs%GI)lLlvaل)l,{2#7$`)tp %" aX-c1 nKfRX._2"hŠ B)..\"<̥rz=~yPTn@8mVp)`TJ0!RK(i&JφG$#bYVeJPWtsauqRB%ޣICT43Jq’X^oDNUoQMONC \xʎHCt43N7D'w)q,_RʠL{q#\Wq\">ރOH*͉O;RAteiApWLZ4n3+ BQ8.p"< NS{!2wCg*Xl ;Ft!iNf2nwY9ޮ^2|@6J{p)tp _QG4%OsV!~LȔyzL7(oA;T!L.K9G!0y! U _{kC>(`o Xi#\»HC43x#C{Bt٬_AX,hݚ4".hr]D!4yv8Chr? Roߒirͱ[mU~!SB&ޥ_Ch8'4Mq0~X)v )(`ICW`r;n:"3-bav.,_AS@F/ͦ4-TcԼ=/NJ8!*RoVb8h}X87D!Sݣt#yʭkwn]CX) 2+%@奸1˃xLWfR(\v"Y ,>\$BeZzGsv%iW*r(i.tGDͥ,txVwQމ"-/4]ܱFSxcZviwW8c{g2]:70Wf&n/'~z+3\PJi_ig"/ݻWգ:(/nێ endstream endobj 100 0 obj << /Length 3023 /Filter /FlateDecode >> stream xŝK7F+ji/DMYNq(wIjqX=J"K}U !Ht[:T礦߷$?nhߦd:PNo?%jR֋hi9f&0zN4xC&AH㦠Sso79ǫw/(7))f9orFh`~zӳ~=UywiT,-&VȨ?n~1R?>2*O ⣐m<<"xPm`%(fQ1c mHox<ʽ\m \{7:s!NFn>%*;_ 43"C"7Ù\cm>{~aF)V4wz= x) 2Y^n%\`^`%leSt{)a4U{a>zFJ?KR?.%[lMӝsT堤nL{DdF6YVOFGBǽ2!aTd'Cz!\I)`Y~ EEq;YX@ta$_CUEJjM1QY4I*ƬRG8P/f,@7i|5⿊jY56gs -5ܶdd:y+ i!f*2!U1J]T 6+F318ր[6d:9%m;e;8^5*%ŎhY4Ж13րhe#kmA:8M^gpdۂQWi ir4a)p YnOMO?ƷL;3!U3J] 6kFP3x֐/1V(uфrCfhwa!XC>m1$cV3\Zfbփ2ͬ32ej.ы+k󸆘r6լw;`-iVLC7`bV(C MQuBUCJP45լnh Qv/7-c!]5E_!!fݱ"EĆ{."3CQQK4-VxR"DJo&B&jZ@Ć[{!:& .Fjj{ύ"EߦoU$7-*6ܳ gpKl urxꞯU bcr66լSnOV SCttR ec,2}4]Uۨ)'HIfuϨnQeV>3+kto#","f}]왈\c8RD5GhYK-UDv!W)&bj:?"Q!b>뚙qx Bг*KrQ!/XRĦ2+j Ww8Bf$ _MFa""f宼` Ev gZnEI7prp#:s 9roTF endstream endobj 105 0 obj << /Length 2921 /Filter /FlateDecode >> stream xŝMoGsw&-6A|Kr"^xoSbVqZ~AHq(>LOuȿ&3},.9SNSAi>~z>=``?ˡqO`2$N5V%;7wv;~ :WQQkDO*4ѲS]q6v+K\rᒋ]Ř btDЫ }3#$I& 2"{w/8\G@*t ⶜ Kr:~u* 9GAe} w:\ӑ01ӕ3*yȩ&f1e5:*iȩ4jI Lb(x8\DhI]JSidd26yvogA$c{ /d6ǫ5@20+SMq ;.pipF;sD4R.<ŭt hJuV^|qAs#BHH*$(2LB6_z*:F -N1Kdq`7^FH]^ E}>;X2Q|yd,;{F0@b^p 4y͗/@Vr 0'X{QA@zz/7\AQ+@ލvq+D|H/"I@AܶAP BAa.VJ%o|sDyc $ }9ͮA>"%#/IK软JNe[`zSO^GCH> stream xŝ]o7+20orrS؅,iHfݿER}fP2ܱ< G?'5}N~L9'C SNH룝~~~|%ӆrP_|DM*mjUX;~UN0Ia8ic4/O~<{&:U0{MF8;xwMJYjۤ>)ꧏϯܤ~׏?GZ SZ8~?uh`Ҁ^p_pY:$Ў0> C˗K5R[ 記BiaTTA7<+=m!ݭSsO<1[%1/uKG mli2:Cd8;g$F`n1ƼѻK=\FG)g mq{g\D̻{.*8E^ob-.n[2.]?K~«zB4K0 < BlҼDP-2pާQ^ɿG(y^53OkN2:YX@տݖ! _IAH!^flUy8ԌåttL ,f鴐Q #%_GHc>G8\JGb9lT4=/|q*ܫ`d'8;W`n9yF^1uSE'GCMJ&$NvyǻV7nwB:6J'40*n""1'nH,"ss [Elg= p Y AىPN 5@YCʽ4G i[gpCE[.f! @ .j.5BDJ8YEvϭ@ņȍEtlVx@6@>j #!Z$uh !q43+CU†{6+?0ё0#h9'. fa^F} &Nƹlayn.#y-.D\17#FJҰmqn4g#[mlg6p`|QH]-!Z4Uj'kHܱ=3[5l{:r,h )+l(kvan{% i43g-RALӾ:<-CDJ8YEm!b]2ѱ1ahƐ+W#!%l: &Q&{c[$lg22^DGB?Ak6u!"" "Bdi;VpnF":":/-2tPtUs3_lo17Cdi;v66\rDkyh" Ԣ!P58w{vvF` mF":Y(Zgƈzc_oB."<4wܕjH7p?op  Uzff፪r!$N֐ƹϻ@W̝'ё1M@ Vz!ˑM27oCFJ^:ktmqR]A` E\hbփV͜0';>пal؈ss~-6ܑ;1X1+!9#6]\Ә8E3[]l#w/WxЂNXS!Z4пw4"澇ba:wFBH,! s+}lro6M5t i-cYno#@J]e*0@fs8z;:VQQGKhUgc*2Yp˻;.T.0O.2q *#%p[:OQK4jdVXt"# XFH,# q3[USp2>T:ley/(BEC 0YCfrm [5ӈ|8\ĥz6kz5V /@ņ~ 1a.6a6K!cî>&g#dBКV(\)vl"$L6oٮ6~۲t.c NVuldH2ZhLl# $#Ӷ@UFu-[8\EB^>k4(gt1Wuq&Hl{v\D ?.y^:ZYX Z֤NZj^KhIW!a4̓W-)sڸp]gډPBYV _X a6Ö,jeC~$r*ӠUik9+D-!a4̓`W-)p>9@+ӏ^D7aCB ]e754YCf3!*!^H1^EG£г+.׍ gaGCHMd%Gؠ/NGkh a< N{ma !!a4枻SRr sg. e@+*dYՐ.RU<0![=np iL( yyU~!a4f#V)BF":.%A#'t񐒯!$L췜lr'gU. ):hMZi@3kjQBW)2$Mv\V)_^=^KGEG+YC2#Ee !A%HRpYF`{s+oNG*lEm(r I$D^Gսr<\B9^DR/>JUQ5D9Glv~hяR/ឤ;ZDU#q4x> stream xŝMF<ڇGnYA]0of `i/ۚQJVQ=~=kK>iY-LP :4e1WPOϿ^1qYrO/?NZ=t7ْUN~iO$E;%[+(Qzr/W|od*^W䌊qz}ٽÛo~}䢢3 JPY ~^ &BloAPTr鬐>|w˟u.=hghT6OX.ۑ +$ $Ui'697ۚL_snrtxQ%՝A_a=AcDҘǙw{A^ܻ]hr?m .WPkKi27 }[!"G.掋iHEf.uDIG&m˳]Vs1GXdrpYLx|z/aga懝pxG`gp {y8\FG@t p/Hf MB$R}-Lr'ct}0 b}-79& "Ґ<ͼ_$ \RsxأI:"qN܋ '}Q%&r+Jd7@␐<\߂. ɹpU..*oMjӐSdHC4g,ܓhhrݗ*GpcA79!"" T3K.r.;?(8\EGEMuQRQ0CDN4d"O3?K"K&rjTfUM ŨA&EJ$nJ( ~ e3k:̌YdLy&A7+9zJLqZ2%#9wu(]/#c0JP+:clkECyȩWM xtD! yp% 9wu[p>ԉިBy!79m"" ;{-8\JGG0:ڬ|so$" 9N $2ҕ::B֒<W>Vt4D@zF5! yyY Krlg-$hk}*G~϶tr3_`"`C.<^ᒌ7{tN9I4 ,=BB4-UvS}RьQ3A-jʶ#!f$^7R8d$.; kpRrnɌWq1De OV6>uScMH8$$3/ҕ\ܕYxU1dQ%[HF4Bn.rm\D!yy'-pE̫h2ԫ)s^5\dۨHC*4Nj@d"î0Et<4nGPڛ'=kDґ+.ȹ륍)p#Uڀz^G%#5lfdqe볁6 fҹp-k+]GPkVBbG!Ϩ +$$N,μ>6ϸϻѱ0U ”UɭY LۘC&8n/d \2s`ƋXkpԧv1(<}ވ796:"␎<μ>. ᒎQʠv 5Pnmᒐn Jet\4I jWk_\/=bMF~y5"̋T%9wبrNѧQq#l#($|5#G8:\i0owM&޽}fxzϪ l\h-Bl&"œoy vIPO> stream xŝMoGsw&i"A|@R"^8ۤU3MaIJjz`O×A_aL*Ӑ}P쇯߆^B=21)/ >W?rc>t7ը}W?=HiHT0Fi#6> eӣ>6`hQ1_^ͯ7onWP1`*ک줂~c_M (RHL*j3)_w/_n_+plUvy+_|N+؆eN $ad4I >l7kB,߽jL¬sSc_dUqWw 2CTyz'(œ{s쵲WڮhrQ{e'V'9^1|Suq6;IGtܛA"u906QhN6Kk|D8!__."$Iγ."U T]|^&&0%c8j_J$8q~ߋTx]k(!^$8$~,WwaT>{}cbu@A@$HSEqM&!9!K5,_GmAnQ1۵4:#Ȥ&'_&`ނSyn7;I"%Ҽe]\K6vѰYjvQyFy Alڂ8Fv+͢!\sfђU4\4YeA.Zr<8?G S}qR')9|.=7fw0S-ԔZʙ̜R#d%G_JHj%s[K%\sz䦻s!hT !X6Z?CU@k"&D~'e`KsYKh2U֚j(]CCbe2.KGB,ESi=JoY KrYѰ-HoTHd Mĩ&8p%9tqv0>;mVz2q!qQU4N9Z9)GyB>Nf.ྈsqV;B> Zqk!4י@TyL [KHWx-b;?(`} &Nu98)5HKY%hhJ"W)G6ݞ]IοΠ Sq'1' 5I=Q1Ll=(Oruĩ8'G5Y@iZ(3[֑W!j}31qfNmbㄐS򅍳Y+@kK7猚6Q%Ljrr ZRƨۤU}(؈ LFcTYw,Ȱ7^m_B`-zې4iD $eon8UBÃ8Z#!kiƲGAkֻbIH, em-$$N9)2 uthh % I*ȩT `!qvpX^AKΣW4c^W!Y,+f(hA*(4Uv [C~| a0+jS`%Uނzr+qY/gnyb7K*<|uz^yG/=+Q,/=ܺ#JuxkQ˙t'P\$ Rk'G/{rѨzvJN\۟B;X =|*~wٖp㮫?UrKg endstream endobj 121 0 obj << /Length 3015 /Filter /FlateDecode >> stream xŝKoGF,  J̓bu~Sr\t'N9-}~qeYJ$o~{zE+WwI~<{kҒlMP&us/{ëߛ.fb~IΨOͯ?~y^OPj9bXmK<$8[> bC3ĠL㗻qϫv|Et  >~u7`2p{lB MR v@J* ȩ=A~oUI~är*S%iJE},mo5XRþ9^Ai-k!DTrSe2e.Ii n!Vmn!5M*WQq+inB@ZtӰ-Hլ.?/ڼꡫW[5HURR~GZ0D҉7'uzqOFH2C&]0J2 f[f#T~ Up̤TM,F)rqj>pmAnRBP-N䖝t EXrnpk>pYE:7Np A%8uӴƭL.=|~_ 4x5N%8ww<3YeAYrlyA>M31 RMWsV&8xab>Oea(g8YKr܂H@H5M@^MIG 2ؑWO;S{O] h)$m*ra"D^̽-D` o>/eeKU֮9J#!Kq&*6+m=I)}7#$%)RBiRjhiXI<W>ƭp*JqeU'/hA6x:`I۾p@lvRqD+,y*ũla6x* I|gϲS΀Z>'ڒQ&wjʞϖä]=F2yփWX5`C ,EjT2aei4<'YӞ,34ȏAl GyƅX:>Z:xtMMIیiO4I8԰4G0[#J2U'Y TS7I6y'&m=I&k2Y֑V:!٢ds]S`J1&ҤdM28!>^py6b *DP՛[g<% !n,OJI$iO#Lud|qֽ jzPGXJq2yHIیi KuܭKh*rV>X\SLBmumkz1Lձ.^^܀d=xЗƴ8WŠKYڊPI8NԔz) u' ) 9;Sᒏv¨7a aEPooC:`B;e!f!/% \Y(uS PNxXK;UJ[16BC%9v9j!Lvst&)A}fcB[%9v:Ա2f"/xLD|n4AN1Qǁ:Fh(T HPo4B*iJ&(GЉ tڕ}uWtpl ٴck0AjYc ԉYt ^>5+A@|>pRj/f/7Jئ_&N0zQ~ʅ8=BgAg>sVz˱d3.] bv?*CúO endstream endobj 125 0 obj << /Length 3144 /Filter /FlateDecode >> stream xŝMoGs`?rv](oI28L.{f *NKo ei8OquhIM~?p20E넴>ˇ7:EM8aUX;mw7&?NRoMwSLןo~:ۉwss;ɛl*͋I&5}R9L~/u\go?|yoF0"HZ8?J>}ee48E>|}2t@¸(_~>Z+M1bއB aTTAҖ-Q?fHA;\:n2`agy:Q7Mfsk_[^KɛcL>,>[ :J)dJ ۪N1"BEDEǍ !"!M&{? ,ޱl6")our8K+}$)}+"_J8DR\B+W#VAtL aBzW5\m|<8H`H&2 rfނۯ{ƿ8:$S }P\$""d\D)1X:Bu{$M"P lёRWH6Gͼh9̌x3.q<&gPɇSbd\`jLU&3gpӐ5 :( 7 ;G&d4yޱkg`ݩ"X?ԱR:a hQd%7q$V"VdnVRQq8K]R"H.9H>bG)v+"$""epˮ!}^kjx8!Cʁz.j:F IO$"$M8F9IٗYOq[eAW)u dSUZbcV1r3z~x蔐Ԍv k3p-RꪵȦzH9xeN@C+QtD4%Bv˯.4 ;]$*VMUf3?]A4+Q)M뽘h:vgSG!=JIOc'"j'NnI8"[atYP)+lmjcٚ))v,% $M=@7:LrM^DQi򑩒pr $`]I*IөJ2nNRx:^\ӑ2asmcµQ=*[/)dS\dsXᐁBsR;9FGID FDݔlQRUI=l4{f !7)zs>n3xsZzKC+@@bEE]ȦH9;v a7 O"ǣHi%"tEBEJ})T)i6UJn`7))rtبP ŶƈvlpEfd$[v A7)ˏwt8^ Al㝰ƞe&pqrQD6QMu?BQ ߜ$Oȿ/2F1A-㔈f&[|uD "#㖯tq̻9[O?jl3Or.RE_' ɦJrnR=hQRK4fj+BlJFHI݆«>WEnro`o4[È6ԣYkKP>1JPӖ=[ĢUbi*."* p,Z`YQk~NFx RK_8\ZPWeԂ[Z{kBj-E-f14 eu+W\prWeB[1cB`] !qݑ{4q -n_"֪51 Amfl-[cfwyjk*aE,J͊gzs?smYQMUfsajSb7'{& A}[mM!.QTe"j͆ToVN"Y}V!>l4?nEpY3;jr֫e.\`~ 68C[ŭG&ׂ[k۵RC4L(BuZ"iuE)l1Rn0H04^Y$,./==fR/xo*&Sm: 5\@nWX59!%])Wk/'*9;`Gpc_p"f;`~:v+!`q+np>SrnEávT̑**Jk꘮)[TԱXVi̕BĕZV C(hpJWx[bEAJ]TlUd!\||54iaީLs@ Hc7 ^)#"*# >ɸ__̿ƫW8iE5pas9)/qlu;Ȝp|:wx d>UU;dKƇΗ ܙ1!2vYʎ杌34nKid pj}u%20jw97I*yYЎ}<4.ߪ=`B ꑍ"*r G6@"#riOm>™4z9}_꘵<9zH+ endstream endobj 131 0 obj << /Length 3121 /Filter /FlateDecode >> stream xŝIoGF}T 0̛L `r`d^"N+?0dRtʌdlsԊIԲ1s>n~|3 wq!¦DgBۻ|g7rcMhuлMѴl~գ)o Z^LyKgMmn~ظ)776߼ϧWնoſndMySJ]$vk]΃d)b"{O?~<@Hd:!USL|_α1Zs;pF_cc/x<.7!`RP~{q{8 v<(m6hiհȲwnt_ݫmec|!"Zklk .Gѽ\&%XRDwjXDYͻp;:,"".'Tqr|38[~7يn+::wRHgZHw+RzQ^ielEplh KX9^j$'WM?R>G^$><޵x6;EklnwT¥fbr r?e.(A$ĮcCb*!,?P·Xاz Y !XPbWYz հS4DYC >.N~ Yd ބNl$kRd`IVe=C&vU]\EU s7hR{S3+=LRK8aFRbXCl$o߭fkF]m26Wt0*bXWYAWm }4_fN!ELA"_o[6lb'%w!P-TA!`P3;|AK5.z{PZZ1`RZ ŰӲ !Ԓ|6*+)&( s5x2*BĮZwg ˊc*;ˊYY@qM1 %$vUYl eؓZNqk>p+,zL*Vq %$vըF-DXvKݍ-Z`On%ŭi-<|5S8-ܒUn9a-v7j[,Rf[=G&= Yz2,@VKfݍZT,^-',\(lrQ,%oyZ,HX6KݍZdj-'yLpq^}+J=3~z=D1ޢVAB{toL!r3%zS=1XrOb'W(ݓkeIy@^wnm=XdE>Uy|bX>YL!lo\wb$z_JQ`I?۫a4TBlׂKCs}|3΁1;􏡒a:'u`,ȺN e$gO3)dR5Ak&jA;u, I5f`^|7ցfc'F`@cE ʰkf .K/Tp:ṂV3K)J=)m[ $,)QS&`^~F.hC9XiUiK`EZu!ee>UD'|eٙA}ՐUiR`d^TjvNYOpw10a a?!P3#$ԀJ3B%%unI 6P˷oa",H@m00\@W5jV߻PAD5젬_oaf XC 4}Js% %v~@CD5kx0k?P S <88sGުt90XPb'rL*m ,Ko Q [([Bl$?P C 4Ԃ7"u7`IC Ű>Tmf%zx8b&xPػܿM`^!PsP[3CN4SZQ@doMi`$ެn$cdW~ eأO~A0<-|T5FC ԓR gU"ުF$Ԓ:+lOř\A}^WFJil`dެ~B(D0VJBU eY A\um]N$Ҩ`I*YݵKR`;4\j=YYifhjcH}ئ40X2KboV?bl"%}Y ɬ;5 ؀ 5͋U ,y%Sȧg,Lj!,no秣 s j:soLI꽞cܳ!z2~(ϣYyޱgkGHh1 >@I@[g{>xP;x{O[:ms.]WPECo ̓r~yt䜈V"ng8s ޡ2@K,{MbOF/ t~Я.H;P?&~wC`zz[=pyɾxvě3zbzu0N{JOYK$N("A. vvw:;Hͼ?lx*ﰴ 'j&u63g endstream endobj 135 0 obj << /Length 1966 /Filter /FlateDecode >> stream xڵrGཟbx1M/Y*ST#,d.UX)H^?=3u- 3s閿 jv̿\ h|rD DdUX;l.޼6A qӇA$B4ᯋ?L;ѹANF8}z{JAIdRAY+lͳ?=\zoALB 9aY5k3`TE3b+> 9ȄQw8?Z:B KlcoW:?"a1Ҽ_6rh#9!;R -~3 #r4n, o\5Ow+COG!uTTOlcsqTzt8*4RkYI(Pf351[ZsvKcv®>>K̟e TS <m_q4wy=`U*F1M;wZBc ^𭂛+X{7j.u|vJ>Tm0"j . qpSrT q4wh? W(t^h4k:Fd< m_tA`Wĕ/K0c.zV Y/.Ca%NQ@9*pw CU(i\kRaܢ|!j>`%7+G^ 癦|J›2嫉)_69tg]stՑ b`puU*R1Z酌eWs<m A>#A< Aw٧gb~]<ӜIZ8u[;KoUj{$%[GX׾n3TaHa"EĐ8 . qgQ3C<%h@a6L;aM֑Y@ܾTA > ܐ!G4\E KU "܈qJR!GnQsUx2:(g8Ȑ q`8[XӴvj`ZX[ئKt QE0K0cTi)!yX[ض z݁>bE K0说}8z?jOl̗W q}yGP endstream endobj 139 0 obj << /Length 1357 /Filter /FlateDecode >> stream xWo6_GiQuZwh,Ӓ0J))EG9vi7`CHw_g;p?Lxq;I(FIh읷=f2ClN;q16;Ng]C_)9;Z5pou[ +Y*93?d⌘V:Sә8Yl&'ܤǴ@NL>|r<p5NC=$ i tmtEt~7A΄iJo64 + ճӠ,S$aT5c-uS\R]Y]|sn3y,vl_Dcvy)u)5{ ŀf/!*ur(P\#ėLؚ!50O$w(p|q=qdTª<*"uAɏqv(/V 5ye_~س|PA"dqeŏ/nl:T=. x1S;"{* = ׹P dYȅ1=TFn7:9`o퐨 H2 y_%]ȌU}宐oE-[ev3m~TגsĀ-ڶ}0%&c!Rez;TO)LtQZ|5+yWTje 2;1c$3'c?9OX ́NWM.1ѿ3wNٿ?{m'Ͼ:Sz7tVs \f1}FhSbŇxh!T$oOL!5Фd- [tG dgl1e<烾ڴ%bݞUP79a z 8R{Ƶr|cTT;S)7UO 8wm=4Em BQρ+И54`q> stream xV[oH~Ẉ-\=v>)tI&w* `Sch_ga;KzGCA8dC,Pr<PʤWYN+E$rzHB + 8Ìѧd0N|ycs W HBc2nV뛲XWY䖱᪗fE vDCKrt%\w+坌O@w<,!B*ݱ~결iX+.|1ndyqDr,El7)Y\;VE qj7p~?Gӱ=D^$vĆY~ ^s ^ݙ3"OeZVvV̬jcʻ+x&DPZKn`c̜fgo-қ}5Q9 U(hՋ9!8Y;w[4uh! /k' k #,!˘wK>6\#ipe+;V&}:wŽ7m Z6s<+ˏ;w07rKyՙ0N&!mxӤ.cTN蘪]PӕzhE՛_׸eBySgǃ?GxIr1v^) endstream endobj 2 0 obj << /Type /ObjStm /N 100 /First 791 /Length 1527 /Filter /FlateDecode >> stream xYnH+14{݁ <` b03^hCI4O=RvdѲSjE4)ā#1>(Y.֢!ÍHm& q|<gpBDX%IHK& @$)Kd)X06(9!6A+j2EQGdt%8[ ĬHd>sEdflF瀴93hY (D*lEw%!:hPDtL vќA1¤ eEF 0鵉 ƛ,@wFLAJfx؅I B4<\()H S`d3~,5ȅvH3VDVF`0.BЩ0 B 0`&0T(I!3:ɤAS\~EN;I<2(`ȅ(2 FW #툁([#*O>HbTOyMo>MzԽl(F^\+oh~wqU^Ϸ7m/r1Vrӟz\../Z9g }*Ѐjv#<&b4N ǣqZd>V6oE&P[ gehz}7Mxm^/̕3w3Dkk{{ɷ.[/xq5.LS ،OAm/3ye /TptT?**ēPj bBK5o275;iYrP#R>/3&zZ 4]ۢ05v $Že֋M*`]T :TVIl7U~tZ 3dC QE+*ڶpm"E+#r[(EِU'E|_ϮYC֜/ Q d Il0sB;z~f'=ڤu>ke|~?$ Ee'(NYn,lV2v$:^HF]4Ay}UaI-H핉nc O@MbN%$1;V=0fτbwb׃GJ xjxvIn7*qCE+ $[vS@(l_j:TxTlB3VWS8l֩| ϊ͛+6fvI8XrXmAp㸺yJtg%O+{ϻ+0GMMi %{䗀-/55m S1QΡ1)uz[koCjyR1 endstream endobj 150 0 obj << /Length 750 /Filter /FlateDecode >> stream xV]o0}Wc[&]: 4}H!I]І6T:E`\_sQcD~< ]I4G@Oq0p}D H@Q8.`s@ gʼlpP7r.tw#"tp/;,T˺ O`Q2@jw 7]Q湽:*!d?;ہ4^?PO|ws&An$u-1f?긚z,djj$і#; z@=fomrbBFp qx6L'OERKp=RșX Leuɗ*F?4n 1E1+(Jf0YࣻmT\@@c0En(hWrlJa%b2NY$AJ1T &ISF1Qa4|fv!ɱpD=z*ԉR(Γt sȫ(_g!4Qfw7xàUxDAd<\S6*  endstream endobj 165 0 obj << /Length1 1835 /Length2 13332 /Length3 0 /Length 14484 /Filter /FlateDecode >> stream xڍP4Npww @;݂w Np$Kp -}-oLs5梡Pdp48:p $%8\H44Z`7;H4: W"$]@@7-Pnpp 8"z-ʬG+ ?zs??/q{ PÝvMGs0J Y9 yzz]Y]D`7k12@h{4V$5/'x3؁Ao) ;@S^ r+Xf߇`o(v3hnht;X,v 3`G -lW&{>Ws++(v 7W?ݛ˵upt;XX1$/w̛  r̭ v6m ?}_@V`Aw{ `_Fo pt'+fWVӓe{:%$,x,<޷ǿr,vNio \c7,?S*Bɸ+y\w-Pv| ku%,O Vv=F dv3K.ٵX4;H``g?2}{>\4 ]U?:>i!Gf:L~ ;p<M^,o`i6 l_lw=oMI(\7+S ol5ky!ȵYyv$)tK%V_1PMgLЭBac ,JIE|3,|{B.;BOux!dy0{~`'~Y*{11VVi?Bp`J="9!OY 9Qʪܢ|ӏcv{edP%t84(^9OM %Ӯ"o _x%jYE3aH`ZF8[׽Qj!)Mketq:7eMUb?Lhdox~{FԘ6ƤzR·JaAe/uV L >5hƷJ{U6zoOSjmL].2rJu`(U%iiԏkLtYdlfM=4ҎjZrBC#h;mC鷥 SjxwWWțJ/[k*MweʅP1 $iFDfMC}n^mɶ} kK-"XY@ #גixR68z(kR-~w׶"S l6~QQsNkOoӾ9j`,Hc'USK>xMLz}vtjb\t.+cįGVS=I )b]" rA}',PgC(n6\C;>~0o"AGM,{ot#RG满mcFg-O|0pP0p=äQ*DeP>Q܋>RM3\WImz bSUbU3.X],Z:uw&r1 l;x'X0^C$^H0(K=e%{v /ZAIk5BTaN¥vr?zwq*s\\xaXص97BNzrx2|!3|&eXj r5ٴN~И gAn鸱JACMiURѱF-y}ضSZX nR%0L21u*4&LC~s^6 lxCQ]dԒl݅e蟆b+VG igW| ;=Ry-$'~^ߚl*}&SƋgȐl=7%IH9$3AwƃЕ*: 5 ܭ_ 4uG?Ds 9SI =5\[yz{k L_/Ia3P 0]WۖMf;L G{$G٠`A%?|5* hNDN5A\5 AvGu5Sy7y&26 J,IN6d&~ eZVCUi\>t9z-z>e\xHѺc5>+q ؼ*.r lh1Mj`K_ރrVIr#mt*#ɽw pmHvy>Q y81JNU)Qq@2<}/">֏4PLV}M?m' `I*L|aOoi jL B*HH#J7FiORdaEyO_cZWxpCa)O]saC>b~drLA=w. X4w5BcRKpm , 9[tYQ ^fs8tꈣ3`Oi<(J }_P~!TD6wb\.lNͳ؏b'uKus7hWx !jH)vJw19[Qˎ6 i<@zGxKpӰ͈y/p^D_f's8i9neɴIS5L螘WY/،C3Q Fl''bXٹTC=wY,-Jh? z`M[TtXcc~O,\L6_Ē"vV] x1!7/> v^)? wC{׵29!̡rv|R0o/W?ܓ#; Ũ;UBZ%$z TxohՂk&vO—/{SP"?<Cf@t3BiNiVWgVehLZu?Fg0YFP5&r2 M]d\XHN,ޜvS7%T4^aDСz4*C^Ĩtk2cTgҸ׆0CV8R~wimU%)ˬ=Wacj!GZ$dc{Ƕ/z9jKQ_8EG_!{%Cϸc< 6+@\ 98j{3=`GHs\V4u zFZ͏/H4՟Qy`IԦ,󷹓Q`@&Pnb_WKM>gNDM$?OjDh({%][﨓>Spn\AUtrb3֒[ㆳ"~Vm DÇAy{}vey})5>0:B޿n$qpr&&`2[Sj) Rcs}Bz#93rGm\rx#a jwiT_4Z͵H!s[-Viz)hư*U:Gx~}&\~ȥ҉U)^zq4Jm_9-r1 "#C*6|_Pla$ؼ$4uq%ÏMWY󗬘'csXaI߰*᯸`LZR -zn9DaTÏa!0J&!z344ۦ'Nl~i"|_z<,t6Ipthz|'&X҈[wQG5LmeY Qs>{Xcqw>L~&.FҲI@OVeߍ^<ؚV̪0b-v.5jWeEE :Z/Ƈ5_L9cg"b`g|5Q,7W?ygr(5iU [.Gv52O\x55IR%6EiJ !}Z4"u|VaPh{g54]: 롬tF37[Y׽<ȸHrr{|Y@ JjؚOlZ55Rg3Fd3R<'f b&&p Hd7]/]e 2m8v@\X;i}:He:2/JC !x{O_ X R2jza(_q[aly|EȽ#)!\t5jRQMHo9׭:$+zC| "ʉmroi;BErć)̜2M{nr 7=]ת"xp؂.)j$%Uξ_X@'eDQQR96"5tjGAQDnDWR=2ݗ9ẓ]v&Z*Z#Wū*/6>QwB?vwu *B9T3[GUfP2ͤ{O0X-yN q&6* EFϿʃ9) %wM"wef'8}zJ 109BcqG-!Ƣ Ұ }{jW°d Ges>Fnի }o,Cȵ[kBϗ+ `季OMm%`-;LNݠg쒢1h= Wp:̪tH YeMǛgRFp.C,_!FCP TIj> (ሖӣ:(]57]3퟈h*&U\S\lsCq$qTd(^IUW=tTʔBxH;kZ|~D/"ڪ ŷQnVVY,)u蔱5gNʧTܫ<;*.t<6ġ> ^) cc>zlQCX"p{D4jT 8.h^J߽EL%4.1gLډzfD7iiQ޷3Zgy QD($![[/ə؇n",ͥy@dFMz SDPַqP,],9Rf ^Fm-H$ C& i),5KUgx6Ζ7Dһoʃ[ΉKr֎:afm*v0H(~n=K!u)e8 ,%Ldt!-"||/GVPZĔS^'凈TGI/XE =se?>4>ųwr3Ca1F|죛#u@Wz#`>֠-OYY+mV)^˲-Oi,'Y 22׃g߼-w,)ӑǰRqX;ϡq՜h\jO=}swx#hA76{8tž,?L̐h:dޱIu߿ G짩m1~vʁj4$ib>5#VJC&4RFf~K#NlvNZ紬ʶ8S"7黛Om$D<_+AD$宩i:SI./Kug2MYER R`ZV,3vCA⾰V/ R1_]RʹZttFqG/;d1[qĕi*{y$/Y{pX xض[~|C'|DW..Jm=IֆFh[1Qu8򭓪{YdVw [1_a=S/7 ]:Iԇ7dVJuMrm>JPYRsa '˄)  NM+q(@}܎>+_& >n^ùRrV˙e7h"SiTJo?qDl<˖ݧ$SP(hzdI\MR[Kf-T2;43Pe2׶!c͇kuW-ZeѼ*¤},ԏ *93qdG= sb<`TZm]n]:r!(zꖓG2҂O( 2!PI2;GI* 8򺉵4Ƽ#4b<0:`/mȶr NiI_'L_ij47Uh3o$94Ŝ Y-IO#Ӯ{@[ ،Ya|tM?i([cI1M)V0x`Ϯ3ݬqn ɠ&S8x6w=~ocD%*H9!o7?LB ʻI<2=Ox~@7L+h ZP(&Fs{Հ&DȯnJ.-{Ƚm,Gx7[[_%LRK鸄r*vE2&2Jq8=ȡ`wD_;9Wܗyv@4DlV&TLg$Ψ*WՍӂ3NإiObo@%_OȮCpu ۫ iJƠT5%1y[㳴7Cl͵cM'zEvsop/d쌓oJ1BI FR tTqB<ɂ>A `K2U Px s车YOXՙQp\ZU>jSg0>p0y2~kIVb]mDvW;;f3:F'O҆Q&bq4\Sڌ=h,% $-Lx٪>o*4lFZ*bi$D#EI0&BF۫C}Q^Iz) aub}[ S&? trԯ2#H o-kΗZ1O &Z :8ڮsOӚTN>?Rk-\PwqP~iΞj ÉXo @E5T=4=dzC"b7$PY\To]; aAqs~dŢeSᔜtf ms ZC*l@3=mه ]x|1ʲbFULfxפ/?Z}:` ͐-Նb*N #Vc@І ]!#3aؼ|dKFB^eF2_E5a.=ڕ&Eed7_~* fEY@RG>3*ك/QqB_%ϵ0H >]3$#ݔ`6pRLҪ9v8Q7,#Q=[>k#4{/,Q-0^ꟌǬR!L? ;*@EO&͇\21VcUd9DP)˩h.3$CUhwq.F BQ%'Jy\}]iǬj~}qmf+,Qݲ0I [}HZVC!>k'*:&wUH gEe>P.宸K6Ծv\+#lU&o]5ъ&u`H G[ǝf$)l%K ֦nig<HiQbO>7- [y Bc5Z`tRlyT{ -x6$ʇ2`t>\*!^+N.pKL$q2'ͽ<9m` alE|ޗYE@yf&.8h ~8Tju_%Euf3p}\ԧ ZVJ )$J!A&"54uZvD=E0 6/'2VMz/h"Ui̚\_§/{}N֮ Olfd;i[_!JF`b5q~t1%s}MLDSgU)p_57@nBCU#8<u`:&/#jGiqvUڤJ"cn a2itΧH}kȩ'W4qs}|p:?^m\jbu45Bh43P)[ju]G:v&!E}c˕!QF+F(A``&Uȥ̜%"'GG;5JT;ou~{./wႲN\ģ7 )XqXO`xCjU4kQ$O}{_& 7&:ĚaIxHLqT9) e!jÚjZ} 6*>UϳЮ+d( xdPf2#^M=bMsVEW0/ \zG!zpJ,$$ǵtK!>8Kʼ4(Bwf,}CsJw57b! %iTs\ضa?Ef64DpHLEoE!J.ER%ë+ mM+$qhUtE("iv[)`IfAbقkgzyH`TrCm@ R;*3H;X<9_%]om^"q4߯#|f!ͲzKk_ANŎPqy I+)ɞ:;Z6LF3Zw&B6F b=鮜#Z3G~~"&>WR1("X;Sf@ E+9heW> stream xڍP n5 2-$x܂wwd}Nޚ*fuuLEI$`fbcfH(백XY9YYّ4ȑ@.VbH8W$JTtȹ8ll<vVV@7+3"3@D%lea ~ZS:_1;)[^#mV YXݙv.tw+%@ rv~ Pځ) aiBt^V {WW{335:@]V7OslluoGVMMVs+[@YZf~.@7-W@*Z?:[9]]lk$@`IZ9L_;{[ٛ.ՑE$+UGfXYYy 'Ԓw OG_J|e|A_H.@7  0YX#*_:~lߟ2|03{[?EZBRM[្wx3qqعll|.VQZ[Y{s?)3,})9N.@g XXM_LMo/3vKO7G:-PtxKfW' h"m2SZ=.5/=H`bce?2y>\^g/uy7-cHf{]G3_S `aw^;8#>Qno_u T/}eA?NhA\"W?bXL^umwX,?|WA!&iFVۿ;:b/ZտklIl5yBWcQ&G⶷=sW^_V'Wt._wXk?1_לl W7_S;Շku6<{Uz7uu~-=p@ )¬@uMHm;֘Ֆv*s=|2]UkoKRWOu-I> j[H}? 3in<9h@7CvQ8aݺx RݮG~,dь6,5ɜ'3 czO_]Oafx!K`@=([cZ.`w"$'MÛ.'՜hQYMֹ X20qD DX:zv>fN-Oq>jWTg`> {xD۷!W"p)sy}|~4u/ &`noQ2YGă!6KlGY}/6D1P#իr^h/ߕLEDQ4\CJAr0yUz3M0EF!Bjx*/)y4M7*$cuœ*}&dKƏCPD(nK[YVkDi{8[4i1s[c b0ƛXOsuϢ_&koFs%qVYRruSr, [mV2*ol"Fd*Ҥlz];^ז*? |+)Q8-%nJiӃ0#ӹNBN1x=iew-K䟫4̓G-՚ |~iP3DAbc^8$k`gq:Հ\%f~&-Paqy(6 Z2vfq4Syu0#K`'"^{>Z19XD|AQG)h#Nz"ҤoHP>zݡM-%#T7Vhbk`Xv>2d~NX9+JwCrN]Qlѝr@xKEHT^M* c<$لd,?r8%{nS%Jo D*$}ܧCs>r6$u/~1o I NpF>9 k9< |#d݁x(j1TfvX՜ү~ *( ?/!>IɊr"kx*OQ( ɒB>i= [TDyq{Od11Gveܝ1h *:ë^&h_L'o|_͕ї+JuLuvgsWfh [\wGS(+|AL:\\m̮69M\“po5aCE#nq[P`N/̥Y E!F>:`GrPW^Axe+XҜ9*@dIhb TF:@5|uP )$0A"0ySt![ICgE1`$ 73KÔ$}ᮨ_)":JRw خx^EP:pA%h}xׅpv8ÞEw?*ѦsMcE<4rմ '$l*nmsT!T؎[L+VCɗX8{*SxXx˅vԨ"SE!_XYvaIUek̢xQR_Zv޼\)XweRKCi,~Ypk yοv/rTiD_(^ԽѷP~ٿ{=k6w򾓂0.9cCLrfb=\YTN$UWxR5dQ0l 3Tea#.!9>CXD!(F̮ 3n  EЇ 'A(&U% ;b&6f(:FEY f8`kb,T0po7lj ZdX$o, ʜRmRzlma1mO*7-nV{ ;Of/P߆O0\V2 AwS'H[@/"XKKޡ9[2ٳY5}e.m݅IHK7mK#cD .pd|)}Pn~95ظҜg`]ZeCB92R " *, Ω4rͫ4txY CMq4a>0X*q'FelvrK*`q޺a|uX{SO6giXIRp. 5QoU3R.k =Jh֧hs|ƣN)#Tcncޖ',#;꾓Gr^.a3 fVj2 &-)=z>'C׃ùWa S[^ֽnB AõC$d 4T˜)a]uc[p |w{@|QtmIRԎa9+}y]uuF}}᮪Ϡ)ԄKdΞqZ^\HMRN[R(^QKO f 9J;( )s>p?Mb]1 կ?dcW^{@3+:/jH)3,Q0:B܁nx)eb+3 zôܡYK۴9nk/4/ZY20Z"oӸBwd'm7ZҾl(ftT^ %1i 8zX $۬#PJ m`/,O|KN lMMy;x2OzrEm| #>$,F`|=''ѪQUnjh>5޷M#[ޗƵđm٦E{$UNGWVa~z53} k;a辥#g6tugx{%w]UlTlY[yD 7t_k x]4 x$tS;(d6Ŵz+fud􁮫?.M6RJu'(EVe7P]LX @jP[~Wع_c6ZĿD=y/?0[&Az8O~8`s_}۬# Q(4tjmkZgP(-XO1D g>;ZpIYX|+*+a1|6$k|0Sb3pH5ܫWxTؚ¸k6npzT9=ߵL(BfFc ͼS4GG?# ~ SUNAJO$n7u#FQYQ:5!{BZ5w?J=7QRwl{ѭ)]3ߪ`WPt5~f[򇰅z ď DJ|2~B v`.\X+m R'ԋ3_eӏm|I*dy?auWOř)eנo-a݊f;Gi+uhԆ- WF&=d̚ jʯ8%0o;vUӖdq2Ӗᮨd7)ņᄕ)9arH$GKX$KE#')?9u\ 716]>ORkml\l <7C$(řS#7Yduk M_=,K+ka>T9 ⊸^o'jS\l6~DˠLŽ\t6wIwaႚŕ N`bho0C ˲S~v\<cx;HK̮dEUqbXd:={hN!`"`}Q6&MDcL͝?Sj54rhm ҳBW'xrJ1I/gI˅=-(å\RJ(0trZXPbW@\Y|Hݣ8_,/l ts*̨Šv0mg7w!Ta530$Hm8\~9؄WfcikrUҼVF| Iѐ! \Bv\nX'›쎿^[*Sk\l9YE/9dcN$(̀"ބ!+/+-v6U/d]m/>x} zѳR$zg 'dH< C+vrJ.\M 䳂]%>Y;yr[ }M2-&1 qIAT!S.sL/Ls@˶yKwrB۽Sb\BZTՒR"OhL(JV@;)l]a{Qui8 ջ]+ll6^U#LYQй u4{m_-2P8YD"G>?G"+t]:J:gZf HEJrVncv;#>"h;;y'Yq\QtWF&>h߹7,M-3idfTRi,+Ɓ'>ɞpznZU22ymdg>-NgzXtL+.#|bjnO#ڹ^#Hq)#=W@|gN!4gxͣ{)zkD_;}R;A]j aapGep\gPTOJh'`" ))![f<\KBby_6PjXG}4g ;뮋_RJ To}<9y.e&&hV}":U$QCsQ]$J!ߠ3*dYĨՎ,G^f~nܨ<dϏjG!R^2#ۢ6zC_ аŕ["iã{G% nC[TYfjx mo$PRTokP;wO// tQJXO$ 8m"~@@.9)߬dK HTpEܙ9+P B.:@MRѨ 4Fx 4Kf1)򇬸@X{ľZJk&0~ d_oZ~GoO?2Q5MȦwYly(Tr_uvqGN.}U!sh`a.{rj6ɱ<[̑(eMlQV Ҁ81W=w[_iJ}dxFժqz㬅 4Nkv:+DȲ]35ZZ9uԢ, 2`%\ojIas?mUG9ƓIM/FPs9bq"LӍ7@r4JqS͋@MzP#~;BxE嚌=z>?Wت/a-XV[(knFŅ@2 o눉Z@€9z Sbb=-k @T Ǿ#M3*&+ t "شI-Pϲ(ީ?T-Garw"N LwfQ8Nxۣ/'0;h4xBaoҳzD7L[safZN>4)g;W8Ҫ]6S],}pl :Z[C?hO]{~Wd\7)50ŞH{;q9m",?$oz#.?4e7y^׎VDHc1|rP40]tW9[ddD׺mfiX|3&k<SS>vʔ`@צހܡwڍDeK|<0#qǫ2PÎ:Bؕ#)^-yj T[v;}7sD0Ms[ۑcUt!!N\o8xDYPUY k/;1W5Jt˨ޖ1.S:~PIXKyBBu\v';~:ߦ0 <- ց6JM<&x{[?V$b4~:\&:!LTE( qɯ|soD$ʹHw]<9T%'w,M&z9>d*2e_د, L[*MOcKYA2eg!fA8@$8|_-5Pz麢/ b*nxmW϶:L8I,Ie"g܉0j84.ARXmr{tv_WrArI^7olH5^B[wiRctQh_[2rtt|9np0y0wUƜifg< cB3(I>{JeBQq _ Gmn+ O9/ =nGA:hcg"zp}7`qp[ $.YuēȘh u Dz僱]M2s7|f܈QTK؅ms vRNVnBXT <$.˴߃+1m'O-Gp|ɐbI;\:*rzlⳡ/Gc^˦^; <`KG|k/sH LM"A:O - «l3b)[jԆ̟m( aՆCw7|aؒMt蝺%qz ĄOhR`( i.Go1cT͏ :끂Ϻ0۝prƕٷdZf)Jl[2k5 wp#c$FG}Q[o;yڑ_Gd1EG8ޯ?߭*T>eZ>BIpk-'sYB^U jLVnة[!!Yi%&6`:Ul3]\|T5IM7a)d$sJ$R}xM7~B%HnQa(%~)bf\\K~QMvV/Qྔ%)L%sxYSjH7q`[^܍OV;A줱\w_̇| Nnb/F44-Z4ԡ)H=XpSqM]۶"xՎf3ƤjcʤHЌIꇊ#"5ͮ"%&X <,=o tjfS/z |7aӹNR@zbtں4cA!|s؞q\;QW ["h='UxM[gq6m[3d6cq D{A^xxx G[K˘A")0 ;HƐ[odyj~Wf jdTZ@'>7D-Q'-]E|qa^֮}ӣ&,wѲ[B}9;7J0\ϕXy F7MĘE4βPG< j=0?5>@x$kٜMClC7Btem*+ bEmj*ws‡{7 N@'*}WاMG<5YrҸ0g9æc,c. g@뺫iJIe/Ρ{m34*:њd"\A:Q\!h`<@59E^ϐIvpCn[R f(H10=_uc1Y"İm EoM7w*&*'((] mpcNenbhV5'ɱ7ӟĄ/FoV*I~jji 2h\e2ҍ-lَBAԟ>>##F<с>e (~@kw,"5E#Ob+0~%Kt!7 ?y7o/\n9xۏ8= ֌[cVI[ z٣bͳ":C%{}oG8;xE)^MKRh~2p8́r¯lgkKB7QוIS243з ^,eSUc?\zJ>[x1`%*@@8Cia }iȓ;'uP8:!d-!S# HH8S~IU8Me{b__)A:@.(FR*棴EšnBe2OEx=LD刁S'Dq~!gRIַYp%:%y'^04UD.+^٬W+9~@a O[ϲ} MݧuBmx`yyt[GPG^xH}I~LIy('`7l)>ǚ%%o,?I4hh!jG B;Y˅HUKU% |,z>㗌DE7)ApFmO9U\NzJڹ!L9'0 oj_][@fHήՄ>8sh$U8c "4se^1tmTU?&1}7͈VC|C(h84Vi<\>:dUQG2 m_ t}XqG}zh@2jn댇Sb0x[sk?F+IbcQNP%R!@"S,ZI0`߃6ztD#+5WI;ke`UŸ.qza$( Bܻ,H^X8֬a5FK45޼`*Ů" s)B¦d()UI%S\AJ㭲'c JUlƱBȸ3T!չ̰ih?z 0]JFHzYKu # :%o:'GcW*UdHk$O"k/… ؟*U8-pT"%XH,g6;?)=km#~-2 ԱlĞT E._>o1O7>݂$ endstream endobj 169 0 obj << /Length1 1851 /Length2 11690 /Length3 0 /Length 12853 /Filter /FlateDecode >> stream xڍP[  0hpw 083Cpww]r^9ޚguݽ  $ ;2 $%$ll,ll(44֠:Ph>, `P$A@W$䝬vv^66{$A(4[7{ 3sׅ32[E9uEc5@ blrttB掎...,@0= r;L(m@nn/h-A`' <@MNY_&wtW0bc Y GiGWG&lv@W_b*knсOҼDbc;:Odn9_+0_hj61ӈ- $'oҫ o@Pwdc~b 0}mea zAp:N /:L,F 3 0_ W [t^`L `k2:zW\ `0spxy^Gh:*6SFfˀCBdJWt] ?YKv@ohcaoʫ|_GA:KkA&N6+| 1Adlhl/ˮgެ- eş+|Cflz8 _.9u0u)1qp@7דEܯBxR_!!v{??/Uo `7*x,JE|VkNkOEY#~kb~ 9^M,@ ko;Z?kV-_|-o:ׅ }}`ڷ@Q뜲>_# _ϟkN˻GNk_E Qf!Ƃ5mUb$.ۣB'ɷẒy{& 6b?H/tKlWXUK^uL.gFn=r =qr *[3QLоJ4 'Y 绚8Z"i^6?:Tul6W$|iBAJK%z`2V7iG)u#`[I.O9菙·)F28&=%L8۞ :çOz"Rߎ.AkɃup1I wR8#UDl)X]@i]&̅0mulw-.:A0pI,X w?‚HBw']z-ʜVpqM߁t~+"^(r/ e?#ؗ3R]n,D}-@d-\lت:oZ~ Y$o5*R_D?e3 c$pz6 /Rp?a}ce3$O~;sb}kmm\6y3%8hcL0?|(uJ.7'S-t\7|)D˶nNNUCAQzL4U(e,eNzKN1O{~4}R02^Y|M Kr ,Bxc.-kIdμSeΚZ;[-w؛ʹ6XS3Lrnؐ-~N,&LJ 0kj*p ,>I| 0Rt635S~F$֎ۆTʇ1):[Ӊ*M+9rd M4?qILqk&"iϞ/q(¨Mk9"]zo+HkI:TCAX{DXF( dx"b Jg@J~c8^lm8$HupS0pG6z][b* ʕD]C=y%F.A}EF߮*fM(_#Y" BE1Or /L i_Ta4ED&\' 6 xT긖Bq_IRUZJ/>9߈UP}( ZvيF@IqD~iT ,*j̷̄2젷ǀGKQ2hFk,8/Md7FÞyF36⿄d'z3 3X5t+ZQ)Yh ]T>y|_YdH$}wgi̾i7Q|/~#$wOcJGL*{UW(.}j8d%"VLh{_BuXsJ13V;a<OiV $So1Q~~f䭶y*á[AT37vnJgyT+061婾=%gjOC?CF}cn`=38,ITp{UFMj1򑼻HqmKn9}=7%)~WޙH$Y>Ws"lTd{vߚd/#/Swbm[me Y[*a%O|qO)' .) ā~MA>_UQ. ;Y6xZQ|9NnW8 #Slp!V?4+L̏ jF6LwOL&#}J:9j\)*Tmo֗#a:M>>s?{v( \^;vm~58Mlڧ5p㦎 ~fs ۱NOBT9bP-Q@\e^4k?lcfZKdp;eCd*S5">~imSpKO$sFR! sf6_HB ).8rk T=@Qf4i)XȲV;kU]> H˧l[]n{aI|rV w 8M7. #*rzlaևT;'Igtt&9Kw-wJӺ<2?9`f8>r͇w 9-R2K~ y*'m vI{ck™ȳ= %8ܿCiP0{L:C&۰$T: ym./ApDežԌTc9e30/wXJ 9(_'q{8!] ^.19cm+m[\zT ]shW/ASVy 'rϟMRlJa55>/GY !ӻnh |NcEX⒛䷫Uuav윝X!}RKah,F͹yjuw:cM}}A{-0l>!}5@jYWj lb7e Z97m)ݴd{bLAwOԵ}upӐwB]0=/@LX|TxŻj"Ff=mf]!{]"*ѕ( .cs$ 䧬J+]sQ_7fٸSitkI Yu|bԙtdu3#u?jGz7I8-תh[_"tMrc<13ѵv-~^?g.qwf.6=x䐊ϭJD=Ai,jB9)t+ W.Eبg-&"7itPY$yyBR)O&k@/ _PQ׌$N^RpZ&=̫ݘ0,h49۾!;jU$#ߧB]0ƽQH {L.aH;L'xL4[$0ӟ1u|v&jC5]>&h6+hJgj^҂ 0N 0yQPnĜRŦ!J-`|9-x9q:a08q!Եl)*76f@ǖ>d4ƈfX:9nћ˖SFZֳOiM[,ePJʊqZ7_:"زg͜ 5o`l'V(wqm [ܤI xO(%IW8nSwXoïUAb/Ccz[hP'EϜ87Wћy7R}@2qnY^rh)Hlyݳm˅fTw`&~xܘ~yXX-([3PF?Q{:XVQ,%A{zoԔGY+ItG[KEv=$8[ܴqo=+#jbV2KJ&XbB޴%jZTkK7$OW$D;"jї+wH7 ɘq3ɧ \C1bߞh/ uP%)q N ҃45ٴ;(DU/amRTO3diu x?M4? 7Qvٓqe,F-qƖ`Ve ߒD2jqsN%^UGÖXfoTP5 bF)E GIA< Yͮ Y Cz)йYf ^8G+ + f5k^ SyrY,Sv:+IJo]?sTH<]#z3,읬 &uAcd#rDN/ uIFTIxmo5"}[H;$~$&+3B ):Q~ݮM=x}WnYH&:+%Xl/htoG/ qU]#Q3̩&W: 46?бʜ+%5~Rk8CIMSѧf4uo41YVݯg+ vt6 F ^8.C# ÷_CЎB'J|ij ?'lqz| Gcjq14(h[|22 7Eֻ}N5< Aӄ8̚n/- R/<*cz[$IMf- ?6QHDZ95MQ{_` ۍRb0H"'sFvLBVE}G\S&bU =5jwì@i;tojRG0Pi0<sQ͠2F4ZïE1_o`ULkb;MlBQC>jYiL~ @bbrx=j t+ȋjhh3.Sm-o⑱gwgeV Q}* s}|V.jN*-BLId\v3-ΛOHtK$3s4d!J[@:CxG>Xk̎l°$۪D9Rsp.6ni4*,YvZ!M~bo$C"rrK>Ɯ%}7z\0m^JN~Lf1Z'_IK`Лx")F M` bimΧl,U}Xfp~ɤ筷aT0.FPdi̚KZ,PHSd.ԉRLnt Kuarj~~Xmj{jIDcAg#y"D۾{o g|HywZo"ێ3䕩`K9EF^9%_Qu=.vͨA&e '? ժȱj$V ʬ Î$Q–ڲ!*ՙ_R_M+fp>q-kwm0/c6 }P#KRk|%!u;:Ե1[E.\߻lO}݄@?G=x=y6AiVR l Ѳ2O3{ "`w/\,C*1wKсD ԯyJ>t:MmIшFM HxI=Å o,qWͲznԨ"VJ*0 4[lQx>A2 :N9x&&\0,\~kŭ%[Agj֨lk ~܀̌T~qB^.KU1XE3r!-sh I/\ ZpB[Ie2çr>qQ,Yx?5@ޞ\EwVsʛKAu^qZJ޴b򏆚>2ϫQ4?;FtjW K>4<1[&("r_tvPfGNh qwig%ʈmK~0^; 0flo%nY/yIC?[ڧxMpc,7XB-Kא% 2VRw ڢkA 1pXW"sIXFf F@^Ͱ -ߚE*t&L%dXx*}P4ܬQɒ?SأV/E,2a0vhb!0x׎jݭI/֬/w49Om;ʵi2,e#_Z쥈A~,GZeꏠ*/6}ʏζ0E1cM}5h5;C{7ڔY3lrTľ`듧hFxҽ'j}})~A0TҊ\QɊoؼYD~q.@qc4߾ai滃P4qU]39Kk|;J U}#a*:+YTUWg DÖH>Ӱ\bn5VZmȐXٷ#: k2' "+&!7Z^%K>JP, XQ5D} 29?Kӫ Imձ.}PQ6u4^4}ٮᨹ&Wj͗ Fݧʪ^hDY[ Cg4L{ XhE!Q1V@-tsn)kʸ =1T 1̵wŪ3 K_5Mzi<5pa}e /J]oVNZJdw-.Q(6͡ Z=R!Qeb wӖC [|̮q rBJ<F|_Vcf_ʠ/tcЀ83.sJE~'wtO?#bʜlcUPFp#psLrJ5܁UUf7Dywg`%;"x'ۭws ƽ0fHn*G35L]dJRPԩV3S!hNmmr%sKIEtBld0ȑjt>Nv߉ Nk̺Т,p$T:(>o~:͂wRmw9jy>~+hQ! щ3_g> A%. ~r}C1Иɝljh\ s)q96ֺÄП^ $Y@t ;\n8~wNe.󚔻c㴾Kd"D컄[D;0<sޜq3$y;j-:rS[vokqov/lH @b^~zeXkX6r}?;OCˋpU^@2 /Sf8ޖn@h*㣥}=h/ 8GKe>5ΰ^`bjOYR_kcTT"K{iVR*UwF֙pm5F7 ;rZV qxs6aR냳MT$vTN>1 \Y4ˌ9r[Fk~pKy?8ߨiҬ#8!$4\59NôtYx(| JT`CyR1?R΍M5=X3ˌ~zGzb_4ٍ;Tb'\,tw@?rEi@@(Hd nY͠oX<T}B%M T3s*3Rt¦ea~ Qlo~>?g&qDdh?Q 5XF=8&.⯴cjom'*;^WTBeꀳy-CіH}-KQIݩہU%oqzHwMQsOs>Q{mhśP՛Fý)ɽPh2ILGݒ1|u/ 0 |Bdzm]%8;z˥zFr4;V4qJhu8!Y}$ё "U9rX\i|x!IvXgIoM0!f@،E endstream endobj 171 0 obj << /Length1 1500 /Length2 7172 /Length3 0 /Length 8184 /Filter /FlateDecode >> stream xڍwT[.ҋ(M&*DJ$! H 7RETQ HQQ?z% F.,*/A @ h 4p(CF1}^l`q|PhC0PW쎶x#=== hA 8h(j52@ 3)+`xBPPw0P"Zo?ٿ ࿓!W$ ;a.P ~!.h6@l߭C*zv?mQ0$- vWW(&՟ Ş7:p߿-{vHUWH9@1}!1 u rcgE"{P=Cꋆx@;?H`:TǺG ,Я, C]bCu%]C?#oPA `>v: ?}G:UW؃g?$n ԅa#U2;Rqwq !0?,u1Xh#b7vv0wc X9 *0//7%8z`@aUf}+Ac%}l(VTCn>AQxb/k|XA~#0vf=Eń@_@ GbqXͻD"E8@ȿ` lQ(숿o ڒL!l%CC3zJf4-$)[$jVU,:u~-N5>gUt`I:6{tgf S4RT.Y;>~{>&{rҔk-Ѣe7Ij3h.r@w/듐GQ:Yw4:NH焙9O*(܈ˋ`kI>Fd^/>=;3|n?O;Ij#ǫ8pܶ{ikʼ9!]r珸&M2 eJCM)=`F7͎|}/wt(pκb}o^f*xxXh "|]EHXʷ;Cڢ<[[:8NuT3Lqt}kw' vEWv LUސ '}Q3 ?i' ogdWiP% ٵ=&V$H#X=Mfn:Zﳯ-7C "0BsÄ.۟wQmp׆OzߦAtJյl_ i(-lWf2XPUSXZrT?EݶH+,MMdT]w`wo3\l%F^ I2)3CXyiaEJz s1&]DfԻ(p.=h RX+'PH.qPLuXO }g&.00dBg'\Y9޿e~|=Whӭ9SY'u#NOco@Ex;7f[Y x!oVƵ/cF]Q=gKo2IRj<^QgɶajqVӷH6 r*ju&[ӡ?~>A(|y0$ϓm0WQWOUYr8V܈5TiVNg"8tSŜ+yII(] 'kF{Au帽.{ղ2qb30FǏV|638(O:ֳui%t4|:h^{ Ўp95Tc_zgBa9ш0!Q? V@EOkЂN5g*C#\cPWr`L;@@M\#uT< ҸTB?ʫ)*t:?dg!UfB%42>6ʌ8S};|{yV<.D43#+ZCu7 >v?ʤޠw~}ϴ]\m ݶNx^3ȂȆOO-ypj]k}yYk@&I}8Y!xœr+nlTwZ- !G>E),N}Ha]ŸOjw& QVtόlF@y}G! K$bt]ؤ"H3?f33cyO8RpKKh61f+܇VP b#[/oWb}"^ZJo;3_0'h|ͱTJ N*ލǢ{fB> kX. ) yUMps{yXL YE08ʘ7> vYHRڒhJ+_S:lOs.^98{R hU$ocaD1>uRy\W2`{(2Bd 1Wy9v:w2ǒ:KGZUKn&ϯ]h}_:^py$ҨT&DH<][=0^X"Hb2|ʨo;zӬ-)5mݡL :/ ڻz=Ji c 鶵.?A\3xejayrdp|\ýt{H vaqx9](fJo}5&kkaU^JǏ5٭01ğrh?TÉog=TBc8 ?W{OyQXk3Qǻ8bdc ?[y;f7Om3”zG02\7Wk6mw59Go֕O!' RpXhOS$9O z>A7e{oi2K zaۯaghWqKQhWo/c[GT'97eo SsWc2䴒!/7}:k1tI+1%#^|ZYi<%!SEMxyV{1iHPr\M[2X"YM 9`daRPW-+>hkB^EE*M[U 2[̢#UkkGfvŽAK#!w*<:cZ.)qd3O'7Djae]:_P]<(>>`mc D 3X "{:~/bQ7;?$&ROm wE*@џfҚ֔H&I^t>9rVAA ';>DqV[ZrMsNֳ)X~_!5 iqC;t<͢l!$*&}evǪ 匕QE9ZSq6ڸzHKMes)g"kKSrтn.e>k6I Sw~Rlwbygn٫[QYz 4"0L'o|5[p.yq~v9Im:$[ V# e?ơ(ʷA~& _qm,mzȲQʬaH"8O.gn 3s6f_n>Wu8}rTiN 'A?2Ls76f@M]y_o+%kGIJwtiF}DMiLCj[h~i@ +14 1=\ :P\Pq$8e\ [ X5dO649x QIͧc^SHOfFOByp PcyFb}$: rs\wDR?1%.6tɟGMcÐb +yHeϡܼ1Ze[*iíRoRLvzHDf)oπqm[i5K:zk.T2vWټD2II}`Du^l8[sp9eAП(k>jZېUC>~zg{BAAՁ#|FBq#Y%)]싢o/'U}ZR}?@ٝLӜeȾ}%F+ fm/m-OK!sb=$9IoFO")M:}3=p*qcIF D;0umCPO,d1ZbcuHw,Kn)TR1$i^m}1K6).xkuG>"['e]iDISQ]'U10J/pRf:\MJ&@<)խo>A ~~+~\CAy9 oW_i?M p'12/CZMj~IЁ=к!?ۙOBMݼǥXVȤs<"Uך~͜d/gB$dx BqgMGҢZdA/?X+^ 5*-)&C"1͋C]p^^I^)4m/vTj` B|I k6wO{~.GEVu8f9%L̢{3EZv2QDrgB}3Б{ZH{dHv{mR߆cl)-J;ADZY>`)xgx9 J[ԨP%kYNf8ci":" 8z֯p󌞒}tlmSq{Px<m<]OoiX8Y.4d14F{L,c-V_E|'Èj6~v w!iWUԚUw\ԻōBW{=!-6eфS[Mꭻ? #.Gg"%_SKCZ7m,\8疞,H-b;M̦$QCKD[Jc~*ڎT"b +hqߋK0X;szF0BK/Ik4o TQ1dR&~@!G=ziJřKėA'럕tMݑjjǟ!3?̓8K8#6&c~2w./;Z3b%th[qCƇgB"+x@mg1 ϳ9#wԹ6|&I߿T#al}y+9,>0^ gkV}swnWM''$Z'-7V9|(XQ=V0 í=p:ږM-UivIaaS'|⇾ǯW!Dv_]޾{pb&gC|eJE(>7Zˮ.Knԙi+[Pwɵ>vq;ގp_ gYoNT?oWJ3f/{ZYs*u]{|j&x MD;Aq8(\y^d[)[Lzp!H dI7)QFgqecn$MHPuElv/vU%M ?ͱqK󃼛k"-ZDsRfP(߳h˿}GB|(t/JyA TK9rG,: 91n C0J/](-vZI!\&1L@]&u&|qhI%K\^ՄwE:?]f=Ko\w?_3IPӓیE!Lᴙ\iYfxȅ.IO/ocfoRvCw w`FIHu2OSQ_#G`<1Y (T5&,\~&3;0niԪAEj GI˅H o_i[:f0l-'YtX70s8_Vk*ƥ5nWKzL3<ƾa4VjL!6$bͲh{Uj~@ڗq5]|G$/#5@7𫔶3%Ě:y컀l6|V'roMτ_> stream xڍtT>!RJ4  %]R 0 0CKHK7H7 *t"-] %Z߷fߜgg9>,z<2Hk"恀9 aXXhg_fC; DAEPp@!QCQ0tC= @X䐮>p{6Zm8ܿ2.0w Ѐ`.7;@zH8 h(/!%9^p@{lhB]`:?v= 60&a slSQh܀A_P+G0:@Pg& ;Co+etЛjewE@(y9e@~'wuB ~;8WLE/ʍo=  ?0o_}\a_\&`p; =`~'"@p4fG o. xF^Hkcjhde?> @7 ц*w  .U_ `k:8L- `!? RpvfP_zo&@y3L^4fd7jp"f G8Ys#`Hrflnԍ0iC_v3OCa5x|B;ԇo r30HMgҝ5xm~~_:( QM uSwL"mBkCjdhx?e|(Cw+Y.'dϪU(tA-4er}Nx7&O0ǓNi&`ҋwchEKw?f}?z\jXfk{MyZï+}Gly+.!1fO53[ IzH:zgG* V+$V"{QKI'Wv1C2%qKadP9`gpz8S}nP۩15g&lc2zюU6< |$yA $]; 5Lp*,s)~cEE[~;CiT3##V/fy^ ]NgM{5⨂*(ۤ {Yl_fTb@qDPDʹtn~+ d&AyC@wR^3/biwTRs*,g)*m +a)яX5' 2Y#Mxd44prnS1A ӦVk5 wع<.w]TR 4XhnvyDc`|})$jJMdjxS5SmR[V< =LhP 'cxEm*\kNB k!rPFA[9ΒWq}~ *Wb)bf}#1D}X8YoB鸪Eޭg^b|ȳ#˷QZm5t{4DžRLUQd0l }^&]R$TzD6Aԓ$`q/AtB @AV&jҰ| z\״MSo4>=>VAJk'y ^?jIgʪ|eLu<>.I~O"rʀ|@ճpa~)bqU}gtܶք1[HyH#Ҽ $Z2<̷jc:HʪZ y#\g=XW4H6ϿVIPaȓ`"P4Tw7 5{eXUƇt!ӄyTLS_,)=Bz^۸ТeQ6FMO~bK8JUDv}v-J{5sqWoR,Nccs @+]^S8W 'rfkٰESv(Kq==WP/`/nz$ a^s>l8 PaJ9n]-ԁCMe4u7:L5ʋ#`Dk2KLƒU)9*uy!PA0T ȌßeƇҀ", GQՋЦo('֣WK,,䖊eo+#,P&r-> +;z+qDkLsGg]u%) q6C~a!"{tA%}pcW _\_ξ,PR_xu1Mny!;wp7~vOLf䟹&3F{[EJT^-:ȳIYDasGJc y2pT >L&nIkѳFԳ& GJGP\Etvj\.y "ϿWߍu)l{|vD*]x1UHD?>hfyk $S "zfV8Q9'6NhTv4xxn0s!kFT&ݯrp,ɠ' 8z_?eQKgfvM&_ 哕@vV$ubfi!jB1<dPXc2Wju>{BM'xG-J :o+Uen?ݸSLTFTvK%=I=-hˣHړ4k@Rݙ֜a@Q ڭx7M5Ngko4+K `aX*K=t2VCʳs0y`t+XTzQ&K$K~Sa#,mމ!)097֭U9%¨8PҌ bލl7kȁ.")B,CZI6_F{&V ZxwlaYE]07~^޿ҹ[rdVݧAU'z}6MJOb%NwSkOP>;m l$2u^ێ4JsTzFr #7N/s.eAYYɨRIUZ%zx! &k-g65k#eR'[GC1&Uw(};枞iwWUTEߟD9W-= z1SEȦ;~TRV1Vf19w]aʱL=Z5yzM29"T. qOpۺm8[js! K A3 ׺-)(LDB埂};Q\ }7oIV^CV}4 jVٳ_a}G;[cs0_uQlz(ʾS'RJlB ̆jKgs3'OI~[{0E9]4:n-rLcjy~^ 0O-^,avyVsOb3tZGҷebEI82Smz݊^E;  ᤴ7 !ض/8Ē6QiukH~׵K[]\Z\eq?ɥq$-DHmKw|~ܧ PܝJ޾7UH6tW˴I &v֛9^YvTi"30jbOca~8Zd1=fA{04*tgϭ+CQ\Nw.DS}$7x}S.0s_upzԻr:SuXv}.u _x{i5krkBit?ͶT3su={Lb7JV|C]^H̀̍ Rf,%}ݹdC]nHS8zup=#ح'D4LE{dF`Dl'4| z/0bw`z@qduSY2Bg=^|ԐHboMʽט.!7l;L)S#loV߹r_̝&%| tnKkçj3O(${sd3Owvϗ/~*,{XI6_ġ8kk% WOJڴ(FQs.nA{v E_RTjPג\䧯.ScqK:NEF"3 bR[ƲY=|]KԶ W _u,T`,+Ng&u'o( !;m.;ԌWPTxjoeqy% l؈,HJaX̱}MTa_D 82InI"X63]Rɜ DY8A:f{ސ]ê}UbLvPr6ZoHuijaC?uC%Cq3xhv)}kQ,cioqj֑JhP2Q3Aw2G1C%(n#J*MBv7w:-hɷE^J->'8rdjIZ sWuj7 zZ^k4xn.^oޓswvEoD2QEh71XFŲ`0, Z^q\J":z3ZJe\ך [Ry"n`Uf]G+N Zyfwj}5mh[O{Մ))/WF/#UZDa\"KrbCE ؼpgEhKVRvִ`zud;eB[>{OPp$$xӤlUKE0kSw!ƨr]}>Sv&X,CZ>*'9uGC|J˹㽙`﬽&+qG6-bwL_3 Mً L 댹afN$:r/K0~R RrcK9ͦq[e\rĐOΠoɈDF/hI-Hv]JKNg㊡R :q< "gBZrm}2ր5Db9Cmpl-Ur~{MOq1L2upo=V:.֟%]*Ρ|J9Y[57=O nGԒՖaRQ{E kL%9a]I-[;<☋/^##U9Bo´LS5ZJظW)ڹ9wK)KC"\ 4_4v+jFjJz٣bBT|1UXSe%fB5KLtp[Fx"SЃE GP->(vi,f2UyR2%zZw_{oṞjA hnۖXR6q ܻI!F ܊Y ݕv;aɔGӺEhh~h粚eQڹ(ZxW5%юI!1N> stream xڌP\k-nAwwwwwn% n nw^սE1}oouCNJ/lfosgf`ʫ03XXլ\lÓkxe 4vČ]@vvW3+ ?N<1c7+3<@ O.jdeaJ?*Sj377'_a[@h hjlP7xW*>KFFwwwc[g{' j:%@ tr~7 P0<9@oXAvf@'(9@UZXo:f`f`'`ne(J1x~8ۃ݌lM@Un VO{ΦNV. V6[d4eq;3Q{[[3Ĭ{2}̭7ang  HGft311qr%j̿Š|&V@xogc7 o#xff hae':H 43?O zx1|Eh @`M2NЃQ2O3p]-hLS@w,{k?$cbg2b_. F]_j @uu-=h &凌Yo1h,lLo-We6Vv@%{g t4KZ-ӏDɿT@wJq;S{+0vr22AhF;{ Ԟ/ rF AF? (qALF?( V.A(ʮeW@T P>? iA|(?32;8b #R1w#gGbudb3⟜l%F?T Z  _y9~]A{Ԟ207tO0N2eK,=,vɬAm~MߵhA#jڪAr/5z?jP0N?>O6Ф@ ?a)~=?'*hkߴ`mt׼AQA 5lclT ],b Qw9b f/_y{ { F8P$/ߩ^3uu7 h 4oob5V;8 f*5S#d̠u[mqeֆwmIO>φ *SXpjB{>/>![ː:r!+߻Iz UޫEx.Q ,%3ɚ!q'A;x?{s;3F$@ {Z䭳0Z܅KCy6:E-r"]Z2WDDe%J%ʮmtNn2 NR]Y3"fMaKG 7sՎ[ns/oY$m〖n/m#ݾ%4►+?y2@Ati1PݒC.D t{GOs}.b}m̢.ظs(|r~^k*nF!)o-R+q6| A̓H.q}bMZwwz8R/TJ=@x$~1pH$8`붢B^=Bd8vS3$7.g4I(^8_j"nĶq5Ǻʥ)e}Ŋzqk>4|TCDY% Ij9ܬq'AU>kwazl6M^ [_ =: &xa; j*:^.W ˔ݦ޹EK`vDڱ{g^YhKFP&#tcf !~_Ly^d&O comۗ _-w==idF]L1- Z^H ٱ^SdKzݗrQ&PtH?[*<6{(S!Ll1(HOl5ªp lWLșRiҏ%'1ft+jS1cf eV{B"m[ԂI$K VYODSæ1<0~G0DЉ#P[gygM+|ǘ&qAՓ4m¤d˪.m[D? MCI@5jQC$NSw_:jEu.]YZə V VQgD dyRAT=T1F*յrn ۍ[p$ڈ|7o(d'd6八>iX31SLHS3V'O;hZ> X̊u11VȠaEU1O|jïǿ!D"(+qgM#0ֆƢ;kd*f|.e˃123v{QdlWYlWB7컪By|l/\Xr'Ȣ`7oQdrVI‹6l87$@F'af_z޻ߔ#ЅgNOeʮp] ).rydAu]恩L"[5$CBƭρAhYMmՈ6|hsY%ק"b@"blأ0wA;+|I OwU?>1Zn/}>=*ߙWj%Z/?"]X?4ǰ!hYᔂbx}bMyEX^.% aO Fl8#_"kx6ߕ*gš.cxߩR"@Y axTS1IaTv-Q<7/k(sV} cBtQNԤ*m~s!pBe B&E~y$$نb 8h. f)R:SoC0E#E;x\vV{t&WH)_diTZC* j yTW9Lβ\~7OӘ -Y67K U6 *>E <,&e䱒#<9_S7KM/EJ )rz%0|jG+èyY0[LHU" # fƅ%QWe\%Lٱs1CmJ\qd2!:iܗu=%G6dY j>ԻY"-MrAbogQRocDMQ_/dZꯐ“-+RR0=/D煠׏ *,tʆz4aȰC{My8'ҟF v?X}l (mr_7wnfzFN?Èפ; .Z+~4j>vDr\!sLYJv75ue#~Y՟zpuNW%zϊG2bhOjCb!ƷWI,J׃>zI͋> )=8_n]`H^8?Db<ԶZXq7;l1dgXCV'_>0gܼQ 2Qn.x>p&a#j̋W64HJfo\b.~z=3u.ILvϼ܂ے౴\_Lh`UR}jGL\8h]ʵ2gusdM @'.fٌJ* I<z͸prk[w Vu[67OMXlb8I1Xw #`p'4U[5 \Iti%aYDO{v mK~Da&F%`ׇAp#{!<"eٞSOFyhCH5(FFų zO ? yY]`Z =D{;l~kdG\c#Su<%вȁ^nb LH`PJc}ع\G'DRPڟBIbJ:,,ƌwb]$rzѵ=W[+'!i: ,nX{J3. '_3S]!%&Nr P^IgCV sz1^?8<}ֺN4/(˜zxyE_*?)IAb8$%ʉܵMX}fbzI@b/{k;,2MB.WU<5mO?q徼 fMPޞ>K`iHc9cVJn096B ߂[F|x! +sBdg/ XSiZwD-m7~i|ikz;U"9=6$!Gr+3a1,0WM#5ӨG⽈ {ƪ5p1#i9Tz^:B->Y(ѝ=,φ5iQk f;Ag{$VDxYHIθm*p]ΥOhoA\*zdOymGI0Y*K?n¼nYbҳLJ=a%2N{.߬2^#1_qGezd|.B'53S3CtWԻx𡂖 ޒoRh_Qe)&ˬ8P;X10)쇅I Sy@j@TիUWFWLZcD/<5KїLY6<@Yz܅U"]jrI>GQ3I)%n_;_%ӇD>m吡_)mAZln .z;OY=Zr;%{yPտW2Q С\[yh_Q`6Y'D@{_zEeet>zOEI=tq\Jd OA7p( J˴Dfeآ'h.h(.(\SUe=)}iu&aMVHiL{RAJ4Yi^QjB-F6J\ `ݢS!tS99mMpvnek{is.6I =G̾a c(_t  9 aV"Py,ɴ-1s;XWjR0 pD–-#wy =˗9Gcpm+[Tj"A~D6_TZ68vw#6 Rt`]IE{r9l-# i}E^?~m-iv2Vl`8+C,)GuJB]m$ 2:VZsyc PxtŸZ%A}AUqJAv'̂R:Td<|,i.> >;3M+(ێ@..g'ò<5+fcf99,T^@'K>'n\~$DANuODmYXnMnGV7h[㰽ɂiM}{Dim|x>rEŌ>Ȕ;,}T7o$Q:z h2W)ءs+ fh)ryaL0:ͩ+:v2v\]94U]p1^\m2B ! |Dv`l˙hR@8ۍv 2M阻ݓ֠or]fG>AiWpji*}:qpTvk%L3|,u}ϔvۅ1vGHAG[#O3]:Ըԛl/6(T ԇrd}8+=4OsҬJ!G}<uU!!J=tLTRݑ}͛HQ-3˓bHFxRG?+~z>}6wae^ϵc4KB,ql^/tlSX\Zׇ# $z5h?cd?\YЀ*4P)l`358! ӧ1: [UF;t\OAc2Nb_ClLQ"u =/9,+y_0ۢaM^BF_óo{q*'+ݓU&To,*D*)% Ý-AB53zDo^RBlNbo%2= BH>rEcb};`#tO8G?{to6K`R{x!^YQk?"]:YMuqYDLb Y1ڠv.Er='6; !ii+*҈-A/J'|JƘiT K43 ֞ΗbL`]ܭ!8pgJ<]f$Qڮ}# D]% eCqjREڶMKcqqD2G.Ft XU&DM!C3f7qⵚc2 )o8L~a̬O,*Vߤ{%SA4qB@l'U2O\/ .5{f2PuD3*a2: i2:لȯ >+~,ew 'K~JQw(bWO56msKUkE8qfu3mZ_ǎoP"Rz|\16SzlFDZ_uGh() 'CNREmS77{!MR;WosMPWȷ؜1CD~׳fidfW/ ?/zQK|;h$Gݸ%6Wg>ǬDq˒aclw$f0S)Yy>/so#s@5nK:{@+lHB@! AmGF1kڭ$If]^9SD%4s;s}  1mc& R0}5xw&iee7O@F~L1m{Mu.L Gj%,֝]g}:1.Y؛8޽7!f;`'垒 U~#ЈIIΜWg=TR"p ~㎴hŷV,go䶱d¡ц'O%:E T qPHDU>rv076Jjfw鷡mmIJw!)JāCjws:ˣTme╔sXINЉ΂C5aĚXoxOvN:9Ri7p~NR}+b'³[ ^c ȩI(ȣt;P]*n8T$& PY1`Un@\07|sI=(&4mqq uu Fs5d-̝ 9BH4ƓMH UA5ަBVz4C ة|Ҿun$kۆai FUC}:oJ`w G!{;,Vw|7{kl-Q_|1M3Ρjv)7#>WujT}&O< !ӑ5Hi#/ƷglHMm~k? 2LY~oJ񫡥h9fh5CNTY}asɟmPaݴ--.28G[}ntCkWLYx ~Wgߵf;@t0ы2W_ih~^j3}<΄]2]Uh>[Lx1Cl2;0m҂k$44ܓBzpSL "X$=^k3g?4$|˔ -ܧR /qD A} Ftnc3ut^uw5JsP PY5Q_t-Ica4NTnHRb+#Vcb(7i7F#N8,a-5pSe3?T=v38I> Y' [ ?W=Mڟ}4bvͭ. ,)IԛX#\_WM y_2>Y!dN"4ec@_zΒUs}HTfw!oCn Mz7 ,m!EN>Ji4Kئ~-%v{.T 3EJq2DTG2YH{d` G̓NVe&<+{g#4]D"S !S}i"b $CH_r8>\/4HC($`AyXB{L|Ǖ3mL~eK\ B`3Koy-d8>񔄓DĨ45 *#Π5eoS3*6jٗzʹЍVH;>Q>-e/_)jI2w4п'0$;͢6~៚*/ HoE|HW}O,|^$1)% 0!4xEi[{G>΀c"HL KS˂O ᳇UHL&= wV]kM.C=hlW0cTLA(sL统jLH &DoBj{#/1xL 5\tSMJ̪mEu՞-X#\%` JĊv>A?TZ؋Oj;ʚh"qLJUW<((/9%G@g7|+z42EZexC12BY24\ 0LվޣMa'iK'//.|uݜI/#5I|hg|rczƼm?oQNAd! 1@BJ LQט0^̓V'`IaTiQw#nMbrD3qO(WIh~勋k(NY ܀<(im9f4DG!;)%$k]^h̫|\7CxX7d[ms0۵bh}Gs piD!WW p+FeJ-l:`cUFâ:v_r&z|q~^N#i⾖ĄϛeAЦxidVܽɐ6j:bZ_H9 l LyF W4AaƒCPIY3A6.]x2K+b~Ϝe c Pkevxv]G)B c3d6+E`:|%TluE.MdC{pd'<9C4֯. =ׯh@vHXc<ǃ%W,: 3C@sDLRqO_'mؾB& *8p|-UfjNH%tFvmgQi*x09a4d) N~wpน3h=]htێ`eᒋlVa/zTSd^Lq0x=u+aG|z[x>i ĂY5vbL۔c`a+O=bb'Q 큈o#jي! Ia$4'(~R|PtN+w5Κ1JwvOУ+:i)jʳ]a'K-+Xup!N;W37sBhC.>]I*pD7QH:}$xHۈ]|"efHPfꤰ$23BgE[ɑݍ]3Wٷ]lLz Njp»+A+زsI n;X ebe.~Z? |rpٯit1 ,rPR+a-麡~;Lq˱T`v cAbH`RNx5[;VCtxu( *xOKa W' )XvUby@>!l.Iv8H h Y|HRCf&@j.G~·?Eeu/Ws/#{ڂMYG=X3DJ_q>ߤm^n 0FxqcD8^Q5n?k@TWMX6(gE T%0,<Φ+t2$2ql tX#K1w=̘ i'eYlΠ3$7}1xfH_Ʉ |Y&{X_EɆu9SYeNلBӦ&SdC#˙.L>~/nni괺9+O $y.J-'݋pa.SљVLq婆(DLNN52\ 7Hӎ͌|׋dž 9r*Ŕ3J|Oiz$ȆVb$!xz_2sp,,uDJYVT_ǒ3=꒑\z2 ^qJN^ޒj>X3)>ߪ-F\:I9XbJoN[F/6c5 @PړTQh =x'bܗ>5թat67XyYt.'5gc.mXp%cmJN"-3[JaY_{Kvb7R^0NV<: Vܯ/y _=Kܖ .4bq]zzF;횘%KmI6 G3A}*(Y&㯲BP˵#Ɠj[C21$^Sq6  Blʀ͸|f|``~wba]q5ʦ):{mIUt}/N!1 r( [+zPgUn"}yb:/PHF=n^N\YAV.AݦfL}0ulSȤEV& Ïi7IHS)AvhBD`Wda3aZ˻HC3mw;hٙoe[ |DG_qF`gǴۏI*{T>! hs!wQ ۑ2{k2ބ_lzf^w.nT’4D l:v&J{ɟs[xFxȘj+2(017wdi&׬x-ҟV2A}G1ՃQpr.f*<lM߸(Q(+b@ Rrs#X2KG_nZtC!wVE٫m^!ie3ǃ.\huۭ$m5lSh}9HY^Vt+&h/qF_Cjr)?TIJXcp:w+)6j9ߜ zȌ|tBL{v~ʏE*ov; LsAGXm1#Į˛zJJ2ˏbmN XkH>qb͹$$Mf:r0p .i/۱.X mX ]b.uKTt&+vrwuH~M0~~b^u Q7ƾ7 !ό7#E:ЙdH)ecvDN Y-R^dbצZSlOjulzڒSpm{j/ N[:Q Vfb\?` 9YAM]wUV8H)l* Q`F̅rϙ$N$bBSe7 Avë0Y*Np~)2RFq*ǂ-IdZ7k|*Y7iz.=*U k_$~Ğ8)jx"WkrS.GEMC }&qs23V50suv#\DTd>f[l&iyNݾ!*2"@?%Ry]!YcR%-o0ȡb{~u?"9#rnPkqj>kM?09 $V M{DdYg6 0aIQs aĶҬǼ\Xb2nEt(;!6fbTI`F8G^xD$ul<ߞhXhm ahq+76OM .Y H[ "^aQ,sc7 ]o|PJ WOΤt.S+urh{iT^F[6s6L 0eOWTu&B^ē$ء\@KtiSƒuۃkI ,C;% ٵ& +eU霧4ozx^ڃ'p`s jޘP>Ԍv02`\h Dk$ZH0ְ]Z^s Xqr`H#C`ChxyHP:UK'3HRqZ@Ѐyqn,G@wUYJW[N\Kj4 Ԫ&RD8}HI}ÌՎeIby|ƒEu8dSV_3.e,f|?$kE ;YEyg%z8fi0)Z'W;a o߀4 8et)+Mż5-F˼~ZĢ̠#1BOqǼ]y7!,s6QB1 7oObzJ;q\g(D߂Б7`tDY2YcXyJCHd #fe`5-"ck,6wI5x= 27}L6I|SVثsrIHWel}VڭQڑ!^p(V-2vDbn*̠.NH!uEg6ToxIbZl_F;_q pgr(/P6^xfxӟ2B!qMRP (biy"_w (b3z HRN }!q-MwYbF mޗ7Xo8k(n3u<7 o8(z/ 23um] }AHicVu35h|zna1%_@Gk:c:w˴4܄I k?bY:wWP*ch'Vn%ڃ|,:Տ$*(fs6>~.ݚ8PJ( h*jg&܋4Z#Z)n?kϷoתs)FheklԳ\CGYqt=ʋUͿq0,4HJ\e?]&v4xxZuxӱO!9鯫VvdoQbpHD`=;r/[*TWA .^O/L*reDXc>H, ݞ2GѥA\+ ̴Jmb:d;r~@Vd͛ 7v .$$v'/i WuJg":Nnw`rO9[EzgJI;MNˌϝɱ]WkJ2Q^=RO=/H!AYv#ћV$ i Ёti`A&ғ,.a&ŕH>HmM֔HCmVڅŸ4P;~ spp>@hw!ߨ3g?XgADwHXoڧͥ`&Bn5 ユ}S0EwF I H'Ŗ]Y,V 1dzAʽupxIwBG (^%!"2q< %6_)4Sl#Ķwj-mݫt\yb"T {o얱+N.$mmoRiWl9Խ%LF`>8hxZIRC:Y3Ŗ?^E2x&X.^؉ [L= !nXhq N7Iψ M޶?oe{PN*Kkϗ IAuiMyU85)V/lG~be$YqC3 "k!/8oLX TJ Y$Yn ]O۾tCSm USx9Z:L}ƮX΀ު{^9mfV "MkυxZA>/.?y'٩w[Wpv58IOrѰrRwek؎8оUV؇tzvOQYFGΝ'-lKWZ xMlۚ'f= ŏywoq@ ;g%㤹RnkBvnvs , fu! `4@mGVT Md* ]p(-=H 0ɝ7cQuيT]#1 3Po`{\V@;$G9%y`¡C^[hΰ[0pE6`& r/E#^fKw«U47.E_ՕqKU.?FBlsZ g!8|A ֨ɪ.ۈR9Ys/o"@-0Lx ͶO;ɭ}`y=[1AAjVqn?ݕ}Y-=6t?I'aeyH PS7q#։fikFbK{+1 NHمI<6s:8E[KM/ўYu,]s ffAC0Or赿9ʹ+Cur%wha VhR4^)=F \U haVB@Vњ8ӷ% *0}q:-súݞ]}v*T[w&`}L^ѓ c6G\nIqdkX8f=~a=ڕ"eO 2KUpmyYMˎ.N̺ pɑ6=22 ʘAy_gaL3oeSZf9z s$&J׃Ľ O [W$$ޘOY.{m>AN !c\\~7-Ύeaa7)Νƶ˶sZWm|D8vң3eB2`sUO@IShyظS;ݧطQw1R:ޓ:#Aje|NXǟAJs!/GI]~8I|PF}7u %檧`/jr F1_7zw7uvKlkBr'{6 57:'H]qSiƮ&A05/dPU,B"8\ݤ+w??H+X ٔjUvu((%)/s?3uZa4U _92W򚖲nԼ 0x8<%WzwGPTS(J]2>vͫᗩ7::b#qYu{P]tXfFFv݌E4r(H4ay0M#IqK{ˉZnC:$ډ}T|v"HT*vvq+Mq"}jE]/SOxLd?ĬͲ=(/xHS4e#7~ʸA4K6-ogCʼ8ub!|XfaX]؁PzmX=;m?4nΛƛգ MAlF+Ya‰}mbb̗` [6"1XIDOq>e4 μVqO~~#Pwe4.pŸSCkFsy`ӷ.8E@L"AwyfC[HũS~]lӫ^:3xD#'9&TңC]X0*`0 GޮYY!e"T\}Y ٥NFe>1SY,Q#it녁*hsPec;+w$$ 1kOǑi=rKܘ s=k'X^!>̗DGZpF{aP'Bed\zVHenq9B6?* arDHk F=5v31q-iSBxL-\^& bu2EUW>ݬ .L~MZQ> stream xڍTk6Lw Ctw4 1-]ҍ ! 7yyk}ߚ, :ܲPk5D||<||8,,`3b@Vp`GiB!5gPc<Mrap-9m8@11Y lchZ@.mP0p8/;f ;@ '\ wa<8,Xjl#< q7@_U 1ci@ lecuq!;3s ݡ+O+5wV%Y]s]<`_ xdE<O  ^݇w[ P/ߟbk[W'HU/ fDĀm++7? C ہ8~V  oſ% ` A`?0< 0Cd-j)iip.o- D"CXʂ_U 'Y+'aϿ`pK `, >gvc(o>Jο /=p5 SПqق=\W B̀,G+A:`0g0uZ(n SeX>VC+!6P_/$ |p-FHB? b mA޿ @'?%!? ?zDDvb^ɈyA7"@l[x0!/?1E _%x`MI{G]@ o +,}mnhImHқn8I?QU@f0 S%C@ҫWٻby4|~[wFXb;I쳐Y|9JF 87#coٳjI8q~&?|W ݻL(PHFXv_=X++^Qmw}.a{?YY&٩(yQTcbZT]J1s?yivNk;XOg K}IIohx7puzE # WatXHI%Ge,->ë3tzIc`,NRzp!0(_5BFMX[Z=I%Ą(/)>quspH|vA*,Zql'KXq&=i])D0<=}Fx-#$t|:MK2e㎅\%QPЉDXn3U6[v"[%?ƨ  w_{dNY(IDp^/[5ѮiyIi7jP_lL{4y% mv:Qh UD}CudpوVIꮰϒX(.khqe_^&&VhLɾG_c)19XM۸؜*Q4Im0*P(z`3%I. mRa a0)ilX?"; 7H &8io]s}ЪLxzhP\v?tLPGa7)ijٳ#Go"g9Z%d4IG ֪;P|TΛEF N_cL='oSI'MG7|8b >|~fXl3!ބWA V򤅨u.Af1یpD*"#=I-85T3{,֙,m(={ m/Ghr'8CGNSJw;-͇| ox8Ş&^,/m66ߍ͔S?5p/\7G}I,b%<^cVi˼Zl]Ɯ%Zp92/(r5=9tvFgp;#kFҶk5Fmz5Y~[rˑE]9n TR.Yl`|]{ zmѺ(pӑ^yX oVTX;9(f_KqIZ18̞O{i1l@LYp˩*^ͱ30h%ko@fSSK_&y*df?̢^"2Ә|2R &)S]z̟5殮̓↾@XΒ 0 Ls%syEmo+G%TFCs1t1K{/>{`DŽ>ږ(I/Yo 9V_Nq:~{axc}_M"bpl[H)Ȱg֒;ExΚp KѤpLPV)a_vn ;_5iDa{8oWZknvDcj%|IY |X?r-85=.LA\{e8Wa7lG} Kk~wwhz/I E= 123 ̏Ϲ c}˚IِpŒsx)XQ].ʆKJ$ 8śCF8]Y3ɷϵۀo \=z{1cO3r9ny''QtHmRȯ4i"|k|fcFa%#I[,<̯ؤ?a:(.w1JjI`IYUcˆ,n s3v@6TXE,rK)+Knv>7g=䛮? B Qß,l%O' UNtB ';ijGd#\ˎf%G'+#~ibװ ۢ]Bn{N  IJ@x"2&Oz;xemZM"v?Кk?̿A:Ҩ^b0 !o\Q=D}Ħw%K,1WB6< ^$RJO'uk܋h"eh,G1~AK0q1sњ>M=YXbj&SXrPTփsv7݁H随OVv L6^S`Xr*21NsS<|8+jˁ*V_5QYC϶qZךq/8A0F\Bՙ?ŞsEIݢ*>}'NM-x5br x:tLp+p-Mpo9 Q\)áH"$@ߖRK8Mn~s}m}d퉬o@9ӑڨ)Y l*+K'bYhϲv>I.PEů nTMH^^H D'%-qOM 0L&: ݊XqTaa7@JG@(@v^˒ qdDFEMn `I. ?MJOE 9ՓfRn\ TEӲb)찜&#-;XX[l?Xƨ$ jwF?ܩz;TֵƤ=K/zmHF,ZE:[xvjQj`KB9~hKzF1ZpdLB0nҔzkB:3efۃDlD +5ū*0)`/./Jc]cI^QR\̓焋L ߡ kV+!5}g#їW^V63CpJ܍f؛0Ǐّl@z܄q<$04lj']^M?F<6>?48:J*Cn6ff1a&%n1uwB tRk=}]11V{2H}̯GK}w=RFh1%O:bEqhW"^16=nV-M<yʀ<>SErOQIs; X VpMˮgXc])\8VKdiX3PYS1i6ٯVh#FGgwedZ=GYӎ/Ge$bYïa(6O:.Ҧ`zI7ۍBcsOPNPˀiSo3+IwNkdA gfa`-62aǯ_/4B5x}Ǔ-EGT%D;j4lSo~OGnZiX'bP<(tD%sjt,sJEiR_xٝb^<޸[ ]RUaKucvTP֖C~^&d`*f)k&Cظoe*#f%miFLm!=|.^ՑL~oiN~(X-EWCKbױocRSI YbD-6z+ MפH{fdoҥ#^?oZK.8fy/ r0mC&acB)Pڋ6l{r*m^"UN G'>YjoD"~/p'iR0!ٟt${ OcwԽ",WpO/8MhU=Z^ܞK9'/܂ZגLv,w4|:Oݛ8'1O+X7v{`nۯjsB:vl _Pmc^ AvfE bz>o#.*8Væydm姜h>!kᨒ+!0h7UZbBefNG ZO) ؎z<r&16L?Y]QjF_.,!IyTUL|+fCH >RGKri?>mb3I$$5E9yݴ7~܅!Qy_hKwYb1WRgl4/GȚ7N,TwtF>ჺhT΍6ulf=7x&$kTOJg^oɝ [gOЖCqi=,'>c8XwT2c ZpؼK)Zㄥ3Nc W! J=}0^zNA?|r{>6U\6U=ɏh,4'm!&#)}hf%#n[yn^;jn(Ty7+Xq!ś26x%LO.=~2A&IkHn=]& (^ Aug *w߾v،X_Z֟dE3?-U.\ \앝kRiun8e*m:ų2Cg#h Ջd1m Zvay5[A|L)gbkoFgI>)~r_c*V˖ŪtdbC0ű /6%:Dވ;ہ_ڐgӶ5P;!uex)Cu($nq){C"[rXgzD┆ M4oTqu*c\3PokK3ԁC\g7;@t`L@_޺c]/o!AY.CQf|(K|6?d<P i٨T($/k'{jm~(UJ[cu)N19 FvH&nE-h/ J(-jek:>%OW$ПYDGT<$!lu5CaL%.([t}Q}?[) w/Ǜ[F~i̕<)b֙k$zpL}Ќ'QS (r kAUvswj|+E^8AjO}|/ t@őŗdrw]x455ӇLˉ0Xj@;dXsO· Uۖ7՗;ѓ2 _>kxz4ZT@\bǏ}3t[~"9RƑRCUdxEpAqi gi}jecn˒ =&ò;IL~LrMJ7I@[C 2vzstdVqḯ:g'jE*w)&-9Ѕ{hO"f /S Jm(C\GEmJ;\csH=Ϥ, &p'‹ ~p&SiQwv8d@Rן/O.=ڟ9M~'-Q̴+`:RaI?f4Ƭ[P]h\g4ILiKxݍTd(E&S:QCJ\[F`pㆷ}fFF+M1N8drPH91^twk.1P><;~YO:HﶖtOSw%{Ǭ OQLϾ]e^:":NPbU+QѻSHGglbW-UFIIy*Bi4&x+sykG^= a75a]o׃C;p< x{[HucF=,MK v ՕW .OB}`/ |sXeZ4D#E@tZk鹢pwfda>pAҎ'MRe[Ikc&Z$XkŪemOSGhW ;Sij_9|Q a Lj a1IJ|F_ruqT=+߸Ś6lfL'0$9fD'&Z7DTɥɜ9'VkCJj䆀ZI7~IrA&huhr_|yzӵ6: endstream endobj 179 0 obj << /Length1 1584 /Length2 7387 /Length3 0 /Length 8418 /Filter /FlateDecode >> stream xڍwT].]"C7 ) 0 0CII7 RJI H![wZgyk׽fzm=nY; X Epzz|@(c33C.̆`8_`B<jUOOXODb< /@ 07_#a>l>11?`- !+ڂ\z0[l8/7pfxC]0* r]63@ˡGx<  ?xBz*-70`7/ٿ ?A0W7uC\-%u a /dA%Y¿z@p8Whڬ8)@<}p0o?U VQ;F@(Pv}ly-PC `P8b~xaA^`v[bf0zxP ;#SW65rr00_F{+Ujۇ6c%|K \0́B@ۇo/{GJ.. ? WD< ajkr5vO @ upl A:&k_w /x:?Q?L.3~!a |a>!RaؿTX+F^H /x~#~o$UX4o=F^Hk=pֳ<4?epg)N`-V"̩&Zʛ{u}a5:Ѥ'J#Q#7w9k 4ɲ *aʹ$Şe0aD$-zh?I Ռ5h&\S`rn* pҧR!esZcM虖_L ==U Fnc! r-qf _^ QxLA\>gO^6X˒Ǻ :NBFhkBm!eN1RT-esGhF-jJI%욤em+,!;GS2E. Ϯ'Er 1T^}GWHZ̟O_dyN'x×uLJtT!ZⰐЩτF,bFCE <|E@Խg45p7D}ƂO(~؞n4|M.R&[RmCZ]߿]jis,p)c4 ͣYL'PKPg[;fiu %J?V䌠Pt9Ȫz=;1Y+[ o 'Pg?um[+,toB pۓMag Kyc6lۧ|jUSG] *Ŵ9И˫sҚf_rnqϟ_>m`siD)\6mpc^ ֶr27gϩ '=vf:PDO zз QNuλo9]rۯ!!T^_fX6 gMDi2z{˜l;fOdaw̙in:Fja"g$uN2 188q ƔHH_*TwR>$,M)`%> J Cf0 OD8>|Bs~Sۣdl?2(b,~M{5}ʾyٶ;Jg ,;r\B% ̇3ygkӵ7Aӄ(Da9s4XEy $IqZí^T@ړƀTl?;|GR9!ptѩ(cQ?w(;܃yX^#4;L {fBp=۽AoT\9t7B3i1G_JS*ū.[9Spo2v}A ѵ|=Jssߢbb=-b7?+J;*CfO)Gl; +VH`[Wȉ ڨ)LD }x2Bs$YMSjL" 2oWWoT_;} #-έ}Nt\4WLX(qfcOpF74+Ǚr닃Ӂ_</f>ȃd%{F ;lf?bS10\8fOdgd1U#y9ӂQFU6Ҋ{ĈtXp}FǞ~BdCi$NbVP*Rοy +(NP8;ţ,ʴq%/VG8 *Bo\̛u&6&8B@ㅚ:m-0tT@Խd^%]shxУ@N⏉wxb^_X6/]OTڮO3Wm6%o-lfZGßcmהV؜%Xix eT,\5}ĭw'nWP‹61u&鲴֤ h{`N@jՍ%#E)}kq_`t<)T!C~>T% 0Jx%9{, `Tdf8V@/eڋpmnR&ـ\vPUEKU2Y}l0n2( ^:H%[-UμEHIdt؝hTo*Y@b9CIw㸛Dz T(''M\i/ނHTE ך^\`\4㴰A_*ݾlSMZ%sN0xc=YR%\Aݢ>N`'*PU}׮oD$Rȥ;1@hr4!A4)cx<@ޗ>B2aWq ! I>a]6iV:w0wMuz RPOK/w >̌Lr%m/xlrz4p摎=$S-p6#PrzrS8]{}xw[h _g{r`F6a~=,M&OFY0a}Vʳw{N)Hɻd ɠuHzm],i|DO9Ṳ('R~_{&9?Qy, ) T=SՂK[E &ۘ_ )&91uc#7>  ,5R+J)[oeϫ;ԦY%?[r`0ߕUϏw3(ӹOxI#'2LI%V6%Z^D}VqqJ|*̀d 0qt=} nS?  I5^GAɁ%wYݹޡָ q)7ےNSQeSU)Զ2;IڎCoWbn7:P$eI2c\G$"aʼnƆ]&wըWJ8墁~[5׌g*$^w)q犧/٪Zvx;&ۇ?\9*tFaubs[+Oyul$ 2#R8k޴VMڙk8qre(ttLJftX``8V,fc:cP6nbX1ѓҖanX_֡o Rqrp"*#;?zS]r̷pNznKލ%ɑQ:\QڋꖱXzG,LG/L7 E*U xK&_ bl/¼/7=pT#CPh_1{ 2iwJ*Vy'MEǎb݊]آ\TM+(a(n߬M^s[VWngP7 _!nyjAH`HM<'f @Qk(؟6.f<,|Q\B$1dtUG)_j1}HըBW2`v8F=2 i&6a*pE4rCT߲C-nݞ dT",#<bU4m Ut!hNq_"l>~tfVA!qyojXc"(F`W r{C=@5|@<g#xDPe>t.FݐзW&+[/CU4H d?]MY4/_=fn`9Ĵ0VN\%.;J~{."IӲoLSqH"Y.ޠU ԬW]6csUU2dxiAGMtY?Ú`{ A/HͳuxspRE35tB׹PQxy;e8V" `U%k[^St=SU7`޷y*{#.Jiw{06`^r~*>\9[#!v) tWb'룫vИ2J5ٸk _EM} ?:+!j:qj9CGxjLV1=vF0Mk3W^bGu!)e9?+3p4|pYe`ܝl|yRS{!}([f¢jAw\͍XbY#(ٙq${9z9PȒ 9 ^ˌe\}ۑAae]/QX8 >6>#?DqA)h^&Ul`꠩ E`S'8 ɱ6,^aX>C1wW3l|ґny̐NN-w$Zx MXХ@2u3)P6uEK4`S]w@3L0w}h,SXOzGD,tvÐ?dml%,6{ǟ[p<}lw5?ttMox9%h / #"{^՘޺̒i/ĀyyK<.v8_OyqkGiH& 8[u:EěL(;pN8+v/btJhj}@Y򛧒uu8q;Dt,hE| ^yaP& zM4_ѯgHdM;]?cc -\ɿJДߓ߫`S@*~^F}zeŷA#\Z`ƀˎp}Pu\r)8,•92ԮG)~\nnЕk4UԲ=]}T:>BǗ^ΑNE]lcZ)=޴BF px<&}^?&nLC]u#&T9aZY9ej(sQV5e%%eQy)aɭb͇Cs VicAU{T`%ĢI27y꺱lSNܦz%MCkZ87ݍ#. YYk I%uA]nDKh(d mO|uJSTϵJ2m/Z] N#eNA<?ixU|lYҹٮ;BeHC@,j"G4γ; HWrEJ!<K ;?6֘(.^^5")1 sKЗn? ,ܾUYHkY7A.VK|"!h`ִ8qӈʵ~RӱH!gs{;x{& n4Iȟl?rRocezF,?f^k5pkٶ}~ǚb endstream endobj 181 0 obj << /Length1 1444 /Length2 6237 /Length3 0 /Length 7221 /Filter /FlateDecode >> stream xڍx4ֶDd^{uf01F{ѣE%z N[֬5;~>{3_p!(~!@YRE@aBvv( 'd7x"b({BPhL&"-/@H $&%$.@O)7 h!$!2B# PtxBAp#@P?BpɸPR>>>H7rAOod;oi(q h/8 @0{@:|W޿A῝@  w8Aap`H spD~PS48+[ @!PدA*pwQH_@=! mg~4CzA4Ur1g @ _y@~<'t AtP^m g(0O/'8-TTWR[JJ_@$_R 3oWHI}NW\hB\(~oE 3R~۹;V =,j30(4(ъ/"ՠr?yAA{eC } mg?U_&,*pt#D -fB5+)t!0*` @ B F^0/?Ryyzy})@  $:FJgle_(cy^C%{KsQ3 <.eh0T֔ u0cOcS H9g"ŻE6_m]w"7$w32 Tb^.cKԐD OL/Mӱksx~k։YCrjTŒ7:@GՄP=S.OOf+vX²_1Uߖ2 ଧz[F:l^1zwAbXlJ`jX~653sFw QZvn1Q8}BvM,Lb %1ǰ+t%=;&=>o/w[ڇlLTٻ;)MgxTPڳ.;`Z?bDVv۰;m瑠0v~}~2q7jKr2H|f)_ie٣N ?m6[(XbtMٽxa՟Șf|3}W qH]j5V٘$ڪOkj~ڌީ;PۭCTs"k/uC8$b̂UIP;7 0\ a w7Ǒ]{0.R2 j α$~x|,h/OU{hw!Jn nғfBˤG:kv-_#4h|' pv{!/.2e>9.jI[Zx5J,V NqK;꾛,JS@j'ߢB͆,qXYp/F綦 lgٚ8⿜ېKғ֛-oWWmYL8`T̏׭PvH'm_yb*g)ɒ/zL_f%ՎFNSL*Oe>f̆ܺ.9z>OT땇a#Wl0ZfWֿT}\r(϶9ݒ#?vD2]RncJqI&l Y = &3x._ct##OnHW] KET-8+˳B}Xj3F 6Zn:>pv$ޛ*sV|boi$z'!`=?}8ꊾPDb|ha qg*.GGCӓsPX/ϘwQsXWymoMVu =<E7Ox7k[̦.ǩUô/yPg ସ?e (I:T8?cr>?GceJt~Lݻf'-o;PQk P_n!SA,Os<ĩc4-8~Y5a0 43LEA)U,q3Ni0sxB]Iܛ[8m_Lb{QZS2pJL)y8H1t^L$ y6ڽ[KcՅ;( =rWMP`u7g}CxxTLQ?$,ɑW_7 M 1JBn\+ @ WL+w6%:nGLjn(/Ai{;_`O݋NWrOCXGOeٷڥLCO)(\~|I2aB[@{ȒHUd*C4/SU0{bsO6Nv7Y#{Eu&O{tFIvmUe%GRHgYY2 ȸ],bi4nAhdM|6L~A2[k)sb4B&^g¢ʃa9ߦR31 l 10  3PF+q>"z.whDBMjFюdH!v##IVdWY6ʭg>8v"jS]u)em)URt<|=v4Lzw8WNNfNq{Z,LP#+\&!xgL e'Me4:FjjSdi_ubugBWp7HKa~q?1CGCi 9 w鐯C 0jI3eghSpd.ru b{c`¯ɚ5mit/H 7n,3 a YIegS+2lF/q7l[X@R4YK#zfl!e#jI'M'WUf8ۯW샌pI>?( !_vs*t8Axi< &۩?^: ^0՝ZMJ(=.eN'}nr$Y&Ū4NTR $Mi|&$֙T SEąxdxB:w=k `}%W'2bqPg^?L$0K7yqnI_~2N>NK+M0UUT(yIp*H:4U9!вY`ys%(8/;,J~Th:\^[E^Tx\)2,Ly旡4 ~ᒚ$ʟEFQZeg֎q.*.$T5zt8ce7\nK%*7-$#WBRzmӑ[ +O4(Z`*%1-}= . gIDȢ刲1͘@qZ$yUkq}6-n%kM*{=ȵ8yAyŒkL\MA;j@*z5sRܳѾySi%[$4]$[G˳:XT,ۅzOx*0E{I$v|w?%N\?@9niе8_w)K=R34h3}j4d e“fjLϝ%LjK98ďX#UFI_Xmb9 `Ʊ?5wMXč;ByNKy S6Up|e3)s&fZKEYmSSYpNx!̶"U9ޓՌ·/4/]8;˹e7:͆ Zp} 6RܳTH3:YLSi1]B( HOQzP0\ᵾ{s53`(EnA>'YMI-53dFev(9__Vr[j35މ,s%jRUpy. Eo3so z \,Ϳ`n"T^ K9Զ~cFwH [ Y}.@@NA\9Lx\VA}?T 4`Hjt^xYnP(f]+iypo)y O\AO*-9?͍Q&S<ͪ?xwç( \VK̕zBl|mZLi5a̺ `rܳ]rSYzsۮ{˛p+#J=<,R#]3{7ڋSoAx_hWoB %V߳D8tV߷S=je䉿:ITOEѻ0J>ݺV)]P0n9s'MZڈx嶛{p1Q)\~!k$6 D-YD}o~EK\cͿ飋4 gg6d4:[r!G/սɰwTݽne}w-&{$ 4E!~5M?Mys6ڕa!*:#iTwgle. ^#"p[-\v0[ܧ|j# 1tLZPqDٜkOWt6X;oWBDɌܪ[kجA%EUQDdՍji}L6{_JnvUS*i}1?EԃfN3 n戴 mb’TO#?,[y rcj 0PҸsCy>(\~d9ٽټcSϯOڭG?% endstream endobj 183 0 obj << /Length1 1372 /Length2 5935 /Length3 0 /Length 6880 /Filter /FlateDecode >> stream xڍuTݶ-A@%Bґ.А%$A JEDtKA91#\ss~b30Rw(, T3b 0XeĹ .3DdAQ@mPDRVDJ 2"1@5'(v qmEdd]$ AqW0  C"p>(+ù {yyX'BF,㉀ uE 8"pc= A @a(8o4!PȺg_P E Q@{ G (/"C=Hs(!xXÂH_# *?eu\@ᰀ_!1}ܬ3 G{ -<%22@; sU ;( Ov@ 0 "#a8:FY/Bx>~ F~Z 17OH HKd,cEm\-=([1cϿk>?kEUG` 0 %-)77twwC].> xzCmo9ipGpPQx1 p$7@`$7e5$ a"[Y`9X.xs_u 3Q I x9OoH8 Og ڣ1_*. v a?J<0~+ֿ@x#` 4L.ܩ:RK{_Zb-%pܓu/gj܇]O3z92¿q8mݖ2G޵%w怸G3; I,Po>2IyB yl>q!.\Tpւ]Y RYpsZc-8YZS` &ZCg8#H|ƻ4< ɲHZ&:_m&GXn})L]#爠]8(S凛va#VbLj 춺g8Ј4G’g7WyH)Z$ vn+憯rǁw)e%md$"t2tթjܞwKT(]y7w{0!ט>Vxb quC 5~fҶfgwYߎkuz_<ٿ5v1vZ4[:mϧ)~x[~鞰0lFaP`y{s%I:|ڕiZxUH|V?*/}i;`R$1QKA^zCLtog;UD~+3 DEpd㧏h^@idJrM\UC4 e5k6AeLWwK`9w)B |E r!n+uw7NJUԀ4t/X 6L6 ^xV٩"j@ټ0;ŸkjXGLJ3=(N\G&7inzha?7r[:ikz|c| d#q2|PPgmKqS%PDYٯ{>o={1)]="&njyXE`9P^xN(e?>ޕ}@:G&*9rd٧Z6'b-*]m(GʱCИa `rv* RYelptcq>2h?|wBuuZT!<,z,w5IGj'ƒ*˟Oi8fsNCzorIw.`gd؟Kx^x0#ye)p6yIʗ4?{~rKkG#4 Gdn>y,ȼa<AҾ4PN""1 7/JI딖a f&l^- &v^^ao@ug(3$#5#x ;X{O>}:Ktxqqc Ng)6gAKig/+޾~c9ψw7A`P "E] nS̴SPTb)sc,RG0ϟGd6M~䗆(o:0X BEO>ȯ fMtCdh킻 `"y'*f:DflYd&eK.a Ob]^}2jD;"޴&:<ǛTnupEWf5³ &N9)+yi+Jn+d~= .-1桽έhetn~Z^ƒcXi_x-0=آKCIQ秛ȟĂmHnEOZd08vwvxg "Y;#6>ݲ&8a_bEvYi:,$#IzCmַ  acx9R]4naK %nS nQ'}o{uyKCiqő($I_c gng^ËՏ-'8Pzf&I.1 LRV,xF( ܋^R;}OX5s#(|ijCf&{=ɅĪx bO 5[2 !PǍD5=3eXUhRqS3g;j T PV3Q֟}+mфC#-_GFoQ;e:GuҢW!{YɶZ8n6#gَVe[<5߼S.%gpg'sPpH)TR{ )h/|/xEY'Q2n?իo#|$%um%=K_'S_v4ײyE8+m~!q(O4Uԍ~a a{ RYd]~S.(@d Of.AblMJ]fԗo7Ǐ]b5?i,/HH|ꄻ^ Xtl0ZЖQ$KC{kĨUqfb7Iv7}|j3VY9>#rUw{bmYˢ\8Lo-Y#yH Ѽtӿlx8cXl MN~e˛{r]^UҤb6`Lg.Okx1^|? Hm!UJtkѠu@RdavK"n,qqg1O̸.mSM#]ܛk="Z$IAua ( nl: ˯|b~(v:S4JigS 0b,ktm73%`SPF~F$ImtV:"3I˔ {0kHmťQ1QMsɬvEaRTE|!v//ˆvGEZ]U(*b P[9ZTu EݥTdU{$/Ȗ~!۞WLv}J&hݺ}N`+<`vsrN])AU0fv_Umۓn1c=3Y*ȼ [G^#Җ~|[,ּďpԖwZku>yIEmvc*|7tAZ#6qrxYh%Y ǜGqAzؐrHɢkWL%Qg (?"XۤY}՛y۷%M\ ٍizGTok95<[پԚSLB8*%yy#vm2,]Ֆޫ`Ik7,/*d~`N~D9IP|›<x'k"U q^C%t7J Wܠ/\hѩmn>ҋe{ŕOL>}7ڄ 1b!O7I0i.*'?2\E5ʰPi/U:Sv`nɋ5@OWg.4kfqqzqaEDBQR3}uPO{.pAOUћl֊J$v=g;`kՁ[p)\2'e WzVt<T' Ru endstream endobj 185 0 obj << /Length1 1552 /Length2 9715 /Length3 0 /Length 10751 /Filter /FlateDecode >> stream xڍtT/€t -)%1  14"! t#)Jw~qsZY?oo? zܲ6pkkxyxxyqȿ8̆W(&,] ģLx4Ԁ/|>a1b~^^] w @0Ý\v<:>Q\d!.P0!!  #=$zxx]y.vR\( qCl 9BnouKEx\ G >l .=Uu_\w N f:@ZJ<O  G?KduuBBG1+lᎎ.ܽ_k/d цuv*m(GfAxyyEEgl#O%|N6 ~P[+@A|? F!vP?ۿ@=fa6p?^1P]KP{|B>>~AǃAlѿ}ӿJvl/;?ci CB7t(OwEJn2? GuCI?[@TTR w[iWp5'b5_x }פ|4zmYq0pdK K醿nRf4Y1DA^k .3a ޳@%;d<<5-vs|NyW3,t 3ĚSh #QVNGO:q{H?K? ! ZTɭnEZ+M=zUCӖǚxK|eI_osiH?@/5k8d-@%U|ADFBk43m(5zO~Vmo|o $Dx`B FJ?na٫$ޛk1,p nT~DO!d,\g4$k߶Ex2%Ѵ/`=ZS(Z q?Z΍벊5NRn,+M*XD6M].cYWN gOg}w6U%~b>Y# 9J/[է^\sokŹ&ERQi(Vbv4:vA/M8JZIֽ^fD|gz YOfR?" H }h/p(OnJy -fDۑ(>yaVf-:Ըr[܂̫d`g5旵H~NO6oQ\4fF4>sħjĪME7m֪]):XS,C ƱgTF/:Pݧ&qSChXǃM!WMU^9ߵZjS.D~y7~B#u2^ ǬJB,GG{9 FcL:bc#/;G= ['2%GV-ՓdB/J?5{- 7Cn;C]-~msGK8b6]-tqqƂ>% }>o? *+kBn ].2al ] ނȯjB; %}#ufqP7n:"z)GӽOJx]kG<Ę!<9oinDUߕKdX<.JB :#S'_G}2} uPԑpRd'dٓ _T| '.-ee)𵫤X.2Ƞom>E5R,,޴gF׆mzP\ex/ ~xgg?3 꾄p E󆒆%UxMj5- YG}E];[bR0k}|#C`r~ ~PG)E/cސ ,`I3敊մe`/5!X*ʼE:e`t7>t=F+a݇I%z>]2U,k guvN>ߘ?=`j؈C6/2zmElKKԀukj/?fJ]/ԭ$lV;85aʮ* R|FlIIvQF!zzKێt KʡC5`qQ!o=ArŻٹ*=c5pFxkx2j+eEͮ!0lIYe 6<ߒ1d yF= ~^̑/?kcBkI'/'$$eVk-:Pۧ a("d! $f̲ ]1ʒg71~[<o?v9o܁»0z">*_hz?PZ|"nΎIj(PvR.[unmڛ,:Y}`a{A۱-q=b ˿Vpk!XfZ]N15V ƒv[omHA{-"Cp^1r^E,;؝޴#)Wuܹ mKa"c~L2tHxpaa%} IX#9y;RuӠ(Mj%tCбee3Iӌ_±pNu˒wL b7Rg".J iveGP:ztVu7[JF:y2KŝfNU$!-G~HkFɸQAޅ׋: 총ȨHLZthߨ j(dafbqyHa?`t{)Jqj,^5,zFMJYKV~ 㭜k(:;ߎvIT@  {t/FuS`t\#ťbRK_|ꍳ(˳˂R08y&F} Ϛ?y8}anًǔr R<<+Al J ΙIeYQtL9QE*o<| T# =QO,Kza"ω*{:%^q17G`!ߞ_}nAZv=/N^L#;Q%5tvr~UɶS~h.dJ1lF6d 7jLKXᰪ]|!+ܒy|®>@Խ4qDOo e]#$p&xY_'}y=TZFV0w2P3;N^IFȴg _yHpz~xHn#ޞ2g*]'vURZ>t;&<ݠO).TQG'"PUj.h*̠@w\7듨ߡU '&j$;*^(;gNeodY#d}uԺGBvVǗ"sL-R:+$i؆eӴ^ukl3PVGgfE59ٍ;d)m4ʄ>{Q->;u׎:,6uۖR$Wt~0^_+ZDQKw`m~$hP׽'zʖ9nFQ /׆BB S]rxtAܜ\ >rcI j\34L̍ĨNS }6M;nώ#uAK)Sv(BK/6"NNjtv[,%w[ay^}>;VVl^q#cUOdudӪF}MLz֎b ogx!)Nu7J73 D U %ӺU6-6^I0>ŕtct~!&\6(NmhdȅηZ*<ԾJ)׫lAdQi GqYe 审+kdS!u1Z:ހ"^_lTf@uKW4 JV}zƟ<:oĐ$qºwtp#nQW8aH`Ǽb!Y9v1e)F6]]u}r,+hgqx_ \$j}^ [,O?{Ձ.]r ^0gOߏkiyTybOh@3لAeo&L V1 bbFw_$pd7g߰3'amxDW]0O1(}>< x v2E/t ,U!܉_~0j7<:= ]+e9XZ+ZKvI&C|/a??>špRNlgqUz=5%Ytq4S_Y_xnYn9Whz~VOjp/Eelxzy96XL>A\ɂ} [pQh鈗L{iPnJ]k`2Ro7絷xa+F+1ACav6\(D([)kD[,&ST1?.tڜ94"N>'$v6~ ̵w"_CO5ș*<z*X2dyh(V9X,ɒ`vRYV=Sܯ,P5~'~uKo FQ1:9T{"J $u~[-s1SK{$ 'P :O!T*+)z|V9NlуlSnBVX}컺V eѼsL@m\GU{F-$"=mB}~ |ڭ>EVE3F̿MJ2X̱ίhz9]D0+adWEӯ|?]$Pkrm3?ӓ'< o}=0RWymFFT1Y̿(,SSkbdr??s#ϱ\Bp}kD~0n<#nq#i>UM*򲓛cFxGW\vB#ϹgEHkYGqߨkz !2Ǭ^<+#q:xēN^[nϱcP4Jm J0$.\MzP9'4̑E)S >O6{hfu/0XR,oнbArڑ<ۇO8& Tg.h{C&չ?%-6?P}O%6(qE# UȻv92gO#-p_'JŇԚ;o*7q%`a֌u ) =2VE9 TU O ;C>G {" u[0a 6h!xS[qu"D:zN՚#9YJ%ԇv ݦ'{%VE#qe6 * \CzK#G:veu7^RY3ai-Ml6/z@؞Wیr\dEAI6ff|Qvm?fLro47ͣ3-X0AN7t{B鲟Xw?驾(F@_- g肟N.Լz")f,9##5ȃ3h:z0~lR~cB]M/i=xT)ޢ0q;`#;2M7o_I_PJ QEqM*;> stream xڌP\ cwwwơqwww +9>s&'VR6%@N L<QyUUf&+ 95?r8ruȖ@Cwӻ< l `f0s0s01XcrX2 [#(=TfnnN6@ cC[9=5@dltrT|NNv< 6 3j:9@tp P09@_ .0:8ۚ*rE;e@ws oYlhl 3u5ZXr NnNtC[ A.ֆFn 0|go~vN qd+{mMDA66@['Gpݝ߇ke r2513PZ6"?23݌Jn[`Nma |t4tޞT/cfX;fp`az?f_>O G("BoUlzVV;+'Q -]?Ҡ]!ΠLyFyjoˉS}7 sg$8tdŒfN:t/5ߌ`P ,K0_jq>y7['MKYǟicVB G%rܓ ɬT M}8=/{2A%5V32N- v8ww ʴ%LA*KyhFWL9]A7|,OeF) 9|[g/qI'mT{G{}m&>NX&Z^/ 7`%)ÛyK)5hء79}TQUD=8;SO&n/l^cƚNsIeaZYH,[U U?ȵ-/6k*S҇X$d}B8T9W"xc⢤i-B4z'طy#\A78[y*\NlLRsl:Z})_Y8MN ,D5f _Gem,@ D3yQHr/˨cʼԦ~ DbC?T5:ݣ̚WffK\xnC~b!>J>66i:)qTwƜ$>0ݲ/8͌WP/,B}[lEAlzwҝX%Tcx:a3[e`1{/e'v1a+3B!QnhVD{k=O.|^qdeS)y]%"!gY\kūʾ 0Krd oeb{ߛNOd4ؓz] FW9%g1t?˾Ud#<;H06\iEɀUO .Gv2^NY9\HJZlV Ocz* }:PW8 y!sXZ~PA"tVِ($Ηߖ6 ~ N5R%WPBۤ?R"n R fo*)zFJ(# q|Ҍ[9b7Opsd`X^:Pf7VbPUu!]!c6mJ0ݱXu: J(`GÞXb [aaL^t/jtT8z9c,*/mv~?va @YJhDUܶ[5UYxA܀3S1Y.7.ϳlna{Kt_KL)FRn\?`l%>;O1{:5a`wmw"w1GA~`T)2ܖQ$xW @U d@::^:NX]aO[eHS=frC$onFHk^W#pS `&'rSW6קE.d4|{1cklmU@Lg8(Xx)]zS_E(KSp~[FfDtD}@,G F)'yUk{ h u>l RH1߆`gc4ZC/EsH/7ZN( QK;X l{H~!䭾yx#L "[ 6i3'QСW9c#Ίr3ozXs6,^$L:`JbE%K},HPy["wp)hNE1(bbxHt"#R ܣy _orb^8(ۣsSu|jY&ho)QcbH쪉a^7yŠ $=, =OIc K50].dP03;vH$gb|ykuErگ/Rp[,a5nDĂ<[m){(XN}XmSwfA*]@X7`xÜ:QҒ1cPbˍsaQ lX F54 |D$chX6}ԏ**&>iPVLZuޕ ;)!]jviifU*#\,|ITB;k,J#7eO1c]mPuKHSMzT Yw~_ ýE$ $o\IF MsH@Xd☏) a-)]gw+pI0kRkA5ȳ7a!X.y_P*Q* Tk˶}rǯNoJϧIN%2n \ 3+[ _< t0JɏX{b9{9(5FN\JTYU7|TJXާmM:ϩFRߧل)Rjúe..emZjluh iZ}=VE'BR BrtG6lC9pTQ|2PY#qrؔHb '/@!21=]m^TAǓRrCB&}A!W85U_ya\iHF ܏-|H`6[C+Gh4CWchKɅ9BǨ m=>/| 7SJ!j7n8g|KyS:Qoovn ~<>I*u*'G V~G8S蔃r 3toy Sg3j,Wf+0H༵adu~u RV%QPK,C<1sW KPȰU¤ ?FH>(P/))U1IqyA,PzO;B΃IgyjOҁK ;Fq{;_TŘ_ͱbE35cv&/cWF_7KʫJ%.@z3Urq?BXwPm!}0xWz,<"f(j ]獥j6S1a9kSmBX)9Zxs׎qBmn|E瑲T=k3X#tˡ2 g%6>wC2n~np6·U-8noY~N 7s1SO9OC2 $Qy^}h%yBd^֩*$z|jܔdgq{6FI[0M[8 S36Q4GvAaY۴@/{n΄yD@23说$`p N8 ߜ-ve\ጵ{0>LZD,/I7;xqY=$n5`UdJQagt* ]Qv h)^^ HUcˏwZ<"IIġõ7KgajW\c'L V(e4VL{x#/B#nN#a`t"9YE'FJƮRvpK.(ipIQywo,aAjS28dቹD;bV @7XMsa.p-A*cL|߯!%!ie|~n#unHD1q 42}WJ7#8HDͺ\-`YXyUYܝ2]t}vrH=~kHw<x [d5(9 ,3KkP1t$DÂ'R~OT:?:i!1s\Ezw}IgiV].i]U^k.I9Ԅ4 M"]:20,f٘*8mi檄IsdK@KƁ6_8m都q&+0t2F[cf5 !΅"h`h`]|0}bY4KŨ/+Zk3yJ]42 L6iA遁H&yɬ:1O..9ʟ2eqR =@SjAV<93+քhxN{Aԋ 2}py~]yUh &S$šRJ.Wd0rZq(a ֙_e[nXZ1 6wu_H7-qm J3Y{TEufb~S凖592<Ɩ,p Mfh9c<\[Ǘrzں51?v28Y=ɟ$(9}8h|>Ow~zV`m +/RHB @fc?#9Xv=:;zoXK=4حҢձ̃m!i?vaq$?ڦqa|a0B{Q'"tEDߣC$I>pip72ul+|  Dj.`|֏IXH!)#0ւ y$5Ѓ'@Av(05ۘw mRtl5C1;ef\ĝRsu4U)fvAI@IDaC)1yqG3֯?dwX|3 CX7S@x 6r-m'~͍%Mf$B9qe1TkF?|<<6nM/ݱ}'G/U޳[(ԚȎ߲I ,kw/˔q1™itzZ%|DӰŮ;Q}ߊ*X[g,Ƕ]>0#sY< w'90p_%acjӝĠ)(Hs{Vp_"]>b8_WgG9I?0/&=gt ѤTqPrdt'\:_AH͆  g1Xg""Hh+v 3)_(_)ac`?ĕ!+T okNO2DT"?\q%J?cW?6D<6! *KkÓIIR3HS{c>0%Y= 7ByF` /H]Ax/,n|-+Ѫ`v'~j]2zN9= G>7ȆXlfzZS.u >7$& |:d_ xZϚ <Q Ljׁ"Һrх{gL?[,F^Lv,FfBXQ,$'sQ/qlB1LD Ų\e?2{W: zCX=ڑq.}EҦ̭8f|ZSвeoU sl,"}n, @4Ttr͸`5{^\l&<*!Bd$ Z%Hrt7K]Q̐ ޽{3c#h}v/ku c>CiOe^O mvcE^&,]-Sy.hݞpHheyx$óc !`XW7Ξ]^({$  "`-885c: ^g78 LN(\}Q}´,]G3Nξzs=IXC#!yWRF2q_B])^"4a38M*\ѧ7ȟd$J2x@~gQIU%pՁ8ḏS#]M0OI`5H RXZg'-x7%9#&\'ڥ˂֯n\Fٿ)ʊvvv~G$!cqM!{$'4' 3]Y[,8`4h{YԞU&T).ti v[α}vL5|A Hm/?NNĠwGsĦ? o^gY^8ѝF)@=rFBbzCGd]YDs.YѕJw1ReoQX?'uc0R* d:c(Xh% Ic+ ]QrN8Ok-F=|Sݩ>}0C{%ꎢ LO܆kb};.TtcV1;*Kn˹CtX94L5E~ Tن#9(E}-ф .]ڪZ`1AVeUq;]ѿ,KnvB:bD{k)9N8ό; ^)6 "鐜zXA X"6 !ĒO@J~G+$%/EfPoӢۅ`$|c> ,O׍?{1>E}m^p2GfaROv"LV*|>6U^A"50{[2'tRlc 3g~P=qF7WQ2W<ø,B`PwN5@9c8ݧ,gݭp GK pcs&@FhR+$5u=oê~U[(<>)jۖCrB ~)A`; G Sdp0a?JȢkz=&쌻Y|z_72TH'=qRj "B&6)*R_D#{Yƴ.٬;֪Yov! YP*6Qgj(Vn=]c%% oG#3Ny)(6q%$忷=Ik[o2Z \DelUuRQh G!$" hz9gZOq8pVbKyc 6`݇GŋRZ}`/8E\D614 tuyxEZ[׎#XᝮdsiU;Cޭ7>H-LFƭ` h4]g%M+%^2+]9%BƣkZ)%f.~dOH-0.%&#\`BxH[lC9ᡕ%cdq 'R.G؃ѝ)&\q/>zx1iQPRW}#m@ T$MXMP{R<^}gCwB#xM*rBJ1Yz8!=rhN^)}E.^?׿Ǝ#:T ,]#uϯ2H!Ňkם1rTf/v~p<KL%1 & Qwe2uBLRq6X&O42|-j[ Zk򫴣Q΂SɇYb|*&f׆͋a\pGvJcB:2GD )P|&G zʭ*×2}1PTNRgk_*,!ﲵj4ËqEI?|.٢T\tAGtt@powiE<\`Rtw]Sc,uRY Gi0E헙+c VlKðd*1U:7VGyIwZV(nM,xKA&J?z<\t`#i7@MˆM'rPjWo`+U{Q]&`ˆcJ p漫 қrJ@y)xng0KFCc5p_5%J~Cq#֌G8Kl`Ժէq')5C +ȏvg޺p'MEXG؍0J3 OWP~{9Jazmܨh)ۉ^Ռz5B ge9OqlĵHum9iG; U_fqXLR~r5=e, Nh##øX')=D\E`P ^XrzPHOy˃n,rEq/lCuV3ɗ]Kd2lA*H1B#\ \qe1֡|M70]y9m&Oނ1a{՟heG;\_:yit: IThO&w>`騺XC@΄iӡ2p+3k1ߣTj.^4['!:{ٻvG^F[zbQ%869S|Lk&9Q҉#Y̆A3L;fSl u$6k*TN6Xb$:u^Wƫн4QZ}M&ز @܌HNݾibxe+^j ~EEJq;Y$pZ=oMua: ZrF?0YsM![.~ZJBIkPv] =8g^) 'omNS]?%#鉋pa WCjY_Ӷ3y_OZ'MF"<=qԊYJ7;BZ$L{Ljl9vںw$Ib3 TLXQG>A5l}0B䑕h' i6%_.ъe鿘\#p`2ʾ=c &&1Y5箠0&j^];:76_Цվϼ3' DS< #)nQ b«ni +MLi_XL܏e>&~c|0v.tmN!0x^_K>!2WLg^3r-.EC;)U"喚3a%p|&zoƞiOA S+:n{al&ur oZ-܎l7 zLίgyg` jh-I0B>d皩 8x[i1GӔ͎.HxQKWz[_@T稻!49E*Pj5{5 uMȨP 8PS.od^֠sډn_^}[zʦgC{t"ѐӃW,u wGʫ:t-fqQZ6eu/ ^df!R^3m=@H\ _Iந&xX8ףKtBhhϲ vظzR(Y0%tm l'#WsqU~MO4So2¨MLex+]eqY`E\MDּɻG2ʊw1v$Q!ؿ`)N ;pbF֑EAiYv*oȩJ Cj9cʦ&{O,Xuy-ji>]$)Ra""S3F/OnyfТ!cޏ)QUaХ{*&pp.Hl~DL? |n@\' &oEζMAzdk@m"Mj<)xDxɕp* ϸPQm$S7m0 1ArJ]YaoF4)l cHW[4 >XrbCQy"vT,!sG ¢CL,nQHX!J@p2T)~KG1Va5nP(u^+C4]jԏGV|h-mʌ5, >j߁h?%;΂䶗q~|4_zE4n޴]Px(}HU_7PzʘqwCQސc^)adQOHVgm@*_P5s$-9da`V^^dTQϩ>ev}TMcr)3#dMQKWVqEa\*haǧqYsJ<ڔBJijtiwzڃb9f**:k˒!yk׿>a%eQq]idvRL@D+ j A 0 |+$[`qj9jΥe9m@F>nEcGdWZm./ޚw`k'W M OB: '덤Rӥ5YSO'XzǗ`mMHi IP50Iu"ճK:Q4vJo>Z{oHrmVa|MD$mM`C #ԡT]:F& |thrlW5uI!/Hb~,Tz3nǬ:YϾ/ LY27GEoe2a{j\gۍA>E'U%PU2x\ӣZBm3j5+0pn9&K+/T KXCU:1/XgUCMλtHѢjjQb6*p~[J3]wBB-bjq>aL~EAVq0GP!iɝJ U<[d\ JQjxD'+=ȸ-ߝwhi\}hg# o0Bǻ+=0ܼ.J1.Ֆ=6o߾pCq? wfJVFity$&608, :ju`lAHʪ([&sDQu P 󲲪V TOU,?S?( +`yS `|l>O@ ٿ< j0z!^E4} a~eAQ; @~ܝBZ8j}7=<u(E|gV>UW[ޡ֪ȵ?vяQjfrUG.:9C@œV+XN/8 D>Ks{ݪ! dtC?Fa왟"9CEO44濨͞J7<ݥ H~E.h?-R[2`X1Ł60EbVUf.[l5r_>BI(=0!'NV¯onR~];I]ZPO~*<4G*H;,,86WLtӠD%_v[`ϯtda;P19;aEr*Fgy͚w DC pk'`$t DoL;:EFܸM2FpFjd Ń_xQ)eGS"3$Q39k -[T˓F/f7v+˨ewabJ*>=t47(Ζ0 CkLOGW~&|( aklDiÇfHoŏ9u/79Fhrt= l$8sUeɭrO5|}Ԫ16.&տQ=+bƒ&1' a5a2LJ[#Ku3r3k?tBrٶHl3|(1%!&; Ԧr¿ e$ˋE"m?`G p]D4$mD[n8&3Ys1];J)6|cNxڣe8/hUX$!' Mgw-=3/aj,w no ]4Gmx;lR!1 &kaxI4T/Fd7ŎO'5;@w)ɎW26 |o.0.n(,JAw~˸J(&読nda%s|{kaa^O䕽 3̞ޑHx˓*lnE=e,` v<ƴۋ)~eMٹ.f:YL8+/=_N/7 endstream endobj 200 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.18)/Keywords() /CreationDate (D:20210614132820+02'00') /ModDate (D:20210614132820+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/TeX Live for SUSE Linux) kpathsea version 6.2.3) >> endobj 152 0 obj << /Type /ObjStm /N 67 /First 589 /Length 3528 /Filter /FlateDecode >> stream xZYsI~ׯnb#|`ilȖG_yZdq#puuuV_fef. %B+#i V\[amYZ[AhkkmO{ W2r堄\1ª`| -Np$>Q oBhF'|L(3pI✔QM2"d|Qg9-$bpDRV [Ɋ wJ(RQ̆JLY9X10(nɦx ,H7IX,rIV0`.<ɀ`@6L@ PV+(c.0 ;i$ k@kFs70ŧ@1:S(c _8 =~ܓ_o! .̚"AA=t|7h\t|_; ~{i,8$Hʁx)r [1Iqs7H1}oY*vAc!A{p2m8|1 sX*D£PQQc60=`zo:g1 #Z ora0yRy{1Π@>8C#(1 DѮ ѸBCZLN hi0ħ՛b6`Nh#WY{7 "1D&t '!| u2"CiR%$fE%4)R0oZh)YG j#a`;H)9KR:tZH [2ES+F&,/xx6 W!uLWx,ٔ+՚ǸS^62T5,Yj:,}UYCk}h"Q<٬VTΥJVvBjw^{VB C bVQ+O͂Gq_f tR+Is1\}\pR~1}+JJҘESҔx=&KMSO; %o]j J؊9ujt"=J)'M~tؖQsg(//2"hZazBSReQ1™n;!VQ#`Go^'<y7T+Yb܊W (b2'?{ Sb~zxdbP+>iWpBO|Hã`4ؽ5؟͚뗘zu% x\ &K/Py*\A^ȏD^ʡky#r|[9S9~`z%grv5i9g,6p W24f4{ρF8Yx4!h5.`7Ck-7j>x6d8Ȉ6~_x޸ ogBOy*exk FSAku ]!'KͤZ Ye\6=:;E\6Hk游􍰳#D b &tAo,67ܴZ3t?ڴZL6lƪ7GvO|܇*UmxѦ]@ 76Jưѥ%շY V *S~K0lS4ͦ F7[cyXwP~R o80m*GhM,@f cGNmtx<@3> Û͆'m}O~Ԑ2s?a};^7lw}y o.~^NI${RԴqOVn^|;?XeVk9Tjd*޶c~`Soy{ECn WX҆ P}-.{iCC29ʂp89bO>m٫Ք>Z|+>u#v{+ }G~T+%ﶗm͊zIZy{F+u\Kשi87lK_nWΥJdnwґVSwS\ Tlw/nJ?%_Ia־K +\jU<~H5/X.>JÏSG\K&."bzK~&jSF=X@êrYWZVPEߢ'B{z7AI!K0cn«pŀ]h#y67m~;i> Rӷ;=;K8\ZFش 55زq15m٨lW|ƆU6E܃q5M bSCl@lZzyTuUrHGÿ[{p5ph{`5`XLhţ`2\/p]}vzEJWzJC/Ж}W3~v暥ǕPX1_Dv ʿՊ24R 6p2-b=(cu꩚jZmNK^n(Op|/t_tKkdWt^^BjE݇) uP5레kA׬֯Ymjլ~SynCxUpipr-ŗ{3IE)x^Z%|JhŹ% ~|^Res<fQOo]@TI endstream endobj 201 0 obj << /Type /XRef /Index [0 202] /Size 202 /W [1 3 1] /Root 199 0 R /Info 200 0 R /ID [<60ED4A84440DC18BD9F09D45F25E9BB5> <60ED4A84440DC18BD9F09D45F25E9BB5>] /Length 517 /Filter /FlateDecode >> stream xMSaϹKExz神"%DJ%QB++ 3lge,4g _`d0y~7}}l3%s{P+aDUj0wԀ[xCZPnGm2R=C;}T4xGQYdj,i